riscv: qemu: Remove the simple-bus driver for the SoC node
authorBin Meng <bmeng.cn@gmail.com>
Thu, 16 Apr 2020 15:09:28 +0000 (08:09 -0700)
committerAndes <uboot@andestech.com>
Thu, 23 Apr 2020 02:14:06 +0000 (10:14 +0800)
Prior to QEMU v3.1.0, QEMU generated the 'virt' SoC node with a
"riscv-virtio-soc" compatible string, and a "simple-bus" driver
was created to accommodate that special case in U-Boot.

Starting from QEMU v3.1.0, the SoC node was set as a "simple-bus",
hence the special simple-bus driver is no longer needed.

Update the doc to mention the latest tested QEMU version 4.2.0.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
arch/riscv/cpu/generic/cpu.c
doc/board/emulation/qemu-riscv.rst

index c0a5288bdbb1ac318eb499d712455cb35eb6e42e..13a69ef0cc48f51a3bb19c4e68c3ead8f983da83 100644 (file)
@@ -4,7 +4,6 @@
  */
 
 #include <common.h>
-#include <dm.h>
 #include <irq_func.h>
 
 /*
@@ -21,16 +20,3 @@ int cleanup_before_linux(void)
 
        return 0;
 }
-
-/* To enumerate devices on the /soc/ node, create a "simple-bus" driver */
-static const struct udevice_id riscv_virtio_soc_ids[] = {
-       { .compatible = "riscv-virtio-soc" },
-       { }
-};
-
-U_BOOT_DRIVER(riscv_virtio_soc) = {
-       .name = "riscv_virtio_soc",
-       .id = UCLASS_SIMPLE_BUS,
-       .of_match = riscv_virtio_soc_ids,
-       .flags = DM_FLAG_PRE_RELOC,
-};
index fe7505e2019a9687c5790c2ad4d6156aa7a0a6bc..c390006b31431e3fdd433dc380c1599226221cde 100644 (file)
@@ -56,7 +56,7 @@ For instructions on how to run U-Boot in supervisor mode on QEMU
 with OpenSBI, see the documentation available with OpenSBI:
 https://github.com/riscv/opensbi/blob/master/docs/platform/qemu_virt.md
 
-These have been tested in QEMU 3.0.0.
+These have been tested in QEMU 4.2.0.
 
 Running U-Boot SPL
 ------------------