ath79: add support for TP-Link TL-WR841N/ND v12
This router has the same hardware as TP-LINK TL-WR841N/ND v11 (same FCC ID, same TFTP image name...). Flash instruction (WebUI): Download *-factory.bin image and upload it via the firmwary upgrade function of the stock firmware WebUI. Flash instruction (TFTP): 1. Set PC to fixed ip address 192.168.0.66 2. Download *-factory.bin image and rename it to wr841nv11_tp_recovery.bin (it's really v11, not v12) 3. Start a tftp server with the image file in its root directory 4. Turn off the router 5. Press and hold Reset button 6. Turn on router with the reset button pressed and wait ~15 seconds 7. Release the reset button and after a short time the firmware should be transferred from the tftp server 8. Wait ~30 second to complete recovery. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
This commit is contained in:
parent
4254193c1d
commit
8b76c6695b
@ -137,6 +137,7 @@ tplink,archer-c25-v1|\
|
||||
tplink,tl-wr841-v9|\
|
||||
tplink,tl-wr841-v10|\
|
||||
tplink,tl-wr841-v11|\
|
||||
tplink,tl-wr841-v12|\
|
||||
tplink,tl-wr842n-v3)
|
||||
ucidef_set_led_netdev "wan" "WAN" "tp-link:green:wan" "eth1"
|
||||
ucidef_set_led_switch "lan1" "LAN1" "tp-link:green:lan1" "switch0" "0x10"
|
||||
|
@ -85,6 +85,7 @@ ath79_setup_interfaces()
|
||||
tplink,tl-wr841-v9|\
|
||||
tplink,tl-wr841-v10|\
|
||||
tplink,tl-wr841-v11|\
|
||||
tplink,tl-wr841-v12|\
|
||||
tplink,tl-wr842n-v1|\
|
||||
tplink,tl-wr842n-v3|\
|
||||
ubnt,airrouter)
|
||||
|
@ -1,31 +1,9 @@
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
||||
/dts-v1/;
|
||||
|
||||
#include <dt-bindings/gpio/gpio.h>
|
||||
#include <dt-bindings/input/input.h>
|
||||
|
||||
#include "qca9533_tplink_tl-wr841.dtsi"
|
||||
#include "qca9533_tplink_tl-wr841-v11.dtsi"
|
||||
|
||||
/ {
|
||||
compatible = "tplink,tl-wr841-v11", "qca,qca9533";
|
||||
model = "TP-Link TL-WR841N/ND v11";
|
||||
|
||||
aliases {
|
||||
led-boot = &system_led;
|
||||
led-failsafe = &system_led;
|
||||
led-running = &system_led;
|
||||
led-upgrade = &system_led;
|
||||
};
|
||||
};
|
||||
|
||||
&gpio_leds {
|
||||
system_led: system {
|
||||
label = "tp-link:green:system";
|
||||
gpios = <&gpio 1 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
|
||||
wan_orange {
|
||||
label = "tp-link:orange:wan";
|
||||
gpios = <&gpio 2 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
};
|
||||
|
25
target/linux/ath79/dts/qca9533_tplink_tl-wr841-v11.dtsi
Normal file
25
target/linux/ath79/dts/qca9533_tplink_tl-wr841-v11.dtsi
Normal file
@ -0,0 +1,25 @@
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
||||
/dts-v1/;
|
||||
|
||||
#include "qca9533_tplink_tl-wr841.dtsi"
|
||||
|
||||
/ {
|
||||
aliases {
|
||||
led-boot = &system_led;
|
||||
led-failsafe = &system_led;
|
||||
led-running = &system_led;
|
||||
led-upgrade = &system_led;
|
||||
};
|
||||
};
|
||||
|
||||
&gpio_leds {
|
||||
system_led: system {
|
||||
label = "tp-link:green:system";
|
||||
gpios = <&gpio 1 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
|
||||
wan_orange {
|
||||
label = "tp-link:orange:wan";
|
||||
gpios = <&gpio 2 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
};
|
9
target/linux/ath79/dts/qca9533_tplink_tl-wr841-v12.dts
Normal file
9
target/linux/ath79/dts/qca9533_tplink_tl-wr841-v12.dts
Normal file
@ -0,0 +1,9 @@
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
||||
/dts-v1/;
|
||||
|
||||
#include "qca9533_tplink_tl-wr841-v11.dtsi"
|
||||
|
||||
/ {
|
||||
compatible = "tplink,tl-wr841-v12", "qca,qca9533";
|
||||
model = "TP-Link TL-WR841N/ND v12";
|
||||
};
|
@ -189,6 +189,18 @@ define Device/tplink_tl-wr841-v11
|
||||
endef
|
||||
TARGET_DEVICES += tplink_tl-wr841-v11
|
||||
|
||||
define Device/tplink_tl-wr841-v12
|
||||
$(Device/tplink-4mlzma)
|
||||
ATH_SOC := qca9533
|
||||
DEVICE_MODEL := TL-WR841N/ND
|
||||
DEVICE_VARIANT := v12
|
||||
TPLINK_HWID := 0x08410012
|
||||
IMAGES += factory-us.bin factory-eu.bin
|
||||
IMAGE/factory-us.bin := append-rootfs | mktplinkfw factory -C US
|
||||
IMAGE/factory-eu.bin := append-rootfs | mktplinkfw factory -C EU
|
||||
endef
|
||||
TARGET_DEVICES += tplink_tl-wr841-v12
|
||||
|
||||
define Device/tplink_tl-wr941-v2
|
||||
$(Device/tplink-4m)
|
||||
ATH_SOC := ar9132
|
||||
|
Loading…
Reference in New Issue
Block a user