mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 10:31:46 +09:00
wcn36xx: Add wcn36xx_smd_set_sta_default_vht_params()
This commit adds support for setting default VHT parameters, which are exposed by the extended version 1 STA parameter type. Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org> Signed-off-by: Kalle Valo <kvalo@codeaurora.org> Link: https://lore.kernel.org/r/20200910150552.2178882-3-bryan.odonoghue@linaro.org
This commit is contained in:
committed by
Kalle Valo
parent
c84515bd8f
commit
21ba284ca9
@@ -190,6 +190,24 @@ static void wcn36xx_smd_set_sta_default_ht_params(
|
||||
sta_params->dsss_cck_mode_40mhz = 1;
|
||||
}
|
||||
|
||||
void wcn36xx_smd_set_sta_default_vht_params(struct wcn36xx *wcn,
|
||||
struct wcn36xx_hal_config_sta_params_v1 *sta_params);
|
||||
void wcn36xx_smd_set_sta_default_vht_params(struct wcn36xx *wcn,
|
||||
struct wcn36xx_hal_config_sta_params_v1 *sta_params)
|
||||
{
|
||||
if (wcn->rf_id == RF_IRIS_WCN3680) {
|
||||
sta_params->vht_capable = 1;
|
||||
sta_params->vht_tx_mu_beamformee_capable = 1;
|
||||
} else {
|
||||
sta_params->vht_capable = 0;
|
||||
sta_params->vht_tx_mu_beamformee_capable = 0;
|
||||
}
|
||||
|
||||
sta_params->vht_ldpc_enabled = 0;
|
||||
sta_params->vht_tx_channel_width_set = 0;
|
||||
sta_params->vht_tx_bf_enabled = 0;
|
||||
}
|
||||
|
||||
static void wcn36xx_smd_set_sta_params(struct wcn36xx *wcn,
|
||||
struct ieee80211_vif *vif,
|
||||
struct ieee80211_sta *sta,
|
||||
|
||||
Reference in New Issue
Block a user