diff options
author | Sander Vanheule <sander@svanheule.net> | 2022-06-11 12:51:43 +0200 |
---|---|---|
committer | Sander Vanheule <sander@svanheule.net> | 2022-06-18 11:57:21 +0200 |
commit | e5df38120861f8064a8416d8e13bca0ca05eee76 (patch) | |
tree | 419608a570be29d06bdad14dacf2dff24aba3330 /target/linux/ath79/dts | |
parent | abf28b79c817c319d16f447d28bdaeb6839d5467 (diff) | |
download | upstream-e5df38120861f8064a8416d8e13bca0ca05eee76.tar.gz upstream-e5df38120861f8064a8416d8e13bca0ca05eee76.tar.bz2 upstream-e5df38120861f8064a8416d8e13bca0ca05eee76.zip |
ath79: D-Link DAP-2695 A1: convert ath10k caldata to nvmem
Add the PCIe node for the ath10k radio to the devicetree, and refer to
the art partition for the calibration data using nvmem-cells.
MAC address assignment is moved to '10_fix_wifi_mac', so the device can
then be removed from the caldata extraction script '11-ath10k-caldata'.
Cc: Sebastian Schaper <openwrt@sebastianschaper.net>
Signed-off-by: Sander Vanheule <sander@svanheule.net>
Diffstat (limited to 'target/linux/ath79/dts')
-rw-r--r-- | target/linux/ath79/dts/qca9558_dlink_dap-2695-a1.dts | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/target/linux/ath79/dts/qca9558_dlink_dap-2695-a1.dts b/target/linux/ath79/dts/qca9558_dlink_dap-2695-a1.dts index 91df50fb45..1985fa48d8 100644 --- a/target/linux/ath79/dts/qca9558_dlink_dap-2695-a1.dts +++ b/target/linux/ath79/dts/qca9558_dlink_dap-2695-a1.dts @@ -105,4 +105,18 @@ &pcie0 { status = "okay"; + + wifi@0,0 { + compatible = "qcom,ath10k"; + reg = <0 0 0 0 0>; + + nvmem-cells = <&cal_ath10k>; + nvmem-cell-names = "calibration"; + }; +}; + +&art { + cal_ath10k: calibration@5000 { + reg = <0x5000 0x844>; + }; }; |