blackfin RTC driver: Fix bug Only RTC interrupt can wake up deeper sleep core
authorSonic Zhang <[email protected]>
Tue, 5 Aug 2008 20:01:17 +0000 (13:01 -0700)
committerLinus Torvalds <[email protected]>
Tue, 5 Aug 2008 21:33:47 +0000 (14:33 -0700)
Signed-off-by: Sonic Zhang <[email protected]>
Signed-off-by: Bryan Wu <[email protected]>
Signed-off-by: Bryan Wu <[email protected]>
Cc: David Brownell <[email protected]>
Cc: Alessandro Zummo <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
drivers/rtc/rtc-bfin.c

index 48ada599477be905663344aa4b9e462f95e11611..a568d29b07427ebd8744c4467d250f73fd31b247 100644 (file)
@@ -430,6 +430,30 @@ static int __devexit bfin_rtc_remove(struct platform_device *pdev)
        return 0;
 }
 
+#ifdef CONFIG_PM
+static int bfin_rtc_suspend(struct platform_device *pdev, pm_message_t state)
+{
+#ifdef PM_WAKEUP_SIC_IWR
+       struct bfin_rtc *rtc = dev_get_drvdata(&pdev->dev);
+#endif
+       bfin_rtc_reset(&pdev->dev);
+#ifdef PM_WAKEUP_SIC_IWR
+       bfin_write_RTC_SWCNT(10);
+       bfin_rtc_int_set(rtc, RTC_ISTAT_STOPWATCH);
+#endif
+       return 0;
+}
+
+static int bfin_rtc_resume(struct platform_device *pdev)
+{
+#ifdef PM_WAKEUP_SIC_IWR
+       struct bfin_rtc *rtc = dev_get_drvdata(&pdev->dev);
+       bfin_rtc_int_clear(rtc, RTC_ISTAT_STOPWATCH);
+#endif
+       return 0;
+}
+#endif
+
 static struct platform_driver bfin_rtc_driver = {
        .driver         = {
                .name   = "rtc-bfin",
@@ -437,6 +461,10 @@ static struct platform_driver bfin_rtc_driver = {
        },
        .probe          = bfin_rtc_probe,
        .remove         = __devexit_p(bfin_rtc_remove),
+#ifdef CONFIG_PM
+       .suspend        = bfin_rtc_suspend,
+       .resume         = bfin_rtc_resume,
+#endif
 };
 
 static int __init bfin_rtc_init(void)