[PATCH v2 09/17] hw/loongarch: Fix fdt memory node wrong 'reg'

Song Gao posted 17 patches 1 year, 11 months ago
Maintainers: Song Gao <gaosong@loongson.cn>
There is a newer version of this series
[PATCH v2 09/17] hw/loongarch: Fix fdt memory node wrong 'reg'
Posted by Song Gao 1 year, 11 months ago
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>;
        };

Signed-off-by: Song Gao <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 c45e724961..eaa0824f73 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
Re: [PATCH v2 09/17] hw/loongarch: Fix fdt memory node wrong 'reg'
Posted by maobibo 1 year, 11 months ago

On 2023/12/18 下午5:00, Song Gao wrote:
> 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>;
>          };
> 
> Signed-off-by: Song Gao <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 c45e724961..eaa0824f73 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) {
> 

Reviewed-by: Bibo Mao <maobibo@loongson.cn>