From 4caab808300ad75575d778bae6e184caa26aeabc Mon Sep 17 00:00:00 2001 From: Keith Maika Date: Fri, 15 Jun 2018 00:39:09 -0400 Subject: ar71xx: add support for TP-Link Archer C59 v2 TP-Link Archer C59v2 is a dual-band AC1350 router based on Qualcomm/Atheros QCA9561+QCA9886 chips. Specification: - 775/650/258 MHz (CPU/DDR/AHB) - 128 MB of RAM (DDR2) - 16 MB of FLASH (SPI NOR) - 3T3R 2.4 GHz - 2T2R 5 GHz - 5x 10/100 Mbps Ethernet - USB 2.0 port - UART header on PCB Flash instruction: - via web UI: 1. Download openwrt-ar71xx-generic-archer-c59-v2-squashfs-factory.bin 2. Login to router and open the Advanced tab 3. Navigate to System Tools -> Firmware Upgrade 4. Upload firmware using the Manual Upgrade form - via TFTP: 1. Set PC to fixed ip address 192.168.0.66 2. Download openwrt-ar71xx-generic-archer-c59-v2-squashfs-factory.bin and rename it to tp_recovery.bin 3. Start a tftp server with the file tp_recovery.bin 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: Keith Maika --- target/linux/ar71xx/base-files/etc/board.d/01_leds | 4 +++- target/linux/ar71xx/base-files/etc/board.d/02_network | 1 + target/linux/ar71xx/base-files/etc/diag.sh | 1 + .../linux/ar71xx/base-files/etc/hotplug.d/firmware/11-ath10k-caldata | 1 + .../linux/ar71xx/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac | 1 + 5 files changed, 7 insertions(+), 1 deletion(-) (limited to 'target/linux/ar71xx/base-files/etc') diff --git a/target/linux/ar71xx/base-files/etc/board.d/01_leds b/target/linux/ar71xx/base-files/etc/board.d/01_leds index d15cff5111..af480cb001 100755 --- a/target/linux/ar71xx/base-files/etc/board.d/01_leds +++ b/target/linux/ar71xx/base-files/etc/board.d/01_leds @@ -129,6 +129,7 @@ archer-c7) ;; archer-c58-v1|\ archer-c59-v1|\ +archer-c59-v2|\ archer-c60-v1|\ archer-c60-v2) ucidef_set_led_switch "lan" "LAN" "$board:green:lan" "switch0" "0x1E" @@ -137,7 +138,8 @@ archer-c60-v2) ucidef_set_led_wlan "wlan5g" "WLAN5G" "$board:green:wlan5g" "phy0tpt" case "$board" in - archer-c59-v1) + archer-c59-v1|\ + archer-c59-v2) ucidef_set_led_usbdev "usb" "USB" "$board:green:usb" "1-1" ;; esac diff --git a/target/linux/ar71xx/base-files/etc/board.d/02_network b/target/linux/ar71xx/base-files/etc/board.d/02_network index 3967dee94b..75c90a2701 100755 --- a/target/linux/ar71xx/base-files/etc/board.d/02_network +++ b/target/linux/ar71xx/base-files/etc/board.d/02_network @@ -249,6 +249,7 @@ ar71xx_setup_interfaces() ;; archer-c58-v1|\ archer-c59-v1|\ + archer-c59-v2|\ fritz4020|\ rb-450g) ucidef_set_interfaces_lan_wan "eth1.1" "eth0" diff --git a/target/linux/ar71xx/base-files/etc/diag.sh b/target/linux/ar71xx/base-files/etc/diag.sh index 45b5d2adbb..fafdcce8f7 100644 --- a/target/linux/ar71xx/base-files/etc/diag.sh +++ b/target/linux/ar71xx/base-files/etc/diag.sh @@ -66,6 +66,7 @@ get_status_led() { archer-c25-v1|\ archer-c58-v1|\ archer-c59-v1|\ + archer-c59-v2|\ archer-c60-v1|\ archer-c60-v2|\ archer-c7-v4|\ diff --git a/target/linux/ar71xx/base-files/etc/hotplug.d/firmware/11-ath10k-caldata b/target/linux/ar71xx/base-files/etc/hotplug.d/firmware/11-ath10k-caldata index 0ed624efc8..e08df23df6 100644 --- a/target/linux/ar71xx/base-files/etc/hotplug.d/firmware/11-ath10k-caldata +++ b/target/linux/ar71xx/base-files/etc/hotplug.d/firmware/11-ath10k-caldata @@ -168,6 +168,7 @@ case "$FIRMWARE" in case $board in archer-c58-v1|\ archer-c59-v1|\ + archer-c59-v2|\ archer-c60-v1|\ archer-c60-v2|\ cf-e355ac-v2|\ diff --git a/target/linux/ar71xx/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac b/target/linux/ar71xx/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac index a763938ecd..b58cf9b591 100644 --- a/target/linux/ar71xx/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac +++ b/target/linux/ar71xx/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac @@ -14,6 +14,7 @@ board=$(board_name) case "$board" in archer-c58-v1|\ archer-c59-v1|\ + archer-c59-v2|\ archer-c60-v1|\ archer-c60-v2) echo $(macaddr_add $(mtd_get_mac_binary mac 8) $(($PHYNBR - 1)) ) > /sys${DEVPATH}/macaddress -- cgit v1.2.3