mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-19 10:23:03 +00:00
This series is based on * 2020-07-10 ipq6018-ilq-11-0_qca_oem-034672b0676c37b1f4519e5720e18e95fe6236ef Add support for * qsdk kernel/v4.4 * qsdk ethernet subsystem * v5.7 ath11k backport + QualComm staging patches (wlan_ap_1.0) * ath11k-firmware * hostapd/iw/... Feature support * full boot, system detection * sysupgrade to nand * HE support via latest hostapd * driver support for usb, crypto, hwmon, cpufreq, ... Missing * NSS/HW flow offloading - FW blob is not redistributable Using the qsdk v4.4 is an intermediate solution while the vanilla is being tested. Vanilla kernel is almost on feature par. Work has already started to upstream the ethernet and switch drivers. Once complete the target will be fully upstream. Signed-off-by: John Crispin <john@phrozen.org>
32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
From fe50a3c8959f8c8e2abb9e18cb07f17385bc7f92 Mon Sep 17 00:00:00 2001
|
|
From: Sowmiya Sree Elavalagan <ssreeela@codeaurora.org>
|
|
Date: Wed, 24 Jun 2020 11:07:07 +0530
|
|
Subject: [PATCH] ath11k: disable qdss trace in ftm mode
|
|
|
|
EVM and DPD failures were seen in ftm mode as qdss trace was enabled
|
|
by default. Disabled qdss trace in ftm mode as it is not required.
|
|
|
|
Signed-off-by: Sowmiya Sree Elavalagan <ssreeela@codeaurora.org>
|
|
---
|
|
drivers/net/wireless/ath/ath11k/qmi.c | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/drivers/net/wireless/ath/ath11k/qmi.c b/drivers/net/wireless/ath/ath11k/qmi.c
|
|
index 81651d2..e9d6d21 100644
|
|
--- a/drivers/net/wireless/ath/ath11k/qmi.c
|
|
+++ b/drivers/net/wireless/ath/ath11k/qmi.c
|
|
@@ -2465,6 +2465,10 @@ int ath11k_config_qdss(struct ath11k_base *ab)
|
|
{
|
|
int ret;
|
|
|
|
+ /* Disabling qdss trace for FTM as it causes hig evt latency in FW */
|
|
+ if (ab->fw_mode == ATH11K_FIRMWARE_MODE_FTM)
|
|
+ return 0;
|
|
+
|
|
if (enable_qdss_trace) {
|
|
ret = ath11k_qmi_send_qdss_config(ab);
|
|
if (ret < 0) {
|
|
--
|
|
2.7.4
|
|
|