Re: [PATCH] mmc: rtsx_usb_sdmmc: Handle runtime PM while changing led

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Sat, 17 Sep 2016, Ulf Hansson wrote:

> Each access of the parent device (usb device) needs to be done in runtime
> resumed state. Currently this isn't case while changing the leds, so let's
> add pm_runtime_get_sync() and pm_runtime_put() around these calls.
> 
> Signed-off-by: Ulf Hansson <ulf.hansson@xxxxxxxxxx>
> ---
> 
> While discussing an issue[1] related to runtime PM, I found out that this
> minor change at least improves the behavior that has been observed.
> 
> [1]
> http://www.spinics.net/lists/linux-usb/msg144634.html
> 
> ---
>  drivers/mmc/host/rtsx_usb_sdmmc.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/drivers/mmc/host/rtsx_usb_sdmmc.c b/drivers/mmc/host/rtsx_usb_sdmmc.c
> index 6c71fc9..a59c7fa 100644
> --- a/drivers/mmc/host/rtsx_usb_sdmmc.c
> +++ b/drivers/mmc/host/rtsx_usb_sdmmc.c
> @@ -1314,6 +1314,7 @@ static void rtsx_usb_update_led(struct work_struct *work)
>  		container_of(work, struct rtsx_usb_sdmmc, led_work);
>  	struct rtsx_ucr *ucr = host->ucr;
>  
> +	pm_runtime_get_sync(sdmmc_dev(host));
>  	mutex_lock(&ucr->dev_mutex);
>  
>  	if (host->led.brightness == LED_OFF)
> @@ -1322,6 +1323,7 @@ static void rtsx_usb_update_led(struct work_struct *work)
>  		rtsx_usb_turn_on_led(ucr);
>  
>  	mutex_unlock(&ucr->dev_mutex);
> +	pm_runtime_put(sdmmc_dev(host));
>  }
>  #endif

The missing aspect here is that this won't stop the parent USB device
from going into autosuspend every 2 seconds and then resuming shortly 
afterward.  There are two ways of preventing this:

	Call usb_mark_last_busy() at appropriate places.

	Enable autosuspend for the sdmmc device.

The second approach would also prevent the sdmmc device from going into
autosuspend as soon as the LED update is finished.  Maybe that's okay,
but if going into suspend is a lightweight procedure then you may want
to prevent it.

Alan Stern

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



[Index of Archives]     [Linux Media]     [Linux Input]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [Old Linux USB Devel Archive]

  Powered by Linux