mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-23 09:45:54 +00:00
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>
22 lines
383 B
C
22 lines
383 B
C
/*
|
|
* Copyright (c) 2020 Synopsys, Inc. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @brief SoC configuration macros for ARC QEMU
|
|
*
|
|
* This header file is used to specify and describe SoC-level
|
|
* aspects for the target.
|
|
*/
|
|
|
|
#ifndef _SOC__H_
|
|
#define _SOC__H_
|
|
|
|
/* ARC Core IRQs */
|
|
#define IRQ_TIMER0 16
|
|
#define IRQ_TIMER1 17
|
|
|
|
#endif /* _SOC__H_ */
|