[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 03/16] riscv: qemu: Explain how to extract the generate devicetre
From: |
Simon Glass |
Subject: |
[PATCH 03/16] riscv: qemu: Explain how to extract the generate devicetree |
Date: |
Tue, 12 Oct 2021 19:01:07 -0600 |
QEMU currently generates a devicetree for use with U-Boot. Explain how to
obtain it.
Signed-off-by: Simon Glass <sjg@chromium.org>
---
doc/board/emulation/qemu-riscv.rst | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/doc/board/emulation/qemu-riscv.rst
b/doc/board/emulation/qemu-riscv.rst
index 4b8e104a215..b3cf7085847 100644
--- a/doc/board/emulation/qemu-riscv.rst
+++ b/doc/board/emulation/qemu-riscv.rst
@@ -113,3 +113,15 @@ An attached disk can be emulated by adding::
-device ide-hd,drive=mydisk,bus=ahci.0
You will have to run 'scsi scan' to use it.
+
+Obtaining the QEMU devicetree
+-----------------------------
+
+QEMU generates its own devicetree to pass to U-Boot and does this by default.
+You can use `-dtb u-boot.dtb` to force QEMU to use U-Boot's in-tree version.
+
+To obtain the devicetree that qemu generates, add `-machine dumpdtb=dtb.dtb`,
+e.g.::
+
+ qemu-system-riscv64 -nographic -machine virt -bios u-boot \
+ -machine dumpdtb=dtb.dtb
--
2.33.0.882.g93a45727a2-goog
- [PATCH 00/16] fdt: Make OF_BOARD a boolean option, Simon Glass, 2021/10/12
- [PATCH 01/16] arm: qemu: Mention -nographic in the docs, Simon Glass, 2021/10/12
- [PATCH 03/16] riscv: qemu: Explain how to extract the generate devicetree,
Simon Glass <=
- [PATCH 04/16] arm: qemu: Add a devicetree file for qemu_arm, Simon Glass, 2021/10/12
- [PATCH 05/16] arm: qemu: Add a devicetree file for qemu_arm64, Simon Glass, 2021/10/12
- Re: [PATCH 05/16] arm: qemu: Add a devicetree file for qemu_arm64, François Ozog, 2021/10/12
- Re: [PATCH 05/16] arm: qemu: Add a devicetree file for qemu_arm64, Alex Bennée, 2021/10/27
- Re: [PATCH 05/16] arm: qemu: Add a devicetree file for qemu_arm64, Tom Rini, 2021/10/27
- Re: [PATCH 05/16] arm: qemu: Add a devicetree file for qemu_arm64, Simon Glass, 2021/10/27
- Re: [PATCH 05/16] arm: qemu: Add a devicetree file for qemu_arm64, Tom Rini, 2021/10/27
- Re: [PATCH 05/16] arm: qemu: Add a devicetree file for qemu_arm64, Alex Bennée, 2021/10/27
[PATCH 06/16] riscv: qemu: Add devicetree files for qemu_riscv32/64, Simon Glass, 2021/10/12