mmc: core: Improve runtime PM support during suspend/resume for sd/mmc
authorUlf Hansson <ulf.hansson@linaro.org>
Thu, 10 Oct 2013 12:20:05 +0000 (14:20 +0200)
committerlintao <lintao@rock-chips.com>
Fri, 7 Mar 2014 11:34:37 +0000 (19:34 +0800)
commit80b121f6a422b73f48dfd433838c0a02b27d0d2b
tree9cc6f1e171b50c1a302ddb2fb10ae3630ba9eab0
parent62bd8482b5c24bae485d49e7bc73f09d61636504
mmc: core: Improve runtime PM support during suspend/resume for sd/mmc

The card device is considered as in-active after it has been suspended.
To prevent any further runtime PM requests in suspend state, we then
disable runtime PM.

After the card device has been resumed, we shall consider it as active,
like we also do after a probe sequence. When resumed, we can safely
enable runtime PM again.

This will make sure the PM core can request the card device to go to
in-active state after a resume has been completed. Previously we had to
wait for new pm_runtime_get->pm_runtime_put cycle to be executed.

Additionally, once a resume has been carried out, update the last busy
mark. At the moment this will have no effect but if the PM core will
respect autosuspend enabled devices, when it directly triggers a
runtime_suspend from a runtime_idle, it will mean the card device will
be scheduled for a delayed runtime_suspend instead of done immediately.

Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Chris Ball <cjb@laptop.org>
drivers/mmc/core/mmc.c
drivers/mmc/core/sd.c