Browse Source

qcacld-3.0: Populate the eht mcs for TDLS

Currently, the TDLS throughput is low and can't grow up, to resolve
the issue, populate the eht mcs accordingly.

CRs-Fixed: 3622297
Change-Id: Ic5388efb6131fe811368275f7e3c279fe7f9c7ea
Paul Zhang 1 year ago
parent
commit
5c10179f03

+ 2 - 1
core/mac/src/include/dph_global.h

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2011-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2022-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
@@ -200,6 +200,7 @@ typedef struct sDphHashNode {
 
 #ifdef WLAN_FEATURE_11BE
 	tDot11fIEeht_cap eht_config;
+	tDot11fIEeht_op eht_op;
 #endif
 
 	/* Peer operation class, extracted from ASSOC request frame*/

+ 20 - 0
core/mac/src/pe/lim/lim_assoc_utils.c

@@ -2162,6 +2162,25 @@ static bool lim_is_add_sta_params_he_capable(tpAddStaParams add_sta_params)
 #endif
 
 #ifdef FEATURE_WLAN_TDLS
+#ifdef WLAN_FEATURE_11BE
+static void lim_add_tdls_sta_eht_config(tpAddStaParams add_sta_params,
+					tpDphHashNode sta_ds)
+{
+	if (add_sta_params->eht_capable) {
+		pe_debug("Adding tdls eht capabilities");
+		qdf_mem_copy(&add_sta_params->eht_config, &sta_ds->eht_config,
+			     sizeof(add_sta_params->eht_config));
+		qdf_mem_copy(&add_sta_params->eht_op, &sta_ds->eht_op,
+			     sizeof(add_sta_params->eht_op));
+	}
+}
+#else
+static void lim_add_tdls_sta_eht_config(tpAddStaParams add_sta_params,
+					tpDphHashNode sta_ds)
+{
+}
+
+#endif
 #ifdef WLAN_FEATURE_11AX
 static void lim_add_tdls_sta_he_config(tpAddStaParams add_sta_params,
 				       tpDphHashNode sta_ds)
@@ -2530,6 +2549,7 @@ lim_add_sta(struct mac_context *mac_ctx,
 		if (lim_is_he_6ghz_band(session_entry))
 			lim_add_tdls_sta_6ghz_he_cap(mac_ctx, add_sta_params,
 						     sta_ds);
+		lim_add_tdls_sta_eht_config(add_sta_params, sta_ds);
 	}
 #endif
 

+ 21 - 0
core/mac/src/pe/lim/lim_process_tdls.c

@@ -3275,6 +3275,23 @@ lim_tdls_populate_dot11f_vht_caps(struct mac_context *mac,
 	return QDF_STATUS_SUCCESS;
 }
 
+#ifdef WLAN_FEATURE_11BE
+static void
+lim_tdls_populate_eht_mcs(struct mac_context *mac_ctx, tpDphHashNode stads,
+			  struct pe_session *session_entry)
+{
+	lim_populate_eht_mcs_set(mac_ctx, &stads->supportedRates,
+				 &stads->eht_config, session_entry,
+				 session_entry->nss);
+}
+#else
+static void
+lim_tdls_populate_eht_mcs(struct mac_context *mac_ctx, tpDphHashNode stads,
+			  struct pe_session *session_entry)
+{
+}
+#endif
+
 /**
  * lim_tdls_populate_matching_rate_set() - populate matching rate set
  *
@@ -3393,6 +3410,8 @@ lim_tdls_populate_matching_rate_set(struct mac_context *mac_ctx,
 	lim_populate_vht_mcs_set(mac_ctx, &stads->supportedRates, vht_caps,
 				 session_entry, nss, NULL);
 
+	lim_tdls_populate_eht_mcs(mac_ctx, stads, session_entry);
+
 	lim_tdls_populate_he_matching_rate_set(mac_ctx, stads, nss,
 					       session_entry);
 	/**
@@ -3432,6 +3451,8 @@ lim_tdls_populate_dot11f_eht_caps(struct pe_session *pe_session,
 		pe_debug("copy eht config from pe_session");
 		qdf_mem_copy(&sta->eht_config, &pe_session->eht_config,
 			     sizeof(sta->eht_config));
+		qdf_mem_copy(&sta->eht_op, &pe_session->eht_op,
+			     sizeof(sta->eht_op));
 	}
 }
 #else