1# Copyright (c) 2022 Synopsys, Inc.
2# SPDX-License-Identifier: Apache-2.0
3
4if SOC_NSIM_HS5X_SMP
5
6config CPU_HS5X
7	default y
8
9config NUM_IRQ_PRIO_LEVELS
10	# This processor supports 16 priority levels:
11	default 2
12
13config NUM_IRQS
14	# must be > the highest interrupt number used
15	default 30
16
17config SYS_CLOCK_HW_CYCLES_PER_SEC
18	default 1000000
19
20config CACHE_MANAGEMENT
21	default y
22
23config ARC_CONNECT
24	default y
25
26config MP_MAX_NUM_CPUS
27	default 2
28
29endif # SOC_NSIM_HS5X_SMP
30