diff options
author | Jimmy Zhong <mb300sd@mb300sd.net> | 2016-08-03 13:58:01 -0400 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2016-08-10 03:03:50 +0200 |
commit | 2b1f4945b155ffee7f9c7f44bb90e5498b880ff5 (patch) | |
tree | cbf0bc8cb880f782c52a478c497b674b8d41c1b7 /target/linux/ramips/dts | |
parent | 5947f7f85e191f8392847a199ad40a6de7be9408 (diff) | |
download | upstream-2b1f4945b155ffee7f9c7f44bb90e5498b880ff5.tar.gz upstream-2b1f4945b155ffee7f9c7f44bb90e5498b880ff5.tar.bz2 upstream-2b1f4945b155ffee7f9c7f44bb90e5498b880ff5.zip |
ramips: Add support for TEW-714TRU
Signed-off-by: Jimmy Zhong <mb300sd@mb300sd.net>
Diffstat (limited to 'target/linux/ramips/dts')
-rw-r--r-- | target/linux/ramips/dts/TEW-714TRU.dts | 122 |
1 files changed, 122 insertions, 0 deletions
diff --git a/target/linux/ramips/dts/TEW-714TRU.dts b/target/linux/ramips/dts/TEW-714TRU.dts new file mode 100644 index 0000000000..0e0f066518 --- /dev/null +++ b/target/linux/ramips/dts/TEW-714TRU.dts @@ -0,0 +1,122 @@ +/dts-v1/; + +#include "rt5350.dtsi" + +/ { + compatible = "TEW-714TRU", "ralink,rt5350-soc"; + model = "TRENDnet TEW714TRU"; + + gpio-leds { + compatible = "gpio-leds"; + + usb { + label = "tew-714tru:red:usb"; + gpios = <&gpio0 9 1>; + }; + + wifi { + label = "tew-714tru:green:wifi"; + gpios = <&gpio0 13 1>; + }; + }; + + gpio-keys-polled { + compatible = "gpio-keys-polled"; + #address-cells = <1>; + #size-cells = <0>; + poll-interval = <20>; + + reset { + label = "reset"; + gpios = <&gpio0 10 1>; + linux,code = <0x198>; + }; + + wps { + label = "wps"; + gpios = <&gpio0 0 1>; + linux,code = <0x211>; + }; + }; + + gpio_export { + compatible = "gpio-export"; + #size-cells = <0>; + + repeater { + gpio-export,name = "repeater_switch"; + gpios = <&gpio0 7 0>; + }; + + wisp { + gpio-export,name = "wisp_switch"; + gpios = <&gpio0 12 0>; + }; + }; +}; + +&spi0 { + status = "okay"; + + m25p80@0 { + #address-cells = <1>; + #size-cells = <1>; + compatible = "jedec,spi-nor"; + reg = <0>; + linux,modalias = "m25p80", "s25fl064k"; + spi-max-frequency = <10000000>; + + partition@0 { + label = "u-boot"; + reg = <0x0 0x30000>; + read-only; + }; + + partition@30000 { + label = "u-boot-env"; + reg = <0x30000 0x10000>; + read-only; + }; + + factory: partition@40000 { + label = "factory"; + reg = <0x40000 0x10000>; + read-only; + }; + + partition@50000 { + label = "firmware"; + reg = <0x50000 0x7b0000>; + }; + }; +}; + +&pinctrl { + state_default: pinctrl0 { + gpio { + ralink,group = "i2c", "jtag", "uartf"; + ralink,function = "gpio"; + }; + }; +}; + +ðernet { + mtd-mac-address = <&factory 0x4>; +}; + +&esw { + mediatek,portmap = <0x1>; + mediatek,portdisable = <0x3e>; +}; + +&wmac { + ralink,mtd-eeprom = <&factory 0>; +}; + +&ehci { + status = "okay"; +}; + +&ohci { + status = "okay"; +}; |