Browse Source

qcacld-3.0: Fix start on DFS failure for auto GO

From Auto P2P GO DFS requirement, if GO force SCC strict
enable and sta_sap_scc_on_dfs_chan ini enabled, allow
Autonomous GO starts on DFS.
Fix it by allow GO on DFS such configuration.

Change-Id: Ia4c5b1c7889f5c3115e4e05ac7f051673bbb2b81
CRs-Fixed: 3228456
Liangwei Dong 2 years ago
parent
commit
5205b3d19a
1 changed files with 3 additions and 1 deletions
  1. 3 1
      components/cmn_services/policy_mgr/src/wlan_policy_mgr_action.c

+ 3 - 1
components/cmn_services/policy_mgr/src/wlan_policy_mgr_action.c

@@ -2560,7 +2560,9 @@ policy_mgr_valid_sap_conc_channel_check(struct wlan_objmgr_psoc *psoc,
 				     ch_freq);
 	} else if (con_mode == PM_P2P_GO_MODE &&
 		   wlan_reg_is_passive_or_disable_for_freq(pm_ctx->pdev,
-							   ch_freq)) {
+							   ch_freq) &&
+		   !(policy_mgr_is_go_scc_strict(psoc) &&
+		     (!is_sta_sap_scc || sta_sap_scc_on_dfs_chan))) {
 		find_alternate = true;
 		policymgr_nofl_debug("Go not capable on dfs/disabled con ch_freq %d",
 				     ch_freq);