Sfoglia il codice sorgente

qcacld-3.0: Handle TWT session if power save mode disable

In case if .set_power_mgmt command comes with ps disable,
then driver needs to teardown all existing twt sessions on
STA interface and if any TWT setup request command comes
after ps disable then also driver rejects the command.

Change-Id: Ib7c86fd257c52b9bac57124b744dc7a9e8405560
CRs-Fixed: 2997260
Deeksha Gupta 3 anni fa
parent
commit
a6a66909f0

+ 19 - 0
core/hdd/inc/wlan_hdd_twt.h

@@ -306,6 +306,18 @@ void hdd_twt_update_work_handler(void *data);
  */
 void wlan_twt_concurrency_update(struct hdd_context *hdd_ctx);
 
+/**
+ * hdd_twt_del_dialog_in_ps_disable() - TWT teardown in case of ps disable
+ * @hdd_ctx: hdd context pointer
+ * @mac_addr: STA mac address
+ * @vdev_id: vdev id
+ *
+ * Return: None
+ */
+void hdd_twt_del_dialog_in_ps_disable(struct hdd_context *hdd_ctx,
+				      struct qdf_mac_addr *mac_addr,
+				      uint8_t vdev_id);
+
 #define FEATURE_VENDOR_SUBCMD_WIFI_CONFIG_TWT                            \
 {                                                                        \
 	.info.vendor_id = QCA_NL80211_VENDOR_ID,                         \
@@ -407,6 +419,13 @@ static inline void wlan_twt_concurrency_update(struct hdd_context *hdd_ctx)
 {
 }
 
+static inline
+void hdd_twt_del_dialog_in_ps_disable(struct hdd_context *hdd_ctx,
+				      struct qdf_mac_addr *mac_addr,
+				      uint8_t vdev_id)
+{
+}
+
 #define FEATURE_VENDOR_SUBCMD_WIFI_CONFIG_TWT
 
 #endif

+ 17 - 1
core/hdd/src/wlan_hdd_power.c

@@ -1915,6 +1915,7 @@ int wlan_hdd_set_powersave(struct hdd_adapter *adapter,
 	struct hdd_context *hdd_ctx;
 	QDF_STATUS status = QDF_STATUS_SUCCESS;
 	bool is_bmps_enabled;
+	struct hdd_station_ctx *hdd_sta_ctx = NULL;
 
 	if (!adapter) {
 		hdd_err("Adapter NULL");
@@ -1927,6 +1928,12 @@ int wlan_hdd_set_powersave(struct hdd_adapter *adapter,
 		return -EINVAL;
 	}
 
+	hdd_sta_ctx = WLAN_HDD_GET_STATION_CTX_PTR(adapter);
+	if (!hdd_sta_ctx) {
+		hdd_err("hdd_sta_context is NULL");
+		return -EINVAL;
+	}
+
 	hdd_debug("Allow power save: %d", allow_power_save);
 	mac_handle = hdd_ctx->mac_handle;
 
@@ -1992,10 +1999,19 @@ int wlan_hdd_set_powersave(struct hdd_adapter *adapter,
 			goto end;
 
 		ucfg_mlme_is_bmps_enabled(hdd_ctx->psoc, &is_bmps_enabled);
-		if (is_bmps_enabled)
+		if (is_bmps_enabled) {
 			status = sme_ps_enable_disable(mac_handle,
 						       adapter->vdev_id,
 						       SME_PS_DISABLE);
+			if (status != QDF_STATUS_SUCCESS)
+				goto end;
+		}
+
+		if (adapter->device_mode == QDF_STA_MODE) {
+			hdd_twt_del_dialog_in_ps_disable(hdd_ctx,
+						&hdd_sta_ctx->conn_info.bssid,
+						adapter->vdev_id);
+		}
 	}
 
 end:

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

@@ -1226,6 +1226,8 @@ int wmi_twt_del_status_to_vendor_twt_status(enum WMI_HOST_DEL_TWT_STATUS status)
 		return QCA_WLAN_VENDOR_TWT_STATUS_CHANNEL_SWITCH_IN_PROGRESS;
 	case WMI_HOST_DEL_TWT_STATUS_SCAN_IN_PROGRESS:
 		return QCA_WLAN_VENDOR_TWT_STATUS_SCAN_IN_PROGRESS;
+	case WMI_HOST_DEL_TWT_STATUS_PS_DISABLE_TEARDOWN:
+		return QCA_WLAN_VENDOR_TWT_STATUS_POWER_SAVE_EXIT_TERMINATE;
 	default:
 		return QCA_WLAN_VENDOR_TWT_STATUS_UNKNOWN_ERROR;
 	}
@@ -4501,6 +4503,27 @@ void wlan_twt_concurrency_update(struct hdd_context *hdd_ctx)
 	qdf_sched_work(0, &hdd_ctx->twt_en_dis_work);
 }
 
+void hdd_twt_del_dialog_in_ps_disable(struct hdd_context *hdd_ctx,
+				      struct qdf_mac_addr *mac_addr,
+				      uint8_t vdev_id)
+{
+	struct wmi_twt_del_dialog_param params = {0};
+	int ret;
+
+	params.dialog_id = WLAN_ALL_SESSIONS_DIALOG_ID;
+	params.vdev_id = vdev_id;
+	qdf_mem_copy(params.peer_macaddr, mac_addr->bytes, QDF_MAC_ADDR_SIZE);
+
+	if (ucfg_mlme_is_twt_setup_done(hdd_ctx->psoc, mac_addr,
+					params.dialog_id)) {
+		hdd_debug("vdev%d: Terminate existing TWT session %d due to ps disable",
+			  params.vdev_id, params.dialog_id);
+		ret = hdd_send_twt_del_dialog_cmd(hdd_ctx, &params);
+		if (ret)
+			hdd_debug("TWT teardown is failed on vdev: %d", vdev_id);
+	}
+}
+
 void wlan_hdd_twt_init(struct hdd_context *hdd_ctx)
 {
 	QDF_STATUS status;

+ 9 - 0
core/sme/src/common/sme_api.c

@@ -2244,6 +2244,10 @@ sme_process_sta_twt_del_dialog_event(
 		return;
 	}
 
+	if (!mac->usr_cfg_ps_enable &&
+	    param->status == WMI_HOST_DEL_TWT_STATUS_OK)
+		param->status = WMI_HOST_DEL_TWT_STATUS_PS_DISABLE_TEARDOWN;
+
 	callback = mac->sme.twt_del_dialog_cb;
 	if (callback)
 		callback(mac->psoc, param);
@@ -13521,6 +13525,11 @@ QDF_STATUS sme_add_dialog_cmd(mac_handle_t mac_handle,
 
 	SME_ENTER();
 
+	if (!mac->usr_cfg_ps_enable) {
+		sme_debug("Power save mode disable");
+		return QDF_STATUS_E_INVAL;
+	}
+
 	is_twt_notify_in_progress = mlme_is_twt_notify_in_progress(
 			mac->psoc, twt_params->vdev_id);