diff options
author | Marty E. Plummer <hanetzer@startmail.com> | 2018-05-27 00:37:22 -0500 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2018-06-18 20:29:38 +0200 |
commit | fe3b62bbdc66a50c985ba3b0c9e873e5c0862ee2 (patch) | |
tree | c0cfef0b1aa848dd016f8d91d5f5ab27a06d48de /target/linux/ath79/dts/qca9533_glinet_ar300m.dtsi | |
parent | 142477e75112f0c3a21d43a1b36922d46c67bd33 (diff) | |
download | upstream-fe3b62bbdc66a50c985ba3b0c9e873e5c0862ee2.tar.gz upstream-fe3b62bbdc66a50c985ba3b0c9e873e5c0862ee2.tar.bz2 upstream-fe3b62bbdc66a50c985ba3b0c9e873e5c0862ee2.zip |
ath79: initial gl-ar300m support
Signed-off-by: Marty E. Plummer <hanetzer@startmail.com>
Diffstat (limited to 'target/linux/ath79/dts/qca9533_glinet_ar300m.dtsi')
-rw-r--r-- | target/linux/ath79/dts/qca9533_glinet_ar300m.dtsi | 141 |
1 files changed, 141 insertions, 0 deletions
diff --git a/target/linux/ath79/dts/qca9533_glinet_ar300m.dtsi b/target/linux/ath79/dts/qca9533_glinet_ar300m.dtsi new file mode 100644 index 0000000000..351d313497 --- /dev/null +++ b/target/linux/ath79/dts/qca9533_glinet_ar300m.dtsi @@ -0,0 +1,141 @@ +/dts-v1/; + +#include <dt-bindings/gpio/gpio.h> +#include <dt-bindings/input/input.h> + +#include "qca9533.dtsi" + +/ { + compatible = "glinet,ar300m", "qca,qca9533"; + model = "GL.iNet GL-AR300M"; + + memory@0 { + device_type = "memory"; + reg = <0x0 0x8000000>; + }; + + extosc: ref { + compatible = "fixed-clock"; + #clock-cells = <0>; + clock-output-names = "ref"; + clock-frequency = <25000000>; + }; + + keys { + compatible = "gpio-keys-polled"; + #address-cells = <1>; + #size-cells = <0>; + poll-interval = <20>; + pinctrl-names = "default"; + pinctrl-0 = <&jtag_disable_pins>; + + button@0 { + label = "reset"; + linux,code = <KEY_RESTART>; + gpios = <&gpio 3 GPIO_ACTIVE_LOW>; + }; + + button@1 { + label = "button right"; + linux,code = <BTN_0>; + gpios = <&gpio 0 GPIO_ACTIVE_HIGH>; + }; + + button@3 { + label = "button left"; + linux,code = <BTN_1>; + gpios = <&gpio 1 GPIO_ACTIVE_HIGH>; + }; + }; + + leds { + compatible = "gpio-leds"; + + usb { + label = "gl-ar300m:green:usb"; + gpios = <&gpio 2 GPIO_ACTIVE_LOW>; + trigger-sources = <&hub_port>; + linux,default-trigger = "usbport"; + }; + + wlan { + label = "gl-ar300m:green:wlan"; + gpios = <&gpio 14 GPIO_ACTIVE_LOW>; + linux,default-trigger = "phy0tpt"; + }; + + lan { + label = "gl-ar300m:green:lan"; + gpios = <&gpio 13 GPIO_ACTIVE_LOW>; + }; + + status { + label = "gl-ar300m:green:status"; + gpios = <&gpio 3 GPIO_ACTIVE_LOW>; + }; + }; +}; + +&pcie0 { + status = "okay"; +}; + +&uart { + status = "okay"; +}; + +&usb0 { + status = "okay"; + + hub_port: port@1 { + reg = <1>; + #trigger-soruce-cells = <0>; + }; +}; + +&usb_phy { + status = "okay"; +}; + +&pll { + clocks = <&extosc>; +}; + +&mdio0 { + status = "okay"; + + phy4: ethernet-phy@4 { + reg = <4>; + phy-mode = "mii"; + }; +}; + +&mdio1 { + status = "okay"; +}; + +ð0 { + status = "okay"; + + mtd-mac-address = <&art 0x0>; + phy-handle = <&phy4>; + phy-mode = "mii"; +}; + +ð1 { + status = "okay"; + + mtd-mac-address = <&art 0x6>; + phy-mode = "gmii"; + + fixed-link { + speed = <1000>; + full-duplex; + }; +}; + +&wmac { + status = "okay"; + mtd-cal-data = <&art 0x1000>; + mtd-mac-address = <&art 0x1002>; +}; |