1# Copyright (c) 2021 Synopsys, Inc. All rights reserved.
2# SPDX-License-Identifier: Apache-2.0
3
4if SOC_NSIM_HS_MPUV6
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 ARC_MPU_VER
19	default 6
20
21config MAX_DOMAIN_PARTITIONS
22	default 32 if USERSPACE
23
24config RGF_NUM_BANKS
25	default 2
26
27config SYS_CLOCK_HW_CYCLES_PER_SEC
28	default 5000000
29
30config HARVARD
31	default y
32
33config ARC_FIRQ
34	default y
35
36config CACHE_MANAGEMENT
37	default y
38
39endif # SOC_NSIM_HS_MPUV6
40