|
@@ -11723,6 +11723,27 @@ hdd_test_config_emlsr_action_mode(struct hdd_adapter *adapter,
|
|
|
#endif
|
|
|
|
|
|
#ifdef WLAN_FEATURE_11BE
|
|
|
+/**
|
|
|
+ * hdd_set_eht_emlsr_capability() - Set EMLSR capability for EHT STA
|
|
|
+ * @link_info: Link info pointer in HDD adapter
|
|
|
+ * @attr: pointer to nla attr
|
|
|
+ *
|
|
|
+ * Return: 0 on success, negative on failure
|
|
|
+ */
|
|
|
+static int
|
|
|
+hdd_set_eht_emlsr_capability(struct wlan_hdd_link_info *link_info,
|
|
|
+ const struct nlattr *attr)
|
|
|
+{
|
|
|
+ uint8_t cfg_val;
|
|
|
+ struct hdd_context *hdd_ctx = WLAN_HDD_GET_CTX(link_info->adapter);
|
|
|
+
|
|
|
+ cfg_val = nla_get_u8(attr);
|
|
|
+ hdd_debug("EMLSR capable: %d", cfg_val);
|
|
|
+ hdd_test_config_emlsr_mode(hdd_ctx, cfg_val);
|
|
|
+
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* hdd_set_eht_max_simultaneous_links() - Set EHT maximum number of
|
|
|
* simultaneous links
|
|
@@ -11825,6 +11846,13 @@ static int hdd_set_eht_mlo_mode(struct wlan_hdd_link_info *link_info,
|
|
|
return 0;
|
|
|
}
|
|
|
#else
|
|
|
+static inline int
|
|
|
+hdd_set_eht_emlsr_capability(struct wlan_hdd_link_info *link_info,
|
|
|
+ const struct nlattr *attr)
|
|
|
+{
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
static inline int
|
|
|
hdd_set_eht_max_simultaneous_links(struct wlan_hdd_link_info *link_info,
|
|
|
const struct nlattr *attr)
|
|
@@ -12185,6 +12213,8 @@ static const struct independent_setters independent_setters[] = {
|
|
|
|
|
|
{QCA_WLAN_VENDOR_ATTR_CONFIG_WFC_STATE,
|
|
|
hdd_set_wfc_state},
|
|
|
+ {QCA_WLAN_VENDOR_ATTR_CONFIG_EHT_EML_CAPABILITY,
|
|
|
+ hdd_set_eht_emlsr_capability},
|
|
|
{QCA_WLAN_VENDOR_ATTR_CONFIG_EHT_MLO_MAX_SIMULTANEOUS_LINKS,
|
|
|
hdd_set_eht_max_simultaneous_links},
|
|
|
{QCA_WLAN_VENDOR_ATTR_CONFIG_EPCS_CAPABILITY,
|