1# Copyright (c) 2020 Synopsys, Inc. All rights reserved.
2# SPDX-License-Identifier: Apache-2.0
3
4if SOC_QEMU_ARC
5
6config SYS_CLOCK_HW_CYCLES_PER_SEC
7	default 10000000
8
9config RGF_NUM_BANKS
10	default 1
11
12config ARC_FIRQ
13	default n
14
15config NUM_IRQ_PRIO_LEVELS
16	default 15
17
18config NUM_IRQS
19	default 26
20
21# Technically ARC HS supports MPUv3, but not v2. But given MPUv3
22# is the same as v2 but with minimal region size of 32 bytes, we
23# may assume MPUv3 is just a subset of MPUv2.
24
25config ARC_MPU_VER
26	default 2
27
28endif
29