mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-15 18:03:30 +00:00
ath79: add support for Alibaba AP121-DB (#13417)
This commit is contained in:
parent
d7d4bcc86d
commit
6e84aeb589
@ -19,6 +19,7 @@ alfa-network,n5q|\
|
|||||||
alfa-network,pi-wifi4|\
|
alfa-network,pi-wifi4|\
|
||||||
alfa-network,r36a|\
|
alfa-network,r36a|\
|
||||||
alfa-network,tube-2hq|\
|
alfa-network,tube-2hq|\
|
||||||
|
alibaba,ap121-db|\
|
||||||
allnet,all-wap02860ac|\
|
allnet,all-wap02860ac|\
|
||||||
araknis,an-300-ap-i-n|\
|
araknis,an-300-ap-i-n|\
|
||||||
araknis,an-500-ap-i-ac|\
|
araknis,an-500-ap-i-ac|\
|
||||||
|
139
target/linux/ath79/dts/qca9563_alibaba_ap121-db.dts
Normal file
139
target/linux/ath79/dts/qca9563_alibaba_ap121-db.dts
Normal file
@ -0,0 +1,139 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
||||||
|
/dts-v1/;
|
||||||
|
|
||||||
|
#include <dt-bindings/gpio/gpio.h>
|
||||||
|
#include <dt-bindings/input/input.h>
|
||||||
|
|
||||||
|
#include "qca956x.dtsi"
|
||||||
|
|
||||||
|
/ {
|
||||||
|
model = "Alibaba AP121-DB";
|
||||||
|
compatible = "alibaba,ap121-db", "qca,qca9563";
|
||||||
|
|
||||||
|
aliases {
|
||||||
|
label-mac-device = ð0;
|
||||||
|
led-boot = &led_power;
|
||||||
|
led-failsafe = &led_power;
|
||||||
|
led-running = &led_power;
|
||||||
|
led-upgrade = &led_power;
|
||||||
|
};
|
||||||
|
|
||||||
|
leds {
|
||||||
|
compatible = "gpio-leds";
|
||||||
|
|
||||||
|
led_power: power {
|
||||||
|
label = "green:power";
|
||||||
|
gpios = <&gpio 1 GPIO_ACTIVE_LOW>;
|
||||||
|
default-state = "on";
|
||||||
|
};
|
||||||
|
|
||||||
|
wlan5g {
|
||||||
|
label = "green:wlan5g";
|
||||||
|
gpios = <&gpio 5 GPIO_ACTIVE_LOW>;
|
||||||
|
linux,default-trigger = "phy0tpt";
|
||||||
|
};
|
||||||
|
|
||||||
|
wlan2g {
|
||||||
|
label = "green:wlan2g";
|
||||||
|
gpios = <&gpio 19 GPIO_ACTIVE_LOW>;
|
||||||
|
linux,default-trigger = "phy1tpt";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
keys {
|
||||||
|
compatible = "gpio-keys";
|
||||||
|
|
||||||
|
reset {
|
||||||
|
label = "reset";
|
||||||
|
gpios = <&gpio 2 GPIO_ACTIVE_LOW>;
|
||||||
|
linux,code = <KEY_RESTART>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
ð0 {
|
||||||
|
mtd-mac-address = <&art 0x0>;
|
||||||
|
|
||||||
|
phy-handle = <&phy0>;
|
||||||
|
phy-mode = "sgmii";
|
||||||
|
pll-data = <0x03000101 0x00000101 0x00001919>;
|
||||||
|
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&mdio0 {
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
phy0: ethernet-phy@0 {
|
||||||
|
reg = <0>;
|
||||||
|
|
||||||
|
qca,ar8327-initvals = <
|
||||||
|
0x04 0x00000080 /* PORT0 PAD MODE CTRL */
|
||||||
|
0x50 0xcc35cc35 /* LED_CTRL0 */
|
||||||
|
0x54 0xca35ca35 /* LED_CTRL1 */
|
||||||
|
0x58 0xc935c935 /* LED_CTRL2 */
|
||||||
|
0x5c 0x03ffff00 /* LED_CTRL3 */
|
||||||
|
0x7c 0x0000007e /* PORT0_STATUS */
|
||||||
|
>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&pcie {
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
wifi@0,0 {
|
||||||
|
compatible = "pci168c,003c";
|
||||||
|
reg = <0x0000 0 0 0 0>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&spi {
|
||||||
|
num-cs = <1>;
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
flash@0 {
|
||||||
|
compatible = "jedec,spi-nor";
|
||||||
|
reg = <0>;
|
||||||
|
spi-max-frequency = <25000000>;
|
||||||
|
|
||||||
|
partitions {
|
||||||
|
compatible = "fixed-partitions";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
|
||||||
|
partition@0 {
|
||||||
|
label = "u-boot";
|
||||||
|
reg = <0x000000 0x040000>;
|
||||||
|
read-only;
|
||||||
|
};
|
||||||
|
|
||||||
|
partition@40000 {
|
||||||
|
label = "u-boot-env";
|
||||||
|
reg = <0x040000 0x010000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
partition@50000 {
|
||||||
|
compatible = "denx,uimage";
|
||||||
|
label = "firmware";
|
||||||
|
reg = <0x050000 0xfa0000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
art: partition@ff0000 {
|
||||||
|
label = "art";
|
||||||
|
reg = <0xff0000 0x010000>;
|
||||||
|
read-only;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&uart {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&wmac {
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
mtd-cal-data = <&art 0x1000>;
|
||||||
|
mtd-mac-address = <&art 0xc>;
|
||||||
|
};
|
@ -127,6 +127,30 @@ ath79_setup_interfaces()
|
|||||||
ubnt,unifi-ap-outdoor-plus)
|
ubnt,unifi-ap-outdoor-plus)
|
||||||
ucidef_set_interface_lan "eth0 eth1"
|
ucidef_set_interface_lan "eth0 eth1"
|
||||||
;;
|
;;
|
||||||
|
alibaba,ap121-db|\
|
||||||
|
comfast,cf-e110n-v2|\
|
||||||
|
comfast,cf-e120a-v3|\
|
||||||
|
comfast,cf-e314n-v2|\
|
||||||
|
compex,wpj531-16m|\
|
||||||
|
openmesh,a40|\
|
||||||
|
openmesh,a60|\
|
||||||
|
openmesh,om2p-v1|\
|
||||||
|
openmesh,om2p-v4|\
|
||||||
|
openmesh,om2p-hs-v4|\
|
||||||
|
plasmacloud,pa300|\
|
||||||
|
plasmacloud,pa300e|\
|
||||||
|
tplink,cpe210-v1|\
|
||||||
|
tplink,cpe220-v2|\
|
||||||
|
tplink,cpe220-v3|\
|
||||||
|
tplink,cpe510-v1|\
|
||||||
|
tplink,wbs210-v1|\
|
||||||
|
tplink,wbs210-v2|\
|
||||||
|
tplink,wbs510-v1|\
|
||||||
|
tplink,wbs510-v2|\
|
||||||
|
ubnt,nanostation-m|\
|
||||||
|
ubnt,routerstation)
|
||||||
|
ucidef_set_interfaces_lan_wan "eth1" "eth0"
|
||||||
|
;;
|
||||||
atheros,db120)
|
atheros,db120)
|
||||||
ucidef_add_switch "switch0" \
|
ucidef_add_switch "switch0" \
|
||||||
"0@eth0" "2:lan" "3:lan" "4:lan" "5:lan" "1:wan"
|
"0@eth0" "2:lan" "3:lan" "4:lan" "5:lan" "1:wan"
|
||||||
@ -188,29 +212,6 @@ ath79_setup_interfaces()
|
|||||||
ucidef_add_switch "switch0" \
|
ucidef_add_switch "switch0" \
|
||||||
"0@eth0" "1:lan:1" "3:lan:4" "4:lan:3" "5:lan:2" "2:wan"
|
"0@eth0" "1:lan:1" "3:lan:4" "4:lan:3" "5:lan:2" "2:wan"
|
||||||
;;
|
;;
|
||||||
comfast,cf-e110n-v2|\
|
|
||||||
comfast,cf-e120a-v3|\
|
|
||||||
comfast,cf-e314n-v2|\
|
|
||||||
compex,wpj531-16m|\
|
|
||||||
openmesh,a40|\
|
|
||||||
openmesh,a60|\
|
|
||||||
openmesh,om2p-v1|\
|
|
||||||
openmesh,om2p-v4|\
|
|
||||||
openmesh,om2p-hs-v4|\
|
|
||||||
plasmacloud,pa300|\
|
|
||||||
plasmacloud,pa300e|\
|
|
||||||
tplink,cpe210-v1|\
|
|
||||||
tplink,cpe220-v2|\
|
|
||||||
tplink,cpe220-v3|\
|
|
||||||
tplink,cpe510-v1|\
|
|
||||||
tplink,wbs210-v1|\
|
|
||||||
tplink,wbs210-v2|\
|
|
||||||
tplink,wbs510-v1|\
|
|
||||||
tplink,wbs510-v2|\
|
|
||||||
ubnt,nanostation-m|\
|
|
||||||
ubnt,routerstation)
|
|
||||||
ucidef_set_interfaces_lan_wan "eth1" "eth0"
|
|
||||||
;;
|
|
||||||
comfast,cf-e375ac)
|
comfast,cf-e375ac)
|
||||||
ucidef_add_switch "switch0" \
|
ucidef_add_switch "switch0" \
|
||||||
"0@eth0" "1:wan" "2:lan"
|
"0@eth0" "1:wan" "2:lan"
|
||||||
|
@ -10,6 +10,11 @@ board=$(board_name)
|
|||||||
case "$FIRMWARE" in
|
case "$FIRMWARE" in
|
||||||
"ath10k/cal-pci-0000:00:00.0.bin")
|
"ath10k/cal-pci-0000:00:00.0.bin")
|
||||||
case $board in
|
case $board in
|
||||||
|
alibaba,ap121-db|\
|
||||||
|
zte,e8820)
|
||||||
|
caldata_extract "art" 0x5000 0x844
|
||||||
|
ath10k_patch_mac $(macaddr_add $(mtd_get_mac_binary art 0x0) 3)
|
||||||
|
;;
|
||||||
allnet,all-wap02860ac|\
|
allnet,all-wap02860ac|\
|
||||||
araknis,an-500-ap-i-ac|\
|
araknis,an-500-ap-i-ac|\
|
||||||
araknis,an-700-ap-i-ac|\
|
araknis,an-700-ap-i-ac|\
|
||||||
@ -161,10 +166,6 @@ case "$FIRMWARE" in
|
|||||||
caldata_extract "art" 0x5000 0x844
|
caldata_extract "art" 0x5000 0x844
|
||||||
ath10k_patch_mac $(macaddr_add $(mtd_get_mac_binary u-boot 0x0fc00) 1)
|
ath10k_patch_mac $(macaddr_add $(mtd_get_mac_binary u-boot 0x0fc00) 1)
|
||||||
;;
|
;;
|
||||||
zte,e8820)
|
|
||||||
caldata_extract "art" 0x5000 0x844
|
|
||||||
ath10k_patch_mac $(macaddr_add $(mtd_get_mac_binary art 0x0) 3)
|
|
||||||
;;
|
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
"ath10k/cal-pci-0000:01:00.0.bin")
|
"ath10k/cal-pci-0000:01:00.0.bin")
|
||||||
|
@ -308,6 +308,15 @@ define Device/alfa-network_tube-2hq
|
|||||||
endef
|
endef
|
||||||
TARGET_DEVICES += alfa-network_tube-2hq
|
TARGET_DEVICES += alfa-network_tube-2hq
|
||||||
|
|
||||||
|
define Device/alibaba_ap121-db
|
||||||
|
SOC := qca9563
|
||||||
|
DEVICE_VENDOR := Alibaba
|
||||||
|
DEVICE_MODEL := AP121-DB
|
||||||
|
IMAGE_SIZE := 16000k
|
||||||
|
DEVICE_PACKAGES := kmod-ath10k-ct-smallbuffers ath10k-firmware-qca988x-ct
|
||||||
|
endef
|
||||||
|
TARGET_DEVICES += alibaba_ap121-db
|
||||||
|
|
||||||
define Device/allnet_all-wap02860ac
|
define Device/allnet_all-wap02860ac
|
||||||
$(Device/senao_loader_okli)
|
$(Device/senao_loader_okli)
|
||||||
SOC := qca9558
|
SOC := qca9558
|
||||||
|
Loading…
Reference in New Issue
Block a user