|
@@ -3293,10 +3293,8 @@ QDF_STATUS wlan_hdd_get_channel_for_sap_restart(
|
|
|
vdev_id, intf_ch_freq, sap_ch_freq);
|
|
|
|
|
|
temp_ch_freq = intf_ch_freq ? intf_ch_freq : sap_ch_freq;
|
|
|
- ch_params.ch_width = wlansap_get_csa_chanwidth_from_phymode(
|
|
|
- sap_context, temp_ch_freq);
|
|
|
- wlan_reg_set_channel_params_for_freq(hdd_ctx->pdev, temp_ch_freq, 0,
|
|
|
- &ch_params);
|
|
|
+ wlansap_get_csa_chanwidth_from_phymode(sap_context, temp_ch_freq,
|
|
|
+ &ch_params);
|
|
|
if (QDF_MCC_TO_SCC_SWITCH_FORCE_PREFERRED_WITHOUT_DISCONNECTION !=
|
|
|
mcc_to_scc_switch) {
|
|
|
if (QDF_IS_STATUS_ERROR(
|
|
@@ -3319,18 +3317,14 @@ sap_restart:
|
|
|
} else {
|
|
|
sap_context->csa_reason = csa_reason;
|
|
|
}
|
|
|
- hdd_debug("SAP restart orig chan freq: %d, new freq: %d",
|
|
|
- hdd_ap_ctx->sap_config.chan_freq, intf_ch_freq);
|
|
|
- ch_params.ch_width = wlan_sap_get_concurrent_bw(hdd_ctx->pdev,
|
|
|
- hdd_ctx->psoc,
|
|
|
- intf_ch_freq,
|
|
|
- ch_params.ch_width);
|
|
|
+ if (ch_params.ch_width == CH_WIDTH_MAX)
|
|
|
+ wlansap_get_csa_chanwidth_from_phymode(
|
|
|
+ sap_context, intf_ch_freq,
|
|
|
+ &ch_params);
|
|
|
+ hdd_debug("SAP restart orig chan freq: %d, new freq: %d bw %d",
|
|
|
+ hdd_ap_ctx->sap_config.chan_freq, intf_ch_freq,
|
|
|
+ ch_params.ch_width);
|
|
|
hdd_ap_ctx->bss_stop_reason = BSS_STOP_DUE_TO_MCC_SCC_SWITCH;
|
|
|
-
|
|
|
- wlan_reg_set_channel_params_for_freq(hdd_ctx->pdev,
|
|
|
- intf_ch_freq, 0,
|
|
|
- &ch_params);
|
|
|
-
|
|
|
*ch_freq = intf_ch_freq;
|
|
|
hdd_debug("SAP channel change with CSA/ECSA");
|
|
|
hdd_sap_restart_chan_switch_cb(psoc, vdev_id, *ch_freq,
|
|
@@ -3340,6 +3334,41 @@ sap_restart:
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
}
|
|
|
|
|
|
+QDF_STATUS
|
|
|
+wlan_get_ap_prefer_conc_ch_params(
|
|
|
+ struct wlan_objmgr_psoc *psoc,
|
|
|
+ uint8_t vdev_id, uint32_t chan_freq,
|
|
|
+ struct ch_params *ch_params)
|
|
|
+{
|
|
|
+ struct hdd_ap_ctx *hdd_ap_ctx;
|
|
|
+ struct sap_context *sap_context;
|
|
|
+ struct hdd_adapter *ap_adapter = wlan_hdd_get_adapter_from_vdev(
|
|
|
+ psoc, vdev_id);
|
|
|
+
|
|
|
+ if (!ap_adapter || (ap_adapter->device_mode != QDF_SAP_MODE &&
|
|
|
+ ap_adapter->device_mode != QDF_P2P_GO_MODE)) {
|
|
|
+ hdd_err("invalid adapter");
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
+ }
|
|
|
+ hdd_ap_ctx = WLAN_HDD_GET_AP_CTX_PTR(ap_adapter);
|
|
|
+ sap_context = hdd_ap_ctx->sap_context;
|
|
|
+ if (!sap_context) {
|
|
|
+ hdd_err("sap_context is null");
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
+ }
|
|
|
+ if (QDF_IS_STATUS_ERROR(wlansap_context_get(sap_context))) {
|
|
|
+ hdd_err("sap_context is invalid");
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
+ }
|
|
|
+
|
|
|
+ wlansap_get_csa_chanwidth_from_phymode(sap_context,
|
|
|
+ chan_freq,
|
|
|
+ ch_params);
|
|
|
+ wlansap_context_put(sap_context);
|
|
|
+
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
+}
|
|
|
+
|
|
|
#if defined(CONFIG_BAND_6GHZ) && defined(WLAN_FEATURE_11AX)
|
|
|
uint32_t hdd_get_ap_6ghz_capable(struct wlan_objmgr_psoc *psoc, uint8_t vdev_id)
|
|
|
{
|
|
@@ -6508,10 +6537,13 @@ static int __wlan_hdd_cfg80211_start_ap(struct wiphy *wiphy,
|
|
|
if (0 != status)
|
|
|
return status;
|
|
|
|
|
|
- hdd_nofl_info("%s(vdevid-%d): START AP: Device mode %s(%d) sub20 %d",
|
|
|
+ hdd_nofl_info("%s(vdevid-%d): START AP: mode %s(%d) %d bw %d sub20 %d",
|
|
|
dev->name, adapter->vdev_id,
|
|
|
qdf_opmode_str(adapter->device_mode),
|
|
|
- adapter->device_mode, cds_is_sub_20_mhz_enabled());
|
|
|
+ adapter->device_mode,
|
|
|
+ params->chandef.chan->center_freq,
|
|
|
+ params->chandef.width,
|
|
|
+ cds_is_sub_20_mhz_enabled());
|
|
|
if (policy_mgr_is_hw_mode_change_in_progress(hdd_ctx->psoc)) {
|
|
|
status = policy_mgr_wait_for_connection_update(
|
|
|
hdd_ctx->psoc);
|