Explorar el Código

qcacld-3.0: Set correct center frequency for bandwidth 160 MHz

Currently center frequency pass to API to check unsafe channel is
not correct set for bandwidth greater than 80 MHz. It lead to
unexpected shrink bandwidth.

For channel bandwidth greater than 80 MHz, center frequency should
set to mhz_freq_seg1 instead of mhz_freq_seg0.

Change-Id: I278590cd128b4760e35f4ea5921a6ed687dc1308
CRs-Fixed: 3466845
Will Huang hace 1 año
padre
commit
3a5fbe1891

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

@@ -2855,6 +2855,7 @@ policy_mgr_change_sap_channel_with_csa(struct wlan_objmgr_psoc *psoc,
 {
 	struct policy_mgr_psoc_priv_obj *pm_ctx;
 	struct ch_params ch_params = {0};
+	qdf_freq_t center_freq;
 	QDF_STATUS status;
 
 	pm_ctx = policy_mgr_get_context(psoc);
@@ -2871,8 +2872,13 @@ policy_mgr_change_sap_channel_with_csa(struct wlan_objmgr_psoc *psoc,
 			ch_width = ch_params.ch_width;
 	}
 
+	if (ch_params.mhz_freq_seg1)
+		center_freq = ch_params.mhz_freq_seg1;
+	else
+		center_freq = ch_params.mhz_freq_seg0;
+
 	if (!policy_mgr_check_bw_with_unsafe_chan_freq(psoc,
-						       ch_params.mhz_freq_seg0,
+						       center_freq,
 						       ch_width)) {
 		policy_mgr_info("SAP bw shrink to 20M for unsafe");
 		ch_width = CH_WIDTH_20MHZ;