1# Copyright (c) 2018 Synopsys, Inc. All rights reserved. 2# SPDX-License-Identifier: Apache-2.0 3 4if SOC_NSIM_EM 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 2 20 21config RGF_NUM_BANKS 22 default 2 23 24config SYS_CLOCK_HW_CYCLES_PER_SEC 25 default 5000000 26 27config HARVARD 28 default y 29 30config ARC_FIRQ 31 default y 32 33config CACHE_MANAGEMENT 34 default y 35 36config FP_FPU_DA 37 default y 38 39if (ARC_MPU_VER = 2) 40 41config MAIN_STACK_SIZE 42 default 2048 43 44config IDLE_STACK_SIZE 45 default 2048 46 47config ZTEST_STACK_SIZE 48 default 2048 49 depends on ZTEST 50 51endif # ARC_MPU_VER 52 53config ARC_HAS_ACCL_REGS 54 default y 55 56endif # SOC_NSIM_EM 57