diff options
author | Sander Vanheule <sander@svanheule.net> | 2022-06-05 12:03:15 +0200 |
---|---|---|
committer | Sander Vanheule <sander@svanheule.net> | 2022-06-16 21:39:32 +0200 |
commit | eca0d7301198febc64f4a3561d50dac99d931155 (patch) | |
tree | fe355890c57fddd0d0024b0d800c9df7fe5a5129 /target/linux/ath79/dts/qca9563_tplink_eap225-v3.dts | |
parent | 23b904074500b2fa6691a0c9ebf82cefdd1ed95c (diff) | |
download | upstream-eca0d7301198febc64f4a3561d50dac99d931155.tar.gz upstream-eca0d7301198febc64f4a3561d50dac99d931155.tar.bz2 upstream-eca0d7301198febc64f4a3561d50dac99d931155.zip |
ath79: TP-Link EAP225 v3: convert ath10k to nvmem-cells
Add the PCIe node for the ath10k radio to the devicetree, and refer to
the art partition for the calibration data using nvmem-cells.
Use mac-address-increment to ensure the MAC address is set correctly,
and remove the device from the caldata extraction and patching script.
Signed-off-by: Sander Vanheule <sander@svanheule.net>
Diffstat (limited to 'target/linux/ath79/dts/qca9563_tplink_eap225-v3.dts')
-rw-r--r-- | target/linux/ath79/dts/qca9563_tplink_eap225-v3.dts | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/target/linux/ath79/dts/qca9563_tplink_eap225-v3.dts b/target/linux/ath79/dts/qca9563_tplink_eap225-v3.dts index 3d4950eaf0..ed599815c0 100644 --- a/target/linux/ath79/dts/qca9563_tplink_eap225-v3.dts +++ b/target/linux/ath79/dts/qca9563_tplink_eap225-v3.dts @@ -28,3 +28,21 @@ }; }; }; + +&art { + calibration_ath10k: calibration@5000 { + reg = <0x5000 0x2f20>; + }; +}; + +&pcie { + wifi@0,0 { + compatible = "qcom,ath10k"; + reg = <0 0 0 0 0>; + + mac-address-increment = <1>; + + nvmem-cells = <&macaddr_info_8>, <&calibration_ath10k>; + nvmem-cell-names = "mac-address", "calibration"; + }; +}; |