qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/2] hw/riscv: Skip re-generating DT nodes for a given DTB
@ 2023-02-28  7:45 Bin Meng
  2023-02-28  7:45 ` [PATCH v2 2/2] hw/riscv: Move the dtb load bits outside of create_fdt() Bin Meng
  2023-03-02  1:29 ` [PATCH v2 1/2] hw/riscv: Skip re-generating DT nodes for a given DTB Palmer Dabbelt
  0 siblings, 2 replies; 4+ messages in thread
From: Bin Meng @ 2023-02-28  7:45 UTC (permalink / raw)
  To: qemu-devel
  Cc: Daniel Henrique Barboza, Alistair Francis, Bin Meng, Liu Zhiwei,
	Palmer Dabbelt, Weiwei Li, qemu-riscv

Launch qemu-system-riscv64 with a given dtb for 'sifive_u' and 'virt'
machines, QEMU complains:

  qemu_fdt_add_subnode: Failed to create subnode /soc: FDT_ERR_EXISTS

The whole DT generation logic should be skipped when a given DTB is
present.

Fixes: b1f19f238cae ("hw/riscv: write bootargs 'chosen' FDT after riscv_load_kernel()")
Signed-off-by: Bin Meng <bmeng@tinylab.org>
Reviewed-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com>
---

(no changes since v1)

 hw/riscv/sifive_u.c | 1 +
 hw/riscv/virt.c     | 1 +
 2 files changed, 2 insertions(+)

diff --git a/hw/riscv/sifive_u.c b/hw/riscv/sifive_u.c
index ad3bb35b34..76db5ed3dd 100644
--- a/hw/riscv/sifive_u.c
+++ b/hw/riscv/sifive_u.c
@@ -118,6 +118,7 @@ static void create_fdt(SiFiveUState *s, const MemMapEntry *memmap,
             error_report("load_device_tree() failed");
             exit(1);
         }
+        return;
     } else {
         fdt = ms->fdt = create_device_tree(&fdt_size);
         if (!fdt) {
diff --git a/hw/riscv/virt.c b/hw/riscv/virt.c
index 86c4adc0c9..0c7b4a1e46 100644
--- a/hw/riscv/virt.c
+++ b/hw/riscv/virt.c
@@ -1014,6 +1014,7 @@ static void create_fdt(RISCVVirtState *s, const MemMapEntry *memmap)
             error_report("load_device_tree() failed");
             exit(1);
         }
+        return;
     } else {
         ms->fdt = create_device_tree(&s->fdt_size);
         if (!ms->fdt) {
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-03-02  1:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-28  7:45 [PATCH v2 1/2] hw/riscv: Skip re-generating DT nodes for a given DTB Bin Meng
2023-02-28  7:45 ` [PATCH v2 2/2] hw/riscv: Move the dtb load bits outside of create_fdt() Bin Meng
2023-02-28  9:15   ` Daniel Henrique Barboza
2023-03-02  1:29 ` [PATCH v2 1/2] hw/riscv: Skip re-generating DT nodes for a given DTB Palmer Dabbelt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).