diff options
author | Russell Senior <russell@personaltelco.net> | 2018-11-26 14:28:00 -0800 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2018-12-03 07:58:56 +0100 |
commit | 73127a878dca3da42c35400e2c63a24a2d664088 (patch) | |
tree | 2eba7742690489cf1288edfcafc3b2e599771655 /target/linux/ath79/dts | |
parent | 20ec6af15eba161970d95fecbd831e72eb47a56b (diff) | |
download | upstream-73127a878dca3da42c35400e2c63a24a2d664088.tar.gz upstream-73127a878dca3da42c35400e2c63a24a2d664088.tar.bz2 upstream-73127a878dca3da42c35400e2c63a24a2d664088.zip |
ath79: add support for Ubiquiti AirRouter
Indoor low-power router with 2.4 GHz radio
CPU: Atheros AR7241 rev 1
RAM: 32 MB
Flash: 8 MB NOR SPI
Switch: Atheros AR7240
Ports: 1x WAN, 4x LAN 10/100 Ethernet
WLAN: Atheros AR9285 (2.4 GHz)
USB: 1x USB2 host port
Note: Ethernet WAN/LAN port naming is reversed from ar71xx.
WAN is eth0; LAN is eth1.1.
UART settings: 115200, 8N1
LEDs
+--------------------------
|
|
|
|
|
|
|
|
VCC | x x
RX | * x
| x x
| x x
TX | * x
GND | * x
|
|
|
|
+--------------------------
ETHERNET PORTS
Installation from Ubiquiti firmware, is as for other ubnt-xm AirOs devices.
Signed-off-by: Russell Senior <russell@personaltelco.net>
Diffstat (limited to 'target/linux/ath79/dts')
-rw-r--r-- | target/linux/ath79/dts/ar7241_ubnt_airrouter.dts | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/target/linux/ath79/dts/ar7241_ubnt_airrouter.dts b/target/linux/ath79/dts/ar7241_ubnt_airrouter.dts new file mode 100644 index 0000000000..fbe289f05a --- /dev/null +++ b/target/linux/ath79/dts/ar7241_ubnt_airrouter.dts @@ -0,0 +1,38 @@ +// SPDX-License-Identifier: GPL-2.0-or-later OR MIT +/dts-v1/; + +#include "ar7241_ubnt_xm.dtsi" + +/ { + compatible = "ubnt,airrouter", "qca,ar7241"; + model = "Ubiquiti AirRouter"; + + aliases { + led-boot = &globe; + led-failsafe = &globe; + led-running = &globe; + led-upgrade = &globe; + }; + + airrouter-leds { + compatible = "gpio-leds"; + + globe: globe { + label = "ubnt:green:globe"; + gpios = <&gpio 0 GPIO_ACTIVE_LOW>; + }; + + power { + label = "ubnt:green:power"; + gpios = <&gpio 11 GPIO_ACTIVE_HIGH>; + }; + }; +}; + +&usb_phy { + status = "okay"; +}; + +&usb { + status = "okay"; +}; |