| From b79d3cf319cc5698311ef83247110c93d3c2de2c Mon Sep 17 00:00:00 2001 |
| Message-Id: <b79d3cf319cc5698311ef83247110c93d3c2de2c.1695834344.git.diego.sueiro@arm.com> |
| From: Diego Sueiro <diego.sueiro@arm.com> |
| Date: Wed, 27 Sep 2023 18:05:26 +0100 |
| Subject: [PATCH] fdts/fvp-base: Add stdout-path and virtio net and rng nodes |
| |
| Upstream-Status: Pending |
| Signed-off-by: Diego Sueiro <diego.sueiro@arm.com> |
| --- |
| fdts/fvp-base-psci-common.dtsi | 8 ++++++-- |
| fdts/rtsm_ve-motherboard.dtsi | 12 ++++++++++++ |
| 2 files changed, 18 insertions(+), 2 deletions(-) |
| |
| diff --git a/fdts/fvp-base-psci-common.dtsi b/fdts/fvp-base-psci-common.dtsi |
| index 79cf37d3b0..b1ba5ce703 100644 |
| --- a/fdts/fvp-base-psci-common.dtsi |
| +++ b/fdts/fvp-base-psci-common.dtsi |
| @@ -30,7 +30,9 @@ |
| #if (ENABLE_RME == 1) |
| chosen { bootargs = "console=ttyAMA0 earlycon=pl011,0x1c090000 root=/dev/vda ip=on";}; |
| #else |
| - chosen {}; |
| + chosen { |
| + stdout-path = &v2m_serial0; |
| + }; |
| #endif |
| |
| aliases { |
| @@ -243,6 +245,8 @@ |
| <0 0 39 &gic 0 GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>, |
| <0 0 40 &gic 0 GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>, |
| <0 0 41 &gic 0 GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>, |
| - <0 0 42 &gic 0 GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>; |
| + <0 0 42 &gic 0 GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>, |
| + <0 0 44 &gic 0 GIC_SPI 44 IRQ_TYPE_LEVEL_HIGH>, |
| + <0 0 46 &gic 0 GIC_SPI 46 IRQ_TYPE_LEVEL_HIGH>; |
| }; |
| }; |
| diff --git a/fdts/rtsm_ve-motherboard.dtsi b/fdts/rtsm_ve-motherboard.dtsi |
| index 0a824b349a..21a083a51a 100644 |
| --- a/fdts/rtsm_ve-motherboard.dtsi |
| +++ b/fdts/rtsm_ve-motherboard.dtsi |
| @@ -230,6 +230,18 @@ |
| interrupts = <42>; |
| }; |
| |
| + virtio@150000 { |
| + compatible = "virtio,mmio"; |
| + reg = <0x150000 0x200>; |
| + interrupts = <44>; |
| + }; |
| + |
| + virtio@200000 { |
| + compatible = "virtio,mmio"; |
| + reg = <0x200000 0x200>; |
| + interrupts = <46>; |
| + }; |
| + |
| rtc@170000 { |
| compatible = "arm,pl031", "arm,primecell"; |
| reg = <0x170000 0x1000>; |
| -- |
| 2.39.1 |
| |