Browse Source

qcacld-3.0: Don't check if a channel is safe if it's coex fixed chan SAP

Currently, SAP start is aborted if the channel is marked as unsafe
due to COEX, irrespective of it's an ACS/fixed channel SAP.
There is a requirement to allow the SAP in a fixed channel even
if the channel is marked as unsafe. Firmware advertises
WMI_COEX_FIX_CHANNEL_CAPABILITIES in such targets.
Check for this capability and allow the SAP in fixed channel even
it it's unsafe.

Change-Id: Ie3947058d8854823a718b833ec788c5c8a14b903
CRs-Fixed: 3375254
Srinivas Dasari 2 years ago
parent
commit
cdf374387b
1 changed files with 10 additions and 1 deletions
  1. 10 1
      core/sap/src/sap_fsm.c

+ 10 - 1
core/sap/src/sap_fsm.c

@@ -62,6 +62,7 @@
 #include "wlan_vdev_mgr_utils_api.h"
 #include "wlan_pre_cac_api.h"
 #include <wlan_cmn_ieee80211.h>
+#include <target_if.h>
 
 /*----------------------------------------------------------------------------
  * Preprocessor Definitions and Constants
@@ -1179,7 +1180,15 @@ validation_done:
 	sap_debug("for configured channel, Ch_freq = %d",
 		  sap_context->chan_freq);
 
-	if (!policy_mgr_is_sap_freq_allowed(mac_ctx->psoc,
+	/*
+	 * Don't check if the frequency is allowed or not if SAP is started
+	 * in fixed channel and coex fixed channel SAP is supported.
+	 */
+
+	if ((sap_context->acs_cfg->acs_mode ||
+	     !target_psoc_get_sap_coex_fixed_chan_cap(
+			wlan_psoc_get_tgt_if_handle(mac_ctx->psoc))) &&
+	    !policy_mgr_is_sap_freq_allowed(mac_ctx->psoc,
 					    sap_context->chan_freq)) {
 		sap_warn("Abort SAP start due to unsafe channel");
 		return QDF_STATUS_E_ABORTED;