From: Kevin Liu Date: Mon, 14 Jan 2013 19:38:53 +0000 (-0500) Subject: mmc: sdhci-pxav3: add IRQ wake up support X-Git-Tag: accepted/tizen/common/20141203.182822~2794^2~64 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=740b7a44aedbe8d916ce21b636f78467f5da1c59;p=platform%2Fkernel%2Flinux-arm64.git mmc: sdhci-pxav3: add IRQ wake up support [cjb: The MMP3 architecture requires a registered interrupt to retire wfi when waking from suspend.] Signed-off-by: Jialing Fu Signed-off-by: Kevin Liu Signed-off-by: Chris Ball --- diff --git a/drivers/mmc/host/sdhci-pxav3.c b/drivers/mmc/host/sdhci-pxav3.c index b7ee776..3d20c10 100644 --- a/drivers/mmc/host/sdhci-pxav3.c +++ b/drivers/mmc/host/sdhci-pxav3.c @@ -311,6 +311,13 @@ static int sdhci_pxav3_probe(struct platform_device *pdev) platform_set_drvdata(pdev, host); + if (pdata->pm_caps & MMC_PM_KEEP_POWER) { + device_init_wakeup(&pdev->dev, 1); + host->mmc->pm_flags |= MMC_PM_WAKE_SDIO_IRQ; + } else { + device_init_wakeup(&pdev->dev, 0); + } + return 0; err_add_host: