Commit ff11d0c9 authored by Bryan O'Donoghue's avatar Bryan O'Donoghue Committed by Kalle Valo

wcn36xx: Add 802.11ac HAL param bitfields

This patch enumerates four previously unused bits in
wcn36xx_hal_config_sta_params_v1 describing

- HT LDPC enable
- VHT LDPC enable
- VHT TX BF enable
- VHT MU Beamformee enable
Signed-off-by: default avatarBryan O'Donoghue <bryan.odonoghue@linaro.org>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200829033846.2167619-8-bryan.odonoghue@linaro.org
parent 1af05d43
...@@ -1515,7 +1515,11 @@ struct wcn36xx_hal_config_sta_params_v1 { ...@@ -1515,7 +1515,11 @@ struct wcn36xx_hal_config_sta_params_v1 {
u8 p2p; u8 p2p;
/* Reserved to align next field on a dword boundary */ /* Reserved to align next field on a dword boundary */
u8 reserved; u8 ht_ldpc_enabled:1;
u8 vht_ldpc_enabled:1;
u8 vht_tx_bf_enabled:1;
u8 vht_tx_mu_beamformee_capable:1;
u8 reserved:4;
/* These rates are the intersection of peer and self capabilities. */ /* These rates are the intersection of peer and self capabilities. */
struct wcn36xx_hal_supported_rates supported_rates; struct wcn36xx_hal_supported_rates supported_rates;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment