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