1# Copyright (c) 2020 Synopsys, Inc. All rights reserved. 2# SPDX-License-Identifier: Apache-2.0 3 4if SOC_QEMU_ARC 5 6config SOC 7 string 8 default "snps_qemu" 9 10config SYS_CLOCK_HW_CYCLES_PER_SEC 11 int 12 default 10000000 13 14config RGF_NUM_BANKS 15 default 1 16 17config ARC_FIRQ 18 default n 19 20config NUM_IRQ_PRIO_LEVELS 21 default 15 22 23config NUM_IRQS 24 default 26 25 26# Technically ARC HS supports MPUv3, but not v2. But given MPUv3 27# is the same as v2 but with minimal region size of 32 bytes, we 28# may assume MPUv3 is just a subset of MPUv2. 29 30config ARC_MPU_VER 31 default 2 32 33source "soc/arc/snps_qemu/Kconfig.defconfig.em" 34source "soc/arc/snps_qemu/Kconfig.defconfig.hs" 35source "soc/arc/snps_qemu/Kconfig.defconfig.hs5x" 36source "soc/arc/snps_qemu/Kconfig.defconfig.hs6x" 37 38endif 39