mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-31 22:23:05 +00:00

Align the virtio mmio device tree node names with the schema to avoid any schema warnings. Link: https://lore.kernel.org/r/20220425135524.1077986-1-sudeep.holla@arm.com Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
35 lines
603 B
Plaintext
35 lines
603 B
Plaintext
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* ARM Ltd. Fast Models
|
|
*
|
|
* "rs2" extension for the v2m motherboard
|
|
*/
|
|
/ {
|
|
bus@8000000 {
|
|
motherboard-bus@8000000 {
|
|
arm,v2m-memory-map = "rs2";
|
|
|
|
iofpga-bus@300000000 {
|
|
virtio@140000 {
|
|
compatible = "virtio,mmio";
|
|
reg = <0x140000 0x200>;
|
|
interrupts = <43>;
|
|
};
|
|
|
|
virtio@150000 {
|
|
compatible = "virtio,mmio";
|
|
reg = <0x150000 0x200>;
|
|
interrupts = <44>;
|
|
};
|
|
|
|
virtio@200000 {
|
|
compatible = "virtio,mmio";
|
|
reg = <0x200000 0x200>;
|
|
interrupts = <46>;
|
|
status = "disabled";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|