From 3930aab2cb067d04f5c9ebbf1af57744e19355eb Mon Sep 17 00:00:00 2001 From: Bernhard Geier Date: Sun, 3 Nov 2019 13:58:12 +0100 Subject: ath79: add support for TP-Link WBS210 v2 TP-Link WBS210 v2 is an outdoor wireless CPE for 2.4 GHz with two Ethernet ports based on Atheros AR9344 The device is the same as TP-Link CPE220 v2, but with higher TX power (27 dBm instead of 12 dBm) and two antenna connectors instead of built-in antennas. Specifications: - SoC: Atheros AR9344 - RAM: 64MB - Storage: 8 MB SPI NOR - Wireless: 2.4GHz 300 Mbps, 2x RP-SMA connector, 27 dBm TX power - Ethernet: 1x 10/100 Mbps with 24V POE IN, 1x 10/100 Mbps Installation: Flash factory image through stock firmware WEB UI or through TFTP To get to TFTP recovery just hold reset button while powering on for around 4-5 seconds and release. Rename factory image to recovery.bin Stock TFTP server IP: 192.168.0.100 Stock device TFTP adress: 192.168.0.254 The TP-Link WBS devices use the same GPIOs as the CPE devices, except for the link4 LED. For this one, WBS devices use "2", while CPE devices use "16". (Tested on WBS210 v2) Signed-off-by: Bernhard Geier [added comment about GPIO] Signed-off-by: Adrian Schmutzler --- target/linux/ath79/dts/ar9344_tplink_cpe210-v1.dts | 4 ++++ target/linux/ath79/dts/ar9344_tplink_cpe220-v2.dts | 4 ++++ target/linux/ath79/dts/ar9344_tplink_cpe510-v1.dts | 4 ++++ target/linux/ath79/dts/ar9344_tplink_cpexxx-v1.dtsi | 11 +++++------ target/linux/ath79/dts/ar9344_tplink_wbs210-v2.dts | 13 +++++++++++++ 5 files changed, 30 insertions(+), 6 deletions(-) create mode 100644 target/linux/ath79/dts/ar9344_tplink_wbs210-v2.dts (limited to 'target/linux/ath79/dts') diff --git a/target/linux/ath79/dts/ar9344_tplink_cpe210-v1.dts b/target/linux/ath79/dts/ar9344_tplink_cpe210-v1.dts index 1a107c23ef..e82fd4a32f 100644 --- a/target/linux/ath79/dts/ar9344_tplink_cpe210-v1.dts +++ b/target/linux/ath79/dts/ar9344_tplink_cpe210-v1.dts @@ -7,3 +7,7 @@ compatible = "tplink,cpe210-v1", "qca,ar9344"; model = "TP-Link CPE210 v1"; }; + +&led_link4 { + gpios = <&gpio 16 GPIO_ACTIVE_LOW>; +}; diff --git a/target/linux/ath79/dts/ar9344_tplink_cpe220-v2.dts b/target/linux/ath79/dts/ar9344_tplink_cpe220-v2.dts index 0981b4af07..7e8822710f 100644 --- a/target/linux/ath79/dts/ar9344_tplink_cpe220-v2.dts +++ b/target/linux/ath79/dts/ar9344_tplink_cpe220-v2.dts @@ -7,3 +7,7 @@ compatible = "tplink,cpe220-v2", "qca,ar9344"; model = "TP-Link CPE220 v2"; }; + +&led_link4 { + gpios = <&gpio 16 GPIO_ACTIVE_LOW>; +}; diff --git a/target/linux/ath79/dts/ar9344_tplink_cpe510-v1.dts b/target/linux/ath79/dts/ar9344_tplink_cpe510-v1.dts index 225d16e2e7..34b83c944e 100644 --- a/target/linux/ath79/dts/ar9344_tplink_cpe510-v1.dts +++ b/target/linux/ath79/dts/ar9344_tplink_cpe510-v1.dts @@ -7,3 +7,7 @@ compatible = "tplink,cpe510-v1", "qca,ar9344"; model = "TP-Link CPE510 v1"; }; + +&led_link4 { + gpios = <&gpio 16 GPIO_ACTIVE_LOW>; +}; diff --git a/target/linux/ath79/dts/ar9344_tplink_cpexxx-v1.dtsi b/target/linux/ath79/dts/ar9344_tplink_cpexxx-v1.dtsi index 81802f3b5b..3ba964edde 100644 --- a/target/linux/ath79/dts/ar9344_tplink_cpexxx-v1.dtsi +++ b/target/linux/ath79/dts/ar9344_tplink_cpexxx-v1.dtsi @@ -5,10 +5,10 @@ / { aliases { - led-boot = &system; - led-failsafe = &system; - led-running = &system; - led-upgrade = &system; + led-boot = &led_link4; + led-failsafe = &led_link4; + led-running = &led_link4; + led-upgrade = &led_link4; }; leds { @@ -39,9 +39,8 @@ gpios = <&gpio 15 GPIO_ACTIVE_LOW>; }; - system: link4 { + led_link4: link4 { label = "tp-link:green:link4"; - gpios = <&gpio 16 GPIO_ACTIVE_LOW>; }; }; }; diff --git a/target/linux/ath79/dts/ar9344_tplink_wbs210-v2.dts b/target/linux/ath79/dts/ar9344_tplink_wbs210-v2.dts new file mode 100644 index 0000000000..dddf4aebda --- /dev/null +++ b/target/linux/ath79/dts/ar9344_tplink_wbs210-v2.dts @@ -0,0 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0-or-later OR MIT +/dts-v1/; + +#include "ar9344_tplink_cpexxx-v1.dtsi" + +/ { + compatible = "tplink,wbs210-v2", "qca,ar9344"; + model = "TP-Link WBS210 v2"; +}; + +&led_link4 { + gpios = <&gpio 2 GPIO_ACTIVE_LOW>; +}; -- cgit v1.2.3