|
@@ -1667,6 +1667,13 @@ QDF_STATUS hdd_hostapd_sap_event_cb(tpSap_Event pSapEvent,
|
|
|
adapter->session_id =
|
|
|
pSapEvent->sapevt.sapStartBssCompleteEvent.sessionId;
|
|
|
|
|
|
+ adapter->session.ap.sap_config.channel =
|
|
|
+ pSapEvent->sapevt.sapStartBssCompleteEvent.
|
|
|
+ operatingChannel;
|
|
|
+
|
|
|
+ adapter->session.ap.sap_config.ch_params.ch_width =
|
|
|
+ pSapEvent->sapevt.sapStartBssCompleteEvent.ch_width;
|
|
|
+
|
|
|
hostapd_state->qdf_status =
|
|
|
pSapEvent->sapevt.sapStartBssCompleteEvent.status;
|
|
|
|
|
@@ -2866,8 +2873,7 @@ QDF_STATUS wlan_hdd_get_channel_for_sap_restart(
|
|
|
hdd_info("SAP restart orig chan: %d, new chan: %d",
|
|
|
hdd_ap_ctx->sap_config.channel, intf_ch);
|
|
|
hdd_ap_ctx->sap_config.channel = intf_ch;
|
|
|
- hdd_ap_ctx->sap_config.ch_params.ch_width =
|
|
|
- hdd_ap_ctx->sap_config.ch_width_orig;
|
|
|
+ hdd_ap_ctx->sap_config.ch_params.ch_width = CH_WIDTH_MAX;
|
|
|
hdd_ap_ctx->bss_stop_reason = BSS_STOP_DUE_TO_MCC_SCC_SWITCH;
|
|
|
|
|
|
wlan_reg_set_channel_params(hdd_ctx->hdd_pdev,
|
|
@@ -7808,6 +7814,12 @@ int wlan_hdd_cfg80211_start_bss(struct hdd_adapter *adapter,
|
|
|
if (!cds_is_sub_20_mhz_enabled())
|
|
|
wlan_hdd_set_sap_hwmode(adapter);
|
|
|
|
|
|
+ if (IS_24G_CH(pConfig->channel) &&
|
|
|
+ hdd_ctx->config->enableVhtFor24GHzBand &&
|
|
|
+ (pConfig->SapHw_mode == eCSR_DOT11_MODE_11n ||
|
|
|
+ pConfig->SapHw_mode == eCSR_DOT11_MODE_11n_ONLY))
|
|
|
+ pConfig->SapHw_mode = eCSR_DOT11_MODE_11ac;
|
|
|
+
|
|
|
if (((adapter->device_mode == QDF_SAP_MODE) &&
|
|
|
(hdd_ctx->config->sap_force_11n_for_11ac)) ||
|
|
|
((adapter->device_mode == QDF_P2P_GO_MODE) &&
|