Commit d38c4ae1 authored by Jeffy Chen's avatar Jeffy Chen Committed by Mark Brown

spi: rockchip: Fix clock handling in suspend/resume

The runtime suspend callback might be called by pm domain framework at
suspend_noirq stage. It would try to disable the clocks which already
been disabled by rockchip_spi_suspend.

Call pm_runtime_force_suspend/pm_runtime_force_resume when
suspend/resume to avoid that.
Signed-off-by: default avatarJeffy Chen <jeffy.chen@rock-chips.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 6a06e895
...@@ -846,10 +846,9 @@ static int rockchip_spi_suspend(struct device *dev) ...@@ -846,10 +846,9 @@ static int rockchip_spi_suspend(struct device *dev)
if (ret < 0) if (ret < 0)
return ret; return ret;
if (!pm_runtime_suspended(dev)) { ret = pm_runtime_force_suspend(dev);
clk_disable_unprepare(rs->spiclk); if (ret < 0)
clk_disable_unprepare(rs->apb_pclk); return ret;
}
pinctrl_pm_select_sleep_state(dev); pinctrl_pm_select_sleep_state(dev);
...@@ -864,17 +863,9 @@ static int rockchip_spi_resume(struct device *dev) ...@@ -864,17 +863,9 @@ static int rockchip_spi_resume(struct device *dev)
pinctrl_pm_select_default_state(dev); pinctrl_pm_select_default_state(dev);
if (!pm_runtime_suspended(dev)) { ret = pm_runtime_force_resume(dev);
ret = clk_prepare_enable(rs->apb_pclk); if (ret < 0)
if (ret < 0) return ret;
return ret;
ret = clk_prepare_enable(rs->spiclk);
if (ret < 0) {
clk_disable_unprepare(rs->apb_pclk);
return ret;
}
}
ret = spi_master_resume(rs->master); ret = spi_master_resume(rs->master);
if (ret < 0) { if (ret < 0) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment