|
@@ -656,19 +656,19 @@ bool wlan_sap_get_ch_params(struct sap_context *sap_ctx,
|
|
|
*/
|
|
|
#ifdef FEATURE_WLAN_MCC_TO_SCC_SWITCH
|
|
|
static bool wlan_sap_validate_channel_switch(mac_handle_t mac_handle,
|
|
|
- uint16_t sap_ch,
|
|
|
+ uint32_t sap_ch_freq,
|
|
|
struct sap_context *sap_context)
|
|
|
{
|
|
|
return sme_validate_sap_channel_switch(
|
|
|
mac_handle,
|
|
|
- sap_ch,
|
|
|
+ sap_ch_freq,
|
|
|
sap_context->csr_roamProfile.phyMode,
|
|
|
sap_context->cc_switch_mode,
|
|
|
sap_context->sessionId);
|
|
|
}
|
|
|
#else
|
|
|
static bool wlan_sap_validate_channel_switch(mac_handle_t mac_handle,
|
|
|
- uint16_t sap_ch,
|
|
|
+ uint32_t sap_ch_freq,
|
|
|
struct sap_context *sap_context)
|
|
|
{
|
|
|
return true;
|
|
@@ -1254,7 +1254,7 @@ QDF_STATUS wlansap_deauth_sta(struct sap_context *sap_ctx,
|
|
|
*/
|
|
|
static QDF_STATUS
|
|
|
wlansap_update_csa_channel_params(struct sap_context *sap_context,
|
|
|
- enum channel_enum channel)
|
|
|
+ uint32_t chan_freq)
|
|
|
{
|
|
|
struct mac_context *mac_ctx;
|
|
|
uint8_t bw;
|
|
@@ -1265,7 +1265,7 @@ wlansap_update_csa_channel_params(struct sap_context *sap_context,
|
|
|
return QDF_STATUS_E_FAULT;
|
|
|
}
|
|
|
|
|
|
- if (channel <= CHAN_ENUM_2484) {
|
|
|
+ if (WLAN_REG_IS_24GHZ_CH_FREQ(chan_freq)) {
|
|
|
/*
|
|
|
* currently OBSS scan is done in hostapd, so to avoid
|
|
|
* SAP coming up in HT40 on channel switch we are
|
|
@@ -1287,7 +1287,8 @@ wlansap_update_csa_channel_params(struct sap_context *sap_context,
|
|
|
|
|
|
op_class = wlan_reg_dmn_get_opclass_from_channel(
|
|
|
mac_ctx->scan.countryCodeCurrent,
|
|
|
- channel, bw);
|
|
|
+ wlan_reg_freq_to_chan(mac_ctx->pdev, chan_freq),
|
|
|
+ bw);
|
|
|
/*
|
|
|
* Do not continue if bw is 20. This mean channel is not
|
|
|
* found and thus set BW20 for the channel.
|
|
@@ -1363,22 +1364,8 @@ static char *sap_get_csa_reason_str(enum sap_csa_reason_code reason)
|
|
|
}
|
|
|
#endif
|
|
|
|
|
|
-/**
|
|
|
- * wlansap_set_channel_change_with_csa() - Set channel change with CSA
|
|
|
- * @sap_ctx: Pointer to SAP context
|
|
|
- * @targetChannel: Target channel
|
|
|
- * @target_bw: Target bandwidth
|
|
|
- * @strict: if true switch to the requested channel always,
|
|
|
- * SCC/MCC check will be ignored,
|
|
|
- * fail otherwise
|
|
|
- *
|
|
|
- * This api function does a channel change to the target channel specified.
|
|
|
- * CSA IE is included in the beacons before doing a channel change.
|
|
|
- *
|
|
|
- * Return: QDF_STATUS
|
|
|
- */
|
|
|
QDF_STATUS wlansap_set_channel_change_with_csa(struct sap_context *sap_ctx,
|
|
|
- uint32_t targetChannel,
|
|
|
+ uint32_t target_chan_freq,
|
|
|
enum phy_ch_width target_bw,
|
|
|
bool strict)
|
|
|
{
|
|
@@ -1403,14 +1390,14 @@ QDF_STATUS wlansap_set_channel_change_with_csa(struct sap_context *sap_ctx,
|
|
|
mac_handle = MAC_HANDLE(mac);
|
|
|
|
|
|
if (strict && !policy_mgr_is_safe_channel(
|
|
|
- mac->psoc, wlan_chan_to_freq(targetChannel))) {
|
|
|
+ mac->psoc, target_chan_freq)) {
|
|
|
QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_ERROR,
|
|
|
- "%u is unsafe channel", targetChannel);
|
|
|
+ "%u is unsafe channel freq", target_chan_freq);
|
|
|
return QDF_STATUS_E_FAULT;
|
|
|
}
|
|
|
QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_INFO,
|
|
|
- "%s: sap chan:%d target:%d conn on 5GHz:%d, csa_reason:%s(%d) strict %d vdev %d",
|
|
|
- __func__, sap_ctx->chan_freq, targetChannel,
|
|
|
+ "%s: sap chan freq:%d target freq:%d conn on 5GHz:%d, csa_reason:%s(%d) strict %d vdev %d",
|
|
|
+ __func__, sap_ctx->chan_freq, target_chan_freq,
|
|
|
policy_mgr_is_any_mode_active_on_band_along_with_session(
|
|
|
mac->psoc, sap_ctx->sessionId, POLICY_MGR_BAND_5),
|
|
|
sap_get_csa_reason_str(sap_ctx->csa_reason),
|
|
@@ -1422,11 +1409,10 @@ QDF_STATUS wlansap_set_channel_change_with_csa(struct sap_context *sap_ctx,
|
|
|
* Now, validate if the passed channel is valid in the
|
|
|
* current regulatory domain.
|
|
|
*/
|
|
|
- if (wlan_reg_freq_to_chan(mac->pdev, sap_ctx->chan_freq) !=
|
|
|
- targetChannel &&
|
|
|
- ((wlan_reg_get_channel_state(mac->pdev, targetChannel) ==
|
|
|
+ if (sap_ctx->chan_freq != target_chan_freq &&
|
|
|
+ ((wlan_reg_get_channel_state_for_freq(mac->pdev, target_chan_freq) ==
|
|
|
CHANNEL_STATE_ENABLE) ||
|
|
|
- (wlan_reg_get_channel_state(mac->pdev, targetChannel) ==
|
|
|
+ (wlan_reg_get_channel_state_for_freq(mac->pdev, target_chan_freq) ==
|
|
|
CHANNEL_STATE_DFS &&
|
|
|
(!policy_mgr_is_any_mode_active_on_band_along_with_session(
|
|
|
mac->psoc, sap_ctx->sessionId,
|
|
@@ -1438,13 +1424,13 @@ QDF_STATUS wlansap_set_channel_change_with_csa(struct sap_context *sap_ctx,
|
|
|
*/
|
|
|
if (!strict) {
|
|
|
valid = wlan_sap_validate_channel_switch(mac_handle,
|
|
|
- targetChannel,
|
|
|
+ target_chan_freq,
|
|
|
sap_ctx);
|
|
|
if (!valid) {
|
|
|
QDF_TRACE(QDF_MODULE_ID_SAP,
|
|
|
QDF_TRACE_LEVEL_ERROR,
|
|
|
- FL("Channel switch to %u is not allowed due to concurrent channel interference"),
|
|
|
- targetChannel);
|
|
|
+ FL("Channel freq switch to %u is not allowed due to concurrent channel interference"),
|
|
|
+ target_chan_freq);
|
|
|
return QDF_STATUS_E_FAULT;
|
|
|
}
|
|
|
}
|
|
@@ -1456,14 +1442,14 @@ QDF_STATUS wlansap_set_channel_change_with_csa(struct sap_context *sap_ctx,
|
|
|
*/
|
|
|
if (sap_ctx->fsm_state == SAP_STARTED) {
|
|
|
status = wlansap_update_csa_channel_params(sap_ctx,
|
|
|
- targetChannel);
|
|
|
+ target_chan_freq);
|
|
|
if (status != QDF_STATUS_SUCCESS)
|
|
|
return status;
|
|
|
|
|
|
hw_mode_status =
|
|
|
policy_mgr_check_and_set_hw_mode_for_channel_switch(
|
|
|
mac->psoc, sap_ctx->sessionId,
|
|
|
- wlan_chan_to_freq(targetChannel),
|
|
|
+ target_chan_freq,
|
|
|
POLICY_MGR_UPDATE_REASON_CHANNEL_SWITCH);
|
|
|
|
|
|
/*
|
|
@@ -1489,7 +1475,7 @@ QDF_STATUS wlansap_set_channel_change_with_csa(struct sap_context *sap_ctx,
|
|
|
* Copy the requested target channel
|
|
|
* to sap context.
|
|
|
*/
|
|
|
- mac->sap.SapDfsInfo.target_channel = targetChannel;
|
|
|
+ mac->sap.SapDfsInfo.target_chan_freq = target_chan_freq;
|
|
|
mac->sap.SapDfsInfo.new_ch_params.ch_width =
|
|
|
mac->sap.SapDfsInfo.new_chanWidth;
|
|
|
|
|
@@ -1520,7 +1506,7 @@ QDF_STATUS wlansap_set_channel_change_with_csa(struct sap_context *sap_ctx,
|
|
|
new_ch_params.ch_width,
|
|
|
target_bw);
|
|
|
}
|
|
|
- wlan_reg_set_channel_params(mac->pdev, targetChannel,
|
|
|
+ wlan_reg_set_channel_params_for_freq(mac->pdev, target_chan_freq,
|
|
|
0, &mac->sap.SapDfsInfo.new_ch_params);
|
|
|
/*
|
|
|
* Set the CSA IE required flag.
|
|
@@ -1569,15 +1555,15 @@ QDF_STATUS wlansap_set_channel_change_with_csa(struct sap_context *sap_ctx,
|
|
|
|
|
|
} else {
|
|
|
QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_ERROR,
|
|
|
- "%s: Channel = %d is not valid in the current"
|
|
|
- "regulatory domain", __func__, targetChannel);
|
|
|
+ "%s: Channel freq = %d is not valid in the current"
|
|
|
+ "regulatory domain", __func__, target_chan_freq);
|
|
|
|
|
|
return QDF_STATUS_E_FAULT;
|
|
|
}
|
|
|
|
|
|
QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_INFO_HIGH,
|
|
|
- "%s: Posted eSAP_CHANNEL_SWITCH_ANNOUNCEMENT_START successfully to sap_fsm for Channel = %d",
|
|
|
- __func__, targetChannel);
|
|
|
+ "%s: Posted eSAP_CHANNEL_SWITCH_ANNOUNCEMENT_START successfully to sap_fsm for Channel freq = %d",
|
|
|
+ __func__, target_chan_freq);
|
|
|
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
}
|
|
@@ -1858,14 +1844,14 @@ wlansap_set_cac_required_for_chan(struct mac_context *mac_ctx,
|
|
|
}
|
|
|
|
|
|
QDF_STATUS wlansap_channel_change_request(struct sap_context *sap_ctx,
|
|
|
- uint8_t target_channel)
|
|
|
+ uint32_t target_chan_freq)
|
|
|
{
|
|
|
QDF_STATUS status = QDF_STATUS_E_FAILURE;
|
|
|
struct mac_context *mac_ctx;
|
|
|
eCsrPhyMode phy_mode;
|
|
|
struct ch_params *ch_params;
|
|
|
|
|
|
- if (!target_channel) {
|
|
|
+ if (!target_chan_freq) {
|
|
|
QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_ERROR,
|
|
|
"%s: channel 0 requested", __func__);
|
|
|
return QDF_STATUS_E_FAULT;
|
|
@@ -1886,18 +1872,18 @@ QDF_STATUS wlansap_channel_change_request(struct sap_context *sap_ctx,
|
|
|
phy_mode = sap_ctx->csr_roamProfile.phyMode;
|
|
|
|
|
|
/* Update phy_mode if the target channel is in the other band */
|
|
|
- if (WLAN_CHAN_IS_5GHZ(target_channel) &&
|
|
|
+ if (WLAN_REG_IS_5GHZ_CH_FREQ(target_chan_freq) &&
|
|
|
((phy_mode == eCSR_DOT11_MODE_11g) ||
|
|
|
(phy_mode == eCSR_DOT11_MODE_11g_ONLY)))
|
|
|
phy_mode = eCSR_DOT11_MODE_11a;
|
|
|
- else if (WLAN_CHAN_IS_2GHZ(target_channel) &&
|
|
|
+ else if (WLAN_REG_IS_24GHZ_CH_FREQ(target_chan_freq) &&
|
|
|
(phy_mode == eCSR_DOT11_MODE_11a))
|
|
|
phy_mode = eCSR_DOT11_MODE_11g;
|
|
|
|
|
|
QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_DEBUG,
|
|
|
- "%s: phy_mode: %d, target_channel: %d new phy_mode: %d",
|
|
|
+ "%s: phy_mode: %d, target_channel freq: %d new phy_mode: %d",
|
|
|
__func__, sap_ctx->csr_roamProfile.phyMode,
|
|
|
- target_channel, phy_mode);
|
|
|
+ target_chan_freq, phy_mode);
|
|
|
sap_ctx->csr_roamProfile.phyMode = phy_mode;
|
|
|
|
|
|
if (sap_ctx->csr_roamProfile.ChannelInfo.numOfChannels == 0 ||
|
|
@@ -1906,22 +1892,21 @@ QDF_STATUS wlansap_channel_change_request(struct sap_context *sap_ctx,
|
|
|
FL("Invalid channel list"));
|
|
|
return QDF_STATUS_E_FAULT;
|
|
|
}
|
|
|
- sap_ctx->csr_roamProfile.ChannelInfo.freq_list[0] =
|
|
|
- wlan_reg_chan_to_freq(mac_ctx->pdev, target_channel);
|
|
|
+ sap_ctx->csr_roamProfile.ChannelInfo.freq_list[0] = target_chan_freq;
|
|
|
+
|
|
|
/*
|
|
|
* We are getting channel bonding mode from sapDfsInfor structure
|
|
|
* because we've implemented channel width fallback mechanism for DFS
|
|
|
* which will result in channel width changing dynamically.
|
|
|
*/
|
|
|
ch_params = &mac_ctx->sap.SapDfsInfo.new_ch_params;
|
|
|
- wlan_reg_set_channel_params(mac_ctx->pdev, target_channel,
|
|
|
+ wlan_reg_set_channel_params_for_freq(mac_ctx->pdev, target_chan_freq,
|
|
|
0, ch_params);
|
|
|
sap_ctx->ch_params = *ch_params;
|
|
|
/* Update the channel as this will be used to
|
|
|
* send event to supplicant
|
|
|
*/
|
|
|
- sap_ctx->chan_freq = wlan_reg_chan_to_freq(mac_ctx->pdev,
|
|
|
- target_channel);
|
|
|
+ sap_ctx->chan_freq = target_chan_freq;
|
|
|
wlansap_get_sec_channel(ch_params->sec_ch_offset, sap_ctx->chan_freq,
|
|
|
&sap_ctx->sec_ch_freq);
|
|
|
sap_ctx->csr_roamProfile.ch_params.ch_width = ch_params->ch_width;
|
|
@@ -2002,20 +1987,20 @@ QDF_STATUS wlansap_dfs_send_csa_ie_request(struct sap_context *sap_ctx)
|
|
|
|
|
|
mac->sap.SapDfsInfo.new_ch_params.ch_width =
|
|
|
mac->sap.SapDfsInfo.new_chanWidth;
|
|
|
- wlan_reg_set_channel_params(mac->pdev,
|
|
|
- mac->sap.SapDfsInfo.target_channel,
|
|
|
+ wlan_reg_set_channel_params_for_freq(mac->pdev,
|
|
|
+ mac->sap.SapDfsInfo.target_chan_freq,
|
|
|
0, &mac->sap.SapDfsInfo.new_ch_params);
|
|
|
|
|
|
QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_INFO,
|
|
|
- "%s: chan:%d req:%d width:%d off:%d",
|
|
|
- __func__, mac->sap.SapDfsInfo.target_channel,
|
|
|
+ "%s: chan freq:%d req:%d width:%d off:%d",
|
|
|
+ __func__, mac->sap.SapDfsInfo.target_chan_freq,
|
|
|
mac->sap.SapDfsInfo.csaIERequired,
|
|
|
mac->sap.SapDfsInfo.new_ch_params.ch_width,
|
|
|
mac->sap.SapDfsInfo.new_ch_params.sec_ch_offset);
|
|
|
|
|
|
return sme_roam_csa_ie_request(MAC_HANDLE(mac),
|
|
|
sap_ctx->bssid,
|
|
|
- mac->sap.SapDfsInfo.target_channel,
|
|
|
+ mac->sap.SapDfsInfo.target_chan_freq,
|
|
|
mac->sap.SapDfsInfo.csaIERequired,
|
|
|
&mac->sap.SapDfsInfo.new_ch_params);
|
|
|
}
|
|
@@ -2163,7 +2148,7 @@ wlansap_set_dfs_preferred_channel_location(mac_handle_t mac_handle)
|
|
|
}
|
|
|
|
|
|
QDF_STATUS wlansap_set_dfs_target_chnl(mac_handle_t mac_handle,
|
|
|
- uint8_t target_channel)
|
|
|
+ uint32_t target_chan_freq)
|
|
|
{
|
|
|
struct mac_context *mac = NULL;
|
|
|
|
|
@@ -2174,11 +2159,11 @@ QDF_STATUS wlansap_set_dfs_target_chnl(mac_handle_t mac_handle,
|
|
|
"%s: Invalid mac_handle pointer", __func__);
|
|
|
return QDF_STATUS_E_FAULT;
|
|
|
}
|
|
|
- if (target_channel > 0) {
|
|
|
- mac->sap.SapDfsInfo.user_provided_target_channel =
|
|
|
- target_channel;
|
|
|
+ if (target_chan_freq > 0) {
|
|
|
+ mac->sap.SapDfsInfo.user_provided_target_chan_freq =
|
|
|
+ target_chan_freq;
|
|
|
} else {
|
|
|
- mac->sap.SapDfsInfo.user_provided_target_channel = 0;
|
|
|
+ mac->sap.SapDfsInfo.user_provided_target_chan_freq = 0;
|
|
|
}
|
|
|
|
|
|
return QDF_STATUS_SUCCESS;
|