|
@@ -813,7 +813,7 @@ pmo_core_enable_wow_in_fw(struct wlan_objmgr_psoc *psoc,
|
|
|
} else {
|
|
|
pmo_info("Prevent link down, non-drv wow is enabled");
|
|
|
if (hif_ctx) {
|
|
|
- hif_print_runtime_pm_prevent_list(hif_ctx);
|
|
|
+ hif_rtpm_print_prevent_list();
|
|
|
htc_log_link_user_votes();
|
|
|
}
|
|
|
}
|
|
@@ -1131,8 +1131,6 @@ QDF_STATUS pmo_core_psoc_bus_runtime_suspend(struct wlan_objmgr_psoc *psoc,
|
|
|
if (status != QDF_STATUS_SUCCESS)
|
|
|
goto resume_htc;
|
|
|
|
|
|
- hif_pm_set_link_state(hif_ctx, HIF_PM_LINK_STATE_DOWN);
|
|
|
-
|
|
|
status = pmo_core_psoc_bus_suspend_req(psoc, QDF_RUNTIME_SUSPEND,
|
|
|
&wow_params);
|
|
|
if (status != QDF_STATUS_SUCCESS)
|
|
@@ -1174,18 +1172,18 @@ QDF_STATUS pmo_core_psoc_bus_runtime_suspend(struct wlan_objmgr_psoc *psoc,
|
|
|
* shares CE interrupt, there is a chance of wow wakeup
|
|
|
* while suspend is in-progress, so handling such scenario
|
|
|
*/
|
|
|
- hif_pm_runtime_suspend_lock(hif_ctx);
|
|
|
+ hif_rtpm_suspend_lock();
|
|
|
psoc_ctx = pmo_psoc_get_priv(psoc);
|
|
|
if (pmo_core_get_wow_initial_wake_up(psoc_ctx)) {
|
|
|
- hif_pm_runtime_suspend_unlock(hif_ctx);
|
|
|
+ hif_rtpm_suspend_unlock();
|
|
|
pmo_err("Target wake up received before suspend completion");
|
|
|
status = QDF_STATUS_E_BUSY;
|
|
|
goto resume_txrx;
|
|
|
}
|
|
|
- hif_process_runtime_suspend_success(hif_ctx);
|
|
|
- hif_pm_runtime_suspend_unlock(hif_ctx);
|
|
|
+ hif_process_runtime_suspend_success();
|
|
|
+ hif_rtpm_suspend_unlock();
|
|
|
} else {
|
|
|
- hif_process_runtime_suspend_success(hif_ctx);
|
|
|
+ hif_process_runtime_suspend_success();
|
|
|
}
|
|
|
|
|
|
if (hif_try_prevent_ep_vote_access(hif_ctx)) {
|
|
@@ -1211,8 +1209,6 @@ pmo_resume_configure:
|
|
|
PMO_CORE_PSOC_RUNTIME_PM_QDF_BUG(QDF_STATUS_SUCCESS !=
|
|
|
pmo_core_psoc_configure_resume(psoc, true));
|
|
|
|
|
|
- hif_pm_set_link_state(hif_ctx, HIF_PM_LINK_STATE_UP);
|
|
|
-
|
|
|
resume_htc:
|
|
|
PMO_CORE_PSOC_RUNTIME_PM_QDF_BUG(QDF_STATUS_SUCCESS !=
|
|
|
pmo_tgt_psoc_set_runtime_pm_inprogress(psoc, false));
|
|
@@ -1222,7 +1218,7 @@ cdp_runtime_resume:
|
|
|
cdp_runtime_resume(dp_soc, pdev_id));
|
|
|
|
|
|
runtime_failure:
|
|
|
- hif_process_runtime_suspend_failure(hif_ctx);
|
|
|
+ hif_process_runtime_suspend_failure();
|
|
|
|
|
|
/* always make sure HTC queue kicker is at the end, so if any
|
|
|
* cmd is pending during suspending, it can re-trigger if suspend
|
|
@@ -1276,7 +1272,7 @@ QDF_STATUS pmo_core_psoc_bus_runtime_resume(struct wlan_objmgr_psoc *psoc,
|
|
|
goto dec_psoc_ref;
|
|
|
}
|
|
|
|
|
|
- hif_pre_runtime_resume(hif_ctx);
|
|
|
+ hif_pre_runtime_resume();
|
|
|
if (pld_cb) {
|
|
|
begin = qdf_get_log_timestamp_usecs();
|
|
|
ret = pld_cb();
|
|
@@ -1302,7 +1298,7 @@ QDF_STATUS pmo_core_psoc_bus_runtime_resume(struct wlan_objmgr_psoc *psoc,
|
|
|
if (QDF_IS_STATUS_ERROR(status))
|
|
|
goto fail;
|
|
|
|
|
|
- hif_pm_set_link_state(hif_ctx, HIF_PM_LINK_STATE_UP);
|
|
|
+ hif_process_runtime_resume_linkup();
|
|
|
|
|
|
status = pmo_core_psoc_configure_resume(psoc, true);
|
|
|
if (status != QDF_STATUS_SUCCESS)
|
|
@@ -1312,7 +1308,7 @@ QDF_STATUS pmo_core_psoc_bus_runtime_resume(struct wlan_objmgr_psoc *psoc,
|
|
|
if (status != QDF_STATUS_SUCCESS)
|
|
|
goto fail;
|
|
|
|
|
|
- hif_process_runtime_resume_success(hif_ctx);
|
|
|
+ hif_process_runtime_resume_success();
|
|
|
|
|
|
if (htc_runtime_resume(htc_ctx)) {
|
|
|
status = QDF_STATUS_E_FAILURE;
|