0fa4423932
Now when we're finally ready to open QEMU port for ARC we introduce the first ever platform it supports and in fact does that quite well - Zephyr RTOS. For now we only offer support of basic EM & HS code execution, built-in timers, interrupt controller and set of very simple peripherals: DW UART & optionally MMIO Virtio devices. Signed-off-by: Wayne Ren <wei.ren@synopsys.com> Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
32 lines
456 B
Text
32 lines
456 B
Text
# Copyright (c) 2020 Synopsys, Inc. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if SOC_QEMU_ARC
|
|
|
|
config SOC
|
|
string
|
|
default "snps_qemu"
|
|
|
|
config SYS_CLOCK_HW_CYCLES_PER_SEC
|
|
int
|
|
default 1000000
|
|
|
|
config UART_CONSOLE_ON_DEV_NAME
|
|
string
|
|
default "UART_0"
|
|
|
|
config RGF_NUM_BANKS
|
|
default 1
|
|
|
|
config ARC_FIRQ
|
|
default n
|
|
|
|
config NUM_IRQ_PRIO_LEVELS
|
|
default 15
|
|
|
|
config NUM_IRQS
|
|
default 25
|
|
|
|
source "soc/arc/snps_qemu/Kconfig.defconfig.em"
|
|
|
|
endif
|