1# Copyright (c) 2023 Synopsys, Inc. All rights reserved. 2# SPDX-License-Identifier: Apache-2.0 3 4if SOC_NSIM_VPX5 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 4 13 14config NUM_IRQS 15 # must be > the highest interrupt number used 16 default 24 17 18config RGF_NUM_BANKS 19 default 1 20 21config SYS_CLOCK_HW_CYCLES_PER_SEC 22 default 5000000 23 24config HARVARD 25 default y 26 27config ARC_FIRQ 28 default n 29 30config CACHE_MANAGEMENT 31 default y 32 33endif # SOC_NSIM_VPX5 34