summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-01-17 20:47:51 +0300
committerTom Rini <trini@konsulko.com>2023-01-24 02:11:40 +0300
commit00fc8cade89e36855fe8143c4ee66e951a41734e (patch)
tree8e9b0f3f981b8e2a19387d2919c7d35a4c26d3c9 /arch
parent902400201de139cc1499dc4f794ed34d8a758ca8 (diff)
downloadu-boot-00fc8cade89e36855fe8143c4ee66e951a41734e.tar.xz
virtio: Add a block device
The test code for virtio is fairly simplistic and does not actually create a block device. Add a way to specify the device type in the device tree. Add a block device so that we can do more testing. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/sandbox/dts/test.dts6
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/sandbox/dts/test.dts b/arch/sandbox/dts/test.dts
index 2e580f980f..9d96e479ca 100644
--- a/arch/sandbox/dts/test.dts
+++ b/arch/sandbox/dts/test.dts
@@ -1527,12 +1527,18 @@
sandbox_virtio1 {
compatible = "sandbox,virtio1";
+ virtio-type = <4>; /* rng */
};
sandbox_virtio2 {
compatible = "sandbox,virtio2";
};
+ sandbox-virtio-blk {
+ compatible = "sandbox,virtio1";
+ virtio-type = <2>; /* block */
+ };
+
sandbox_scmi {
compatible = "sandbox,scmi-devices";
clocks = <&clk_scmi 2>, <&clk_scmi 0>;