diff mbox series

[v2,01/10] wcn36xx: Add a chip identifier for WCN3680

Message ID 20200829033846.2167619-2-bryan.odonoghue@linaro.org
State New
Headers show
Series wcn36xx: Add basic support for wcn3680 up to MCS7/40MHz | expand

Commit Message

Bryan O'Donoghue Aug. 29, 2020, 3:38 a.m. UTC
The WCN3680 has some specific behaviours that we want to capture to
distinguish it from the WCN3620 and WCN3660 respectively.

Add an identifier for this purpose.

Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>

---
 drivers/net/wireless/ath/wcn36xx/wcn36xx.h | 1 +
 1 file changed, 1 insertion(+)

-- 
2.27.0


_______________________________________________
wcn36xx mailing list
wcn36xx@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/wcn36xx

Comments

Kalle Valo Sept. 2, 2020, 8:49 a.m. UTC | #1
Bryan O'Donoghue <bryan.odonoghue@linaro.org> wrote:

> The WCN3680 has some specific behaviours that we want to capture to

> distinguish it from the WCN3620 and WCN3660 respectively.

> 

> Add an identifier for this purpose.

> 

> Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>

> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>


9 patches applied to ath-next branch of ath.git, thanks.

034f0befc1ff wcn36xx: Add a chip identifier for WCN3680
8490987bdb9a wcn36xx: Hook and identify RF_IRIS_WCN3680
10630b150bd6 wcn36xx: Add 802.11ac MCS rates
6ea131acea98 wcn36xx: Fix warning due to bad rate_idx
1af05d43b9be wcn36xx: Specify ieee80211_rx_status.nss
ff11d0c96a6d wcn36xx: Add 802.11ac HAL param bitfields
8f454b2ffb25 wcn36xx: Add Supported rates V1 structure
f32248a7a257 wcn36xx: Use existing pointers in wcn36xx_smd_config_bss_v1
dfe92b6206f5 wcn36xx: Set feature DOT11AC for wcn3680

-- 
https://patchwork.kernel.org/patch/11743917/

https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches


_______________________________________________
wcn36xx mailing list
wcn36xx@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/wcn36xx
Kalle Valo Sept. 2, 2020, 8:49 a.m. UTC | #2
Bryan O'Donoghue <bryan.odonoghue@linaro.org> wrote:

> The WCN3680 has some specific behaviours that we want to capture to

> distinguish it from the WCN3620 and WCN3660 respectively.

> 

> Add an identifier for this purpose.

> 

> Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>

> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>


9 patches applied to ath-next branch of ath.git, thanks.

034f0befc1ff wcn36xx: Add a chip identifier for WCN3680
8490987bdb9a wcn36xx: Hook and identify RF_IRIS_WCN3680
10630b150bd6 wcn36xx: Add 802.11ac MCS rates
6ea131acea98 wcn36xx: Fix warning due to bad rate_idx
1af05d43b9be wcn36xx: Specify ieee80211_rx_status.nss
ff11d0c96a6d wcn36xx: Add 802.11ac HAL param bitfields
8f454b2ffb25 wcn36xx: Add Supported rates V1 structure
f32248a7a257 wcn36xx: Use existing pointers in wcn36xx_smd_config_bss_v1
dfe92b6206f5 wcn36xx: Set feature DOT11AC for wcn3680

-- 
https://patchwork.kernel.org/patch/11743917/

https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
diff mbox series

Patch

diff --git a/drivers/net/wireless/ath/wcn36xx/wcn36xx.h b/drivers/net/wireless/ath/wcn36xx/wcn36xx.h
index 719a6daf9298..342ca0ae7e28 100644
--- a/drivers/net/wireless/ath/wcn36xx/wcn36xx.h
+++ b/drivers/net/wireless/ath/wcn36xx/wcn36xx.h
@@ -92,6 +92,7 @@  enum wcn36xx_ampdu_state {
 
 #define RF_UNKNOWN	0x0000
 #define RF_IRIS_WCN3620	0x3620
+#define RF_IRIS_WCN3680	0x3680
 
 static inline void buff_to_be(u32 *buf, size_t len)
 {