1# Copyright (c) 2014 Wind River Systems, Inc.
2# Copyright (c) 2018 Synopsys, Inc. All rights reserved.
3# SPDX-License-Identifier: Apache-2.0
4
5if SOC_ARC_IOT
6
7config CPU_EM4_FPUS
8	default y
9
10config NUM_IRQ_PRIO_LEVELS
11	# This processor supports 4 priority levels:
12	# 0 for Fast Interrupts (FIRQs) and 1-3 for Regular Interrupts (IRQs).
13	default 4
14
15config ARC_MPU_VER
16	default 2
17
18config NUM_IRQS
19	# must be > the highest interrupt number used
20	default 95
21
22config RGF_NUM_BANKS
23	default 2
24
25config SYS_CLOCK_HW_CYCLES_PER_SEC
26	default 144000000
27
28config HARVARD
29	default y
30
31config ARC_FIRQ
32	default y
33
34endif # ARC_IOT
35