mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-02-10 10:32:55 +01:00
ath79: add nvmem handling for AR9285 devices
Some checks are pending
Build Kernel / Build all affected Kernels (push) Waiting to run
Some checks are pending
Build Kernel / Build all affected Kernels (push) Waiting to run
They have the same 0x200 calibration size. Added various compatible lines in various places to make it clear what device we're talking about. Signed-off-by: Rosen Penev <rosenp@gmail.com> Link: https://github.com/openwrt/openwrt/pull/19863 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
This commit is contained in:
parent
d13c3200ea
commit
3ca84b840c
17 changed files with 112 additions and 32 deletions
|
|
@ -190,6 +190,10 @@
|
|||
macaddr_art_6: macaddr@6 {
|
||||
reg = <0x6 0x6>;
|
||||
};
|
||||
|
||||
calibration_art_1000: calibration@1000 {
|
||||
reg = <0x1000 0x200>;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
@ -214,9 +218,8 @@
|
|||
ath9k: wifi@0,0 {
|
||||
compatible = "pci168c,002b";
|
||||
reg = <0x0000 0 0 0 0>;
|
||||
nvmem-cells = <&macaddr_art_0 1>;
|
||||
nvmem-cell-names = "mac-address";
|
||||
qca,no-eeprom;
|
||||
nvmem-cells = <&macaddr_art_0 1>, <&calibration_art_1000>;
|
||||
nvmem-cell-names = "mac-address", "calibration";
|
||||
#gpio-cells = <2>;
|
||||
gpio-controller;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -120,6 +120,10 @@
|
|||
macaddr_art_6: macaddr@6 {
|
||||
reg = <0x6 0x6>;
|
||||
};
|
||||
|
||||
calibration_art_1000: calibration@1000 {
|
||||
reg = <0x1000 0x200>;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
@ -144,9 +148,8 @@
|
|||
ath9k: wifi@0,0 {
|
||||
compatible = "pci168c,002b";
|
||||
reg = <0x0000 0 0 0 0>;
|
||||
nvmem-cells = <&macaddr_art_0 1>;
|
||||
nvmem-cell-names = "mac-address";
|
||||
qca,no-eeprom;
|
||||
nvmem-cells = <&macaddr_art_0 1>, <&calibration_art_1000>;
|
||||
nvmem-cell-names = "mac-address", "calibration";
|
||||
#gpio-cells = <2>;
|
||||
gpio-controller;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -103,6 +103,15 @@
|
|||
reg = <0x3f0000 0x10000>;
|
||||
label = "art";
|
||||
read-only;
|
||||
|
||||
nvmem-layout {
|
||||
compatible = "fixed-layout";
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
|
||||
calibration_art_1000: calibration@1000 {
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
@ -117,9 +126,8 @@
|
|||
|
||||
ath9k: wifi@0,0 {
|
||||
reg = <0x0000 0 0 0 0>;
|
||||
qca,no-eeprom;
|
||||
nvmem-cells = <&macaddr_uboot_1fc00 0>;
|
||||
nvmem-cell-names = "mac-address";
|
||||
nvmem-cells = <&macaddr_uboot_1fc00 0>, <&calibration_art_1000>;
|
||||
nvmem-cell-names = "mac-address", "calibration";
|
||||
#gpio-cells = <2>;
|
||||
gpio-controller;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -20,7 +20,3 @@
|
|||
nvmem-cells = <&macaddr_uboot_1fc00 0>;
|
||||
nvmem-cell-names = "mac-address";
|
||||
};
|
||||
|
||||
&ath9k {
|
||||
compatible = "pci168c,002a";
|
||||
};
|
||||
|
|
|
|||
|
|
@ -6,3 +6,11 @@
|
|||
model = "TP-Link TL-WA701ND v1";
|
||||
compatible = "tplink,tl-wa701nd-v1", "qca,ar7240";
|
||||
};
|
||||
|
||||
&ath9k {
|
||||
compatible = "pci168c,002b";
|
||||
};
|
||||
|
||||
&calibration_art_1000 {
|
||||
reg = <0x1000 0x200>;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -6,3 +6,11 @@
|
|||
model = "TP-Link TL-WA730RE v1";
|
||||
compatible = "tplink,tl-wa730re-v1", "qca,ar7240";
|
||||
};
|
||||
|
||||
&ath9k {
|
||||
compatible = "pci168c,002b";
|
||||
};
|
||||
|
||||
&calibration_art_1000 {
|
||||
reg = <0x1000 0x200>;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -6,3 +6,11 @@
|
|||
model = "TP-Link TL-WA801ND v1";
|
||||
compatible = "tplink,tl-wa801nd-v1", "qca,ar7240";
|
||||
};
|
||||
|
||||
&ath9k {
|
||||
compatible = "pci168c,002a";
|
||||
};
|
||||
|
||||
&calibration_art_1000 {
|
||||
reg = <0x1000 0xeb8>;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -6,3 +6,11 @@
|
|||
model = "TP-Link TL-WA830RE v1";
|
||||
compatible = "tplink,tl-wa830re-v1", "qca,ar7240";
|
||||
};
|
||||
|
||||
&ath9k {
|
||||
compatible = "pci168c,002a";
|
||||
};
|
||||
|
||||
&calibration_art_1000 {
|
||||
reg = <0x1000 0xeb8>;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -6,3 +6,11 @@
|
|||
model = "TP-Link TL-WA901ND v1";
|
||||
compatible = "tplink,tl-wa901nd-v1", "qca,ar7240";
|
||||
};
|
||||
|
||||
&ath9k {
|
||||
compatible = "pci168c,002b";
|
||||
};
|
||||
|
||||
&calibration_art_1000 {
|
||||
reg = <0x1000 0x200>;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -41,7 +41,3 @@
|
|||
nvmem-cells = <&macaddr_uboot_1fc00 1>;
|
||||
nvmem-cell-names = "mac-address";
|
||||
};
|
||||
|
||||
&ath9k {
|
||||
compatible = "pci168c,002b";
|
||||
};
|
||||
|
|
|
|||
|
|
@ -6,3 +6,11 @@
|
|||
model = "TP-Link TL-WR740N v1/v2";
|
||||
compatible = "tplink,tl-wr740n-v1", "qca,ar7240";
|
||||
};
|
||||
|
||||
&ath9k {
|
||||
compatible = "pci168c,002b";
|
||||
};
|
||||
|
||||
&calibration_art_1000 {
|
||||
reg = <0x1000 0x200>;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -6,3 +6,11 @@
|
|||
model = "TP-Link TL-WR740N v3";
|
||||
compatible = "tplink,tl-wr740n-v3", "qca,ar7240";
|
||||
};
|
||||
|
||||
&ath9k {
|
||||
compatible = "pci168c,002b";
|
||||
};
|
||||
|
||||
&calibration_art_1000 {
|
||||
reg = <0x1000 0x200>;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -6,3 +6,11 @@
|
|||
model = "TP-Link TL-WR741N/ND v1/v2";
|
||||
compatible = "tplink,tl-wr741-v1", "qca,ar7240";
|
||||
};
|
||||
|
||||
&ath9k {
|
||||
compatible = "pci168c,002b";
|
||||
};
|
||||
|
||||
&calibration_art_1000 {
|
||||
reg = <0x1000 0x200>;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -6,3 +6,11 @@
|
|||
model = "TP-Link TL-WR743ND v1";
|
||||
compatible = "tplink,tl-wr743nd-v1", "qca,ar7240";
|
||||
};
|
||||
|
||||
&ath9k {
|
||||
compatible = "pci168c,002b";
|
||||
};
|
||||
|
||||
&calibration_art_1000 {
|
||||
reg = <0x1000 0x200>;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -6,3 +6,11 @@
|
|||
model = "TP-Link TL-WR841N/ND v5/v6";
|
||||
compatible = "tplink,tl-wr841-v5", "qca,ar7240";
|
||||
};
|
||||
|
||||
&ath9k {
|
||||
compatible = "pci168c,002a";
|
||||
};
|
||||
|
||||
&calibration_art_1000 {
|
||||
reg = <0x1000 0xeb8>;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -6,3 +6,11 @@
|
|||
model = "TP-Link TL-WR941N/ND v4";
|
||||
compatible = "tplink,tl-wr941-v4", "qca,ar7240";
|
||||
};
|
||||
|
||||
&ath9k {
|
||||
compatible = "pci168c,002a";
|
||||
};
|
||||
|
||||
&calibration_art_1000 {
|
||||
reg = <0x1000 0xeb8>;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -12,30 +12,16 @@ case "$FIRMWARE" in
|
|||
buffalo,whr-g301n|\
|
||||
engenius,eap350-v1|\
|
||||
engenius,ecb350-v1|\
|
||||
engenius,enh202-v1|\
|
||||
tplink,tl-wa701nd-v1|\
|
||||
tplink,tl-wa730re-v1|\
|
||||
tplink,tl-wa801nd-v1|\
|
||||
tplink,tl-wa830re-v1|\
|
||||
tplink,tl-wa901nd-v1|\
|
||||
tplink,tl-wr841-v5|\
|
||||
tplink,tl-wr941-v4)
|
||||
engenius,enh202-v1)
|
||||
caldata_extract "art" 0x1000 0xeb8
|
||||
;;
|
||||
dlink,dir-615-e4)
|
||||
caldata_extract "art" 0x1000 0x1000
|
||||
ath9k_patch_mac_crc $(mtd_get_mac_ascii "nvram" "lan_mac") 0x10c
|
||||
;;
|
||||
netgear,wnr1000-v2|\
|
||||
netgear,wnr2000-v3|\
|
||||
netgear,wnr612-v2|\
|
||||
on,n150r|\
|
||||
tplink,tl-mr3220-v1|\
|
||||
tplink,tl-mr3420-v1|\
|
||||
tplink,tl-wr740n-v1|\
|
||||
tplink,tl-wr740n-v3|\
|
||||
tplink,tl-wr741-v1|\
|
||||
tplink,tl-wr743nd-v1|\
|
||||
tplink,tl-wr841-v7|\
|
||||
ubnt,airrouter|\
|
||||
ubnt,bullet-m-ar7240|\
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue