aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ath79/dts/qca9558_tplink_archer-c7-v1.dts
diff options
context:
space:
mode:
authorChristian Lamparter <chunkeey@gmail.com>2021-10-16 21:28:52 +0200
committerChristian Lamparter <chunkeey@gmail.com>2021-11-28 01:13:08 +0100
commit297bceeecf29e9bfedba0b26c9d0a2cefeda2add (patch)
treef28b2e6e8f8ab504999aed8d7b1d4acc391b0b5d /target/linux/ath79/dts/qca9558_tplink_archer-c7-v1.dts
parent49d400191dae027a89909680e372f1934a1e1766 (diff)
downloadupstream-297bceeecf29e9bfedba0b26c9d0a2cefeda2add.tar.gz
upstream-297bceeecf29e9bfedba0b26c9d0a2cefeda2add.tar.bz2
upstream-297bceeecf29e9bfedba0b26c9d0a2cefeda2add.zip
ath79: convert TP-Link Archer C7v1/2 Wifis to nvmem-cells
For v2, both ath9k (2.4GHz Wifi) and ath10k (5 GHz) driver now pull the (pre-)calibration data from the nvmem subsystem. v1 is slightly different as only the ath9k Wifi is supported. This allows us to move the userspace caldata extraction and mac-address patching for the 5GHZ ath10k supported wifi into the device-tree definition of the device. ath9k's nodes are also changed over to use nvmem-cells over OpenWrt's custom mtd-cal-data property. Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
Diffstat (limited to 'target/linux/ath79/dts/qca9558_tplink_archer-c7-v1.dts')
-rw-r--r--target/linux/ath79/dts/qca9558_tplink_archer-c7-v1.dts16
1 files changed, 11 insertions, 5 deletions
diff --git a/target/linux/ath79/dts/qca9558_tplink_archer-c7-v1.dts b/target/linux/ath79/dts/qca9558_tplink_archer-c7-v1.dts
index dfa64d6ca3..e520a83d40 100644
--- a/target/linux/ath79/dts/qca9558_tplink_archer-c7-v1.dts
+++ b/target/linux/ath79/dts/qca9558_tplink_archer-c7-v1.dts
@@ -41,10 +41,18 @@
reg = <0x020000 0x7d0000>;
};
- art: partition@7f0000 {
+ partition@7f0000 {
label = "art";
reg = <0x7f0000 0x010000>;
read-only;
+
+ compatible = "nvmem-cells";
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ calibration_art_1000: calibration@1000 {
+ reg = <0x1000 0x440>;
+ };
};
};
@@ -60,10 +68,8 @@
};
&wmac {
- mtd-cal-data = <&art 0x1000>;
-
- nvmem-cells = <&macaddr_uboot_1fc00>;
- nvmem-cell-names = "mac-address";
+ nvmem-cells = <&macaddr_uboot_1fc00>, <&calibration_art_1000>;
+ nvmem-cell-names = "mac-address", "calibration";
};
&uboot {