From 39616de7ae33764773aec8a01a62b9a763e96425 Mon Sep 17 00:00:00 2001 From: Rowan Border Date: Tue, 30 Jun 2020 14:35:56 +0100 Subject: [PATCH] ramips: add support for TP-Link RE220 v2 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 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 --- src/tplink-safeloader.c | 43 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/src/tplink-safeloader.c b/src/tplink-safeloader.c index f2e4a7c..a97f329 100644 --- a/src/tplink-safeloader.c +++ b/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", -- 2.30.2