Sfoglia il codice sorgente

qcacld-3.0: Set ep vote access states during suspend and resume

Set ep vote states during wlan suspend and resume opeartions

Change-Id: I5da5fb69ca99ac1d9ecd82cc61cc106eeba8eb47
CRs-Fixed: 2939902
Karthik Kantamneni 3 anni fa
parent
commit
e7f4cae651

+ 19 - 0
components/pmo/core/src/wlan_pmo_suspend_resume.c

@@ -1177,6 +1177,12 @@ QDF_STATUS pmo_core_psoc_bus_runtime_suspend(struct wlan_objmgr_psoc *psoc,
 		hif_process_runtime_suspend_success(hif_ctx);
 	}
 
+	if (hif_try_prevent_ep_vote_access(hif_ctx)) {
+		pmo_debug("Prevent suspend, ep work pending");
+		status = QDF_STATUS_E_BUSY;
+		goto resume_txrx;
+	}
+
 	goto dec_psoc_ref;
 
 resume_txrx:
@@ -1336,12 +1342,22 @@ QDF_STATUS pmo_core_psoc_send_host_wakeup_ind_to_fw(
 			struct pmo_psoc_priv_obj *psoc_ctx)
 {
 	QDF_STATUS status = QDF_STATUS_SUCCESS;
+	void *hif_ctx;
 
 	pmo_enter();
+
+	hif_ctx = pmo_core_psoc_get_hif_handle(psoc);
+	hif_set_ep_vote_access(hif_ctx,
+			       HIF_EP_VOTE_NONDP_ACCESS,
+			       HIF_EP_VOTE_ACCESS_ENABLE);
+
 	qdf_event_reset(&psoc_ctx->wow.target_resume);
 
 	status = pmo_tgt_psoc_send_host_wakeup_ind(psoc);
 	if (status) {
+		hif_set_ep_vote_access(hif_ctx,
+				       HIF_EP_VOTE_NONDP_ACCESS,
+				       HIF_EP_VOTE_ACCESS_DISABLE);
 		status = QDF_STATUS_E_FAILURE;
 		goto out;
 	}
@@ -1361,6 +1377,9 @@ QDF_STATUS pmo_core_psoc_send_host_wakeup_ind_to_fw(
 		pmo_debug("Host wakeup received");
 		pmo_tgt_update_target_suspend_flag(psoc, false);
 		pmo_tgt_update_target_suspend_acked_flag(psoc, false);
+		hif_set_ep_vote_access(hif_ctx,
+				       HIF_EP_VOTE_DP_ACCESS,
+				       HIF_EP_VOTE_ACCESS_ENABLE);
 	}
 out:
 	pmo_exit();

+ 6 - 0
core/hdd/src/wlan_hdd_driver_ops.c

@@ -1228,6 +1228,12 @@ static int __wlan_hdd_bus_suspend(struct wow_enable_params wow_params,
 		goto resume_txrx;
 	}
 
+	if (hif_try_prevent_ep_vote_access(hif_ctx)) {
+		hdd_debug("Prevent suspend, ep work pending");
+		err = QDF_STATUS_E_BUSY;
+		goto resume_txrx;
+	}
+
 	/*
 	 * Remove bus votes at the very end, after making sure there are no
 	 * pending bus transactions from WLAN SOC for TX/RX.