2 * SiFive E series machine interface
4 * Copyright (c) 2017 SiFive, Inc.
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2 or later, as published by the Free Software Foundation.
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * You should have received a copy of the GNU General Public License along with
16 * this program. If not, see <http://www.gnu.org/licenses/>.
22 #define TYPE_RISCV_E_SOC "riscv.sifive.e.soc"
23 #define RISCV_E_SOC(obj) \
24 OBJECT_CHECK(SiFiveESoCState, (obj), TYPE_RISCV_E_SOC)
26 typedef struct SiFiveESoCState
{
28 SysBusDevice parent_obj
;
31 RISCVHartArrayState cpus
;
35 typedef struct SiFiveEState
{
37 SysBusDevice parent_obj
;
66 SIFIVE_E_UART0_IRQ
= 3,
67 SIFIVE_E_UART1_IRQ
= 4
70 #define SIFIVE_E_PLIC_HART_CONFIG "M"
71 #define SIFIVE_E_PLIC_NUM_SOURCES 127
72 #define SIFIVE_E_PLIC_NUM_PRIORITIES 7
73 #define SIFIVE_E_PLIC_PRIORITY_BASE 0x0
74 #define SIFIVE_E_PLIC_PENDING_BASE 0x1000
75 #define SIFIVE_E_PLIC_ENABLE_BASE 0x2000
76 #define SIFIVE_E_PLIC_ENABLE_STRIDE 0x80
77 #define SIFIVE_E_PLIC_CONTEXT_BASE 0x200000
78 #define SIFIVE_E_PLIC_CONTEXT_STRIDE 0x1000
80 #if defined(TARGET_RISCV32)
81 #define SIFIVE_E_CPU TYPE_RISCV_CPU_SIFIVE_E31
82 #elif defined(TARGET_RISCV64)
83 #define SIFIVE_E_CPU TYPE_RISCV_CPU_SIFIVE_E51