[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RESEND PATCH v4 09/17] hw/loongarch: Fix fdt memory node wrong 'reg'
|
From: |
Song Gao |
|
Subject: |
[RESEND PATCH v4 09/17] hw/loongarch: Fix fdt memory node wrong 'reg' |
|
Date: |
Thu, 18 Jan 2024 19:31:15 +0800 |
The right fdt memory node like [1], not [2]
[1]
memory@0 {
device_type = "memory";
reg = <0x00 0x00 0x00 0x10000000>;
};
[2]
memory@0 {
device_type = "memory";
reg = <0x02 0x00 0x02 0x10000000>;
};
Reviewed-by: Bibo Mao <maobibo@loongson.cn>
Signed-off-by: Song Gao <gaosong@loongson.cn>
Message-Id: <20231227080821.3216113-10-gaosong@loongson.cn>
---
hw/loongarch/virt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hw/loongarch/virt.c b/hw/loongarch/virt.c
index 5f5153e681..129cad92e5 100644
--- a/hw/loongarch/virt.c
+++ b/hw/loongarch/virt.c
@@ -290,7 +290,7 @@ static void fdt_add_memory_node(MachineState *ms,
char *nodename = g_strdup_printf("/memory@%" PRIx64, base);
qemu_fdt_add_subnode(ms->fdt, nodename);
- qemu_fdt_setprop_cells(ms->fdt, nodename, "reg", 2, base, 2, size);
+ qemu_fdt_setprop_cells(ms->fdt, nodename, "reg", 0, base, 0, size);
qemu_fdt_setprop_string(ms->fdt, nodename, "device_type", "memory");
if (ms->numa_state && ms->numa_state->num_nodes) {
--
2.25.1
- [RESEND PATCH v4 00/17] Add boot LoongArch elf kernel with FDT, Song Gao, 2024/01/18
- [RESEND PATCH v4 06/17] hw/loongarch: Init efi_boot_memmap table, Song Gao, 2024/01/18
- [RESEND PATCH v4 08/17] hw/loongarch: Init efi_fdt table, Song Gao, 2024/01/18
- [RESEND PATCH v4 03/17] hw/loongarch: Add slave cpu boot_code, Song Gao, 2024/01/18
- [RESEND PATCH v4 01/17] hw/loongarch: Move boot fucntions to boot.c, Song Gao, 2024/01/18
- [RESEND PATCH v4 04/17] hw/loongarch: Add init_cmdline, Song Gao, 2024/01/18
- [RESEND PATCH v4 05/17] hw/loongarch: Init efi_system_table, Song Gao, 2024/01/18
- [RESEND PATCH v4 09/17] hw/loongarch: Fix fdt memory node wrong 'reg',
Song Gao <=
- [RESEND PATCH v4 16/17] hw/loongarch: Add cells missing from uart node, Song Gao, 2024/01/18
- [RESEND PATCH v4 13/17] hw/loongarch: fdt adds pch_msi Controller, Song Gao, 2024/01/18
- [RESEND PATCH v4 07/17] hw/loongarch: Init efi_initrd table, Song Gao, 2024/01/18
- [RESEND PATCH v4 12/17] hw/loongarch: fdt adds pch_pic Controller, Song Gao, 2024/01/18
- [RESEND PATCH v4 14/17] hw/loongarch: fdt adds pcie irq_map node, Song Gao, 2024/01/18
- [RESEND PATCH v4 10/17] hw/loongarch: fdt adds cpu interrupt controller node, Song Gao, 2024/01/18
- [RESEND PATCH v4 02/17] hw/loongarch: Add load initrd, Song Gao, 2024/01/18
- [RESEND PATCH v4 11/17] hw/loongarch: fdt adds Extend I/O Interrupt Controller, Song Gao, 2024/01/18
- [RESEND PATCH v4 15/17] hw/loongarch: fdt remove unused irqchip node, Song Gao, 2024/01/18
- [RESEND PATCH v4 17/17] hw/loongarch: Add cells missing from rtc node, Song Gao, 2024/01/18