public inbox for linux-mmc@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] sdhci-pxav3: Fix runtime PM initialization
@ 2013-06-10 20:16 Daniel Drake
  2013-06-27 15:47 ` Chris Ball
  0 siblings, 1 reply; 2+ messages in thread
From: Daniel Drake @ 2013-06-10 20:16 UTC (permalink / raw)
  To: linux-mmc, cjb, kliu5, jlfu

Commit bb691ae464b77d30e74c66480e98d74e88d6b194 breaks boot on OLPC XO-4,
it hangs somewhere inside sdhci_add_host.

When pm_runtime_set_autosuspend_delay() was being called, the device's usage
counter was 0, causing the PM layer to runtime-suspend the device. We then
went on to call sdhci_add_host() on a suspended device, which hung.

Fix this by making the driver consistent with the omap_hsmmc driver, both
in terms of runtime PM initialization and error handling. Now the device
is not runtime-suspended until we exit the probe routine.

Signed-off-by: Daniel Drake <dsd@laptop.org>
---
 drivers/mmc/host/sdhci-pxav3.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/mmc/host/sdhci-pxav3.c b/drivers/mmc/host/sdhci-pxav3.c
index a0cdbc5..86d8ac8 100644
--- a/drivers/mmc/host/sdhci-pxav3.c
+++ b/drivers/mmc/host/sdhci-pxav3.c
@@ -300,18 +300,15 @@ static int sdhci_pxav3_probe(struct platform_device *pdev)
 
 	sdhci_get_of_property(pdev);
 
-	pm_runtime_set_active(&pdev->dev);
 	pm_runtime_enable(&pdev->dev);
+	pm_runtime_get_sync(&pdev->dev);
 	pm_runtime_set_autosuspend_delay(&pdev->dev, PXAV3_RPM_DELAY_MS);
 	pm_runtime_use_autosuspend(&pdev->dev);
 	pm_suspend_ignore_children(&pdev->dev, 1);
-	pm_runtime_get_noresume(&pdev->dev);
 
 	ret = sdhci_add_host(host);
 	if (ret) {
 		dev_err(&pdev->dev, "failed to add host\n");
-		pm_runtime_forbid(&pdev->dev);
-		pm_runtime_disable(&pdev->dev);
 		goto err_add_host;
 	}
 
@@ -324,11 +321,14 @@ static int sdhci_pxav3_probe(struct platform_device *pdev)
 		device_init_wakeup(&pdev->dev, 0);
 	}
 
+	pm_runtime_mark_last_busy(&pdev->dev);
 	pm_runtime_put_autosuspend(&pdev->dev);
 
 	return 0;
 
 err_add_host:
+	pm_runtime_put_sync(&pdev->dev);
+	pm_runtime_disable(&pdev->dev);
 	clk_disable_unprepare(clk);
 	clk_put(clk);
 err_cd_req:
-- 
1.8.1.4


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

* Re: [PATCH] sdhci-pxav3: Fix runtime PM initialization
  2013-06-10 20:16 [PATCH] sdhci-pxav3: Fix runtime PM initialization Daniel Drake
@ 2013-06-27 15:47 ` Chris Ball
  0 siblings, 0 replies; 2+ messages in thread
From: Chris Ball @ 2013-06-27 15:47 UTC (permalink / raw)
  To: Daniel Drake; +Cc: linux-mmc, kliu5, jlfu

Hi Daniel,

On Mon, Jun 10 2013, Daniel Drake wrote:
> Commit bb691ae464b77d30e74c66480e98d74e88d6b194 breaks boot on OLPC XO-4,
> it hangs somewhere inside sdhci_add_host.
>
> When pm_runtime_set_autosuspend_delay() was being called, the device's usage
> counter was 0, causing the PM layer to runtime-suspend the device. We then
> went on to call sdhci_add_host() on a suspended device, which hung.
>
> Fix this by making the driver consistent with the omap_hsmmc driver, both
> in terms of runtime PM initialization and error handling. Now the device
> is not runtime-suspended until we exit the probe routine.
>
> Signed-off-by: Daniel Drake <dsd@laptop.org>

Thanks for the fix, pushed to mmc-next for 3.11.

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

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

end of thread, other threads:[~2013-06-27 15:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-10 20:16 [PATCH] sdhci-pxav3: Fix runtime PM initialization Daniel Drake
2013-06-27 15:47 ` Chris Ball

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox