[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v5 12/14] hw/riscv: set machine->fdt in spike_board_init()
From: |
Daniel Henrique Barboza |
Subject: |
[PATCH v5 12/14] hw/riscv: set machine->fdt in spike_board_init() |
Date: |
Sat, 3 Sep 2022 16:34:18 -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 | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/hw/riscv/spike.c b/hw/riscv/spike.c
index e41b6aa9f0..1fa41164b3 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,13 @@ 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);
+
+ /*
+ * Update the machine->fdt pointer to enable support for
+ * the '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
- [PATCH v5 03/14] hw/nios2: set machine->fdt in nios2_load_dtb(), (continued)
- [PATCH v5 03/14] hw/nios2: set machine->fdt in nios2_load_dtb(), Daniel Henrique Barboza, 2022/09/03
- [PATCH v5 04/14] hw/ppc: set machine->fdt in ppce500_load_device_tree(), Daniel Henrique Barboza, 2022/09/03
- [PATCH v5 05/14] hw/ppc: set machine->fdt in bamboo_load_device_tree(), Daniel Henrique Barboza, 2022/09/03
- [PATCH v5 06/14] hw/ppc: set machine->fdt in sam460ex_load_device_tree(), Daniel Henrique Barboza, 2022/09/03
- [PATCH v5 07/14] hw/ppc: set machine->fdt in xilinx_load_device_tree(), Daniel Henrique Barboza, 2022/09/03
- [PATCH v5 08/14] hw/ppc: set machine->fdt in pegasos2_machine_reset(), Daniel Henrique Barboza, 2022/09/03
- [PATCH v5 09/14] hw/ppc: set machine->fdt in pnv_reset(), Daniel Henrique Barboza, 2022/09/03
- [PATCH v5 10/14] hw/ppc: set machine->fdt in spapr machine, Daniel Henrique Barboza, 2022/09/03
- [PATCH v5 11/14] hw/riscv: set machine->fdt in sifive_u_machine_init(), Daniel Henrique Barboza, 2022/09/03
- [PATCH v5 12/14] hw/riscv: set machine->fdt in spike_board_init(),
Daniel Henrique Barboza <=
- [PATCH v5 14/14] qmp/hmp, device_tree.c: introduce dumpdtb, Daniel Henrique Barboza, 2022/09/03
- [PATCH v5 13/14] hw/xtensa: set machine->fdt in xtfpga_init(), Daniel Henrique Barboza, 2022/09/03