diff options
author | Robert Balas <balasr@iis.ee.ethz.ch> | 2021-09-02 17:07:14 +0200 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2021-09-05 23:52:35 +0200 |
commit | baacdd53dfd1daf3d4fada8921a46a562e4520e2 (patch) | |
tree | 62bc44e8eadda66e52cae7b264eb32dbb3c0ff58 /tools | |
parent | f78ad901e1ce07c42a9f5e670c39dbdcea15eb87 (diff) | |
download | upstream-baacdd53dfd1daf3d4fada8921a46a562e4520e2.tar.gz upstream-baacdd53dfd1daf3d4fada8921a46a562e4520e2.tar.bz2 upstream-baacdd53dfd1daf3d4fada8921a46a562e4520e2.zip |
ath79: add support for TP-Link TL-WA1201 v2
This device is a wireless access point working on the 2.4 GHz and 5 GHz
band, based on Qualcomm/Atheros QCA9563 + QCA9886.
Specification
- 775 MHz CPU
- 128 MB of RAM (DDR2)
- 16 MB of FLASH (SPI NOR)
- QCA9563: 2.4 GHz 3x3
- QCA9886: 5 GHz
- AR8033: 1x 1 Gbs Ethernet
- 4x LED, WPS factory reset and power button
- bare UART on PCB (accessible through testpoints)
Methods for Flashing:
- Apply factory image in OEM firmware web-gui. Wait a minute after the
progress bar completes and restart the device.
- Sysupgrade on top of existing OpenWRT image
- Solder wires onto UART testpoints and attach a terminal.
Boot the device and press enter to enter u-boot's menu. Then issue the
following commands
1. setenv serverip your-server-ip
setenv ipaddr your-device-ip
2. tftp 0x80060000 openwrt-squashfs.bin (Rembember output of size in
hex, henceforth "sizeinhex")
3. erase 0x9f030000 +"sizeinhex"
4. cp.b 0x80060000 0x9f030000 0x"sizeinhex"
5. reboot
Recover:
- U-boot serial console
Signed-off-by: Robert Balas <balasr@iis.ee.ethz.ch>
[convert to nvmem]
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/firmware-utils/src/tplink-safeloader.c | 45 |
1 files changed, 44 insertions, 1 deletions
diff --git a/tools/firmware-utils/src/tplink-safeloader.c b/tools/firmware-utils/src/tplink-safeloader.c index bd4d4b562e..597c48b9d4 100644 --- a/tools/firmware-utils/src/tplink-safeloader.c +++ b/tools/firmware-utils/src/tplink-safeloader.c @@ -1619,6 +1619,48 @@ static struct device_info boards[] = { .last_sysupgrade_partition = "file-system" }, + /** Firmware layout for the TL-WA1201 v2 */ + { + .id = "TL-WA1201-V2", + .vendor = "", + .support_list = + "SupportList:\n" + "{product_name:TL-WA1201,product_ver:2.0.0,special_id:45550000}\n" + "{product_name:TL-WA1201,product_ver:2.0.0,special_id:55530000}\n", + .part_trail = 0x00, + .soft_ver = "soft_ver:1.0.1 Build 20200709 rel.66244\n", + + .partitions = { + {"fs-uboot", 0x00000, 0x20000}, + {"default-mac", 0x20000, 0x00200}, + {"pin", 0x20200, 0x00100}, + {"product-info", 0x20300, 0x00200}, + {"device-id", 0x20500, 0x0fb00}, + {"firmware", 0x30000, 0xce0000}, + {"portal-logo", 0xd10000, 0x20000}, + {"portal-back", 0xd30000, 0x200000}, + {"soft-version", 0xf30000, 0x00200}, + {"extra-para", 0xf30200, 0x00200}, + {"support-list", 0xf30400, 0x00200}, + {"profile", 0xf30600, 0x0fa00}, + {"apdef-config", 0xf40000, 0x10000}, + {"ap-config", 0xf50000, 0x10000}, + {"redef-config", 0xf60000, 0x10000}, + {"re-config", 0xf70000, 0x10000}, + {"multidef-config", 0xf80000, 0x10000}, + {"multi-config", 0xf90000, 0x10000}, + {"clientdef-config", 0xfa0000, 0x10000}, + {"client-config", 0xfb0000, 0x10000}, + {"partition-table", 0xfc0000, 0x10000}, + {"user-config", 0xfd0000, 0x10000}, + {"certificate", 0xfe0000, 0x10000}, + {"radio", 0xff0000, 0x10000}, + {NULL, 0, 0} + }, + .first_sysupgrade_partition = "os-image", + .last_sysupgrade_partition = "file-system", + }, + /** Firmware layout for the TL-WA850RE v2 */ { .id = "TLWA850REV2", @@ -2995,7 +3037,8 @@ static void build_image(const char *output, const uint8_t extra_para[2] = {0x01, 0x00}; parts[5] = make_extra_para(info, extra_para, sizeof(extra_para)); - } else if (strcasecmp(info->id, "ARCHER-C6-V2") == 0) { + } else if (strcasecmp(info->id, "ARCHER-C6-V2") == 0 || + strcasecmp(info->id, "TL-WA1201-V2") == 0) { const uint8_t extra_para[2] = {0x00, 0x01}; parts[5] = make_extra_para(info, extra_para, sizeof(extra_para)); |