|
@@ -3250,8 +3250,8 @@ static QDF_STATUS sap_get_freq_list(struct sap_context *sap_ctx,
|
|
|
uint32_t *list;
|
|
|
uint8_t ch_count;
|
|
|
uint8_t dfs_master_enable;
|
|
|
- uint8_t start_ch_num, band_start_ch;
|
|
|
- uint8_t end_ch_num, band_end_ch;
|
|
|
+ uint32_t start_ch_freq, band_start_ch;
|
|
|
+ uint32_t end_ch_freq, band_end_ch;
|
|
|
uint32_t en_lte_coex;
|
|
|
struct mac_context *mac_ctx;
|
|
|
uint16_t ch_width;
|
|
@@ -3277,21 +3277,21 @@ static QDF_STATUS sap_get_freq_list(struct sap_context *sap_ctx,
|
|
|
if (sap_ctx->dfs_mode == ACS_DFS_MODE_DISABLE)
|
|
|
dfs_master_enable = false;
|
|
|
|
|
|
- start_ch_num = sap_ctx->acs_cfg->start_ch;
|
|
|
- end_ch_num = sap_ctx->acs_cfg->end_ch;
|
|
|
+ start_ch_freq = sap_ctx->acs_cfg->start_ch_freq;
|
|
|
+ end_ch_freq = sap_ctx->acs_cfg->end_ch_freq;
|
|
|
ch_width = sap_ctx->acs_cfg->ch_width;
|
|
|
QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_INFO,
|
|
|
FL("startChannel %d, EndChannel %d, ch_width %d, HW:%d"),
|
|
|
- start_ch_num, end_ch_num, ch_width,
|
|
|
+ start_ch_freq, end_ch_freq, ch_width,
|
|
|
sap_ctx->acs_cfg->hw_mode);
|
|
|
|
|
|
wlansap_extend_to_acs_range(MAC_HANDLE(mac_ctx),
|
|
|
- &start_ch_num, &end_ch_num,
|
|
|
+ &start_ch_freq, &end_ch_freq,
|
|
|
&band_start_ch, &band_end_ch);
|
|
|
|
|
|
QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_INFO,
|
|
|
FL("expanded startChannel %d,EndChannel %d"),
|
|
|
- start_ch_num, end_ch_num);
|
|
|
+ start_ch_freq, end_ch_freq);
|
|
|
|
|
|
QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_INFO,
|
|
|
FL("band_start_ch %d, band_end_ch %d"),
|
|
@@ -3318,16 +3318,15 @@ static QDF_STATUS sap_get_freq_list(struct sap_context *sap_ctx,
|
|
|
ch_count = 0;
|
|
|
for (loop_count = band_start_ch; loop_count <= band_end_ch;
|
|
|
loop_count++) {
|
|
|
- chan_freq = wlan_reg_chan_to_freq(mac_ctx->pdev,
|
|
|
- WLAN_REG_CH_NUM(loop_count));
|
|
|
+ chan_freq = WLAN_REG_CH_TO_FREQ(loop_count);
|
|
|
|
|
|
/* go to next channel if rf_channel is out of range */
|
|
|
- if ((start_ch_num > WLAN_REG_CH_NUM(loop_count)) ||
|
|
|
- (end_ch_num < WLAN_REG_CH_NUM(loop_count)))
|
|
|
+ if (start_ch_freq > WLAN_REG_CH_TO_FREQ(loop_count) ||
|
|
|
+ end_ch_freq < WLAN_REG_CH_TO_FREQ(loop_count))
|
|
|
continue;
|
|
|
/* Skip channel 12, and 13 for IOT issues for now */
|
|
|
- if (WLAN_REG_CH_NUM(loop_count) == 12 ||
|
|
|
- WLAN_REG_CH_NUM(loop_count) == 13)
|
|
|
+ if (loop_count == CHAN_ENUM_2467 ||
|
|
|
+ loop_count == CHAN_ENUM_2472)
|
|
|
continue;
|
|
|
/*
|
|
|
* go to next channel if none of these condition pass
|
|
@@ -3335,35 +3334,38 @@ static QDF_STATUS sap_get_freq_list(struct sap_context *sap_ctx,
|
|
|
* - DFS scan disable but chan in CHANNEL_STATE_ENABLE
|
|
|
*/
|
|
|
if (!(((true == mac_ctx->scan.fEnableDFSChnlScan) &&
|
|
|
- wlan_reg_get_channel_state(mac_ctx->pdev,
|
|
|
- WLAN_REG_CH_NUM(loop_count)))
|
|
|
+ wlan_reg_get_channel_state_for_freq(
|
|
|
+ mac_ctx->pdev, WLAN_REG_CH_TO_FREQ(loop_count)))
|
|
|
||
|
|
|
((false == mac_ctx->scan.fEnableDFSChnlScan) &&
|
|
|
(CHANNEL_STATE_ENABLE ==
|
|
|
- wlan_reg_get_channel_state(mac_ctx->pdev,
|
|
|
- WLAN_REG_CH_NUM(loop_count)))
|
|
|
+ wlan_reg_get_channel_state_for_freq(
|
|
|
+ mac_ctx->pdev, WLAN_REG_CH_TO_FREQ(loop_count)))
|
|
|
)))
|
|
|
continue;
|
|
|
|
|
|
/* check if the channel is in NOL blacklist */
|
|
|
- if (sap_dfs_is_channel_in_nol_list(sap_ctx,
|
|
|
- WLAN_REG_CH_NUM(loop_count),
|
|
|
- PHY_SINGLE_CHANNEL_CENTERED)) {
|
|
|
- sap_debug("Ch %d in NOL list",
|
|
|
- WLAN_REG_CH_NUM(loop_count));
|
|
|
- continue;
|
|
|
+ if (!WLAN_REG_IS_6GHZ_CHAN_FREQ(WLAN_REG_CH_TO_FREQ(
|
|
|
+ loop_count))) {
|
|
|
+ if (sap_dfs_is_channel_in_nol_list(
|
|
|
+ sap_ctx,
|
|
|
+ WLAN_REG_CH_NUM(loop_count),
|
|
|
+ PHY_SINGLE_CHANNEL_CENTERED)) {
|
|
|
+ sap_debug("Ch %d in NOL list",
|
|
|
+ WLAN_REG_CH_NUM(loop_count));
|
|
|
+ continue;
|
|
|
+ }
|
|
|
}
|
|
|
-
|
|
|
/* Skip DSRC channels */
|
|
|
- if (wlan_reg_is_dsrc_chan(mac_ctx->pdev,
|
|
|
- WLAN_REG_CH_NUM(loop_count)))
|
|
|
+ if (wlan_reg_is_dsrc_freq(WLAN_REG_CH_TO_FREQ(loop_count)))
|
|
|
continue;
|
|
|
|
|
|
/*
|
|
|
* Skip the channels which are not in ACS config from user
|
|
|
* space
|
|
|
*/
|
|
|
- if (!wlansap_is_channel_present_in_acs_list(chan_freq,
|
|
|
+ if (!wlansap_is_channel_present_in_acs_list(
|
|
|
+ chan_freq,
|
|
|
sap_ctx->acs_cfg->freq_list,
|
|
|
sap_ctx->acs_cfg->ch_list_count))
|
|
|
continue;
|
|
@@ -3371,10 +3373,11 @@ static QDF_STATUS sap_get_freq_list(struct sap_context *sap_ctx,
|
|
|
* As it can result in SAP starting on DFS channel
|
|
|
* resulting MCC on DFS channel
|
|
|
*/
|
|
|
- if (wlan_reg_is_dfs_ch(mac_ctx->pdev,
|
|
|
- WLAN_REG_CH_NUM(loop_count)) &&
|
|
|
+ if (wlan_reg_is_dfs_for_freq(
|
|
|
+ mac_ctx->pdev,
|
|
|
+ WLAN_REG_CH_TO_FREQ(loop_count)) &&
|
|
|
(policy_mgr_disallow_mcc(mac_ctx->psoc,
|
|
|
- WLAN_REG_CH_TO_FREQ(loop_count)) ||
|
|
|
+ WLAN_REG_CH_TO_FREQ(loop_count)) ||
|
|
|
!dfs_master_enable))
|
|
|
continue;
|
|
|
|
|
@@ -3383,8 +3386,9 @@ static QDF_STATUS sap_get_freq_list(struct sap_context *sap_ctx,
|
|
|
*/
|
|
|
if (!wlan_reg_is_etsi13_srd_chan_allowed_master_mode(mac_ctx->
|
|
|
pdev) &&
|
|
|
- wlan_reg_is_etsi13_srd_chan(mac_ctx->pdev,
|
|
|
- WLAN_REG_CH_NUM(loop_count)))
|
|
|
+ wlan_reg_is_etsi13_srd_chan_for_freq(
|
|
|
+ mac_ctx->pdev,
|
|
|
+ WLAN_REG_CH_TO_FREQ(loop_count)))
|
|
|
continue;
|
|
|
|
|
|
/* Check if the freq is present in range list */
|
|
@@ -3420,29 +3424,32 @@ static QDF_STATUS sap_get_freq_list(struct sap_context *sap_ctx,
|
|
|
#ifdef FEATURE_WLAN_AP_AP_ACS_OPTIMIZE
|
|
|
if ((sap_ctx->acs_cfg->skip_scan_status ==
|
|
|
eSAP_DO_PAR_ACS_SCAN)) {
|
|
|
- uint8_t ch;
|
|
|
-
|
|
|
- ch = WLAN_REG_CH_NUM(loop_count);
|
|
|
- if ((ch >= sap_ctx->acs_cfg->skip_scan_range1_stch &&
|
|
|
- ch <= sap_ctx->acs_cfg->skip_scan_range1_endch) ||
|
|
|
- (ch >= sap_ctx->acs_cfg->skip_scan_range2_stch &&
|
|
|
- ch <= sap_ctx->acs_cfg->skip_scan_range2_endch)) {
|
|
|
- list[ch_count] = wlan_reg_chan_to_freq(mac_ctx->pdev,
|
|
|
- WLAN_REG_CH_NUM(loop_count));
|
|
|
- ch_count++;
|
|
|
- QDF_TRACE(QDF_MODULE_ID_SAP,
|
|
|
- QDF_TRACE_LEVEL_INFO,
|
|
|
- FL("%d %d added to ACS ch range"),
|
|
|
- ch_count, ch);
|
|
|
- } else {
|
|
|
- QDF_TRACE(QDF_MODULE_ID_SAP,
|
|
|
- QDF_TRACE_LEVEL_INFO_HIGH,
|
|
|
- FL("%d %d skipped from ACS ch range"),
|
|
|
- ch_count, ch);
|
|
|
+ uint32_t ch_freq;
|
|
|
+
|
|
|
+ ch_freq = WLAN_REG_CH_TO_FREQ(loop_count);
|
|
|
+ if ((ch_freq >=
|
|
|
+ sap_ctx->acs_cfg->skip_scan_range1_stch &&
|
|
|
+ ch_freq <=
|
|
|
+ sap_ctx->acs_cfg->skip_scan_range1_endch) ||
|
|
|
+ (ch_freq >=
|
|
|
+ sap_ctx->acs_cfg->skip_scan_range2_stch &&
|
|
|
+ ch_freq <=
|
|
|
+ sap_ctx->acs_cfg->skip_scan_range2_endch)) {
|
|
|
+ list[ch_count] =
|
|
|
+ WLAN_REG_CH_TO_FREQ(loop_count);
|
|
|
+ ch_count++;
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_SAP,
|
|
|
+ QDF_TRACE_LEVEL_INFO,
|
|
|
+ FL("%d %d added to ACS ch range"),
|
|
|
+ ch_count, ch_freq);
|
|
|
+ } else {
|
|
|
+ QDF_TRACE(QDF_MODULE_ID_SAP,
|
|
|
+ QDF_TRACE_LEVEL_INFO_HIGH,
|
|
|
+ FL("%d %d skipped from ACS ch range"),
|
|
|
+ ch_count, ch_freq);
|
|
|
}
|
|
|
} else {
|
|
|
- list[ch_count] = wlan_reg_chan_to_freq(mac_ctx->pdev,
|
|
|
- WLAN_REG_CH_NUM(loop_count));
|
|
|
+ list[ch_count] = WLAN_REG_CH_TO_FREQ(loop_count);
|
|
|
ch_count++;
|
|
|
QDF_TRACE(QDF_MODULE_ID_SAP,
|
|
|
QDF_TRACE_LEVEL_INFO,
|
|
@@ -3450,8 +3457,7 @@ static QDF_STATUS sap_get_freq_list(struct sap_context *sap_ctx,
|
|
|
ch_count);
|
|
|
}
|
|
|
#else
|
|
|
- list[ch_count] = wlan_reg_chan_to_freq(mac_ctx->pdev,
|
|
|
- WLAN_REG_CH_NUM(loop_count));
|
|
|
+ list[ch_count] = WLAN_REG_CH_TO_FREQ(loop_count);
|
|
|
ch_count++;
|
|
|
#endif
|
|
|
}
|
|
@@ -3462,7 +3468,8 @@ static QDF_STATUS sap_get_freq_list(struct sap_context *sap_ctx,
|
|
|
* LTE COEX: channel range outside the restricted 2.4GHz
|
|
|
* band limits
|
|
|
*/
|
|
|
- if (en_lte_coex && (start_ch_num > band_end_ch))
|
|
|
+ if (en_lte_coex &&
|
|
|
+ start_ch_freq > WLAN_REG_CH_TO_FREQ(band_end_ch))
|
|
|
QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_FATAL,
|
|
|
FL("SAP can't be started as due to LTE COEX"));
|
|
|
}
|