linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V2] mmc: omap_hsmmc: Pass on the suspend failure to the PM core
@ 2012-09-13  6:31 Hebbar, Gururaja
  2012-09-17 18:51 ` S, Venkatraman
  0 siblings, 1 reply; 3+ messages in thread
From: Hebbar, Gururaja @ 2012-09-13  6:31 UTC (permalink / raw)
  To: linux-omap, linux-mmc, svenkatr
  Cc: rob.herring, linux-kernel, grant.likely, cjb, nsekhar,
	sudhakar.raj, gururaja.hebbar, Vaibhav Bedia

From: Vaibhav Bedia <vaibhav.bedia@ti.com>

In some cases mmc_suspend_host() is not able to claim the
host and proceed with the suspend process. The core returns
-EBUSY to the host controller driver. Unfortunately, the
host controller driver does not pass on this information
to the PM core and hence the system suspend process continues.

	ret = mmc_suspend_host(host->mmc);
	if (ret) {
		host->suspended = 0;
		if (host->pdata->resume) {
			ret = host->pdata->resume(dev, host->slot_id);

The return status from mmc_suspend_host() is overwritten by return
status from host->pdata->resume. So the original return status is lost.

In these cases the MMC core gets to an unexpected state
during resume and multiple issues related to MMC crop up.
1. Host controller driver starts accessing the device registers
before the clocks are enabled which leads to a prefetch abort.
2. A file copy thread which was launched before suspend gets
stuck due to the host not being reclaimed during resume.

To avoid such problems pass on the -EBUSY status to the PM core
from the host controller driver. With this change, MMC core
suspend might still fail but it does not end up making the
system unusable. Suspend gets aborted and the user can try
suspending the system again.

Signed-off-by: Vaibhav Bedia <vaibhav.bedia@ti.com>
Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
---
Changes from V1:
	- Instead of forcibly returning -EBUSY on err, retain old
	status and pass on the same to the caller.
	- add more detail to commit message (explanation with code
	snippet)

:100644 100644 9afdd20... d9af5f1... M	drivers/mmc/host/omap_hsmmc.c
 drivers/mmc/host/omap_hsmmc.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c
index 9afdd20..d9af5f1 100644
--- a/drivers/mmc/host/omap_hsmmc.c
+++ b/drivers/mmc/host/omap_hsmmc.c
@@ -2050,8 +2050,7 @@ static int omap_hsmmc_suspend(struct device *dev)
 	if (ret) {
 		host->suspended = 0;
 		if (host->pdata->resume) {
-			ret = host->pdata->resume(dev, host->slot_id);
-			if (ret)
+			if (host->pdata->resume(dev, host->slot_id))
 				dev_dbg(dev, "Unmask interrupt failed\n");
 		}
 		goto err;
-- 
1.7.0.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH V2] mmc: omap_hsmmc: Pass on the suspend failure to the PM core
  2012-09-13  6:31 [PATCH V2] mmc: omap_hsmmc: Pass on the suspend failure to the PM core Hebbar, Gururaja
@ 2012-09-17 18:51 ` S, Venkatraman
  2012-09-19  5:46   ` Chris Ball
  0 siblings, 1 reply; 3+ messages in thread
From: S, Venkatraman @ 2012-09-17 18:51 UTC (permalink / raw)
  To: Hebbar, Gururaja
  Cc: linux-omap, linux-mmc, rob.herring, linux-kernel, grant.likely,
	cjb, nsekhar, sudhakar.raj, Vaibhav Bedia

On Thu, Sep 13, 2012 at 12:01 PM, Hebbar, Gururaja
<gururaja.hebbar@ti.com> wrote:
> From: Vaibhav Bedia <vaibhav.bedia@ti.com>
>
> In some cases mmc_suspend_host() is not able to claim the
> host and proceed with the suspend process. The core returns
> -EBUSY to the host controller driver. Unfortunately, the
> host controller driver does not pass on this information
> to the PM core and hence the system suspend process continues.
>
>         ret = mmc_suspend_host(host->mmc);
>         if (ret) {
>                 host->suspended = 0;
>                 if (host->pdata->resume) {
>                         ret = host->pdata->resume(dev, host->slot_id);
>
> The return status from mmc_suspend_host() is overwritten by return
> status from host->pdata->resume. So the original return status is lost.
>
> In these cases the MMC core gets to an unexpected state
> during resume and multiple issues related to MMC crop up.
> 1. Host controller driver starts accessing the device registers
> before the clocks are enabled which leads to a prefetch abort.
> 2. A file copy thread which was launched before suspend gets
> stuck due to the host not being reclaimed during resume.
>
> To avoid such problems pass on the -EBUSY status to the PM core
> from the host controller driver. With this change, MMC core
> suspend might still fail but it does not end up making the
> system unusable. Suspend gets aborted and the user can try
> suspending the system again.
>
> Signed-off-by: Vaibhav Bedia <vaibhav.bedia@ti.com>
> Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
This version is good.

Acked-by: Venkatraman S <svenkatr@ti.com>

> ---
> Changes from V1:
>         - Instead of forcibly returning -EBUSY on err, retain old
>         status and pass on the same to the caller.
>         - add more detail to commit message (explanation with code
>         snippet)
>
> :100644 100644 9afdd20... d9af5f1... M  drivers/mmc/host/omap_hsmmc.c
>  drivers/mmc/host/omap_hsmmc.c |    3 +--
>  1 files changed, 1 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c
> index 9afdd20..d9af5f1 100644
> --- a/drivers/mmc/host/omap_hsmmc.c
> +++ b/drivers/mmc/host/omap_hsmmc.c
> @@ -2050,8 +2050,7 @@ static int omap_hsmmc_suspend(struct device *dev)
>         if (ret) {
>                 host->suspended = 0;
>                 if (host->pdata->resume) {
> -                       ret = host->pdata->resume(dev, host->slot_id);
> -                       if (ret)
> +                       if (host->pdata->resume(dev, host->slot_id))
>                                 dev_dbg(dev, "Unmask interrupt failed\n");
>                 }
>                 goto err;
> --
> 1.7.0.4
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH V2] mmc: omap_hsmmc: Pass on the suspend failure to the PM core
  2012-09-17 18:51 ` S, Venkatraman
@ 2012-09-19  5:46   ` Chris Ball
  0 siblings, 0 replies; 3+ messages in thread
From: Chris Ball @ 2012-09-19  5:46 UTC (permalink / raw)
  To: S, Venkatraman
  Cc: Hebbar, Gururaja, linux-omap, linux-mmc, rob.herring,
	linux-kernel, grant.likely, nsekhar, sudhakar.raj, Vaibhav Bedia

Hi,

On Mon, Sep 17 2012, S, Venkatraman wrote:
> On Thu, Sep 13, 2012 at 12:01 PM, Hebbar, Gururaja
> <gururaja.hebbar@ti.com> wrote:
>> From: Vaibhav Bedia <vaibhav.bedia@ti.com>
>>
>> In some cases mmc_suspend_host() is not able to claim the
>> host and proceed with the suspend process. The core returns
>> -EBUSY to the host controller driver. Unfortunately, the
>> host controller driver does not pass on this information
>> to the PM core and hence the system suspend process continues.
>>
>>         ret = mmc_suspend_host(host->mmc);
>>         if (ret) {
>>                 host->suspended = 0;
>>                 if (host->pdata->resume) {
>>                         ret = host->pdata->resume(dev, host->slot_id);
>>
>> The return status from mmc_suspend_host() is overwritten by return
>> status from host->pdata->resume. So the original return status is lost.
>>
>> In these cases the MMC core gets to an unexpected state
>> during resume and multiple issues related to MMC crop up.
>> 1. Host controller driver starts accessing the device registers
>> before the clocks are enabled which leads to a prefetch abort.
>> 2. A file copy thread which was launched before suspend gets
>> stuck due to the host not being reclaimed during resume.
>>
>> To avoid such problems pass on the -EBUSY status to the PM core
>> from the host controller driver. With this change, MMC core
>> suspend might still fail but it does not end up making the
>> system unusable. Suspend gets aborted and the user can try
>> suspending the system again.
>>
>> Signed-off-by: Vaibhav Bedia <vaibhav.bedia@ti.com>
>> Signed-off-by: Hebbar, Gururaja <gururaja.hebbar@ti.com>
>
> This version is good.
>
> Acked-by: Venkatraman S <svenkatr@ti.com>

Thanks, pushed to mmc-next for 3.7, with a stable@ tag added (right?).

- Chris.
-- 
Chris Ball   <cjb@laptop.org>   <http://printf.net/>
One Laptop Per Child

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-09-19  5:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-09-13  6:31 [PATCH V2] mmc: omap_hsmmc: Pass on the suspend failure to the PM core Hebbar, Gururaja
2012-09-17 18:51 ` S, Venkatraman
2012-09-19  5:46   ` Chris Ball

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).