Bläddra i källkod

qcacld-3.0: Link params embedded in station param struct

In kernel 5.15 and above a new member is introduced in
station_parameters structure to move link specific variables.

This change will port the driver code to make it compatible.

Change-Id: I3a1a05961bb5e747d946ffa8314319f898ef7b97
CRs-Fixed: 3304240
Vinod Kumar Pirla 2 år sedan
förälder
incheckning
8c5680c852
2 ändrade filer med 145 tillägg och 4 borttagningar
  1. 5 0
      Kbuild
  2. 140 4
      os_if/tdls/src/wlan_cfg80211_tdls.c

+ 5 - 0
Kbuild

@@ -45,6 +45,11 @@ ifeq ($(findstring yes, $(found)), yes)
 cppflags-y += -DCFG80211_MLO_KEY_OPERATION_SUPPORT
 endif
 
+found = $(shell if grep -qF "struct link_station_parameters" $(srctree)/include/net/cfg80211.h; then echo "yes"; else echo "no"; fi;)
+ifeq ($(findstring yes, $(found)), yes)
+cppflags-y += -DCFG80211_LINK_STA_PARAMS_PRESENT
+endif
+
 include $(WLAN_ROOT)/configs/$(CONFIG_QCA_CLD_WLAN_PROFILE)_defconfig
 
 # add configurations in WLAN_CFG_OVERRIDE

+ 140 - 4
os_if/tdls/src/wlan_cfg80211_tdls.c

@@ -298,7 +298,21 @@ tdls_calc_channels_from_staparams(struct wlan_objmgr_vdev *vdev,
 }
 
 #ifdef WLAN_FEATURE_11AX
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 4, 0)) && defined(CONFIG_BAND_6GHZ)
+#if defined(CFG80211_LINK_STA_PARAMS_PRESENT) && defined(CONFIG_BAND_6GHZ)
+static void
+wlan_cfg80211_tdls_extract_6ghz_params(struct tdls_update_peer_params *req_info,
+				       struct station_parameters *params)
+{
+	if (!params->link_sta_params.he_6ghz_capa) {
+		osif_debug("6 Ghz he_capa not present");
+		return;
+	}
+
+	qdf_mem_copy(&req_info->he_6ghz_cap,
+		     params->link_sta_params.he_6ghz_capa,
+		     sizeof(req_info->he_6ghz_cap));
+}
+#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 4, 0)) && defined(CONFIG_BAND_6GHZ)
 static void
 wlan_cfg80211_tdls_extract_6ghz_params(struct tdls_update_peer_params *req_info,
 				       struct station_parameters *params)
@@ -320,6 +334,34 @@ wlan_cfg80211_tdls_extract_6ghz_params(struct tdls_update_peer_params *req_info,
 }
 #endif
 
+#ifdef CFG80211_LINK_STA_PARAMS_PRESENT
+static void
+wlan_cfg80211_tdls_extract_he_params(struct tdls_update_peer_params *req_info,
+				     struct station_parameters *params,
+				     bool tdls_6g_support)
+{
+	if (params->link_sta_params.he_capa_len < MIN_TDLS_HE_CAP_LEN) {
+		osif_debug("he_capa_len %d less than MIN_TDLS_HE_CAP_LEN",
+			   params->link_sta_params.he_capa_len);
+		return;
+	}
+
+	if (!params->link_sta_params.he_capa) {
+		osif_debug("he_capa not present");
+		return;
+	}
+
+	req_info->he_cap_len = params->link_sta_params.he_capa_len;
+	if (req_info->he_cap_len > MAX_TDLS_HE_CAP_LEN)
+		req_info->he_cap_len = MAX_TDLS_HE_CAP_LEN;
+
+	qdf_mem_copy(&req_info->he_cap, params->link_sta_params.he_capa,
+		     req_info->he_cap_len);
+
+	if (tdls_6g_support)
+		wlan_cfg80211_tdls_extract_6ghz_params(req_info, params);
+}
+#else
 static void
 wlan_cfg80211_tdls_extract_he_params(struct tdls_update_peer_params *req_info,
 				     struct station_parameters *params,
@@ -345,10 +387,8 @@ wlan_cfg80211_tdls_extract_he_params(struct tdls_update_peer_params *req_info,
 
 	if (tdls_6g_support)
 		wlan_cfg80211_tdls_extract_6ghz_params(req_info, params);
-
-	return;
 }
-
+#endif
 #else
 static void
 wlan_cfg80211_tdls_extract_he_params(struct tdls_update_peer_params *req_info,
@@ -358,6 +398,101 @@ wlan_cfg80211_tdls_extract_he_params(struct tdls_update_peer_params *req_info,
 }
 #endif
 
+#ifdef CFG80211_LINK_STA_PARAMS_PRESENT
+static void
+wlan_cfg80211_tdls_extract_params(struct wlan_objmgr_vdev *vdev,
+				  struct tdls_update_peer_params *req_info,
+				  struct station_parameters *params,
+				  bool tdls_11ax_support, bool tdls_6g_support)
+{
+	int i;
+
+	osif_debug("sta cap %d, uapsd_queue %d, max_sp %d",
+		   params->capability,
+		   params->uapsd_queues, params->max_sp);
+
+	if (!req_info) {
+		osif_err("reg_info is NULL");
+		return;
+	}
+	req_info->capability = params->capability;
+	req_info->uapsd_queues = params->uapsd_queues;
+	req_info->max_sp = params->max_sp;
+
+	if (params->supported_oper_classes_len > WLAN_MAX_SUPP_OPER_CLASSES) {
+		osif_debug("received oper classes:%d, resetting it to max supported: %d",
+			   params->supported_oper_classes_len,
+			   WLAN_MAX_SUPP_OPER_CLASSES);
+		params->supported_oper_classes_len = WLAN_MAX_SUPP_OPER_CLASSES;
+	}
+
+	qdf_mem_copy(req_info->supported_oper_classes,
+		     params->supported_oper_classes,
+		     params->supported_oper_classes_len);
+	req_info->supported_oper_classes_len =
+		params->supported_oper_classes_len;
+
+	if (params->supported_channels_len)
+		tdls_calc_channels_from_staparams(vdev, req_info, params);
+
+	if (params->ext_capab_len)
+		qdf_mem_copy(req_info->extn_capability, params->ext_capab,
+			     sizeof(req_info->extn_capability));
+
+	if (params->link_sta_params.ht_capa) {
+		req_info->htcap_present = 1;
+		qdf_mem_copy(&req_info->ht_cap, params->link_sta_params.ht_capa,
+			     sizeof(struct htcap_cmn_ie));
+	}
+
+	req_info->supported_rates_len =
+				params->link_sta_params.supported_rates_len;
+
+	/* Note : The Maximum sizeof supported_rates sent by the Supplicant is
+	 * 32. The supported_rates array , for all the structures propogating
+	 * till Add Sta to the firmware has to be modified , if the supplicant
+	 * (ieee80211) is modified to send more rates.
+	 */
+
+	/* To avoid Data Currption , set to max length to SIR_MAC_MAX_SUPP_RATES
+	 */
+	if (req_info->supported_rates_len > WLAN_MAC_MAX_SUPP_RATES)
+		req_info->supported_rates_len = WLAN_MAC_MAX_SUPP_RATES;
+
+	if (req_info->supported_rates_len) {
+		qdf_mem_copy(req_info->supported_rates,
+			     params->link_sta_params.supported_rates,
+			     req_info->supported_rates_len);
+		osif_debug("Supported Rates with Length %d",
+			   req_info->supported_rates_len);
+
+		for (i = 0; i < req_info->supported_rates_len; i++)
+			osif_debug("[%d]: %0x", i,
+				   req_info->supported_rates[i]);
+	}
+
+	if (params->link_sta_params.vht_capa) {
+		req_info->vhtcap_present = 1;
+		qdf_mem_copy(&req_info->vht_cap,
+			     params->link_sta_params.vht_capa,
+			     sizeof(struct vhtcap));
+	}
+
+	if (params->link_sta_params.ht_capa ||
+	    params->link_sta_params.vht_capa ||
+	    (params->sta_flags_set & BIT(NL80211_STA_FLAG_WME)))
+		req_info->is_qos_wmm_sta = true;
+	if (params->sta_flags_set & BIT(NL80211_STA_FLAG_MFP)) {
+		osif_debug("TDLS peer pmf capable");
+		req_info->is_pmf = 1;
+	}
+	if (tdls_11ax_support)
+		wlan_cfg80211_tdls_extract_he_params(req_info, params,
+						     tdls_6g_support);
+	else
+		osif_debug("tdls ax disabled");
+}
+#else
 static void
 wlan_cfg80211_tdls_extract_params(struct wlan_objmgr_vdev *vdev,
 				  struct tdls_update_peer_params *req_info,
@@ -448,6 +583,7 @@ wlan_cfg80211_tdls_extract_params(struct wlan_objmgr_vdev *vdev,
 	else
 		osif_debug("tdls ax disabled");
 }
+#endif
 
 int wlan_cfg80211_tdls_update_peer(struct wlan_objmgr_vdev *vdev,
 				   const uint8_t *mac,