Browse Source

qcacld-3.0: Check FW support for T2LM

If FW does not support T2LM update cfg
t2lm parameter to 0.

CRs-Fixed: 3605309
Change-Id: I1599c13d66a57a666fb66b9baa611342b28f1b77
Amruta Kulkarni 1 year ago
parent
commit
c654a74de0

+ 18 - 0
components/mlme/dispatcher/inc/wlan_mlme_ucfg_api.h

@@ -3189,6 +3189,24 @@ ucfg_mlme_get_emlsr_mode_enabled(struct wlan_objmgr_psoc *psoc, bool *value)
 	return wlan_mlme_get_emlsr_mode_enabled(psoc, value);
 }
 
+/**
+ * ucfg_mlme_set_t2lm_negotiation_supported() - Enables/disables t2lm
+ * negotiation support value
+ * @psoc: psoc context
+ * @value: data to be set
+ *
+ * Inline UCFG API to be used by HDD/OSIF callers to set the
+ * t2lm negotiation supported value
+ *
+ * Return: QDF_STATUS_SUCCESS or QDF_STATUS_FAILURE
+ */
+static inline QDF_STATUS
+ucfg_mlme_set_t2lm_negotiation_supported(struct wlan_objmgr_psoc *psoc,
+					 bool value)
+{
+	return wlan_mlme_set_t2lm_negotiation_supported(psoc, value);
+}
+
 /**
  * ucfg_mlme_get_opr_rate() - Get operational rate set
  * @vdev: pointer to vdev object

+ 17 - 0
core/hdd/src/wlan_hdd_main.c

@@ -1841,11 +1841,27 @@ static bool hdd_dot11Mode_support_11be(enum hdd_dot11_mode dot11Mode)
 
 	return true;
 }
+
+static void
+hdd_update_tid_to_link_supported(struct hdd_context *hdd_ctx,
+				 struct wma_tgt_services *cfg)
+{
+	if (!cfg->en_mlo_tid_to_link_support)
+		ucfg_mlme_set_t2lm_negotiation_supported(hdd_ctx->psoc,
+							 T2LM_NEGOTIATION_DISABLED);
+}
+
 #else
 static bool hdd_dot11Mode_support_11be(enum hdd_dot11_mode dot11Mode)
 {
 	return false;
 }
+
+static inline void
+hdd_update_tid_to_link_supported(struct hdd_context *hdd_ctx,
+				 struct wma_tgt_services *cfg)
+{
+}
 #endif
 
 #ifdef WLAN_FEATURE_11BE_MLO
@@ -2975,6 +2991,7 @@ int hdd_update_tgt_cfg(hdd_handle_t hdd_handle, struct wma_tgt_cfg *cfg)
 		}
 	}
 
+	hdd_update_tid_to_link_supported(hdd_ctx, &cfg->services);
 	mac_handle = hdd_ctx->mac_handle;
 
 	hdd_debug("txBFCsnValue %d", value);

+ 4 - 0
core/wma/inc/wma_tgt_cfg.h

@@ -59,6 +59,7 @@
  * @dynamic_vdev_macaddr_support: Dynamic update of vdev MAC addr is
  *                                supported or not
  * @is_mlo_per_link_stats_supported: Per link mlo stats is supported or not
+ * @en_mlo_tid_to_link_support: Get tid to link fw support
  */
 struct wma_tgt_services {
 	uint32_t sta_power_save;
@@ -116,6 +117,9 @@ struct wma_tgt_services {
 #ifdef WLAN_FEATURE_11BE_MLO
 	bool is_mlo_per_link_stats_supported;
 #endif
+#ifdef WLAN_FEATURE_11BE
+	bool en_mlo_tid_to_link_support;
+#endif
 };
 
 /**

+ 28 - 0
core/wma/src/wma_main.c

@@ -5147,6 +5147,7 @@ wma_get_n_link_mlo_support(struct wmi_unified *wmi_handle,
 		wmi_service_enabled(wmi_handle,
 				    wmi_service_n_link_mlo_support);
 }
+
 #else
 static inline void
 wma_get_tdls_mlo_support(struct wmi_unified *wmi_handle,
@@ -5243,6 +5244,32 @@ static inline void wma_get_dynamic_vdev_macaddr_support(
 }
 #endif
 
+#ifdef WLAN_FEATURE_11BE
+/**
+ * wma_get_mlo_tid_to_link_mapping_support() - update tgt service with
+ * service tid to link mapping support
+ * @wmi_handle: Unified wmi handle
+ * @cfg: target services
+ *
+ * Return: none
+ */
+static inline void
+wma_get_mlo_tid_to_link_mapping_support(struct wmi_unified *wmi_handle,
+					struct wma_tgt_services *cfg)
+{
+	cfg->en_mlo_tid_to_link_support =
+		wmi_service_enabled(wmi_handle,
+				    wmi_service_mlo_tid_to_link_mapping_support);
+}
+
+#else
+static inline void
+wma_get_mlo_tid_to_link_mapping_support(struct wmi_unified *wmi_handle,
+					struct wma_tgt_services *cfg)
+{
+}
+#endif
+
 #ifdef WLAN_FEATURE_NAN
 /**
  * wma_nan_set_pairing_feature() - set feature bit for Secure NAN if max
@@ -5425,6 +5452,7 @@ static inline void wma_update_target_services(struct wmi_unified *wmi_handle,
 	wma_get_dynamic_vdev_macaddr_support(wmi_handle, cfg);
 	wma_get_service_cap_per_link_mlo_stats(wmi_handle, cfg);
 	wma_get_n_link_mlo_support(wmi_handle, cfg);
+	wma_get_mlo_tid_to_link_mapping_support(wmi_handle, cfg);
 }
 
 /**