[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 05/16] hw/ppc: Set machine->fdt in e500 machines
From: |
Daniel Henrique Barboza |
Subject: |
[PULL 05/16] hw/ppc: Set machine->fdt in e500 machines |
Date: |
Sun, 5 Feb 2023 07:04:38 -0300 |
From: Bernhard Beschow <shentey@gmail.com>
This enables support for the 'dumpdtb' QMP/HMP command for all
e500 machines.
Signed-off-by: Bernhard Beschow <shentey@gmail.com>
Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>
Message-Id: <20230125130024.158721-2-shentey@gmail.com>
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
---
hw/ppc/e500.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/hw/ppc/e500.c b/hw/ppc/e500.c
index 9fa1f8e6cf..7239993acc 100644
--- a/hw/ppc/e500.c
+++ b/hw/ppc/e500.c
@@ -659,9 +659,14 @@ done:
if (!dry_run) {
qemu_fdt_dumpdtb(fdt, fdt_size);
cpu_physical_memory_write(addr, fdt, fdt_size);
+
+ /* Set machine->fdt for 'dumpdtb' QMP/HMP command */
+ g_free(machine->fdt);
+ machine->fdt = fdt;
+ } else {
+ g_free(fdt);
}
ret = fdt_size;
- g_free(fdt);
out:
g_free(pci_map);
--
2.39.1
- [PULL 00/16] ppc queue, Daniel Henrique Barboza, 2023/02/05
- [PULL 04/16] hw/pci-host/mv64361: Reuse pci_swizzle_map_irq_fn, Daniel Henrique Barboza, 2023/02/05
- [PULL 03/16] ppc/pegasos2: Improve readability of VIA south bridge creation, Daniel Henrique Barboza, 2023/02/05
- [PULL 01/16] tests/migration: add sysprof-capture-4 as dependency for stress binary, Daniel Henrique Barboza, 2023/02/05
- [PULL 06/16] hw/ppc/e500{, plat}: Drop redundant checks for presence of platform bus, Daniel Henrique Barboza, 2023/02/05
- [PULL 07/16] hw/ppc/e500.c: Avoid hardcoding parent device in create_devtree_etsec(), Daniel Henrique Barboza, 2023/02/05
- [PULL 05/16] hw/ppc: Set machine->fdt in e500 machines,
Daniel Henrique Barboza <=
- [PULL 02/16] tests/migration: add support for ppc64le for guestperf.py, Daniel Henrique Barboza, 2023/02/05
- [PULL 08/16] hw/ppc/e500.c: Attach eSDHC unimplemented region to ccsr_addr_space, Daniel Henrique Barboza, 2023/02/05
- [PULL 10/16] ppc/pnv/pci: Remove duplicate definition of PNV_PHB5_DEVICE_ID, Daniel Henrique Barboza, 2023/02/05
- [PULL 11/16] ppc/pnv/pci: Update PHB5 version register, Daniel Henrique Barboza, 2023/02/05
- [PULL 09/16] ppc/pnv/pci: Cleanup PnvPHBPecState structure, Daniel Henrique Barboza, 2023/02/05
- [PULL 15/16] hw/display/sm501: Remove unneeded casts from void pointer, Daniel Henrique Barboza, 2023/02/05
- [PULL 13/16] hw/ppc/pegasos2: Fix a typo in a comment, Daniel Henrique Barboza, 2023/02/05
- [PULL 16/16] hw/display/sm501: Code style fix, Daniel Henrique Barboza, 2023/02/05
- [PULL 14/16] hw/display/sm501: Remove parenthesis around constant macro definitions, Daniel Henrique Barboza, 2023/02/05
- [PULL 12/16] ppc/pnv/pci: Fix PHB xscom registers memory region name, Daniel Henrique Barboza, 2023/02/05