Browse Source

qcacld-3.0: Fix issue uapsd AC is 0 when set enable_twt 0

After WLAN_TWT_CONV_SUPPORTED enabled, TWT variables are moved from
COMP_MLME to COMP_TWT, APIs are updated too, hdd_update_tgt_twt_cap
just intersects enable_twt and twt_requestor of COMP_TWT instead of
COMP_MLME, legacy variable mlme_cfg->he_caps.dot11_he_cap.twt_request
isn't controlled by ini enable_twt now.

Change-Id: I71bb09704fd96591f37019ebbb77733cff04af25
CRs-Fixed: 3229121
Jianmin Zhu 2 years ago
parent
commit
ab5022192c

+ 18 - 1
components/umac/twt/dispatcher/inc/wlan_twt_cfg_ext_api.h

@@ -52,6 +52,17 @@ wlan_twt_cfg_get_res_flag(struct wlan_objmgr_psoc *psoc, bool *val);
 QDF_STATUS
 wlan_twt_cfg_get_support_in_11n(struct wlan_objmgr_psoc *psoc,
 				bool *val);
+
+/**
+ * wlan_twt_cfg_get_support_requestor() - Get TWT support of requestor
+ * @psoc: Pointer to global psoc object
+ * @val: pointer to output variable
+ *
+ * Return: QDF_STATUS_SUCCESS
+ */
+QDF_STATUS
+wlan_twt_cfg_get_support_requestor(struct wlan_objmgr_psoc *psoc,
+				   bool *val);
 #else
 static inline QDF_STATUS
 wlan_twt_cfg_get_res_flag(struct wlan_objmgr_psoc *psoc, bool *val)
@@ -71,6 +82,12 @@ wlan_twt_cfg_get_support_in_11n(struct wlan_objmgr_psoc *psoc,
 {
 	return QDF_STATUS_SUCCESS;
 }
-#endif
 
+static inline QDF_STATUS
+wlan_twt_cfg_get_support_requestor(struct wlan_objmgr_psoc *psoc,
+				   bool *val)
+{
+	return QDF_STATUS_SUCCESS;
+}
+#endif
 #endif

+ 6 - 0
components/umac/twt/dispatcher/src/wlan_twt_cfg_ext_api.c

@@ -35,3 +35,9 @@ wlan_twt_cfg_get_support_in_11n(struct wlan_objmgr_psoc *psoc, bool *val)
 {
 	return wlan_twt_cfg_get_support_in_11n_mode(psoc, val);
 }
+
+QDF_STATUS
+wlan_twt_cfg_get_support_requestor(struct wlan_objmgr_psoc *psoc, bool *val)
+{
+	return wlan_twt_cfg_get_requestor(psoc, val);
+}

+ 3 - 2
core/mac/src/pe/lim/lim_process_sme_req_messages.c

@@ -2620,14 +2620,15 @@ static bool lim_enable_twt(struct mac_context *mac_ctx, tDot11fBeaconIEs *ie)
 {
 	struct s_ext_cap *ext_cap;
 	bool twt_support_in_11n = false;
+	bool twt_request = false;
 
 	if (!ie) {
 		pe_debug("ie is null");
 		return false;
 	}
 
-	if (mac_ctx->mlme_cfg->he_caps.dot11_he_cap.twt_request &&
-	    (ie->qcn_ie.present || ie->he_cap.twt_responder)) {
+	wlan_twt_cfg_get_support_requestor(mac_ctx->psoc, &twt_request);
+	if (twt_request && (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",
 			  mac_ctx->mlme_cfg->he_caps.dot11_he_cap.twt_request,
 			  ie->he_cap.twt_responder,