mirror of https://github.com/xemu-project/xemu.git
hw/mips/loongson3_virt: Store core_iocsr into LoongsonMachineState
Link: https://lore.kernel.org/qemu-devel/972034d6-23b3-415a-b401-b8bc1cc515c9@linaro.org/ Suggested-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-ID: <20240621-loongson3-ipi-follow-v2-1-848eafcbb67e@flygoat.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
This commit is contained in:
parent
ecdfa31beb
commit
d762016d51
|
@ -97,6 +97,7 @@ struct LoongsonMachineState {
|
||||||
MemoryRegion *pio_alias;
|
MemoryRegion *pio_alias;
|
||||||
MemoryRegion *mmio_alias;
|
MemoryRegion *mmio_alias;
|
||||||
MemoryRegion *ecam_alias;
|
MemoryRegion *ecam_alias;
|
||||||
|
MemoryRegion *core_iocsr[LOONGSON_MAX_VCPUS];
|
||||||
};
|
};
|
||||||
typedef struct LoongsonMachineState LoongsonMachineState;
|
typedef struct LoongsonMachineState LoongsonMachineState;
|
||||||
|
|
||||||
|
@ -493,6 +494,7 @@ static void mips_loongson3_virt_init(MachineState *machine)
|
||||||
const char *kernel_filename = machine->kernel_filename;
|
const char *kernel_filename = machine->kernel_filename;
|
||||||
const char *initrd_filename = machine->initrd_filename;
|
const char *initrd_filename = machine->initrd_filename;
|
||||||
ram_addr_t ram_size = machine->ram_size;
|
ram_addr_t ram_size = machine->ram_size;
|
||||||
|
LoongsonMachineState *s = LOONGSON_MACHINE(machine);
|
||||||
MemoryRegion *address_space_mem = get_system_memory();
|
MemoryRegion *address_space_mem = get_system_memory();
|
||||||
MemoryRegion *ram = g_new(MemoryRegion, 1);
|
MemoryRegion *ram = g_new(MemoryRegion, 1);
|
||||||
MemoryRegion *bios = g_new(MemoryRegion, 1);
|
MemoryRegion *bios = g_new(MemoryRegion, 1);
|
||||||
|
@ -586,6 +588,7 @@ static void mips_loongson3_virt_init(MachineState *machine)
|
||||||
iocsr, 0, UINT32_MAX);
|
iocsr, 0, UINT32_MAX);
|
||||||
memory_region_add_subregion(&MIPS_CPU(cpu)->env.iocsr.mr,
|
memory_region_add_subregion(&MIPS_CPU(cpu)->env.iocsr.mr,
|
||||||
0, core_iocsr);
|
0, core_iocsr);
|
||||||
|
s->core_iocsr[i] = core_iocsr;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (node > 0) {
|
if (node > 0) {
|
||||||
|
|
Loading…
Reference in New Issue