Pārlūkot izejas kodu

qcacld-3.0: Restart LL_LT_SAP if any concurrent iface comes up in SCC

If LL_LT_SAP start is in progress and at the same time if any
concurrent interface comes up in SCC with LL_LT_SAP, then add
changes to check presence of concurrent interface once LL_LT_SAP
start completes.

Change-Id: Ia8b72549ac98a7e60a1b55e4f7120b24596088c4
CRs-Fixed: 3647186
Ashish Kumar Dhanotiya 1 gadu atpakaļ
vecāks
revīzija
0b9b356633

+ 5 - 3
components/cmn_services/policy_mgr/inc/wlan_policy_mgr_ll_sap.h

@@ -49,13 +49,13 @@ bool __policy_mgr_is_ll_lt_sap_restart_required(struct wlan_objmgr_psoc *psoc,
 
 /**
  * policy_mgr_ll_lt_sap_restart_concurrent_sap() - Check and restart
- * concurrent SAP on ll_lt_sap enable
+ * concurrent SAP or ll_lt_sap
  * @psoc: PSOC object
  * @is_ll_lt_sap_enabled: Indicates if ll_lt_sap is getting enabled or
  * getting disabled
  *
- * This API checks and restarts concurrent SAP when ll_lt_sap comes up or
- * goes down.
+ * This API checks and restarts concurrent SAP or ll_lt_sap when ll_lt_sap comes
+ * up or goes down.
  * Concurrent SAP and ll_lt_sap should always be on different MAC.
  * restart the concurrent SAP in below scenario:
  * If ll_lt_sap is coming up and HW is not sbs capable and concurrent SAP is
@@ -63,6 +63,8 @@ bool __policy_mgr_is_ll_lt_sap_restart_required(struct wlan_objmgr_psoc *psoc,
  * ll_lt_sap on 5 GHz
  * If ll_lt_sap is going down and if concurrent SAP is on 2.4 GHz then try to
  * restart ll_lt_sap on its original user configured frequency
+ * If ll_lt_sap interface has come up and in parallel if some other interface
+ * comes up on the ll_lt_sap frequency, then ll_lt_sap needs to be restarted.
  *
  * Return: None
  */

+ 49 - 36
components/cmn_services/policy_mgr/src/wlan_policy_mgr_ll_sap.c

@@ -23,6 +23,7 @@
 #include "wlan_policy_mgr_api.h"
 #include "wlan_policy_mgr_i.h"
 #include "wlan_cmn.h"
+#include "wlan_ll_sap_api.h"
 
 uint8_t wlan_policy_mgr_get_ll_lt_sap_vdev_id(struct wlan_objmgr_psoc *psoc)
 {
@@ -168,6 +169,7 @@ void policy_mgr_ll_lt_sap_restart_concurrent_sap(struct wlan_objmgr_psoc *psoc,
 	qdf_freq_t restart_freq;
 	struct ch_params ch_params = {0};
 	uint8_t i;
+	enum sap_csa_reason_code csa_reason;
 
 	pm_ctx = policy_mgr_get_context(psoc);
 	if (!pm_ctx) {
@@ -175,17 +177,14 @@ void policy_mgr_ll_lt_sap_restart_concurrent_sap(struct wlan_objmgr_psoc *psoc,
 		return;
 	}
 
-	/*
-	 * For SBS case, no need to restart concurrent SAP as LL_LT_SAP and
-	 * concurrent SAP can be on different MACs
-	 */
-	if (policy_mgr_is_hw_sbs_capable(psoc))
-		return;
+	qdf_mem_zero(&sap_info, sizeof(sap_info));
 
 	qdf_mutex_acquire(&pm_ctx->qdf_conc_list_lock);
 	for (i = 0; i < MAX_NUMBER_OF_CONC_CONNECTIONS; i++) {
-		if ((PM_SAP_MODE == pm_conc_connection_list[i].mode) &&
-		    pm_conc_connection_list[i].in_use) {
+		if (!pm_conc_connection_list[i].in_use)
+			continue;
+		if (PM_SAP_MODE == pm_conc_connection_list[i].mode ||
+		    PM_LL_LT_SAP_MODE == pm_conc_connection_list[i].mode) {
 			qdf_mem_copy(&sap_info, &pm_conc_connection_list[i],
 				     sizeof(sap_info));
 			break;
@@ -193,25 +192,48 @@ void policy_mgr_ll_lt_sap_restart_concurrent_sap(struct wlan_objmgr_psoc *psoc,
 	}
 	qdf_mutex_release(&pm_ctx->qdf_conc_list_lock);
 
-	/* No concurrent SAP present, return */
+	/* No concurrent SAP or ll_lt_sap present, return */
 	if (!sap_info.in_use)
 		return;
 
-	/*
-	 * If concurrent SAP is 2.4 GHz and ll_lt_sap is getting enabled then
-	 * there is no need to restart the concurrent SAP
-	 */
-	if (is_ll_lt_sap_enabled && wlan_reg_is_24ghz_ch_freq(sap_info.freq))
-		return;
-
-	/*
-	 * If concurrent SAP is 5 GHz/6 GHz and ll_lt_sap is getting disabled
-	 * then there is no need to restart the concurrent SAP
-	 */
-	else if (!is_ll_lt_sap_enabled &&
-		 (wlan_reg_is_5ghz_ch_freq(sap_info.freq) ||
-		  wlan_reg_is_6ghz_chan_freq(sap_info.freq)))
-		return;
+	if (sap_info.mode == PM_SAP_MODE) {
+		/*
+		 * For SBS case, no need to restart concurrent SAP as LL_LT_SAP
+		 * and concurrent SAP can be on different MACs
+		 */
+		if (policy_mgr_is_hw_sbs_capable(psoc))
+			return;
+
+		/*
+		 * If concurrent SAP is 2.4 GHz and ll_lt_sap is getting enabled
+		 * then there is no need to restart the concurrent SAP
+		 */
+		if (is_ll_lt_sap_enabled &&
+		    wlan_reg_is_24ghz_ch_freq(sap_info.freq))
+			return;
+
+		/*
+		 * If concurrent SAP is 5 GHz/6 GHz and ll_lt_sap is getting
+		 * disabled then there is no need to restart the concurrent SAP
+		 */
+		else if (!is_ll_lt_sap_enabled &&
+			 (wlan_reg_is_5ghz_ch_freq(sap_info.freq) ||
+			 wlan_reg_is_6ghz_chan_freq(sap_info.freq)))
+			return;
+
+		restart_freq =
+		policy_mgr_ll_lt_sap_get_restart_freq_for_concurent_sap(
+							pm_ctx,
+							sap_info.vdev_id,
+							sap_info.freq,
+							is_ll_lt_sap_enabled);
+		csa_reason = CSA_REASON_CONCURRENT_LL_LT_SAP_EVENT;
+	} else {
+		restart_freq = wlan_get_ll_lt_sap_restart_freq(pm_ctx->pdev,
+							       sap_info.freq,
+							       sap_info.vdev_id,
+							       &csa_reason);
+	}
 
 	if (pm_ctx->hdd_cbacks.hdd_is_chan_switch_in_progress &&
 	    pm_ctx->hdd_cbacks.hdd_is_chan_switch_in_progress()) {
@@ -219,19 +241,11 @@ void policy_mgr_ll_lt_sap_restart_concurrent_sap(struct wlan_objmgr_psoc *psoc,
 		return;
 	}
 
-	restart_freq =
-		policy_mgr_ll_lt_sap_get_restart_freq_for_concurent_sap(
-							pm_ctx,
-							sap_info.vdev_id,
-							sap_info.freq,
-							is_ll_lt_sap_enabled);
-
 	if (!restart_freq) {
 		policy_mgr_err("Restart freq not found for vdev %d",
 			       sap_info.vdev_id);
 		return;
 	}
-
 	if (restart_freq == sap_info.freq) {
 		policy_mgr_debug("vdev %d restart freq %d same as current freq",
 				 sap_info.vdev_id, restart_freq);
@@ -245,10 +259,9 @@ void policy_mgr_ll_lt_sap_restart_concurrent_sap(struct wlan_objmgr_psoc *psoc,
 			 sap_info.vdev_id, restart_freq, ch_params.ch_width);
 
 	if (pm_ctx->hdd_cbacks.wlan_hdd_set_sap_csa_reason)
-		pm_ctx->hdd_cbacks.wlan_hdd_set_sap_csa_reason(
-					psoc,
-					sap_info.vdev_id,
-					CSA_REASON_CONCURRENT_LL_LT_SAP_EVENT);
+		pm_ctx->hdd_cbacks.wlan_hdd_set_sap_csa_reason(psoc,
+							       sap_info.vdev_id,
+							       csa_reason);
 
 	policy_mgr_change_sap_channel_with_csa(psoc, sap_info.vdev_id,
 					       restart_freq,