summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMantas Pucka2024-01-03 09:31:03 +0000
committerRobert Marko2024-02-21 20:42:23 +0000
commitaa6cc0a52b1bbfbecc4a19bfdd06eb2b7513cdcb (patch)
tree4248534a9475afbbf8245fbf90a0a4f10a0efedc
parentd08d53346b993431e309797d5e6de8da20147c3c (diff)
downloadopenwrt-aa6cc0a52b1bbfbecc4a19bfdd06eb2b7513cdcb.tar.gz
mac80211: ath11k: disable coldboot for ipq6018
Coldboot calibration does not work at the moment and causes failure during wifi startup. Signed-off-by: Mantas Pucka <mantas@8devices.com>
-rw-r--r--package/kernel/mac80211/patches/ath11k/0906-wifi-ath11k-disable-coldboot-for-ipq6018.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/package/kernel/mac80211/patches/ath11k/0906-wifi-ath11k-disable-coldboot-for-ipq6018.patch b/package/kernel/mac80211/patches/ath11k/0906-wifi-ath11k-disable-coldboot-for-ipq6018.patch
new file mode 100644
index 0000000000..db646f7620
--- /dev/null
+++ b/package/kernel/mac80211/patches/ath11k/0906-wifi-ath11k-disable-coldboot-for-ipq6018.patch
@@ -0,0 +1,26 @@
+From a3be23672b4a81256d275af31afc6edcce5c5a26 Mon Sep 17 00:00:00 2001
+From: Mantas Pucka <mantas@8devices.com>
+Date: Mon, 22 Jan 2024 11:38:28 +0200
+Subject: [PATCH] wifi: ath11k: disable coldboot for ipq6018
+
+Coldboot calibration does not work at the moment and causes failure during
+wifi startup.
+
+Signed-off-by: Mantas Pucka <mantas@8devices.com>
+---
+ drivers/net/wireless/ath/ath11k/core.c | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+--- a/drivers/net/wireless/ath/ath11k/core.c
++++ b/drivers/net/wireless/ath/ath11k/core.c
+@@ -168,8 +168,8 @@ static const struct ath11k_hw_params ath
+ .supports_shadow_regs = false,
+ .idle_ps = false,
+ .supports_sta_ps = false,
+- .coldboot_cal_mm = true,
+- .coldboot_cal_ftm = true,
++ .coldboot_cal_mm = false,
++ .coldboot_cal_ftm = false,
+ .cbcal_restart_fw = true,
+ .fw_mem_mode = 0,
+ .num_vdevs = 16 + 1,