From: Cédric Le Goater Date: Thu, 6 Jun 2019 17:47:32 +0000 (+0200) Subject: ppc/pnv: activate the "dumpdtb" option on the powernv machine X-Git-Tag: v4.1.0-rc0~62^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8d409261416171efcaf3f741f677566308c16290;p=thirdparty%2Fqemu.git ppc/pnv: activate the "dumpdtb" option on the powernv machine This is a good way to debug the DT creation for current PowerNV machines and new ones to come. Signed-off-by: Cédric Le Goater Message-Id: <20190606174732.13051-1-clg@kaod.org> Reviewed-by: Greg Kurz Signed-off-by: David Gibson --- diff --git a/hw/ppc/pnv.c b/hw/ppc/pnv.c index 046f0a83c8e..ed689246679 100644 --- a/hw/ppc/pnv.c +++ b/hw/ppc/pnv.c @@ -23,6 +23,7 @@ #include "sysemu/sysemu.h" #include "sysemu/numa.h" #include "sysemu/cpus.h" +#include "sysemu/device_tree.h" #include "hw/hw.h" #include "target/ppc/cpu.h" #include "qemu/log.h" @@ -554,6 +555,7 @@ static void pnv_reset(void) /* Pack resulting tree */ _FDT((fdt_pack(fdt))); + qemu_fdt_dumpdtb(fdt, fdt_totalsize(fdt)); cpu_physical_memory_write(PNV_FDT_ADDR, fdt, fdt_totalsize(fdt)); }