[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 03/10] hw/arm/virt: Use machine_memory_devices_init()
From: |
David Hildenbrand |
Subject: |
[PATCH v3 03/10] hw/arm/virt: Use machine_memory_devices_init() |
Date: |
Thu, 1 Jun 2023 14:14:40 +0200 |
Let's use our new helper. We'll add the subregion to system RAM now
earlier. That shouldn't matter, because the system RAM memory region should
already be alive at that point.
Cc: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: David Hildenbrand <david@redhat.com>
---
hw/arm/virt.c | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/hw/arm/virt.c b/hw/arm/virt.c
index 9b9f7d9c68..087e7059c7 100644
--- a/hw/arm/virt.c
+++ b/hw/arm/virt.c
@@ -1817,10 +1817,7 @@ static void virt_set_memmap(VirtMachineState *vms, int
pa_bits)
virt_set_high_memmap(vms, base, pa_bits);
if (device_memory_size > 0) {
- ms->device_memory = g_malloc0(sizeof(*ms->device_memory));
- ms->device_memory->base = device_memory_base;
- memory_region_init(&ms->device_memory->mr, OBJECT(vms),
- "device-memory", device_memory_size);
+ machine_memory_devices_init(ms, device_memory_base,
device_memory_size);
}
}
@@ -2261,10 +2258,6 @@ static void machvirt_init(MachineState *machine)
memory_region_add_subregion(sysmem, vms->memmap[VIRT_MEM].base,
machine->ram);
- if (machine->device_memory) {
- memory_region_add_subregion(sysmem, machine->device_memory->base,
- &machine->device_memory->mr);
- }
virt_flash_fdt(vms, sysmem, secure_sysmem ?: sysmem);
--
2.40.1
- [PATCH] memory-device: Track used region size in DeviceMemoryState, David Hildenbrand, 2023/06/01
- [PATCH v3 00/10] memory-device: Some cleanups, David Hildenbrand, 2023/06/01
- [PATCH v3 02/10] memory-device: Introduce machine_memory_devices_init(), David Hildenbrand, 2023/06/01
- [PATCH v3 03/10] hw/arm/virt: Use machine_memory_devices_init(),
David Hildenbrand <=
- [PATCH v3 04/10] hw/ppc/spapr: Use machine_memory_devices_init(), David Hildenbrand, 2023/06/01
- [PATCH v3 01/10] memory-device: Unify enabled vs. supported error messages, David Hildenbrand, 2023/06/01
- [PATCH v3 05/10] hw/loongarch/virt: Use machine_memory_devices_init(), David Hildenbrand, 2023/06/01
- [PATCH v3 06/10] hw/i386/pc: Use machine_memory_devices_init(), David Hildenbrand, 2023/06/01
- [PATCH v3 07/10] hw/i386/acpi-build: Rely on machine->device_memory when building SRAT, David Hildenbrand, 2023/06/01
- [PATCH v3 10/10] memory-device: Track used region size in DeviceMemoryState, David Hildenbrand, 2023/06/01
- [PATCH v3 08/10] hw/i386/pc: Remove PC_MACHINE_DEVMEM_REGION_SIZE, David Hildenbrand, 2023/06/01
- [PATCH v3 09/10] memory-device: Refactor memory_device_pre_plug(), David Hildenbrand, 2023/06/01