瀏覽代碼

qcacld-3.0: Restrict TDLS 2.4 GHz bw to APs

Restrict BW for TDLS when connection is made
in 2.4 GHz to that of AP.
Also, restrict the BW if the TDLS connection
is made in DFS channel.

Change-Id: Ida8693837b4b8e11a706b5b9fa482399630d2beb
CRs-Fixed: 3246100
Utkarsh Bhatnagar 2 年之前
父節點
當前提交
45601af361
共有 1 個文件被更改,包括 31 次插入8 次删除
  1. 31 8
      core/mac/src/pe/lim/lim_process_tdls.c

+ 31 - 8
core/mac/src/pe/lim/lim_process_tdls.c

@@ -891,14 +891,34 @@ static void lim_populate_tdls_setup_6g_cap(struct mac_context *mac,
 static void lim_fill_session_he_width(struct pe_session *session,
 				      tDot11fIEhe_cap *heCap)
 {
-	if (session->ch_width >= CH_WIDTH_40MHZ)
+	/*
+	 * For TDLS, the bw is filled using mlme_cfg so max supported bw
+	 * will be set, so here reset he bw as per session bw.
+	 */
+	if (session->ch_width == CH_WIDTH_20MHZ) {
+		goto bw_20;
+	} else if (session->ch_width == CH_WIDTH_40MHZ) {
 		heCap->chan_width_0 = 1;
-	if (session->ch_width >= CH_WIDTH_80MHZ)
+		goto bw_40;
+	} else if (session->ch_width == CH_WIDTH_80MHZ) {
 		heCap->chan_width_1 = 1;
-	if (session->ch_width >= CH_WIDTH_160MHZ)
+		goto bw_80;
+	} else if (session->ch_width == CH_WIDTH_160MHZ) {
 		heCap->chan_width_2 = 1;
-	if (session->ch_width >= CH_WIDTH_80P80MHZ)
+		goto bw_160;
+	} else if (session->ch_width == CH_WIDTH_80P80MHZ) {
 		heCap->chan_width_3 = 1;
+		return;
+	}
+
+bw_20:
+	heCap->chan_width_0 = 0;
+bw_40:
+	heCap->chan_width_1 = 0;
+bw_80:
+	heCap->chan_width_2 = 0;
+bw_160:
+	heCap->chan_width_3 = 0;
 }
 
 static void lim_tdls_set_he_chan_width(struct mac_context *mac,
@@ -906,12 +926,18 @@ static void lim_tdls_set_he_chan_width(struct mac_context *mac,
 				       struct pe_session *session,
 				       bool wideband_sta)
 {
-	if (!wideband_sta) {
+	if (!wideband_sta ||
+	    wlan_reg_is_24ghz_ch_freq(session->curr_op_freq)) {
 		lim_fill_session_he_width(session, heCap);
 		return;
 	}
 
 	if (wlan_reg_is_5ghz_ch_freq(session->curr_op_freq)) {
+		if (wlan_reg_is_dfs_for_freq(mac->pdev,
+					     session->curr_op_freq)) {
+			lim_fill_session_he_width(session, heCap);
+			return;
+		}
 	/*
 	 * Right now, no support for ch_width 160 Mhz or 80P80 Mhz in 5 Ghz
 	 * Also, restricting bw to 80 Mhz in case ap on 5 ghz is operating in
@@ -923,9 +949,6 @@ static void lim_tdls_set_he_chan_width(struct mac_context *mac,
 		heCap->chan_width_4 = 0;
 		heCap->chan_width_5 = 0;
 		heCap->chan_width_6 = 0;
-		if (wlan_reg_is_dfs_for_freq(mac->pdev,
-					     session->curr_op_freq))
-			lim_fill_session_he_width(session, heCap);
 	}
 }