ath79-generic: add support for TP-Link Archer C6v2

Hardware specification:
- SOC: Qualcomm QCA9563 @ 775MHz
- Flash: GigaDevice GD25Q64CSIG (8MiB)
- RAM: Zentel A3R1GE40JBF (128 MiB DDR2)
- Ethernet: Qualcomm QCA8337N: 4x 1Gbps LAN + 1x 1Gbps WAN
- Wireless:
  - 2.4GHz (bgn) QCA9563 integrated (3x3)
  - 5GHz (ac) Qualcomm QCA9886 (2x2)
- Button: 1x power, 1x reset, 1x wps
- LED: 6x LEDs: power, wlan2g, wlan5g, lan, wan, wps
- UART: There's no UART header on the board
This commit is contained in:
Steffen Förster 2019-10-31 14:13:43 +01:00 committed by David Bauer
parent 4b962f24d1
commit 50db7654fc
3 changed files with 18 additions and 0 deletions

View File

@ -180,6 +180,13 @@ ar71xx-tiny [#deprecated]_
- TL-WR940N (v1, v2, v3, v4, v5, v6) - TL-WR940N (v1, v2, v3, v4, v5, v6)
- TL-WR941ND (v2, v3, v4, v5, v6) - TL-WR941ND (v2, v3, v4, v5, v6)
ath79-generic
--------------
* TP-Link
- Archer C6 (v2)
brcm2708-bcm2708 brcm2708-bcm2708
---------------- ----------------

10
targets/ath79-generic Normal file
View File

@ -0,0 +1,10 @@
local ATH10K_PACKAGES = {'kmod-ath10k', '-kmod-ath10k-ct', 'ath10k-firmware-qca988x', '-ath10k-firmware-qca988x-ct'}
local ATH10K_PACKAGES_QCA9887 = {'kmod-ath10k', '-kmod-ath10k-ct', 'ath10k-firmware-qca9887', '-ath10k-firmware-qca9887-ct'}
local ATH10K_PACKAGES_QCA9888 = {'kmod-ath10k', '-kmod-ath10k-ct', 'ath10k-firmware-qca9888', '-ath10k-firmware-qca9888-ct'}
-- TP-Link
device('tp-link-archer-c6-v2', 'tplink_archer-c6-v2', {
packages = ATH10K_PACKAGES_QCA9888,
})

View File

@ -3,6 +3,7 @@ ifneq ($(GLUON_DEPRECATED),0)
$(eval $(call GluonTarget,ar71xx,tiny)) $(eval $(call GluonTarget,ar71xx,tiny))
endif endif
$(eval $(call GluonTarget,ar71xx,nand)) $(eval $(call GluonTarget,ar71xx,nand))
$(eval $(call GluonTarget,ath79,generic))
$(eval $(call GluonTarget,brcm2708,bcm2708)) $(eval $(call GluonTarget,brcm2708,bcm2708))
$(eval $(call GluonTarget,brcm2708,bcm2709)) $(eval $(call GluonTarget,brcm2708,bcm2709))
$(eval $(call GluonTarget,ipq40xx,generic)) $(eval $(call GluonTarget,ipq40xx,generic))