diff options
| author | Martin Schiller | 2018-02-23 13:15:49 +0000 |
|---|---|---|
| committer | Mathias Kresin | 2018-03-06 18:49:06 +0000 |
| commit | d84ac78d6aae9218fe3cc8ffc0d73291c633841a (patch) | |
| tree | 8a905820a1088e01c197b02e6b3cd741084e11de | |
| parent | cde4f9008a6908a8de8f2134b9afcc6920e48fe4 (diff) | |
| download | openwrt-d84ac78d6aae9218fe3cc8ffc0d73291c633841a.tar.gz | |
lantiq/xrx200: add usif support to dts files
The Lantiq XRX200 aka VR9 doesn't have an asc0. Instead,
there is an USIF module which can either be an UART or a
SPI Controller.
Signed-off-by: Martin Schiller <ms@dev.tdt.de>
| -rw-r--r-- | target/linux/lantiq/files-4.14/arch/mips/boot/dts/vr9.dtsi | 8 | ||||
| -rw-r--r-- | target/linux/lantiq/files-4.9/arch/mips/boot/dts/vr9.dtsi | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/target/linux/lantiq/files-4.14/arch/mips/boot/dts/vr9.dtsi b/target/linux/lantiq/files-4.14/arch/mips/boot/dts/vr9.dtsi index adad9506d9..77e0cba30d 100644 --- a/target/linux/lantiq/files-4.14/arch/mips/boot/dts/vr9.dtsi +++ b/target/linux/lantiq/files-4.14/arch/mips/boot/dts/vr9.dtsi @@ -184,11 +184,11 @@ interrupts = <126 127 128 129 130 131>; }; - asc0: serial@e100400 { - compatible = "lantiq,asc"; - reg = <0xe100400 0x400>; + usif: usif@da00000 { + compatible = "lantiq,usif"; + reg = <0xda00000 0x1000000>; interrupt-parent = <&icu0>; - interrupts = <104 105 106>; + interrupts = <29 125 107 108 109 110>; status = "disabled"; }; diff --git a/target/linux/lantiq/files-4.9/arch/mips/boot/dts/vr9.dtsi b/target/linux/lantiq/files-4.9/arch/mips/boot/dts/vr9.dtsi index 13bb002c52..dbcbb3dcec 100644 --- a/target/linux/lantiq/files-4.9/arch/mips/boot/dts/vr9.dtsi +++ b/target/linux/lantiq/files-4.9/arch/mips/boot/dts/vr9.dtsi @@ -126,11 +126,11 @@ interrupts = <126 127 128 129 130 131>; }; - asc0: serial@E100400 { - compatible = "lantiq,asc"; - reg = <0xE100400 0x400>; + usif: usif@da00000 { + compatible = "lantiq,usif"; + reg = <0xda00000 0x1000000>; interrupt-parent = <&icu0>; - interrupts = <104 105 106>; + interrupts = <29 125 107 108 109 110>; status = "disabled"; }; |