qcacld-3.0: Fix an ACS hw mode mapping discrepancy

When ACS is started, acs_cfg.hw_mode in AP context will
be set after mapping from values defined in enum
qca_wlan_vendor_acs_hw_mode to values defined in enum
eCsrPhyMode, but when ACS scan fails due to some reason,
such as scan timeout, the code in function
sap_select_default_oper_chan is still using values
defined in enum qca_wlan_vendor_acs_hw_mode to setup
the default channel.

Change the code in function sap_select_default_oper_chan
to use the values defined in enum eCsrPhyMode when
setting up the default channel.

Change-Id: Ic0d43c43bf9b9a9a36c290d2754c30ebb40bb0e3
CRs-Fixed: 2163658
This commit is contained in:
wadesong
2017-12-26 13:29:29 +08:00
committed by snandini
parent b2503551ac
commit c46581bc1c
3 changed files with 30 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2012-2017 The Linux Foundation. All rights reserved. * Copyright (c) 2012-2018 The Linux Foundation. All rights reserved.
* *
* Previously licensed under the ISC license by Qualcomm Atheros, Inc. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
* *
@@ -312,7 +312,7 @@ QDF_STATUS wlansap_pre_start_bss_acs_scan_callback(tHalHandle hal_handle,
scan_status); scan_status);
sap_ctx->channel = sap_ctx->channel =
sap_select_default_oper_chan(hal_handle, sap_select_default_oper_chan(hal_handle,
sap_ctx->acs_cfg->hw_mode); sap_ctx->acs_cfg);
sap_ctx->sap_state = eSAP_ACS_CHANNEL_SELECTED; sap_ctx->sap_state = eSAP_ACS_CHANNEL_SELECTED;
sap_ctx->sap_status = eSAP_STATUS_SUCCESS; sap_ctx->sap_status = eSAP_STATUS_SUCCESS;
goto close_session; goto close_session;
@@ -378,7 +378,7 @@ QDF_STATUS wlansap_pre_start_bss_acs_scan_callback(tHalHandle hal_handle,
#else #else
sap_ctx->channel = sap_ctx->channel =
sap_select_default_oper_chan(hal_handle, sap_select_default_oper_chan(hal_handle,
sap_ctx->acs_cfg->hw_mode); sap_ctx->acs_cfg);
} else { } else {
#endif #endif
/* Valid Channel Found from scan results. */ /* Valid Channel Found from scan results. */

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2012-2017 The Linux Foundation. All rights reserved. * Copyright (c) 2012-2018 The Linux Foundation. All rights reserved.
* *
* Previously licensed under the ISC license by Qualcomm Atheros, Inc. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
* *
@@ -1625,17 +1625,35 @@ sap_dfs_is_channel_in_nol_list(struct sap_context *sap_context,
/** /**
* sap_select_default_oper_chan() - Select operating channel based on acs hwmode * sap_select_default_oper_chan() - Select operating channel based on acs hwmode
* @hal: pointer to HAL * @hal: pointer to HAL
* @acs_hwmode: HW mode of ACS * @acs_cfg: ACS config info
* *
* Return: selected operating channel * Return: selected operating channel
*/ */
uint8_t sap_select_default_oper_chan(tHalHandle hal, uint32_t acs_hwmode) uint8_t sap_select_default_oper_chan(tHalHandle hal,
struct sap_acs_cfg *acs_cfg)
{ {
uint8_t channel; uint8_t channel;
if ((acs_hwmode == QCA_ACS_MODE_IEEE80211A) || if (NULL == acs_cfg) {
(acs_hwmode == QCA_ACS_MODE_IEEE80211AD)) QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_ERROR,
"ACS config invalid!");
QDF_BUG(0);
return 0;
}
if (acs_cfg->hw_mode == eCSR_DOT11_MODE_11a)
channel = SAP_DEFAULT_5GHZ_CHANNEL; channel = SAP_DEFAULT_5GHZ_CHANNEL;
else if ((acs_cfg->hw_mode == eCSR_DOT11_MODE_11n) ||
(acs_cfg->hw_mode == eCSR_DOT11_MODE_11n_ONLY) ||
(acs_cfg->hw_mode == eCSR_DOT11_MODE_11ac) ||
(acs_cfg->hw_mode == eCSR_DOT11_MODE_11ac_ONLY) ||
(acs_cfg->hw_mode == eCSR_DOT11_MODE_11ax) ||
(acs_cfg->hw_mode == eCSR_DOT11_MODE_11ax_ONLY)) {
if (WLAN_REG_IS_5GHZ_CH(acs_cfg->start_ch))
channel = SAP_DEFAULT_5GHZ_CHANNEL;
else
channel = SAP_DEFAULT_24GHZ_CHANNEL;
}
else else
channel = SAP_DEFAULT_24GHZ_CHANNEL; channel = SAP_DEFAULT_24GHZ_CHANNEL;
@@ -1870,7 +1888,7 @@ QDF_STATUS sap_goto_channel_sel(struct sap_context *sap_context,
sap_context->channel); sap_context->channel);
sap_context->channel = sap_context->channel =
sap_select_default_oper_chan(h_hal, sap_select_default_oper_chan(h_hal,
sap_context->acs_cfg->hw_mode); sap_context->acs_cfg);
#ifdef SOFTAP_CHANNEL_RANGE #ifdef SOFTAP_CHANNEL_RANGE
if (sap_context->channelList != NULL) { if (sap_context->channelList != NULL) {

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2012-2017 The Linux Foundation. All rights reserved. * Copyright (c) 2012-2018 The Linux Foundation. All rights reserved.
* *
* Previously licensed under the ISC license by Qualcomm Atheros, Inc. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
* *
@@ -475,5 +475,6 @@ uint8_t sap_indicate_radar(struct sap_context *sap_ctx);
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif
uint8_t sap_select_default_oper_chan(tHalHandle hal, uint32_t acs_hwmode); uint8_t sap_select_default_oper_chan(tHalHandle hal,
struct sap_acs_cfg *acs_cfg);
#endif #endif