1# Copyright (c) 2018 Synopsys, Inc. All rights reserved.
2# SPDX-License-Identifier: Apache-2.0
3
4if SOC_NSIM_EM7D_V22
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 1
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
36if (ARC_MPU_VER = 2)
37
38config MAIN_STACK_SIZE
39	default 2048
40
41config IDLE_STACK_SIZE
42	default 2048
43
44config ZTEST_STACK_SIZE
45	default 2048
46	depends on ZTEST
47
48endif # ARC_MPU_VER
49
50config ARC_HAS_ACCL_REGS
51	default y
52
53endif # SOC_NSIM_EM
54