|
@@ -3811,26 +3811,39 @@ static void lim_ht_switch_chnl_req(struct pe_session *session)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+uint8_t lim_get_cb_mode_for_freq(struct mac_context *mac,
|
|
|
+ struct pe_session *session,
|
|
|
+ qdf_freq_t chan_freq)
|
|
|
+{
|
|
|
+ uint8_t cb_mode = mac->roam.configParam.channelBondingMode5GHz;
|
|
|
+
|
|
|
+ if (WLAN_REG_IS_24GHZ_CH_FREQ(chan_freq)) {
|
|
|
+ if (session->force_24ghz_in_ht20) {
|
|
|
+ cb_mode = WNI_CFG_CHANNEL_BONDING_MODE_DISABLE;
|
|
|
+ pe_debug_rl("vdev %d force 20 Mhz in 2.4 GHz",
|
|
|
+ session->vdev_id);
|
|
|
+ } else {
|
|
|
+ cb_mode = mac->roam.configParam.channelBondingMode24GHz;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return cb_mode;
|
|
|
+}
|
|
|
+
|
|
|
void lim_update_sta_run_time_ht_switch_chnl_params(struct mac_context *mac,
|
|
|
tDot11fIEHTInfo *pHTInfo,
|
|
|
struct pe_session *pe_session)
|
|
|
{
|
|
|
qdf_freq_t chan_freq;
|
|
|
- uint32_t self_cb_mode = mac->roam.configParam.channelBondingMode5GHz;
|
|
|
+ uint8_t cb_mode;
|
|
|
|
|
|
- if (WLAN_REG_IS_24GHZ_CH_FREQ(pe_session->curr_op_freq))
|
|
|
- self_cb_mode = mac->roam.configParam.channelBondingMode24GHz;
|
|
|
+ cb_mode = lim_get_cb_mode_for_freq(mac, pe_session,
|
|
|
+ pe_session->curr_op_freq);
|
|
|
|
|
|
/* If self capability is set to '20Mhz only', then do not change the CB mode. */
|
|
|
- if (self_cb_mode == WNI_CFG_CHANNEL_BONDING_MODE_DISABLE) {
|
|
|
- pe_debug("self_cb_mode 0 for freq %d",
|
|
|
- pe_session->curr_op_freq);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- if (wlan_reg_is_24ghz_ch_freq(pe_session->curr_op_freq) &&
|
|
|
- pe_session->force_24ghz_in_ht20) {
|
|
|
- pe_debug("force_24ghz_in_ht20 is set and channel is 2.4 Ghz");
|
|
|
+ if (cb_mode == WNI_CFG_CHANNEL_BONDING_MODE_DISABLE) {
|
|
|
+ pe_debug_rl("self_cb_mode 0 for freq %d",
|
|
|
+ pe_session->curr_op_freq);
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -11184,10 +11197,8 @@ bool lim_update_channel_width(struct mac_context *mac_ctx,
|
|
|
enum phy_ch_width oper_mode;
|
|
|
enum phy_ch_width fw_vht_ch_wd;
|
|
|
|
|
|
- if (wlan_reg_is_24ghz_ch_freq(session->curr_op_freq))
|
|
|
- cb_mode = mac_ctx->roam.configParam.channelBondingMode24GHz;
|
|
|
- else
|
|
|
- cb_mode = mac_ctx->roam.configParam.channelBondingMode5GHz;
|
|
|
+ cb_mode = lim_get_cb_mode_for_freq(mac_ctx, session,
|
|
|
+ session->curr_op_freq);
|
|
|
/*
|
|
|
* Do not update the channel bonding mode if channel bonding
|
|
|
* mode is disabled in INI.
|