[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v7 12/14] hw/riscv: set machine->fdt in spike_board_init()
From: |
Daniel Henrique Barboza |
Subject: |
[PATCH v7 12/14] hw/riscv: set machine->fdt in spike_board_init() |
Date: |
Thu, 8 Sep 2022 16:40:38 -0300 |
This will enable support for the 'dumpdtb' QMP/HMP command for the spike
machine.
Cc: Palmer Dabbelt <palmer@dabbelt.com>
Cc: Alistair Francis <alistair.francis@wdc.com>
Cc: Bin Meng <bin.meng@windriver.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
---
hw/riscv/spike.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/hw/riscv/spike.c b/hw/riscv/spike.c
index 5ba34543c8..1e1d752c00 100644
--- a/hw/riscv/spike.c
+++ b/hw/riscv/spike.c
@@ -40,6 +40,8 @@
#include "sysemu/device_tree.h"
#include "sysemu/sysemu.h"
+#include <libfdt.h>
+
static const MemMapEntry spike_memmap[] = {
[SPIKE_MROM] = { 0x1000, 0xf000 },
[SPIKE_HTIF] = { 0x1000000, 0x1000 },
@@ -304,6 +306,10 @@ static void spike_board_init(MachineState *machine)
/* Compute the fdt load address in dram */
fdt_load_addr = riscv_load_fdt(memmap[SPIKE_DRAM].base,
machine->ram_size, s->fdt);
+
+ /* Set machine->fdt for 'dumpdtb' QMP/HMP command */
+ machine->fdt = s->fdt;
+
/* load the reset vector */
riscv_setup_rom_reset_vec(machine, &s->soc[0], memmap[SPIKE_DRAM].base,
memmap[SPIKE_MROM].base,
--
2.37.2
- Re: [PATCH v7 07/14] hw/ppc: set machine->fdt in xilinx_load_device_tree(), (continued)
- [PATCH v7 08/14] hw/ppc: set machine->fdt in pegasos2_machine_reset(), Daniel Henrique Barboza, 2022/09/08
- [PATCH v7 09/14] hw/ppc: set machine->fdt in pnv_reset(), Daniel Henrique Barboza, 2022/09/08
- [PATCH v7 10/14] hw/ppc: set machine->fdt in spapr machine, Daniel Henrique Barboza, 2022/09/08
- [PATCH v7 11/14] hw/riscv: set machine->fdt in sifive_u_machine_init(), Daniel Henrique Barboza, 2022/09/08
- [PATCH v7 12/14] hw/riscv: set machine->fdt in spike_board_init(),
Daniel Henrique Barboza <=
- [PATCH v7 13/14] hw/xtensa: set machine->fdt in xtfpga_init(), Daniel Henrique Barboza, 2022/09/08
- [PATCH v7 14/14] qmp/hmp, device_tree.c: introduce dumpdtb, Daniel Henrique Barboza, 2022/09/08
- Re: [PATCH v7 00/14] QMP/HMP: introduce 'dumpdtb', Daniel Henrique Barboza, 2022/09/22
- Re: [PATCH v7 00/14] QMP/HMP: introduce 'dumpdtb', Philippe Mathieu-Daudé, 2022/09/22