Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * pm.h - Power management interface |
| 3 | * |
| 4 | * Copyright (C) 2000 Andrew Henroid |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 19 | */ |
| 20 | |
| 21 | #ifndef _LINUX_PM_H |
| 22 | #define _LINUX_PM_H |
| 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/list.h> |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 25 | #include <linux/workqueue.h> |
| 26 | #include <linux/spinlock.h> |
| 27 | #include <linux/wait.h> |
| 28 | #include <linux/timer.h> |
Rafael J. Wysocki | 5af84b8 | 2010-01-23 22:23:32 +0100 | [diff] [blame] | 29 | #include <linux/completion.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
| 31 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | * Callbacks for platform drivers to implement. |
| 33 | */ |
| 34 | extern void (*pm_idle)(void); |
| 35 | extern void (*pm_power_off)(void); |
Rafael J. Wysocki | bd804eb | 2007-07-19 01:47:40 -0700 | [diff] [blame] | 36 | extern void (*pm_power_off_prepare)(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | /* |
| 39 | * Device power management |
| 40 | */ |
| 41 | |
| 42 | struct device; |
| 43 | |
Alan Stern | 7490e44 | 2010-09-25 23:35:15 +0200 | [diff] [blame] | 44 | #ifdef CONFIG_PM |
| 45 | extern const char power_group_name[]; /* = "power" */ |
| 46 | #else |
| 47 | #define power_group_name NULL |
| 48 | #endif |
| 49 | |
Pavel Machek | ca078ba | 2005-09-03 15:56:57 -0700 | [diff] [blame] | 50 | typedef struct pm_message { |
| 51 | int event; |
| 52 | } pm_message_t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 54 | /** |
Rafael J. Wysocki | adf0949 | 2008-10-06 22:46:05 +0200 | [diff] [blame] | 55 | * struct dev_pm_ops - device PM callbacks |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 56 | * |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 57 | * Several device power state transitions are externally visible, affecting |
David Brownell | 82bb67f | 2006-08-14 23:11:04 -0700 | [diff] [blame] | 58 | * the state of pending I/O queues and (for drivers that touch hardware) |
| 59 | * interrupts, wakeups, DMA, and other hardware state. There may also be |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 60 | * internal transitions to various low-power modes which are transparent |
David Brownell | 82bb67f | 2006-08-14 23:11:04 -0700 | [diff] [blame] | 61 | * to the rest of the driver stack (such as a driver that's ON gating off |
| 62 | * clocks which are not in active use). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | * |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 64 | * The externally visible transitions are handled with the help of callbacks |
| 65 | * included in this structure in such a way that two levels of callbacks are |
| 66 | * involved. First, the PM core executes callbacks provided by PM domains, |
| 67 | * device types, classes and bus types. They are the subsystem-level callbacks |
| 68 | * supposed to execute callbacks provided by device drivers, although they may |
| 69 | * choose not to do that. If the driver callbacks are executed, they have to |
| 70 | * collaborate with the subsystem-level callbacks to achieve the goals |
| 71 | * appropriate for the given system transition, given transition phase and the |
| 72 | * subsystem the device belongs to. |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 73 | * |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 74 | * @prepare: The principal role of this callback is to prevent new children of |
| 75 | * the device from being registered after it has returned (the driver's |
| 76 | * subsystem and generally the rest of the kernel is supposed to prevent |
| 77 | * new calls to the probe method from being made too once @prepare() has |
| 78 | * succeeded). If @prepare() detects a situation it cannot handle (e.g. |
| 79 | * registration of a child already in progress), it may return -EAGAIN, so |
| 80 | * that the PM core can execute it once again (e.g. after a new child has |
| 81 | * been registered) to recover from the race condition. |
| 82 | * This method is executed for all kinds of suspend transitions and is |
| 83 | * followed by one of the suspend callbacks: @suspend(), @freeze(), or |
| 84 | * @poweroff(). The PM core executes subsystem-level @prepare() for all |
| 85 | * devices before starting to invoke suspend callbacks for any of them, so |
| 86 | * generally devices may be assumed to be functional or to respond to |
| 87 | * runtime resume requests while @prepare() is being executed. However, |
| 88 | * device drivers may NOT assume anything about the availability of user |
| 89 | * space at that time and it is NOT valid to request firmware from within |
| 90 | * @prepare() (it's too late to do that). It also is NOT valid to allocate |
| 91 | * substantial amounts of memory from @prepare() in the GFP_KERNEL mode. |
| 92 | * [To work around these limitations, drivers may register suspend and |
| 93 | * hibernation notifiers to be executed before the freezing of tasks.] |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 94 | * |
| 95 | * @complete: Undo the changes made by @prepare(). This method is executed for |
| 96 | * all kinds of resume transitions, following one of the resume callbacks: |
| 97 | * @resume(), @thaw(), @restore(). Also called if the state transition |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 98 | * fails before the driver's suspend callback: @suspend(), @freeze() or |
| 99 | * @poweroff(), can be executed (e.g. if the suspend callback fails for one |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 100 | * of the other devices that the PM core has unsuccessfully attempted to |
| 101 | * suspend earlier). |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 102 | * The PM core executes subsystem-level @complete() after it has executed |
| 103 | * the appropriate resume callbacks for all devices. |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 104 | * |
| 105 | * @suspend: Executed before putting the system into a sleep state in which the |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 106 | * contents of main memory are preserved. The exact action to perform |
| 107 | * depends on the device's subsystem (PM domain, device type, class or bus |
| 108 | * type), but generally the device must be quiescent after subsystem-level |
| 109 | * @suspend() has returned, so that it doesn't do any I/O or DMA. |
| 110 | * Subsystem-level @suspend() is executed for all devices after invoking |
| 111 | * subsystem-level @prepare() for all of them. |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 112 | * |
| 113 | * @resume: Executed after waking the system up from a sleep state in which the |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 114 | * contents of main memory were preserved. The exact action to perform |
| 115 | * depends on the device's subsystem, but generally the driver is expected |
| 116 | * to start working again, responding to hardware events and software |
| 117 | * requests (the device itself may be left in a low-power state, waiting |
| 118 | * for a runtime resume to occur). The state of the device at the time its |
| 119 | * driver's @resume() callback is run depends on the platform and subsystem |
| 120 | * the device belongs to. On most platforms, there are no restrictions on |
| 121 | * availability of resources like clocks during @resume(). |
| 122 | * Subsystem-level @resume() is executed for all devices after invoking |
| 123 | * subsystem-level @resume_noirq() for all of them. |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 124 | * |
| 125 | * @freeze: Hibernation-specific, executed before creating a hibernation image. |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 126 | * Analogous to @suspend(), but it should not enable the device to signal |
| 127 | * wakeup events or change its power state. The majority of subsystems |
| 128 | * (with the notable exception of the PCI bus type) expect the driver-level |
| 129 | * @freeze() to save the device settings in memory to be used by @restore() |
| 130 | * during the subsequent resume from hibernation. |
| 131 | * Subsystem-level @freeze() is executed for all devices after invoking |
| 132 | * subsystem-level @prepare() for all of them. |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 133 | * |
| 134 | * @thaw: Hibernation-specific, executed after creating a hibernation image OR |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 135 | * if the creation of an image has failed. Also executed after a failing |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 136 | * attempt to restore the contents of main memory from such an image. |
| 137 | * Undo the changes made by the preceding @freeze(), so the device can be |
| 138 | * operated in the same way as immediately before the call to @freeze(). |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 139 | * Subsystem-level @thaw() is executed for all devices after invoking |
| 140 | * subsystem-level @thaw_noirq() for all of them. It also may be executed |
| 141 | * directly after @freeze() in case of a transition error. |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 142 | * |
| 143 | * @poweroff: Hibernation-specific, executed after saving a hibernation image. |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 144 | * Analogous to @suspend(), but it need not save the device's settings in |
| 145 | * memory. |
| 146 | * Subsystem-level @poweroff() is executed for all devices after invoking |
| 147 | * subsystem-level @prepare() for all of them. |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 148 | * |
| 149 | * @restore: Hibernation-specific, executed after restoring the contents of main |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 150 | * memory from a hibernation image, analogous to @resume(). |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 151 | * |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 152 | * @suspend_noirq: Complete the actions started by @suspend(). Carry out any |
| 153 | * additional operations required for suspending the device that might be |
| 154 | * racing with its driver's interrupt handler, which is guaranteed not to |
| 155 | * run while @suspend_noirq() is being executed. |
| 156 | * It generally is expected that the device will be in a low-power state |
| 157 | * (appropriate for the target system sleep state) after subsystem-level |
| 158 | * @suspend_noirq() has returned successfully. If the device can generate |
| 159 | * system wakeup signals and is enabled to wake up the system, it should be |
| 160 | * configured to do so at that time. However, depending on the platform |
| 161 | * and device's subsystem, @suspend() may be allowed to put the device into |
| 162 | * the low-power state and configure it to generate wakeup signals, in |
| 163 | * which case it generally is not necessary to define @suspend_noirq(). |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 164 | * |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 165 | * @resume_noirq: Prepare for the execution of @resume() by carrying out any |
| 166 | * operations required for resuming the device that might be racing with |
| 167 | * its driver's interrupt handler, which is guaranteed not to run while |
| 168 | * @resume_noirq() is being executed. |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 169 | * |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 170 | * @freeze_noirq: Complete the actions started by @freeze(). Carry out any |
| 171 | * additional operations required for freezing the device that might be |
| 172 | * racing with its driver's interrupt handler, which is guaranteed not to |
| 173 | * run while @freeze_noirq() is being executed. |
| 174 | * The power state of the device should not be changed by either @freeze() |
| 175 | * or @freeze_noirq() and it should not be configured to signal system |
| 176 | * wakeup by any of these callbacks. |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 177 | * |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 178 | * @thaw_noirq: Prepare for the execution of @thaw() by carrying out any |
| 179 | * operations required for thawing the device that might be racing with its |
| 180 | * driver's interrupt handler, which is guaranteed not to run while |
| 181 | * @thaw_noirq() is being executed. |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 182 | * |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 183 | * @poweroff_noirq: Complete the actions started by @poweroff(). Analogous to |
| 184 | * @suspend_noirq(), but it need not save the device's settings in memory. |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 185 | * |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 186 | * @restore_noirq: Prepare for the execution of @restore() by carrying out any |
| 187 | * operations required for thawing the device that might be racing with its |
| 188 | * driver's interrupt handler, which is guaranteed not to run while |
| 189 | * @restore_noirq() is being executed. Analogous to @resume_noirq(). |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 190 | * |
Rafael J. Wysocki | adf0949 | 2008-10-06 22:46:05 +0200 | [diff] [blame] | 191 | * All of the above callbacks, except for @complete(), return error codes. |
| 192 | * However, the error codes returned by the resume operations, @resume(), |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 193 | * @thaw(), @restore(), @resume_noirq(), @thaw_noirq(), and @restore_noirq(), do |
Rafael J. Wysocki | adf0949 | 2008-10-06 22:46:05 +0200 | [diff] [blame] | 194 | * not cause the PM core to abort the resume transition during which they are |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 195 | * returned. The error codes returned in those cases are only printed by the PM |
Rafael J. Wysocki | adf0949 | 2008-10-06 22:46:05 +0200 | [diff] [blame] | 196 | * core to the system logs for debugging purposes. Still, it is recommended |
| 197 | * that drivers only return error codes from their resume methods in case of an |
| 198 | * unrecoverable failure (i.e. when the device being handled refuses to resume |
| 199 | * and becomes unusable) to allow us to modify the PM core in the future, so |
| 200 | * that it can avoid attempting to handle devices that failed to resume and |
| 201 | * their children. |
| 202 | * |
| 203 | * It is allowed to unregister devices while the above callbacks are being |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 204 | * executed. However, a callback routine must NOT try to unregister the device |
| 205 | * it was called for, although it may unregister children of that device (for |
| 206 | * example, if it detects that a child was unplugged while the system was |
| 207 | * asleep). |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 208 | * |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 209 | * Refer to Documentation/power/devices.txt for more information about the role |
| 210 | * of the above callbacks in the system suspend process. |
| 211 | * |
| 212 | * There also are callbacks related to runtime power management of devices. |
| 213 | * Again, these callbacks are executed by the PM core only for subsystems |
| 214 | * (PM domains, device types, classes and bus types) and the subsystem-level |
| 215 | * callbacks are supposed to invoke the driver callbacks. Moreover, the exact |
| 216 | * actions to be performed by a device driver's callbacks generally depend on |
| 217 | * the platform and subsystem the device belongs to. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 218 | * |
| 219 | * @runtime_suspend: Prepare the device for a condition in which it won't be |
| 220 | * able to communicate with the CPU(s) and RAM due to power management. |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 221 | * This need not mean that the device should be put into a low-power state. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 222 | * For example, if the device is behind a link which is about to be turned |
| 223 | * off, the device may remain at full power. If the device does go to low |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 224 | * power and is capable of generating runtime wakeup events, remote wakeup |
| 225 | * (i.e., a hardware mechanism allowing the device to request a change of |
| 226 | * its power state via an interrupt) should be enabled for it. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 227 | * |
| 228 | * @runtime_resume: Put the device into the fully active state in response to a |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 229 | * wakeup event generated by hardware or at the request of software. If |
| 230 | * necessary, put the device into the full-power state and restore its |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 231 | * registers, so that it is fully operational. |
| 232 | * |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 233 | * @runtime_idle: Device appears to be inactive and it might be put into a |
| 234 | * low-power state if all of the necessary conditions are satisfied. Check |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 235 | * these conditions and handle the device as appropriate, possibly queueing |
| 236 | * a suspend request for it. The return value is ignored by the PM core. |
Rafael J. Wysocki | f7bc83d | 2011-11-23 21:20:32 +0100 | [diff] [blame] | 237 | * |
| 238 | * Refer to Documentation/power/runtime_pm.txt for more information about the |
| 239 | * role of the above callbacks in device runtime power management. |
| 240 | * |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 241 | */ |
| 242 | |
Rafael J. Wysocki | adf0949 | 2008-10-06 22:46:05 +0200 | [diff] [blame] | 243 | struct dev_pm_ops { |
| 244 | int (*prepare)(struct device *dev); |
| 245 | void (*complete)(struct device *dev); |
| 246 | int (*suspend)(struct device *dev); |
| 247 | int (*resume)(struct device *dev); |
| 248 | int (*freeze)(struct device *dev); |
| 249 | int (*thaw)(struct device *dev); |
| 250 | int (*poweroff)(struct device *dev); |
| 251 | int (*restore)(struct device *dev); |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 252 | int (*suspend_noirq)(struct device *dev); |
| 253 | int (*resume_noirq)(struct device *dev); |
| 254 | int (*freeze_noirq)(struct device *dev); |
| 255 | int (*thaw_noirq)(struct device *dev); |
| 256 | int (*poweroff_noirq)(struct device *dev); |
| 257 | int (*restore_noirq)(struct device *dev); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 258 | int (*runtime_suspend)(struct device *dev); |
| 259 | int (*runtime_resume)(struct device *dev); |
| 260 | int (*runtime_idle)(struct device *dev); |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 261 | }; |
| 262 | |
Rafael J. Wysocki | d690b2c | 2010-03-06 21:28:37 +0100 | [diff] [blame] | 263 | #ifdef CONFIG_PM_SLEEP |
| 264 | #define SET_SYSTEM_SLEEP_PM_OPS(suspend_fn, resume_fn) \ |
| 265 | .suspend = suspend_fn, \ |
| 266 | .resume = resume_fn, \ |
| 267 | .freeze = suspend_fn, \ |
| 268 | .thaw = resume_fn, \ |
| 269 | .poweroff = suspend_fn, \ |
| 270 | .restore = resume_fn, |
| 271 | #else |
| 272 | #define SET_SYSTEM_SLEEP_PM_OPS(suspend_fn, resume_fn) |
| 273 | #endif |
| 274 | |
| 275 | #ifdef CONFIG_PM_RUNTIME |
| 276 | #define SET_RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) \ |
| 277 | .runtime_suspend = suspend_fn, \ |
| 278 | .runtime_resume = resume_fn, \ |
| 279 | .runtime_idle = idle_fn, |
| 280 | #else |
| 281 | #define SET_RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) |
| 282 | #endif |
| 283 | |
Albin Tonnerre | 9d62ec6 | 2009-08-05 23:59:59 +0200 | [diff] [blame] | 284 | /* |
| 285 | * Use this if you want to use the same suspend and resume callbacks for suspend |
| 286 | * to RAM and hibernation. |
| 287 | */ |
| 288 | #define SIMPLE_DEV_PM_OPS(name, suspend_fn, resume_fn) \ |
Alexey Dobriyan | 4714521 | 2009-12-14 18:00:08 -0800 | [diff] [blame] | 289 | const struct dev_pm_ops name = { \ |
Rafael J. Wysocki | d690b2c | 2010-03-06 21:28:37 +0100 | [diff] [blame] | 290 | SET_SYSTEM_SLEEP_PM_OPS(suspend_fn, resume_fn) \ |
Albin Tonnerre | 9d62ec6 | 2009-08-05 23:59:59 +0200 | [diff] [blame] | 291 | } |
| 292 | |
Rafael J. Wysocki | d690b2c | 2010-03-06 21:28:37 +0100 | [diff] [blame] | 293 | /* |
| 294 | * Use this for defining a set of PM operations to be used in all situations |
| 295 | * (sustem suspend, hibernation or runtime PM). |
| 296 | */ |
| 297 | #define UNIVERSAL_DEV_PM_OPS(name, suspend_fn, resume_fn, idle_fn) \ |
| 298 | const struct dev_pm_ops name = { \ |
| 299 | SET_SYSTEM_SLEEP_PM_OPS(suspend_fn, resume_fn) \ |
| 300 | SET_RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) \ |
| 301 | } |
| 302 | |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 303 | /** |
| 304 | * PM_EVENT_ messages |
| 305 | * |
| 306 | * The following PM_EVENT_ messages are defined for the internal use of the PM |
| 307 | * core, in order to provide a mechanism allowing the high level suspend and |
| 308 | * hibernation code to convey the necessary information to the device PM core |
| 309 | * code: |
| 310 | * |
| 311 | * ON No transition. |
| 312 | * |
| 313 | * FREEZE System is going to hibernate, call ->prepare() and ->freeze() |
| 314 | * for all devices. |
| 315 | * |
| 316 | * SUSPEND System is going to suspend, call ->prepare() and ->suspend() |
| 317 | * for all devices. |
| 318 | * |
| 319 | * HIBERNATE Hibernation image has been saved, call ->prepare() and |
| 320 | * ->poweroff() for all devices. |
| 321 | * |
| 322 | * QUIESCE Contents of main memory are going to be restored from a (loaded) |
| 323 | * hibernation image, call ->prepare() and ->freeze() for all |
| 324 | * devices. |
| 325 | * |
| 326 | * RESUME System is resuming, call ->resume() and ->complete() for all |
| 327 | * devices. |
| 328 | * |
| 329 | * THAW Hibernation image has been created, call ->thaw() and |
| 330 | * ->complete() for all devices. |
| 331 | * |
| 332 | * RESTORE Contents of main memory have been restored from a hibernation |
| 333 | * image, call ->restore() and ->complete() for all devices. |
| 334 | * |
| 335 | * RECOVER Creation of a hibernation image or restoration of the main |
| 336 | * memory contents from a hibernation image has failed, call |
| 337 | * ->thaw() and ->complete() for all devices. |
Alan Stern | 8111d1b | 2008-07-23 21:28:37 -0700 | [diff] [blame] | 338 | * |
| 339 | * The following PM_EVENT_ messages are defined for internal use by |
| 340 | * kernel subsystems. They are never issued by the PM core. |
| 341 | * |
| 342 | * USER_SUSPEND Manual selective suspend was issued by userspace. |
| 343 | * |
| 344 | * USER_RESUME Manual selective resume was issued by userspace. |
| 345 | * |
| 346 | * REMOTE_WAKEUP Remote-wakeup request was received from the device. |
| 347 | * |
| 348 | * AUTO_SUSPEND Automatic (device idle) runtime suspend was |
| 349 | * initiated by the subsystem. |
| 350 | * |
| 351 | * AUTO_RESUME Automatic (device needed) runtime resume was |
| 352 | * requested by a driver. |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 353 | */ |
| 354 | |
Rafael J. Wysocki | 1a9a915 | 2011-09-29 22:29:44 +0200 | [diff] [blame] | 355 | #define PM_EVENT_INVALID (-1) |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 356 | #define PM_EVENT_ON 0x0000 |
| 357 | #define PM_EVENT_FREEZE 0x0001 |
| 358 | #define PM_EVENT_SUSPEND 0x0002 |
| 359 | #define PM_EVENT_HIBERNATE 0x0004 |
| 360 | #define PM_EVENT_QUIESCE 0x0008 |
| 361 | #define PM_EVENT_RESUME 0x0010 |
| 362 | #define PM_EVENT_THAW 0x0020 |
| 363 | #define PM_EVENT_RESTORE 0x0040 |
| 364 | #define PM_EVENT_RECOVER 0x0080 |
Alan Stern | 8111d1b | 2008-07-23 21:28:37 -0700 | [diff] [blame] | 365 | #define PM_EVENT_USER 0x0100 |
| 366 | #define PM_EVENT_REMOTE 0x0200 |
| 367 | #define PM_EVENT_AUTO 0x0400 |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 368 | |
Alan Stern | 8111d1b | 2008-07-23 21:28:37 -0700 | [diff] [blame] | 369 | #define PM_EVENT_SLEEP (PM_EVENT_SUSPEND | PM_EVENT_HIBERNATE) |
| 370 | #define PM_EVENT_USER_SUSPEND (PM_EVENT_USER | PM_EVENT_SUSPEND) |
| 371 | #define PM_EVENT_USER_RESUME (PM_EVENT_USER | PM_EVENT_RESUME) |
Alan Stern | 7f4f5d4 | 2008-11-17 11:14:19 -0500 | [diff] [blame] | 372 | #define PM_EVENT_REMOTE_RESUME (PM_EVENT_REMOTE | PM_EVENT_RESUME) |
Alan Stern | 8111d1b | 2008-07-23 21:28:37 -0700 | [diff] [blame] | 373 | #define PM_EVENT_AUTO_SUSPEND (PM_EVENT_AUTO | PM_EVENT_SUSPEND) |
| 374 | #define PM_EVENT_AUTO_RESUME (PM_EVENT_AUTO | PM_EVENT_RESUME) |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 375 | |
Rafael J. Wysocki | 1a9a915 | 2011-09-29 22:29:44 +0200 | [diff] [blame] | 376 | #define PMSG_INVALID ((struct pm_message){ .event = PM_EVENT_INVALID, }) |
Alan Stern | 8111d1b | 2008-07-23 21:28:37 -0700 | [diff] [blame] | 377 | #define PMSG_ON ((struct pm_message){ .event = PM_EVENT_ON, }) |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 378 | #define PMSG_FREEZE ((struct pm_message){ .event = PM_EVENT_FREEZE, }) |
| 379 | #define PMSG_QUIESCE ((struct pm_message){ .event = PM_EVENT_QUIESCE, }) |
| 380 | #define PMSG_SUSPEND ((struct pm_message){ .event = PM_EVENT_SUSPEND, }) |
| 381 | #define PMSG_HIBERNATE ((struct pm_message){ .event = PM_EVENT_HIBERNATE, }) |
| 382 | #define PMSG_RESUME ((struct pm_message){ .event = PM_EVENT_RESUME, }) |
| 383 | #define PMSG_THAW ((struct pm_message){ .event = PM_EVENT_THAW, }) |
| 384 | #define PMSG_RESTORE ((struct pm_message){ .event = PM_EVENT_RESTORE, }) |
| 385 | #define PMSG_RECOVER ((struct pm_message){ .event = PM_EVENT_RECOVER, }) |
Alan Stern | 7f4f5d4 | 2008-11-17 11:14:19 -0500 | [diff] [blame] | 386 | #define PMSG_USER_SUSPEND ((struct pm_message) \ |
Alan Stern | 8111d1b | 2008-07-23 21:28:37 -0700 | [diff] [blame] | 387 | { .event = PM_EVENT_USER_SUSPEND, }) |
Alan Stern | 7f4f5d4 | 2008-11-17 11:14:19 -0500 | [diff] [blame] | 388 | #define PMSG_USER_RESUME ((struct pm_message) \ |
Alan Stern | 8111d1b | 2008-07-23 21:28:37 -0700 | [diff] [blame] | 389 | { .event = PM_EVENT_USER_RESUME, }) |
Alan Stern | 7f4f5d4 | 2008-11-17 11:14:19 -0500 | [diff] [blame] | 390 | #define PMSG_REMOTE_RESUME ((struct pm_message) \ |
Alan Stern | 8111d1b | 2008-07-23 21:28:37 -0700 | [diff] [blame] | 391 | { .event = PM_EVENT_REMOTE_RESUME, }) |
Alan Stern | 7f4f5d4 | 2008-11-17 11:14:19 -0500 | [diff] [blame] | 392 | #define PMSG_AUTO_SUSPEND ((struct pm_message) \ |
Alan Stern | 8111d1b | 2008-07-23 21:28:37 -0700 | [diff] [blame] | 393 | { .event = PM_EVENT_AUTO_SUSPEND, }) |
Alan Stern | 7f4f5d4 | 2008-11-17 11:14:19 -0500 | [diff] [blame] | 394 | #define PMSG_AUTO_RESUME ((struct pm_message) \ |
Alan Stern | 8111d1b | 2008-07-23 21:28:37 -0700 | [diff] [blame] | 395 | { .event = PM_EVENT_AUTO_RESUME, }) |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 396 | |
Alan Stern | 5b1b0b8 | 2011-08-19 23:49:48 +0200 | [diff] [blame] | 397 | #define PMSG_IS_AUTO(msg) (((msg).event & PM_EVENT_AUTO) != 0) |
| 398 | |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 399 | /** |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 400 | * Device run-time power management status. |
| 401 | * |
| 402 | * These status labels are used internally by the PM core to indicate the |
| 403 | * current status of a device with respect to the PM core operations. They do |
| 404 | * not reflect the actual power state of the device or its status as seen by the |
| 405 | * driver. |
| 406 | * |
| 407 | * RPM_ACTIVE Device is fully operational. Indicates that the device |
| 408 | * bus type's ->runtime_resume() callback has completed |
| 409 | * successfully. |
| 410 | * |
| 411 | * RPM_SUSPENDED Device bus type's ->runtime_suspend() callback has |
| 412 | * completed successfully. The device is regarded as |
| 413 | * suspended. |
| 414 | * |
| 415 | * RPM_RESUMING Device bus type's ->runtime_resume() callback is being |
| 416 | * executed. |
| 417 | * |
| 418 | * RPM_SUSPENDING Device bus type's ->runtime_suspend() callback is being |
| 419 | * executed. |
| 420 | */ |
| 421 | |
| 422 | enum rpm_status { |
| 423 | RPM_ACTIVE = 0, |
| 424 | RPM_RESUMING, |
| 425 | RPM_SUSPENDED, |
| 426 | RPM_SUSPENDING, |
| 427 | }; |
| 428 | |
| 429 | /** |
| 430 | * Device run-time power management request types. |
| 431 | * |
| 432 | * RPM_REQ_NONE Do nothing. |
| 433 | * |
| 434 | * RPM_REQ_IDLE Run the device bus type's ->runtime_idle() callback |
| 435 | * |
| 436 | * RPM_REQ_SUSPEND Run the device bus type's ->runtime_suspend() callback |
| 437 | * |
Alan Stern | 15bcb91d | 2010-09-25 23:35:21 +0200 | [diff] [blame] | 438 | * RPM_REQ_AUTOSUSPEND Same as RPM_REQ_SUSPEND, but not until the device has |
| 439 | * been inactive for as long as power.autosuspend_delay |
| 440 | * |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 441 | * RPM_REQ_RESUME Run the device bus type's ->runtime_resume() callback |
| 442 | */ |
| 443 | |
| 444 | enum rpm_request { |
| 445 | RPM_REQ_NONE = 0, |
| 446 | RPM_REQ_IDLE, |
| 447 | RPM_REQ_SUSPEND, |
Alan Stern | 15bcb91d | 2010-09-25 23:35:21 +0200 | [diff] [blame] | 448 | RPM_REQ_AUTOSUSPEND, |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 449 | RPM_REQ_RESUME, |
| 450 | }; |
| 451 | |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 452 | struct wakeup_source; |
| 453 | |
Rafael J. Wysocki | 4605ab6 | 2011-08-25 15:34:12 +0200 | [diff] [blame] | 454 | struct pm_domain_data { |
| 455 | struct list_head list_node; |
| 456 | struct device *dev; |
Rafael J. Wysocki | 4605ab6 | 2011-08-25 15:34:12 +0200 | [diff] [blame] | 457 | }; |
| 458 | |
Rafael J. Wysocki | 5c095a0 | 2011-08-25 15:33:50 +0200 | [diff] [blame] | 459 | struct pm_subsys_data { |
| 460 | spinlock_t lock; |
Rafael J. Wysocki | ef27bed | 2011-08-25 15:34:01 +0200 | [diff] [blame] | 461 | unsigned int refcount; |
Rafael J. Wysocki | 5c095a0 | 2011-08-25 15:33:50 +0200 | [diff] [blame] | 462 | #ifdef CONFIG_PM_CLK |
| 463 | struct list_head clock_list; |
| 464 | #endif |
Rafael J. Wysocki | 4605ab6 | 2011-08-25 15:34:12 +0200 | [diff] [blame] | 465 | #ifdef CONFIG_PM_GENERIC_DOMAINS |
Rafael J. Wysocki | cd0ea67 | 2011-09-26 20:22:02 +0200 | [diff] [blame] | 466 | struct pm_domain_data *domain_data; |
Rafael J. Wysocki | 4605ab6 | 2011-08-25 15:34:12 +0200 | [diff] [blame] | 467 | #endif |
Rafael J. Wysocki | 5c095a0 | 2011-08-25 15:33:50 +0200 | [diff] [blame] | 468 | }; |
| 469 | |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 470 | struct dev_pm_info { |
| 471 | pm_message_t power_state; |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 472 | unsigned int can_wakeup:1; |
Rafael J. Wysocki | b8c76f6 | 2010-12-16 00:51:21 +0100 | [diff] [blame] | 473 | unsigned int async_suspend:1; |
Alan Stern | f76b168b | 2011-06-18 20:22:23 +0200 | [diff] [blame] | 474 | bool is_prepared:1; /* Owned by the PM core */ |
Alan Stern | 6d0e0e8 | 2011-06-18 22:42:09 +0200 | [diff] [blame] | 475 | bool is_suspended:1; /* Ditto */ |
Rafael J. Wysocki | 8b258cc | 2011-11-17 21:39:33 +0100 | [diff] [blame] | 476 | bool ignore_children:1; |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 477 | spinlock_t lock; |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 478 | #ifdef CONFIG_PM_SLEEP |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 479 | struct list_head entry; |
Rafael J. Wysocki | 5af84b8 | 2010-01-23 22:23:32 +0100 | [diff] [blame] | 480 | struct completion completion; |
Rafael J. Wysocki | 074037e | 2010-09-22 22:09:10 +0200 | [diff] [blame] | 481 | struct wakeup_source *wakeup; |
Rafael J. Wysocki | 4ca46ff | 2011-10-16 23:34:36 +0200 | [diff] [blame] | 482 | bool wakeup_path:1; |
Rafael J. Wysocki | 805bdae | 2011-02-24 11:10:01 +0100 | [diff] [blame] | 483 | #else |
| 484 | unsigned int should_wakeup:1; |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 485 | #endif |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 486 | #ifdef CONFIG_PM_RUNTIME |
| 487 | struct timer_list suspend_timer; |
| 488 | unsigned long timer_expires; |
| 489 | struct work_struct work; |
| 490 | wait_queue_head_t wait_queue; |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 491 | atomic_t usage_count; |
| 492 | atomic_t child_count; |
| 493 | unsigned int disable_depth:3; |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 494 | unsigned int idle_notification:1; |
| 495 | unsigned int request_pending:1; |
| 496 | unsigned int deferred_resume:1; |
Rafael J. Wysocki | 7a1a8eb | 2009-12-03 21:19:18 +0100 | [diff] [blame] | 497 | unsigned int run_wake:1; |
Rafael J. Wysocki | 5382363 | 2010-01-23 22:02:51 +0100 | [diff] [blame] | 498 | unsigned int runtime_auto:1; |
Alan Stern | 7490e44 | 2010-09-25 23:35:15 +0200 | [diff] [blame] | 499 | unsigned int no_callbacks:1; |
Alan Stern | c7b61de | 2010-12-01 00:14:42 +0100 | [diff] [blame] | 500 | unsigned int irq_safe:1; |
Alan Stern | 15bcb91d | 2010-09-25 23:35:21 +0200 | [diff] [blame] | 501 | unsigned int use_autosuspend:1; |
| 502 | unsigned int timer_autosuspends:1; |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 503 | enum rpm_request request; |
| 504 | enum rpm_status runtime_status; |
| 505 | int runtime_error; |
Alan Stern | 15bcb91d | 2010-09-25 23:35:21 +0200 | [diff] [blame] | 506 | int autosuspend_delay; |
| 507 | unsigned long last_busy; |
Arjan van de Ven | 8d4b9d1 | 2010-07-19 02:01:06 +0200 | [diff] [blame] | 508 | unsigned long active_jiffies; |
| 509 | unsigned long suspended_jiffies; |
| 510 | unsigned long accounting_timestamp; |
Rafael J. Wysocki | 00dc9ad | 2011-12-01 00:01:31 +0100 | [diff] [blame] | 511 | ktime_t suspend_time; |
| 512 | s64 max_time_suspended_ns; |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 513 | #endif |
Rafael J. Wysocki | 5c095a0 | 2011-08-25 15:33:50 +0200 | [diff] [blame] | 514 | struct pm_subsys_data *subsys_data; /* Owned by the subsystem. */ |
Jean Pihet | 91ff4cb | 2011-08-25 15:35:41 +0200 | [diff] [blame] | 515 | struct pm_qos_constraints *constraints; |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 516 | }; |
| 517 | |
Arjan van de Ven | 8d4b9d1 | 2010-07-19 02:01:06 +0200 | [diff] [blame] | 518 | extern void update_pm_runtime_accounting(struct device *dev); |
Rafael J. Wysocki | ef27bed | 2011-08-25 15:34:01 +0200 | [diff] [blame] | 519 | extern int dev_pm_get_subsys_data(struct device *dev); |
| 520 | extern int dev_pm_put_subsys_data(struct device *dev); |
Arjan van de Ven | 8d4b9d1 | 2010-07-19 02:01:06 +0200 | [diff] [blame] | 521 | |
Rafael J. Wysocki | 7538e3d | 2011-02-16 21:53:17 +0100 | [diff] [blame] | 522 | /* |
| 523 | * Power domains provide callbacks that are executed during system suspend, |
| 524 | * hibernation, system resume and during runtime PM transitions along with |
| 525 | * subsystem-level and driver-level callbacks. |
| 526 | */ |
Rafael J. Wysocki | 564b905 | 2011-06-23 01:52:55 +0200 | [diff] [blame] | 527 | struct dev_pm_domain { |
Rafael J. Wysocki | 7538e3d | 2011-02-16 21:53:17 +0100 | [diff] [blame] | 528 | struct dev_pm_ops ops; |
| 529 | }; |
Arjan van de Ven | 8d4b9d1 | 2010-07-19 02:01:06 +0200 | [diff] [blame] | 530 | |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 531 | /* |
| 532 | * The PM_EVENT_ messages are also used by drivers implementing the legacy |
| 533 | * suspend framework, based on the ->suspend() and ->resume() callbacks common |
| 534 | * for suspend and hibernation transitions, according to the rules below. |
| 535 | */ |
| 536 | |
| 537 | /* Necessary, because several drivers use PM_EVENT_PRETHAW */ |
| 538 | #define PM_EVENT_PRETHAW PM_EVENT_QUIESCE |
| 539 | |
| 540 | /* |
David Brownell | 82bb67f | 2006-08-14 23:11:04 -0700 | [diff] [blame] | 541 | * One transition is triggered by resume(), after a suspend() call; the |
| 542 | * message is implicit: |
| 543 | * |
| 544 | * ON Driver starts working again, responding to hardware events |
| 545 | * and software requests. The hardware may have gone through |
| 546 | * a power-off reset, or it may have maintained state from the |
| 547 | * previous suspend() which the driver will rely on while |
| 548 | * resuming. On most platforms, there are no restrictions on |
| 549 | * availability of resources like clocks during resume(). |
| 550 | * |
| 551 | * Other transitions are triggered by messages sent using suspend(). All |
| 552 | * these transitions quiesce the driver, so that I/O queues are inactive. |
| 553 | * That commonly entails turning off IRQs and DMA; there may be rules |
| 554 | * about how to quiesce that are specific to the bus or the device's type. |
| 555 | * (For example, network drivers mark the link state.) Other details may |
| 556 | * differ according to the message: |
| 557 | * |
| 558 | * SUSPEND Quiesce, enter a low power device state appropriate for |
| 559 | * the upcoming system state (such as PCI_D3hot), and enable |
| 560 | * wakeup events as appropriate. |
| 561 | * |
Rafael J. Wysocki | 3a2d5b7 | 2008-02-23 19:13:25 +0100 | [diff] [blame] | 562 | * HIBERNATE Enter a low power device state appropriate for the hibernation |
| 563 | * state (eg. ACPI S4) and enable wakeup events as appropriate. |
| 564 | * |
David Brownell | 82bb67f | 2006-08-14 23:11:04 -0700 | [diff] [blame] | 565 | * FREEZE Quiesce operations so that a consistent image can be saved; |
| 566 | * but do NOT otherwise enter a low power device state, and do |
| 567 | * NOT emit system wakeup events. |
| 568 | * |
| 569 | * PRETHAW Quiesce as if for FREEZE; additionally, prepare for restoring |
| 570 | * the system from a snapshot taken after an earlier FREEZE. |
| 571 | * Some drivers will need to reset their hardware state instead |
| 572 | * of preserving it, to ensure that it's never mistaken for the |
| 573 | * state which that earlier snapshot had set up. |
| 574 | * |
| 575 | * A minimally power-aware driver treats all messages as SUSPEND, fully |
| 576 | * reinitializes its device during resume() -- whether or not it was reset |
| 577 | * during the suspend/resume cycle -- and can't issue wakeup events. |
| 578 | * |
| 579 | * More power-aware drivers may also use low power states at runtime as |
| 580 | * well as during system sleep states like PM_SUSPEND_STANDBY. They may |
| 581 | * be able to use wakeup events to exit from runtime low-power states, |
| 582 | * or from system low-power states such as standby or suspend-to-RAM. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | */ |
| 584 | |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 585 | #ifdef CONFIG_PM_SLEEP |
Rafael J. Wysocki | d47d81c | 2011-03-23 22:16:41 +0100 | [diff] [blame] | 586 | extern void device_pm_lock(void); |
Alan Stern | d161630 | 2009-05-24 22:05:42 +0200 | [diff] [blame] | 587 | extern void dpm_resume_noirq(pm_message_t state); |
| 588 | extern void dpm_resume_end(pm_message_t state); |
Rafael J. Wysocki | 91e7c75 | 2011-05-17 23:26:00 +0200 | [diff] [blame] | 589 | extern void dpm_resume(pm_message_t state); |
| 590 | extern void dpm_complete(pm_message_t state); |
Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 591 | |
| 592 | extern void device_pm_unlock(void); |
Alan Stern | d161630 | 2009-05-24 22:05:42 +0200 | [diff] [blame] | 593 | extern int dpm_suspend_noirq(pm_message_t state); |
| 594 | extern int dpm_suspend_start(pm_message_t state); |
Rafael J. Wysocki | 91e7c75 | 2011-05-17 23:26:00 +0200 | [diff] [blame] | 595 | extern int dpm_suspend(pm_message_t state); |
| 596 | extern int dpm_prepare(pm_message_t state); |
David Brownell | 0ac8524 | 2005-09-12 19:39:34 -0700 | [diff] [blame] | 597 | |
Andrew Morton | 0266949 | 2006-03-23 01:38:34 -0800 | [diff] [blame] | 598 | extern void __suspend_report_result(const char *function, void *fn, int ret); |
| 599 | |
| 600 | #define suspend_report_result(fn, ret) \ |
| 601 | do { \ |
Harvey Harrison | d5c003b | 2008-10-15 22:01:24 -0700 | [diff] [blame] | 602 | __suspend_report_result(__func__, fn, ret); \ |
Andrew Morton | 0266949 | 2006-03-23 01:38:34 -0800 | [diff] [blame] | 603 | } while (0) |
Andrew Morton | 9a7834d | 2005-10-23 23:02:20 -0700 | [diff] [blame] | 604 | |
Rafael J. Wysocki | 098dff7 | 2010-09-22 22:10:57 +0200 | [diff] [blame] | 605 | extern int device_pm_wait_for_dev(struct device *sub, struct device *dev); |
Rafael J. Wysocki | 6538df8 | 2011-05-17 23:26:21 +0200 | [diff] [blame] | 606 | |
| 607 | extern int pm_generic_prepare(struct device *dev); |
Rafael J. Wysocki | e529192 | 2011-07-01 22:12:59 +0200 | [diff] [blame] | 608 | extern int pm_generic_suspend_noirq(struct device *dev); |
Rafael J. Wysocki | 6538df8 | 2011-05-17 23:26:21 +0200 | [diff] [blame] | 609 | extern int pm_generic_suspend(struct device *dev); |
Rafael J. Wysocki | e529192 | 2011-07-01 22:12:59 +0200 | [diff] [blame] | 610 | extern int pm_generic_resume_noirq(struct device *dev); |
Rafael J. Wysocki | 6538df8 | 2011-05-17 23:26:21 +0200 | [diff] [blame] | 611 | extern int pm_generic_resume(struct device *dev); |
Rafael J. Wysocki | e529192 | 2011-07-01 22:12:59 +0200 | [diff] [blame] | 612 | extern int pm_generic_freeze_noirq(struct device *dev); |
Rafael J. Wysocki | 6538df8 | 2011-05-17 23:26:21 +0200 | [diff] [blame] | 613 | extern int pm_generic_freeze(struct device *dev); |
Rafael J. Wysocki | e529192 | 2011-07-01 22:12:59 +0200 | [diff] [blame] | 614 | extern int pm_generic_thaw_noirq(struct device *dev); |
Rafael J. Wysocki | 6538df8 | 2011-05-17 23:26:21 +0200 | [diff] [blame] | 615 | extern int pm_generic_thaw(struct device *dev); |
Rafael J. Wysocki | e529192 | 2011-07-01 22:12:59 +0200 | [diff] [blame] | 616 | extern int pm_generic_restore_noirq(struct device *dev); |
Rafael J. Wysocki | 6538df8 | 2011-05-17 23:26:21 +0200 | [diff] [blame] | 617 | extern int pm_generic_restore(struct device *dev); |
Rafael J. Wysocki | e529192 | 2011-07-01 22:12:59 +0200 | [diff] [blame] | 618 | extern int pm_generic_poweroff_noirq(struct device *dev); |
Rafael J. Wysocki | 6538df8 | 2011-05-17 23:26:21 +0200 | [diff] [blame] | 619 | extern int pm_generic_poweroff(struct device *dev); |
| 620 | extern void pm_generic_complete(struct device *dev); |
| 621 | |
Alan Stern | d288e47 | 2008-03-19 22:37:42 +0100 | [diff] [blame] | 622 | #else /* !CONFIG_PM_SLEEP */ |
| 623 | |
Cornelia Huck | ffa6a70 | 2009-03-04 12:44:00 +0100 | [diff] [blame] | 624 | #define device_pm_lock() do {} while (0) |
| 625 | #define device_pm_unlock() do {} while (0) |
| 626 | |
Alan Stern | d161630 | 2009-05-24 22:05:42 +0200 | [diff] [blame] | 627 | static inline int dpm_suspend_start(pm_message_t state) |
Alan Stern | d288e47 | 2008-03-19 22:37:42 +0100 | [diff] [blame] | 628 | { |
| 629 | return 0; |
| 630 | } |
| 631 | |
Alan Stern | 9a3df1f | 2008-03-19 22:39:13 +0100 | [diff] [blame] | 632 | #define suspend_report_result(fn, ret) do {} while (0) |
Alan Stern | d288e47 | 2008-03-19 22:37:42 +0100 | [diff] [blame] | 633 | |
Rafael J. Wysocki | 098dff7 | 2010-09-22 22:10:57 +0200 | [diff] [blame] | 634 | static inline int device_pm_wait_for_dev(struct device *a, struct device *b) |
| 635 | { |
| 636 | return 0; |
| 637 | } |
Rafael J. Wysocki | 6538df8 | 2011-05-17 23:26:21 +0200 | [diff] [blame] | 638 | |
| 639 | #define pm_generic_prepare NULL |
| 640 | #define pm_generic_suspend NULL |
| 641 | #define pm_generic_resume NULL |
| 642 | #define pm_generic_freeze NULL |
| 643 | #define pm_generic_thaw NULL |
| 644 | #define pm_generic_restore NULL |
| 645 | #define pm_generic_poweroff NULL |
| 646 | #define pm_generic_complete NULL |
Alan Stern | d288e47 | 2008-03-19 22:37:42 +0100 | [diff] [blame] | 647 | #endif /* !CONFIG_PM_SLEEP */ |
| 648 | |
Cornelia Huck | ffa6a70 | 2009-03-04 12:44:00 +0100 | [diff] [blame] | 649 | /* How to reorder dpm_list after device_move() */ |
| 650 | enum dpm_order { |
| 651 | DPM_ORDER_NONE, |
| 652 | DPM_ORDER_DEV_AFTER_PARENT, |
| 653 | DPM_ORDER_PARENT_BEFORE_DEV, |
| 654 | DPM_ORDER_DEV_LAST, |
| 655 | }; |
| 656 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | #endif /* _LINUX_PM_H */ |