Message ID | 20180614035605.25286-2-benh@kernel.crashing.org |
---|---|
State | Superseded, archived |
Headers | show |
Series | [1/3] arm: dts: Fix error in Aspeed OpenPower Romulus device-tree | expand |
diff --git a/arch/arm/boot/dts/aspeed-g5.dtsi b/arch/arm/boot/dts/aspeed-g5.dtsi index 17f2714d18a7..251664984398 100644 --- a/arch/arm/boot/dts/aspeed-g5.dtsi +++ b/arch/arm/boot/dts/aspeed-g5.dtsi @@ -127,6 +127,11 @@ reg = <0x1e6c0080 0x80>; }; + cvic: interrupt-controller@1e6c2000 { + compatible = "aspeed,ast2400-cvic"; + reg = <0x1e6c2000 0x80>; + }; + mac0: ethernet@1e660000 { compatible = "aspeed,ast2500-mac", "faraday,ftgmac100"; reg = <0x1e660000 0x180>; @@ -211,7 +216,7 @@ status = "disabled"; }; - sram@1e720000 { + sram: sram@1e720000 { compatible = "mmio-sram"; reg = <0x1e720000 0x9000>; // 36K };
Add the missing node for the CVIC (the coprocessor interrupt controller) and add a label to the SRAM node so it can be referenced from the board device-tree file. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> --- arch/arm/boot/dts/aspeed-g5.dtsi | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-)