1# Copyright (c) 2019 Synopsys, Inc. All rights reserved. 2# SPDX-License-Identifier: Apache-2.0 3 4if SOC_ARC_HSDK 5 6config CPU_HS3X 7 default y 8 9config NUM_IRQ_PRIO_LEVELS 10 # This processor supports 2 priority levels: 11 # 0 for Fast Interrupts (FIRQs) and 1 for Regular Interrupts (IRQs). 12 default 2 13 14config NUM_IRQS 15 # must be > the highest interrupt number used 16 default 88 17 18config RGF_NUM_BANKS 19 default 2 20 21config SYS_CLOCK_HW_CYCLES_PER_SEC 22 default 500000000 23 24config ARC_FIRQ 25 default y 26 27config CODE_DENSITY 28 default y 29 30config ARCV2_TIMER_IRQ_PRIORITY 31 default 1 32 33config ARC_CONNECT 34 default y 35 36config MP_MAX_NUM_CPUS 37 default 4 38 39config UART_NS16550_ACCESS_WORD_ONLY 40 default y 41 depends on UART_NS16550 42 43config ARC_HAS_ACCL_REGS 44 default y 45 46endif # ARC_HSDK 47