2 * QEMU RISC-V VirtIO 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/>.
19 #ifndef HW_RISCV_VIRT_H
20 #define HW_RISCV_VIRT_H
24 SysBusDevice parent_obj
;
27 RISCVHartArrayState soc
;
46 VIRTIO_IRQ
= 1, /* 1 to 8 */
52 VIRT_CLOCK_FREQ
= 1000000000
55 #define VIRT_PLIC_HART_CONFIG "MS"
56 #define VIRT_PLIC_NUM_SOURCES 127
57 #define VIRT_PLIC_NUM_PRIORITIES 7
58 #define VIRT_PLIC_PRIORITY_BASE 0x0
59 #define VIRT_PLIC_PENDING_BASE 0x1000
60 #define VIRT_PLIC_ENABLE_BASE 0x2000
61 #define VIRT_PLIC_ENABLE_STRIDE 0x80
62 #define VIRT_PLIC_CONTEXT_BASE 0x200000
63 #define VIRT_PLIC_CONTEXT_STRIDE 0x1000
65 #if defined(TARGET_RISCV32)
66 #define VIRT_CPU TYPE_RISCV_CPU_RV32GCSU_V1_10_0
67 #elif defined(TARGET_RISCV64)
68 #define VIRT_CPU TYPE_RISCV_CPU_RV64GCSU_V1_10_0