aboutsummaryrefslogtreecommitdiffstats
path: root/tools/firmware-utils
diff options
context:
space:
mode:
authorRowan Border <rowanjborder@gmail.com>2020-06-30 14:35:56 +0100
committerAdrian Schmutzler <freifunk@adrianschmutzler.de>2020-06-30 17:23:32 +0200
commit33fae8421e3270869c645fd304523133419d7f5d (patch)
treec085b3b3cbbce5374c662a4290539fad0b2cdd9b /tools/firmware-utils
parentd59dc14515c812ba4c4101958bdc5dba37ab34cb (diff)
downloadupstream-33fae8421e3270869c645fd304523133419d7f5d.tar.gz
upstream-33fae8421e3270869c645fd304523133419d7f5d.tar.bz2
upstream-33fae8421e3270869c645fd304523133419d7f5d.zip
ramips: add support for TP-Link RE220 v2
TP-Link RE220 v2 is a wireless range extender with Ethernet and 2.4G and 5G WiFi with internal antennas. It's based on MediaTek MT7628AN+MT7610EN. This port of OpenWRT leverages work done by Andreas Böhler <dev@aboehler.at> for the TP-Link RE200 v2 as both devices share the same SoC, flash layout and GPIO pinout. Specifications MediaTek MT7628AN (580 Mhz) 64 MB of RAM 8 MB of FLASH 2T2R 2.4 GHz and 1T1R 5 GHz 1x 10/100 Mbps Ethernet UART header on PCB (57600 8n1) 8x LED (GPIO-controlled), 2x button There are 2.4G and 5G LEDs in red and green which are controlled separately. Web Interface Installation It is possible to upgrade to OpenWrt via the web interface. Simply flash the -factory.bin from OEM. In contrast to a stock firmware, this will not overwrite U-Boot. Signed-off-by: Rowan Border <rowanjborder@gmail.com>
Diffstat (limited to 'tools/firmware-utils')
-rw-r--r--tools/firmware-utils/src/tplink-safeloader.c43
1 files changed, 43 insertions, 0 deletions
diff --git a/tools/firmware-utils/src/tplink-safeloader.c b/tools/firmware-utils/src/tplink-safeloader.c
index f2e4a7ce9a..a97f329a87 100644
--- a/tools/firmware-utils/src/tplink-safeloader.c
+++ b/tools/firmware-utils/src/tplink-safeloader.c
@@ -1555,6 +1555,49 @@ static struct device_info boards[] = {
.last_sysupgrade_partition = "file-system"
},
+ /** Firmware layout for the RE220 v2 */
+ {
+ .id = "RE220-V2",
+ .vendor = "",
+ .support_list =
+ "SupportList:\n"
+ "{product_name:RE220,product_ver:2.0.0,special_id:00000000}\n"
+ "{product_name:RE220,product_ver:2.0.0,special_id:41520000}\n"
+ "{product_name:RE220,product_ver:2.0.0,special_id:41550000}\n"
+ "{product_name:RE220,product_ver:2.0.0,special_id:42520000}\n"
+ "{product_name:RE220,product_ver:2.0.0,special_id:43410000}\n"
+ "{product_name:RE220,product_ver:2.0.0,special_id:45530000}\n"
+ "{product_name:RE220,product_ver:2.0.0,special_id:45550000}\n"
+ "{product_name:RE220,product_ver:2.0.0,special_id:49440000}\n"
+ "{product_name:RE220,product_ver:2.0.0,special_id:4a500000}\n"
+ "{product_name:RE220,product_ver:2.0.0,special_id:4b520000}\n"
+ "{product_name:RE220,product_ver:2.0.0,special_id:52550000}\n"
+ "{product_name:RE220,product_ver:2.0.0,special_id:54570000}\n"
+ "{product_name:RE220,product_ver:2.0.0,special_id:55530000}\n",
+ .support_trail = '\x00',
+ .soft_ver = NULL,
+
+ .partitions = {
+ {"fs-uboot", 0x00000, 0x20000},
+ {"firmware", 0x20000, 0x7a0000},
+ {"partition-table", 0x7c0000, 0x02000},
+ {"default-mac", 0x7c2000, 0x00020},
+ {"pin", 0x7c2100, 0x00020},
+ {"product-info", 0x7c3100, 0x01000},
+ {"soft-version", 0x7c4200, 0x01000},
+ {"support-list", 0x7c5200, 0x01000},
+ {"profile", 0x7c6200, 0x08000},
+ {"config-info", 0x7ce200, 0x00400},
+ {"user-config", 0x7d0000, 0x10000},
+ {"default-config", 0x7e0000, 0x10000},
+ {"radio", 0x7f0000, 0x10000},
+ {NULL, 0, 0}
+ },
+
+ .first_sysupgrade_partition = "os-image",
+ .last_sysupgrade_partition = "file-system"
+ },
+
/** Firmware layout for the RE305 v1 */
{
.id = "RE305-V1",