diff options
author | Sander Vanheule <sander@svanheule.net> | 2025-01-19 21:34:20 +0300 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2025-02-21 17:10:07 +0300 |
commit | 8e6448164753925c0f3597d95021b45138fbd614 (patch) | |
tree | ccfa6a674678aeba70a2ebeadc2877c457b2df98 | |
parent | 045cbcc491062196dd3c3851f56e27a77f3c7f84 (diff) | |
download | linux-8e6448164753925c0f3597d95021b45138fbd614.tar.xz |
mips: dts: realtek: Add SoC IRQ node for RTL838x
Add the SoC interrupt controller so other components can link to it.
Signed-off-by: Sander Vanheule <sander@svanheule.net>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
-rw-r--r-- | arch/mips/boot/dts/realtek/rtl838x.dtsi | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/mips/boot/dts/realtek/rtl838x.dtsi b/arch/mips/boot/dts/realtek/rtl838x.dtsi index 907449094536..21fb584e6383 100644 --- a/arch/mips/boot/dts/realtek/rtl838x.dtsi +++ b/arch/mips/boot/dts/realtek/rtl838x.dtsi @@ -73,5 +73,15 @@ status = "disabled"; }; + + intc: interrupt-controller@3000 { + compatible = "realtek,rtl8380-intc", "realtek,rtl-intc"; + reg = <0x3000 0x20>; + interrupt-controller; + #interrupt-cells = <1>; + + interrupt-parent = <&cpuintc>; + interrupts = <2>, <3>, <4>, <5>, <6>; + }; }; }; |