mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-25 05:47:00 +00:00
e94052bfee
Synchronize the ath11k backports with upstream linux.
Most of them are changes in kernel 6.5, the rest are
fixes for the ath11k_pci. The most important one is
"Revert 'wifi: ath11k: Enable threaded NAPI'", which
fixes the problem that QCN9074 cannot be used after
restarting on the x86 platform.
[ 23.462718] ath11k_pci 0000:02:00.0: failed to vdev 0 create peer for AP: -110
[ 28.503020] ath11k_pci 0000:02:00.0: Timeout in receiving vdev delete response
Changes to ipq8074 coldboot part pick from commit
b33bfcf
("mac80211: ath11k: sync with ath-next").
Signed-off-by: Chukun Pan <amadeus@jmu.edu.cn>
45 lines
1.7 KiB
Diff
45 lines
1.7 KiB
Diff
From d265ebe41c911314bd273c218a37088835959fa1 Mon Sep 17 00:00:00 2001
|
|
From: Kalle Valo <quic_kvalo@quicinc.com>
|
|
Date: Thu, 20 Jul 2023 18:14:44 +0300
|
|
Subject: [PATCH] Revert "wifi: ath11k: Enable threaded NAPI"
|
|
|
|
This reverts commit 13aa2fb692d3717767303817f35b3e650109add3.
|
|
|
|
This commit broke QCN9074 initialisation:
|
|
|
|
[ 358.960477] ath11k_pci 0000:04:00.0: ce desc not available for wmi command 36866
|
|
[ 358.960481] ath11k_pci 0000:04:00.0: failed to send WMI_STA_POWERSAVE_PARAM_CMDID
|
|
[ 358.960484] ath11k_pci 0000:04:00.0: could not set uapsd params -105
|
|
|
|
As there's no fix available let's just revert it to get QCN9074 working again.
|
|
|
|
Closes: https://bugzilla.kernel.org/show_bug.cgi?id=217536
|
|
Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
|
|
Signed-off-by: Kalle Valo <kvalo@kernel.org>
|
|
Link: https://lore.kernel.org/r/20230720151444.2016637-1-kvalo@kernel.org
|
|
---
|
|
drivers/net/wireless/ath/ath11k/ahb.c | 1 -
|
|
drivers/net/wireless/ath/ath11k/pcic.c | 1 -
|
|
2 files changed, 2 deletions(-)
|
|
|
|
--- a/drivers/net/wireless/ath/ath11k/ahb.c
|
|
+++ b/drivers/net/wireless/ath/ath11k/ahb.c
|
|
@@ -376,7 +376,6 @@ static void ath11k_ahb_ext_irq_enable(st
|
|
struct ath11k_ext_irq_grp *irq_grp = &ab->ext_irq_grp[i];
|
|
|
|
if (!irq_grp->napi_enabled) {
|
|
- dev_set_threaded(&irq_grp->napi_ndev, true);
|
|
napi_enable(&irq_grp->napi);
|
|
irq_grp->napi_enabled = true;
|
|
}
|
|
--- a/drivers/net/wireless/ath/ath11k/pcic.c
|
|
+++ b/drivers/net/wireless/ath/ath11k/pcic.c
|
|
@@ -466,7 +466,6 @@ void ath11k_pcic_ext_irq_enable(struct a
|
|
struct ath11k_ext_irq_grp *irq_grp = &ab->ext_irq_grp[i];
|
|
|
|
if (!irq_grp->napi_enabled) {
|
|
- dev_set_threaded(&irq_grp->napi_ndev, true);
|
|
napi_enable(&irq_grp->napi);
|
|
irq_grp->napi_enabled = true;
|
|
}
|