|
@@ -3170,6 +3170,7 @@ int hdd_softap_set_channel_change(struct net_device *dev, int target_chan_freq,
|
|
|
struct hdd_station_ctx *sta_ctx;
|
|
|
struct sap_context *sap_ctx;
|
|
|
uint8_t conc_rule1 = 0;
|
|
|
+ uint8_t sta_sap_scc_on_dfs_chnl;
|
|
|
bool is_p2p_go_session = false;
|
|
|
struct wlan_objmgr_vdev *vdev;
|
|
|
bool strict;
|
|
@@ -3224,9 +3225,16 @@ int hdd_softap_set_channel_change(struct net_device *dev, int target_chan_freq,
|
|
|
NULL);
|
|
|
|
|
|
* For non-dbs HW, don't allow Channel switch on DFS channel if STA is
|
|
|
- * not connected.
|
|
|
+ * not connected and sta_sap_scc_on_dfs_chnl is enabled.
|
|
|
*/
|
|
|
+ status = policy_mgr_get_sta_sap_scc_on_dfs_chnl(
|
|
|
+ hdd_ctx->psoc, &sta_sap_scc_on_dfs_chnl);
|
|
|
+ if (QDF_STATUS_SUCCESS != status) {
|
|
|
+ return status;
|
|
|
+ }
|
|
|
+
|
|
|
if (!sta_cnt && !policy_mgr_is_hw_dbs_capable(hdd_ctx->psoc) &&
|
|
|
+ !!sta_sap_scc_on_dfs_chnl &&
|
|
|
(wlan_reg_is_dfs_for_freq(hdd_ctx->pdev, target_chan_freq) ||
|
|
|
(wlan_reg_is_5ghz_ch_freq(target_chan_freq) &&
|
|
|
target_bw == CH_WIDTH_160MHZ))) {
|