mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-25 08:21:14 +00:00
8471944325
This commit adds support for TP-Link Archer C7 v5, leveraging most effort from commitea9baee
and1e4ee63
. Archer C7 v5 is identical to Archer A7 v5 but with a different flash layout. Specification: - QCA9563 SoC (750 MHz) - 128 MiB of RAM (DDR2) - 16 MiB of flash (SPI) - 5x 1 Gbps Ethernet (1x WAN + 4x LAN) - 2.4GHz (bgn) SoC internal + 5GHz (ac) QCA9880 - 10x LED, 2x button - UART header on PCB Flash instructions: 1. Upload openwrt-ath79-generic-tplink_archer-c7-v5-squashfs-factory.bin via web interface. Flash instructions using TFTP recovery: 1. Plug PC to one of the LAN ports 2. Set PC to fixed IP address 192.168.0.66 3. Rename the factory image to ArcherC7v5_tp_recovery.bin and place it in TFTP root directory 4. Turn on the router with the reset button pressed for about 15 secs 5. Release the button and wait about 150 secs to complete flashing Signed-off-by: TOCK Chiu <tock.chiu@gmail.com>
56 lines
902 B
Plaintext
56 lines
902 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
/dts-v1/;
|
|
|
|
#include "qca9563_tplink_archer-x7-v5.dtsi"
|
|
|
|
/ {
|
|
compatible = "tplink,archer-c7-v5", "qca,qca9563";
|
|
model = "TP-Link Archer C7 v5";
|
|
};
|
|
|
|
&mtdparts {
|
|
partition@0 {
|
|
label = "factory-uboot";
|
|
reg = <0x000000 0x020000>;
|
|
read-only;
|
|
};
|
|
|
|
partition@20000 {
|
|
label = "u-boot";
|
|
reg = <0x020000 0x020000>;
|
|
read-only;
|
|
};
|
|
|
|
partition@40000 {
|
|
label = "partition-table";
|
|
reg = <0x040000 0x010000>;
|
|
};
|
|
|
|
art: partition@50000 {
|
|
label = "art";
|
|
reg = <0x050000 0x010000>;
|
|
read-only;
|
|
};
|
|
|
|
info: partition@60000 {
|
|
label = "info";
|
|
reg = <0x060000 0x020000>;
|
|
};
|
|
|
|
partition@80000 {
|
|
label = "user-config";
|
|
reg = <0x080000 0x040000>;
|
|
};
|
|
|
|
partition@c0000 {
|
|
label = "firmware";
|
|
reg = <0x0c0000 0xf00000>;
|
|
compatible = "denx,uimage";
|
|
};
|
|
|
|
partition@ff0000 {
|
|
label = "default-config";
|
|
reg = <0xff0000 0x010000>;
|
|
};
|
|
};
|