Răsfoiți Sursa

qcacld-3.0: Check STA present for SAP unsafe channel CSA

ML STA connected on 2437 MHz and 5825 MHz (unsafe channel), GO started
on 5180 MHz. SAP was started on 5825 MHz for SCC with ML STA, but SAP
channel was changed from 5825 MHz to 5240 MHz after CSA.
At present after SAP start or CSA channel changed, the api
sap_fsm_handle_check_safe_channel will check the unsafe flag
for SAP operation channel. But it doesn't check the STA present
on the channel, SAP is allowed SCC with STA on unsafe channel
when g_sta_sap_scc_on_lte_coex_chan = 1.
Fix by use policy_mgr_is_sap_freq_allowed to check SAP channel unsafe
and wlansap_set_channel_change_with_csa to do more validation on
target channel.

Change-Id: I8ce56195c804156bd7c2a54c60144402636f5b06
CRs-Fixed: 3371880
Liangwei Dong 2 ani în urmă
părinte
comite
32b0fee858
1 a modificat fișierele cu 21 adăugiri și 7 ștergeri
  1. 21 7
      core/sap/src/sap_fsm.c

+ 21 - 7
core/sap/src/sap_fsm.c

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2012-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved
+ * Copyright (c) 2021-2023 Qualcomm Innovation Center, Inc. All rights reserved
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -3545,7 +3545,8 @@ static qdf_freq_t sap_get_safe_channel_freq(struct sap_context *sap_ctx)
 
 	freq = wlan_pre_cac_get_freq_before_pre_cac(sap_ctx->vdev);
 	if (!freq)
-		freq = sap_random_channel_sel(sap_ctx);
+		freq = wlansap_get_safe_channel_from_pcl_and_acs_range(
+								sap_ctx);
 
 	sap_debug("new selected freq %d as target chan as current freq unsafe %d",
 		  freq, sap_ctx->chan_freq);
@@ -3605,16 +3606,29 @@ sap_fsm_send_csa_restart_req(struct mac_context *mac_ctx,
 static void sap_fsm_handle_check_safe_channel(struct mac_context *mac_ctx,
 					      struct sap_context *sap_ctx)
 {
-	if (policy_mgr_is_safe_channel(mac_ctx->psoc, sap_ctx->chan_freq))
-		return;
+	qdf_freq_t target_chan_freq;
+	struct ch_params ch_params = {0};
+	QDF_STATUS status;
+	enum phy_ch_width target_bw = sap_ctx->ch_params.ch_width;
 
-	mac_ctx->sap.SapDfsInfo.target_chan_freq =
-					sap_get_safe_channel_freq(sap_ctx);
+	if (policy_mgr_is_sap_freq_allowed(mac_ctx->psoc, sap_ctx->chan_freq))
+		return;
 	/*
 	 * The selected channel is not safe channel. Hence,
 	 * change the sap channel to a safe channel.
 	 */
-	sap_fsm_send_csa_restart_req(mac_ctx, sap_ctx);
+	target_chan_freq = sap_get_safe_channel_freq(sap_ctx);
+	ch_params.ch_width = target_bw;
+	target_bw = wlansap_get_csa_chanwidth_from_phymode(
+			sap_ctx, target_chan_freq, &ch_params);
+	sap_debug("sap vdev %d change to safe ch freq %d bw %d from unsafe %d",
+		  sap_ctx->sessionId, target_chan_freq, target_bw,
+		  sap_ctx->chan_freq);
+	status = wlansap_set_channel_change_with_csa(
+			sap_ctx, target_chan_freq, target_bw, false);
+	if (QDF_IS_STATUS_ERROR(status))
+		sap_err("SAP set channel failed for freq: %d, bw: %d",
+			target_chan_freq, target_bw);
 }
 
 /**