]> git.ipfire.org Git - thirdparty/openwrt.git/blob
2c4762e27574f485031c995898cb948bc90b0b0f
[thirdparty/openwrt.git] /
1 From b2d16b688ce04b67f2033f90f49f4add7ebd3fe8 Mon Sep 17 00:00:00 2001
2 From: George Moussalem <george.moussalem@outlook.com>
3 Date: Tue, 10 Jun 2025 14:34:37 +0400
4 Subject: [PATCH] wifi: ath11k: disable coldboot calibration for ipq5018
5
6 Coldboot calibration does not work causes the firmware to crash during
7 wifi startup. So let's disable coldboot calibration until a solution is
8 found.
9
10 Signed-off-by: George Moussalem <george.moussalem@outlook.com>
11 ---
12 drivers/net/wireless/ath/ath11k/core.c | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 --- a/drivers/net/wireless/ath/ath11k/core.c
16 +++ b/drivers/net/wireless/ath/ath11k/core.c
17 @@ -691,8 +691,8 @@ static const struct ath11k_hw_params ath
18 .supports_suspend = false,
19 .hal_params = &ath11k_hw_hal_params_ipq8074,
20 .single_pdev_only = false,
21 - .coldboot_cal_mm = true,
22 - .coldboot_cal_ftm = true,
23 + .coldboot_cal_mm = false,
24 + .coldboot_cal_ftm = false,
25 .cbcal_restart_fw = true,
26 .fix_l1ss = true,
27 .supports_dynamic_smps_6ghz = false,