Forráskód Böngészése

qcacld-3.0: Move SAP to 2.4 GHz with ll_lt_sap concurrency

LL_LT_SAP and SAP can not be present on same MAC, if SAP is
present on 5 GHz for DBS RDs and if LL_LT_SAP tries to come
up, then move LL_LT_SAP to 2.4 GHz frequency so that LL_LT_SAP
can come up on 5 GHz.
This change handles this scenario and move the SAP to 2.4 GHz
frequency when host driver receives acs request for LL_LT_SAP,
when LL_LT_SAP start completes.
When LL_LT_SAP goes down, host driver restores the original
user configured channel.

Change-Id: Ia4ed29d86a595321ee8be57420cc6a03c84f190b
CRs-Fixed: 3647076
Ashish Kumar Dhanotiya 1 éve
szülő
commit
9b80743a19

+ 10 - 1
components/cmn_services/interface_mgr/src/wlan_if_mgr_sap.c

@@ -32,6 +32,7 @@
 #include "wlan_p2p_ucfg_api.h"
 #include "wlan_vdev_mgr_utils_api.h"
 #include "wlan_tdls_tgt_api.h"
+#include "wlan_policy_mgr_ll_sap.h"
 
 QDF_STATUS if_mgr_ap_start_bss(struct wlan_objmgr_vdev *vdev,
 			       struct if_mgr_event_data *event_data)
@@ -112,7 +113,12 @@ if_mgr_ap_start_bss_complete(struct wlan_objmgr_vdev *vdev,
 		policy_mgr_check_sap_go_force_scc(psoc, vdev,
 						  CSA_REASON_GO_BSS_STARTED);
 	ifmgr_debug("check for SAP restart");
-	policy_mgr_check_concurrent_intf_and_restart_sap(psoc,
+
+	if (policy_mgr_is_vdev_ll_lt_sap(psoc, wlan_vdev_get_id(vdev)))
+		policy_mgr_ll_lt_sap_restart_concurrent_sap(psoc, true);
+	else
+		policy_mgr_check_concurrent_intf_and_restart_sap(
+				psoc,
 				wlan_util_vdev_mgr_get_acs_mode_for_vdev(vdev));
 	/*
 	 * Enable TDLS again on concurrent STA
@@ -166,6 +172,9 @@ if_mgr_ap_stop_bss_complete(struct wlan_objmgr_vdev *vdev,
 	    mcc_scc_switch == QDF_MCC_TO_SCC_SWITCH_WITH_FAVORITE_CHANNEL)
 		policy_mgr_check_concurrent_intf_and_restart_sap(psoc, false);
 
+	if (policy_mgr_is_vdev_ll_lt_sap(psoc, wlan_vdev_get_id(vdev)))
+		policy_mgr_ll_lt_sap_restart_concurrent_sap(psoc, false);
+
 	return QDF_STATUS_SUCCESS;
 }
 

+ 28 - 0
components/cmn_services/policy_mgr/inc/wlan_policy_mgr_ll_sap.h

@@ -46,6 +46,28 @@ bool __policy_mgr_is_ll_lt_sap_restart_required(struct wlan_objmgr_psoc *psoc,
 
 #define policy_mgr_is_ll_lt_sap_restart_required(psoc) \
 	__policy_mgr_is_ll_lt_sap_restart_required(psoc, __func__)
+
+/**
+ * policy_mgr_ll_lt_sap_restart_concurrent_sap() - Check and restart
+ * concurrent SAP on ll_lt_sap enable
+ * @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.
+ * 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
+ * operating on 5 GHz, then move concurrent SAP to 2.4 Ghz MAC to allow
+ * 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
+ *
+ * Return: None
+ */
+void policy_mgr_ll_lt_sap_restart_concurrent_sap(struct wlan_objmgr_psoc *psoc,
+						 bool is_ll_lt_sap_enabled);
 #else
 
 static inline bool
@@ -59,4 +81,10 @@ uint8_t wlan_policy_mgr_get_ll_lt_sap_vdev_id(struct wlan_objmgr_psoc *psoc)
 {
 	return WLAN_INVALID_VDEV_ID;
 }
+
+static inline void
+policy_mgr_ll_lt_sap_restart_concurrent_sap(struct wlan_objmgr_psoc *psoc,
+					    bool is_ll_lt_sap_enabled)
+{
+}
 #endif

+ 3 - 1
components/cmn_services/policy_mgr/inc/wlan_policy_mgr_public_struct.h

@@ -96,6 +96,7 @@ typedef int (*send_mode_change_event_cb)(void);
  * @CSA_REASON_GO_BSS_STARTED: P2P go started
  * @CSA_REASON_SAP_ACS: 2.4 GHz preferred SAP ACS starting
  * @CSA_REASON_SAP_FIX_CH_CONC_WITH_GO: SAP fix channel start
+ * @CSA_REASON_CONCURRENT_LL_LT_SAP_EVENT: LL_LT_SAP concurrency
  *  and move GO to other band
  */
 enum sap_csa_reason_code {
@@ -114,7 +115,8 @@ enum sap_csa_reason_code {
 	CSA_REASON_CHAN_PASSIVE,
 	CSA_REASON_GO_BSS_STARTED,
 	CSA_REASON_SAP_ACS,
-	CSA_REASON_SAP_FIX_CH_CONC_WITH_GO
+	CSA_REASON_SAP_FIX_CH_CONC_WITH_GO,
+	CSA_REASON_CONCURRENT_LL_LT_SAP_EVENT
 };
 
 /*

+ 163 - 0
components/cmn_services/policy_mgr/src/wlan_policy_mgr_ll_sap.c

@@ -91,3 +91,166 @@ bool __policy_mgr_is_ll_lt_sap_restart_required(struct wlan_objmgr_psoc *psoc,
 
 	return false;
 }
+
+/**
+ * policy_mgr_ll_lt_sap_get_restart_freq_for_concurent_sap() - Get restart frequency
+ * for concurrent SAP which is in concurrency with LL_LT_SAP
+ * @pm_ctx: Policy manager context
+ * @vdev_id: Vdev id of the SAP for which restart freq is required
+ * @curr_freq: Current frequency of the SAP for which restart freq is required
+ * @ll_lt_sap_enabled: Indicates if ll_lt_sap is getting enabled or disabled
+ *
+ * This API returns user configured frequency if ll_lt_sap is going down and
+ * if ll_lt_sap is coming up it returns frequency according to ll_lt_sap
+ * concurrency.
+ *
+ * Return: Restart frequency
+ */
+static qdf_freq_t
+policy_mgr_ll_lt_sap_get_restart_freq_for_concurent_sap(
+					struct policy_mgr_psoc_priv_obj *pm_ctx,
+					uint8_t vdev_id,
+					qdf_freq_t curr_freq,
+					bool ll_lt_sap_enabled)
+{
+	qdf_freq_t user_config_freq;
+	uint8_t i;
+	QDF_STATUS status;
+	uint32_t channel_list[NUM_CHANNELS];
+	uint32_t num_channels;
+	qdf_freq_t restart_freq = 0;
+
+	/*
+	 * If ll_lt_sap is getting disabled, return user configured frequency
+	 * for concurrent SAP restart, if user configured frequency is not valid
+	 * frequency, remain on the same frequency and do not restart the SAP
+	 */
+	if (!ll_lt_sap_enabled) {
+		user_config_freq = policy_mgr_get_user_config_sap_freq(
+								pm_ctx->psoc,
+								vdev_id);
+		if (wlan_reg_is_enable_in_secondary_list_for_freq(
+							pm_ctx->pdev,
+							user_config_freq) &&
+		    policy_mgr_is_safe_channel(pm_ctx->psoc, user_config_freq))
+			return user_config_freq;
+		return curr_freq;
+	}
+
+	status = policy_mgr_get_valid_chans(pm_ctx->psoc, channel_list,
+					    &num_channels);
+	if (QDF_IS_STATUS_ERROR(status)) {
+		policy_mgr_err("Error in getting valid channels");
+		return curr_freq;
+	}
+
+	/* return first valid 2.4 GHz frequency */
+	for (i = 0; i < num_channels; i++) {
+		if (wlan_reg_is_24ghz_ch_freq(channel_list[i])) {
+			if (!restart_freq)
+				restart_freq = channel_list[i];
+			/* Prefer SCC frequency */
+			if (policy_mgr_get_connection_count_with_ch_freq(
+							channel_list[i])) {
+				restart_freq = channel_list[i];
+				break;
+			}
+		}
+	}
+	return restart_freq;
+}
+
+void policy_mgr_ll_lt_sap_restart_concurrent_sap(struct wlan_objmgr_psoc *psoc,
+						 bool is_ll_lt_sap_enabled)
+{
+	struct policy_mgr_psoc_priv_obj *pm_ctx;
+	struct policy_mgr_conc_connection_info sap_info = {0};
+	qdf_freq_t restart_freq;
+	struct ch_params ch_params = {0};
+	uint8_t i;
+
+	pm_ctx = policy_mgr_get_context(psoc);
+	if (!pm_ctx) {
+		policy_mgr_err("Invalid pm context");
+		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_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) {
+			qdf_mem_copy(&sap_info, &pm_conc_connection_list[i],
+				     sizeof(sap_info));
+			break;
+		}
+	}
+	qdf_mutex_release(&pm_ctx->qdf_conc_list_lock);
+
+	/* No concurrent 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 (pm_ctx->hdd_cbacks.hdd_is_chan_switch_in_progress &&
+	    pm_ctx->hdd_cbacks.hdd_is_chan_switch_in_progress()) {
+		policy_mgr_debug("channel switch is already in progress");
+		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);
+		return;
+	}
+	ch_params.ch_width = policy_mgr_get_ch_width(sap_info.bw);
+	wlan_reg_set_channel_params_for_pwrmode(pm_ctx->pdev, restart_freq,
+						0, &ch_params,
+						REG_CURRENT_PWR_MODE);
+	policy_mgr_debug("Restart SAP vdev %d with %d freq width %d",
+			 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);
+
+	policy_mgr_change_sap_channel_with_csa(psoc, sap_info.vdev_id,
+					       restart_freq,
+					       ch_params.ch_width, true);
+}

+ 6 - 7
core/hdd/src/wlan_hdd_cfg80211.c

@@ -4012,7 +4012,6 @@ static int __wlan_hdd_cfg80211_do_acs(struct wiphy *wiphy,
 	uint8_t vht_ch_width;
 	uint32_t channel_bonding_mode_2g;
 	uint32_t last_scan_ageout_time;
-	bool ll_lt_sap = false;
 	struct wlan_hdd_link_info *link_info = adapter->deflink;
 
 	/* ***Note*** Donot set SME config related to ACS operation here because
@@ -4039,8 +4038,11 @@ static int __wlan_hdd_cfg80211_do_acs(struct wiphy *wiphy,
 	ucfg_mlme_get_channel_bonding_24ghz(hdd_ctx->psoc,
 					    &channel_bonding_mode_2g);
 
-	if (policy_mgr_is_vdev_ll_lt_sap(hdd_ctx->psoc, link_info->vdev_id))
+	if (policy_mgr_is_vdev_ll_lt_sap(hdd_ctx->psoc, link_info->vdev_id)) {
 		is_ll_lt_sap = true;
+		policy_mgr_ll_lt_sap_restart_concurrent_sap(hdd_ctx->psoc,
+							    true);
+	}
 
 	if (is_ll_lt_sap || sap_force_11n_for_11ac)
 		sap_force_11n = true;
@@ -4279,9 +4281,6 @@ static int __wlan_hdd_cfg80211_do_acs(struct wiphy *wiphy,
 
 	sap_config->acs_cfg.acs_mode = true;
 
-	ll_lt_sap = policy_mgr_is_vdev_ll_lt_sap(hdd_ctx->psoc,
-						 link_info->vdev_id);
-
 	if (wlan_reg_get_keep_6ghz_sta_cli_connection(hdd_ctx->pdev))
 		hdd_remove_6ghz_freq_from_acs_list(
 					sap_config->acs_cfg.freq_list,
@@ -4289,7 +4288,7 @@ static int __wlan_hdd_cfg80211_do_acs(struct wiphy *wiphy,
 
 	if ((is_external_acs_policy &&
 	    policy_mgr_is_force_scc(hdd_ctx->psoc) &&
-	    policy_mgr_get_connection_count(hdd_ctx->psoc)) || ll_lt_sap) {
+	    policy_mgr_get_connection_count(hdd_ctx->psoc)) || is_ll_lt_sap) {
 		if (adapter->device_mode == QDF_SAP_MODE)
 			is_vendor_unsafe_ch_present =
 				wlansap_filter_vendor_unsafe_ch_freq(sap_ctx,
@@ -4302,7 +4301,7 @@ static int __wlan_hdd_cfg80211_do_acs(struct wiphy *wiphy,
 		if (!sap_config->acs_cfg.ch_list_count &&
 		    sap_config->acs_cfg.master_ch_list_count &&
 		    !is_vendor_unsafe_ch_present &&
-		    !ll_lt_sap)
+		    !is_ll_lt_sap)
 			wlan_hdd_handle_zero_acs_list(
 				hdd_ctx,
 				sap_config->acs_cfg.freq_list,

+ 2 - 0
core/sap/src/sap_module.c

@@ -1496,6 +1496,8 @@ const char *sap_get_csa_reason_str(enum sap_csa_reason_code reason)
 		return "CSA_REASON_SAP_ACS";
 	case CSA_REASON_SAP_FIX_CH_CONC_WITH_GO:
 		return "SAP_FIX_CH_CONC_WITH_GO";
+	case CSA_REASON_CONCURRENT_LL_LT_SAP_EVENT:
+		return "CONCURRENT_LL_LT_SAP_EVENT";
 	default:
 		return "UNKNOWN";
 	}