2 * SiFive U 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 #include "hw/net/cadence_gem.h"
23 #include "hw/riscv/riscv_hart.h"
24 #include "hw/riscv/sifive_cpu.h"
25 #include "hw/riscv/sifive_u_prci.h"
26 #include "hw/riscv/sifive_u_otp.h"
28 #define TYPE_RISCV_U_SOC "riscv.sifive.u.soc"
29 #define RISCV_U_SOC(obj) \
30 OBJECT_CHECK(SiFiveUSoCState, (obj), TYPE_RISCV_U_SOC)
32 typedef struct SiFiveUSoCState
{
34 DeviceState parent_obj
;
37 CPUClusterState e_cluster
;
38 CPUClusterState u_cluster
;
39 RISCVHartArrayState e_cpus
;
40 RISCVHartArrayState u_cpus
;
42 SiFiveUPRCIState prci
;
49 #define TYPE_RISCV_U_MACHINE MACHINE_TYPE_NAME("sifive_u")
50 #define RISCV_U_MACHINE(obj) \
51 OBJECT_CHECK(SiFiveUState, (obj), TYPE_RISCV_U_MACHINE)
53 typedef struct SiFiveUState
{
55 MachineState parent_obj
;
84 SIFIVE_U_UART0_IRQ
= 4,
85 SIFIVE_U_UART1_IRQ
= 5,
86 SIFIVE_U_GEM_IRQ
= 0x35
90 SIFIVE_U_HFCLK_FREQ
= 33333333,
91 SIFIVE_U_RTCCLK_FREQ
= 1000000
94 #define SIFIVE_U_MANAGEMENT_CPU_COUNT 1
95 #define SIFIVE_U_COMPUTE_CPU_COUNT 4
97 #define SIFIVE_U_PLIC_HART_CONFIG "MS"
98 #define SIFIVE_U_PLIC_NUM_SOURCES 54
99 #define SIFIVE_U_PLIC_NUM_PRIORITIES 7
100 #define SIFIVE_U_PLIC_PRIORITY_BASE 0x04
101 #define SIFIVE_U_PLIC_PENDING_BASE 0x1000
102 #define SIFIVE_U_PLIC_ENABLE_BASE 0x2000
103 #define SIFIVE_U_PLIC_ENABLE_STRIDE 0x80
104 #define SIFIVE_U_PLIC_CONTEXT_BASE 0x200000
105 #define SIFIVE_U_PLIC_CONTEXT_STRIDE 0x1000