mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-23 15:32:33 +00:00
524704e677
Synchronize the ath11k backports with the current ath-next tree. This backports several memory leak issues, PCI IRQ fixup, peer add locking fix as well as IPQ5018 support, though IPQ5018 support is unused for now. This allows to easily backport further fixes as cherry picking them has started requiring manual conflict resolution. Signed-off-by: Robert Marko <robimarko@gmail.com>
32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
From 25edca7bb18a2a40cc7e54c6f522e9b3c917e2c5 Mon Sep 17 00:00:00 2001
|
|
From: Sriram R <quic_srirrama@quicinc.com>
|
|
Date: Fri, 2 Dec 2022 23:37:15 +0200
|
|
Subject: [PATCH] wifi: ath11k: add ipq5018 device support
|
|
|
|
ipq5018 is a ahb 2ghz device, enable the compatible support for
|
|
ipq5018 in ahb.
|
|
|
|
Tested-on: IPQ5018 hw1.0 AHB WLAN.HK.2.6.0.1-00861-QCAHKSWPL_SILICONZ-1
|
|
|
|
Signed-off-by: Sriram R <quic_srirrama@quicinc.com>
|
|
Co-developed-by: Karthikeyan Kathirvel <quic_kathirve@quicinc.com>
|
|
Signed-off-by: Karthikeyan Kathirvel <quic_kathirve@quicinc.com>
|
|
Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
|
|
Link: https://lore.kernel.org/r/20221122132152.17771-9-quic_kathirve@quicinc.com
|
|
---
|
|
drivers/net/wireless/ath/ath11k/ahb.c | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
--- a/drivers/net/wireless/ath/ath11k/ahb.c
|
|
+++ b/drivers/net/wireless/ath/ath11k/ahb.c
|
|
@@ -32,6 +32,9 @@ static const struct of_device_id ath11k_
|
|
{ .compatible = "qcom,wcn6750-wifi",
|
|
.data = (void *)ATH11K_HW_WCN6750_HW10,
|
|
},
|
|
+ { .compatible = "qcom,ipq5018-wifi",
|
|
+ .data = (void *)ATH11K_HW_IPQ5018_HW10,
|
|
+ },
|
|
{ }
|
|
};
|
|
|