From: Sunil V L Date: Thu, 2 Mar 2023 09:12:07 +0000 (+0530) Subject: hw/riscv/virt: Add memmap pointer to RiscVVirtState X-Git-Tag: v8.0.0-rc0~22^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=71302ff3bc9fbcceeb3ad7e6bb724ea942b5bba1;p=thirdparty%2Fqemu.git hw/riscv/virt: Add memmap pointer to RiscVVirtState memmap needs to be exported outside of virt.c so that modules like acpi can use it. Hence, add a pointer field in RiscVVirtState structure and initialize it with the memorymap. Signed-off-by: Sunil V L Reviewed-by: Bin Meng Acked-by: Alistair Francis Reviewed-by: Andrew Jones Message-ID: <20230302091212.999767-4-sunilvl@ventanamicro.com> Signed-off-by: Palmer Dabbelt --- diff --git a/hw/riscv/virt.c b/hw/riscv/virt.c index 90579a4c0e7..aed303e1e69 100644 --- a/hw/riscv/virt.c +++ b/hw/riscv/virt.c @@ -1458,6 +1458,8 @@ static void virt_machine_init(MachineState *machine) ROUND_UP(virt_high_pcie_memmap.base, virt_high_pcie_memmap.size); } + s->memmap = virt_memmap; + /* register system main memory (actual RAM) */ memory_region_add_subregion(system_memory, memmap[VIRT_DRAM].base, machine->ram); diff --git a/include/hw/riscv/virt.h b/include/hw/riscv/virt.h index 62efebaa322..379501edcc0 100644 --- a/include/hw/riscv/virt.h +++ b/include/hw/riscv/virt.h @@ -59,6 +59,7 @@ struct RISCVVirtState { char *oem_id; char *oem_table_id; OnOffAuto acpi; + const MemMapEntry *memmap; }; enum {