|
@@ -10993,6 +10993,7 @@ QDF_STATUS populate_dot11f_assoc_req_mlo_ie(struct mac_context *mac_ctx,
|
|
|
tDot11fIEeht_cap eht_caps;
|
|
|
tDot11fIESuppRates supp_rates;
|
|
|
tDot11fIEExtSuppRates ext_supp_rates;
|
|
|
+ struct wlan_mlo_eml_cap eml_cap;
|
|
|
uint16_t presence_bitmap = 0;
|
|
|
bool is_2g;
|
|
|
|
|
@@ -11039,13 +11040,19 @@ QDF_STATUS populate_dot11f_assoc_req_mlo_ie(struct mac_context *mac_ctx,
|
|
|
*/
|
|
|
if (wlan_vdev_mlme_cap_get(pe_session->vdev, WLAN_VDEV_C_EMLSR_CAP) &&
|
|
|
!policy_mgr_get_connection_count(psoc)) {
|
|
|
+ wlan_mlme_get_eml_params(psoc, &eml_cap);
|
|
|
mlo_ie->eml_capab_present = 1;
|
|
|
presence_bitmap |= WLAN_ML_BV_CTRL_PBM_EMLCAP_P;
|
|
|
mlo_ie->common_info_length += WLAN_ML_BV_CINFO_EMLCAP_SIZE;
|
|
|
- mlo_ie->eml_capabilities_info.emlsr_support = 1;
|
|
|
- mlo_ie->eml_capabilities_info.emlmr_support = 0;
|
|
|
+ mlo_ie->eml_capabilities_info.emlsr_support =
|
|
|
+ eml_cap.emlsr_supp;
|
|
|
+ mlo_ie->eml_capabilities_info.emlmr_support =
|
|
|
+ eml_cap.emlmr_supp;
|
|
|
mlo_ie->eml_capabilities_info.transition_timeout = 0;
|
|
|
- mlo_ie->eml_capabilities_info.emlsr_padding_delay = 0;
|
|
|
+ mlo_ie->eml_capabilities_info.emlsr_padding_delay =
|
|
|
+ eml_cap.emlsr_pad_delay;
|
|
|
+ mlo_ie->eml_capabilities_info.emlsr_transition_delay =
|
|
|
+ eml_cap.emlsr_trans_delay;
|
|
|
}
|
|
|
|
|
|
p_ml_ie = mlo_ie->data;
|
|
@@ -11079,10 +11086,36 @@ QDF_STATUS populate_dot11f_assoc_req_mlo_ie(struct mac_context *mac_ctx,
|
|
|
WLAN_ML_BV_CINFO_EMLCAP_EMLSRSUPPORT_IDX,
|
|
|
WLAN_ML_BV_CINFO_EMLCAP_EMLSRSUPPORT_BITS,
|
|
|
mlo_ie->eml_capabilities_info.emlsr_support);
|
|
|
+ QDF_SET_BITS(*(uint16_t *)p_ml_ie,
|
|
|
+ WLAN_ML_BV_CINFO_EMLCAP_EMLSR_PADDINGDELAY_IDX,
|
|
|
+ WLAN_ML_BV_CINFO_EMLCAP_EMLSR_PADDINGDELAY_BITS,
|
|
|
+ mlo_ie->eml_capabilities_info.emlsr_padding_delay);
|
|
|
+ QDF_SET_BITS(*(uint16_t *)p_ml_ie,
|
|
|
+ WLAN_ML_BV_CINFO_EMLCAP_EMLSRTRANSDELAY_IDX,
|
|
|
+ WLAN_ML_BV_CINFO_EMLCAP_EMLSRTRANSDELAY_BITS,
|
|
|
+ mlo_ie->eml_capabilities_info.emlsr_transition_delay);
|
|
|
+ QDF_SET_BITS(*(uint16_t *)p_ml_ie,
|
|
|
+ WLAN_ML_BV_CINFO_EMLCAP_EMLMRSUPPORT_IDX,
|
|
|
+ WLAN_ML_BV_CINFO_EMLCAP_EMLMRSUPPORT_BITS,
|
|
|
+ mlo_ie->eml_capabilities_info.emlmr_support);
|
|
|
+ QDF_SET_BITS(*(uint16_t *)p_ml_ie,
|
|
|
+ WLAN_ML_BV_CINFO_EMLCAP_EMLMRDELAY_IDX,
|
|
|
+ WLAN_ML_BV_CINFO_EMLCAP_EMLMRDELAY_BITS,
|
|
|
+ mlo_ie->eml_capabilities_info.emlmr_delay);
|
|
|
+ QDF_SET_BITS(*(uint16_t *)p_ml_ie,
|
|
|
+ WLAN_ML_BV_CINFO_EMLCAP_TRANSTIMEOUT_IDX,
|
|
|
+ WLAN_ML_BV_CINFO_EMLCAP_TRANSTIMEOUT_BITS,
|
|
|
+ mlo_ie->eml_capabilities_info.transition_timeout);
|
|
|
+
|
|
|
p_ml_ie += WLAN_ML_BV_CINFO_EMLCAP_SIZE;
|
|
|
len_remaining -= WLAN_ML_BV_CINFO_EMLCAP_SIZE;
|
|
|
}
|
|
|
|
|
|
+ pe_debug("EMLSR support: %d, padding delay: %d, transition delay: %d",
|
|
|
+ mlo_ie->eml_capabilities_info.emlsr_support,
|
|
|
+ mlo_ie->eml_capabilities_info.emlsr_padding_delay,
|
|
|
+ mlo_ie->eml_capabilities_info.emlsr_transition_delay);
|
|
|
+
|
|
|
if (mlo_ie->mld_capab_and_op_present) {
|
|
|
QDF_SET_BITS(*(uint16_t *)p_ml_ie,
|
|
|
WLAN_ML_BV_CINFO_MLDCAPANDOP_MAXSIMULLINKS_IDX,
|