mirror of https://github.com/xemu-project/xemu.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 <sunilvl@ventanamicro.com> Reviewed-by: Bin Meng <bmeng@tinylab.org> Acked-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Andrew Jones <ajones@ventanamicro.com> Message-ID: <20230302091212.999767-4-sunilvl@ventanamicro.com> Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
This commit is contained in:
parent
168b8c29ce
commit
71302ff3bc
|
@ -1458,6 +1458,8 @@ static void virt_machine_init(MachineState *machine)
|
||||||
ROUND_UP(virt_high_pcie_memmap.base, virt_high_pcie_memmap.size);
|
ROUND_UP(virt_high_pcie_memmap.base, virt_high_pcie_memmap.size);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
s->memmap = virt_memmap;
|
||||||
|
|
||||||
/* register system main memory (actual RAM) */
|
/* register system main memory (actual RAM) */
|
||||||
memory_region_add_subregion(system_memory, memmap[VIRT_DRAM].base,
|
memory_region_add_subregion(system_memory, memmap[VIRT_DRAM].base,
|
||||||
machine->ram);
|
machine->ram);
|
||||||
|
|
|
@ -59,6 +59,7 @@ struct RISCVVirtState {
|
||||||
char *oem_id;
|
char *oem_id;
|
||||||
char *oem_table_id;
|
char *oem_table_id;
|
||||||
OnOffAuto acpi;
|
OnOffAuto acpi;
|
||||||
|
const MemMapEntry *memmap;
|
||||||
};
|
};
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
|
|
Loading…
Reference in New Issue