|
@@ -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();
|