|
@@ -8075,6 +8075,79 @@ void lim_update_sta_mlo_info(tpAddStaParams add_sta_params,
|
|
|
QDF_MAC_ADDR_REF(add_sta_params->mld_mac_addr),
|
|
|
add_sta_params->is_assoc_peer);
|
|
|
}
|
|
|
+
|
|
|
+void lim_set_mlo_caps(struct mac_context *mac, struct pe_session *session,
|
|
|
+ uint8_t *ie_start, uint32_t num_bytes)
|
|
|
+{
|
|
|
+ const uint8_t *ie = NULL;
|
|
|
+ tDot11fIEmlo_ie dot11_cap;
|
|
|
+ struct wlan_mlo_ie_info *mlo_ie_info;
|
|
|
+
|
|
|
+ populate_dot11f_mlo_caps(mac, session, &dot11_cap);
|
|
|
+
|
|
|
+ if (!dot11_cap.present)
|
|
|
+ return;
|
|
|
+
|
|
|
+ ie = wlan_get_ext_ie_ptr_from_ext_id(MLO_IE_OUI_TYPE,
|
|
|
+ MLO_IE_OUI_SIZE,
|
|
|
+ ie_start, num_bytes);
|
|
|
+
|
|
|
+ if (ie) {
|
|
|
+ /* convert from unpacked to packed structure */
|
|
|
+ mlo_ie_info = (struct wlan_mlo_ie_info *)&ie[2 + MLO_IE_OUI_SIZE];
|
|
|
+
|
|
|
+ mlo_ie_info->type = dot11_cap.type;
|
|
|
+ mlo_ie_info->reserved = dot11_cap.reserved;
|
|
|
+ mlo_ie_info->mld_mac_addr_present =
|
|
|
+ dot11_cap.mld_mac_addr_present;
|
|
|
+ mlo_ie_info->link_id_info_present =
|
|
|
+ dot11_cap.link_id_info_present;
|
|
|
+ mlo_ie_info->bss_param_change_cnt_present =
|
|
|
+ dot11_cap.bss_param_change_cnt_present;
|
|
|
+ mlo_ie_info->medium_sync_delay_info_present =
|
|
|
+ dot11_cap.medium_sync_delay_info_present;
|
|
|
+ mlo_ie_info->eml_capab_present = dot11_cap.eml_capab_present;
|
|
|
+ mlo_ie_info->mld_capab_present = dot11_cap.mld_capab_present;
|
|
|
+ mlo_ie_info->reserved_1 = dot11_cap.reserved_1;
|
|
|
+ qdf_mem_copy(&mlo_ie_info->mld_mac_addr.info.mld_mac_addr,
|
|
|
+ &dot11_cap.mld_mac_addr.info.mld_mac_addr,
|
|
|
+ QDF_MAC_ADDR_SIZE);
|
|
|
+ ie_start[1] += QDF_MAC_ADDR_SIZE;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+QDF_STATUS lim_send_mlo_caps_ie(struct mac_context *mac_ctx,
|
|
|
+ struct pe_session *session,
|
|
|
+ enum QDF_OPMODE device_mode,
|
|
|
+ uint8_t vdev_id)
|
|
|
+{
|
|
|
+ uint8_t mlo_cap_total_len = DOT11F_IE_MLO_IE_MIN_LEN +
|
|
|
+ EHT_CAP_OUI_LEN + QDF_MAC_ADDR_SIZE;
|
|
|
+ QDF_STATUS status_2g, status_5g;
|
|
|
+ uint8_t mlo_caps[DOT11F_IE_MLO_IE_MIN_LEN +
|
|
|
+ EHT_CAP_OUI_LEN + QDF_MAC_ADDR_SIZE] = {0};
|
|
|
+
|
|
|
+ mlo_caps[0] = DOT11F_EID_MLO_IE;
|
|
|
+ mlo_caps[1] = DOT11F_IE_MLO_IE_MIN_LEN + 1;
|
|
|
+
|
|
|
+ qdf_mem_copy(&mlo_caps[2], MLO_IE_OUI_TYPE, MLO_IE_OUI_SIZE);
|
|
|
+ lim_set_mlo_caps(mac_ctx, session, mlo_caps, mlo_cap_total_len);
|
|
|
+
|
|
|
+ status_2g = lim_send_ie(mac_ctx, vdev_id, DOT11F_EID_MLO_IE,
|
|
|
+ CDS_BAND_2GHZ, &mlo_caps[2],
|
|
|
+ mlo_cap_total_len);
|
|
|
+
|
|
|
+ status_5g = lim_send_ie(mac_ctx, vdev_id, DOT11F_EID_MLO_IE,
|
|
|
+ CDS_BAND_5GHZ, &mlo_caps[2],
|
|
|
+ mlo_cap_total_len);
|
|
|
+
|
|
|
+ if (QDF_IS_STATUS_SUCCESS(status_2g) &&
|
|
|
+ QDF_IS_STATUS_SUCCESS(status_5g)) {
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
+ }
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
+}
|
|
|
+
|
|
|
#endif
|
|
|
|
|
|
#ifdef WLAN_FEATURE_11BE
|