Преглед изворни кода

qcacld-3.0: Add support to configure T2LM support

Add vendor command support to configure T2LM
negotiation support.

Change-Id: I492e07b7ebaf38c8afe182ec9c53bb5fc062b906
CRs-Fixed: 3590779
Gururaj Pandurangi пре 1 година
родитељ
комит
3eb228c3b9
2 измењених фајлова са 82 додато и 0 уклоњено
  1. 23 0
      components/mlme/dispatcher/inc/cfg_mlme_generic.h
  2. 59 0
      core/hdd/src/wlan_hdd_cfg80211.c

+ 23 - 0
components/mlme/dispatcher/inc/cfg_mlme_generic.h

@@ -99,6 +99,29 @@ enum wlan_emlsr_action_mode {
 	WLAN_EMLSR_MODE_MAX = WLAN_EMLSR_MODE_LAST - 1,
 };
 
+/**
+ * enum wlan_t2lm_negotiation_support - TID-to-link mapping negotiation support
+ * @WLAN_T2LM_DISABLE: T2LM support is disabled
+ * @WLAN_T2LM_SAME_LINK_SET: Mapping of all TIDs to the same link set, both DL
+ * and UL
+ * @WLAN_T2LM_RESERVED: This value is Reserved
+ * @WLAN_T2LM_SAME_DIFF_LINK_SET: Mapping of each TID to the same or different
+ * link set
+ * @WLAN_T2LM_SUPPORT_LAST: last value in enum
+ * @WLAN_T2LM_SUPPORT_MAX: max value supported
+ *
+ * This is used for 'type' values in T2LM support
+ */
+enum wlan_t2lm_negotiation_support {
+	WLAN_T2LM_DISABLE            = 0,
+	WLAN_T2LM_SAME_LINK_SET      = 1,
+	WLAN_T2LM_RESERVED           = 2,
+	WLAN_T2LM_SAME_DIFF_LINK_SET = 3,
+	/* keep this last */
+	WLAN_T2LM_SUPPORT_LAST,
+	WLAN_T2LM_SUPPORT_MAX = WLAN_T2LM_SUPPORT_LAST - 1,
+};
+
 /**
  * enum debug_packet_log_type - Debug packet log type
  * @DEBUG_PKTLOG_TYPE_NONE: Debug packet log is disabled

+ 59 - 0
core/hdd/src/wlan_hdd_cfg80211.c

@@ -8495,6 +8495,8 @@ const struct nla_policy wlan_hdd_wifi_config_policy[
 	[QCA_WLAN_VENDOR_ATTR_CONFIG_MLO_LINKS] = {
 		.type = NLA_NESTED },
 	[QCA_WLAN_VENDOR_ATTR_CONFIG_PEER_AMPDU_CNT] = {.type = NLA_U16},
+	[QCA_WLAN_VENDOR_ATTR_CONFIG_TTLM_NEGOTIATION_SUPPORT] = {
+		.type = NLA_U8},
 };
 
 #define WLAN_MAX_LINK_ID 15
@@ -11807,6 +11809,31 @@ hdd_get_cfg_emlsr_mode(enum qca_wlan_eht_mlo_mode qca_wlan_emlsr_mode)
 	}
 }
 
+/**
+ * hdd_get_cfg_t2lm_neg_support_type() - Convert qca wlan TID-to-link mapping
+ * enum to cfg wlan
+ *
+ * @qca_wlan_t2lm_support: qca wlan TID-to-link mapping
+ *
+ * Return: TID-to-link mapping support on success, 0 on failure
+ */
+static enum wlan_t2lm_negotiation_support
+hdd_get_cfg_t2lm_neg_support_type(enum qca_wlan_ttlm_negotiation_support
+				  qca_wlan_t2lm_support)
+{
+	switch (qca_wlan_t2lm_support) {
+	case QCA_WLAN_TTLM_DISABLE:
+		return WLAN_T2LM_DISABLE;
+	case QCA_WLAN_TTLM_SAME_LINK_SET:
+		return WLAN_T2LM_SAME_LINK_SET;
+	case QCA_WLAN_TTLM_SAME_DIFF_LINK_SET:
+		return WLAN_T2LM_SAME_DIFF_LINK_SET;
+	default:
+		hdd_debug("Invalid T2LM negotiation support");
+		return WLAN_T2LM_DISABLE;
+	}
+}
+
 static int hdd_set_emlsr_mode(struct wlan_hdd_link_info *link_info,
 			      const struct nlattr *attr)
 {
@@ -11828,6 +11855,29 @@ static int hdd_set_emlsr_mode(struct wlan_hdd_link_info *link_info,
 
 	return 0;
 }
+
+static int hdd_set_t2lm_negotiation_support(struct wlan_hdd_link_info *link_info,
+					    const struct nlattr *attr)
+{
+	struct hdd_context *hdd_ctx = NULL;
+	uint8_t cfg_val;
+	enum wlan_t2lm_negotiation_support t2lm_support;
+
+	if (!attr)
+		return -EINVAL;
+
+	cfg_val = nla_get_u8(attr);
+
+	t2lm_support = hdd_get_cfg_t2lm_neg_support_type(cfg_val);
+	hdd_debug("T2LM negotiation support: %d", t2lm_support);
+
+	hdd_ctx = WLAN_HDD_GET_CTX(link_info->adapter);
+
+	wlan_mlme_set_t2lm_negotiation_supported(hdd_ctx->psoc,
+						 t2lm_support);
+
+	return 0;
+}
 #else
 static inline int
 hdd_set_link_force_active(struct wlan_hdd_link_info *link_info,
@@ -11843,6 +11893,13 @@ int hdd_set_emlsr_mode(struct wlan_hdd_link_info *link_info,
 	return 0;
 }
 
+static inline
+int hdd_set_t2lm_negotiation_support(struct wlan_hdd_link_info *link_info,
+				     const struct nlattr *attr)
+{
+	return 0;
+}
+
 static inline int
 hdd_set_epcs_capability(struct wlan_hdd_link_info *link_info,
 			const struct nlattr *attr)
@@ -12052,6 +12109,8 @@ static const struct independent_setters independent_setters[] = {
 	 hdd_set_ul_mu_config},
 	{QCA_WLAN_VENDOR_ATTR_CONFIG_AP_ALLOWED_FREQ_LIST,
 	 hdd_set_master_channel_list},
+	{QCA_WLAN_VENDOR_ATTR_CONFIG_TTLM_NEGOTIATION_SUPPORT,
+	 hdd_set_t2lm_negotiation_support},
 };
 
 #ifdef WLAN_FEATURE_ELNA