diff options
32 files changed, 2287 insertions, 305 deletions
diff --git a/Documentation/power/runtime_pm.txt b/Documentation/power/runtime_pm.txt new file mode 100644 index 000000000000..f49a33b704d2 --- /dev/null +++ b/Documentation/power/runtime_pm.txt | |||
| @@ -0,0 +1,378 @@ | |||
| 1 | Run-time Power Management Framework for I/O Devices | ||
| 2 | |||
| 3 | (C) 2009 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc. | ||
| 4 | |||
| 5 | 1. Introduction | ||
| 6 | |||
| 7 | Support for run-time power management (run-time PM) of I/O devices is provided | ||
| 8 | at the power management core (PM core) level by means of: | ||
| 9 | |||
| 10 | * The power management workqueue pm_wq in which bus types and device drivers can | ||
| 11 | put their PM-related work items. It is strongly recommended that pm_wq be | ||
| 12 | used for queuing all work items related to run-time PM, because this allows | ||
| 13 | them to be synchronized with system-wide power transitions (suspend to RAM, | ||
| 14 | hibernation and resume from system sleep states). pm_wq is declared in | ||
| 15 | include/linux/pm_runtime.h and defined in kernel/power/main.c. | ||
| 16 | |||
| 17 | * A number of run-time PM fields in the 'power' member of 'struct device' (which | ||
| 18 | is of the type 'struct dev_pm_info', defined in include/linux/pm.h) that can | ||
| 19 | be used for synchronizing run-time PM operations with one another. | ||
| 20 | |||
| 21 | * Three device run-time PM callbacks in 'struct dev_pm_ops' (defined in | ||
| 22 | include/linux/pm.h). | ||
| 23 | |||
| 24 | * A set of helper functions defined in drivers/base/power/runtime.c that can be | ||
| 25 | used for carrying out run-time PM operations in such a way that the | ||
| 26 | synchronization between them is taken care of by the PM core. Bus types and | ||
| 27 | device drivers are encouraged to use these functions. | ||
| 28 | |||
| 29 | The run-time PM callbacks present in 'struct dev_pm_ops', the device run-time PM | ||
| 30 | fields of 'struct dev_pm_info' and the core helper functions provided for | ||
| 31 | run-time PM are described below. | ||
| 32 | |||
| 33 | 2. Device Run-time PM Callbacks | ||
| 34 | |||
| 35 | There are three device run-time PM callbacks defined in 'struct dev_pm_ops': | ||
| 36 | |||
| 37 | struct dev_pm_ops { | ||
| 38 | ... | ||
| 39 | int (*runtime_suspend)(struct device *dev); | ||
| 40 | int (*runtime_resume)(struct device *dev); | ||
| 41 | void (*runtime_idle)(struct device *dev); | ||
| 42 | ... | ||
| 43 | }; | ||
| 44 | |||
| 45 | The ->runtime_suspend() callback is executed by the PM core for the bus type of | ||
| 46 | the device being suspended. The bus type's callback is then _entirely_ | ||
| 47 | _responsible_ for handling the device as appropriate, which may, but need not | ||
| 48 | include executing the device driver's own ->runtime_suspend() callback (from the | ||
| 49 | PM core's point of view it is not necessary to implement a ->runtime_suspend() | ||
| 50 | callback in a device driver as long as the bus type's ->runtime_suspend() knows | ||
| 51 | what to do to handle the device). | ||
| 52 | |||
| 53 | * Once the bus type's ->runtime_suspend() callback has completed successfully | ||
| 54 | for given device, the PM core regards the device as suspended, which need | ||
| 55 | not mean that the device has been put into a low power state. It is | ||
| 56 | supposed to mean, however, that the device will not process data and will | ||
| 57 | not communicate with the CPU(s) and RAM until its bus type's | ||
| 58 | ->runtime_resume() callback is executed for it. The run-time PM status of | ||
| 59 | a device after successful execution of its bus type's ->runtime_suspend() | ||
| 60 | callback is 'suspended'. | ||
| 61 | |||
| 62 | * If the bus type's ->runtime_suspend() callback returns -EBUSY or -EAGAIN, | ||
| 63 | the device's run-time PM status is supposed to be 'active', which means that | ||
| 64 | the device _must_ be fully operational afterwards. | ||
| 65 | |||
| 66 | * If the bus type's ->runtime_suspend() callback returns an error code | ||
| 67 | different from -EBUSY or -EAGAIN, the PM core regards this as a fatal | ||
| 68 | error and will refuse to run the helper functions described in Section 4 | ||
| 69 | for the device, until the status of it is directly set either to 'active' | ||
| 70 | or to 'suspended' (the PM core provides special helper functions for this | ||
| 71 | purpose). | ||
| 72 | |||
| 73 | In particular, if the driver requires remote wakeup capability for proper | ||
| 74 | functioning and device_may_wakeup() returns 'false' for the device, then | ||
| 75 | ->runtime_suspend() should return -EBUSY. On the other hand, if | ||
| 76 | device_may_wakeup() returns 'true' for the device and the device is put | ||
| 77 | into a low power state during the execution of its bus type's | ||
| 78 | ->runtime_suspend(), it is expected that remote wake-up (i.e. hardware mechanism | ||
| 79 | allowing the device to request a change of its power state, such as PCI PME) | ||
| 80 | will be enabled for the device. Generally, remote wake-up should be enabled | ||
| 81 | for all input devices put into a low power state at run time. | ||
| 82 | |||
| 83 | The ->runtime_resume() callback is executed by the PM core for the bus type of | ||
| 84 | the device being woken up. The bus type's callback is then _entirely_ | ||
| 85 | _responsible_ for handling the device as appropriate, which may, but need not | ||
| 86 | include executing the device driver's own ->runtime_resume() callback (from the | ||
| 87 | PM core's point of view it is not necessary to implement a ->runtime_resume() | ||
| 88 | callback in a device driver as long as the bus type's ->runtime_resume() knows | ||
| 89 | what to do to handle the device). | ||
| 90 | |||
| 91 | * Once the bus type's ->runtime_resume() callback has completed successfully, | ||
| 92 | the PM core regards the device as fully operational, which means that the | ||
| 93 | device _must_ be able to complete I/O operations as needed. The run-time | ||
| 94 | PM status of the device is then 'active'. | ||
| 95 | |||
| 96 | * If the bus type's ->runtime_resume() callback returns an error code, the PM | ||
| 97 | core regards this as a fatal error and will refuse to run the helper | ||
| 98 | functions described in Section 4 for the device, until its status is | ||
| 99 | directly set either to 'active' or to 'suspended' (the PM core provides | ||
| 100 | special helper functions for this purpose). | ||
| 101 | |||
| 102 | The ->runtime_idle() callback is executed by the PM core for the bus type of | ||
| 103 | given device whenever the device appears to be idle, which is indicated to the | ||
| 104 | PM core by two counters, the device's usage counter and the counter of 'active' | ||
| 105 | children of the device. | ||
| 106 | |||
| 107 | * If any of these counters is decreased using a helper function provided by | ||
| 108 | the PM core and it turns out to be equal to zero, the other counter is | ||
| 109 | checked. If that counter also is equal to zero, the PM core executes the | ||
| 110 | device bus type's ->runtime_idle() callback (with the device as an | ||
| 111 | argument). | ||
| 112 | |||
| 113 | The action performed by a bus type's ->runtime_idle() callback is totally | ||
| 114 | dependent on the bus type in question, but the expected and recommended action | ||
| 115 | is to check if the device can be suspended (i.e. if all of the conditions | ||
| 116 | necessary for suspending the device are satisfied) and to queue up a suspend | ||
| 117 | request for the device in that case. | ||
| 118 | |||
| 119 | The helper functions provided by the PM core, described in Section 4, guarantee | ||
| 120 | that the following constraints are met with respect to the bus type's run-time | ||
| 121 | PM callbacks: | ||
| 122 | |||
| 123 | (1) The callbacks are mutually exclusive (e.g. it is forbidden to execute | ||
| 124 | ->runtime_suspend() in parallel with ->runtime_resume() or with another | ||
| 125 | instance of ->runtime_suspend() for the same device) with the exception that | ||
| 126 | ->runtime_suspend() or ->runtime_resume() can be executed in parallel with | ||
| 127 | ->runtime_idle() (although ->runtime_idle() will not be started while any | ||
| 128 | of the other callbacks is being executed for the same device). | ||
| 129 | |||
| 130 | (2) ->runtime_idle() and ->runtime_suspend() can only be executed for 'active' | ||
| 131 | devices (i.e. the PM core will only execute ->runtime_idle() or | ||
| 132 | ->runtime_suspend() for the devices the run-time PM status of which is | ||
| 133 | 'active'). | ||
| 134 | |||
| 135 | (3) ->runtime_idle() and ->runtime_suspend() can only be executed for a device | ||
| 136 | the usage counter of which is equal to zero _and_ either the counter of | ||
| 137 | 'active' children of which is equal to zero, or the 'power.ignore_children' | ||
| 138 | flag of which is set. | ||
| 139 | |||
| 140 | (4) ->runtime_resume() can only be executed for 'suspended' devices (i.e. the | ||
| 141 | PM core will only execute ->runtime_resume() for the devices the run-time | ||
| 142 | PM status of which is 'suspended'). | ||
| 143 | |||
| 144 | Additionally, the helper functions provided by the PM core obey the following | ||
| 145 | rules: | ||
| 146 | |||
| 147 | * If ->runtime_suspend() is about to be executed or there's a pending request | ||
| 148 | to execute it, ->runtime_idle() will not be executed for the same device. | ||
| 149 | |||
| 150 | * A request to execute or to schedule the execution of ->runtime_suspend() | ||
| 151 | will cancel any pending requests to execute ->runtime_idle() for the same | ||
| 152 | device. | ||
| 153 | |||
| 154 | * If ->runtime_resume() is about to be executed or there's a pending request | ||
| 155 | to execute it, the other callbacks will not be executed for the same device. | ||
| 156 | |||
| 157 | * A request to execute ->runtime_resume() will cancel any pending or | ||
| 158 | scheduled requests to execute the other callbacks for the same device. | ||
| 159 | |||
| 160 | 3. Run-time PM Device Fields | ||
| 161 | |||
| 162 | The following device run-time PM fields are present in 'struct dev_pm_info', as | ||
| 163 | defined in include/linux/pm.h: | ||
| 164 | |||
| 165 | struct timer_list suspend_timer; | ||
| 166 | - timer used for scheduling (delayed) suspend request | ||
| 167 | |||
| 168 | unsigned long timer_expires; | ||
| 169 | - timer expiration time, in jiffies (if this is different from zero, the | ||
| 170 | timer is running and will expire at that time, otherwise the timer is not | ||
| 171 | running) | ||
| 172 | |||
| 173 | struct work_struct work; | ||
| 174 | - work structure used for queuing up requests (i.e. work items in pm_wq) | ||
| 175 | |||
| 176 | wait_queue_head_t wait_queue; | ||
| 177 | - wait queue used if any of the helper functions needs to wait for another | ||
| 178 | one to complete | ||
| 179 | |||
| 180 | spinlock_t lock; | ||
| 181 | - lock used for synchronisation | ||
| 182 | |||
| 183 | atomic_t usage_count; | ||
| 184 | - the usage counter of the device | ||
| 185 | |||
| 186 | atomic_t child_count; | ||
| 187 | - the count of 'active' children of the device | ||
| 188 | |||
| 189 | unsigned int ignore_children; | ||
| 190 | - if set, the value of child_count is ignored (but still updated) | ||
| 191 | |||
| 192 | unsigned int disable_depth; | ||
| 193 | - used for disabling the helper funcions (they work normally if this is | ||
| 194 | equal to zero); the initial value of it is 1 (i.e. run-time PM is | ||
| 195 | initially disabled for all devices) | ||
| 196 | |||
| 197 | unsigned int runtime_error; | ||
| 198 | - if set, there was a fatal error (one of the callbacks returned error code | ||
| 199 | as described in Section 2), so the helper funtions will not work until | ||
| 200 | this flag is cleared; this is the error code returned by the failing | ||
| 201 | callback | ||
| 202 | |||
| 203 | unsigned int idle_notification; | ||
| 204 | - if set, ->runtime_idle() is being executed | ||
| 205 | |||
| 206 | unsigned int request_pending; | ||
| 207 | - if set, there's a pending request (i.e. a work item queued up into pm_wq) | ||
| 208 | |||
| 209 | enum rpm_request request; | ||
| 210 | - type of request that's pending (valid if request_pending is set) | ||
| 211 | |||
| 212 | unsigned int deferred_resume; | ||
| 213 | - set if ->runtime_resume() is about to be run while ->runtime_suspend() is | ||
| 214 | being executed for that device and it is not practical to wait for the | ||
| 215 | suspend to complete; means "start a resume as soon as you've suspended" | ||
| 216 | |||
| 217 | enum rpm_status runtime_status; | ||
| 218 | - the run-time PM status of the device; this field's initial value is | ||
| 219 | RPM_SUSPENDED, which means that each device is initially regarded by the | ||
| 220 | PM core as 'suspended', regardless of its real hardware status | ||
| 221 | |||
| 222 | All of the above fields are members of the 'power' member of 'struct device'. | ||
| 223 | |||
| 224 | 4. Run-time PM Device Helper Functions | ||
| 225 | |||
| 226 | The following run-time PM helper functions are defined in | ||
| 227 | drivers/base/power/runtime.c and include/linux/pm_runtime.h: | ||
| 228 | |||
| 229 | void pm_runtime_init(struct device *dev); | ||
| 230 | - initialize the device run-time PM fields in 'struct dev_pm_info' | ||
| 231 | |||
| 232 | void pm_runtime_remove(struct device *dev); | ||
| 233 | - make sure that the run-time PM of the device will be disabled after | ||
| 234 | removing the device from device hierarchy | ||
| 235 | |||
| 236 | int pm_runtime_idle(struct device *dev); | ||
| 237 | - execute ->runtime_idle() for the device's bus type; returns 0 on success | ||
| 238 | or error code on failure, where -EINPROGRESS means that ->runtime_idle() | ||
| 239 | is already being executed | ||
| 240 | |||
| 241 | int pm_runtime_suspend(struct device *dev); | ||
| 242 | - execute ->runtime_suspend() for the device's bus type; returns 0 on | ||
| 243 | success, 1 if the device's run-time PM status was already 'suspended', or | ||
| 244 | error code on failure, where -EAGAIN or -EBUSY means it is safe to attempt | ||
| 245 | to suspend the device again in future | ||
| 246 | |||
| 247 | int pm_runtime_resume(struct device *dev); | ||
| 248 | - execute ->runtime_resume() for the device's bus type; returns 0 on | ||
| 249 | success, 1 if the device's run-time PM status was already 'active' or | ||
| 250 | error code on failure, where -EAGAIN means it may be safe to attempt to | ||
| 251 | resume the device again in future, but 'power.runtime_error' should be | ||
| 252 | checked additionally | ||
| 253 | |||
| 254 | int pm_request_idle(struct device *dev); | ||
| 255 | - submit a request to execute ->runtime_idle() for the device's bus type | ||
| 256 | (the request is represented by a work item in pm_wq); returns 0 on success | ||
| 257 | or error code if the request has not been queued up | ||
| 258 | |||
| 259 | int pm_schedule_suspend(struct device *dev, unsigned int delay); | ||
| 260 | - schedule the execution of ->runtime_suspend() for the device's bus type | ||
| 261 | in future, where 'delay' is the time to wait before queuing up a suspend | ||
| 262 | work item in pm_wq, in milliseconds (if 'delay' is zero, the work item is | ||
| 263 | queued up immediately); returns 0 on success, 1 if the device's PM | ||
| 264 | run-time status was already 'suspended', or error code if the request | ||
| 265 | hasn't been scheduled (or queued up if 'delay' is 0); if the execution of | ||
| 266 | ->runtime_suspend() is already scheduled and not yet expired, the new | ||
| 267 | value of 'delay' will be used as the time to wait | ||
| 268 | |||
| 269 | int pm_request_resume(struct device *dev); | ||
| 270 | - submit a request to execute ->runtime_resume() for the device's bus type | ||
| 271 | (the request is represented by a work item in pm_wq); returns 0 on | ||
| 272 | success, 1 if the device's run-time PM status was already 'active', or | ||
| 273 | error code if the request hasn't been queued up | ||
| 274 | |||
| 275 | void pm_runtime_get_noresume(struct device *dev); | ||
| 276 | - increment the device's usage counter | ||
| 277 | |||
| 278 | int pm_runtime_get(struct device *dev); | ||
| 279 | - increment the device's usage counter, run pm_request_resume(dev) and | ||
| 280 | return its result | ||
| 281 | |||
| 282 | int pm_runtime_get_sync(struct device *dev); | ||
| 283 | - increment the device's usage counter, run pm_runtime_resume(dev) and | ||
| 284 | return its result | ||
| 285 | |||
| 286 | void pm_runtime_put_noidle(struct device *dev); | ||
| 287 | - decrement the device's usage counter | ||
| 288 | |||
| 289 | int pm_runtime_put(struct device *dev); | ||
| 290 | - decrement the device's usage counter, run pm_request_idle(dev) and return | ||
| 291 | its result | ||
| 292 | |||
| 293 | int pm_runtime_put_sync(struct device *dev); | ||
| 294 | - decrement the device's usage counter, run pm_runtime_idle(dev) and return | ||
| 295 | its result | ||
| 296 | |||
| 297 | void pm_runtime_enable(struct device *dev); | ||
| 298 | - enable the run-time PM helper functions to run the device bus type's | ||
| 299 | run-time PM callbacks described in Section 2 | ||
| 300 | |||
| 301 | int pm_runtime_disable(struct device *dev); | ||
| 302 | - prevent the run-time PM helper functions from running the device bus | ||
| 303 | type's run-time PM callbacks, make sure that all of the pending run-time | ||
| 304 | PM operations on the device are either completed or canceled; returns | ||
| 305 | 1 if there was a resume request pending and it was necessary to execute | ||
| 306 | ->runtime_resume() for the device's bus type to satisfy that request, | ||
| 307 | otherwise 0 is returned | ||
| 308 | |||
| 309 | void pm_suspend_ignore_children(struct device *dev, bool enable); | ||
| 310 | - set/unset the power.ignore_children flag of the device | ||
| 311 | |||
| 312 | int pm_runtime_set_active(struct device *dev); | ||
| 313 | - clear the device's 'power.runtime_error' flag, set the device's run-time | ||
| 314 | PM status to 'active' and update its parent's counter of 'active' | ||
| 315 | children as appropriate (it is only valid to use this function if | ||
| 316 | 'power.runtime_error' is set or 'power.disable_depth' is greater than | ||
| 317 | zero); it will fail and return error code if the device has a parent | ||
| 318 | which is not active and the 'power.ignore_children' flag of which is unset | ||
| 319 | |||
| 320 | void pm_runtime_set_suspended(struct device *dev); | ||
| 321 | - clear the device's 'power.runtime_error' flag, set the device's run-time | ||
| 322 | PM status to 'suspended' and update its parent's counter of 'active' | ||
| 323 | children as appropriate (it is only valid to use this function if | ||
| 324 | 'power.runtime_error' is set or 'power.disable_depth' is greater than | ||
| 325 | zero) | ||
| 326 | |||
| 327 | It is safe to execute the following helper functions from interrupt context: | ||
| 328 | |||
| 329 | pm_request_idle() | ||
| 330 | pm_schedule_suspend() | ||
| 331 | pm_request_resume() | ||
| 332 | pm_runtime_get_noresume() | ||
| 333 | pm_runtime_get() | ||
| 334 | pm_runtime_put_noidle() | ||
| 335 | pm_runtime_put() | ||
| 336 | pm_suspend_ignore_children() | ||
| 337 | pm_runtime_set_active() | ||
| 338 | pm_runtime_set_suspended() | ||
| 339 | pm_runtime_enable() | ||
| 340 | |||
| 341 | 5. Run-time PM Initialization, Device Probing and Removal | ||
| 342 | |||
| 343 | Initially, the run-time PM is disabled for all devices, which means that the | ||
| 344 | majority of the run-time PM helper funtions described in Section 4 will return | ||
| 345 | -EAGAIN until pm_runtime_enable() is called for the device. | ||
| 346 | |||
| 347 | In addition to that, the initial run-time PM status of all devices is | ||
| 348 | 'suspended', but it need not reflect the actual physical state of the device. | ||
| 349 | Thus, if the device is initially active (i.e. it is able to process I/O), its | ||
| 350 | run-time PM status must be changed to 'active', with the help of | ||
| 351 | pm_runtime_set_active(), before pm_runtime_enable() is called for the device. | ||
| 352 | |||
| 353 | However, if the device has a parent and the parent's run-time PM is enabled, | ||
| 354 | calling pm_runtime_set_active() for the device will affect the parent, unless | ||
| 355 | the parent's 'power.ignore_children' flag is set. Namely, in that case the | ||
| 356 | parent won't be able to suspend at run time, using the PM core's helper | ||
| 357 | functions, as long as the child's status is 'active', even if the child's | ||
| 358 | run-time PM is still disabled (i.e. pm_runtime_enable() hasn't been called for | ||
| 359 | the child yet or pm_runtime_disable() has been called for it). For this reason, | ||
| 360 | once pm_runtime_set_active() has been called for the device, pm_runtime_enable() | ||
| 361 | should be called for it too as soon as reasonably possible or its run-time PM | ||
| 362 | status should be changed back to 'suspended' with the help of | ||
| 363 | pm_runtime_set_suspended(). | ||
| 364 | |||
| 365 | If the default initial run-time PM status of the device (i.e. 'suspended') | ||
| 366 | reflects the actual state of the device, its bus type's or its driver's | ||
| 367 | ->probe() callback will likely need to wake it up using one of the PM core's | ||
| 368 | helper functions described in Section 4. In that case, pm_runtime_resume() | ||
| 369 | should be used. Of course, for this purpose the device's run-time PM has to be | ||
| 370 | enabled earlier by calling pm_runtime_enable(). | ||
| 371 | |||
| 372 | If the device bus type's or driver's ->probe() or ->remove() callback runs | ||
| 373 | pm_runtime_suspend() or pm_runtime_idle() or their asynchronous counterparts, | ||
| 374 | they will fail returning -EAGAIN, because the device's usage counter is | ||
| 375 | incremented by the core before executing ->probe() and ->remove(). Still, it | ||
| 376 | may be desirable to suspend the device as soon as ->probe() or ->remove() has | ||
| 377 | finished, so the PM core uses pm_runtime_idle_sync() to invoke the device bus | ||
| 378 | type's ->runtime_idle() callback at that time. | ||
diff --git a/arch/arm/include/asm/device.h b/arch/arm/include/asm/device.h index c61642b40603..9f390ce335cb 100644 --- a/arch/arm/include/asm/device.h +++ b/arch/arm/include/asm/device.h | |||
| @@ -12,4 +12,7 @@ struct dev_archdata { | |||
| 12 | #endif | 12 | #endif |
| 13 | }; | 13 | }; |
| 14 | 14 | ||
| 15 | struct pdev_archdata { | ||
| 16 | }; | ||
| 17 | |||
| 15 | #endif | 18 | #endif |
diff --git a/arch/arm/plat-omap/debug-leds.c b/arch/arm/plat-omap/debug-leds.c index be4eefda4767..9395898dd49a 100644 --- a/arch/arm/plat-omap/debug-leds.c +++ b/arch/arm/plat-omap/debug-leds.c | |||
| @@ -281,24 +281,27 @@ static int /* __init */ fpga_probe(struct platform_device *pdev) | |||
| 281 | return 0; | 281 | return 0; |
| 282 | } | 282 | } |
| 283 | 283 | ||
| 284 | static int fpga_suspend_late(struct platform_device *pdev, pm_message_t mesg) | 284 | static int fpga_suspend_noirq(struct device *dev) |
| 285 | { | 285 | { |
| 286 | __raw_writew(~0, &fpga->leds); | 286 | __raw_writew(~0, &fpga->leds); |
| 287 | return 0; | 287 | return 0; |
| 288 | } | 288 | } |
| 289 | 289 | ||
| 290 | static int fpga_resume_early(struct platform_device *pdev) | 290 | static int fpga_resume_noirq(struct device *dev) |
| 291 | { | 291 | { |
| 292 | __raw_writew(~hw_led_state, &fpga->leds); | 292 | __raw_writew(~hw_led_state, &fpga->leds); |
| 293 | return 0; | 293 | return 0; |
| 294 | } | 294 | } |
| 295 | 295 | ||
| 296 | static struct dev_pm_ops fpga_dev_pm_ops = { | ||
| 297 | .suspend_noirq = fpga_suspend_noirq, | ||
| 298 | .resume_noirq = fpga_resume_noirq, | ||
| 299 | }; | ||
| 296 | 300 | ||
| 297 | static struct platform_driver led_driver = { | 301 | static struct platform_driver led_driver = { |
| 298 | .driver.name = "omap_dbg_led", | 302 | .driver.name = "omap_dbg_led", |
| 303 | .driver.pm = &fpga_dev_pm_ops, | ||
| 299 | .probe = fpga_probe, | 304 | .probe = fpga_probe, |
| 300 | .suspend_late = fpga_suspend_late, | ||
| 301 | .resume_early = fpga_resume_early, | ||
| 302 | }; | 305 | }; |
| 303 | 306 | ||
| 304 | static int __init fpga_init(void) | 307 | static int __init fpga_init(void) |
diff --git a/arch/arm/plat-omap/gpio.c b/arch/arm/plat-omap/gpio.c index fd21937fe110..176c86e5531d 100644 --- a/arch/arm/plat-omap/gpio.c +++ b/arch/arm/plat-omap/gpio.c | |||
| @@ -1418,8 +1418,9 @@ static struct irq_chip mpuio_irq_chip = { | |||
| 1418 | 1418 | ||
| 1419 | #include <linux/platform_device.h> | 1419 | #include <linux/platform_device.h> |
| 1420 | 1420 | ||
| 1421 | static int omap_mpuio_suspend_late(struct platform_device *pdev, pm_message_t mesg) | 1421 | static int omap_mpuio_suspend_noirq(struct device *dev) |
| 1422 | { | 1422 | { |
| 1423 | struct platform_device *pdev = to_platform_device(dev); | ||
| 1423 | struct gpio_bank *bank = platform_get_drvdata(pdev); | 1424 | struct gpio_bank *bank = platform_get_drvdata(pdev); |
| 1424 | void __iomem *mask_reg = bank->base + OMAP_MPUIO_GPIO_MASKIT; | 1425 | void __iomem *mask_reg = bank->base + OMAP_MPUIO_GPIO_MASKIT; |
| 1425 | unsigned long flags; | 1426 | unsigned long flags; |
| @@ -1432,8 +1433,9 @@ static int omap_mpuio_suspend_late(struct platform_device *pdev, pm_message_t me | |||
| 1432 | return 0; | 1433 | return 0; |
| 1433 | } | 1434 | } |
| 1434 | 1435 | ||
| 1435 | static int omap_mpuio_resume_early(struct platform_device *pdev) | 1436 | static int omap_mpuio_resume_noirq(struct device *dev) |
| 1436 | { | 1437 | { |
| 1438 | struct platform_device *pdev = to_platform_device(dev); | ||
| 1437 | struct gpio_bank *bank = platform_get_drvdata(pdev); | 1439 | struct gpio_bank *bank = platform_get_drvdata(pdev); |
| 1438 | void __iomem *mask_reg = bank->base + OMAP_MPUIO_GPIO_MASKIT; | 1440 | void __iomem *mask_reg = bank->base + OMAP_MPUIO_GPIO_MASKIT; |
| 1439 | unsigned long flags; | 1441 | unsigned long flags; |
| @@ -1445,14 +1447,18 @@ static int omap_mpuio_resume_early(struct platform_device *pdev) | |||
| 1445 | return 0; | 1447 | return 0; |
| 1446 | } | 1448 | } |
| 1447 | 1449 | ||
| 1450 | static struct dev_pm_ops omap_mpuio_dev_pm_ops = { | ||
| 1451 | .suspend_noirq = omap_mpuio_suspend_noirq, | ||
| 1452 | .resume_noirq = omap_mpuio_resume_noirq, | ||
| 1453 | }; | ||
| 1454 | |||
| 1448 | /* use platform_driver for this, now that there's no longer any | 1455 | /* use platform_driver for this, now that there's no longer any |
| 1449 | * point to sys_device (other than not disturbing old code). | 1456 | * point to sys_device (other than not disturbing old code). |
| 1450 | */ | 1457 | */ |
| 1451 | static struct platform_driver omap_mpuio_driver = { | 1458 | static struct platform_driver omap_mpuio_driver = { |
| 1452 | .suspend_late = omap_mpuio_suspend_late, | ||
| 1453 | .resume_early = omap_mpuio_resume_early, | ||
| 1454 | .driver = { | 1459 | .driver = { |
| 1455 | .name = "mpuio", | 1460 | .name = "mpuio", |
| 1461 | .pm = &omap_mpuio_dev_pm_ops, | ||
| 1456 | }, | 1462 | }, |
| 1457 | }; | 1463 | }; |
| 1458 | 1464 | ||
diff --git a/arch/ia64/include/asm/device.h b/arch/ia64/include/asm/device.h index 41ab85d66f33..d66d446b127c 100644 --- a/arch/ia64/include/asm/device.h +++ b/arch/ia64/include/asm/device.h | |||
| @@ -15,4 +15,7 @@ struct dev_archdata { | |||
| 15 | #endif | 15 | #endif |
| 16 | }; | 16 | }; |
| 17 | 17 | ||
| 18 | struct pdev_archdata { | ||
| 19 | }; | ||
| 20 | |||
| 18 | #endif /* _ASM_IA64_DEVICE_H */ | 21 | #endif /* _ASM_IA64_DEVICE_H */ |
diff --git a/arch/microblaze/include/asm/device.h b/arch/microblaze/include/asm/device.h index c042830793ed..30286db27c1c 100644 --- a/arch/microblaze/include/asm/device.h +++ b/arch/microblaze/include/asm/device.h | |||
| @@ -16,6 +16,9 @@ struct dev_archdata { | |||
| 16 | struct device_node *of_node; | 16 | struct device_node *of_node; |
| 17 | }; | 17 | }; |
| 18 | 18 | ||
| 19 | struct pdev_archdata { | ||
| 20 | }; | ||
| 21 | |||
| 19 | #endif /* _ASM_MICROBLAZE_DEVICE_H */ | 22 | #endif /* _ASM_MICROBLAZE_DEVICE_H */ |
| 20 | 23 | ||
| 21 | 24 | ||
diff --git a/arch/powerpc/include/asm/device.h b/arch/powerpc/include/asm/device.h index 7d2277cef09a..e3e06e0f7fc0 100644 --- a/arch/powerpc/include/asm/device.h +++ b/arch/powerpc/include/asm/device.h | |||
| @@ -30,4 +30,7 @@ dev_archdata_get_node(const struct dev_archdata *ad) | |||
| 30 | return ad->of_node; | 30 | return ad->of_node; |
| 31 | } | 31 | } |
| 32 | 32 | ||
| 33 | struct pdev_archdata { | ||
| 34 | }; | ||
| 35 | |||
| 33 | #endif /* _ASM_POWERPC_DEVICE_H */ | 36 | #endif /* _ASM_POWERPC_DEVICE_H */ |
diff --git a/arch/sparc/include/asm/device.h b/arch/sparc/include/asm/device.h index 3702e087df2c..f3b85b6b0b76 100644 --- a/arch/sparc/include/asm/device.h +++ b/arch/sparc/include/asm/device.h | |||
| @@ -32,4 +32,7 @@ dev_archdata_get_node(const struct dev_archdata *ad) | |||
| 32 | return ad->prom_node; | 32 | return ad->prom_node; |
| 33 | } | 33 | } |
| 34 | 34 | ||
| 35 | struct pdev_archdata { | ||
| 36 | }; | ||
| 37 | |||
| 35 | #endif /* _ASM_SPARC_DEVICE_H */ | 38 | #endif /* _ASM_SPARC_DEVICE_H */ |
diff --git a/arch/x86/include/asm/device.h b/arch/x86/include/asm/device.h index 4994a20acbcb..cee34e9ca45b 100644 --- a/arch/x86/include/asm/device.h +++ b/arch/x86/include/asm/device.h | |||
| @@ -13,4 +13,7 @@ struct dma_map_ops *dma_ops; | |||
| 13 | #endif | 13 | #endif |
| 14 | }; | 14 | }; |
| 15 | 15 | ||
| 16 | struct pdev_archdata { | ||
| 17 | }; | ||
| 18 | |||
| 16 | #endif /* _ASM_X86_DEVICE_H */ | 19 | #endif /* _ASM_X86_DEVICE_H */ |
diff --git a/drivers/base/dd.c b/drivers/base/dd.c index f0106875f01d..7b34b3a48f67 100644 --- a/drivers/base/dd.c +++ b/drivers/base/dd.c | |||
| @@ -23,6 +23,7 @@ | |||
| 23 | #include <linux/kthread.h> | 23 | #include <linux/kthread.h> |
| 24 | #include <linux/wait.h> | 24 | #include <linux/wait.h> |
| 25 | #include <linux/async.h> | 25 | #include <linux/async.h> |
| 26 | #include <linux/pm_runtime.h> | ||
| 26 | 27 | ||
| 27 | #include "base.h" | 28 | #include "base.h" |
| 28 | #include "power/power.h" | 29 | #include "power/power.h" |
| @@ -202,7 +203,10 @@ int driver_probe_device(struct device_driver *drv, struct device *dev) | |||
| 202 | pr_debug("bus: '%s': %s: matched device %s with driver %s\n", | 203 | pr_debug("bus: '%s': %s: matched device %s with driver %s\n", |
| 203 | drv->bus->name, __func__, dev_name(dev), drv->name); | 204 | drv->bus->name, __func__, dev_name(dev), drv->name); |
| 204 | 205 | ||
| 206 | pm_runtime_get_noresume(dev); | ||
| 207 | pm_runtime_barrier(dev); | ||
| 205 | ret = really_probe(dev, drv); | 208 | ret = really_probe(dev, drv); |
| 209 | pm_runtime_put_sync(dev); | ||
| 206 | 210 | ||
| 207 | return ret; | 211 | return ret; |
| 208 | } | 212 | } |
| @@ -245,7 +249,9 @@ int device_attach(struct device *dev) | |||
| 245 | ret = 0; | 249 | ret = 0; |
| 246 | } | 250 | } |
| 247 | } else { | 251 | } else { |
| 252 | pm_runtime_get_noresume(dev); | ||
| 248 | ret = bus_for_each_drv(dev->bus, NULL, dev, __device_attach); | 253 | ret = bus_for_each_drv(dev->bus, NULL, dev, __device_attach); |
| 254 | pm_runtime_put_sync(dev); | ||
| 249 | } | 255 | } |
| 250 | up(&dev->sem); | 256 | up(&dev->sem); |
| 251 | return ret; | 257 | return ret; |
| @@ -306,6 +312,9 @@ static void __device_release_driver(struct device *dev) | |||
| 306 | 312 | ||
| 307 | drv = dev->driver; | 313 | drv = dev->driver; |
| 308 | if (drv) { | 314 | if (drv) { |
| 315 | pm_runtime_get_noresume(dev); | ||
| 316 | pm_runtime_barrier(dev); | ||
| 317 | |||
| 309 | driver_sysfs_remove(dev); | 318 | driver_sysfs_remove(dev); |
| 310 | 319 | ||
| 311 | if (dev->bus) | 320 | if (dev->bus) |
| @@ -324,6 +333,8 @@ static void __device_release_driver(struct device *dev) | |||
| 324 | blocking_notifier_call_chain(&dev->bus->p->bus_notifier, | 333 | blocking_notifier_call_chain(&dev->bus->p->bus_notifier, |
| 325 | BUS_NOTIFY_UNBOUND_DRIVER, | 334 | BUS_NOTIFY_UNBOUND_DRIVER, |
| 326 | dev); | 335 | dev); |
| 336 | |||
| 337 | pm_runtime_put_sync(dev); | ||
| 327 | } | 338 | } |
| 328 | } | 339 | } |
| 329 | 340 | ||
diff --git a/drivers/base/platform.c b/drivers/base/platform.c index 0b111e8e444f..0f7d434ce983 100644 --- a/drivers/base/platform.c +++ b/drivers/base/platform.c | |||
| @@ -17,6 +17,7 @@ | |||
| 17 | #include <linux/bootmem.h> | 17 | #include <linux/bootmem.h> |
| 18 | #include <linux/err.h> | 18 | #include <linux/err.h> |
| 19 | #include <linux/slab.h> | 19 | #include <linux/slab.h> |
| 20 | #include <linux/pm_runtime.h> | ||
| 20 | 21 | ||
| 21 | #include "base.h" | 22 | #include "base.h" |
| 22 | 23 | ||
| @@ -625,30 +626,6 @@ static int platform_legacy_suspend(struct device *dev, pm_message_t mesg) | |||
| 625 | return ret; | 626 | return ret; |
| 626 | } | 627 | } |
| 627 | 628 | ||
| 628 | static int platform_legacy_suspend_late(struct device *dev, pm_message_t mesg) | ||
| 629 | { | ||
| 630 | struct platform_driver *pdrv = to_platform_driver(dev->driver); | ||
| 631 | struct platform_device *pdev = to_platform_device(dev); | ||
| 632 | int ret = 0; | ||
| 633 | |||
| 634 | if (dev->driver && pdrv->suspend_late) | ||
| 635 | ret = pdrv->suspend_late(pdev, mesg); | ||
| 636 | |||
| 637 | return ret; | ||
| 638 | } | ||
| 639 | |||
| 640 | static int platform_legacy_resume_early(struct device *dev) | ||
| 641 | { | ||
| 642 | struct platform_driver *pdrv = to_platform_driver(dev->driver); | ||
| 643 | struct platform_device *pdev = to_platform_device(dev); | ||
| 644 | int ret = 0; | ||
| 645 | |||
| 646 | if (dev->driver && pdrv->resume_early) | ||
| 647 | ret = pdrv->resume_early(pdev); | ||
| 648 | |||
| 649 | return ret; | ||
| 650 | } | ||
| 651 | |||
| 652 | static int platform_legacy_resume(struct device *dev) | 629 | static int platform_legacy_resume(struct device *dev) |
| 653 | { | 630 | { |
| 654 | struct platform_driver *pdrv = to_platform_driver(dev->driver); | 631 | struct platform_driver *pdrv = to_platform_driver(dev->driver); |
| @@ -680,6 +657,13 @@ static void platform_pm_complete(struct device *dev) | |||
| 680 | drv->pm->complete(dev); | 657 | drv->pm->complete(dev); |
| 681 | } | 658 | } |
| 682 | 659 | ||
| 660 | #else /* !CONFIG_PM_SLEEP */ | ||
| 661 | |||
| 662 | #define platform_pm_prepare NULL | ||
| 663 | #define platform_pm_complete NULL | ||
| 664 | |||
| 665 | #endif /* !CONFIG_PM_SLEEP */ | ||
| 666 | |||
| 683 | #ifdef CONFIG_SUSPEND | 667 | #ifdef CONFIG_SUSPEND |
| 684 | 668 | ||
| 685 | static int platform_pm_suspend(struct device *dev) | 669 | static int platform_pm_suspend(struct device *dev) |
| @@ -711,8 +695,6 @@ static int platform_pm_suspend_noirq(struct device *dev) | |||
| 711 | if (drv->pm) { | 695 | if (drv->pm) { |
| 712 | if (drv->pm->suspend_noirq) | 696 | if (drv->pm->suspend_noirq) |
| 713 | ret = drv->pm->suspend_noirq(dev); | 697 | ret = drv->pm->suspend_noirq(dev); |
| 714 | } else { | ||
| 715 | ret = platform_legacy_suspend_late(dev, PMSG_SUSPEND); | ||
| 716 | } | 698 | } |
| 717 | 699 | ||
| 718 | return ret; | 700 | return ret; |
| @@ -747,8 +729,6 @@ static int platform_pm_resume_noirq(struct device *dev) | |||
| 747 | if (drv->pm) { | 729 | if (drv->pm) { |
| 748 | if (drv->pm->resume_noirq) | 730 | if (drv->pm->resume_noirq) |
| 749 | ret = drv->pm->resume_noirq(dev); | 731 | ret = drv->pm->resume_noirq(dev); |
| 750 | } else { | ||
| 751 | ret = platform_legacy_resume_early(dev); | ||
| 752 | } | 732 | } |
| 753 | 733 | ||
| 754 | return ret; | 734 | return ret; |
| @@ -794,8 +774,6 @@ static int platform_pm_freeze_noirq(struct device *dev) | |||
| 794 | if (drv->pm) { | 774 | if (drv->pm) { |
| 795 | if (drv->pm->freeze_noirq) | 775 | if (drv->pm->freeze_noirq) |
| 796 | ret = drv->pm->freeze_noirq(dev); | 776 | ret = drv->pm->freeze_noirq(dev); |
| 797 | } else { | ||
| 798 | ret = platform_legacy_suspend_late(dev, PMSG_FREEZE); | ||
| 799 | } | 777 | } |
| 800 | 778 | ||
| 801 | return ret; | 779 | return ret; |
| @@ -830,8 +808,6 @@ static int platform_pm_thaw_noirq(struct device *dev) | |||
| 830 | if (drv->pm) { | 808 | if (drv->pm) { |
| 831 | if (drv->pm->thaw_noirq) | 809 | if (drv->pm->thaw_noirq) |
| 832 | ret = drv->pm->thaw_noirq(dev); | 810 | ret = drv->pm->thaw_noirq(dev); |
| 833 | } else { | ||
| 834 | ret = platform_legacy_resume_early(dev); | ||
| 835 | } | 811 | } |
| 836 | 812 | ||
| 837 | return ret; | 813 | return ret; |
| @@ -866,8 +842,6 @@ static int platform_pm_poweroff_noirq(struct device *dev) | |||
| 866 | if (drv->pm) { | 842 | if (drv->pm) { |
| 867 | if (drv->pm->poweroff_noirq) | 843 | if (drv->pm->poweroff_noirq) |
| 868 | ret = drv->pm->poweroff_noirq(dev); | 844 | ret = drv->pm->poweroff_noirq(dev); |
| 869 | } else { | ||
| 870 | ret = platform_legacy_suspend_late(dev, PMSG_HIBERNATE); | ||
| 871 | } | 845 | } |
| 872 | 846 | ||
| 873 | return ret; | 847 | return ret; |
| @@ -902,8 +876,6 @@ static int platform_pm_restore_noirq(struct device *dev) | |||
| 902 | if (drv->pm) { | 876 | if (drv->pm) { |
| 903 | if (drv->pm->restore_noirq) | 877 | if (drv->pm->restore_noirq) |
| 904 | ret = drv->pm->restore_noirq(dev); | 878 | ret = drv->pm->restore_noirq(dev); |
| 905 | } else { | ||
| 906 | ret = platform_legacy_resume_early(dev); | ||
| 907 | } | 879 | } |
| 908 | 880 | ||
| 909 | return ret; | 881 | return ret; |
| @@ -922,6 +894,31 @@ static int platform_pm_restore_noirq(struct device *dev) | |||
| 922 | 894 | ||
| 923 | #endif /* !CONFIG_HIBERNATION */ | 895 | #endif /* !CONFIG_HIBERNATION */ |
| 924 | 896 | ||
| 897 | #ifdef CONFIG_PM_RUNTIME | ||
| 898 | |||
| 899 | int __weak platform_pm_runtime_suspend(struct device *dev) | ||
| 900 | { | ||
| 901 | return -ENOSYS; | ||
| 902 | }; | ||
| 903 | |||
| 904 | int __weak platform_pm_runtime_resume(struct device *dev) | ||
| 905 | { | ||
| 906 | return -ENOSYS; | ||
| 907 | }; | ||
| 908 | |||
| 909 | int __weak platform_pm_runtime_idle(struct device *dev) | ||
| 910 | { | ||
| 911 | return -ENOSYS; | ||
| 912 | }; | ||
| 913 | |||
| 914 | #else /* !CONFIG_PM_RUNTIME */ | ||
| 915 | |||
| 916 | #define platform_pm_runtime_suspend NULL | ||
| 917 | #define platform_pm_runtime_resume NULL | ||
| 918 | #define platform_pm_runtime_idle NULL | ||
| 919 | |||
| 920 | #endif /* !CONFIG_PM_RUNTIME */ | ||
| 921 | |||
| 925 | static const struct dev_pm_ops platform_dev_pm_ops = { | 922 | static const struct dev_pm_ops platform_dev_pm_ops = { |
| 926 | .prepare = platform_pm_prepare, | 923 | .prepare = platform_pm_prepare, |
| 927 | .complete = platform_pm_complete, | 924 | .complete = platform_pm_complete, |
| @@ -937,22 +934,17 @@ static const struct dev_pm_ops platform_dev_pm_ops = { | |||
| 937 | .thaw_noirq = platform_pm_thaw_noirq, | 934 | .thaw_noirq = platform_pm_thaw_noirq, |
| 938 | .poweroff_noirq = platform_pm_poweroff_noirq, | 935 | .poweroff_noirq = platform_pm_poweroff_noirq, |
| 939 | .restore_noirq = platform_pm_restore_noirq, | 936 | .restore_noirq = platform_pm_restore_noirq, |
| 937 | .runtime_suspend = platform_pm_runtime_suspend, | ||
| 938 | .runtime_resume = platform_pm_runtime_resume, | ||
| 939 | .runtime_idle = platform_pm_runtime_idle, | ||
| 940 | }; | 940 | }; |
| 941 | 941 | ||
| 942 | #define PLATFORM_PM_OPS_PTR (&platform_dev_pm_ops) | ||
| 943 | |||
| 944 | #else /* !CONFIG_PM_SLEEP */ | ||
| 945 | |||
| 946 | #define PLATFORM_PM_OPS_PTR NULL | ||
| 947 | |||
| 948 | #endif /* !CONFIG_PM_SLEEP */ | ||
| 949 | |||
| 950 | struct bus_type platform_bus_type = { | 942 | struct bus_type platform_bus_type = { |
| 951 | .name = "platform", | 943 | .name = "platform", |
| 952 | .dev_attrs = platform_dev_attrs, | 944 | .dev_attrs = platform_dev_attrs, |
| 953 | .match = platform_match, | 945 | .match = platform_match, |
| 954 | .uevent = platform_uevent, | 946 | .uevent = platform_uevent, |
| 955 | .pm = PLATFORM_PM_OPS_PTR, | 947 | .pm = &platform_dev_pm_ops, |
| 956 | }; | 948 | }; |
| 957 | EXPORT_SYMBOL_GPL(platform_bus_type); | 949 | EXPORT_SYMBOL_GPL(platform_bus_type); |
| 958 | 950 | ||
diff --git a/drivers/base/power/Makefile b/drivers/base/power/Makefile index 911208b89259..3ce3519e8f30 100644 --- a/drivers/base/power/Makefile +++ b/drivers/base/power/Makefile | |||
| @@ -1,5 +1,6 @@ | |||
| 1 | obj-$(CONFIG_PM) += sysfs.o | 1 | obj-$(CONFIG_PM) += sysfs.o |
| 2 | obj-$(CONFIG_PM_SLEEP) += main.o | 2 | obj-$(CONFIG_PM_SLEEP) += main.o |
| 3 | obj-$(CONFIG_PM_RUNTIME) += runtime.o | ||
| 3 | obj-$(CONFIG_PM_TRACE_RTC) += trace.o | 4 | obj-$(CONFIG_PM_TRACE_RTC) += trace.o |
| 4 | 5 | ||
| 5 | ccflags-$(CONFIG_DEBUG_DRIVER) := -DDEBUG | 6 | ccflags-$(CONFIG_DEBUG_DRIVER) := -DDEBUG |
diff --git a/drivers/base/power/main.c b/drivers/base/power/main.c index 1b1a786b7dec..e0dc4071e088 100644 --- a/drivers/base/power/main.c +++ b/drivers/base/power/main.c | |||
| @@ -21,6 +21,7 @@ | |||
| 21 | #include <linux/kallsyms.h> | 21 | #include <linux/kallsyms.h> |
| 22 | #include <linux/mutex.h> | 22 | #include <linux/mutex.h> |
| 23 | #include <linux/pm.h> | 23 | #include <linux/pm.h> |
| 24 | #include <linux/pm_runtime.h> | ||
| 24 | #include <linux/resume-trace.h> | 25 | #include <linux/resume-trace.h> |
| 25 | #include <linux/rwsem.h> | 26 | #include <linux/rwsem.h> |
| 26 | #include <linux/interrupt.h> | 27 | #include <linux/interrupt.h> |
| @@ -49,7 +50,17 @@ static DEFINE_MUTEX(dpm_list_mtx); | |||
| 49 | static bool transition_started; | 50 | static bool transition_started; |
| 50 | 51 | ||
| 51 | /** | 52 | /** |
| 52 | * device_pm_lock - lock the list of active devices used by the PM core | 53 | * device_pm_init - Initialize the PM-related part of a device object. |
| 54 | * @dev: Device object being initialized. | ||
| 55 | */ | ||
| 56 | void device_pm_init(struct device *dev) | ||
| 57 | { | ||
| 58 | dev->power.status = DPM_ON; | ||
| 59 | pm_runtime_init(dev); | ||
| 60 | } | ||
| 61 | |||
| 62 | /** | ||
| 63 | * device_pm_lock - Lock the list of active devices used by the PM core. | ||
| 53 | */ | 64 | */ |
| 54 | void device_pm_lock(void) | 65 | void device_pm_lock(void) |
| 55 | { | 66 | { |
| @@ -57,7 +68,7 @@ void device_pm_lock(void) | |||
| 57 | } | 68 | } |
| 58 | 69 | ||
| 59 | /** | 70 | /** |
| 60 | * device_pm_unlock - unlock the list of active devices used by the PM core | 71 | * device_pm_unlock - Unlock the list of active devices used by the PM core. |
| 61 | */ | 72 | */ |
| 62 | void device_pm_unlock(void) | 73 | void device_pm_unlock(void) |
| 63 | { | 74 | { |
| @@ -65,8 +76,8 @@ void device_pm_unlock(void) | |||
| 65 | } | 76 | } |
| 66 | 77 | ||
| 67 | /** | 78 | /** |
| 68 | * device_pm_add - add a device to the list of active devices | 79 | * device_pm_add - Add a device to the PM core's list of active devices. |
| 69 | * @dev: Device to be added to the list | 80 | * @dev: Device to add to the list. |
| 70 | */ | 81 | */ |
| 71 | void device_pm_add(struct device *dev) | 82 | void device_pm_add(struct device *dev) |
| 72 | { | 83 | { |
| @@ -92,10 +103,8 @@ void device_pm_add(struct device *dev) | |||
| 92 | } | 103 | } |
| 93 | 104 | ||
| 94 | /** | 105 | /** |
| 95 | * device_pm_remove - remove a device from the list of active devices | 106 | * device_pm_remove - Remove a device from the PM core's list of active devices. |
| 96 | * @dev: Device to be removed from the list | 107 | * @dev: Device to be removed from the list. |
| 97 | * | ||
| 98 | * This function also removes the device's PM-related sysfs attributes. | ||
| 99 | */ | 108 | */ |
| 100 | void device_pm_remove(struct device *dev) | 109 | void device_pm_remove(struct device *dev) |
| 101 | { | 110 | { |
| @@ -105,12 +114,13 @@ void device_pm_remove(struct device *dev) | |||
| 105 | mutex_lock(&dpm_list_mtx); | 114 | mutex_lock(&dpm_list_mtx); |
| 106 | list_del_init(&dev->power.entry); | 115 | list_del_init(&dev->power.entry); |
| 107 | mutex_unlock(&dpm_list_mtx); | 116 | mutex_unlock(&dpm_list_mtx); |
| 117 | pm_runtime_remove(dev); | ||
| 108 | } | 118 | } |
| 109 | 119 | ||
| 110 | /** | 120 | /** |
| 111 | * device_pm_move_before - move device in dpm_list | 121 | * device_pm_move_before - Move device in the PM core's list of active devices. |
| 112 | * @deva: Device to move in dpm_list | 122 | * @deva: Device to move in dpm_list. |
| 113 | * @devb: Device @deva should come before | 123 | * @devb: Device @deva should come before. |
| 114 | */ | 124 | */ |
| 115 | void device_pm_move_before(struct device *deva, struct device *devb) | 125 | void device_pm_move_before(struct device *deva, struct device *devb) |
| 116 | { | 126 | { |
| @@ -124,9 +134,9 @@ void device_pm_move_before(struct device *deva, struct device *devb) | |||
| 124 | } | 134 | } |
| 125 | 135 | ||
| 126 | /** | 136 | /** |
| 127 | * device_pm_move_after - move device in dpm_list | 137 | * device_pm_move_after - Move device in the PM core's list of active devices. |
| 128 | * @deva: Device to move in dpm_list | 138 | * @deva: Device to move in dpm_list. |
| 129 | * @devb: Device @deva should come after | 139 | * @devb: Device @deva should come after. |
| 130 | */ | 140 | */ |
| 131 | void device_pm_move_after(struct device *deva, struct device *devb) | 141 | void device_pm_move_after(struct device *deva, struct device *devb) |
| 132 | { | 142 | { |
| @@ -140,8 +150,8 @@ void device_pm_move_after(struct device *deva, struct device *devb) | |||
| 140 | } | 150 | } |
| 141 | 151 | ||
| 142 | /** | 152 | /** |
| 143 | * device_pm_move_last - move device to end of dpm_list | 153 | * device_pm_move_last - Move device to end of the PM core's list of devices. |
| 144 | * @dev: Device to move in dpm_list | 154 | * @dev: Device to move in dpm_list. |
| 145 | */ | 155 | */ |
| 146 | void device_pm_move_last(struct device *dev) | 156 | void device_pm_move_last(struct device *dev) |
| 147 | { | 157 | { |
| @@ -152,10 +162,10 @@ void device_pm_move_last(struct device *dev) | |||
| 152 | } | 162 | } |
| 153 | 163 | ||
| 154 | /** | 164 | /** |
| 155 | * pm_op - execute the PM operation appropiate for given PM event | 165 | * pm_op - Execute the PM operation appropriate for given PM event. |
| 156 | * @dev: Device. | 166 | * @dev: Device to handle. |
| 157 | * @ops: PM operations to choose from. | 167 | * @ops: PM operations to choose from. |
| 158 | * @state: PM transition of the system being carried out. | 168 | * @state: PM transition of the system being carried out. |
| 159 | */ | 169 | */ |
| 160 | static int pm_op(struct device *dev, | 170 | static int pm_op(struct device *dev, |
| 161 | const struct dev_pm_ops *ops, | 171 | const struct dev_pm_ops *ops, |
| @@ -213,13 +223,13 @@ static int pm_op(struct device *dev, | |||
| 213 | } | 223 | } |
| 214 | 224 | ||
| 215 | /** | 225 | /** |
| 216 | * pm_noirq_op - execute the PM operation appropiate for given PM event | 226 | * pm_noirq_op - Execute the PM operation appropriate for given PM event. |
| 217 | * @dev: Device. | 227 | * @dev: Device to handle. |
| 218 | * @ops: PM operations to choose from. | 228 | * @ops: PM operations to choose from. |
| 219 | * @state: PM transition of the system being carried out. | 229 | * @state: PM transition of the system being carried out. |
| 220 | * | 230 | * |
| 221 | * The operation is executed with interrupts disabled by the only remaining | 231 | * The driver of @dev will not receive interrupts while this function is being |
| 222 | * functional CPU in the system. | 232 | * executed. |
| 223 | */ | 233 | */ |
| 224 | static int pm_noirq_op(struct device *dev, | 234 | static int pm_noirq_op(struct device *dev, |
| 225 | const struct dev_pm_ops *ops, | 235 | const struct dev_pm_ops *ops, |
| @@ -317,11 +327,12 @@ static void pm_dev_err(struct device *dev, pm_message_t state, char *info, | |||
| 317 | /*------------------------- Resume routines -------------------------*/ | 327 | /*------------------------- Resume routines -------------------------*/ |
| 318 | 328 | ||
| 319 | /** | 329 | /** |
| 320 | * device_resume_noirq - Power on one device (early resume). | 330 | * device_resume_noirq - Execute an "early resume" callback for given device. |
| 321 | * @dev: Device. | 331 | * @dev: Device to handle. |
| 322 | * @state: PM transition of the system being carried out. | 332 | * @state: PM transition of the system being carried out. |
| 323 | * | 333 | * |
| 324 | * Must be called with interrupts disabled. | 334 | * The driver of @dev will not receive interrupts while this function is being |
| 335 | * executed. | ||
| 325 | */ | 336 | */ |
| 326 | static int device_resume_noirq(struct device *dev, pm_message_t state) | 337 | static int device_resume_noirq(struct device *dev, pm_message_t state) |
| 327 | { | 338 | { |
| @@ -343,20 +354,18 @@ static int device_resume_noirq(struct device *dev, pm_message_t state) | |||
| 343 | } | 354 | } |
| 344 | 355 | ||
| 345 | /** | 356 | /** |
| 346 | * dpm_resume_noirq - Power on all regular (non-sysdev) devices. | 357 | * dpm_resume_noirq - Execute "early resume" callbacks for non-sysdev devices. |
| 347 | * @state: PM transition of the system being carried out. | 358 | * @state: PM transition of the system being carried out. |
| 348 | * | ||
| 349 | * Call the "noirq" resume handlers for all devices marked as | ||
| 350 | * DPM_OFF_IRQ and enable device drivers to receive interrupts. | ||
| 351 | * | 359 | * |
| 352 | * Must be called under dpm_list_mtx. Device drivers should not receive | 360 | * Call the "noirq" resume handlers for all devices marked as DPM_OFF_IRQ and |
| 353 | * interrupts while it's being executed. | 361 | * enable device drivers to receive interrupts. |
| 354 | */ | 362 | */ |
| 355 | void dpm_resume_noirq(pm_message_t state) | 363 | void dpm_resume_noirq(pm_message_t state) |
| 356 | { | 364 | { |
| 357 | struct device *dev; | 365 | struct device *dev; |
| 358 | 366 | ||
| 359 | mutex_lock(&dpm_list_mtx); | 367 | mutex_lock(&dpm_list_mtx); |
| 368 | transition_started = false; | ||
| 360 | list_for_each_entry(dev, &dpm_list, power.entry) | 369 | list_for_each_entry(dev, &dpm_list, power.entry) |
| 361 | if (dev->power.status > DPM_OFF) { | 370 | if (dev->power.status > DPM_OFF) { |
| 362 | int error; | 371 | int error; |
| @@ -372,9 +381,9 @@ void dpm_resume_noirq(pm_message_t state) | |||
| 372 | EXPORT_SYMBOL_GPL(dpm_resume_noirq); | 381 | EXPORT_SYMBOL_GPL(dpm_resume_noirq); |
| 373 | 382 | ||
| 374 | /** | 383 | /** |
| 375 | * device_resume - Restore state for one device. | 384 | * device_resume - Execute "resume" callbacks for given device. |
| 376 | * @dev: Device. | 385 | * @dev: Device to handle. |
| 377 | * @state: PM transition of the system being carried out. | 386 | * @state: PM transition of the system being carried out. |
| 378 | */ | 387 | */ |
| 379 | static int device_resume(struct device *dev, pm_message_t state) | 388 | static int device_resume(struct device *dev, pm_message_t state) |
| 380 | { | 389 | { |
| @@ -423,11 +432,11 @@ static int device_resume(struct device *dev, pm_message_t state) | |||
| 423 | } | 432 | } |
| 424 | 433 | ||
| 425 | /** | 434 | /** |
| 426 | * dpm_resume - Resume every device. | 435 | * dpm_resume - Execute "resume" callbacks for non-sysdev devices. |
| 427 | * @state: PM transition of the system being carried out. | 436 | * @state: PM transition of the system being carried out. |
| 428 | * | 437 | * |
| 429 | * Execute the appropriate "resume" callback for all devices the status of | 438 | * Execute the appropriate "resume" callback for all devices whose status |
| 430 | * which indicates that they are inactive. | 439 | * indicates that they are suspended. |
| 431 | */ | 440 | */ |
| 432 | static void dpm_resume(pm_message_t state) | 441 | static void dpm_resume(pm_message_t state) |
| 433 | { | 442 | { |
| @@ -435,7 +444,6 @@ static void dpm_resume(pm_message_t state) | |||
| 435 | 444 | ||
| 436 | INIT_LIST_HEAD(&list); | 445 | INIT_LIST_HEAD(&list); |
| 437 | mutex_lock(&dpm_list_mtx); | 446 | mutex_lock(&dpm_list_mtx); |
| 438 | transition_started = false; | ||
| 439 | while (!list_empty(&dpm_list)) { | 447 | while (!list_empty(&dpm_list)) { |
| 440 | struct device *dev = to_device(dpm_list.next); | 448 | struct device *dev = to_device(dpm_list.next); |
| 441 | 449 | ||
| @@ -464,9 +472,9 @@ static void dpm_resume(pm_message_t state) | |||
| 464 | } | 472 | } |
| 465 | 473 | ||
| 466 | /** | 474 | /** |
| 467 | * device_complete - Complete a PM transition for given device | 475 | * device_complete - Complete a PM transition for given device. |
| 468 | * @dev: Device. | 476 | * @dev: Device to handle. |
| 469 | * @state: PM transition of the system being carried out. | 477 | * @state: PM transition of the system being carried out. |
| 470 | */ | 478 | */ |
| 471 | static void device_complete(struct device *dev, pm_message_t state) | 479 | static void device_complete(struct device *dev, pm_message_t state) |
| 472 | { | 480 | { |
| @@ -491,11 +499,11 @@ static void device_complete(struct device *dev, pm_message_t state) | |||
| 491 | } | 499 | } |
| 492 | 500 | ||
| 493 | /** | 501 | /** |
| 494 | * dpm_complete - Complete a PM transition for all devices. | 502 | * dpm_complete - Complete a PM transition for all non-sysdev devices. |
| 495 | * @state: PM transition of the system being carried out. | 503 | * @state: PM transition of the system being carried out. |
| 496 | * | 504 | * |
| 497 | * Execute the ->complete() callbacks for all devices that are not marked | 505 | * Execute the ->complete() callbacks for all devices whose PM status is not |
| 498 | * as DPM_ON. | 506 | * DPM_ON (this allows new devices to be registered). |
| 499 | */ | 507 | */ |
| 500 | static void dpm_complete(pm_message_t state) | 508 | static void dpm_complete(pm_message_t state) |
| 501 | { | 509 | { |
| @@ -512,6 +520,7 @@ static void dpm_complete(pm_message_t state) | |||
| 512 | mutex_unlock(&dpm_list_mtx); | 520 | mutex_unlock(&dpm_list_mtx); |
| 513 | 521 | ||
| 514 | device_complete(dev, state); | 522 | device_complete(dev, state); |
| 523 | pm_runtime_put_noidle(dev); | ||
| 515 | 524 | ||
| 516 | mutex_lock(&dpm_list_mtx); | 525 | mutex_lock(&dpm_list_mtx); |
| 517 | } | 526 | } |
| @@ -524,11 +533,11 @@ static void dpm_complete(pm_message_t state) | |||
| 524 | } | 533 | } |
| 525 | 534 | ||
| 526 | /** | 535 | /** |
| 527 | * dpm_resume_end - Restore state of each device in system. | 536 | * dpm_resume_end - Execute "resume" callbacks and complete system transition. |
| 528 | * @state: PM transition of the system being carried out. | 537 | * @state: PM transition of the system being carried out. |
| 529 | * | 538 | * |
| 530 | * Resume all the devices, unlock them all, and allow new | 539 | * Execute "resume" callbacks for all devices and complete the PM transition of |
| 531 | * devices to be registered once again. | 540 | * the system. |
| 532 | */ | 541 | */ |
| 533 | void dpm_resume_end(pm_message_t state) | 542 | void dpm_resume_end(pm_message_t state) |
| 534 | { | 543 | { |
| @@ -542,9 +551,11 @@ EXPORT_SYMBOL_GPL(dpm_resume_end); | |||
| 542 | /*------------------------- Suspend routines -------------------------*/ | 551 | /*------------------------- Suspend routines -------------------------*/ |
| 543 | 552 | ||
| 544 | /** | 553 | /** |
| 545 | * resume_event - return a PM message representing the resume event | 554 | * resume_event - Return a "resume" message for given "suspend" sleep state. |
| 546 | * corresponding to given sleep state. | 555 | * @sleep_state: PM message representing a sleep state. |
| 547 | * @sleep_state: PM message representing a sleep state. | 556 | * |
| 557 | * Return a PM message representing the resume event corresponding to given | ||
| 558 | * sleep state. | ||
| 548 | */ | 559 | */ |
| 549 | static pm_message_t resume_event(pm_message_t sleep_state) | 560 | static pm_message_t resume_event(pm_message_t sleep_state) |
| 550 | { | 561 | { |
| @@ -561,11 +572,12 @@ static pm_message_t resume_event(pm_message_t sleep_state) | |||
| 561 | } | 572 | } |
| 562 | 573 | ||
| 563 | /** | 574 | /** |
| 564 | * device_suspend_noirq - Shut down one device (late suspend). | 575 | * device_suspend_noirq - Execute a "late suspend" callback for given device. |
| 565 | * @dev: Device. | 576 | * @dev: Device to handle. |
| 566 | * @state: PM transition of the system being carried out. | 577 | * @state: PM transition of the system being carried out. |
| 567 | * | 578 | * |
| 568 | * This is called with interrupts off and only a single CPU running. | 579 | * The driver of @dev will not receive interrupts while this function is being |
| 580 | * executed. | ||
| 569 | */ | 581 | */ |
| 570 | static int device_suspend_noirq(struct device *dev, pm_message_t state) | 582 | static int device_suspend_noirq(struct device *dev, pm_message_t state) |
| 571 | { | 583 | { |
| @@ -582,13 +594,11 @@ static int device_suspend_noirq(struct device *dev, pm_message_t state) | |||
| 582 | } | 594 | } |
| 583 | 595 | ||
| 584 | /** | 596 | /** |
| 585 | * dpm_suspend_noirq - Power down all regular (non-sysdev) devices. | 597 | * dpm_suspend_noirq - Execute "late suspend" callbacks for non-sysdev devices. |
| 586 | * @state: PM transition of the system being carried out. | 598 | * @state: PM transition of the system being carried out. |
| 587 | * | ||
| 588 | * Prevent device drivers from receiving interrupts and call the "noirq" | ||
| 589 | * suspend handlers. | ||
| 590 | * | 599 | * |
| 591 | * Must be called under dpm_list_mtx. | 600 | * Prevent device drivers from receiving interrupts and call the "noirq" suspend |
| 601 | * handlers for all non-sysdev devices. | ||
| 592 | */ | 602 | */ |
| 593 | int dpm_suspend_noirq(pm_message_t state) | 603 | int dpm_suspend_noirq(pm_message_t state) |
| 594 | { | 604 | { |
| @@ -613,9 +623,9 @@ int dpm_suspend_noirq(pm_message_t state) | |||
| 613 | EXPORT_SYMBOL_GPL(dpm_suspend_noirq); | 623 | EXPORT_SYMBOL_GPL(dpm_suspend_noirq); |
| 614 | 624 | ||
| 615 | /** | 625 | /** |
| 616 | * device_suspend - Save state of one device. | 626 | * device_suspend - Execute "suspend" callbacks for given device. |
| 617 | * @dev: Device. | 627 | * @dev: Device to handle. |
| 618 | * @state: PM transition of the system being carried out. | 628 | * @state: PM transition of the system being carried out. |
| 619 | */ | 629 | */ |
| 620 | static int device_suspend(struct device *dev, pm_message_t state) | 630 | static int device_suspend(struct device *dev, pm_message_t state) |
| 621 | { | 631 | { |
| @@ -662,10 +672,8 @@ static int device_suspend(struct device *dev, pm_message_t state) | |||
| 662 | } | 672 | } |
| 663 | 673 | ||
| 664 | /** | 674 | /** |
| 665 | * dpm_suspend - Suspend every device. | 675 | * dpm_suspend - Execute "suspend" callbacks for all non-sysdev devices. |
| 666 | * @state: PM transition of the system being carried out. | 676 | * @state: PM transition of the system being carried out. |
| 667 | * | ||
| 668 | * Execute the appropriate "suspend" callbacks for all devices. | ||
| 669 | */ | 677 | */ |
| 670 | static int dpm_suspend(pm_message_t state) | 678 | static int dpm_suspend(pm_message_t state) |
| 671 | { | 679 | { |
| @@ -699,9 +707,12 @@ static int dpm_suspend(pm_message_t state) | |||
| 699 | } | 707 | } |
| 700 | 708 | ||
| 701 | /** | 709 | /** |
| 702 | * device_prepare - Execute the ->prepare() callback(s) for given device. | 710 | * device_prepare - Prepare a device for system power transition. |
| 703 | * @dev: Device. | 711 | * @dev: Device to handle. |
| 704 | * @state: PM transition of the system being carried out. | 712 | * @state: PM transition of the system being carried out. |
| 713 | * | ||
| 714 | * Execute the ->prepare() callback(s) for given device. No new children of the | ||
| 715 | * device may be registered after this function has returned. | ||
| 705 | */ | 716 | */ |
| 706 | static int device_prepare(struct device *dev, pm_message_t state) | 717 | static int device_prepare(struct device *dev, pm_message_t state) |
| 707 | { | 718 | { |
| @@ -737,10 +748,10 @@ static int device_prepare(struct device *dev, pm_message_t state) | |||
| 737 | } | 748 | } |
| 738 | 749 | ||
| 739 | /** | 750 | /** |
| 740 | * dpm_prepare - Prepare all devices for a PM transition. | 751 | * dpm_prepare - Prepare all non-sysdev devices for a system PM transition. |
| 741 | * @state: PM transition of the system being carried out. | 752 | * @state: PM transition of the system being carried out. |
| 742 | * | 753 | * |
| 743 | * Execute the ->prepare() callback for all devices. | 754 | * Execute the ->prepare() callback(s) for all devices. |
| 744 | */ | 755 | */ |
| 745 | static int dpm_prepare(pm_message_t state) | 756 | static int dpm_prepare(pm_message_t state) |
| 746 | { | 757 | { |
| @@ -757,7 +768,14 @@ static int dpm_prepare(pm_message_t state) | |||
| 757 | dev->power.status = DPM_PREPARING; | 768 | dev->power.status = DPM_PREPARING; |
| 758 | mutex_unlock(&dpm_list_mtx); | 769 | mutex_unlock(&dpm_list_mtx); |
| 759 | 770 | ||
| 760 | error = device_prepare(dev, state); | 771 | pm_runtime_get_noresume(dev); |
| 772 | if (pm_runtime_barrier(dev) && device_may_wakeup(dev)) { | ||
| 773 | /* Wake-up requested during system sleep transition. */ | ||
| 774 | pm_runtime_put_noidle(dev); | ||
| 775 | error = -EBUSY; | ||
| 776 | } else { | ||
| 777 | error = device_prepare(dev, state); | ||
| 778 | } | ||
| 761 | 779 | ||
| 762 | mutex_lock(&dpm_list_mtx); | 780 | mutex_lock(&dpm_list_mtx); |
| 763 | if (error) { | 781 | if (error) { |
| @@ -784,10 +802,11 @@ static int dpm_prepare(pm_message_t state) | |||
| 784 | } | 802 | } |
| 785 | 803 | ||
| 786 | /** | 804 | /** |
| 787 | * dpm_suspend_start - Save state and stop all devices in system. | 805 | * dpm_suspend_start - Prepare devices for PM transition and suspend them. |
| 788 | * @state: PM transition of the system being carried out. | 806 | * @state: PM transition of the system being carried out. |
| 789 | * | 807 | * |
| 790 | * Prepare and suspend all devices. | 808 | * Prepare all non-sysdev devices for system PM transition and execute "suspend" |
| 809 | * callbacks for them. | ||
| 791 | */ | 810 | */ |
| 792 | int dpm_suspend_start(pm_message_t state) | 811 | int dpm_suspend_start(pm_message_t state) |
| 793 | { | 812 | { |
diff --git a/drivers/base/power/power.h b/drivers/base/power/power.h index c7cb4fc3735c..b8fa1aa5225a 100644 --- a/drivers/base/power/power.h +++ b/drivers/base/power/power.h | |||
| @@ -1,7 +1,14 @@ | |||
| 1 | static inline void device_pm_init(struct device *dev) | 1 | #ifdef CONFIG_PM_RUNTIME |
| 2 | { | 2 | |
| 3 | dev->power.status = DPM_ON; | 3 | extern void pm_runtime_init(struct device *dev); |
| 4 | } | 4 | extern void pm_runtime_remove(struct device *dev); |
| 5 | |||
| 6 | #else /* !CONFIG_PM_RUNTIME */ | ||
| 7 | |||
| 8 | static inline void pm_runtime_init(struct device *dev) {} | ||
| 9 | static inline void pm_runtime_remove(struct device *dev) {} | ||
| 10 | |||
| 11 | #endif /* !CONFIG_PM_RUNTIME */ | ||
| 5 | 12 | ||
| 6 | #ifdef CONFIG_PM_SLEEP | 13 | #ifdef CONFIG_PM_SLEEP |
| 7 | 14 | ||
| @@ -16,23 +23,33 @@ static inline struct device *to_device(struct list_head *entry) | |||
| 16 | return container_of(entry, struct device, power.entry); | 23 | return container_of(entry, struct device, power.entry); |
| 17 | } | 24 | } |
| 18 | 25 | ||
| 26 | extern void device_pm_init(struct device *dev); | ||
| 19 | extern void device_pm_add(struct device *); | 27 | extern void device_pm_add(struct device *); |
| 20 | extern void device_pm_remove(struct device *); | 28 | extern void device_pm_remove(struct device *); |
| 21 | extern void device_pm_move_before(struct device *, struct device *); | 29 | extern void device_pm_move_before(struct device *, struct device *); |
| 22 | extern void device_pm_move_after(struct device *, struct device *); | 30 | extern void device_pm_move_after(struct device *, struct device *); |
| 23 | extern void device_pm_move_last(struct device *); | 31 | extern void device_pm_move_last(struct device *); |
| 24 | 32 | ||
| 25 | #else /* CONFIG_PM_SLEEP */ | 33 | #else /* !CONFIG_PM_SLEEP */ |
| 34 | |||
| 35 | static inline void device_pm_init(struct device *dev) | ||
| 36 | { | ||
| 37 | pm_runtime_init(dev); | ||
| 38 | } | ||
| 39 | |||
| 40 | static inline void device_pm_remove(struct device *dev) | ||
| 41 | { | ||
| 42 | pm_runtime_remove(dev); | ||
| 43 | } | ||
| 26 | 44 | ||
| 27 | static inline void device_pm_add(struct device *dev) {} | 45 | static inline void device_pm_add(struct device *dev) {} |
| 28 | static inline void device_pm_remove(struct device *dev) {} | ||
| 29 | static inline void device_pm_move_before(struct device *deva, | 46 | static inline void device_pm_move_before(struct device *deva, |
| 30 | struct device *devb) {} | 47 | struct device *devb) {} |
| 31 | static inline void device_pm_move_after(struct device *deva, | 48 | static inline void device_pm_move_after(struct device *deva, |
| 32 | struct device *devb) {} | 49 | struct device *devb) {} |
| 33 | static inline void device_pm_move_last(struct device *dev) {} | 50 | static inline void device_pm_move_last(struct device *dev) {} |
| 34 | 51 | ||
| 35 | #endif | 52 | #endif /* !CONFIG_PM_SLEEP */ |
| 36 | 53 | ||
| 37 | #ifdef CONFIG_PM | 54 | #ifdef CONFIG_PM |
| 38 | 55 | ||
diff --git a/drivers/base/power/runtime.c b/drivers/base/power/runtime.c new file mode 100644 index 000000000000..38556f6cc22d --- /dev/null +++ b/drivers/base/power/runtime.c | |||
| @@ -0,0 +1,1011 @@ | |||
| 1 | /* | ||
| 2 | * drivers/base/power/runtime.c - Helper functions for device run-time PM | ||
| 3 | * | ||
| 4 | * Copyright (c) 2009 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc. | ||
| 5 | * | ||
| 6 | * This file is released under the GPLv2. | ||
| 7 | */ | ||
| 8 | |||
| 9 | #include <linux/sched.h> | ||
| 10 | #include <linux/pm_runtime.h> | ||
| 11 | #include <linux/jiffies.h> | ||
| 12 | |||
| 13 | static int __pm_runtime_resume(struct device *dev, bool from_wq); | ||
| 14 | static int __pm_request_idle(struct device *dev); | ||
| 15 | static int __pm_request_resume(struct device *dev); | ||
| 16 | |||
| 17 | /** | ||
| 18 | * pm_runtime_deactivate_timer - Deactivate given device's suspend timer. | ||
| 19 | * @dev: Device to handle. | ||
| 20 | */ | ||
| 21 | static void pm_runtime_deactivate_timer(struct device *dev) | ||
| 22 | { | ||
| 23 | if (dev->power.timer_expires > 0) { | ||
| 24 | del_timer(&dev->power.suspend_timer); | ||
| 25 | dev->power.timer_expires = 0; | ||
| 26 | } | ||
| 27 | } | ||
| 28 | |||
| 29 | /** | ||
| 30 | * pm_runtime_cancel_pending - Deactivate suspend timer and cancel requests. | ||
| 31 | * @dev: Device to handle. | ||
| 32 | */ | ||
| 33 | static void pm_runtime_cancel_pending(struct device *dev) | ||
| 34 | { | ||
| 35 | pm_runtime_deactivate_timer(dev); | ||
| 36 | /* | ||
| 37 | * In case there's a request pending, make sure its work function will | ||
| 38 | * return without doing anything. | ||
| 39 | */ | ||
| 40 | dev->power.request = RPM_REQ_NONE; | ||
| 41 | } | ||
| 42 | |||
| 43 | /** | ||
| 44 | * __pm_runtime_idle - Notify device bus type if the device can be suspended. | ||
| 45 | * @dev: Device to notify the bus type about. | ||
| 46 | * | ||
| 47 | * This function must be called under dev->power.lock with interrupts disabled. | ||
| 48 | */ | ||
| 49 | static int __pm_runtime_idle(struct device *dev) | ||
| 50 | __releases(&dev->power.lock) __acquires(&dev->power.lock) | ||
| 51 | { | ||
| 52 | int retval = 0; | ||
| 53 | |||
| 54 | dev_dbg(dev, "__pm_runtime_idle()!\n"); | ||
| 55 | |||
| 56 | if (dev->power.runtime_error) | ||
| 57 | retval = -EINVAL; | ||
| 58 | else if (dev->power.idle_notification) | ||
| 59 | retval = -EINPROGRESS; | ||
| 60 | else if (atomic_read(&dev->power.usage_count) > 0 | ||
| 61 | || dev->power.disable_depth > 0 | ||
| 62 | || dev->power.runtime_status != RPM_ACTIVE) | ||
| 63 | retval = -EAGAIN; | ||
| 64 | else if (!pm_children_suspended(dev)) | ||
| 65 | retval = -EBUSY; | ||
| 66 | if (retval) | ||
| 67 | goto out; | ||
| 68 | |||
| 69 | if (dev->power.request_pending) { | ||
| 70 | /* | ||
| 71 | * If an idle notification request is pending, cancel it. Any | ||
| 72 | * other pending request takes precedence over us. | ||
| 73 | */ | ||
| 74 | if (dev->power.request == RPM_REQ_IDLE) { | ||
| 75 | dev->power.request = RPM_REQ_NONE; | ||
| 76 | } else if (dev->power.request != RPM_REQ_NONE) { | ||
| 77 | retval = -EAGAIN; | ||
| 78 | goto out; | ||
| 79 | } | ||
| 80 | } | ||
| 81 | |||
| 82 | dev->power.idle_notification = true; | ||
| 83 | |||
| 84 | if (dev->bus && dev->bus->pm && dev->bus->pm->runtime_idle) { | ||
| 85 | spin_unlock_irq(&dev->power.lock); | ||
| 86 | |||
| 87 | dev->bus->pm->runtime_idle(dev); | ||
| 88 | |||
| 89 | spin_lock_irq(&dev->power.lock); | ||
| 90 | } | ||
| 91 | |||
| 92 | dev->power.idle_notification = false; | ||
| 93 | wake_up_all(&dev->power.wait_queue); | ||
| 94 | |||
| 95 | out: | ||
| 96 | dev_dbg(dev, "__pm_runtime_idle() returns %d!\n", retval); | ||
| 97 | |||
| 98 | return retval; | ||
| 99 | } | ||
| 100 | |||
| 101 | /** | ||
| 102 | * pm_runtime_idle - Notify device bus type if the device can be suspended. | ||
| 103 | * @dev: Device to notify the bus type about. | ||
| 104 | */ | ||
| 105 | int pm_runtime_idle(struct device *dev) | ||
| 106 | { | ||
| 107 | int retval; | ||
| 108 | |||
| 109 | spin_lock_irq(&dev->power.lock); | ||
| 110 | retval = __pm_runtime_idle(dev); | ||
| 111 | spin_unlock_irq(&dev->power.lock); | ||
| 112 | |||
| 113 | return retval; | ||
| 114 | } | ||
| 115 | EXPORT_SYMBOL_GPL(pm_runtime_idle); | ||
| 116 | |||
| 117 | /** | ||
| 118 | * __pm_runtime_suspend - Carry out run-time suspend of given device. | ||
| 119 | * @dev: Device to suspend. | ||
| 120 | * @from_wq: If set, the function has been called via pm_wq. | ||
| 121 | * | ||
| 122 | * Check if the device can be suspended and run the ->runtime_suspend() callback | ||
| 123 | * provided by its bus type. If another suspend has been started earlier, wait | ||
| 124 | * for it to finish. If an idle notification or suspend request is pending or | ||
| 125 | * scheduled, cancel it. | ||
| 126 | * | ||
| 127 | * This function must be called under dev->power.lock with interrupts disabled. | ||
| 128 | */ | ||
| 129 | int __pm_runtime_suspend(struct device *dev, bool from_wq) | ||
| 130 | __releases(&dev->power.lock) __acquires(&dev->power.lock) | ||
| 131 | { | ||
| 132 | struct device *parent = NULL; | ||
| 133 | bool notify = false; | ||
| 134 | int retval = 0; | ||
| 135 | |||
| 136 | dev_dbg(dev, "__pm_runtime_suspend()%s!\n", | ||
| 137 | from_wq ? " from workqueue" : ""); | ||
| 138 | |||
| 139 | repeat: | ||
| 140 | if (dev->power.runtime_error) { | ||
| 141 | retval = -EINVAL; | ||
| 142 | goto out; | ||
| 143 | } | ||
| 144 | |||
| 145 | /* Pending resume requests take precedence over us. */ | ||
| 146 | if (dev->power.request_pending | ||
| 147 | && dev->power.request == RPM_REQ_RESUME) { | ||
| 148 | retval = -EAGAIN; | ||
| 149 | goto out; | ||
| 150 | } | ||
| 151 | |||
| 152 | /* Other scheduled or pending requests need to be canceled. */ | ||
| 153 | pm_runtime_cancel_pending(dev); | ||
| 154 | |||
| 155 | if (dev->power.runtime_status == RPM_SUSPENDED) | ||
| 156 | retval = 1; | ||
| 157 | else if (dev->power.runtime_status == RPM_RESUMING | ||
| 158 | || dev->power.disable_depth > 0 | ||
| 159 | || atomic_read(&dev->power.usage_count) > 0) | ||
| 160 | retval = -EAGAIN; | ||
| 161 | else if (!pm_children_suspended(dev)) | ||
| 162 | retval = -EBUSY; | ||
| 163 | if (retval) | ||
| 164 | goto out; | ||
| 165 | |||
| 166 | if (dev->power.runtime_status == RPM_SUSPENDING) { | ||
| 167 | DEFINE_WAIT(wait); | ||
| 168 | |||
| 169 | if (from_wq) { | ||
| 170 | retval = -EINPROGRESS; | ||
| 171 | goto out; | ||
| 172 | } | ||
| 173 | |||
| 174 | /* Wait for the other suspend running in parallel with us. */ | ||
| 175 | for (;;) { | ||
| 176 | prepare_to_wait(&dev->power.wait_queue, &wait, | ||
| 177 | TASK_UNINTERRUPTIBLE); | ||
| 178 | if (dev->power.runtime_status != RPM_SUSPENDING) | ||
| 179 | break; | ||
| 180 | |||
| 181 | spin_unlock_irq(&dev->power.lock); | ||
| 182 | |||
| 183 | schedule(); | ||
| 184 | |||
| 185 | spin_lock_irq(&dev->power.lock); | ||
| 186 | } | ||
| 187 | finish_wait(&dev->power.wait_queue, &wait); | ||
| 188 | goto repeat; | ||
| 189 | } | ||
| 190 | |||
| 191 | dev->power.runtime_status = RPM_SUSPENDING; | ||
| 192 | |||
| 193 | if (dev->bus && dev->bus->pm && dev->bus->pm->runtime_suspend) { | ||
| 194 | spin_unlock_irq(&dev->power.lock); | ||
| 195 | |||
| 196 | retval = dev->bus->pm->runtime_suspend(dev); | ||
| 197 | |||
| 198 | spin_lock_irq(&dev->power.lock); | ||
| 199 | dev->power.runtime_error = retval; | ||
| 200 | } else { | ||
| 201 | retval = -ENOSYS; | ||
| 202 | } | ||
| 203 | |||
| 204 | if (retval) { | ||
| 205 | dev->power.runtime_status = RPM_ACTIVE; | ||
| 206 | pm_runtime_cancel_pending(dev); | ||
| 207 | dev->power.deferred_resume = false; | ||
| 208 | |||
| 209 | if (retval == -EAGAIN || retval == -EBUSY) { | ||
| 210 | notify = true; | ||
| 211 | dev->power.runtime_error = 0; | ||
| 212 | } | ||
| 213 | } else { | ||
| 214 | dev->power.runtime_status = RPM_SUSPENDED; | ||
| 215 | |||
| 216 | if (dev->parent) { | ||
| 217 | parent = dev->parent; | ||
| 218 | atomic_add_unless(&parent->power.child_count, -1, 0); | ||
| 219 | } | ||
| 220 | } | ||
| 221 | wake_up_all(&dev->power.wait_queue); | ||
| 222 | |||
| 223 | if (dev->power.deferred_resume) { | ||
| 224 | dev->power.deferred_resume = false; | ||
| 225 | __pm_runtime_resume(dev, false); | ||
| 226 | retval = -EAGAIN; | ||
| 227 | goto out; | ||
| 228 | } | ||
| 229 | |||
| 230 | if (notify) | ||
| 231 | __pm_runtime_idle(dev); | ||
| 232 | |||
| 233 | if (parent && !parent->power.ignore_children) { | ||
| 234 | spin_unlock_irq(&dev->power.lock); | ||
| 235 | |||
| 236 | pm_request_idle(parent); | ||
| 237 | |||
| 238 | spin_lock_irq(&dev->power.lock); | ||
| 239 | } | ||
| 240 | |||
| 241 | out: | ||
| 242 | dev_dbg(dev, "__pm_runtime_suspend() returns %d!\n", retval); | ||
| 243 | |||
| 244 | return retval; | ||
| 245 | } | ||
| 246 | |||
| 247 | /** | ||
| 248 | * pm_runtime_suspend - Carry out run-time suspend of given device. | ||
| 249 | * @dev: Device to suspend. | ||
| 250 | */ | ||
| 251 | int pm_runtime_suspend(struct device *dev) | ||
| 252 | { | ||
| 253 | int retval; | ||
| 254 | |||
| 255 | spin_lock_irq(&dev->power.lock); | ||
| 256 | retval = __pm_runtime_suspend(dev, false); | ||
| 257 | spin_unlock_irq(&dev->power.lock); | ||
| 258 | |||
| 259 | return retval; | ||
| 260 | } | ||
| 261 | EXPORT_SYMBOL_GPL(pm_runtime_suspend); | ||
| 262 | |||
| 263 | /** | ||
| 264 | * __pm_runtime_resume - Carry out run-time resume of given device. | ||
| 265 | * @dev: Device to resume. | ||
| 266 | * @from_wq: If set, the function has been called via pm_wq. | ||
| 267 | * | ||
| 268 | * Check if the device can be woken up and run the ->runtime_resume() callback | ||
| 269 | * provided by its bus type. If another resume has been started earlier, wait | ||
| 270 | * for it to finish. If there's a suspend running in parallel with this | ||
| 271 | * function, wait for it to finish and resume the device. Cancel any scheduled | ||
| 272 | * or pending requests. | ||
| 273 | * | ||
| 274 | * This function must be called under dev->power.lock with interrupts disabled. | ||
| 275 | */ | ||
| 276 | int __pm_runtime_resume(struct device *dev, bool from_wq) | ||
| 277 | __releases(&dev->power.lock) __acquires(&dev->power.lock) | ||
| 278 | { | ||
| 279 | struct device *parent = NULL; | ||
| 280 | int retval = 0; | ||
| 281 | |||
| 282 | dev_dbg(dev, "__pm_runtime_resume()%s!\n", | ||
| 283 | from_wq ? " from workqueue" : ""); | ||
| 284 | |||
| 285 | repeat: | ||
| 286 | if (dev->power.runtime_error) { | ||
| 287 | retval = -EINVAL; | ||
| 288 | goto out; | ||
| 289 | } | ||
| 290 | |||
| 291 | pm_runtime_cancel_pending(dev); | ||
| 292 | |||
| 293 | if (dev->power.runtime_status == RPM_ACTIVE) | ||
| 294 | retval = 1; | ||
| 295 | else if (dev->power.disable_depth > 0) | ||
| 296 | retval = -EAGAIN; | ||
| 297 | if (retval) | ||
| 298 | goto out; | ||
| 299 | |||
| 300 | if (dev->power.runtime_status == RPM_RESUMING | ||
| 301 | || dev->power.runtime_status == RPM_SUSPENDING) { | ||
| 302 | DEFINE_WAIT(wait); | ||
| 303 | |||
| 304 | if (from_wq) { | ||
| 305 | if (dev->power.runtime_status == RPM_SUSPENDING) | ||
| 306 | dev->power.deferred_resume = true; | ||
| 307 | retval = -EINPROGRESS; | ||
| 308 | goto out; | ||
| 309 | } | ||
| 310 | |||
| 311 | /* Wait for the operation carried out in parallel with us. */ | ||
| 312 | for (;;) { | ||
| 313 | prepare_to_wait(&dev->power.wait_queue, &wait, | ||
| 314 | TASK_UNINTERRUPTIBLE); | ||
| 315 | if (dev->power.runtime_status != RPM_RESUMING | ||
| 316 | && dev->power.runtime_status != RPM_SUSPENDING) | ||
| 317 | break; | ||
| 318 | |||
| 319 | spin_unlock_irq(&dev->power.lock); | ||
| 320 | |||
| 321 | schedule(); | ||
| 322 | |||
| 323 | spin_lock_irq(&dev->power.lock); | ||
| 324 | } | ||
| 325 | finish_wait(&dev->power.wait_queue, &wait); | ||
| 326 | goto repeat; | ||
| 327 | } | ||
| 328 | |||
| 329 | if (!parent && dev->parent) { | ||
| 330 | /* | ||
| 331 | * Increment the parent's resume counter and resume it if | ||
| 332 | * necessary. | ||
| 333 | */ | ||
| 334 | parent = dev->parent; | ||
| 335 | spin_unlock_irq(&dev->power.lock); | ||
| 336 | |||
| 337 | pm_runtime_get_noresume(parent); | ||
| 338 | |||
| 339 | spin_lock_irq(&parent->power.lock); | ||
| 340 | /* | ||
| 341 | * We can resume if the parent's run-time PM is disabled or it | ||
| 342 | * is set to ignore children. | ||
| 343 | */ | ||
| 344 | if (!parent->power.disable_depth | ||
| 345 | && !parent->power.ignore_children) { | ||
| 346 | __pm_runtime_resume(parent, false); | ||
| 347 | if (parent->power.runtime_status != RPM_ACTIVE) | ||
| 348 | retval = -EBUSY; | ||
| 349 | } | ||
| 350 | spin_unlock_irq(&parent->power.lock); | ||
| 351 | |||
| 352 | spin_lock_irq(&dev->power.lock); | ||
| 353 | if (retval) | ||
| 354 | goto out; | ||
| 355 | goto repeat; | ||
| 356 | } | ||
| 357 | |||
| 358 | dev->power.runtime_status = RPM_RESUMING; | ||
| 359 | |||
| 360 | if (dev->bus && dev->bus->pm && dev->bus->pm->runtime_resume) { | ||
| 361 | spin_unlock_irq(&dev->power.lock); | ||
| 362 | |||
| 363 | retval = dev->bus->pm->runtime_resume(dev); | ||
| 364 | |||
| 365 | spin_lock_irq(&dev->power.lock); | ||
| 366 | dev->power.runtime_error = retval; | ||
| 367 | } else { | ||
| 368 | retval = -ENOSYS; | ||
| 369 | } | ||
| 370 | |||
| 371 | if (retval) { | ||
| 372 | dev->power.runtime_status = RPM_SUSPENDED; | ||
| 373 | pm_runtime_cancel_pending(dev); | ||
| 374 | } else { | ||
| 375 | dev->power.runtime_status = RPM_ACTIVE; | ||
| 376 | if (parent) | ||
| 377 | atomic_inc(&parent->power.child_count); | ||
| 378 | } | ||
| 379 | wake_up_all(&dev->power.wait_queue); | ||
| 380 | |||
| 381 | if (!retval) | ||
| 382 | __pm_request_idle(dev); | ||
| 383 | |||
| 384 | out: | ||
| 385 | if (parent) { | ||
| 386 | spin_unlock_irq(&dev->power.lock); | ||
| 387 | |||
| 388 | pm_runtime_put(parent); | ||
| 389 | |||
| 390 | spin_lock_irq(&dev->power.lock); | ||
| 391 | } | ||
| 392 | |||
| 393 | dev_dbg(dev, "__pm_runtime_resume() returns %d!\n", retval); | ||
| 394 | |||
| 395 | return retval; | ||
| 396 | } | ||
| 397 | |||
| 398 | /** | ||
| 399 | * pm_runtime_resume - Carry out run-time resume of given device. | ||
| 400 | * @dev: Device to suspend. | ||
| 401 | */ | ||
| 402 | int pm_runtime_resume(struct device *dev) | ||
| 403 | { | ||
| 404 | int retval; | ||
| 405 | |||
| 406 | spin_lock_irq(&dev->power.lock); | ||
| 407 | retval = __pm_runtime_resume(dev, false); | ||
| 408 | spin_unlock_irq(&dev->power.lock); | ||
| 409 | |||
| 410 | return retval; | ||
| 411 | } | ||
| 412 | EXPORT_SYMBOL_GPL(pm_runtime_resume); | ||
| 413 | |||
| 414 | /** | ||
| 415 | * pm_runtime_work - Universal run-time PM work function. | ||
| 416 | * @work: Work structure used for scheduling the execution of this function. | ||
| 417 | * | ||
| 418 | * Use @work to get the device object the work is to be done for, determine what | ||
| 419 | * is to be done and execute the appropriate run-time PM function. | ||
| 420 | */ | ||
| 421 | static void pm_runtime_work(struct work_struct *work) | ||
| 422 | { | ||
| 423 | struct device *dev = container_of(work, struct device, power.work); | ||
| 424 | enum rpm_request req; | ||
| 425 | |||
| 426 | spin_lock_irq(&dev->power.lock); | ||
| 427 | |||
| 428 | if (!dev->power.request_pending) | ||
| 429 | goto out; | ||
| 430 | |||
| 431 | req = dev->power.request; | ||
| 432 | dev->power.request = RPM_REQ_NONE; | ||
| 433 | dev->power.request_pending = false; | ||
| 434 | |||
| 435 | switch (req) { | ||
| 436 | case RPM_REQ_NONE: | ||
| 437 | break; | ||
| 438 | case RPM_REQ_IDLE: | ||
| 439 | __pm_runtime_idle(dev); | ||
| 440 | break; | ||
| 441 | case RPM_REQ_SUSPEND: | ||
| 442 | __pm_runtime_suspend(dev, true); | ||
| 443 | break; | ||
| 444 | case RPM_REQ_RESUME: | ||
| 445 | __pm_runtime_resume(dev, true); | ||
| 446 | break; | ||
| 447 | } | ||
| 448 | |||
| 449 | out: | ||
| 450 | spin_unlock_irq(&dev->power.lock); | ||
| 451 | } | ||
| 452 | |||
| 453 | /** | ||
| 454 | * __pm_request_idle - Submit an idle notification request for given device. | ||
| 455 | * @dev: Device to handle. | ||
| 456 | * | ||
| 457 | * Check if the device's run-time PM status is correct for suspending the device | ||
| 458 | * and queue up a request to run __pm_runtime_idle() for it. | ||
| 459 | * | ||
| 460 | * This function must be called under dev->power.lock with interrupts disabled. | ||
| 461 | */ | ||
| 462 | static int __pm_request_idle(struct device *dev) | ||
| 463 | { | ||
| 464 | int retval = 0; | ||
| 465 | |||
| 466 | if (dev->power.runtime_error) | ||
| 467 | retval = -EINVAL; | ||
| 468 | else if (atomic_read(&dev->power.usage_count) > 0 | ||
| 469 | || dev->power.disable_depth > 0 | ||
| 470 | || dev->power.runtime_status == RPM_SUSPENDED | ||
| 471 | || dev->power.runtime_status == RPM_SUSPENDING) | ||
| 472 | retval = -EAGAIN; | ||
| 473 | else if (!pm_children_suspended(dev)) | ||
| 474 | retval = -EBUSY; | ||
| 475 | if (retval) | ||
| 476 | return retval; | ||
| 477 | |||
| 478 | if (dev->power.request_pending) { | ||
| 479 | /* Any requests other then RPM_REQ_IDLE take precedence. */ | ||
| 480 | if (dev->power.request == RPM_REQ_NONE) | ||
| 481 | dev->power.request = RPM_REQ_IDLE; | ||
| 482 | else if (dev->power.request != RPM_REQ_IDLE) | ||
| 483 | retval = -EAGAIN; | ||
| 484 | return retval; | ||
| 485 | } | ||
| 486 | |||
| 487 | dev->power.request = RPM_REQ_IDLE; | ||
| 488 | dev->power.request_pending = true; | ||
| 489 | queue_work(pm_wq, &dev->power.work); | ||
| 490 | |||
| 491 | return retval; | ||
| 492 | } | ||
| 493 | |||
| 494 | /** | ||
| 495 | * pm_request_idle - Submit an idle notification request for given device. | ||
| 496 | * @dev: Device to handle. | ||
| 497 | */ | ||
| 498 | int pm_request_idle(struct device *dev) | ||
| 499 | { | ||
| 500 | unsigned long flags; | ||
| 501 | int retval; | ||
| 502 | |||
| 503 | spin_lock_irqsave(&dev->power.lock, flags); | ||
| 504 | retval = __pm_request_idle(dev); | ||
| 505 | spin_unlock_irqrestore(&dev->power.lock, flags); | ||
| 506 | |||
| 507 | return retval; | ||
| 508 | } | ||
| 509 | EXPORT_SYMBOL_GPL(pm_request_idle); | ||
| 510 | |||
| 511 | /** | ||
| 512 | * __pm_request_suspend - Submit a suspend request for given device. | ||
| 513 | * @dev: Device to suspend. | ||
| 514 | * | ||
| 515 | * This function must be called under dev->power.lock with interrupts disabled. | ||
| 516 | */ | ||
| 517 | static int __pm_request_suspend(struct device *dev) | ||
| 518 | { | ||
| 519 | int retval = 0; | ||
| 520 | |||
| 521 | if (dev->power.runtime_error) | ||
| 522 | return -EINVAL; | ||
| 523 | |||
| 524 | if (dev->power.runtime_status == RPM_SUSPENDED) | ||
| 525 | retval = 1; | ||
| 526 | else if (atomic_read(&dev->power.usage_count) > 0 | ||
| 527 | || dev->power.disable_depth > 0) | ||
| 528 | retval = -EAGAIN; | ||
| 529 | else if (dev->power.runtime_status == RPM_SUSPENDING) | ||
| 530 | retval = -EINPROGRESS; | ||
| 531 | else if (!pm_children_suspended(dev)) | ||
| 532 | retval = -EBUSY; | ||
| 533 | if (retval < 0) | ||
| 534 | return retval; | ||
| 535 | |||
| 536 | pm_runtime_deactivate_timer(dev); | ||
| 537 | |||
| 538 | if (dev->power.request_pending) { | ||
| 539 | /* | ||
| 540 | * Pending resume requests take precedence over us, but we can | ||
| 541 | * overtake any other pending request. | ||
| 542 | */ | ||
| 543 | if (dev->power.request == RPM_REQ_RESUME) | ||
| 544 | retval = -EAGAIN; | ||
| 545 | else if (dev->power.request != RPM_REQ_SUSPEND) | ||
| 546 | dev->power.request = retval ? | ||
| 547 | RPM_REQ_NONE : RPM_REQ_SUSPEND; | ||
| 548 | return retval; | ||
| 549 | } else if (retval) { | ||
| 550 | return retval; | ||
| 551 | } | ||
| 552 | |||
| 553 | dev->power.request = RPM_REQ_SUSPEND; | ||
| 554 | dev->power.request_pending = true; | ||
| 555 | queue_work(pm_wq, &dev->power.work); | ||
| 556 | |||
| 557 | return 0; | ||
| 558 | } | ||
| 559 | |||
| 560 | /** | ||
| 561 | * pm_suspend_timer_fn - Timer function for pm_schedule_suspend(). | ||
| 562 | * @data: Device pointer passed by pm_schedule_suspend(). | ||
| 563 | * | ||
| 564 | * Check if the time is right and execute __pm_request_suspend() in that case. | ||
| 565 | */ | ||
| 566 | static void pm_suspend_timer_fn(unsigned long data) | ||
| 567 | { | ||
| 568 | struct device *dev = (struct device *)data; | ||
| 569 | unsigned long flags; | ||
| 570 | unsigned long expires; | ||
| 571 | |||
| 572 | spin_lock_irqsave(&dev->power.lock, flags); | ||
| 573 | |||
| 574 | expires = dev->power.timer_expires; | ||
| 575 | /* If 'expire' is after 'jiffies' we've been called too early. */ | ||
| 576 | if (expires > 0 && !time_after(expires, jiffies)) { | ||
| 577 | dev->power.timer_expires = 0; | ||
| 578 | __pm_request_suspend(dev); | ||
| 579 | } | ||
| 580 | |||
| 581 | spin_unlock_irqrestore(&dev->power.lock, flags); | ||
| 582 | } | ||
| 583 | |||
| 584 | /** | ||
| 585 | * pm_schedule_suspend - Set up a timer to submit a suspend request in future. | ||
| 586 | * @dev: Device to suspend. | ||
| 587 | * @delay: Time to wait before submitting a suspend request, in milliseconds. | ||
| 588 | */ | ||
| 589 | int pm_schedule_suspend(struct device *dev, unsigned int delay) | ||
| 590 | { | ||
| 591 | unsigned long flags; | ||
| 592 | int retval = 0; | ||
| 593 | |||
| 594 | spin_lock_irqsave(&dev->power.lock, flags); | ||
| 595 | |||
| 596 | if (dev->power.runtime_error) { | ||
| 597 | retval = -EINVAL; | ||
| 598 | goto out; | ||
| 599 | } | ||
| 600 | |||
| 601 | if (!delay) { | ||
| 602 | retval = __pm_request_suspend(dev); | ||
| 603 | goto out; | ||
| 604 | } | ||
| 605 | |||
| 606 | pm_runtime_deactivate_timer(dev); | ||
| 607 | |||
| 608 | if (dev->power.request_pending) { | ||
| 609 | /* | ||
| 610 | * Pending resume requests take precedence over us, but any | ||
| 611 | * other pending requests have to be canceled. | ||
| 612 | */ | ||
| 613 | if (dev->power.request == RPM_REQ_RESUME) { | ||
| 614 | retval = -EAGAIN; | ||
| 615 | goto out; | ||
| 616 | } | ||
| 617 | dev->power.request = RPM_REQ_NONE; | ||
| 618 | } | ||
| 619 | |||
| 620 | if (dev->power.runtime_status == RPM_SUSPENDED) | ||
| 621 | retval = 1; | ||
| 622 | else if (dev->power.runtime_status == RPM_SUSPENDING) | ||
| 623 | retval = -EINPROGRESS; | ||
| 624 | else if (atomic_read(&dev->power.usage_count) > 0 | ||
| 625 | || dev->power.disable_depth > 0) | ||
| 626 | retval = -EAGAIN; | ||
| 627 | else if (!pm_children_suspended(dev)) | ||
| 628 | retval = -EBUSY; | ||
| 629 | if (retval) | ||
| 630 | goto out; | ||
| 631 | |||
| 632 | dev->power.timer_expires = jiffies + msecs_to_jiffies(delay); | ||
| 633 | mod_timer(&dev->power.suspend_timer, dev->power.timer_expires); | ||
| 634 | |||
| 635 | out: | ||
| 636 | spin_unlock_irqrestore(&dev->power.lock, flags); | ||
| 637 | |||
| 638 | return retval; | ||
| 639 | } | ||
| 640 | EXPORT_SYMBOL_GPL(pm_schedule_suspend); | ||
| 641 | |||
| 642 | /** | ||
| 643 | * pm_request_resume - Submit a resume request for given device. | ||
| 644 | * @dev: Device to resume. | ||
| 645 | * | ||
| 646 | * This function must be called under dev->power.lock with interrupts disabled. | ||
| 647 | */ | ||
| 648 | static int __pm_request_resume(struct device *dev) | ||
| 649 | { | ||
| 650 | int retval = 0; | ||
| 651 | |||
| 652 | if (dev->power.runtime_error) | ||
| 653 | return -EINVAL; | ||
| 654 | |||
| 655 | if (dev->power.runtime_status == RPM_ACTIVE) | ||
| 656 | retval = 1; | ||
| 657 | else if (dev->power.runtime_status == RPM_RESUMING) | ||
| 658 | retval = -EINPROGRESS; | ||
| 659 | else if (dev->power.disable_depth > 0) | ||
| 660 | retval = -EAGAIN; | ||
| 661 | if (retval < 0) | ||
| 662 | return retval; | ||
| 663 | |||
| 664 | pm_runtime_deactivate_timer(dev); | ||
| 665 | |||
| 666 | if (dev->power.request_pending) { | ||
| 667 | /* If non-resume request is pending, we can overtake it. */ | ||
| 668 | dev->power.request = retval ? RPM_REQ_NONE : RPM_REQ_RESUME; | ||
| 669 | return retval; | ||
| 670 | } else if (retval) { | ||
| 671 | return retval; | ||
| 672 | } | ||
| 673 | |||
| 674 | dev->power.request = RPM_REQ_RESUME; | ||
| 675 | dev->power.request_pending = true; | ||
| 676 | queue_work(pm_wq, &dev->power.work); | ||
| 677 | |||
| 678 | return retval; | ||
| 679 | } | ||
| 680 | |||
| 681 | /** | ||
| 682 | * pm_request_resume - Submit a resume request for given device. | ||
| 683 | * @dev: Device to resume. | ||
| 684 | */ | ||
| 685 | int pm_request_resume(struct device *dev) | ||
| 686 | { | ||
| 687 | unsigned long flags; | ||
| 688 | int retval; | ||
| 689 | |||
| 690 | spin_lock_irqsave(&dev->power.lock, flags); | ||
| 691 | retval = __pm_request_resume(dev); | ||
| 692 | spin_unlock_irqrestore(&dev->power.lock, flags); | ||
| 693 | |||
| 694 | return retval; | ||
| 695 | } | ||
| 696 | EXPORT_SYMBOL_GPL(pm_request_resume); | ||
| 697 | |||
| 698 | /** | ||
| 699 | * __pm_runtime_get - Reference count a device and wake it up, if necessary. | ||
| 700 | * @dev: Device to handle. | ||
| 701 | * @sync: If set and the device is suspended, resume it synchronously. | ||
| 702 | * | ||
| 703 | * Increment the usage count of the device and if it was zero previously, | ||
| 704 | * resume it or submit a resume request for it, depending on the value of @sync. | ||
| 705 | */ | ||
| 706 | int __pm_runtime_get(struct device *dev, bool sync) | ||
| 707 | { | ||
| 708 | int retval = 1; | ||
| 709 | |||
| 710 | if (atomic_add_return(1, &dev->power.usage_count) == 1) | ||
| 711 | retval = sync ? pm_runtime_resume(dev) : pm_request_resume(dev); | ||
| 712 | |||
| 713 | return retval; | ||
| 714 | } | ||
| 715 | EXPORT_SYMBOL_GPL(__pm_runtime_get); | ||
| 716 | |||
| 717 | /** | ||
| 718 | * __pm_runtime_put - Decrement the device's usage counter and notify its bus. | ||
| 719 | * @dev: Device to handle. | ||
| 720 | * @sync: If the device's bus type is to be notified, do that synchronously. | ||
| 721 | * | ||
| 722 | * Decrement the usage count of the device and if it reaches zero, carry out a | ||
| 723 | * synchronous idle notification or submit an idle notification request for it, | ||
| 724 | * depending on the value of @sync. | ||
| 725 | */ | ||
| 726 | int __pm_runtime_put(struct device *dev, bool sync) | ||
| 727 | { | ||
| 728 | int retval = 0; | ||
| 729 | |||
| 730 | if (atomic_dec_and_test(&dev->power.usage_count)) | ||
| 731 | retval = sync ? pm_runtime_idle(dev) : pm_request_idle(dev); | ||
| 732 | |||
| 733 | return retval; | ||
| 734 | } | ||
| 735 | EXPORT_SYMBOL_GPL(__pm_runtime_put); | ||
| 736 | |||
| 737 | /** | ||
| 738 | * __pm_runtime_set_status - Set run-time PM status of a device. | ||
| 739 | * @dev: Device to handle. | ||
| 740 | * @status: New run-time PM status of the device. | ||
| 741 | * | ||
| 742 | * If run-time PM of the device is disabled or its power.runtime_error field is | ||
| 743 | * different from zero, the status may be changed either to RPM_ACTIVE, or to | ||
| 744 | * RPM_SUSPENDED, as long as that reflects the actual state of the device. | ||
| 745 | * However, if the device has a parent and the parent is not active, and the | ||
| 746 | * parent's power.ignore_children flag is unset, the device's status cannot be | ||
| 747 | * set to RPM_ACTIVE, so -EBUSY is returned in that case. | ||
| 748 | * | ||
| 749 | * If successful, __pm_runtime_set_status() clears the power.runtime_error field | ||
| 750 | * and the device parent's counter of unsuspended children is modified to | ||
| 751 | * reflect the new status. If the new status is RPM_SUSPENDED, an idle | ||
| 752 | * notification request for the parent is submitted. | ||
| 753 | */ | ||
| 754 | int __pm_runtime_set_status(struct device *dev, unsigned int status) | ||
| 755 | { | ||
| 756 | struct device *parent = dev->parent; | ||
| 757 | unsigned long flags; | ||
| 758 | bool notify_parent = false; | ||
| 759 | int error = 0; | ||
| 760 | |||
| 761 | if (status != RPM_ACTIVE && status != RPM_SUSPENDED) | ||
| 762 | return -EINVAL; | ||
| 763 | |||
| 764 | spin_lock_irqsave(&dev->power.lock, flags); | ||
| 765 | |||
| 766 | if (!dev->power.runtime_error && !dev->power.disable_depth) { | ||
| 767 | error = -EAGAIN; | ||
| 768 | goto out; | ||
| 769 | } | ||
| 770 | |||
| 771 | if (dev->power.runtime_status == status) | ||
| 772 | goto out_set; | ||
| 773 | |||
| 774 | if (status == RPM_SUSPENDED) { | ||
| 775 | /* It always is possible to set the status to 'suspended'. */ | ||
| 776 | if (parent) { | ||
| 777 | atomic_add_unless(&parent->power.child_count, -1, 0); | ||
| 778 | notify_parent = !parent->power.ignore_children; | ||
| 779 | } | ||
| 780 | goto out_set; | ||
| 781 | } | ||
| 782 | |||
| 783 | if (parent) { | ||
| 784 | spin_lock_irq(&parent->power.lock); | ||
| 785 | |||
| 786 | /* | ||
| 787 | * It is invalid to put an active child under a parent that is | ||
| 788 | * not active, has run-time PM enabled and the | ||
| 789 | * 'power.ignore_children' flag unset. | ||
| 790 | */ | ||
| 791 | if (!parent->power.disable_depth | ||
| 792 | && !parent->power.ignore_children | ||
| 793 | && parent->power.runtime_status != RPM_ACTIVE) { | ||
| 794 | error = -EBUSY; | ||
| 795 | } else { | ||
| 796 | if (dev->power.runtime_status == RPM_SUSPENDED) | ||
| 797 | atomic_inc(&parent->power.child_count); | ||
| 798 | } | ||
| 799 | |||
| 800 | spin_unlock_irq(&parent->power.lock); | ||
| 801 | |||
| 802 | if (error) | ||
| 803 | goto out; | ||
| 804 | } | ||
| 805 | |||
| 806 | out_set: | ||
| 807 | dev->power.runtime_status = status; | ||
| 808 | dev->power.runtime_error = 0; | ||
| 809 | out: | ||
| 810 | spin_unlock_irqrestore(&dev->power.lock, flags); | ||
| 811 | |||
| 812 | if (notify_parent) | ||
| 813 | pm_request_idle(parent); | ||
| 814 | |||
| 815 | return error; | ||
| 816 | } | ||
| 817 | EXPORT_SYMBOL_GPL(__pm_runtime_set_status); | ||
| 818 | |||
| 819 | /** | ||
| 820 | * __pm_runtime_barrier - Cancel pending requests and wait for completions. | ||
| 821 | * @dev: Device to handle. | ||
| 822 | * | ||
| 823 | * Flush all pending requests for the device from pm_wq and wait for all | ||
| 824 | * run-time PM operations involving the device in progress to complete. | ||
| 825 | * | ||
| 826 | * Should be called under dev->power.lock with interrupts disabled. | ||
| 827 | */ | ||
| 828 | static void __pm_runtime_barrier(struct device *dev) | ||
| 829 | { | ||
| 830 | pm_runtime_deactivate_timer(dev); | ||
| 831 | |||
| 832 | if (dev->power.request_pending) { | ||
| 833 | dev->power.request = RPM_REQ_NONE; | ||
| 834 | spin_unlock_irq(&dev->power.lock); | ||
| 835 | |||
| 836 | cancel_work_sync(&dev->power.work); | ||
| 837 | |||
| 838 | spin_lock_irq(&dev->power.lock); | ||
| 839 | dev->power.request_pending = false; | ||
| 840 | } | ||
| 841 | |||
| 842 | if (dev->power.runtime_status == RPM_SUSPENDING | ||
| 843 | || dev->power.runtime_status == RPM_RESUMING | ||
| 844 | || dev->power.idle_notification) { | ||
| 845 | DEFINE_WAIT(wait); | ||
| 846 | |||
| 847 | /* Suspend, wake-up or idle notification in progress. */ | ||
| 848 | for (;;) { | ||
| 849 | prepare_to_wait(&dev->power.wait_queue, &wait, | ||
| 850 | TASK_UNINTERRUPTIBLE); | ||
| 851 | if (dev->power.runtime_status != RPM_SUSPENDING | ||
| 852 | && dev->power.runtime_status != RPM_RESUMING | ||
| 853 | && !dev->power.idle_notification) | ||
| 854 | break; | ||
| 855 | spin_unlock_irq(&dev->power.lock); | ||
| 856 | |||
| 857 | schedule(); | ||
| 858 | |||
| 859 | spin_lock_irq(&dev->power.lock); | ||
| 860 | } | ||
| 861 | finish_wait(&dev->power.wait_queue, &wait); | ||
| 862 | } | ||
| 863 | } | ||
| 864 | |||
| 865 | /** | ||
| 866 | * pm_runtime_barrier - Flush pending requests and wait for completions. | ||
| 867 | * @dev: Device to handle. | ||
| 868 | * | ||
| 869 | * Prevent the device from being suspended by incrementing its usage counter and | ||
| 870 | * if there's a pending resume request for the device, wake the device up. | ||
| 871 | * Next, make sure that all pending requests for the device have been flushed | ||
| 872 | * from pm_wq and wait for all run-time PM operations involving the device in | ||
| 873 | * progress to complete. | ||
| 874 | * | ||
| 875 | * Return value: | ||
| 876 | * 1, if there was a resume request pending and the device had to be woken up, | ||
| 877 | * 0, otherwise | ||
| 878 | */ | ||
| 879 | int pm_runtime_barrier(struct device *dev) | ||
| 880 | { | ||
| 881 | int retval = 0; | ||
| 882 | |||
| 883 | pm_runtime_get_noresume(dev); | ||
| 884 | spin_lock_irq(&dev->power.lock); | ||
| 885 | |||
| 886 | if (dev->power.request_pending | ||
| 887 | && dev->power.request == RPM_REQ_RESUME) { | ||
| 888 | __pm_runtime_resume(dev, false); | ||
| 889 | retval = 1; | ||
| 890 | } | ||
| 891 | |||
| 892 | __pm_runtime_barrier(dev); | ||
| 893 | |||
| 894 | spin_unlock_irq(&dev->power.lock); | ||
| 895 | pm_runtime_put_noidle(dev); | ||
| 896 | |||
| 897 | return retval; | ||
| 898 | } | ||
| 899 | EXPORT_SYMBOL_GPL(pm_runtime_barrier); | ||
| 900 | |||
| 901 | /** | ||
| 902 | * __pm_runtime_disable - Disable run-time PM of a device. | ||
| 903 | * @dev: Device to handle. | ||
| 904 | * @check_resume: If set, check if there's a resume request for the device. | ||
| 905 | * | ||
| 906 | * Increment power.disable_depth for the device and if was zero previously, | ||
| 907 | * cancel all pending run-time PM requests for the device and wait for all | ||
| 908 | * operations in progress to complete. The device can be either active or | ||
| 909 | * suspended after its run-time PM has been disabled. | ||
| 910 | * | ||
| 911 | * If @check_resume is set and there's a resume request pending when | ||
| 912 | * __pm_runtime_disable() is called and power.disable_depth is zero, the | ||
| 913 | * function will wake up the device before disabling its run-time PM. | ||
| 914 | */ | ||
| 915 | void __pm_runtime_disable(struct device *dev, bool check_resume) | ||
| 916 | { | ||
| 917 | spin_lock_irq(&dev->power.lock); | ||
| 918 | |||
| 919 | if (dev->power.disable_depth > 0) { | ||
| 920 | dev->power.disable_depth++; | ||
| 921 | goto out; | ||
| 922 | } | ||
| 923 | |||
| 924 | /* | ||
| 925 | * Wake up the device if there's a resume request pending, because that | ||
| 926 | * means there probably is some I/O to process and disabling run-time PM | ||
| 927 | * shouldn't prevent the device from processing the I/O. | ||
| 928 | */ | ||
| 929 | if (check_resume && dev->power.request_pending | ||
| 930 | && dev->power.request == RPM_REQ_RESUME) { | ||
| 931 | /* | ||
| 932 | * Prevent suspends and idle notifications from being carried | ||
| 933 | * out after we have woken up the device. | ||
| 934 | */ | ||
| 935 | pm_runtime_get_noresume(dev); | ||
| 936 | |||
| 937 | __pm_runtime_resume(dev, false); | ||
| 938 | |||
| 939 | pm_runtime_put_noidle(dev); | ||
| 940 | } | ||
| 941 | |||
| 942 | if (!dev->power.disable_depth++) | ||
| 943 | __pm_runtime_barrier(dev); | ||
| 944 | |||
| 945 | out: | ||
| 946 | spin_unlock_irq(&dev->power.lock); | ||
| 947 | } | ||
| 948 | EXPORT_SYMBOL_GPL(__pm_runtime_disable); | ||
| 949 | |||
| 950 | /** | ||
| 951 | * pm_runtime_enable - Enable run-time PM of a device. | ||
| 952 | * @dev: Device to handle. | ||
| 953 | */ | ||
| 954 | void pm_runtime_enable(struct device *dev) | ||
| 955 | { | ||
| 956 | unsigned long flags; | ||
| 957 | |||
| 958 | spin_lock_irqsave(&dev->power.lock, flags); | ||
| 959 | |||
| 960 | if (dev->power.disable_depth > 0) | ||
| 961 | dev->power.disable_depth--; | ||
| 962 | else | ||
| 963 | dev_warn(dev, "Unbalanced %s!\n", __func__); | ||
| 964 | |||
| 965 | spin_unlock_irqrestore(&dev->power.lock, flags); | ||
| 966 | } | ||
| 967 | EXPORT_SYMBOL_GPL(pm_runtime_enable); | ||
| 968 | |||
| 969 | /** | ||
| 970 | * pm_runtime_init - Initialize run-time PM fields in given device object. | ||
| 971 | * @dev: Device object to initialize. | ||
| 972 | */ | ||
| 973 | void pm_runtime_init(struct device *dev) | ||
| 974 | { | ||
| 975 | spin_lock_init(&dev->power.lock); | ||
| 976 | |||
| 977 | dev->power.runtime_status = RPM_SUSPENDED; | ||
| 978 | dev->power.idle_notification = false; | ||
| 979 | |||
| 980 | dev->power.disable_depth = 1; | ||
| 981 | atomic_set(&dev->power.usage_count, 0); | ||
| 982 | |||
| 983 | dev->power.runtime_error = 0; | ||
| 984 | |||
| 985 | atomic_set(&dev->power.child_count, 0); | ||
| 986 | pm_suspend_ignore_children(dev, false); | ||
| 987 | |||
| 988 | dev->power.request_pending = false; | ||
| 989 | dev->power.request = RPM_REQ_NONE; | ||
| 990 | dev->power.deferred_resume = false; | ||
| 991 | INIT_WORK(&dev->power.work, pm_runtime_work); | ||
| 992 | |||
| 993 | dev->power.timer_expires = 0; | ||
| 994 | setup_timer(&dev->power.suspend_timer, pm_suspend_timer_fn, | ||
| 995 | (unsigned long)dev); | ||
| 996 | |||
| 997 | init_waitqueue_head(&dev->power.wait_queue); | ||
| 998 | } | ||
| 999 | |||
| 1000 | /** | ||
| 1001 | * pm_runtime_remove - Prepare for removing a device from device hierarchy. | ||
| 1002 | * @dev: Device object being removed from device hierarchy. | ||
| 1003 | */ | ||
| 1004 | void pm_runtime_remove(struct device *dev) | ||
| 1005 | { | ||
| 1006 | __pm_runtime_disable(dev, false); | ||
| 1007 | |||
| 1008 | /* Change the status back to 'suspended' to match the initial status. */ | ||
| 1009 | if (dev->power.runtime_status == RPM_ACTIVE) | ||
| 1010 | pm_runtime_set_suspended(dev); | ||
| 1011 | } | ||
diff --git a/drivers/block/floppy.c b/drivers/block/floppy.c index 91b753013780..2b387c2260d8 100644 --- a/drivers/block/floppy.c +++ b/drivers/block/floppy.c | |||
| @@ -4151,7 +4151,7 @@ static void floppy_device_release(struct device *dev) | |||
| 4151 | { | 4151 | { |
| 4152 | } | 4152 | } |
| 4153 | 4153 | ||
| 4154 | static int floppy_resume(struct platform_device *dev) | 4154 | static int floppy_resume(struct device *dev) |
| 4155 | { | 4155 | { |
| 4156 | int fdc; | 4156 | int fdc; |
| 4157 | 4157 | ||
| @@ -4162,10 +4162,15 @@ static int floppy_resume(struct platform_device *dev) | |||
| 4162 | return 0; | 4162 | return 0; |
| 4163 | } | 4163 | } |
| 4164 | 4164 | ||
| 4165 | static struct platform_driver floppy_driver = { | 4165 | static struct dev_pm_ops floppy_pm_ops = { |
| 4166 | .resume = floppy_resume, | 4166 | .resume = floppy_resume, |
| 4167 | .restore = floppy_resume, | ||
| 4168 | }; | ||
| 4169 | |||
| 4170 | static struct platform_driver floppy_driver = { | ||
| 4167 | .driver = { | 4171 | .driver = { |
| 4168 | .name = "floppy", | 4172 | .name = "floppy", |
| 4173 | .pm = &floppy_pm_ops, | ||
| 4169 | }, | 4174 | }, |
| 4170 | }; | 4175 | }; |
| 4171 | 4176 | ||
diff --git a/drivers/dma/at_hdmac.c b/drivers/dma/at_hdmac.c index 9a1e5fb412ed..c8522e6f1ad2 100644 --- a/drivers/dma/at_hdmac.c +++ b/drivers/dma/at_hdmac.c | |||
| @@ -1166,32 +1166,37 @@ static void at_dma_shutdown(struct platform_device *pdev) | |||
| 1166 | clk_disable(atdma->clk); | 1166 | clk_disable(atdma->clk); |
| 1167 | } | 1167 | } |
| 1168 | 1168 | ||
| 1169 | static int at_dma_suspend_late(struct platform_device *pdev, pm_message_t mesg) | 1169 | static int at_dma_suspend_noirq(struct device *dev) |
| 1170 | { | 1170 | { |
| 1171 | struct at_dma *atdma = platform_get_drvdata(pdev); | 1171 | struct platform_device *pdev = to_platform_device(dev); |
| 1172 | struct at_dma *atdma = platform_get_drvdata(pdev); | ||
| 1172 | 1173 | ||
| 1173 | at_dma_off(platform_get_drvdata(pdev)); | 1174 | at_dma_off(platform_get_drvdata(pdev)); |
| 1174 | clk_disable(atdma->clk); | 1175 | clk_disable(atdma->clk); |
| 1175 | return 0; | 1176 | return 0; |
| 1176 | } | 1177 | } |
| 1177 | 1178 | ||
| 1178 | static int at_dma_resume_early(struct platform_device *pdev) | 1179 | static int at_dma_resume_noirq(struct device *dev) |
| 1179 | { | 1180 | { |
| 1180 | struct at_dma *atdma = platform_get_drvdata(pdev); | 1181 | struct platform_device *pdev = to_platform_device(dev); |
| 1182 | struct at_dma *atdma = platform_get_drvdata(pdev); | ||
| 1181 | 1183 | ||
| 1182 | clk_enable(atdma->clk); | 1184 | clk_enable(atdma->clk); |
| 1183 | dma_writel(atdma, EN, AT_DMA_ENABLE); | 1185 | dma_writel(atdma, EN, AT_DMA_ENABLE); |
| 1184 | return 0; | 1186 | return 0; |
| 1185 | |||
| 1186 | } | 1187 | } |
| 1187 | 1188 | ||
| 1189 | static struct dev_pm_ops at_dma_dev_pm_ops = { | ||
| 1190 | .suspend_noirq = at_dma_suspend_noirq, | ||
| 1191 | .resume_noirq = at_dma_resume_noirq, | ||
| 1192 | }; | ||
| 1193 | |||
| 1188 | static struct platform_driver at_dma_driver = { | 1194 | static struct platform_driver at_dma_driver = { |
| 1189 | .remove = __exit_p(at_dma_remove), | 1195 | .remove = __exit_p(at_dma_remove), |
| 1190 | .shutdown = at_dma_shutdown, | 1196 | .shutdown = at_dma_shutdown, |
| 1191 | .suspend_late = at_dma_suspend_late, | ||
| 1192 | .resume_early = at_dma_resume_early, | ||
| 1193 | .driver = { | 1197 | .driver = { |
| 1194 | .name = "at_hdmac", | 1198 | .name = "at_hdmac", |
| 1199 | .pm = &at_dma_dev_pm_ops, | ||
| 1195 | }, | 1200 | }, |
| 1196 | }; | 1201 | }; |
| 1197 | 1202 | ||
diff --git a/drivers/dma/dw_dmac.c b/drivers/dma/dw_dmac.c index 98c9a847bf51..933c143b6a74 100644 --- a/drivers/dma/dw_dmac.c +++ b/drivers/dma/dw_dmac.c | |||
| @@ -1399,8 +1399,9 @@ static void dw_shutdown(struct platform_device *pdev) | |||
| 1399 | clk_disable(dw->clk); | 1399 | clk_disable(dw->clk); |
| 1400 | } | 1400 | } |
| 1401 | 1401 | ||
| 1402 | static int dw_suspend_late(struct platform_device *pdev, pm_message_t mesg) | 1402 | static int dw_suspend_noirq(struct device *dev) |
| 1403 | { | 1403 | { |
| 1404 | struct platform_device *pdev = to_platform_device(dev); | ||
| 1404 | struct dw_dma *dw = platform_get_drvdata(pdev); | 1405 | struct dw_dma *dw = platform_get_drvdata(pdev); |
| 1405 | 1406 | ||
| 1406 | dw_dma_off(platform_get_drvdata(pdev)); | 1407 | dw_dma_off(platform_get_drvdata(pdev)); |
| @@ -1408,23 +1409,27 @@ static int dw_suspend_late(struct platform_device *pdev, pm_message_t mesg) | |||
| 1408 | return 0; | 1409 | return 0; |
| 1409 | } | 1410 | } |
| 1410 | 1411 | ||
| 1411 | static int dw_resume_early(struct platform_device *pdev) | 1412 | static int dw_resume_noirq(struct device *dev) |
| 1412 | { | 1413 | { |
| 1414 | struct platform_device *pdev = to_platform_device(dev); | ||
| 1413 | struct dw_dma *dw = platform_get_drvdata(pdev); | 1415 | struct dw_dma *dw = platform_get_drvdata(pdev); |
| 1414 | 1416 | ||
| 1415 | clk_enable(dw->clk); | 1417 | clk_enable(dw->clk); |
| 1416 | dma_writel(dw, CFG, DW_CFG_DMA_EN); | 1418 | dma_writel(dw, CFG, DW_CFG_DMA_EN); |
| 1417 | return 0; | 1419 | return 0; |
| 1418 | |||
| 1419 | } | 1420 | } |
| 1420 | 1421 | ||
| 1422 | static struct dev_pm_ops dw_dev_pm_ops = { | ||
| 1423 | .suspend_noirq = dw_suspend_noirq, | ||
| 1424 | .resume_noirq = dw_resume_noirq, | ||
| 1425 | }; | ||
| 1426 | |||
| 1421 | static struct platform_driver dw_driver = { | 1427 | static struct platform_driver dw_driver = { |
| 1422 | .remove = __exit_p(dw_remove), | 1428 | .remove = __exit_p(dw_remove), |
| 1423 | .shutdown = dw_shutdown, | 1429 | .shutdown = dw_shutdown, |
| 1424 | .suspend_late = dw_suspend_late, | ||
| 1425 | .resume_early = dw_resume_early, | ||
| 1426 | .driver = { | 1430 | .driver = { |
| 1427 | .name = "dw_dmac", | 1431 | .name = "dw_dmac", |
| 1432 | .pm = &dw_dev_pm_ops, | ||
| 1428 | }, | 1433 | }, |
| 1429 | }; | 1434 | }; |
| 1430 | 1435 | ||
diff --git a/drivers/dma/txx9dmac.c b/drivers/dma/txx9dmac.c index 88dab52926f4..7837930146a4 100644 --- a/drivers/dma/txx9dmac.c +++ b/drivers/dma/txx9dmac.c | |||
| @@ -1291,17 +1291,18 @@ static void txx9dmac_shutdown(struct platform_device *pdev) | |||
| 1291 | txx9dmac_off(ddev); | 1291 | txx9dmac_off(ddev); |
| 1292 | } | 1292 | } |
| 1293 | 1293 | ||
| 1294 | static int txx9dmac_suspend_late(struct platform_device *pdev, | 1294 | static int txx9dmac_suspend_noirq(struct device *dev) |
| 1295 | pm_message_t mesg) | ||
| 1296 | { | 1295 | { |
| 1296 | struct platform_device *pdev = to_platform_device(dev); | ||
| 1297 | struct txx9dmac_dev *ddev = platform_get_drvdata(pdev); | 1297 | struct txx9dmac_dev *ddev = platform_get_drvdata(pdev); |
| 1298 | 1298 | ||
| 1299 | txx9dmac_off(ddev); | 1299 | txx9dmac_off(ddev); |
| 1300 | return 0; | 1300 | return 0; |
| 1301 | } | 1301 | } |
| 1302 | 1302 | ||
| 1303 | static int txx9dmac_resume_early(struct platform_device *pdev) | 1303 | static int txx9dmac_resume_noirq(struct device *dev) |
| 1304 | { | 1304 | { |
| 1305 | struct platform_device *pdev = to_platform_device(dev); | ||
| 1305 | struct txx9dmac_dev *ddev = platform_get_drvdata(pdev); | 1306 | struct txx9dmac_dev *ddev = platform_get_drvdata(pdev); |
| 1306 | struct txx9dmac_platform_data *pdata = pdev->dev.platform_data; | 1307 | struct txx9dmac_platform_data *pdata = pdev->dev.platform_data; |
| 1307 | u32 mcr; | 1308 | u32 mcr; |
| @@ -1314,6 +1315,11 @@ static int txx9dmac_resume_early(struct platform_device *pdev) | |||
| 1314 | 1315 | ||
| 1315 | } | 1316 | } |
| 1316 | 1317 | ||
| 1318 | static struct dev_pm_ops txx9dmac_dev_pm_ops = { | ||
| 1319 | .suspend_noirq = txx9dmac_suspend_noirq, | ||
| 1320 | .resume_noirq = txx9dmac_resume_noirq, | ||
| 1321 | }; | ||
| 1322 | |||
| 1317 | static struct platform_driver txx9dmac_chan_driver = { | 1323 | static struct platform_driver txx9dmac_chan_driver = { |
| 1318 | .remove = __exit_p(txx9dmac_chan_remove), | 1324 | .remove = __exit_p(txx9dmac_chan_remove), |
| 1319 | .driver = { | 1325 | .driver = { |
| @@ -1324,10 +1330,9 @@ static struct platform_driver txx9dmac_chan_driver = { | |||
| 1324 | static struct platform_driver txx9dmac_driver = { | 1330 | static struct platform_driver txx9dmac_driver = { |
| 1325 | .remove = __exit_p(txx9dmac_remove), | 1331 | .remove = __exit_p(txx9dmac_remove), |
| 1326 | .shutdown = txx9dmac_shutdown, | 1332 | .shutdown = txx9dmac_shutdown, |
| 1327 | .suspend_late = txx9dmac_suspend_late, | ||
| 1328 | .resume_early = txx9dmac_resume_early, | ||
| 1329 | .driver = { | 1333 | .driver = { |
| 1330 | .name = "txx9dmac", | 1334 | .name = "txx9dmac", |
| 1335 | .pm = &txx9dmac_dev_pm_ops, | ||
| 1331 | }, | 1336 | }, |
| 1332 | }; | 1337 | }; |
| 1333 | 1338 | ||
diff --git a/drivers/i2c/busses/i2c-pxa.c b/drivers/i2c/busses/i2c-pxa.c index 762e1e530882..049555777f67 100644 --- a/drivers/i2c/busses/i2c-pxa.c +++ b/drivers/i2c/busses/i2c-pxa.c | |||
| @@ -1134,35 +1134,44 @@ static int __exit i2c_pxa_remove(struct platform_device *dev) | |||
| 1134 | } | 1134 | } |
| 1135 | 1135 | ||
| 1136 | #ifdef CONFIG_PM | 1136 | #ifdef CONFIG_PM |
| 1137 | static int i2c_pxa_suspend_late(struct platform_device *dev, pm_message_t state) | 1137 | static int i2c_pxa_suspend_noirq(struct device *dev) |
| 1138 | { | 1138 | { |
| 1139 | struct pxa_i2c *i2c = platform_get_drvdata(dev); | 1139 | struct platform_device *pdev = to_platform_device(dev); |
| 1140 | struct pxa_i2c *i2c = platform_get_drvdata(pdev); | ||
| 1141 | |||
| 1140 | clk_disable(i2c->clk); | 1142 | clk_disable(i2c->clk); |
| 1143 | |||
| 1141 | return 0; | 1144 | return 0; |
| 1142 | } | 1145 | } |
| 1143 | 1146 | ||
| 1144 | static int i2c_pxa_resume_early(struct platform_device *dev) | 1147 | static int i2c_pxa_resume_noirq(struct device *dev) |
| 1145 | { | 1148 | { |
| 1146 | struct pxa_i2c *i2c = platform_get_drvdata(dev); | 1149 | struct platform_device *pdev = to_platform_device(dev); |
| 1150 | struct pxa_i2c *i2c = platform_get_drvdata(pdev); | ||
| 1147 | 1151 | ||
| 1148 | clk_enable(i2c->clk); | 1152 | clk_enable(i2c->clk); |
| 1149 | i2c_pxa_reset(i2c); | 1153 | i2c_pxa_reset(i2c); |
| 1150 | 1154 | ||
| 1151 | return 0; | 1155 | return 0; |
| 1152 | } | 1156 | } |
| 1157 | |||
| 1158 | static struct dev_pm_ops i2c_pxa_dev_pm_ops = { | ||
| 1159 | .suspend_noirq = i2c_pxa_suspend_noirq, | ||
| 1160 | .resume_noirq = i2c_pxa_resume_noirq, | ||
| 1161 | }; | ||
| 1162 | |||
| 1163 | #define I2C_PXA_DEV_PM_OPS (&i2c_pxa_dev_pm_ops) | ||
| 1153 | #else | 1164 | #else |
| 1154 | #define i2c_pxa_suspend_late NULL | 1165 | #define I2C_PXA_DEV_PM_OPS NULL |
| 1155 | #define i2c_pxa_resume_early NULL | ||
| 1156 | #endif | 1166 | #endif |
| 1157 | 1167 | ||
| 1158 | static struct platform_driver i2c_pxa_driver = { | 1168 | static struct platform_driver i2c_pxa_driver = { |
| 1159 | .probe = i2c_pxa_probe, | 1169 | .probe = i2c_pxa_probe, |
| 1160 | .remove = __exit_p(i2c_pxa_remove), | 1170 | .remove = __exit_p(i2c_pxa_remove), |
| 1161 | .suspend_late = i2c_pxa_suspend_late, | ||
| 1162 | .resume_early = i2c_pxa_resume_early, | ||
| 1163 | .driver = { | 1171 | .driver = { |
| 1164 | .name = "pxa2xx-i2c", | 1172 | .name = "pxa2xx-i2c", |
| 1165 | .owner = THIS_MODULE, | 1173 | .owner = THIS_MODULE, |
| 1174 | .pm = I2C_PXA_DEV_PM_OPS, | ||
| 1166 | }, | 1175 | }, |
| 1167 | .id_table = i2c_pxa_id_table, | 1176 | .id_table = i2c_pxa_id_table, |
| 1168 | }; | 1177 | }; |
diff --git a/drivers/i2c/busses/i2c-s3c2410.c b/drivers/i2c/busses/i2c-s3c2410.c index 20bb0ceb027b..96aafb91b69a 100644 --- a/drivers/i2c/busses/i2c-s3c2410.c +++ b/drivers/i2c/busses/i2c-s3c2410.c | |||
| @@ -946,17 +946,20 @@ static int s3c24xx_i2c_remove(struct platform_device *pdev) | |||
| 946 | } | 946 | } |
| 947 | 947 | ||
| 948 | #ifdef CONFIG_PM | 948 | #ifdef CONFIG_PM |
| 949 | static int s3c24xx_i2c_suspend_late(struct platform_device *dev, | 949 | static int s3c24xx_i2c_suspend_noirq(struct device *dev) |
| 950 | pm_message_t msg) | ||
| 951 | { | 950 | { |
| 952 | struct s3c24xx_i2c *i2c = platform_get_drvdata(dev); | 951 | struct platform_device *pdev = to_platform_device(dev); |
| 952 | struct s3c24xx_i2c *i2c = platform_get_drvdata(pdev); | ||
| 953 | |||
| 953 | i2c->suspended = 1; | 954 | i2c->suspended = 1; |
| 955 | |||
| 954 | return 0; | 956 | return 0; |
| 955 | } | 957 | } |
| 956 | 958 | ||
| 957 | static int s3c24xx_i2c_resume(struct platform_device *dev) | 959 | static int s3c24xx_i2c_resume(struct device *dev) |
| 958 | { | 960 | { |
| 959 | struct s3c24xx_i2c *i2c = platform_get_drvdata(dev); | 961 | struct platform_device *pdev = to_platform_device(dev); |
| 962 | struct s3c24xx_i2c *i2c = platform_get_drvdata(pdev); | ||
| 960 | 963 | ||
| 961 | i2c->suspended = 0; | 964 | i2c->suspended = 0; |
| 962 | s3c24xx_i2c_init(i2c); | 965 | s3c24xx_i2c_init(i2c); |
| @@ -964,9 +967,14 @@ static int s3c24xx_i2c_resume(struct platform_device *dev) | |||
| 964 | return 0; | 967 | return 0; |
| 965 | } | 968 | } |
| 966 | 969 | ||
| 970 | static struct dev_pm_ops s3c24xx_i2c_dev_pm_ops = { | ||
| 971 | .suspend_noirq = s3c24xx_i2c_suspend_noirq, | ||
| 972 | .resume = s3c24xx_i2c_resume, | ||
| 973 | }; | ||
| 974 | |||
| 975 | #define S3C24XX_DEV_PM_OPS (&s3c24xx_i2c_dev_pm_ops) | ||
| 967 | #else | 976 | #else |
| 968 | #define s3c24xx_i2c_suspend_late NULL | 977 | #define S3C24XX_DEV_PM_OPS NULL |
| 969 | #define s3c24xx_i2c_resume NULL | ||
| 970 | #endif | 978 | #endif |
| 971 | 979 | ||
| 972 | /* device driver for platform bus bits */ | 980 | /* device driver for platform bus bits */ |
| @@ -985,12 +993,11 @@ MODULE_DEVICE_TABLE(platform, s3c24xx_driver_ids); | |||
| 985 | static struct platform_driver s3c24xx_i2c_driver = { | 993 | static struct platform_driver s3c24xx_i2c_driver = { |
| 986 | .probe = s3c24xx_i2c_probe, | 994 | .probe = s3c24xx_i2c_probe, |
| 987 | .remove = s3c24xx_i2c_remove, | 995 | .remove = s3c24xx_i2c_remove, |
| 988 | .suspend_late = s3c24xx_i2c_suspend_late, | ||
| 989 | .resume = s3c24xx_i2c_resume, | ||
| 990 | .id_table = s3c24xx_driver_ids, | 996 | .id_table = s3c24xx_driver_ids, |
| 991 | .driver = { | 997 | .driver = { |
| 992 | .owner = THIS_MODULE, | 998 | .owner = THIS_MODULE, |
| 993 | .name = "s3c-i2c", | 999 | .name = "s3c-i2c", |
| 1000 | .pm = S3C24XX_DEV_PM_OPS, | ||
| 994 | }, | 1001 | }, |
| 995 | }; | 1002 | }; |
| 996 | 1003 | ||
diff --git a/drivers/platform/x86/hp-wmi.c b/drivers/platform/x86/hp-wmi.c index a2ad53e15874..af04f5b049db 100644 --- a/drivers/platform/x86/hp-wmi.c +++ b/drivers/platform/x86/hp-wmi.c | |||
| @@ -53,7 +53,7 @@ MODULE_ALIAS("wmi:5FB7F034-2C63-45e9-BE91-3D44E2C707E4"); | |||
| 53 | 53 | ||
| 54 | static int __init hp_wmi_bios_setup(struct platform_device *device); | 54 | static int __init hp_wmi_bios_setup(struct platform_device *device); |
| 55 | static int __exit hp_wmi_bios_remove(struct platform_device *device); | 55 | static int __exit hp_wmi_bios_remove(struct platform_device *device); |
| 56 | static int hp_wmi_resume_handler(struct platform_device *device); | 56 | static int hp_wmi_resume_handler(struct device *device); |
| 57 | 57 | ||
| 58 | struct bios_args { | 58 | struct bios_args { |
| 59 | u32 signature; | 59 | u32 signature; |
| @@ -94,14 +94,19 @@ static struct rfkill *wifi_rfkill; | |||
| 94 | static struct rfkill *bluetooth_rfkill; | 94 | static struct rfkill *bluetooth_rfkill; |
| 95 | static struct rfkill *wwan_rfkill; | 95 | static struct rfkill *wwan_rfkill; |
| 96 | 96 | ||
| 97 | static struct dev_pm_ops hp_wmi_pm_ops = { | ||
| 98 | .resume = hp_wmi_resume_handler, | ||
| 99 | .restore = hp_wmi_resume_handler, | ||
| 100 | }; | ||
| 101 | |||
| 97 | static struct platform_driver hp_wmi_driver = { | 102 | static struct platform_driver hp_wmi_driver = { |
| 98 | .driver = { | 103 | .driver = { |
| 99 | .name = "hp-wmi", | 104 | .name = "hp-wmi", |
| 100 | .owner = THIS_MODULE, | 105 | .owner = THIS_MODULE, |
| 106 | .pm = &hp_wmi_pm_ops, | ||
| 101 | }, | 107 | }, |
| 102 | .probe = hp_wmi_bios_setup, | 108 | .probe = hp_wmi_bios_setup, |
| 103 | .remove = hp_wmi_bios_remove, | 109 | .remove = hp_wmi_bios_remove, |
| 104 | .resume = hp_wmi_resume_handler, | ||
| 105 | }; | 110 | }; |
| 106 | 111 | ||
| 107 | static int hp_wmi_perform_query(int query, int write, int value) | 112 | static int hp_wmi_perform_query(int query, int write, int value) |
| @@ -512,7 +517,7 @@ static int __exit hp_wmi_bios_remove(struct platform_device *device) | |||
| 512 | return 0; | 517 | return 0; |
| 513 | } | 518 | } |
| 514 | 519 | ||
| 515 | static int hp_wmi_resume_handler(struct platform_device *device) | 520 | static int hp_wmi_resume_handler(struct device *device) |
| 516 | { | 521 | { |
| 517 | /* | 522 | /* |
| 518 | * Hardware state may have changed while suspended, so trigger | 523 | * Hardware state may have changed while suspended, so trigger |
diff --git a/drivers/usb/musb/musb_core.c b/drivers/usb/musb/musb_core.c index c7c1ca0494cd..1d26beddf2ca 100644 --- a/drivers/usb/musb/musb_core.c +++ b/drivers/usb/musb/musb_core.c | |||
| @@ -2167,8 +2167,9 @@ static int __devexit musb_remove(struct platform_device *pdev) | |||
| 2167 | 2167 | ||
| 2168 | #ifdef CONFIG_PM | 2168 | #ifdef CONFIG_PM |
| 2169 | 2169 | ||
| 2170 | static int musb_suspend(struct platform_device *pdev, pm_message_t message) | 2170 | static int musb_suspend(struct device *dev) |
| 2171 | { | 2171 | { |
| 2172 | struct platform_device *pdev = to_platform_device(dev); | ||
| 2172 | unsigned long flags; | 2173 | unsigned long flags; |
| 2173 | struct musb *musb = dev_to_musb(&pdev->dev); | 2174 | struct musb *musb = dev_to_musb(&pdev->dev); |
| 2174 | 2175 | ||
| @@ -2195,8 +2196,9 @@ static int musb_suspend(struct platform_device *pdev, pm_message_t message) | |||
| 2195 | return 0; | 2196 | return 0; |
| 2196 | } | 2197 | } |
| 2197 | 2198 | ||
| 2198 | static int musb_resume_early(struct platform_device *pdev) | 2199 | static int musb_resume_noirq(struct device *dev) |
| 2199 | { | 2200 | { |
| 2201 | struct platform_device *pdev = to_platform_device(dev); | ||
| 2200 | struct musb *musb = dev_to_musb(&pdev->dev); | 2202 | struct musb *musb = dev_to_musb(&pdev->dev); |
| 2201 | 2203 | ||
| 2202 | if (!musb->clock) | 2204 | if (!musb->clock) |
| @@ -2214,9 +2216,14 @@ static int musb_resume_early(struct platform_device *pdev) | |||
| 2214 | return 0; | 2216 | return 0; |
| 2215 | } | 2217 | } |
| 2216 | 2218 | ||
| 2219 | static struct dev_pm_ops musb_dev_pm_ops = { | ||
| 2220 | .suspend = musb_suspend, | ||
| 2221 | .resume_noirq = musb_resume_noirq, | ||
| 2222 | }; | ||
| 2223 | |||
| 2224 | #define MUSB_DEV_PM_OPS (&musb_dev_pm_ops) | ||
| 2217 | #else | 2225 | #else |
| 2218 | #define musb_suspend NULL | 2226 | #define MUSB_DEV_PM_OPS NULL |
| 2219 | #define musb_resume_early NULL | ||
| 2220 | #endif | 2227 | #endif |
| 2221 | 2228 | ||
| 2222 | static struct platform_driver musb_driver = { | 2229 | static struct platform_driver musb_driver = { |
| @@ -2224,11 +2231,10 @@ static struct platform_driver musb_driver = { | |||
| 2224 | .name = (char *)musb_driver_name, | 2231 | .name = (char *)musb_driver_name, |
| 2225 | .bus = &platform_bus_type, | 2232 | .bus = &platform_bus_type, |
| 2226 | .owner = THIS_MODULE, | 2233 | .owner = THIS_MODULE, |
| 2234 | .pm = MUSB_DEV_PM_OPS, | ||
| 2227 | }, | 2235 | }, |
| 2228 | .remove = __devexit_p(musb_remove), | 2236 | .remove = __devexit_p(musb_remove), |
| 2229 | .shutdown = musb_shutdown, | 2237 | .shutdown = musb_shutdown, |
| 2230 | .suspend = musb_suspend, | ||
| 2231 | .resume_early = musb_resume_early, | ||
| 2232 | }; | 2238 | }; |
| 2233 | 2239 | ||
| 2234 | /*-------------------------------------------------------------------------*/ | 2240 | /*-------------------------------------------------------------------------*/ |
diff --git a/include/asm-generic/device.h b/include/asm-generic/device.h index c17c9600f220..d7c76bba640d 100644 --- a/include/asm-generic/device.h +++ b/include/asm-generic/device.h | |||
| @@ -9,4 +9,7 @@ | |||
| 9 | struct dev_archdata { | 9 | struct dev_archdata { |
| 10 | }; | 10 | }; |
| 11 | 11 | ||
| 12 | struct pdev_archdata { | ||
| 13 | }; | ||
| 14 | |||
| 12 | #endif /* _ASM_GENERIC_DEVICE_H */ | 15 | #endif /* _ASM_GENERIC_DEVICE_H */ |
diff --git a/include/linux/platform_device.h b/include/linux/platform_device.h index 8dc5123b6305..3c6675c2444b 100644 --- a/include/linux/platform_device.h +++ b/include/linux/platform_device.h | |||
| @@ -22,6 +22,9 @@ struct platform_device { | |||
| 22 | struct resource * resource; | 22 | struct resource * resource; |
| 23 | 23 | ||
| 24 | struct platform_device_id *id_entry; | 24 | struct platform_device_id *id_entry; |
| 25 | |||
| 26 | /* arch specific additions */ | ||
| 27 | struct pdev_archdata archdata; | ||
| 25 | }; | 28 | }; |
| 26 | 29 | ||
| 27 | #define platform_get_device_id(pdev) ((pdev)->id_entry) | 30 | #define platform_get_device_id(pdev) ((pdev)->id_entry) |
| @@ -57,8 +60,6 @@ struct platform_driver { | |||
| 57 | int (*remove)(struct platform_device *); | 60 | int (*remove)(struct platform_device *); |
| 58 | void (*shutdown)(struct platform_device *); | 61 | void (*shutdown)(struct platform_device *); |
| 59 | int (*suspend)(struct platform_device *, pm_message_t state); | 62 | int (*suspend)(struct platform_device *, pm_message_t state); |
| 60 | int (*suspend_late)(struct platform_device *, pm_message_t state); | ||
| 61 | int (*resume_early)(struct platform_device *); | ||
| 62 | int (*resume)(struct platform_device *); | 63 | int (*resume)(struct platform_device *); |
| 63 | struct device_driver driver; | 64 | struct device_driver driver; |
| 64 | struct platform_device_id *id_table; | 65 | struct platform_device_id *id_table; |
diff --git a/include/linux/pm.h b/include/linux/pm.h index b3f74764a586..3b7e04b95bd2 100644 --- a/include/linux/pm.h +++ b/include/linux/pm.h | |||
| @@ -22,6 +22,10 @@ | |||
| 22 | #define _LINUX_PM_H | 22 | #define _LINUX_PM_H |
| 23 | 23 | ||
| 24 | #include <linux/list.h> | 24 | #include <linux/list.h> |
| 25 | #include <linux/workqueue.h> | ||
| 26 | #include <linux/spinlock.h> | ||
| 27 | #include <linux/wait.h> | ||
| 28 | #include <linux/timer.h> | ||
| 25 | 29 | ||
| 26 | /* | 30 | /* |
| 27 | * Callbacks for platform drivers to implement. | 31 | * Callbacks for platform drivers to implement. |
| @@ -165,6 +169,28 @@ typedef struct pm_message { | |||
| 165 | * It is allowed to unregister devices while the above callbacks are being | 169 | * It is allowed to unregister devices while the above callbacks are being |
| 166 | * executed. However, it is not allowed to unregister a device from within any | 170 | * executed. However, it is not allowed to unregister a device from within any |
| 167 | * of its own callbacks. | 171 | * of its own callbacks. |
| 172 | * | ||
| 173 | * There also are the following callbacks related to run-time power management | ||
| 174 | * of devices: | ||
| 175 | * | ||
| 176 | * @runtime_suspend: Prepare the device for a condition in which it won't be | ||
| 177 | * able to communicate with the CPU(s) and RAM due to power management. | ||
| 178 | * This need not mean that the device should be put into a low power state. | ||
| 179 | * For example, if the device is behind a link which is about to be turned | ||
| 180 | * off, the device may remain at full power. If the device does go to low | ||
| 181 | * power and if device_may_wakeup(dev) is true, remote wake-up (i.e., a | ||
| 182 | * hardware mechanism allowing the device to request a change of its power | ||
| 183 | * state, such as PCI PME) should be enabled for it. | ||
| 184 | * | ||
| 185 | * @runtime_resume: Put the device into the fully active state in response to a | ||
| 186 | * wake-up event generated by hardware or at the request of software. If | ||
| 187 | * necessary, put the device into the full power state and restore its | ||
| 188 | * registers, so that it is fully operational. | ||
| 189 | * | ||
| 190 | * @runtime_idle: Device appears to be inactive and it might be put into a low | ||
| 191 | * power state if all of the necessary conditions are satisfied. Check | ||
| 192 | * these conditions and handle the device as appropriate, possibly queueing | ||
| 193 | * a suspend request for it. The return value is ignored by the PM core. | ||
| 168 | */ | 194 | */ |
| 169 | 195 | ||
| 170 | struct dev_pm_ops { | 196 | struct dev_pm_ops { |
| @@ -182,8 +208,25 @@ struct dev_pm_ops { | |||
| 182 | int (*thaw_noirq)(struct device *dev); | 208 | int (*thaw_noirq)(struct device *dev); |
| 183 | int (*poweroff_noirq)(struct device *dev); | 209 | int (*poweroff_noirq)(struct device *dev); |
| 184 | int (*restore_noirq)(struct device *dev); | 210 | int (*restore_noirq)(struct device *dev); |
| 211 | int (*runtime_suspend)(struct device *dev); | ||
| 212 | int (*runtime_resume)(struct device *dev); | ||
| 213 | int (*runtime_idle)(struct device *dev); | ||
| 185 | }; | 214 | }; |
| 186 | 215 | ||
| 216 | /* | ||
| 217 | * Use this if you want to use the same suspend and resume callbacks for suspend | ||
| 218 | * to RAM and hibernation. | ||
| 219 | */ | ||
| 220 | #define SIMPLE_DEV_PM_OPS(name, suspend_fn, resume_fn) \ | ||
| 221 | struct dev_pm_ops name = { \ | ||
| 222 | .suspend = suspend_fn, \ | ||
| 223 | .resume = resume_fn, \ | ||
| 224 | .freeze = suspend_fn, \ | ||
| 225 | .thaw = resume_fn, \ | ||
| 226 | .poweroff = suspend_fn, \ | ||
| 227 | .restore = resume_fn, \ | ||
| 228 | } | ||
| 229 | |||
| 187 | /** | 230 | /** |
| 188 | * PM_EVENT_ messages | 231 | * PM_EVENT_ messages |
| 189 | * | 232 | * |
| @@ -315,14 +358,80 @@ enum dpm_state { | |||
| 315 | DPM_OFF_IRQ, | 358 | DPM_OFF_IRQ, |
| 316 | }; | 359 | }; |
| 317 | 360 | ||
| 361 | /** | ||
| 362 | * Device run-time power management status. | ||
| 363 | * | ||
| 364 | * These status labels are used internally by the PM core to indicate the | ||
| 365 | * current status of a device with respect to the PM core operations. They do | ||
| 366 | * not reflect the actual power state of the device or its status as seen by the | ||
| 367 | * driver. | ||
| 368 | * | ||
| 369 | * RPM_ACTIVE Device is fully operational. Indicates that the device | ||
| 370 | * bus type's ->runtime_resume() callback has completed | ||
| 371 | * successfully. | ||
| 372 | * | ||
| 373 | * RPM_SUSPENDED Device bus type's ->runtime_suspend() callback has | ||
| 374 | * completed successfully. The device is regarded as | ||
| 375 | * suspended. | ||
| 376 | * | ||
| 377 | * RPM_RESUMING Device bus type's ->runtime_resume() callback is being | ||
| 378 | * executed. | ||
| 379 | * | ||
| 380 | * RPM_SUSPENDING Device bus type's ->runtime_suspend() callback is being | ||
| 381 | * executed. | ||
| 382 | */ | ||
| 383 | |||
| 384 | enum rpm_status { | ||
| 385 | RPM_ACTIVE = 0, | ||
| 386 | RPM_RESUMING, | ||
| 387 | RPM_SUSPENDED, | ||
| 388 | RPM_SUSPENDING, | ||
| 389 | }; | ||
| 390 | |||
| 391 | /** | ||
| 392 | * Device run-time power management request types. | ||
| 393 | * | ||
| 394 | * RPM_REQ_NONE Do nothing. | ||
| 395 | * | ||
| 396 | * RPM_REQ_IDLE Run the device bus type's ->runtime_idle() callback | ||
| 397 | * | ||
| 398 | * RPM_REQ_SUSPEND Run the device bus type's ->runtime_suspend() callback | ||
| 399 | * | ||
| 400 | * RPM_REQ_RESUME Run the device bus type's ->runtime_resume() callback | ||
| 401 | */ | ||
| 402 | |||
| 403 | enum rpm_request { | ||
| 404 | RPM_REQ_NONE = 0, | ||
| 405 | RPM_REQ_IDLE, | ||
| 406 | RPM_REQ_SUSPEND, | ||
| 407 | RPM_REQ_RESUME, | ||
| 408 | }; | ||
| 409 | |||
| 318 | struct dev_pm_info { | 410 | struct dev_pm_info { |
| 319 | pm_message_t power_state; | 411 | pm_message_t power_state; |
| 320 | unsigned can_wakeup:1; | 412 | unsigned int can_wakeup:1; |
| 321 | unsigned should_wakeup:1; | 413 | unsigned int should_wakeup:1; |
| 322 | enum dpm_state status; /* Owned by the PM core */ | 414 | enum dpm_state status; /* Owned by the PM core */ |
| 323 | #ifdef CONFIG_PM_SLEEP | 415 | #ifdef CONFIG_PM_SLEEP |
| 324 | struct list_head entry; | 416 | struct list_head entry; |
| 325 | #endif | 417 | #endif |
| 418 | #ifdef CONFIG_PM_RUNTIME | ||
| 419 | struct timer_list suspend_timer; | ||
| 420 | unsigned long timer_expires; | ||
| 421 | struct work_struct work; | ||
| 422 | wait_queue_head_t wait_queue; | ||
| 423 | spinlock_t lock; | ||
| 424 | atomic_t usage_count; | ||
| 425 | atomic_t child_count; | ||
| 426 | unsigned int disable_depth:3; | ||
| 427 | unsigned int ignore_children:1; | ||
| 428 | unsigned int idle_notification:1; | ||
| 429 | unsigned int request_pending:1; | ||
| 430 | unsigned int deferred_resume:1; | ||
| 431 | enum rpm_request request; | ||
| 432 | enum rpm_status runtime_status; | ||
| 433 | int runtime_error; | ||
| 434 | #endif | ||
| 326 | }; | 435 | }; |
| 327 | 436 | ||
| 328 | /* | 437 | /* |
diff --git a/include/linux/pm_runtime.h b/include/linux/pm_runtime.h new file mode 100644 index 000000000000..44087044910f --- /dev/null +++ b/include/linux/pm_runtime.h | |||
| @@ -0,0 +1,114 @@ | |||
| 1 | /* | ||
| 2 | * pm_runtime.h - Device run-time power management helper functions. | ||
| 3 | * | ||
| 4 | * Copyright (C) 2009 Rafael J. Wysocki <rjw@sisk.pl> | ||
| 5 | * | ||
| 6 | * This file is released under the GPLv2. | ||
| 7 | */ | ||
| 8 | |||
| 9 | #ifndef _LINUX_PM_RUNTIME_H | ||
| 10 | #define _LINUX_PM_RUNTIME_H | ||
| 11 | |||
| 12 | #include <linux/device.h> | ||
| 13 | #include <linux/pm.h> | ||
| 14 | |||
| 15 | #ifdef CONFIG_PM_RUNTIME | ||
| 16 | |||
| 17 | extern struct workqueue_struct *pm_wq; | ||
| 18 | |||
| 19 | extern int pm_runtime_idle(struct device *dev); | ||
| 20 | extern int pm_runtime_suspend(struct device *dev); | ||
| 21 | extern int pm_runtime_resume(struct device *dev); | ||
| 22 | extern int pm_request_idle(struct device *dev); | ||
| 23 | extern int pm_schedule_suspend(struct device *dev, unsigned int delay); | ||
| 24 | extern int pm_request_resume(struct device *dev); | ||
| 25 | extern int __pm_runtime_get(struct device *dev, bool sync); | ||
| 26 | extern int __pm_runtime_put(struct device *dev, bool sync); | ||
| 27 | extern int __pm_runtime_set_status(struct device *dev, unsigned int status); | ||
| 28 | extern int pm_runtime_barrier(struct device *dev); | ||
| 29 | extern void pm_runtime_enable(struct device *dev); | ||
| 30 | extern void __pm_runtime_disable(struct device *dev, bool check_resume); | ||
| 31 | |||
| 32 | static inline bool pm_children_suspended(struct device *dev) | ||
| 33 | { | ||
| 34 | return dev->power.ignore_children | ||
| 35 | || !atomic_read(&dev->power.child_count); | ||
| 36 | } | ||
| 37 | |||
| 38 | static inline void pm_suspend_ignore_children(struct device *dev, bool enable) | ||
| 39 | { | ||
| 40 | dev->power.ignore_children = enable; | ||
| 41 | } | ||
| 42 | |||
| 43 | static inline void pm_runtime_get_noresume(struct device *dev) | ||
| 44 | { | ||
| 45 | atomic_inc(&dev->power.usage_count); | ||
| 46 | } | ||
| 47 | |||
| 48 | static inline void pm_runtime_put_noidle(struct device *dev) | ||
| 49 | { | ||
| 50 | atomic_add_unless(&dev->power.usage_count, -1, 0); | ||
| 51 | } | ||
| 52 | |||
| 53 | #else /* !CONFIG_PM_RUNTIME */ | ||
| 54 | |||
| 55 | static inline int pm_runtime_idle(struct device *dev) { return -ENOSYS; } | ||
| 56 | static inline int pm_runtime_suspend(struct device *dev) { return -ENOSYS; } | ||
| 57 | static inline int pm_runtime_resume(struct device *dev) { return 0; } | ||
| 58 | static inline int pm_request_idle(struct device *dev) { return -ENOSYS; } | ||
| 59 | static inline int pm_schedule_suspend(struct device *dev, unsigned int delay) | ||
| 60 | { | ||
| 61 | return -ENOSYS; | ||
| 62 | } | ||
| 63 | static inline int pm_request_resume(struct device *dev) { return 0; } | ||
| 64 | static inline int __pm_runtime_get(struct device *dev, bool sync) { return 1; } | ||
| 65 | static inline int __pm_runtime_put(struct device *dev, bool sync) { return 0; } | ||
| 66 | static inline int __pm_runtime_set_status(struct device *dev, | ||
| 67 | unsigned int status) { return 0; } | ||
| 68 | static inline int pm_runtime_barrier(struct device *dev) { return 0; } | ||
| 69 | static inline void pm_runtime_enable(struct device *dev) {} | ||
| 70 | static inline void __pm_runtime_disable(struct device *dev, bool c) {} | ||
| 71 | |||
| 72 | static inline bool pm_children_suspended(struct device *dev) { return false; } | ||
| 73 | static inline void pm_suspend_ignore_children(struct device *dev, bool en) {} | ||
| 74 | static inline void pm_runtime_get_noresume(struct device *dev) {} | ||
| 75 | static inline void pm_runtime_put_noidle(struct device *dev) {} | ||
| 76 | |||
| 77 | #endif /* !CONFIG_PM_RUNTIME */ | ||
| 78 | |||
| 79 | static inline int pm_runtime_get(struct device *dev) | ||
| 80 | { | ||
| 81 | return __pm_runtime_get(dev, false); | ||
| 82 | } | ||
| 83 | |||
| 84 | static inline int pm_runtime_get_sync(struct device *dev) | ||
| 85 | { | ||
| 86 | return __pm_runtime_get(dev, true); | ||
| 87 | } | ||
| 88 | |||
| 89 | static inline int pm_runtime_put(struct device *dev) | ||
| 90 | { | ||
| 91 | return __pm_runtime_put(dev, false); | ||
| 92 | } | ||
| 93 | |||
| 94 | static inline int pm_runtime_put_sync(struct device *dev) | ||
| 95 | { | ||
| 96 | return __pm_runtime_put(dev, true); | ||
| 97 | } | ||
| 98 | |||
| 99 | static inline int pm_runtime_set_active(struct device *dev) | ||
| 100 | { | ||
| 101 | return __pm_runtime_set_status(dev, RPM_ACTIVE); | ||
| 102 | } | ||
| 103 | |||
| 104 | static inline void pm_runtime_set_suspended(struct device *dev) | ||
| 105 | { | ||
| 106 | __pm_runtime_set_status(dev, RPM_SUSPENDED); | ||
| 107 | } | ||
| 108 | |||
| 109 | static inline void pm_runtime_disable(struct device *dev) | ||
| 110 | { | ||
| 111 | __pm_runtime_disable(dev, true); | ||
| 112 | } | ||
| 113 | |||
| 114 | #endif | ||
diff --git a/kernel/power/Kconfig b/kernel/power/Kconfig index 72067cbdb37f..91e09d3b2eb2 100644 --- a/kernel/power/Kconfig +++ b/kernel/power/Kconfig | |||
| @@ -208,3 +208,17 @@ config APM_EMULATION | |||
| 208 | random kernel OOPSes or reboots that don't seem to be related to | 208 | random kernel OOPSes or reboots that don't seem to be related to |
| 209 | anything, try disabling/enabling this option (or disabling/enabling | 209 | anything, try disabling/enabling this option (or disabling/enabling |
| 210 | APM in your BIOS). | 210 | APM in your BIOS). |
| 211 | |||
| 212 | config PM_RUNTIME | ||
| 213 | bool "Run-time PM core functionality" | ||
| 214 | depends on PM | ||
| 215 | ---help--- | ||
| 216 | Enable functionality allowing I/O devices to be put into energy-saving | ||
| 217 | (low power) states at run time (or autosuspended) after a specified | ||
| 218 | period of inactivity and woken up in response to a hardware-generated | ||
| 219 | wake-up event or a driver's request. | ||
| 220 | |||
| 221 | Hardware support is generally required for this functionality to work | ||
| 222 | and the bus type drivers of the buses the devices are on are | ||
| 223 | responsible for the actual handling of the autosuspend requests and | ||
| 224 | wake-up events. | ||
diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c index 81d2e7464893..04b3a83d686f 100644 --- a/kernel/power/hibernate.c +++ b/kernel/power/hibernate.c | |||
| @@ -298,8 +298,8 @@ int hibernation_snapshot(int platform_mode) | |||
| 298 | if (error) | 298 | if (error) |
| 299 | return error; | 299 | return error; |
| 300 | 300 | ||
| 301 | /* Free memory before shutting down devices. */ | 301 | /* Preallocate image memory before shutting down devices. */ |
| 302 | error = swsusp_shrink_memory(); | 302 | error = hibernate_preallocate_memory(); |
| 303 | if (error) | 303 | if (error) |
| 304 | goto Close; | 304 | goto Close; |
| 305 | 305 | ||
| @@ -315,6 +315,10 @@ int hibernation_snapshot(int platform_mode) | |||
| 315 | /* Control returns here after successful restore */ | 315 | /* Control returns here after successful restore */ |
| 316 | 316 | ||
| 317 | Resume_devices: | 317 | Resume_devices: |
| 318 | /* We may need to release the preallocated image pages here. */ | ||
| 319 | if (error || !in_suspend) | ||
| 320 | swsusp_free(); | ||
| 321 | |||
| 318 | dpm_resume_end(in_suspend ? | 322 | dpm_resume_end(in_suspend ? |
| 319 | (error ? PMSG_RECOVER : PMSG_THAW) : PMSG_RESTORE); | 323 | (error ? PMSG_RECOVER : PMSG_THAW) : PMSG_RESTORE); |
| 320 | resume_console(); | 324 | resume_console(); |
| @@ -460,11 +464,11 @@ int hibernation_platform_enter(void) | |||
| 460 | 464 | ||
| 461 | error = hibernation_ops->prepare(); | 465 | error = hibernation_ops->prepare(); |
| 462 | if (error) | 466 | if (error) |
| 463 | goto Platofrm_finish; | 467 | goto Platform_finish; |
| 464 | 468 | ||
| 465 | error = disable_nonboot_cpus(); | 469 | error = disable_nonboot_cpus(); |
| 466 | if (error) | 470 | if (error) |
| 467 | goto Platofrm_finish; | 471 | goto Platform_finish; |
| 468 | 472 | ||
| 469 | local_irq_disable(); | 473 | local_irq_disable(); |
| 470 | sysdev_suspend(PMSG_HIBERNATE); | 474 | sysdev_suspend(PMSG_HIBERNATE); |
| @@ -476,7 +480,7 @@ int hibernation_platform_enter(void) | |||
| 476 | * We don't need to reenable the nonboot CPUs or resume consoles, since | 480 | * We don't need to reenable the nonboot CPUs or resume consoles, since |
| 477 | * the system is going to be halted anyway. | 481 | * the system is going to be halted anyway. |
| 478 | */ | 482 | */ |
| 479 | Platofrm_finish: | 483 | Platform_finish: |
| 480 | hibernation_ops->finish(); | 484 | hibernation_ops->finish(); |
| 481 | 485 | ||
| 482 | dpm_suspend_noirq(PMSG_RESTORE); | 486 | dpm_suspend_noirq(PMSG_RESTORE); |
| @@ -578,7 +582,10 @@ int hibernate(void) | |||
| 578 | goto Thaw; | 582 | goto Thaw; |
| 579 | 583 | ||
| 580 | error = hibernation_snapshot(hibernation_mode == HIBERNATION_PLATFORM); | 584 | error = hibernation_snapshot(hibernation_mode == HIBERNATION_PLATFORM); |
| 581 | if (in_suspend && !error) { | 585 | if (error) |
| 586 | goto Thaw; | ||
| 587 | |||
| 588 | if (in_suspend) { | ||
| 582 | unsigned int flags = 0; | 589 | unsigned int flags = 0; |
| 583 | 590 | ||
| 584 | if (hibernation_mode == HIBERNATION_PLATFORM) | 591 | if (hibernation_mode == HIBERNATION_PLATFORM) |
| @@ -590,8 +597,8 @@ int hibernate(void) | |||
| 590 | power_down(); | 597 | power_down(); |
| 591 | } else { | 598 | } else { |
| 592 | pr_debug("PM: Image restored successfully.\n"); | 599 | pr_debug("PM: Image restored successfully.\n"); |
| 593 | swsusp_free(); | ||
| 594 | } | 600 | } |
| 601 | |||
| 595 | Thaw: | 602 | Thaw: |
| 596 | thaw_processes(); | 603 | thaw_processes(); |
| 597 | Finish: | 604 | Finish: |
diff --git a/kernel/power/main.c b/kernel/power/main.c index f710e36930cc..347d2cc88cd0 100644 --- a/kernel/power/main.c +++ b/kernel/power/main.c | |||
| @@ -11,6 +11,7 @@ | |||
| 11 | #include <linux/kobject.h> | 11 | #include <linux/kobject.h> |
| 12 | #include <linux/string.h> | 12 | #include <linux/string.h> |
| 13 | #include <linux/resume-trace.h> | 13 | #include <linux/resume-trace.h> |
| 14 | #include <linux/workqueue.h> | ||
| 14 | 15 | ||
| 15 | #include "power.h" | 16 | #include "power.h" |
| 16 | 17 | ||
| @@ -217,8 +218,24 @@ static struct attribute_group attr_group = { | |||
| 217 | .attrs = g, | 218 | .attrs = g, |
| 218 | }; | 219 | }; |
| 219 | 220 | ||
| 221 | #ifdef CONFIG_PM_RUNTIME | ||
| 222 | struct workqueue_struct *pm_wq; | ||
| 223 | |||
| 224 | static int __init pm_start_workqueue(void) | ||
| 225 | { | ||
| 226 | pm_wq = create_freezeable_workqueue("pm"); | ||
| 227 | |||
| 228 | return pm_wq ? 0 : -ENOMEM; | ||
| 229 | } | ||
| 230 | #else | ||
| 231 | static inline int pm_start_workqueue(void) { return 0; } | ||
| 232 | #endif | ||
| 233 | |||
| 220 | static int __init pm_init(void) | 234 | static int __init pm_init(void) |
| 221 | { | 235 | { |
| 236 | int error = pm_start_workqueue(); | ||
| 237 | if (error) | ||
| 238 | return error; | ||
| 222 | power_kobj = kobject_create_and_add("power", NULL); | 239 | power_kobj = kobject_create_and_add("power", NULL); |
| 223 | if (!power_kobj) | 240 | if (!power_kobj) |
| 224 | return -ENOMEM; | 241 | return -ENOMEM; |
diff --git a/kernel/power/power.h b/kernel/power/power.h index 26d5a26f82e3..46c5a26630a3 100644 --- a/kernel/power/power.h +++ b/kernel/power/power.h | |||
| @@ -74,7 +74,7 @@ extern asmlinkage int swsusp_arch_resume(void); | |||
| 74 | 74 | ||
| 75 | extern int create_basic_memory_bitmaps(void); | 75 | extern int create_basic_memory_bitmaps(void); |
| 76 | extern void free_basic_memory_bitmaps(void); | 76 | extern void free_basic_memory_bitmaps(void); |
| 77 | extern int swsusp_shrink_memory(void); | 77 | extern int hibernate_preallocate_memory(void); |
| 78 | 78 | ||
| 79 | /** | 79 | /** |
| 80 | * Auxiliary structure used for reading the snapshot image data and | 80 | * Auxiliary structure used for reading the snapshot image data and |
diff --git a/kernel/power/snapshot.c b/kernel/power/snapshot.c index 523a451b45d3..97955b0e44f4 100644 --- a/kernel/power/snapshot.c +++ b/kernel/power/snapshot.c | |||
| @@ -233,7 +233,7 @@ static void *chain_alloc(struct chain_allocator *ca, unsigned int size) | |||
| 233 | 233 | ||
| 234 | #define BM_END_OF_MAP (~0UL) | 234 | #define BM_END_OF_MAP (~0UL) |
| 235 | 235 | ||
| 236 | #define BM_BITS_PER_BLOCK (PAGE_SIZE << 3) | 236 | #define BM_BITS_PER_BLOCK (PAGE_SIZE * BITS_PER_BYTE) |
| 237 | 237 | ||
| 238 | struct bm_block { | 238 | struct bm_block { |
| 239 | struct list_head hook; /* hook into a list of bitmap blocks */ | 239 | struct list_head hook; /* hook into a list of bitmap blocks */ |
| @@ -275,7 +275,7 @@ static void memory_bm_free(struct memory_bitmap *bm, int clear_nosave_free); | |||
| 275 | 275 | ||
| 276 | /** | 276 | /** |
| 277 | * create_bm_block_list - create a list of block bitmap objects | 277 | * create_bm_block_list - create a list of block bitmap objects |
| 278 | * @nr_blocks - number of blocks to allocate | 278 | * @pages - number of pages to track |
| 279 | * @list - list to put the allocated blocks into | 279 | * @list - list to put the allocated blocks into |
| 280 | * @ca - chain allocator to be used for allocating memory | 280 | * @ca - chain allocator to be used for allocating memory |
| 281 | */ | 281 | */ |
| @@ -853,7 +853,7 @@ static unsigned int count_highmem_pages(void) | |||
| 853 | struct zone *zone; | 853 | struct zone *zone; |
| 854 | unsigned int n = 0; | 854 | unsigned int n = 0; |
| 855 | 855 | ||
| 856 | for_each_zone(zone) { | 856 | for_each_populated_zone(zone) { |
| 857 | unsigned long pfn, max_zone_pfn; | 857 | unsigned long pfn, max_zone_pfn; |
| 858 | 858 | ||
| 859 | if (!is_highmem(zone)) | 859 | if (!is_highmem(zone)) |
| @@ -916,7 +916,7 @@ static unsigned int count_data_pages(void) | |||
| 916 | unsigned long pfn, max_zone_pfn; | 916 | unsigned long pfn, max_zone_pfn; |
| 917 | unsigned int n = 0; | 917 | unsigned int n = 0; |
| 918 | 918 | ||
| 919 | for_each_zone(zone) { | 919 | for_each_populated_zone(zone) { |
| 920 | if (is_highmem(zone)) | 920 | if (is_highmem(zone)) |
| 921 | continue; | 921 | continue; |
| 922 | 922 | ||
| @@ -1010,7 +1010,7 @@ copy_data_pages(struct memory_bitmap *copy_bm, struct memory_bitmap *orig_bm) | |||
| 1010 | struct zone *zone; | 1010 | struct zone *zone; |
| 1011 | unsigned long pfn; | 1011 | unsigned long pfn; |
| 1012 | 1012 | ||
| 1013 | for_each_zone(zone) { | 1013 | for_each_populated_zone(zone) { |
| 1014 | unsigned long max_zone_pfn; | 1014 | unsigned long max_zone_pfn; |
| 1015 | 1015 | ||
| 1016 | mark_free_pages(zone); | 1016 | mark_free_pages(zone); |
| @@ -1033,6 +1033,25 @@ copy_data_pages(struct memory_bitmap *copy_bm, struct memory_bitmap *orig_bm) | |||
| 1033 | static unsigned int nr_copy_pages; | 1033 | static unsigned int nr_copy_pages; |
| 1034 | /* Number of pages needed for saving the original pfns of the image pages */ | 1034 | /* Number of pages needed for saving the original pfns of the image pages */ |
| 1035 | static unsigned int nr_meta_pages; | 1035 | static unsigned int nr_meta_pages; |
| 1036 | /* | ||
| 1037 | * Numbers of normal and highmem page frames allocated for hibernation image | ||
| 1038 | * before suspending devices. | ||
| 1039 | */ | ||
| 1040 | unsigned int alloc_normal, alloc_highmem; | ||
| 1041 | /* | ||
| 1042 | * Memory bitmap used for marking saveable pages (during hibernation) or | ||
| 1043 | * hibernation image pages (during restore) | ||
| 1044 | */ | ||
| 1045 | static struct memory_bitmap orig_bm; | ||
| 1046 | /* | ||
| 1047 | * Memory bitmap used during hibernation for marking allocated page frames that | ||
| 1048 | * will contain copies of saveable pages. During restore it is initially used | ||
| 1049 | * for marking hibernation image pages, but then the set bits from it are | ||
| 1050 | * duplicated in @orig_bm and it is released. On highmem systems it is next | ||
| 1051 | * used for marking "safe" highmem pages, but it has to be reinitialized for | ||
| 1052 | * this purpose. | ||
| 1053 | */ | ||
| 1054 | static struct memory_bitmap copy_bm; | ||
| 1036 | 1055 | ||
| 1037 | /** | 1056 | /** |
| 1038 | * swsusp_free - free pages allocated for the suspend. | 1057 | * swsusp_free - free pages allocated for the suspend. |
| @@ -1046,7 +1065,7 @@ void swsusp_free(void) | |||
| 1046 | struct zone *zone; | 1065 | struct zone *zone; |
| 1047 | unsigned long pfn, max_zone_pfn; | 1066 | unsigned long pfn, max_zone_pfn; |
| 1048 | 1067 | ||
| 1049 | for_each_zone(zone) { | 1068 | for_each_populated_zone(zone) { |
| 1050 | max_zone_pfn = zone->zone_start_pfn + zone->spanned_pages; | 1069 | max_zone_pfn = zone->zone_start_pfn + zone->spanned_pages; |
| 1051 | for (pfn = zone->zone_start_pfn; pfn < max_zone_pfn; pfn++) | 1070 | for (pfn = zone->zone_start_pfn; pfn < max_zone_pfn; pfn++) |
| 1052 | if (pfn_valid(pfn)) { | 1071 | if (pfn_valid(pfn)) { |
| @@ -1064,74 +1083,286 @@ void swsusp_free(void) | |||
| 1064 | nr_meta_pages = 0; | 1083 | nr_meta_pages = 0; |
| 1065 | restore_pblist = NULL; | 1084 | restore_pblist = NULL; |
| 1066 | buffer = NULL; | 1085 | buffer = NULL; |
| 1086 | alloc_normal = 0; | ||
| 1087 | alloc_highmem = 0; | ||
| 1067 | } | 1088 | } |
| 1068 | 1089 | ||
| 1090 | /* Helper functions used for the shrinking of memory. */ | ||
| 1091 | |||
| 1092 | #define GFP_IMAGE (GFP_KERNEL | __GFP_NOWARN) | ||
| 1093 | |||
| 1069 | /** | 1094 | /** |
| 1070 | * swsusp_shrink_memory - Try to free as much memory as needed | 1095 | * preallocate_image_pages - Allocate a number of pages for hibernation image |
| 1071 | * | 1096 | * @nr_pages: Number of page frames to allocate. |
| 1072 | * ... but do not OOM-kill anyone | 1097 | * @mask: GFP flags to use for the allocation. |
| 1073 | * | 1098 | * |
| 1074 | * Notice: all userland should be stopped before it is called, or | 1099 | * Return value: Number of page frames actually allocated |
| 1075 | * livelock is possible. | 1100 | */ |
| 1101 | static unsigned long preallocate_image_pages(unsigned long nr_pages, gfp_t mask) | ||
| 1102 | { | ||
| 1103 | unsigned long nr_alloc = 0; | ||
| 1104 | |||
| 1105 | while (nr_pages > 0) { | ||
| 1106 | struct page *page; | ||
| 1107 | |||
| 1108 | page = alloc_image_page(mask); | ||
| 1109 | if (!page) | ||
| 1110 | break; | ||
| 1111 | memory_bm_set_bit(©_bm, page_to_pfn(page)); | ||
| 1112 | if (PageHighMem(page)) | ||
| 1113 | alloc_highmem++; | ||
| 1114 | else | ||
| 1115 | alloc_normal++; | ||
| 1116 | nr_pages--; | ||
| 1117 | nr_alloc++; | ||
| 1118 | } | ||
| 1119 | |||
| 1120 | return nr_alloc; | ||
| 1121 | } | ||
| 1122 | |||
| 1123 | static unsigned long preallocate_image_memory(unsigned long nr_pages) | ||
| 1124 | { | ||
| 1125 | return preallocate_image_pages(nr_pages, GFP_IMAGE); | ||
| 1126 | } | ||
| 1127 | |||
| 1128 | #ifdef CONFIG_HIGHMEM | ||
| 1129 | static unsigned long preallocate_image_highmem(unsigned long nr_pages) | ||
| 1130 | { | ||
| 1131 | return preallocate_image_pages(nr_pages, GFP_IMAGE | __GFP_HIGHMEM); | ||
| 1132 | } | ||
| 1133 | |||
| 1134 | /** | ||
| 1135 | * __fraction - Compute (an approximation of) x * (multiplier / base) | ||
| 1076 | */ | 1136 | */ |
| 1137 | static unsigned long __fraction(u64 x, u64 multiplier, u64 base) | ||
| 1138 | { | ||
| 1139 | x *= multiplier; | ||
| 1140 | do_div(x, base); | ||
| 1141 | return (unsigned long)x; | ||
| 1142 | } | ||
| 1143 | |||
| 1144 | static unsigned long preallocate_highmem_fraction(unsigned long nr_pages, | ||
| 1145 | unsigned long highmem, | ||
| 1146 | unsigned long total) | ||
| 1147 | { | ||
| 1148 | unsigned long alloc = __fraction(nr_pages, highmem, total); | ||
| 1077 | 1149 | ||
| 1078 | #define SHRINK_BITE 10000 | 1150 | return preallocate_image_pages(alloc, GFP_IMAGE | __GFP_HIGHMEM); |
| 1079 | static inline unsigned long __shrink_memory(long tmp) | 1151 | } |
| 1152 | #else /* CONFIG_HIGHMEM */ | ||
| 1153 | static inline unsigned long preallocate_image_highmem(unsigned long nr_pages) | ||
| 1080 | { | 1154 | { |
| 1081 | if (tmp > SHRINK_BITE) | 1155 | return 0; |
| 1082 | tmp = SHRINK_BITE; | ||
| 1083 | return shrink_all_memory(tmp); | ||
| 1084 | } | 1156 | } |
| 1085 | 1157 | ||
| 1086 | int swsusp_shrink_memory(void) | 1158 | static inline unsigned long preallocate_highmem_fraction(unsigned long nr_pages, |
| 1159 | unsigned long highmem, | ||
| 1160 | unsigned long total) | ||
| 1161 | { | ||
| 1162 | return 0; | ||
| 1163 | } | ||
| 1164 | #endif /* CONFIG_HIGHMEM */ | ||
| 1165 | |||
| 1166 | /** | ||
| 1167 | * free_unnecessary_pages - Release preallocated pages not needed for the image | ||
| 1168 | */ | ||
| 1169 | static void free_unnecessary_pages(void) | ||
| 1170 | { | ||
| 1171 | unsigned long save_highmem, to_free_normal, to_free_highmem; | ||
| 1172 | |||
| 1173 | to_free_normal = alloc_normal - count_data_pages(); | ||
| 1174 | save_highmem = count_highmem_pages(); | ||
| 1175 | if (alloc_highmem > save_highmem) { | ||
| 1176 | to_free_highmem = alloc_highmem - save_highmem; | ||
| 1177 | } else { | ||
| 1178 | to_free_highmem = 0; | ||
| 1179 | to_free_normal -= save_highmem - alloc_highmem; | ||
| 1180 | } | ||
| 1181 | |||
| 1182 | memory_bm_position_reset(©_bm); | ||
| 1183 | |||
| 1184 | while (to_free_normal > 0 && to_free_highmem > 0) { | ||
| 1185 | unsigned long pfn = memory_bm_next_pfn(©_bm); | ||
| 1186 | struct page *page = pfn_to_page(pfn); | ||
| 1187 | |||
| 1188 | if (PageHighMem(page)) { | ||
| 1189 | if (!to_free_highmem) | ||
| 1190 | continue; | ||
| 1191 | to_free_highmem--; | ||
| 1192 | alloc_highmem--; | ||
| 1193 | } else { | ||
| 1194 | if (!to_free_normal) | ||
| 1195 | continue; | ||
| 1196 | to_free_normal--; | ||
| 1197 | alloc_normal--; | ||
| 1198 | } | ||
| 1199 | memory_bm_clear_bit(©_bm, pfn); | ||
| 1200 | swsusp_unset_page_forbidden(page); | ||
| 1201 | swsusp_unset_page_free(page); | ||
| 1202 | __free_page(page); | ||
| 1203 | } | ||
| 1204 | } | ||
| 1205 | |||
| 1206 | /** | ||
| 1207 | * minimum_image_size - Estimate the minimum acceptable size of an image | ||
| 1208 | * @saveable: Number of saveable pages in the system. | ||
| 1209 | * | ||
| 1210 | * We want to avoid attempting to free too much memory too hard, so estimate the | ||
| 1211 | * minimum acceptable size of a hibernation image to use as the lower limit for | ||
| 1212 | * preallocating memory. | ||
| 1213 | * | ||
| 1214 | * We assume that the minimum image size should be proportional to | ||
| 1215 | * | ||
| 1216 | * [number of saveable pages] - [number of pages that can be freed in theory] | ||
| 1217 | * | ||
| 1218 | * where the second term is the sum of (1) reclaimable slab pages, (2) active | ||
| 1219 | * and (3) inactive anonymouns pages, (4) active and (5) inactive file pages, | ||
| 1220 | * minus mapped file pages. | ||
| 1221 | */ | ||
| 1222 | static unsigned long minimum_image_size(unsigned long saveable) | ||
| 1223 | { | ||
| 1224 | unsigned long size; | ||
| 1225 | |||
| 1226 | size = global_page_state(NR_SLAB_RECLAIMABLE) | ||
| 1227 | + global_page_state(NR_ACTIVE_ANON) | ||
| 1228 | + global_page_state(NR_INACTIVE_ANON) | ||
| 1229 | + global_page_state(NR_ACTIVE_FILE) | ||
| 1230 | + global_page_state(NR_INACTIVE_FILE) | ||
| 1231 | - global_page_state(NR_FILE_MAPPED); | ||
| 1232 | |||
| 1233 | return saveable <= size ? 0 : saveable - size; | ||
| 1234 | } | ||
| 1235 | |||
| 1236 | /** | ||
| 1237 | * hibernate_preallocate_memory - Preallocate memory for hibernation image | ||
| 1238 | * | ||
| 1239 | * To create a hibernation image it is necessary to make a copy of every page | ||
| 1240 | * frame in use. We also need a number of page frames to be free during | ||
| 1241 | * hibernation for allocations made while saving the image and for device | ||
| 1242 | * drivers, in case they need to allocate memory from their hibernation | ||
| 1243 | * callbacks (these two numbers are given by PAGES_FOR_IO and SPARE_PAGES, | ||
| 1244 | * respectively, both of which are rough estimates). To make this happen, we | ||
| 1245 | * compute the total number of available page frames and allocate at least | ||
| 1246 | * | ||
| 1247 | * ([page frames total] + PAGES_FOR_IO + [metadata pages]) / 2 + 2 * SPARE_PAGES | ||
| 1248 | * | ||
| 1249 | * of them, which corresponds to the maximum size of a hibernation image. | ||
| 1250 | * | ||
| 1251 | * If image_size is set below the number following from the above formula, | ||
| 1252 | * the preallocation of memory is continued until the total number of saveable | ||
| 1253 | * pages in the system is below the requested image size or the minimum | ||
| 1254 | * acceptable image size returned by minimum_image_size(), whichever is greater. | ||
| 1255 | */ | ||
| 1256 | int hibernate_preallocate_memory(void) | ||
| 1087 | { | 1257 | { |
| 1088 | long tmp; | ||
| 1089 | struct zone *zone; | 1258 | struct zone *zone; |
| 1090 | unsigned long pages = 0; | 1259 | unsigned long saveable, size, max_size, count, highmem, pages = 0; |
| 1091 | unsigned int i = 0; | 1260 | unsigned long alloc, save_highmem, pages_highmem; |
| 1092 | char *p = "-\\|/"; | ||
| 1093 | struct timeval start, stop; | 1261 | struct timeval start, stop; |
| 1262 | int error; | ||
| 1094 | 1263 | ||
| 1095 | printk(KERN_INFO "PM: Shrinking memory... "); | 1264 | printk(KERN_INFO "PM: Preallocating image memory... "); |
| 1096 | do_gettimeofday(&start); | 1265 | do_gettimeofday(&start); |
| 1097 | do { | ||
| 1098 | long size, highmem_size; | ||
| 1099 | |||
| 1100 | highmem_size = count_highmem_pages(); | ||
| 1101 | size = count_data_pages() + PAGES_FOR_IO + SPARE_PAGES; | ||
| 1102 | tmp = size; | ||
| 1103 | size += highmem_size; | ||
| 1104 | for_each_populated_zone(zone) { | ||
| 1105 | tmp += snapshot_additional_pages(zone); | ||
| 1106 | if (is_highmem(zone)) { | ||
| 1107 | highmem_size -= | ||
| 1108 | zone_page_state(zone, NR_FREE_PAGES); | ||
| 1109 | } else { | ||
| 1110 | tmp -= zone_page_state(zone, NR_FREE_PAGES); | ||
| 1111 | tmp += zone->lowmem_reserve[ZONE_NORMAL]; | ||
| 1112 | } | ||
| 1113 | } | ||
| 1114 | 1266 | ||
| 1115 | if (highmem_size < 0) | 1267 | error = memory_bm_create(&orig_bm, GFP_IMAGE, PG_ANY); |
| 1116 | highmem_size = 0; | 1268 | if (error) |
| 1269 | goto err_out; | ||
| 1117 | 1270 | ||
| 1118 | tmp += highmem_size; | 1271 | error = memory_bm_create(©_bm, GFP_IMAGE, PG_ANY); |
| 1119 | if (tmp > 0) { | 1272 | if (error) |
| 1120 | tmp = __shrink_memory(tmp); | 1273 | goto err_out; |
| 1121 | if (!tmp) | 1274 | |
| 1122 | return -ENOMEM; | 1275 | alloc_normal = 0; |
| 1123 | pages += tmp; | 1276 | alloc_highmem = 0; |
| 1124 | } else if (size > image_size / PAGE_SIZE) { | 1277 | |
| 1125 | tmp = __shrink_memory(size - (image_size / PAGE_SIZE)); | 1278 | /* Count the number of saveable data pages. */ |
| 1126 | pages += tmp; | 1279 | save_highmem = count_highmem_pages(); |
| 1127 | } | 1280 | saveable = count_data_pages(); |
| 1128 | printk("\b%c", p[i++%4]); | 1281 | |
| 1129 | } while (tmp > 0); | 1282 | /* |
| 1283 | * Compute the total number of page frames we can use (count) and the | ||
| 1284 | * number of pages needed for image metadata (size). | ||
| 1285 | */ | ||
| 1286 | count = saveable; | ||
| 1287 | saveable += save_highmem; | ||
| 1288 | highmem = save_highmem; | ||
| 1289 | size = 0; | ||
| 1290 | for_each_populated_zone(zone) { | ||
| 1291 | size += snapshot_additional_pages(zone); | ||
| 1292 | if (is_highmem(zone)) | ||
| 1293 | highmem += zone_page_state(zone, NR_FREE_PAGES); | ||
| 1294 | else | ||
| 1295 | count += zone_page_state(zone, NR_FREE_PAGES); | ||
| 1296 | } | ||
| 1297 | count += highmem; | ||
| 1298 | count -= totalreserve_pages; | ||
| 1299 | |||
| 1300 | /* Compute the maximum number of saveable pages to leave in memory. */ | ||
| 1301 | max_size = (count - (size + PAGES_FOR_IO)) / 2 - 2 * SPARE_PAGES; | ||
| 1302 | size = DIV_ROUND_UP(image_size, PAGE_SIZE); | ||
| 1303 | if (size > max_size) | ||
| 1304 | size = max_size; | ||
| 1305 | /* | ||
| 1306 | * If the maximum is not less than the current number of saveable pages | ||
| 1307 | * in memory, allocate page frames for the image and we're done. | ||
| 1308 | */ | ||
| 1309 | if (size >= saveable) { | ||
| 1310 | pages = preallocate_image_highmem(save_highmem); | ||
| 1311 | pages += preallocate_image_memory(saveable - pages); | ||
| 1312 | goto out; | ||
| 1313 | } | ||
| 1314 | |||
| 1315 | /* Estimate the minimum size of the image. */ | ||
| 1316 | pages = minimum_image_size(saveable); | ||
| 1317 | if (size < pages) | ||
| 1318 | size = min_t(unsigned long, pages, max_size); | ||
| 1319 | |||
| 1320 | /* | ||
| 1321 | * Let the memory management subsystem know that we're going to need a | ||
| 1322 | * large number of page frames to allocate and make it free some memory. | ||
| 1323 | * NOTE: If this is not done, performance will be hurt badly in some | ||
| 1324 | * test cases. | ||
| 1325 | */ | ||
| 1326 | shrink_all_memory(saveable - size); | ||
| 1327 | |||
| 1328 | /* | ||
| 1329 | * The number of saveable pages in memory was too high, so apply some | ||
| 1330 | * pressure to decrease it. First, make room for the largest possible | ||
| 1331 | * image and fail if that doesn't work. Next, try to decrease the size | ||
| 1332 | * of the image as much as indicated by 'size' using allocations from | ||
| 1333 | * highmem and non-highmem zones separately. | ||
| 1334 | */ | ||
| 1335 | pages_highmem = preallocate_image_highmem(highmem / 2); | ||
| 1336 | alloc = (count - max_size) - pages_highmem; | ||
| 1337 | pages = preallocate_image_memory(alloc); | ||
| 1338 | if (pages < alloc) | ||
| 1339 | goto err_out; | ||
| 1340 | size = max_size - size; | ||
| 1341 | alloc = size; | ||
| 1342 | size = preallocate_highmem_fraction(size, highmem, count); | ||
| 1343 | pages_highmem += size; | ||
| 1344 | alloc -= size; | ||
| 1345 | pages += preallocate_image_memory(alloc); | ||
| 1346 | pages += pages_highmem; | ||
| 1347 | |||
| 1348 | /* | ||
| 1349 | * We only need as many page frames for the image as there are saveable | ||
| 1350 | * pages in memory, but we have allocated more. Release the excessive | ||
| 1351 | * ones now. | ||
| 1352 | */ | ||
| 1353 | free_unnecessary_pages(); | ||
| 1354 | |||
| 1355 | out: | ||
| 1130 | do_gettimeofday(&stop); | 1356 | do_gettimeofday(&stop); |
| 1131 | printk("\bdone (%lu pages freed)\n", pages); | 1357 | printk(KERN_CONT "done (allocated %lu pages)\n", pages); |
| 1132 | swsusp_show_speed(&start, &stop, pages, "Freed"); | 1358 | swsusp_show_speed(&start, &stop, pages, "Allocated"); |
| 1133 | 1359 | ||
| 1134 | return 0; | 1360 | return 0; |
| 1361 | |||
| 1362 | err_out: | ||
| 1363 | printk(KERN_CONT "\n"); | ||
| 1364 | swsusp_free(); | ||
| 1365 | return -ENOMEM; | ||
| 1135 | } | 1366 | } |
| 1136 | 1367 | ||
| 1137 | #ifdef CONFIG_HIGHMEM | 1368 | #ifdef CONFIG_HIGHMEM |
| @@ -1142,7 +1373,7 @@ int swsusp_shrink_memory(void) | |||
| 1142 | 1373 | ||
| 1143 | static unsigned int count_pages_for_highmem(unsigned int nr_highmem) | 1374 | static unsigned int count_pages_for_highmem(unsigned int nr_highmem) |
| 1144 | { | 1375 | { |
| 1145 | unsigned int free_highmem = count_free_highmem_pages(); | 1376 | unsigned int free_highmem = count_free_highmem_pages() + alloc_highmem; |
| 1146 | 1377 | ||
| 1147 | if (free_highmem >= nr_highmem) | 1378 | if (free_highmem >= nr_highmem) |
| 1148 | nr_highmem = 0; | 1379 | nr_highmem = 0; |
| @@ -1164,19 +1395,17 @@ count_pages_for_highmem(unsigned int nr_highmem) { return 0; } | |||
| 1164 | static int enough_free_mem(unsigned int nr_pages, unsigned int nr_highmem) | 1395 | static int enough_free_mem(unsigned int nr_pages, unsigned int nr_highmem) |
| 1165 | { | 1396 | { |
| 1166 | struct zone *zone; | 1397 | struct zone *zone; |
| 1167 | unsigned int free = 0, meta = 0; | 1398 | unsigned int free = alloc_normal; |
| 1168 | 1399 | ||
| 1169 | for_each_zone(zone) { | 1400 | for_each_populated_zone(zone) |
| 1170 | meta += snapshot_additional_pages(zone); | ||
| 1171 | if (!is_highmem(zone)) | 1401 | if (!is_highmem(zone)) |
| 1172 | free += zone_page_state(zone, NR_FREE_PAGES); | 1402 | free += zone_page_state(zone, NR_FREE_PAGES); |
| 1173 | } | ||
| 1174 | 1403 | ||
| 1175 | nr_pages += count_pages_for_highmem(nr_highmem); | 1404 | nr_pages += count_pages_for_highmem(nr_highmem); |
| 1176 | pr_debug("PM: Normal pages needed: %u + %u + %u, available pages: %u\n", | 1405 | pr_debug("PM: Normal pages needed: %u + %u, available pages: %u\n", |
| 1177 | nr_pages, PAGES_FOR_IO, meta, free); | 1406 | nr_pages, PAGES_FOR_IO, free); |
| 1178 | 1407 | ||
| 1179 | return free > nr_pages + PAGES_FOR_IO + meta; | 1408 | return free > nr_pages + PAGES_FOR_IO; |
| 1180 | } | 1409 | } |
| 1181 | 1410 | ||
| 1182 | #ifdef CONFIG_HIGHMEM | 1411 | #ifdef CONFIG_HIGHMEM |
| @@ -1198,7 +1427,7 @@ static inline int get_highmem_buffer(int safe_needed) | |||
| 1198 | */ | 1427 | */ |
| 1199 | 1428 | ||
| 1200 | static inline unsigned int | 1429 | static inline unsigned int |
| 1201 | alloc_highmem_image_pages(struct memory_bitmap *bm, unsigned int nr_highmem) | 1430 | alloc_highmem_pages(struct memory_bitmap *bm, unsigned int nr_highmem) |
| 1202 | { | 1431 | { |
| 1203 | unsigned int to_alloc = count_free_highmem_pages(); | 1432 | unsigned int to_alloc = count_free_highmem_pages(); |
| 1204 | 1433 | ||
| @@ -1218,7 +1447,7 @@ alloc_highmem_image_pages(struct memory_bitmap *bm, unsigned int nr_highmem) | |||
| 1218 | static inline int get_highmem_buffer(int safe_needed) { return 0; } | 1447 | static inline int get_highmem_buffer(int safe_needed) { return 0; } |
| 1219 | 1448 | ||
| 1220 | static inline unsigned int | 1449 | static inline unsigned int |
| 1221 | alloc_highmem_image_pages(struct memory_bitmap *bm, unsigned int n) { return 0; } | 1450 | alloc_highmem_pages(struct memory_bitmap *bm, unsigned int n) { return 0; } |
| 1222 | #endif /* CONFIG_HIGHMEM */ | 1451 | #endif /* CONFIG_HIGHMEM */ |
| 1223 | 1452 | ||
| 1224 | /** | 1453 | /** |
| @@ -1237,51 +1466,36 @@ static int | |||
| 1237 | swsusp_alloc(struct memory_bitmap *orig_bm, struct memory_bitmap *copy_bm, | 1466 | swsusp_alloc(struct memory_bitmap *orig_bm, struct memory_bitmap *copy_bm, |
| 1238 | unsigned int nr_pages, unsigned int nr_highmem) | 1467 | unsigned int nr_pages, unsigned int nr_highmem) |
| 1239 | { | 1468 | { |
| 1240 | int error; | 1469 | int error = 0; |
| 1241 | |||
| 1242 | error = memory_bm_create(orig_bm, GFP_ATOMIC | __GFP_COLD, PG_ANY); | ||
| 1243 | if (error) | ||
| 1244 | goto Free; | ||
| 1245 | |||
| 1246 | error = memory_bm_create(copy_bm, GFP_ATOMIC | __GFP_COLD, PG_ANY); | ||
| 1247 | if (error) | ||
| 1248 | goto Free; | ||
| 1249 | 1470 | ||
| 1250 | if (nr_highmem > 0) { | 1471 | if (nr_highmem > 0) { |
| 1251 | error = get_highmem_buffer(PG_ANY); | 1472 | error = get_highmem_buffer(PG_ANY); |
| 1252 | if (error) | 1473 | if (error) |
| 1253 | goto Free; | 1474 | goto err_out; |
| 1254 | 1475 | if (nr_highmem > alloc_highmem) { | |
| 1255 | nr_pages += alloc_highmem_image_pages(copy_bm, nr_highmem); | 1476 | nr_highmem -= alloc_highmem; |
| 1477 | nr_pages += alloc_highmem_pages(copy_bm, nr_highmem); | ||
| 1478 | } | ||
| 1256 | } | 1479 | } |
| 1257 | while (nr_pages-- > 0) { | 1480 | if (nr_pages > alloc_normal) { |
| 1258 | struct page *page = alloc_image_page(GFP_ATOMIC | __GFP_COLD); | 1481 | nr_pages -= alloc_normal; |
| 1259 | 1482 | while (nr_pages-- > 0) { | |
| 1260 | if (!page) | 1483 | struct page *page; |
| 1261 | goto Free; | ||
| 1262 | 1484 | ||
| 1263 | memory_bm_set_bit(copy_bm, page_to_pfn(page)); | 1485 | page = alloc_image_page(GFP_ATOMIC | __GFP_COLD); |
| 1486 | if (!page) | ||
| 1487 | goto err_out; | ||
| 1488 | memory_bm_set_bit(copy_bm, page_to_pfn(page)); | ||
| 1489 | } | ||
| 1264 | } | 1490 | } |
| 1491 | |||
| 1265 | return 0; | 1492 | return 0; |
| 1266 | 1493 | ||
| 1267 | Free: | 1494 | err_out: |
| 1268 | swsusp_free(); | 1495 | swsusp_free(); |
| 1269 | return -ENOMEM; | 1496 | return error; |
| 1270 | } | 1497 | } |
| 1271 | 1498 | ||
| 1272 | /* Memory bitmap used for marking saveable pages (during suspend) or the | ||
| 1273 | * suspend image pages (during resume) | ||
| 1274 | */ | ||
| 1275 | static struct memory_bitmap orig_bm; | ||
| 1276 | /* Memory bitmap used on suspend for marking allocated pages that will contain | ||
| 1277 | * the copies of saveable pages. During resume it is initially used for | ||
| 1278 | * marking the suspend image pages, but then its set bits are duplicated in | ||
| 1279 | * @orig_bm and it is released. Next, on systems with high memory, it may be | ||
| 1280 | * used for marking "safe" highmem pages, but it has to be reinitialized for | ||
| 1281 | * this purpose. | ||
| 1282 | */ | ||
| 1283 | static struct memory_bitmap copy_bm; | ||
| 1284 | |||
| 1285 | asmlinkage int swsusp_save(void) | 1499 | asmlinkage int swsusp_save(void) |
| 1286 | { | 1500 | { |
| 1287 | unsigned int nr_pages, nr_highmem; | 1501 | unsigned int nr_pages, nr_highmem; |
| @@ -1474,7 +1688,7 @@ static int mark_unsafe_pages(struct memory_bitmap *bm) | |||
| 1474 | unsigned long pfn, max_zone_pfn; | 1688 | unsigned long pfn, max_zone_pfn; |
| 1475 | 1689 | ||
| 1476 | /* Clear page flags */ | 1690 | /* Clear page flags */ |
| 1477 | for_each_zone(zone) { | 1691 | for_each_populated_zone(zone) { |
| 1478 | max_zone_pfn = zone->zone_start_pfn + zone->spanned_pages; | 1692 | max_zone_pfn = zone->zone_start_pfn + zone->spanned_pages; |
| 1479 | for (pfn = zone->zone_start_pfn; pfn < max_zone_pfn; pfn++) | 1693 | for (pfn = zone->zone_start_pfn; pfn < max_zone_pfn; pfn++) |
| 1480 | if (pfn_valid(pfn)) | 1694 | if (pfn_valid(pfn)) |
