[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Stable-9.0.1 39/44] hw/loongarch: Fix fdt memory node wrong 'reg'
From: |
Michael Tokarev |
Subject: |
[Stable-9.0.1 39/44] hw/loongarch: Fix fdt memory node wrong 'reg' |
Date: |
Mon, 27 May 2024 11:21:30 +0300 |
From: Song Gao <gaosong@loongson.cn>
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: <20240426091551.2397867-10-gaosong@loongson.cn>
(cherry picked from commit b11f9814526b833b3a052be2559457b1affad7f5)
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
diff --git a/hw/loongarch/virt.c b/hw/loongarch/virt.c
index e3042af7bb..8f39254880 100644
--- a/hw/loongarch/virt.c
+++ b/hw/loongarch/virt.c
@@ -333,7 +333,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.39.2
- [Stable-9.0.1 28/44] target/i386: rdpkru/wrpkru are no-prefix instructions, (continued)
- [Stable-9.0.1 28/44] target/i386: rdpkru/wrpkru are no-prefix instructions, Michael Tokarev, 2024/05/27
- [Stable-9.0.1 29/44] target/i386: fix feature dependency for WAITPKG, Michael Tokarev, 2024/05/27
- [Stable-9.0.1 25/44] hw/loongarch/virt: Fix memory leak, Michael Tokarev, 2024/05/27
- [Stable-9.0.1 32/44] ui/gtk: Fix mouse/motion event scaling issue with GTK display backend, Michael Tokarev, 2024/05/27
- [Stable-9.0.1 33/44] ui/gtk: Check if fence_fd is equal to or greater than 0, Michael Tokarev, 2024/05/27
- [Stable-9.0.1 41/44] dockerfiles: add 'MAKE' env variable to remaining containers, Michael Tokarev, 2024/05/27
- [Stable-9.0.1 42/44] target/i386: disable jmp_opt if EFLAGS.RF is 1, Michael Tokarev, 2024/05/27
- [Stable-9.0.1 43/44] target/i386: no single-step exception after MOV or POP SS, Michael Tokarev, 2024/05/27
- [Stable-9.0.1 40/44] hw/loongarch/virt: Fix FDT memory node address width, Michael Tokarev, 2024/05/27
- [Stable-9.0.1 31/44] configure: Fix error message when C compiler is not working, Michael Tokarev, 2024/05/27
- [Stable-9.0.1 39/44] hw/loongarch: Fix fdt memory node wrong 'reg',
Michael Tokarev <=
- [Stable-9.0.1 37/44] hw/core/machine: move compatibility flags for VirtIO-net USO to machine 8.1, Michael Tokarev, 2024/05/27
- [Stable-9.0.1 34/44] tcg/loongarch64: Fill out tcg_out_{ld, st} for vector regs, Michael Tokarev, 2024/05/27
- [Stable-9.0.1 35/44] hw/pflash: fix block write start, Michael Tokarev, 2024/05/27
- [Stable-9.0.1 44/44] gitlab: Update msys2-64bit runner tags, Michael Tokarev, 2024/05/27