OSDN Git Service

wifi: ath12k: add handler for scan event WMI_SCAN_EVENT_DEQUEUED
authorWen Gong <quic_wgong@quicinc.com>
Mon, 17 Jul 2023 03:44:57 +0000 (23:44 -0400)
committerKalle Valo <quic_kvalo@quicinc.com>
Thu, 3 Aug 2023 09:19:18 +0000 (12:19 +0300)
commit9632ea57be659887ab0d28a2a1d7b901dfddd263
tree7174e7afce9492122c1cb9af46605fc21ad97fa1
parent89a9dda1430a71fe95ad2b4f8056e7aa15b4aee7
wifi: ath12k: add handler for scan event WMI_SCAN_EVENT_DEQUEUED

When wlan interface is up, and 11d scan is sent to the firmware, then
firmware needs to spend couple of seconds to complete the 11d scan. If
normal scan from user space arrives to ath12k at this moment, then the
normal scan request is also sent to the firmware, but the scan started
event will be reported to ath12k until the 11d scan complete. When timed
out for the scan started in ath12k, ath12k stops the normal scan and the
firmware reports WMI_SCAN_EVENT_DEQUEUED to ath12k for the normal scan.
ath12k has no handler for the event and then timed out for the scan
completed in ath12k_scan_stop(), and ath12k prints the following error
message.

[ 1491.604750] ath12k_pci 0000:02:00.0: failed to receive scan abort comple: timed out
[ 1491.604756] ath12k_pci 0000:02:00.0: failed to stop scan: -110
[ 1491.604758] ath12k_pci 0000:02:00.0: failed to start hw scan: -110

Add a handler for WMI_SCAN_EVENT_DEQUEUED and then complete the scan to
get rid of the above error message.

Tested-on: WCN7850 hw2.0 PCI WLAN.HMT.1.0-03427-QCAHMTSWPL_V1.0_V2.0_SILICONZ-1.15378.4

Signed-off-by: Wen Gong <quic_wgong@quicinc.com>
Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
Link: https://lore.kernel.org/r/20230717034457.22162-1-quic_wgong@quicinc.com
drivers/net/wireless/ath/ath12k/wmi.c