]> git.karo-electronics.de Git - linux-beck.git/commitdiff
PM / Domains: Wakeup devices support for system sleep transitions
authorRafael J. Wysocki <rjw@sisk.pl>
Fri, 1 Jul 2011 20:13:29 +0000 (22:13 +0200)
committerRafael J. Wysocki <rjw@sisk.pl>
Sat, 2 Jul 2011 12:29:56 +0000 (14:29 +0200)
There is the problem how to handle devices set up to wake up the
system from sleep states during system-wide power transitions.
In some cases, those devices can be turned off entirely, because the
wakeup signals will be generated on their behalf anyway.  In some
other cases, they will generate wakeup signals if their clocks are
stopped, but only if power is not removed from them.  Finally, in
some cases, they can only generate wakeup signals if power is not
removed from them and their clocks are enabled.

To allow platform-specific code to decide whether or not to put
wakeup devices (and their PM domains) into low-power state during
system-wide transitions, such as system suspend, introduce a new
generic PM domain callback, .active_wakeup(), that will be used
during the "noirq" phase of system suspend and hibernation (after
image creation) to decide what to do with wakeup devices.
Specifically, if this callback is present and returns "true", the
generic PM domain code will not execute .stop_device() for the
given wakeup device and its PM domain won't be powered off.

Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Acked-by: Kevin Hilman <khilman@ti.com>
drivers/base/power/domain.c
include/linux/pm_domain.h

index 33086e9afaf65573cbb4efad0925954dc1301152..1aed94c73cfc63c161a2ba61b9e0be47dc69062f 100644 (file)
@@ -450,6 +450,10 @@ static int pm_genpd_suspend_noirq(struct device *dev)
        if (ret)
                return ret;
 
+       if (device_may_wakeup(dev)
+           && genpd->active_wakeup && genpd->active_wakeup(dev))
+               return 0;
+
        if (genpd->stop_device)
                genpd->stop_device(dev);
 
@@ -670,6 +674,10 @@ static int pm_genpd_dev_poweroff_noirq(struct device *dev)
        if (ret)
                return ret;
 
+       if (device_may_wakeup(dev)
+           && genpd->active_wakeup && genpd->active_wakeup(dev))
+               return 0;
+
        if (genpd->stop_device)
                genpd->stop_device(dev);
 
index 7961b0dac4370e004a5462cd7abaefa1532fde0a..98491ee35102979c10ee3de9574aad37706538ab 100644 (file)
@@ -38,6 +38,7 @@ struct generic_pm_domain {
        int (*power_on)(struct generic_pm_domain *domain);
        int (*start_device)(struct device *dev);
        int (*stop_device)(struct device *dev);
+       bool (*active_wakeup)(struct device *dev);
 };
 
 static inline struct generic_pm_domain *pd_to_genpd(struct dev_pm_domain *pd)