ソースを参照

qcacld-3.0: Add support for TWT enable

Add support for TWT enable operation.

Change-Id: I567cd3cdcf8b128b1a617573db287e84a90ac637
CRs-Fixed: 3085519
Srinivas Girigowda 3 年 前
コミット
092972d9f7

+ 16 - 0
core/hdd/src/wlan_hdd_twt.c

@@ -62,6 +62,22 @@ void hdd_update_tgt_twt_cap(struct hdd_context *hdd_ctx,
 	ucfg_twt_update_psoc_config(hdd_ctx->psoc);
 }
 
+QDF_STATUS hdd_send_twt_responder_enable_cmd(struct hdd_context *hdd_ctx)
+{
+	uint8_t pdev_id = hdd_ctx->pdev->pdev_objmgr.wlan_pdev_id;
+
+	osif_twt_send_responder_enable_cmd(hdd_ctx->psoc, pdev_id);
+	return QDF_STATUS_SUCCESS;
+}
+
+QDF_STATUS hdd_send_twt_requestor_enable_cmd(struct hdd_context *hdd_ctx)
+{
+	uint8_t pdev_id = hdd_ctx->pdev->pdev_objmgr.wlan_pdev_id;
+
+	osif_twt_send_requestor_enable_cmd(hdd_ctx->psoc, pdev_id);
+	return QDF_STATUS_SUCCESS;
+}
+
 #elif defined(WLAN_SUPPORT_TWT)
 
 #define TWT_DISABLE_COMPLETE_TIMEOUT 1000

+ 23 - 0
os_if/twt/src/osif_twt_ext_req.c

@@ -21,6 +21,7 @@
 #include <wlan_objmgr_vdev_obj.h>
 #include <wlan_twt_ucfg_api.h>
 #include <wlan_twt_ucfg_ext_api.h>
+#include <osif_twt_req.h>
 #include <osif_twt_ext_req.h>
 #include <wlan_policy_mgr_api.h>
 #include <wlan_cm_api.h>
@@ -40,6 +41,28 @@
 #define TWT_SETUP_WAKE_INTVL_EXP_MAX            31
 #define TWT_MAX_NEXT_TWT_SIZE                   3
 
+int osif_twt_send_requestor_enable_cmd(struct wlan_objmgr_psoc *psoc,
+				       uint8_t pdev_id)
+{
+	struct twt_enable_param req = {0};
+
+	req.pdev_id = pdev_id;
+	req.ext_conf_present = true;
+
+	return osif_twt_requestor_enable(psoc, &req);
+}
+
+int osif_twt_send_responder_enable_cmd(struct wlan_objmgr_psoc *psoc,
+				       uint8_t pdev_id)
+{
+	struct twt_enable_param req = {0};
+
+	req.pdev_id = pdev_id;
+	req.ext_conf_present = true;
+
+	return osif_twt_responder_enable(psoc, &req);
+}
+
 int osif_twt_setup_req(struct wlan_objmgr_vdev *vdev,
 		       struct nlattr *twt_param_attr)
 {

+ 2 - 0
os_if/twt/src/osif_twt_ext_rsp.c

@@ -20,9 +20,11 @@
  */
 #include <wlan_cfg80211.h>
 #include <osif_twt_ext_req.h>
+#include <osif_twt_rsp.h>
 #include <osif_twt_ext_rsp.h>
 #include <wlan_objmgr_psoc_obj.h>
 #include <wlan_osif_priv.h>
+#include <wlan_osif_request_manager.h>
 
 QDF_STATUS
 osif_twt_setup_complete_cb(struct wlan_objmgr_psoc *psoc,