On Thu, 10 Oct 2013, Ulf Hansson wrote:

> Typically the runtime idle function is triggered after resume and
> probe. Instead of immediately requesting the device to go into
> in-active state we make use of the autosuspend, if we have enabled
> it earlier.
> 
> Cc: Len Brown <len.br...@intel.com>
> Cc: Pavel Machek <pa...@ucw.cz>
> Cc: Rafael J. Wysocki <r...@rjwysocki.net>
> Cc: Kevin Hilman <khil...@linaro.org>
> Cc: Alan Stern <st...@rowland.harvard.edu>
> Cc: Mika Westerberg <mika.westerb...@linux.intel.com>
> Cc: linux...@vger.kernel.org
> Signed-off-by: Ulf Hansson <ulf.hans...@linaro.org>
> ---
>  drivers/mmc/core/bus.c |    6 ++++++
>  1 file changed, 6 insertions(+)
> 
> diff --git a/drivers/mmc/core/bus.c b/drivers/mmc/core/bus.c
> index cdca8a7..7f0e900 100644
> --- a/drivers/mmc/core/bus.c
> +++ b/drivers/mmc/core/bus.c
> @@ -205,6 +205,12 @@ static int mmc_runtime_resume(struct device *dev)
>  
>  static int mmc_runtime_idle(struct device *dev)
>  {
> +     if (pm_runtime_autosuspend_used(dev)) {
> +             pm_runtime_mark_last_busy(dev);
> +             pm_runtime_autosuspend(dev);
> +             return -EBUSY;
> +     }
> +
>       return 0;
>  }

I would greatly prefer to see the core rpm_idle() routine changed 
instead.  Currently the last line says:

        return retval ? retval : rpm_suspend(dev, rpmflags);

The second argument to rpm_suspend should be rpmflags | RPM_AUTO.  That
way, if the runtime-idle callback returns 0, we will automatically do
either a normal suspend or an autosuspend, whichever is appropriate.

As an added benefit, with this change there's no need to add the 
pm_runtime_autosuspend_used() function.

Alan Stern

--
To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to