summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gxp-pm.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/gxp-pm.c b/gxp-pm.c
index ca8c795..5ed9612 100644
--- a/gxp-pm.c
+++ b/gxp-pm.c
@@ -77,6 +77,12 @@ static int gxp_pm_blkpwr_down(struct gxp_dev *gxp)
*/
lpm_write_32_psm(gxp, LPM_TOP_PSM, LPM_REG_ENABLE_STATE_1, 0x0);
lpm_write_32_psm(gxp, LPM_TOP_PSM, LPM_REG_ENABLE_STATE_2, 0x0);
+ if (!gxp_lpm_wait_state_eq(gxp, LPM_TOP_PSM, LPM_ACTIVE_STATE)) {
+ dev_err(gxp->dev,
+ "failed to force TOP LPM to PS0 during blk down\n");
+ return -EAGAIN;
+ }
+
ret = pm_runtime_put_sync(gxp->dev);
if (ret)
/*