diff options
author | Felix Fietkau <nbd@openwrt.org> | 2016-01-17 19:55:17 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2016-01-17 19:55:17 +0000 |
commit | cce998798394bcc1b725eaa56090e8326dd360d7 (patch) | |
tree | 23a3c73ffbaa64697170e0d5110cca8b88d9f6c5 | |
parent | a52041d21e09c2165eba0272d3ba43fb7c740e04 (diff) | |
download | master-187ad058-cce998798394bcc1b725eaa56090e8326dd360d7.tar.gz master-187ad058-cce998798394bcc1b725eaa56090e8326dd360d7.tar.bz2 master-187ad058-cce998798394bcc1b725eaa56090e8326dd360d7.zip |
lantiq: Add the SPI node to ar9.dtsi and vr9.dtsi
This allows devices to use SPI without having to re-define (and thus
duplicating) the whole SPI node.
By default SPI is disabled (as before) because only few devices need it.
Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@48286 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | target/linux/lantiq/dts/ar9.dtsi | 10 | ||||
-rw-r--r-- | target/linux/lantiq/dts/vr9.dtsi | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/target/linux/lantiq/dts/ar9.dtsi b/target/linux/lantiq/dts/ar9.dtsi index f69a7aea9d..25b834647c 100644 --- a/target/linux/lantiq/dts/ar9.dtsi +++ b/target/linux/lantiq/dts/ar9.dtsi @@ -100,6 +100,16 @@ status = "disabled"; }; + spi: spi@E100800 { + compatible = "lantiq,spi-xway"; + reg = <0xE100800 0x100>; + interrupt-parent = <&icu0>; + interrupts = <22 23 24>; + #address-cells = <1>; + #size-cells = <1>; + status = "disabled"; + }; + gpio: pinmux@E100B10 { compatible = "lantiq,xrx100-pinctrl"; #gpio-cells = <2>; diff --git a/target/linux/lantiq/dts/vr9.dtsi b/target/linux/lantiq/dts/vr9.dtsi index 2330bf1c21..e38541ef69 100644 --- a/target/linux/lantiq/dts/vr9.dtsi +++ b/target/linux/lantiq/dts/vr9.dtsi @@ -112,6 +112,16 @@ status = "disabled"; }; + spi: spi@E100800 { + compatible = "lantiq,spi-xway"; + reg = <0xE100800 0x100>; + interrupt-parent = <&icu0>; + interrupts = <22 23 24>; + #address-cells = <1>; + #size-cells = <1>; + status = "disabled"; + }; + gpio: pinmux@E100B10 { compatible = "lantiq,xrx200-pinctrl"; #gpio-cells = <2>; |