1# Copyright (c) 2019 Synopsys, Inc. All rights reserved. 2# SPDX-License-Identifier: Apache-2.0 3 4if SOC_NSIM_HS 5 6config CPU_HS3X 7 default y 8 9config NUM_IRQ_PRIO_LEVELS 10 # This processor supports 16 priority levels: 11 # 0 for Fast Interrupts (FIRQs) and 1-15 for Regular Interrupts (IRQs). 12 default 2 13 14config NUM_IRQS 15 # must be > the highest interrupt number used 16 default 30 17 18config RGF_NUM_BANKS 19 default 2 20 21config SYS_CLOCK_HW_CYCLES_PER_SEC 22 default 5000000 23 24config HARVARD 25 default y 26 27config ARC_FIRQ 28 default y 29 30config CACHE_MANAGEMENT 31 default y 32 33config ARC_MPU_VER 34 default 3 35 36endif # SOC_NSIM_HS 37