Signed-off-by: Ralf Ramsauer <ralf.ramsa...@oth-regensburg.de>
---
 configs/riscv/qemu-layout.h  |  22 ++++
 configs/riscv/qemu-plic-mc.c |   2 +
 configs/riscv/qemu-plic-uc.c |   2 +
 configs/riscv/qemu-riscv64.c |  65 ----------
 configs/riscv/qemu.h         | 244 +++++++++++++++++++++++++++++++++++
 5 files changed, 270 insertions(+), 65 deletions(-)
 create mode 100644 configs/riscv/qemu-layout.h
 create mode 100644 configs/riscv/qemu-plic-mc.c
 create mode 100644 configs/riscv/qemu-plic-uc.c
 delete mode 100644 configs/riscv/qemu-riscv64.c
 create mode 100644 configs/riscv/qemu.h

diff --git a/configs/riscv/qemu-layout.h b/configs/riscv/qemu-layout.h
new file mode 100644
index 00000000..5ec52198
--- /dev/null
+++ b/configs/riscv/qemu-layout.h
@@ -0,0 +1,22 @@
+/*
+ * Jailhouse, a Linux-based partitioning hypervisor
+ *
+ * Configuration for QEMU riscv64 virtual target, 1G RAM, 6 cores
+ *
+ * Copyright (c) OTH Regensburg, 2023
+ *
+ * Authors:
+ *  Ralf Ramsauer <ralf.ramsa...@oth-regensburg.de>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2.  See
+ * the COPYING file in the top-level directory.
+ */
+
+#define MIB                    (1024UL * 1024UL)
+#define GIB                    (1024UL * MIB)
+
+#define MEM_TOP                        (0x80000000 + 1 * GIB)
+
+#define HV_SIZE                        0x600000 /* 6MiB HV Size */
+#define HV_OFFSET              0x200000 /* Recent OpenSBI place DTB there */
+#define HV_PHYS                        (MEM_TOP - HV_OFFSET - HV_SIZE)
diff --git a/configs/riscv/qemu-plic-mc.c b/configs/riscv/qemu-plic-mc.c
new file mode 100644
index 00000000..c70371d2
--- /dev/null
+++ b/configs/riscv/qemu-plic-mc.c
@@ -0,0 +1,2 @@
+#define QEMU_MC
+#include "qemu.h"
diff --git a/configs/riscv/qemu-plic-uc.c b/configs/riscv/qemu-plic-uc.c
new file mode 100644
index 00000000..1439aa95
--- /dev/null
+++ b/configs/riscv/qemu-plic-uc.c
@@ -0,0 +1,2 @@
+#define QEMU_UC
+#include "qemu.h"
diff --git a/configs/riscv/qemu-riscv64.c b/configs/riscv/qemu-riscv64.c
deleted file mode 100644
index 3c68ad71..00000000
--- a/configs/riscv/qemu-riscv64.c
+++ /dev/null
@@ -1,65 +0,0 @@
-/*
- * Jailhouse, a Linux-based partitioning hypervisor
- *
- * Configuration for QEMU riscv64 virtual target, 1G RAM, 4 cores
- *
- * Copyright (c) Siemens AG, 2020
- *
- * Authors:
- *  Jan Kiszka <jan.kis...@siemens.com>
- *
- * This work is licensed under the terms of the GNU GPL, version 2.  See
- * the COPYING file in the top-level directory.
- *
- * NOTE: Add "mem=768M" to the kernel command line.
- */
-
-#include <jailhouse/types.h>
-#include <jailhouse/cell-config.h>
-
-struct {
-       struct jailhouse_system header;
-       struct jailhouse_cpu cpus[4];
-       struct jailhouse_memory mem_regions[1];
-} __attribute__((packed)) config = {
-       .header = {
-               .signature = JAILHOUSE_SYSTEM_SIGNATURE,
-               .revision = JAILHOUSE_CONFIG_REVISION,
-               .flags = JAILHOUSE_SYS_VIRTUAL_DEBUG_CONSOLE,
-               .hypervisor_memory = {
-                       .phys_start = 0xbfc00000,
-                       .size =       0x00400000,
-               },
-               .root_cell = {
-                       .name = "qemu-riscv64",
-
-                       .num_cpus = ARRAY_SIZE(config.cpus),
-                       .num_memory_regions = ARRAY_SIZE(config.mem_regions),
-               },
-       },
-
-       .cpus = {
-               {
-                       .phys_id = 0,
-               },
-               {
-                       .phys_id = 1,
-               },
-               {
-                       .phys_id = 2,
-               },
-               {
-                       .phys_id = 3,
-               },
-       },
-
-       .mem_regions = {
-               /* RAM */ {
-                       .phys_start = 0x80000000,
-                       .virt_start = 0x80000000,
-                       .size = 0x3fa10000,
-                       .flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE |
-                               JAILHOUSE_MEM_EXECUTE,
-               },
-       }
-};
diff --git a/configs/riscv/qemu.h b/configs/riscv/qemu.h
new file mode 100644
index 00000000..940efb3f
--- /dev/null
+++ b/configs/riscv/qemu.h
@@ -0,0 +1,244 @@
+/*
+ * Jailhouse, a Linux-based partitioning hypervisor
+ *
+ * Configuration for QEMU riscv64 virtual target, 1G RAM, 6 cores
+ *
+ * Copyright (c) Siemens AG, 2020
+ * Copyright (c) OTH Regensburg, 2022
+ *
+ * Authors:
+ *  Jan Kiszka <jan.kis...@siemens.com>
+ *  Konrad Schwarz <konrad.schw...@siemens.com>
+ *  Ralf Ramsauer <ralf.ramsa...@oth-regensburg.de>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2.  See
+ * the COPYING file in the top-level directory.
+ *
+ * NOTE: Add "mem=768M" to the kernel command line.
+ */
+
+#include <jailhouse/types.h>
+#include <jailhouse/cell-config.h>
+#include "qemu-layout.h"
+
+struct {
+       struct jailhouse_system header;
+#ifdef QEMU_UC
+       struct jailhouse_cpu cpus[1];
+#elif defined(QEMU_MC)
+       struct jailhouse_cpu cpus[6];
+#endif
+       struct jailhouse_memory mem_regions[9];
+       struct jailhouse_irqchip irqchips[1];
+       struct jailhouse_pci_device pci_devices[1];
+       struct jailhouse_pci_capability pci_caps[6];
+} __attribute__((packed)) config = {
+       .header = {
+               .signature = JAILHOUSE_SYSTEM_SIGNATURE,
+               .revision = JAILHOUSE_CONFIG_REVISION,
+               .architecture = JAILHOUSE_RISCV64,
+               .flags = JAILHOUSE_SYS_VIRTUAL_DEBUG_CONSOLE,
+               .hypervisor_memory = {
+                       /* N.B.: 2 MiB megapage alignment requirement */
+                       .phys_start = HV_PHYS,
+                       .size =       HV_SIZE,
+               },
+
+               .debug_console = {
+                       .type = JAILHOUSE_CON_TYPE_RISCV_SBI,
+               },
+
+               .platform_info = {
+                       .pci_mmconfig_base = 0x30000000,
+                       .pci_mmconfig_end_bus = 0xff, // ??
+                       .riscv = {
+                               .irqchip = {
+                                       .type = JAILHOUSE_RISCV_PLIC,
+                                       .base_address = 0xc000000,
+                                       .size = 0x600000,
+                                       .max_irq = 96,
+                                       .max_priority = 7,
+                                       .hart_to_context = {
+                                               [0] = 1,
+                                               [1] = 3,
+                                               [2] = 5,
+                                               [3] = 7,
+                                               [4] = 9,
+                                               [5] = 11,
+                                               [6 ... 31] = -1,
+                                       }
+                               },
+                       },
+               },
+               .root_cell = {
+                       .name = "qemu-riscv64",
+                       .num_cpus = ARRAY_SIZE(config.cpus),
+                       .num_memory_regions = ARRAY_SIZE(config.mem_regions),
+                       .num_irqchips = ARRAY_SIZE(config.irqchips),
+                       .num_pci_devices = ARRAY_SIZE(config.pci_devices),
+                       .num_pci_caps = ARRAY_SIZE(config.pci_caps),
+
+                       .vpci_irq_base = 32,
+               },
+       },
+
+       .cpus = {
+               {
+                       .phys_id = 0,
+               },
+#ifdef QEMU_MC
+               {
+                       .phys_id = 1,
+               },
+               {
+                       .phys_id = 2,
+               },
+               {
+                       .phys_id = 3,
+               },
+               {
+                       .phys_id = 4,
+               },
+               {
+                       .phys_id = 5,
+               },
+#endif
+       },
+
+       .mem_regions = {
+               /* RAM */ {
+                       .phys_start = 0x80000000,
+                       .virt_start = 0x80000000,
+                       .size = 0x3f600000,
+                       .flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE |
+                               JAILHOUSE_MEM_EXECUTE,
+               },
+               /* RAM - OpenSBI DTB */ {
+                       .phys_start = 0xbfe00000,
+                       .virt_start = 0xbfe00000,
+                       .size = 0x2000,
+                       .flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE |
+                               JAILHOUSE_MEM_EXECUTE,
+               },
+               /* rtc@101000 */ {
+                       .phys_start = 0x00101000,
+                       .virt_start = 0x00101000,
+                       .size = 0x00001000,
+                       .flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE |
+                               JAILHOUSE_MEM_IO,
+               },
+               /* uart@10000000 */ {
+                       .phys_start = 0x10000000,
+                       .virt_start = 0x10000000,
+                       .size = 0x00001000,
+                       .flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE |
+                               JAILHOUSE_MEM_IO,
+               },
+               /* test@100000 */ {
+                       .phys_start = 0x00100000,
+                       .virt_start = 0x00100000,
+                       .size = 0x00001000,
+                       .flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE |
+                               JAILHOUSE_MEM_IO,
+               },
+               /* flash@20000000 */ {
+                       .phys_start = 0x20000000,
+                       .virt_start = 0x20000000,
+                       .size = 0x02000000,
+                       .flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE |
+                               JAILHOUSE_MEM_EXECUTE,
+               },
+               /* flash@22000000, 2nd range */ {
+                       .phys_start = 0x22000000,
+                       .virt_start = 0x22000000,
+                       .size = 0x02000000,
+                       .flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE |
+                               JAILHOUSE_MEM_EXECUTE,
+               },
+               /* MemRegion: 40040000-4005ffff: e1000e */
+               {
+                       .phys_start = 0x40040000,
+                       .virt_start = 0x40040000,
+                       .size = 0x20000,
+                       .flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE,
+               },
+               /* MemRegion: 40060000-4007ffff: e1000e */
+               {
+                       .phys_start = 0x40060000,
+                       .virt_start = 0x40060000,
+                       .size = 0x20000,
+                       .flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE,
+               },
+       },
+       .irqchips = {
+               /* plic@c000000 */ {
+                       .address = 0xc000000,
+                       .id = 0 /* PLIC */,
+                       .pin_base = 0,
+                       .pin_bitmap = {
+                               (1 << 0xa), /* uart@10000000 */
+                               (1 << (0x22 - 0x20)), /* PCI INT C / slot 0 */
+                               0,
+                               0,
+                       },
+               },
+       },
+
+       .pci_devices = {
+               { /* e1000e */
+                       .type = JAILHOUSE_PCI_TYPE_DEVICE,
+                       .domain = 0x0000,
+                       .bdf = 0x0010,
+                       .bar_mask = {
+                               0xfffe0000, 0xfffe0000, 0xffffffe0,
+                               0xffffc000, 0x00000000, 0x00000000,
+                       },
+                       .caps_start = 0,
+                       .num_caps = 6,
+                       .num_msi_vectors = 1,
+                       .msi_64bits = 1,
+                       .num_msix_vectors = 5,
+                       .msix_region_size = 0x1000,
+                       .msix_address = 0x40080000,
+               },
+       },
+
+       .pci_caps = {
+               { /* e1000e */
+                       .id = PCI_CAP_ID_PM,
+                       .start = 0xc8,
+                       .len = 8,
+                       .flags = JAILHOUSE_PCICAPS_WRITE,
+               },
+               {
+                       .id = PCI_CAP_ID_MSI,
+                       .start = 0xd0,
+                       .len = 14,
+                       .flags = JAILHOUSE_PCICAPS_WRITE,
+               },
+               {
+                       .id = PCI_CAP_ID_EXP,
+                       .start = 0xe0,
+                       .len = 20,
+                       .flags = JAILHOUSE_PCICAPS_WRITE,
+               },
+               {
+                       .id = PCI_CAP_ID_MSIX,
+                       .start = 0xa0,
+                       .len = 12,
+                       .flags = JAILHOUSE_PCICAPS_WRITE,
+               },
+               {
+                       .id = PCI_EXT_CAP_ID_ERR | JAILHOUSE_PCI_EXT_CAP,
+                       .start = 0x100,
+                       .len = 4,
+                       .flags = 0,
+               },
+               {
+                       .id = PCI_EXT_CAP_ID_DSN | JAILHOUSE_PCI_EXT_CAP,
+                       .start = 0x140,
+                       .len = 4,
+                       .flags = 0,
+               },
+       },
+};
-- 
2.40.1

-- 
You received this message because you are subscribed to the Google Groups 
"Jailhouse" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jailhouse-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jailhouse-dev/20230519204033.643200-57-ralf.ramsauer%40oth-regensburg.de.

Reply via email to