Browse Source

qcacld-3.0: Handle TWT for 11n case

When SAP and STA both are in 11n mode then STA doesn't populate
twt_req bit during assoc req. Because of this TWT commands failed.

As part of fix, check the below variable before setting twt_req
1. TWT requestor support from firmware
2. Enable TWT ini
3. TWT ini support in 11n
4. TWT requestor support from host

Set twt_requestor bit only if all above variable are set.

Change-Id: I77f2397f986b517cd5292109927eece7fdb4c7c1
CRs-Fixed: 3210015
Jyoti Kumari 2 years ago
parent
commit
e526ca28f2

+ 9 - 0
components/umac/twt/core/src/wlan_twt_cfg.c

@@ -323,6 +323,9 @@ wlan_twt_cfg_get_support_in_11n_mode(struct wlan_objmgr_psoc *psoc,
 				     bool *val)
 {
 	struct twt_psoc_priv_obj *twt_psoc_obj;
+	psoc_twt_ext_cfg_params_t *twt_cfg;
+	struct twt_tgt_caps *tgt_caps;
+	bool enable_twt;
 
 	twt_psoc_obj = wlan_twt_psoc_get_comp_private_obj(psoc);
 	if (!twt_psoc_obj) {
@@ -331,6 +334,12 @@ wlan_twt_cfg_get_support_in_11n_mode(struct wlan_objmgr_psoc *psoc,
 	}
 
 	*val = twt_psoc_obj->cfg_params.is_twt_enabled_in_11n;
+	twt_cfg = &twt_psoc_obj->cfg_params;
+	tgt_caps = &twt_psoc_obj->twt_caps;
+	enable_twt = twt_cfg->enable_twt;
+
+	*val = QDF_MIN(tgt_caps->twt_requestor,
+		       (enable_twt && twt_cfg->twt_requestor && *val));
 
 	return QDF_STATUS_SUCCESS;
 }

+ 16 - 0
core/mac/src/pe/lim/lim_process_sme_req_messages.c

@@ -68,6 +68,7 @@
 #include <lim_mlo.h>
 #include <wlan_vdev_mgr_utils_api.h>
 #include "cfg_ucfg_api.h"
+#include "wlan_twt_cfg_ext_api.h"
 
 /* SME REQ processing function templates */
 static bool __lim_process_sme_sys_ready_ind(struct mac_context *, uint32_t *);
@@ -2647,6 +2648,9 @@ lim_fill_dot11_mode(struct mac_context *mac_ctx, struct pe_session *session,
 #ifdef WLAN_FEATURE_11AX
 static bool lim_enable_twt(struct mac_context *mac_ctx, tDot11fBeaconIEs *ie)
 {
+	struct s_ext_cap *ext_cap;
+	bool twt_support_in_11n = false;
+
 	if (mac_ctx->mlme_cfg->he_caps.dot11_he_cap.twt_request && ie &&
 	    (ie->qcn_ie.present || ie->he_cap.twt_responder)) {
 		pe_debug("TWT is supported, hence disable UAPSD; twt req supp: %d,twt respon supp: %d, QCN_IE: %d",
@@ -2655,6 +2659,18 @@ static bool lim_enable_twt(struct mac_context *mac_ctx, tDot11fBeaconIEs *ie)
 			  ie->qcn_ie.present);
 		return true;
 	}
+
+	wlan_twt_cfg_get_support_in_11n(mac_ctx->psoc,
+					&twt_support_in_11n);
+	ext_cap = (struct s_ext_cap *)ie->ExtCap.bytes;
+	if (twt_support_in_11n && ie->ExtCap.present &&
+	    ext_cap->twt_responder_support) {
+		pe_debug("TWT is supported for 11n, twt_support_in_11n %d, ext_cap %d, twt_responder support %d",
+			 twt_support_in_11n, ie->ExtCap.present,
+			 ext_cap->twt_responder_support);
+		return true;
+	}
+
 	return false;
 }
 #else