40 lines
670 B
Plaintext
40 lines
670 B
Plaintext
# Copyright (c) 2021 Synopsys, Inc. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if SOC_NSIM_HS_MPUV6
|
|
|
|
config CPU_HS3X
|
|
default y
|
|
|
|
config NUM_IRQ_PRIO_LEVELS
|
|
# This processor supports 16 priority levels:
|
|
# 0 for Fast Interrupts (FIRQs) and 1-15 for Regular Interrupts (IRQs).
|
|
default 2
|
|
|
|
config NUM_IRQS
|
|
# must be > the highest interrupt number used
|
|
default 30
|
|
|
|
config ARC_MPU_VER
|
|
default 6
|
|
|
|
config MAX_DOMAIN_PARTITIONS
|
|
default 32 if USERSPACE
|
|
|
|
config RGF_NUM_BANKS
|
|
default 2
|
|
|
|
config SYS_CLOCK_HW_CYCLES_PER_SEC
|
|
default 5000000
|
|
|
|
config HARVARD
|
|
default y
|
|
|
|
config ARC_FIRQ
|
|
default y
|
|
|
|
config CACHE_MANAGEMENT
|
|
default y
|
|
|
|
endif # SOC_NSIM_HS_MPUV6
|