|
@@ -7328,23 +7328,25 @@ populate_dot11f_twt_he_cap(struct mac_context *mac,
|
|
|
struct pe_session *session,
|
|
|
tDot11fIEhe_cap *he_cap)
|
|
|
{
|
|
|
- bool bcast_requestor =
|
|
|
- mac->mlme_cfg->twt_cfg.is_bcast_requestor_enabled &&
|
|
|
- !mac->mlme_cfg->twt_cfg.disable_btwt_usr_cfg;
|
|
|
- bool bcast_responder =
|
|
|
- mac->mlme_cfg->twt_cfg.is_bcast_responder_enabled;
|
|
|
+ bool twt_requestor = false;
|
|
|
+ bool twt_responder = false;
|
|
|
+ bool bcast_requestor = false;
|
|
|
+ bool bcast_responder = false;
|
|
|
+
|
|
|
+ wlan_twt_get_bcast_requestor_cfg(mac->psoc, &bcast_requestor);
|
|
|
+ bcast_requestor = bcast_requestor &&
|
|
|
+ !mac->mlme_cfg->twt_cfg.disable_btwt_usr_cfg;
|
|
|
+ wlan_twt_get_bcast_responder_cfg(mac->psoc, &bcast_responder);
|
|
|
+ wlan_twt_get_requestor_cfg(mac->psoc, &twt_requestor);
|
|
|
+ wlan_twt_get_responder_cfg(mac->psoc, &twt_responder);
|
|
|
|
|
|
he_cap->broadcast_twt = 0;
|
|
|
- if (session->opmode == QDF_STA_MODE &&
|
|
|
- !twt_get_requestor_flag(mac)) {
|
|
|
- /* Set twt_request as 0 if any SCC/MCC concurrency exist */
|
|
|
- he_cap->twt_request = 0;
|
|
|
- return;
|
|
|
- } else if (session->opmode == QDF_SAP_MODE &&
|
|
|
- !twt_get_responder_flag(mac)) {
|
|
|
- /** Set twt_responder as 0 if any SCC/MCC concurrency exist */
|
|
|
- he_cap->twt_responder = 0;
|
|
|
- return;
|
|
|
+ if (session->opmode == QDF_STA_MODE ||
|
|
|
+ session->opmode == QDF_SAP_MODE) {
|
|
|
+ he_cap->twt_request =
|
|
|
+ twt_requestor && twt_get_requestor_flag(mac);
|
|
|
+ he_cap->twt_responder =
|
|
|
+ twt_responder && twt_get_responder_flag(mac);
|
|
|
}
|
|
|
|
|
|
if (session->opmode == QDF_STA_MODE) {
|
|
@@ -7423,13 +7425,17 @@ QDF_STATUS populate_dot11f_he_caps(struct mac_context *mac_ctx, struct pe_sessio
|
|
|
QDF_STATUS
|
|
|
populate_dot11f_he_caps_by_band(struct mac_context *mac_ctx,
|
|
|
bool is_2g,
|
|
|
- tDot11fIEhe_cap *he_cap)
|
|
|
+ tDot11fIEhe_cap *he_cap,
|
|
|
+ struct pe_session *session)
|
|
|
{
|
|
|
if (is_2g)
|
|
|
qdf_mem_copy(he_cap, &mac_ctx->he_cap_2g, sizeof(*he_cap));
|
|
|
else
|
|
|
qdf_mem_copy(he_cap, &mac_ctx->he_cap_5g, sizeof(*he_cap));
|
|
|
|
|
|
+ if (session)
|
|
|
+ populate_dot11f_twt_he_cap(mac_ctx, session, he_cap);
|
|
|
+
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
}
|
|
|
|
|
@@ -12050,7 +12056,8 @@ QDF_STATUS populate_dot11f_assoc_req_mlo_ie(struct mac_context *mac_ctx,
|
|
|
DOT11F_EID_VHTCAPS;
|
|
|
}
|
|
|
|
|
|
- populate_dot11f_he_caps_by_band(mac_ctx, is_2g, &he_caps);
|
|
|
+ populate_dot11f_he_caps_by_band(mac_ctx, is_2g, &he_caps,
|
|
|
+ pe_session);
|
|
|
if (he_caps.ppet_present) {
|
|
|
value = WNI_CFG_HE_PPET_LEN;
|
|
|
if (!is_2g)
|