|
@@ -3088,8 +3088,6 @@ QDF_STATUS wlan_hdd_get_channel_for_sap_restart(
|
|
|
struct hdd_ap_ctx *hdd_ap_ctx;
|
|
|
uint8_t intf_ch = 0, sap_ch = 0;
|
|
|
struct hdd_context *hdd_ctx;
|
|
|
- struct hdd_station_ctx *hdd_sta_ctx;
|
|
|
- struct hdd_adapter *sta_adapter;
|
|
|
uint8_t mcc_to_scc_switch = 0;
|
|
|
struct ch_params ch_params;
|
|
|
struct hdd_adapter *ap_adapter = wlan_hdd_get_adapter_from_vdev(
|
|
@@ -3107,13 +3105,6 @@ QDF_STATUS wlan_hdd_get_channel_for_sap_restart(
|
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
}
|
|
|
|
|
|
- /* TODO: need work for 3 port case with sta+sta */
|
|
|
- sta_adapter = hdd_get_adapter(hdd_ctx, QDF_STA_MODE);
|
|
|
- if (!sta_adapter) {
|
|
|
- hdd_err("sta_adapter is NULL");
|
|
|
- return QDF_STATUS_E_FAILURE;
|
|
|
- }
|
|
|
-
|
|
|
if (!ch_freq) {
|
|
|
hdd_err("Null parameters");
|
|
|
return QDF_STATUS_E_FAILURE;
|
|
@@ -3125,7 +3116,6 @@ QDF_STATUS wlan_hdd_get_channel_for_sap_restart(
|
|
|
}
|
|
|
|
|
|
hdd_ap_ctx = WLAN_HDD_GET_AP_CTX_PTR(ap_adapter);
|
|
|
- hdd_sta_ctx = WLAN_HDD_GET_STATION_CTX_PTR(sta_adapter);
|
|
|
|
|
|
mac_handle = hdd_ctx->mac_handle;
|
|
|
if (!mac_handle) {
|
|
@@ -3156,15 +3146,16 @@ QDF_STATUS wlan_hdd_get_channel_for_sap_restart(
|
|
|
*/
|
|
|
intf_ch = wlansap_check_cc_intf(hdd_ap_ctx->sap_context);
|
|
|
intf_ch_freq = wlan_reg_chan_to_freq(hdd_ctx->pdev, intf_ch);
|
|
|
- hdd_info("sap_vdev %d intf_ch: %d", vdev_id, intf_ch);
|
|
|
+ policy_mgr_get_chan_by_session_id(psoc, vdev_id, &sap_ch_freq);
|
|
|
+ hdd_info("sap_vdev %d intf_ch: %d, orig freq: %d",
|
|
|
+ vdev_id, intf_ch, sap_ch_freq);
|
|
|
if (QDF_MCC_TO_SCC_SWITCH_FORCE_PREFERRED_WITHOUT_DISCONNECTION !=
|
|
|
mcc_to_scc_switch) {
|
|
|
- policy_mgr_get_chan_by_session_id(psoc, vdev_id, &sap_ch_freq);
|
|
|
if (QDF_IS_STATUS_ERROR(
|
|
|
policy_mgr_valid_sap_conc_channel_check(
|
|
|
hdd_ctx->psoc, &intf_ch_freq, sap_ch_freq, vdev_id))) {
|
|
|
hdd_debug("can't move sap to chan(freq): %u",
|
|
|
- hdd_sta_ctx->conn_info.chan_freq);
|
|
|
+ intf_ch_freq);
|
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
}
|
|
|
sap_ch = wlan_freq_to_chan(sap_ch_freq);
|
|
@@ -3172,24 +3163,28 @@ QDF_STATUS wlan_hdd_get_channel_for_sap_restart(
|
|
|
}
|
|
|
|
|
|
sap_restart:
|
|
|
- if (intf_ch == 0) {
|
|
|
+ if (!intf_ch_freq) {
|
|
|
+ intf_ch_freq = wlansap_get_chan_band_restrict(hdd_ap_ctx->sap_context);
|
|
|
+ if (intf_ch_freq == sap_ch_freq)
|
|
|
+ intf_ch_freq = 0;
|
|
|
+ } else if (hdd_ap_ctx->sap_context)
|
|
|
+ hdd_ap_ctx->sap_context->csa_reason =
|
|
|
+ CSA_REASON_CONCURRENT_STA_CHANGED_CHANNEL;
|
|
|
+ if (!intf_ch_freq) {
|
|
|
hdd_debug("interface channel is 0");
|
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
}
|
|
|
|
|
|
- hdd_info("SAP restart orig chan freq: %d, new chan: %d",
|
|
|
- hdd_ap_ctx->sap_config.chan_freq, intf_ch);
|
|
|
+ hdd_info("SAP restart orig chan freq: %d, new freq: %d",
|
|
|
+ hdd_ap_ctx->sap_config.chan_freq, intf_ch_freq);
|
|
|
ch_params.ch_width = CH_WIDTH_MAX;
|
|
|
hdd_ap_ctx->bss_stop_reason = BSS_STOP_DUE_TO_MCC_SCC_SWITCH;
|
|
|
- if (hdd_ap_ctx->sap_context)
|
|
|
- hdd_ap_ctx->sap_context->csa_reason =
|
|
|
- CSA_REASON_CONCURRENT_STA_CHANGED_CHANNEL;
|
|
|
|
|
|
wlan_reg_set_channel_params_for_freq(hdd_ctx->pdev,
|
|
|
intf_ch_freq, 0,
|
|
|
&ch_params);
|
|
|
|
|
|
- *ch_freq = wlan_chan_to_freq(intf_ch);
|
|
|
+ *ch_freq = intf_ch_freq;
|
|
|
hdd_info("SAP channel change with CSA/ECSA");
|
|
|
hdd_sap_restart_chan_switch_cb(psoc, vdev_id, *ch_freq,
|
|
|
ch_params.ch_width, false);
|