Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 1 | /* |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 2 | * drivers/base/power/runtime.c - Helper functions for device runtime PM |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 3 | * |
| 4 | * Copyright (c) 2009 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc. |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 5 | * Copyright (C) 2010 Alan Stern <stern@rowland.harvard.edu> |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 6 | * |
| 7 | * This file is released under the GPLv2. |
| 8 | */ |
| 9 | |
| 10 | #include <linux/sched.h> |
| 11 | #include <linux/pm_runtime.h> |
Ming Lei | c3dc2f1 | 2011-09-27 22:54:41 +0200 | [diff] [blame] | 12 | #include <trace/events/rpm.h> |
Alan Stern | 7490e44 | 2010-09-25 23:35:15 +0200 | [diff] [blame] | 13 | #include "power.h" |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 14 | |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 15 | static int rpm_resume(struct device *dev, int rpmflags); |
Alan Stern | 7490e44 | 2010-09-25 23:35:15 +0200 | [diff] [blame] | 16 | static int rpm_suspend(struct device *dev, int rpmflags); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 17 | |
| 18 | /** |
Alan Stern | 4769373 | 2010-09-25 23:34:46 +0200 | [diff] [blame] | 19 | * update_pm_runtime_accounting - Update the time accounting of power states |
| 20 | * @dev: Device to update the accounting for |
| 21 | * |
| 22 | * In order to be able to have time accounting of the various power states |
| 23 | * (as used by programs such as PowerTOP to show the effectiveness of runtime |
| 24 | * PM), we need to track the time spent in each state. |
| 25 | * update_pm_runtime_accounting must be called each time before the |
| 26 | * runtime_status field is updated, to account the time in the old state |
| 27 | * correctly. |
| 28 | */ |
| 29 | void update_pm_runtime_accounting(struct device *dev) |
| 30 | { |
| 31 | unsigned long now = jiffies; |
| 32 | int delta; |
| 33 | |
| 34 | delta = now - dev->power.accounting_timestamp; |
| 35 | |
| 36 | if (delta < 0) |
| 37 | delta = 0; |
| 38 | |
| 39 | dev->power.accounting_timestamp = now; |
| 40 | |
| 41 | if (dev->power.disable_depth > 0) |
| 42 | return; |
| 43 | |
| 44 | if (dev->power.runtime_status == RPM_SUSPENDED) |
| 45 | dev->power.suspended_jiffies += delta; |
| 46 | else |
| 47 | dev->power.active_jiffies += delta; |
| 48 | } |
| 49 | |
| 50 | static void __update_runtime_status(struct device *dev, enum rpm_status status) |
| 51 | { |
| 52 | update_pm_runtime_accounting(dev); |
| 53 | dev->power.runtime_status = status; |
| 54 | } |
| 55 | |
| 56 | /** |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 57 | * pm_runtime_deactivate_timer - Deactivate given device's suspend timer. |
| 58 | * @dev: Device to handle. |
| 59 | */ |
| 60 | static void pm_runtime_deactivate_timer(struct device *dev) |
| 61 | { |
| 62 | if (dev->power.timer_expires > 0) { |
| 63 | del_timer(&dev->power.suspend_timer); |
| 64 | dev->power.timer_expires = 0; |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * pm_runtime_cancel_pending - Deactivate suspend timer and cancel requests. |
| 70 | * @dev: Device to handle. |
| 71 | */ |
| 72 | static void pm_runtime_cancel_pending(struct device *dev) |
| 73 | { |
| 74 | pm_runtime_deactivate_timer(dev); |
| 75 | /* |
| 76 | * In case there's a request pending, make sure its work function will |
| 77 | * return without doing anything. |
| 78 | */ |
| 79 | dev->power.request = RPM_REQ_NONE; |
| 80 | } |
| 81 | |
Alan Stern | 15bcb91d | 2010-09-25 23:35:21 +0200 | [diff] [blame] | 82 | /* |
| 83 | * pm_runtime_autosuspend_expiration - Get a device's autosuspend-delay expiration time. |
| 84 | * @dev: Device to handle. |
| 85 | * |
| 86 | * Compute the autosuspend-delay expiration time based on the device's |
| 87 | * power.last_busy time. If the delay has already expired or is disabled |
| 88 | * (negative) or the power.use_autosuspend flag isn't set, return 0. |
| 89 | * Otherwise return the expiration time in jiffies (adjusted to be nonzero). |
| 90 | * |
| 91 | * This function may be called either with or without dev->power.lock held. |
| 92 | * Either way it can be racy, since power.last_busy may be updated at any time. |
| 93 | */ |
| 94 | unsigned long pm_runtime_autosuspend_expiration(struct device *dev) |
| 95 | { |
| 96 | int autosuspend_delay; |
| 97 | long elapsed; |
| 98 | unsigned long last_busy; |
| 99 | unsigned long expires = 0; |
| 100 | |
| 101 | if (!dev->power.use_autosuspend) |
| 102 | goto out; |
| 103 | |
| 104 | autosuspend_delay = ACCESS_ONCE(dev->power.autosuspend_delay); |
| 105 | if (autosuspend_delay < 0) |
| 106 | goto out; |
| 107 | |
| 108 | last_busy = ACCESS_ONCE(dev->power.last_busy); |
| 109 | elapsed = jiffies - last_busy; |
| 110 | if (elapsed < 0) |
| 111 | goto out; /* jiffies has wrapped around. */ |
| 112 | |
| 113 | /* |
| 114 | * If the autosuspend_delay is >= 1 second, align the timer by rounding |
| 115 | * up to the nearest second. |
| 116 | */ |
| 117 | expires = last_busy + msecs_to_jiffies(autosuspend_delay); |
| 118 | if (autosuspend_delay >= 1000) |
| 119 | expires = round_jiffies(expires); |
| 120 | expires += !expires; |
| 121 | if (elapsed >= expires - last_busy) |
| 122 | expires = 0; /* Already expired. */ |
| 123 | |
| 124 | out: |
| 125 | return expires; |
| 126 | } |
| 127 | EXPORT_SYMBOL_GPL(pm_runtime_autosuspend_expiration); |
| 128 | |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 129 | /** |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 130 | * rpm_check_suspend_allowed - Test whether a device may be suspended. |
| 131 | * @dev: Device to test. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 132 | */ |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 133 | static int rpm_check_suspend_allowed(struct device *dev) |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 134 | { |
| 135 | int retval = 0; |
| 136 | |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 137 | if (dev->power.runtime_error) |
| 138 | retval = -EINVAL; |
Rafael J. Wysocki | 632e270 | 2011-07-01 22:29:15 +0200 | [diff] [blame] | 139 | else if (dev->power.disable_depth > 0) |
| 140 | retval = -EACCES; |
| 141 | else if (atomic_read(&dev->power.usage_count) > 0) |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 142 | retval = -EAGAIN; |
| 143 | else if (!pm_children_suspended(dev)) |
| 144 | retval = -EBUSY; |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 145 | |
| 146 | /* Pending resume requests take precedence over suspends. */ |
| 147 | else if ((dev->power.deferred_resume |
Kevin Winchester | 78ca7c3 | 2010-10-29 15:29:55 +0200 | [diff] [blame] | 148 | && dev->power.runtime_status == RPM_SUSPENDING) |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 149 | || (dev->power.request_pending |
| 150 | && dev->power.request == RPM_REQ_RESUME)) |
| 151 | retval = -EAGAIN; |
| 152 | else if (dev->power.runtime_status == RPM_SUSPENDED) |
| 153 | retval = 1; |
| 154 | |
| 155 | return retval; |
| 156 | } |
| 157 | |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 158 | /** |
Rafael J. Wysocki | ad3c36a | 2011-09-27 21:54:52 +0200 | [diff] [blame] | 159 | * __rpm_callback - Run a given runtime PM callback for a given device. |
| 160 | * @cb: Runtime PM callback to run. |
| 161 | * @dev: Device to run the callback for. |
| 162 | */ |
| 163 | static int __rpm_callback(int (*cb)(struct device *), struct device *dev) |
| 164 | __releases(&dev->power.lock) __acquires(&dev->power.lock) |
| 165 | { |
| 166 | int retval; |
| 167 | |
| 168 | if (dev->power.irq_safe) |
| 169 | spin_unlock(&dev->power.lock); |
| 170 | else |
| 171 | spin_unlock_irq(&dev->power.lock); |
| 172 | |
| 173 | retval = cb(dev); |
| 174 | |
| 175 | if (dev->power.irq_safe) |
| 176 | spin_lock(&dev->power.lock); |
| 177 | else |
| 178 | spin_lock_irq(&dev->power.lock); |
| 179 | |
| 180 | return retval; |
| 181 | } |
| 182 | |
| 183 | /** |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 184 | * rpm_idle - Notify device bus type if the device can be suspended. |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 185 | * @dev: Device to notify the bus type about. |
| 186 | * @rpmflags: Flag bits. |
| 187 | * |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 188 | * Check if the device's runtime PM status allows it to be suspended. If |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 189 | * another idle notification has been started earlier, return immediately. If |
| 190 | * the RPM_ASYNC flag is set then queue an idle-notification request; otherwise |
| 191 | * run the ->runtime_idle() callback directly. |
| 192 | * |
| 193 | * This function must be called under dev->power.lock with interrupts disabled. |
| 194 | */ |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 195 | static int rpm_idle(struct device *dev, int rpmflags) |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 196 | { |
Rafael J. Wysocki | 71c6312 | 2010-10-04 22:08:01 +0200 | [diff] [blame] | 197 | int (*callback)(struct device *); |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 198 | int retval; |
| 199 | |
Ming Lei | c3dc2f1 | 2011-09-27 22:54:41 +0200 | [diff] [blame] | 200 | trace_rpm_idle(dev, rpmflags); |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 201 | retval = rpm_check_suspend_allowed(dev); |
| 202 | if (retval < 0) |
| 203 | ; /* Conditions are wrong. */ |
| 204 | |
| 205 | /* Idle notifications are allowed only in the RPM_ACTIVE state. */ |
| 206 | else if (dev->power.runtime_status != RPM_ACTIVE) |
| 207 | retval = -EAGAIN; |
| 208 | |
| 209 | /* |
| 210 | * Any pending request other than an idle notification takes |
| 211 | * precedence over us, except that the timer may be running. |
| 212 | */ |
| 213 | else if (dev->power.request_pending && |
| 214 | dev->power.request > RPM_REQ_IDLE) |
| 215 | retval = -EAGAIN; |
| 216 | |
| 217 | /* Act as though RPM_NOWAIT is always set. */ |
| 218 | else if (dev->power.idle_notification) |
| 219 | retval = -EINPROGRESS; |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 220 | if (retval) |
| 221 | goto out; |
| 222 | |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 223 | /* Pending requests need to be canceled. */ |
| 224 | dev->power.request = RPM_REQ_NONE; |
| 225 | |
Alan Stern | 7490e44 | 2010-09-25 23:35:15 +0200 | [diff] [blame] | 226 | if (dev->power.no_callbacks) { |
| 227 | /* Assume ->runtime_idle() callback would have suspended. */ |
| 228 | retval = rpm_suspend(dev, rpmflags); |
| 229 | goto out; |
| 230 | } |
| 231 | |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 232 | /* Carry out an asynchronous or a synchronous idle notification. */ |
| 233 | if (rpmflags & RPM_ASYNC) { |
| 234 | dev->power.request = RPM_REQ_IDLE; |
| 235 | if (!dev->power.request_pending) { |
| 236 | dev->power.request_pending = true; |
| 237 | queue_work(pm_wq, &dev->power.work); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 238 | } |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 239 | goto out; |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 240 | } |
| 241 | |
| 242 | dev->power.idle_notification = true; |
| 243 | |
Rafael J. Wysocki | 564b905 | 2011-06-23 01:52:55 +0200 | [diff] [blame] | 244 | if (dev->pm_domain) |
| 245 | callback = dev->pm_domain->ops.runtime_idle; |
Rafael J. Wysocki | 4d27e9d | 2011-04-29 00:35:50 +0200 | [diff] [blame] | 246 | else if (dev->type && dev->type->pm) |
Rafael J. Wysocki | 71c6312 | 2010-10-04 22:08:01 +0200 | [diff] [blame] | 247 | callback = dev->type->pm->runtime_idle; |
| 248 | else if (dev->class && dev->class->pm) |
| 249 | callback = dev->class->pm->runtime_idle; |
Rafael J. Wysocki | 9659cc0 | 2011-02-18 23:20:21 +0100 | [diff] [blame] | 250 | else if (dev->bus && dev->bus->pm) |
| 251 | callback = dev->bus->pm->runtime_idle; |
Rafael J. Wysocki | 71c6312 | 2010-10-04 22:08:01 +0200 | [diff] [blame] | 252 | else |
| 253 | callback = NULL; |
| 254 | |
Rafael J. Wysocki | ad3c36a | 2011-09-27 21:54:52 +0200 | [diff] [blame] | 255 | if (callback) |
| 256 | __rpm_callback(callback, dev); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 257 | |
| 258 | dev->power.idle_notification = false; |
| 259 | wake_up_all(&dev->power.wait_queue); |
| 260 | |
| 261 | out: |
Ming Lei | c3dc2f1 | 2011-09-27 22:54:41 +0200 | [diff] [blame] | 262 | trace_rpm_return_int(dev, _THIS_IP_, retval); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 263 | return retval; |
| 264 | } |
| 265 | |
| 266 | /** |
Rafael J. Wysocki | 71c6312 | 2010-10-04 22:08:01 +0200 | [diff] [blame] | 267 | * rpm_callback - Run a given runtime PM callback for a given device. |
| 268 | * @cb: Runtime PM callback to run. |
| 269 | * @dev: Device to run the callback for. |
| 270 | */ |
| 271 | static int rpm_callback(int (*cb)(struct device *), struct device *dev) |
Rafael J. Wysocki | 71c6312 | 2010-10-04 22:08:01 +0200 | [diff] [blame] | 272 | { |
| 273 | int retval; |
| 274 | |
| 275 | if (!cb) |
| 276 | return -ENOSYS; |
| 277 | |
Rafael J. Wysocki | ad3c36a | 2011-09-27 21:54:52 +0200 | [diff] [blame] | 278 | retval = __rpm_callback(cb, dev); |
Rafael J. Wysocki | 71c6312 | 2010-10-04 22:08:01 +0200 | [diff] [blame] | 279 | |
Rafael J. Wysocki | 71c6312 | 2010-10-04 22:08:01 +0200 | [diff] [blame] | 280 | dev->power.runtime_error = retval; |
Rafael J. Wysocki | 632e270 | 2011-07-01 22:29:15 +0200 | [diff] [blame] | 281 | return retval != -EACCES ? retval : -EIO; |
Rafael J. Wysocki | 71c6312 | 2010-10-04 22:08:01 +0200 | [diff] [blame] | 282 | } |
| 283 | |
| 284 | /** |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 285 | * rpm_suspend - Carry out runtime suspend of given device. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 286 | * @dev: Device to suspend. |
Alan Stern | 3f9af051 | 2010-09-25 23:34:54 +0200 | [diff] [blame] | 287 | * @rpmflags: Flag bits. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 288 | * |
Ming Lei | 47d8f0b | 2011-10-12 11:53:32 +0800 | [diff] [blame^] | 289 | * Check if the device's runtime PM status allows it to be suspended. |
| 290 | * Cancel a pending idle notification, autosuspend or suspend. If |
| 291 | * another suspend has been started earlier, either return immediately |
| 292 | * or wait for it to finish, depending on the RPM_NOWAIT and RPM_ASYNC |
| 293 | * flags. If the RPM_ASYNC flag is set then queue a suspend request; |
| 294 | * otherwise run the ->runtime_suspend() callback directly. If a deferred |
| 295 | * resume was requested while the callback was running then carry it out; |
| 296 | * otherwise send an idle notification for its parent (if the suspend |
| 297 | * succeeded and both ignore_children of parent->power and irq_safe of |
| 298 | * dev->power are not set). |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 299 | * |
| 300 | * This function must be called under dev->power.lock with interrupts disabled. |
| 301 | */ |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 302 | static int rpm_suspend(struct device *dev, int rpmflags) |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 303 | __releases(&dev->power.lock) __acquires(&dev->power.lock) |
| 304 | { |
Rafael J. Wysocki | 71c6312 | 2010-10-04 22:08:01 +0200 | [diff] [blame] | 305 | int (*callback)(struct device *); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 306 | struct device *parent = NULL; |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 307 | int retval; |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 308 | |
Ming Lei | c3dc2f1 | 2011-09-27 22:54:41 +0200 | [diff] [blame] | 309 | trace_rpm_suspend(dev, rpmflags); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 310 | |
| 311 | repeat: |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 312 | retval = rpm_check_suspend_allowed(dev); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 313 | |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 314 | if (retval < 0) |
| 315 | ; /* Conditions are wrong. */ |
| 316 | |
| 317 | /* Synchronous suspends are not allowed in the RPM_RESUMING state. */ |
| 318 | else if (dev->power.runtime_status == RPM_RESUMING && |
| 319 | !(rpmflags & RPM_ASYNC)) |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 320 | retval = -EAGAIN; |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 321 | if (retval) |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 322 | goto out; |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 323 | |
Alan Stern | 15bcb91d | 2010-09-25 23:35:21 +0200 | [diff] [blame] | 324 | /* If the autosuspend_delay time hasn't expired yet, reschedule. */ |
| 325 | if ((rpmflags & RPM_AUTO) |
| 326 | && dev->power.runtime_status != RPM_SUSPENDING) { |
| 327 | unsigned long expires = pm_runtime_autosuspend_expiration(dev); |
| 328 | |
| 329 | if (expires != 0) { |
| 330 | /* Pending requests need to be canceled. */ |
| 331 | dev->power.request = RPM_REQ_NONE; |
| 332 | |
| 333 | /* |
| 334 | * Optimization: If the timer is already running and is |
| 335 | * set to expire at or before the autosuspend delay, |
| 336 | * avoid the overhead of resetting it. Just let it |
| 337 | * expire; pm_suspend_timer_fn() will take care of the |
| 338 | * rest. |
| 339 | */ |
| 340 | if (!(dev->power.timer_expires && time_before_eq( |
| 341 | dev->power.timer_expires, expires))) { |
| 342 | dev->power.timer_expires = expires; |
| 343 | mod_timer(&dev->power.suspend_timer, expires); |
| 344 | } |
| 345 | dev->power.timer_autosuspends = 1; |
| 346 | goto out; |
| 347 | } |
| 348 | } |
| 349 | |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 350 | /* Other scheduled or pending requests need to be canceled. */ |
| 351 | pm_runtime_cancel_pending(dev); |
| 352 | |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 353 | if (dev->power.runtime_status == RPM_SUSPENDING) { |
| 354 | DEFINE_WAIT(wait); |
| 355 | |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 356 | if (rpmflags & (RPM_ASYNC | RPM_NOWAIT)) { |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 357 | retval = -EINPROGRESS; |
| 358 | goto out; |
| 359 | } |
| 360 | |
Rafael J. Wysocki | ad3c36a | 2011-09-27 21:54:52 +0200 | [diff] [blame] | 361 | if (dev->power.irq_safe) { |
| 362 | spin_unlock(&dev->power.lock); |
| 363 | |
| 364 | cpu_relax(); |
| 365 | |
| 366 | spin_lock(&dev->power.lock); |
| 367 | goto repeat; |
| 368 | } |
| 369 | |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 370 | /* Wait for the other suspend running in parallel with us. */ |
| 371 | for (;;) { |
| 372 | prepare_to_wait(&dev->power.wait_queue, &wait, |
| 373 | TASK_UNINTERRUPTIBLE); |
| 374 | if (dev->power.runtime_status != RPM_SUSPENDING) |
| 375 | break; |
| 376 | |
| 377 | spin_unlock_irq(&dev->power.lock); |
| 378 | |
| 379 | schedule(); |
| 380 | |
| 381 | spin_lock_irq(&dev->power.lock); |
| 382 | } |
| 383 | finish_wait(&dev->power.wait_queue, &wait); |
| 384 | goto repeat; |
| 385 | } |
| 386 | |
Alan Stern | 7490e44 | 2010-09-25 23:35:15 +0200 | [diff] [blame] | 387 | dev->power.deferred_resume = false; |
| 388 | if (dev->power.no_callbacks) |
| 389 | goto no_callback; /* Assume success. */ |
| 390 | |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 391 | /* Carry out an asynchronous or a synchronous suspend. */ |
| 392 | if (rpmflags & RPM_ASYNC) { |
Alan Stern | 15bcb91d | 2010-09-25 23:35:21 +0200 | [diff] [blame] | 393 | dev->power.request = (rpmflags & RPM_AUTO) ? |
| 394 | RPM_REQ_AUTOSUSPEND : RPM_REQ_SUSPEND; |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 395 | if (!dev->power.request_pending) { |
| 396 | dev->power.request_pending = true; |
| 397 | queue_work(pm_wq, &dev->power.work); |
| 398 | } |
| 399 | goto out; |
| 400 | } |
| 401 | |
Arjan van de Ven | 8d4b9d1 | 2010-07-19 02:01:06 +0200 | [diff] [blame] | 402 | __update_runtime_status(dev, RPM_SUSPENDING); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 403 | |
Rafael J. Wysocki | 564b905 | 2011-06-23 01:52:55 +0200 | [diff] [blame] | 404 | if (dev->pm_domain) |
| 405 | callback = dev->pm_domain->ops.runtime_suspend; |
Rafael J. Wysocki | 4d27e9d | 2011-04-29 00:35:50 +0200 | [diff] [blame] | 406 | else if (dev->type && dev->type->pm) |
Rafael J. Wysocki | 71c6312 | 2010-10-04 22:08:01 +0200 | [diff] [blame] | 407 | callback = dev->type->pm->runtime_suspend; |
| 408 | else if (dev->class && dev->class->pm) |
| 409 | callback = dev->class->pm->runtime_suspend; |
Rafael J. Wysocki | 9659cc0 | 2011-02-18 23:20:21 +0100 | [diff] [blame] | 410 | else if (dev->bus && dev->bus->pm) |
| 411 | callback = dev->bus->pm->runtime_suspend; |
Rafael J. Wysocki | 71c6312 | 2010-10-04 22:08:01 +0200 | [diff] [blame] | 412 | else |
| 413 | callback = NULL; |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 414 | |
Rafael J. Wysocki | 71c6312 | 2010-10-04 22:08:01 +0200 | [diff] [blame] | 415 | retval = rpm_callback(callback, dev); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 416 | if (retval) { |
Arjan van de Ven | 8d4b9d1 | 2010-07-19 02:01:06 +0200 | [diff] [blame] | 417 | __update_runtime_status(dev, RPM_ACTIVE); |
ShuoX Liu | 2cffff1 | 2011-07-08 20:53:55 +0200 | [diff] [blame] | 418 | dev->power.deferred_resume = false; |
Rafael J. Wysocki | f71648d | 2010-10-11 01:02:27 +0200 | [diff] [blame] | 419 | if (retval == -EAGAIN || retval == -EBUSY) |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 420 | dev->power.runtime_error = 0; |
Rafael J. Wysocki | f71648d | 2010-10-11 01:02:27 +0200 | [diff] [blame] | 421 | else |
Alan Stern | 240c733 | 2010-03-23 00:50:07 +0100 | [diff] [blame] | 422 | pm_runtime_cancel_pending(dev); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 423 | } else { |
Alan Stern | 7490e44 | 2010-09-25 23:35:15 +0200 | [diff] [blame] | 424 | no_callback: |
Arjan van de Ven | 8d4b9d1 | 2010-07-19 02:01:06 +0200 | [diff] [blame] | 425 | __update_runtime_status(dev, RPM_SUSPENDED); |
Alan Stern | 240c733 | 2010-03-23 00:50:07 +0100 | [diff] [blame] | 426 | pm_runtime_deactivate_timer(dev); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 427 | |
| 428 | if (dev->parent) { |
| 429 | parent = dev->parent; |
| 430 | atomic_add_unless(&parent->power.child_count, -1, 0); |
| 431 | } |
| 432 | } |
| 433 | wake_up_all(&dev->power.wait_queue); |
| 434 | |
| 435 | if (dev->power.deferred_resume) { |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 436 | rpm_resume(dev, 0); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 437 | retval = -EAGAIN; |
| 438 | goto out; |
| 439 | } |
| 440 | |
Alan Stern | c3810c8 | 2011-01-25 20:50:07 +0100 | [diff] [blame] | 441 | /* Maybe the parent is now able to suspend. */ |
Alan Stern | c7b61de | 2010-12-01 00:14:42 +0100 | [diff] [blame] | 442 | if (parent && !parent->power.ignore_children && !dev->power.irq_safe) { |
Alan Stern | c3810c8 | 2011-01-25 20:50:07 +0100 | [diff] [blame] | 443 | spin_unlock(&dev->power.lock); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 444 | |
Alan Stern | c3810c8 | 2011-01-25 20:50:07 +0100 | [diff] [blame] | 445 | spin_lock(&parent->power.lock); |
| 446 | rpm_idle(parent, RPM_ASYNC); |
| 447 | spin_unlock(&parent->power.lock); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 448 | |
Alan Stern | c3810c8 | 2011-01-25 20:50:07 +0100 | [diff] [blame] | 449 | spin_lock(&dev->power.lock); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 450 | } |
| 451 | |
| 452 | out: |
Ming Lei | c3dc2f1 | 2011-09-27 22:54:41 +0200 | [diff] [blame] | 453 | trace_rpm_return_int(dev, _THIS_IP_, retval); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 454 | |
| 455 | return retval; |
| 456 | } |
| 457 | |
| 458 | /** |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 459 | * rpm_resume - Carry out runtime resume of given device. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 460 | * @dev: Device to resume. |
Alan Stern | 3f9af051 | 2010-09-25 23:34:54 +0200 | [diff] [blame] | 461 | * @rpmflags: Flag bits. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 462 | * |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 463 | * Check if the device's runtime PM status allows it to be resumed. Cancel |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 464 | * any scheduled or pending requests. If another resume has been started |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 465 | * earlier, either return immediately or wait for it to finish, depending on the |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 466 | * RPM_NOWAIT and RPM_ASYNC flags. Similarly, if there's a suspend running in |
| 467 | * parallel with this function, either tell the other process to resume after |
| 468 | * suspending (deferred_resume) or wait for it to finish. If the RPM_ASYNC |
| 469 | * flag is set then queue a resume request; otherwise run the |
| 470 | * ->runtime_resume() callback directly. Queue an idle notification for the |
| 471 | * device if the resume succeeded. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 472 | * |
| 473 | * This function must be called under dev->power.lock with interrupts disabled. |
| 474 | */ |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 475 | static int rpm_resume(struct device *dev, int rpmflags) |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 476 | __releases(&dev->power.lock) __acquires(&dev->power.lock) |
| 477 | { |
Rafael J. Wysocki | 71c6312 | 2010-10-04 22:08:01 +0200 | [diff] [blame] | 478 | int (*callback)(struct device *); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 479 | struct device *parent = NULL; |
| 480 | int retval = 0; |
| 481 | |
Ming Lei | c3dc2f1 | 2011-09-27 22:54:41 +0200 | [diff] [blame] | 482 | trace_rpm_resume(dev, rpmflags); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 483 | |
| 484 | repeat: |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 485 | if (dev->power.runtime_error) |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 486 | retval = -EINVAL; |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 487 | else if (dev->power.disable_depth > 0) |
Rafael J. Wysocki | 632e270 | 2011-07-01 22:29:15 +0200 | [diff] [blame] | 488 | retval = -EACCES; |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 489 | if (retval) |
| 490 | goto out; |
| 491 | |
Alan Stern | 15bcb91d | 2010-09-25 23:35:21 +0200 | [diff] [blame] | 492 | /* |
| 493 | * Other scheduled or pending requests need to be canceled. Small |
| 494 | * optimization: If an autosuspend timer is running, leave it running |
| 495 | * rather than cancelling it now only to restart it again in the near |
| 496 | * future. |
| 497 | */ |
| 498 | dev->power.request = RPM_REQ_NONE; |
| 499 | if (!dev->power.timer_autosuspends) |
| 500 | pm_runtime_deactivate_timer(dev); |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 501 | |
| 502 | if (dev->power.runtime_status == RPM_ACTIVE) { |
| 503 | retval = 1; |
| 504 | goto out; |
| 505 | } |
| 506 | |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 507 | if (dev->power.runtime_status == RPM_RESUMING |
| 508 | || dev->power.runtime_status == RPM_SUSPENDING) { |
| 509 | DEFINE_WAIT(wait); |
| 510 | |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 511 | if (rpmflags & (RPM_ASYNC | RPM_NOWAIT)) { |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 512 | if (dev->power.runtime_status == RPM_SUSPENDING) |
| 513 | dev->power.deferred_resume = true; |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 514 | else |
| 515 | retval = -EINPROGRESS; |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 516 | goto out; |
| 517 | } |
| 518 | |
Rafael J. Wysocki | ad3c36a | 2011-09-27 21:54:52 +0200 | [diff] [blame] | 519 | if (dev->power.irq_safe) { |
| 520 | spin_unlock(&dev->power.lock); |
| 521 | |
| 522 | cpu_relax(); |
| 523 | |
| 524 | spin_lock(&dev->power.lock); |
| 525 | goto repeat; |
| 526 | } |
| 527 | |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 528 | /* Wait for the operation carried out in parallel with us. */ |
| 529 | for (;;) { |
| 530 | prepare_to_wait(&dev->power.wait_queue, &wait, |
| 531 | TASK_UNINTERRUPTIBLE); |
| 532 | if (dev->power.runtime_status != RPM_RESUMING |
| 533 | && dev->power.runtime_status != RPM_SUSPENDING) |
| 534 | break; |
| 535 | |
| 536 | spin_unlock_irq(&dev->power.lock); |
| 537 | |
| 538 | schedule(); |
| 539 | |
| 540 | spin_lock_irq(&dev->power.lock); |
| 541 | } |
| 542 | finish_wait(&dev->power.wait_queue, &wait); |
| 543 | goto repeat; |
| 544 | } |
| 545 | |
Alan Stern | 7490e44 | 2010-09-25 23:35:15 +0200 | [diff] [blame] | 546 | /* |
| 547 | * See if we can skip waking up the parent. This is safe only if |
| 548 | * power.no_callbacks is set, because otherwise we don't know whether |
| 549 | * the resume will actually succeed. |
| 550 | */ |
| 551 | if (dev->power.no_callbacks && !parent && dev->parent) { |
Ming Lei | d63be5f | 2010-10-22 23:48:14 +0200 | [diff] [blame] | 552 | spin_lock_nested(&dev->parent->power.lock, SINGLE_DEPTH_NESTING); |
Alan Stern | 7490e44 | 2010-09-25 23:35:15 +0200 | [diff] [blame] | 553 | if (dev->parent->power.disable_depth > 0 |
| 554 | || dev->parent->power.ignore_children |
| 555 | || dev->parent->power.runtime_status == RPM_ACTIVE) { |
| 556 | atomic_inc(&dev->parent->power.child_count); |
| 557 | spin_unlock(&dev->parent->power.lock); |
| 558 | goto no_callback; /* Assume success. */ |
| 559 | } |
| 560 | spin_unlock(&dev->parent->power.lock); |
| 561 | } |
| 562 | |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 563 | /* Carry out an asynchronous or a synchronous resume. */ |
| 564 | if (rpmflags & RPM_ASYNC) { |
| 565 | dev->power.request = RPM_REQ_RESUME; |
| 566 | if (!dev->power.request_pending) { |
| 567 | dev->power.request_pending = true; |
| 568 | queue_work(pm_wq, &dev->power.work); |
| 569 | } |
| 570 | retval = 0; |
| 571 | goto out; |
| 572 | } |
| 573 | |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 574 | if (!parent && dev->parent) { |
| 575 | /* |
Alan Stern | c7b61de | 2010-12-01 00:14:42 +0100 | [diff] [blame] | 576 | * Increment the parent's usage counter and resume it if |
| 577 | * necessary. Not needed if dev is irq-safe; then the |
| 578 | * parent is permanently resumed. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 579 | */ |
| 580 | parent = dev->parent; |
Alan Stern | c7b61de | 2010-12-01 00:14:42 +0100 | [diff] [blame] | 581 | if (dev->power.irq_safe) |
| 582 | goto skip_parent; |
Alan Stern | 862f89b | 2009-11-25 01:06:37 +0100 | [diff] [blame] | 583 | spin_unlock(&dev->power.lock); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 584 | |
| 585 | pm_runtime_get_noresume(parent); |
| 586 | |
Alan Stern | 862f89b | 2009-11-25 01:06:37 +0100 | [diff] [blame] | 587 | spin_lock(&parent->power.lock); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 588 | /* |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 589 | * We can resume if the parent's runtime PM is disabled or it |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 590 | * is set to ignore children. |
| 591 | */ |
| 592 | if (!parent->power.disable_depth |
| 593 | && !parent->power.ignore_children) { |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 594 | rpm_resume(parent, 0); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 595 | if (parent->power.runtime_status != RPM_ACTIVE) |
| 596 | retval = -EBUSY; |
| 597 | } |
Alan Stern | 862f89b | 2009-11-25 01:06:37 +0100 | [diff] [blame] | 598 | spin_unlock(&parent->power.lock); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 599 | |
Alan Stern | 862f89b | 2009-11-25 01:06:37 +0100 | [diff] [blame] | 600 | spin_lock(&dev->power.lock); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 601 | if (retval) |
| 602 | goto out; |
| 603 | goto repeat; |
| 604 | } |
Alan Stern | c7b61de | 2010-12-01 00:14:42 +0100 | [diff] [blame] | 605 | skip_parent: |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 606 | |
Alan Stern | 7490e44 | 2010-09-25 23:35:15 +0200 | [diff] [blame] | 607 | if (dev->power.no_callbacks) |
| 608 | goto no_callback; /* Assume success. */ |
| 609 | |
Arjan van de Ven | 8d4b9d1 | 2010-07-19 02:01:06 +0200 | [diff] [blame] | 610 | __update_runtime_status(dev, RPM_RESUMING); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 611 | |
Rafael J. Wysocki | 564b905 | 2011-06-23 01:52:55 +0200 | [diff] [blame] | 612 | if (dev->pm_domain) |
| 613 | callback = dev->pm_domain->ops.runtime_resume; |
Rafael J. Wysocki | 4d27e9d | 2011-04-29 00:35:50 +0200 | [diff] [blame] | 614 | else if (dev->type && dev->type->pm) |
Rafael J. Wysocki | 71c6312 | 2010-10-04 22:08:01 +0200 | [diff] [blame] | 615 | callback = dev->type->pm->runtime_resume; |
| 616 | else if (dev->class && dev->class->pm) |
| 617 | callback = dev->class->pm->runtime_resume; |
Rafael J. Wysocki | 9659cc0 | 2011-02-18 23:20:21 +0100 | [diff] [blame] | 618 | else if (dev->bus && dev->bus->pm) |
| 619 | callback = dev->bus->pm->runtime_resume; |
Rafael J. Wysocki | 71c6312 | 2010-10-04 22:08:01 +0200 | [diff] [blame] | 620 | else |
| 621 | callback = NULL; |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 622 | |
Rafael J. Wysocki | 71c6312 | 2010-10-04 22:08:01 +0200 | [diff] [blame] | 623 | retval = rpm_callback(callback, dev); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 624 | if (retval) { |
Arjan van de Ven | 8d4b9d1 | 2010-07-19 02:01:06 +0200 | [diff] [blame] | 625 | __update_runtime_status(dev, RPM_SUSPENDED); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 626 | pm_runtime_cancel_pending(dev); |
| 627 | } else { |
Alan Stern | 7490e44 | 2010-09-25 23:35:15 +0200 | [diff] [blame] | 628 | no_callback: |
Arjan van de Ven | 8d4b9d1 | 2010-07-19 02:01:06 +0200 | [diff] [blame] | 629 | __update_runtime_status(dev, RPM_ACTIVE); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 630 | if (parent) |
| 631 | atomic_inc(&parent->power.child_count); |
| 632 | } |
| 633 | wake_up_all(&dev->power.wait_queue); |
| 634 | |
| 635 | if (!retval) |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 636 | rpm_idle(dev, RPM_ASYNC); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 637 | |
| 638 | out: |
Alan Stern | c7b61de | 2010-12-01 00:14:42 +0100 | [diff] [blame] | 639 | if (parent && !dev->power.irq_safe) { |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 640 | spin_unlock_irq(&dev->power.lock); |
| 641 | |
| 642 | pm_runtime_put(parent); |
| 643 | |
| 644 | spin_lock_irq(&dev->power.lock); |
| 645 | } |
| 646 | |
Ming Lei | c3dc2f1 | 2011-09-27 22:54:41 +0200 | [diff] [blame] | 647 | trace_rpm_return_int(dev, _THIS_IP_, retval); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 648 | |
| 649 | return retval; |
| 650 | } |
| 651 | |
| 652 | /** |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 653 | * pm_runtime_work - Universal runtime PM work function. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 654 | * @work: Work structure used for scheduling the execution of this function. |
| 655 | * |
| 656 | * Use @work to get the device object the work is to be done for, determine what |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 657 | * is to be done and execute the appropriate runtime PM function. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 658 | */ |
| 659 | static void pm_runtime_work(struct work_struct *work) |
| 660 | { |
| 661 | struct device *dev = container_of(work, struct device, power.work); |
| 662 | enum rpm_request req; |
| 663 | |
| 664 | spin_lock_irq(&dev->power.lock); |
| 665 | |
| 666 | if (!dev->power.request_pending) |
| 667 | goto out; |
| 668 | |
| 669 | req = dev->power.request; |
| 670 | dev->power.request = RPM_REQ_NONE; |
| 671 | dev->power.request_pending = false; |
| 672 | |
| 673 | switch (req) { |
| 674 | case RPM_REQ_NONE: |
| 675 | break; |
| 676 | case RPM_REQ_IDLE: |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 677 | rpm_idle(dev, RPM_NOWAIT); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 678 | break; |
| 679 | case RPM_REQ_SUSPEND: |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 680 | rpm_suspend(dev, RPM_NOWAIT); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 681 | break; |
Alan Stern | 15bcb91d | 2010-09-25 23:35:21 +0200 | [diff] [blame] | 682 | case RPM_REQ_AUTOSUSPEND: |
| 683 | rpm_suspend(dev, RPM_NOWAIT | RPM_AUTO); |
| 684 | break; |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 685 | case RPM_REQ_RESUME: |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 686 | rpm_resume(dev, RPM_NOWAIT); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 687 | break; |
| 688 | } |
| 689 | |
| 690 | out: |
| 691 | spin_unlock_irq(&dev->power.lock); |
| 692 | } |
| 693 | |
| 694 | /** |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 695 | * pm_suspend_timer_fn - Timer function for pm_schedule_suspend(). |
| 696 | * @data: Device pointer passed by pm_schedule_suspend(). |
| 697 | * |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 698 | * Check if the time is right and queue a suspend request. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 699 | */ |
| 700 | static void pm_suspend_timer_fn(unsigned long data) |
| 701 | { |
| 702 | struct device *dev = (struct device *)data; |
| 703 | unsigned long flags; |
| 704 | unsigned long expires; |
| 705 | |
| 706 | spin_lock_irqsave(&dev->power.lock, flags); |
| 707 | |
| 708 | expires = dev->power.timer_expires; |
| 709 | /* If 'expire' is after 'jiffies' we've been called too early. */ |
| 710 | if (expires > 0 && !time_after(expires, jiffies)) { |
| 711 | dev->power.timer_expires = 0; |
Alan Stern | 15bcb91d | 2010-09-25 23:35:21 +0200 | [diff] [blame] | 712 | rpm_suspend(dev, dev->power.timer_autosuspends ? |
| 713 | (RPM_ASYNC | RPM_AUTO) : RPM_ASYNC); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 714 | } |
| 715 | |
| 716 | spin_unlock_irqrestore(&dev->power.lock, flags); |
| 717 | } |
| 718 | |
| 719 | /** |
| 720 | * pm_schedule_suspend - Set up a timer to submit a suspend request in future. |
| 721 | * @dev: Device to suspend. |
| 722 | * @delay: Time to wait before submitting a suspend request, in milliseconds. |
| 723 | */ |
| 724 | int pm_schedule_suspend(struct device *dev, unsigned int delay) |
| 725 | { |
| 726 | unsigned long flags; |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 727 | int retval; |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 728 | |
| 729 | spin_lock_irqsave(&dev->power.lock, flags); |
| 730 | |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 731 | if (!delay) { |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 732 | retval = rpm_suspend(dev, RPM_ASYNC); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 733 | goto out; |
| 734 | } |
| 735 | |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 736 | retval = rpm_check_suspend_allowed(dev); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 737 | if (retval) |
| 738 | goto out; |
| 739 | |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 740 | /* Other scheduled or pending requests need to be canceled. */ |
| 741 | pm_runtime_cancel_pending(dev); |
| 742 | |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 743 | dev->power.timer_expires = jiffies + msecs_to_jiffies(delay); |
Alan Stern | 1bfee5b | 2010-09-25 23:35:00 +0200 | [diff] [blame] | 744 | dev->power.timer_expires += !dev->power.timer_expires; |
Alan Stern | 15bcb91d | 2010-09-25 23:35:21 +0200 | [diff] [blame] | 745 | dev->power.timer_autosuspends = 0; |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 746 | mod_timer(&dev->power.suspend_timer, dev->power.timer_expires); |
| 747 | |
| 748 | out: |
| 749 | spin_unlock_irqrestore(&dev->power.lock, flags); |
| 750 | |
| 751 | return retval; |
| 752 | } |
| 753 | EXPORT_SYMBOL_GPL(pm_schedule_suspend); |
| 754 | |
| 755 | /** |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 756 | * __pm_runtime_idle - Entry point for runtime idle operations. |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 757 | * @dev: Device to send idle notification for. |
| 758 | * @rpmflags: Flag bits. |
| 759 | * |
| 760 | * If the RPM_GET_PUT flag is set, decrement the device's usage count and |
| 761 | * return immediately if it is larger than zero. Then carry out an idle |
| 762 | * notification, either synchronous or asynchronous. |
| 763 | * |
Colin Cross | 311aab7 | 2011-08-08 23:39:36 +0200 | [diff] [blame] | 764 | * This routine may be called in atomic context if the RPM_ASYNC flag is set, |
| 765 | * or if pm_runtime_irq_safe() has been called. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 766 | */ |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 767 | int __pm_runtime_idle(struct device *dev, int rpmflags) |
| 768 | { |
| 769 | unsigned long flags; |
| 770 | int retval; |
| 771 | |
Colin Cross | 311aab7 | 2011-08-08 23:39:36 +0200 | [diff] [blame] | 772 | might_sleep_if(!(rpmflags & RPM_ASYNC) && !dev->power.irq_safe); |
| 773 | |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 774 | if (rpmflags & RPM_GET_PUT) { |
| 775 | if (!atomic_dec_and_test(&dev->power.usage_count)) |
| 776 | return 0; |
| 777 | } |
| 778 | |
| 779 | spin_lock_irqsave(&dev->power.lock, flags); |
| 780 | retval = rpm_idle(dev, rpmflags); |
| 781 | spin_unlock_irqrestore(&dev->power.lock, flags); |
| 782 | |
| 783 | return retval; |
| 784 | } |
| 785 | EXPORT_SYMBOL_GPL(__pm_runtime_idle); |
| 786 | |
| 787 | /** |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 788 | * __pm_runtime_suspend - Entry point for runtime put/suspend operations. |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 789 | * @dev: Device to suspend. |
| 790 | * @rpmflags: Flag bits. |
| 791 | * |
Alan Stern | 15bcb91d | 2010-09-25 23:35:21 +0200 | [diff] [blame] | 792 | * If the RPM_GET_PUT flag is set, decrement the device's usage count and |
| 793 | * return immediately if it is larger than zero. Then carry out a suspend, |
| 794 | * either synchronous or asynchronous. |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 795 | * |
Colin Cross | 311aab7 | 2011-08-08 23:39:36 +0200 | [diff] [blame] | 796 | * This routine may be called in atomic context if the RPM_ASYNC flag is set, |
| 797 | * or if pm_runtime_irq_safe() has been called. |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 798 | */ |
| 799 | int __pm_runtime_suspend(struct device *dev, int rpmflags) |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 800 | { |
| 801 | unsigned long flags; |
| 802 | int retval; |
| 803 | |
Colin Cross | 311aab7 | 2011-08-08 23:39:36 +0200 | [diff] [blame] | 804 | might_sleep_if(!(rpmflags & RPM_ASYNC) && !dev->power.irq_safe); |
| 805 | |
Alan Stern | 15bcb91d | 2010-09-25 23:35:21 +0200 | [diff] [blame] | 806 | if (rpmflags & RPM_GET_PUT) { |
| 807 | if (!atomic_dec_and_test(&dev->power.usage_count)) |
| 808 | return 0; |
| 809 | } |
| 810 | |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 811 | spin_lock_irqsave(&dev->power.lock, flags); |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 812 | retval = rpm_suspend(dev, rpmflags); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 813 | spin_unlock_irqrestore(&dev->power.lock, flags); |
| 814 | |
| 815 | return retval; |
| 816 | } |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 817 | EXPORT_SYMBOL_GPL(__pm_runtime_suspend); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 818 | |
| 819 | /** |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 820 | * __pm_runtime_resume - Entry point for runtime resume operations. |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 821 | * @dev: Device to resume. |
Alan Stern | 3f9af051 | 2010-09-25 23:34:54 +0200 | [diff] [blame] | 822 | * @rpmflags: Flag bits. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 823 | * |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 824 | * If the RPM_GET_PUT flag is set, increment the device's usage count. Then |
| 825 | * carry out a resume, either synchronous or asynchronous. |
| 826 | * |
Colin Cross | 311aab7 | 2011-08-08 23:39:36 +0200 | [diff] [blame] | 827 | * This routine may be called in atomic context if the RPM_ASYNC flag is set, |
| 828 | * or if pm_runtime_irq_safe() has been called. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 829 | */ |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 830 | int __pm_runtime_resume(struct device *dev, int rpmflags) |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 831 | { |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 832 | unsigned long flags; |
Alan Stern | 1d531c1 | 2009-12-13 20:28:30 +0100 | [diff] [blame] | 833 | int retval; |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 834 | |
Colin Cross | 311aab7 | 2011-08-08 23:39:36 +0200 | [diff] [blame] | 835 | might_sleep_if(!(rpmflags & RPM_ASYNC) && !dev->power.irq_safe); |
| 836 | |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 837 | if (rpmflags & RPM_GET_PUT) |
| 838 | atomic_inc(&dev->power.usage_count); |
| 839 | |
| 840 | spin_lock_irqsave(&dev->power.lock, flags); |
| 841 | retval = rpm_resume(dev, rpmflags); |
| 842 | spin_unlock_irqrestore(&dev->power.lock, flags); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 843 | |
| 844 | return retval; |
| 845 | } |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 846 | EXPORT_SYMBOL_GPL(__pm_runtime_resume); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 847 | |
| 848 | /** |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 849 | * __pm_runtime_set_status - Set runtime PM status of a device. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 850 | * @dev: Device to handle. |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 851 | * @status: New runtime PM status of the device. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 852 | * |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 853 | * If runtime PM of the device is disabled or its power.runtime_error field is |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 854 | * different from zero, the status may be changed either to RPM_ACTIVE, or to |
| 855 | * RPM_SUSPENDED, as long as that reflects the actual state of the device. |
| 856 | * However, if the device has a parent and the parent is not active, and the |
| 857 | * parent's power.ignore_children flag is unset, the device's status cannot be |
| 858 | * set to RPM_ACTIVE, so -EBUSY is returned in that case. |
| 859 | * |
| 860 | * If successful, __pm_runtime_set_status() clears the power.runtime_error field |
| 861 | * and the device parent's counter of unsuspended children is modified to |
| 862 | * reflect the new status. If the new status is RPM_SUSPENDED, an idle |
| 863 | * notification request for the parent is submitted. |
| 864 | */ |
| 865 | int __pm_runtime_set_status(struct device *dev, unsigned int status) |
| 866 | { |
| 867 | struct device *parent = dev->parent; |
| 868 | unsigned long flags; |
| 869 | bool notify_parent = false; |
| 870 | int error = 0; |
| 871 | |
| 872 | if (status != RPM_ACTIVE && status != RPM_SUSPENDED) |
| 873 | return -EINVAL; |
| 874 | |
| 875 | spin_lock_irqsave(&dev->power.lock, flags); |
| 876 | |
| 877 | if (!dev->power.runtime_error && !dev->power.disable_depth) { |
| 878 | error = -EAGAIN; |
| 879 | goto out; |
| 880 | } |
| 881 | |
| 882 | if (dev->power.runtime_status == status) |
| 883 | goto out_set; |
| 884 | |
| 885 | if (status == RPM_SUSPENDED) { |
| 886 | /* It always is possible to set the status to 'suspended'. */ |
| 887 | if (parent) { |
| 888 | atomic_add_unless(&parent->power.child_count, -1, 0); |
| 889 | notify_parent = !parent->power.ignore_children; |
| 890 | } |
| 891 | goto out_set; |
| 892 | } |
| 893 | |
| 894 | if (parent) { |
Rafael J. Wysocki | bab636b | 2009-12-03 20:21:21 +0100 | [diff] [blame] | 895 | spin_lock_nested(&parent->power.lock, SINGLE_DEPTH_NESTING); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 896 | |
| 897 | /* |
| 898 | * It is invalid to put an active child under a parent that is |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 899 | * not active, has runtime PM enabled and the |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 900 | * 'power.ignore_children' flag unset. |
| 901 | */ |
| 902 | if (!parent->power.disable_depth |
| 903 | && !parent->power.ignore_children |
Rafael J. Wysocki | 965c4ac | 2009-12-03 21:04:41 +0100 | [diff] [blame] | 904 | && parent->power.runtime_status != RPM_ACTIVE) |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 905 | error = -EBUSY; |
Rafael J. Wysocki | 965c4ac | 2009-12-03 21:04:41 +0100 | [diff] [blame] | 906 | else if (dev->power.runtime_status == RPM_SUSPENDED) |
| 907 | atomic_inc(&parent->power.child_count); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 908 | |
Alan Stern | 862f89b | 2009-11-25 01:06:37 +0100 | [diff] [blame] | 909 | spin_unlock(&parent->power.lock); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 910 | |
| 911 | if (error) |
| 912 | goto out; |
| 913 | } |
| 914 | |
| 915 | out_set: |
Arjan van de Ven | 8d4b9d1 | 2010-07-19 02:01:06 +0200 | [diff] [blame] | 916 | __update_runtime_status(dev, status); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 917 | dev->power.runtime_error = 0; |
| 918 | out: |
| 919 | spin_unlock_irqrestore(&dev->power.lock, flags); |
| 920 | |
| 921 | if (notify_parent) |
| 922 | pm_request_idle(parent); |
| 923 | |
| 924 | return error; |
| 925 | } |
| 926 | EXPORT_SYMBOL_GPL(__pm_runtime_set_status); |
| 927 | |
| 928 | /** |
| 929 | * __pm_runtime_barrier - Cancel pending requests and wait for completions. |
| 930 | * @dev: Device to handle. |
| 931 | * |
| 932 | * Flush all pending requests for the device from pm_wq and wait for all |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 933 | * runtime PM operations involving the device in progress to complete. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 934 | * |
| 935 | * Should be called under dev->power.lock with interrupts disabled. |
| 936 | */ |
| 937 | static void __pm_runtime_barrier(struct device *dev) |
| 938 | { |
| 939 | pm_runtime_deactivate_timer(dev); |
| 940 | |
| 941 | if (dev->power.request_pending) { |
| 942 | dev->power.request = RPM_REQ_NONE; |
| 943 | spin_unlock_irq(&dev->power.lock); |
| 944 | |
| 945 | cancel_work_sync(&dev->power.work); |
| 946 | |
| 947 | spin_lock_irq(&dev->power.lock); |
| 948 | dev->power.request_pending = false; |
| 949 | } |
| 950 | |
| 951 | if (dev->power.runtime_status == RPM_SUSPENDING |
| 952 | || dev->power.runtime_status == RPM_RESUMING |
| 953 | || dev->power.idle_notification) { |
| 954 | DEFINE_WAIT(wait); |
| 955 | |
| 956 | /* Suspend, wake-up or idle notification in progress. */ |
| 957 | for (;;) { |
| 958 | prepare_to_wait(&dev->power.wait_queue, &wait, |
| 959 | TASK_UNINTERRUPTIBLE); |
| 960 | if (dev->power.runtime_status != RPM_SUSPENDING |
| 961 | && dev->power.runtime_status != RPM_RESUMING |
| 962 | && !dev->power.idle_notification) |
| 963 | break; |
| 964 | spin_unlock_irq(&dev->power.lock); |
| 965 | |
| 966 | schedule(); |
| 967 | |
| 968 | spin_lock_irq(&dev->power.lock); |
| 969 | } |
| 970 | finish_wait(&dev->power.wait_queue, &wait); |
| 971 | } |
| 972 | } |
| 973 | |
| 974 | /** |
| 975 | * pm_runtime_barrier - Flush pending requests and wait for completions. |
| 976 | * @dev: Device to handle. |
| 977 | * |
| 978 | * Prevent the device from being suspended by incrementing its usage counter and |
| 979 | * if there's a pending resume request for the device, wake the device up. |
| 980 | * Next, make sure that all pending requests for the device have been flushed |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 981 | * from pm_wq and wait for all runtime PM operations involving the device in |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 982 | * progress to complete. |
| 983 | * |
| 984 | * Return value: |
| 985 | * 1, if there was a resume request pending and the device had to be woken up, |
| 986 | * 0, otherwise |
| 987 | */ |
| 988 | int pm_runtime_barrier(struct device *dev) |
| 989 | { |
| 990 | int retval = 0; |
| 991 | |
| 992 | pm_runtime_get_noresume(dev); |
| 993 | spin_lock_irq(&dev->power.lock); |
| 994 | |
| 995 | if (dev->power.request_pending |
| 996 | && dev->power.request == RPM_REQ_RESUME) { |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 997 | rpm_resume(dev, 0); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 998 | retval = 1; |
| 999 | } |
| 1000 | |
| 1001 | __pm_runtime_barrier(dev); |
| 1002 | |
| 1003 | spin_unlock_irq(&dev->power.lock); |
| 1004 | pm_runtime_put_noidle(dev); |
| 1005 | |
| 1006 | return retval; |
| 1007 | } |
| 1008 | EXPORT_SYMBOL_GPL(pm_runtime_barrier); |
| 1009 | |
| 1010 | /** |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 1011 | * __pm_runtime_disable - Disable runtime PM of a device. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 1012 | * @dev: Device to handle. |
| 1013 | * @check_resume: If set, check if there's a resume request for the device. |
| 1014 | * |
| 1015 | * Increment power.disable_depth for the device and if was zero previously, |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 1016 | * cancel all pending runtime PM requests for the device and wait for all |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 1017 | * operations in progress to complete. The device can be either active or |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 1018 | * suspended after its runtime PM has been disabled. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 1019 | * |
| 1020 | * If @check_resume is set and there's a resume request pending when |
| 1021 | * __pm_runtime_disable() is called and power.disable_depth is zero, the |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 1022 | * function will wake up the device before disabling its runtime PM. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 1023 | */ |
| 1024 | void __pm_runtime_disable(struct device *dev, bool check_resume) |
| 1025 | { |
| 1026 | spin_lock_irq(&dev->power.lock); |
| 1027 | |
| 1028 | if (dev->power.disable_depth > 0) { |
| 1029 | dev->power.disable_depth++; |
| 1030 | goto out; |
| 1031 | } |
| 1032 | |
| 1033 | /* |
| 1034 | * Wake up the device if there's a resume request pending, because that |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 1035 | * means there probably is some I/O to process and disabling runtime PM |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 1036 | * shouldn't prevent the device from processing the I/O. |
| 1037 | */ |
| 1038 | if (check_resume && dev->power.request_pending |
| 1039 | && dev->power.request == RPM_REQ_RESUME) { |
| 1040 | /* |
| 1041 | * Prevent suspends and idle notifications from being carried |
| 1042 | * out after we have woken up the device. |
| 1043 | */ |
| 1044 | pm_runtime_get_noresume(dev); |
| 1045 | |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 1046 | rpm_resume(dev, 0); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 1047 | |
| 1048 | pm_runtime_put_noidle(dev); |
| 1049 | } |
| 1050 | |
| 1051 | if (!dev->power.disable_depth++) |
| 1052 | __pm_runtime_barrier(dev); |
| 1053 | |
| 1054 | out: |
| 1055 | spin_unlock_irq(&dev->power.lock); |
| 1056 | } |
| 1057 | EXPORT_SYMBOL_GPL(__pm_runtime_disable); |
| 1058 | |
| 1059 | /** |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 1060 | * pm_runtime_enable - Enable runtime PM of a device. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 1061 | * @dev: Device to handle. |
| 1062 | */ |
| 1063 | void pm_runtime_enable(struct device *dev) |
| 1064 | { |
| 1065 | unsigned long flags; |
| 1066 | |
| 1067 | spin_lock_irqsave(&dev->power.lock, flags); |
| 1068 | |
| 1069 | if (dev->power.disable_depth > 0) |
| 1070 | dev->power.disable_depth--; |
| 1071 | else |
| 1072 | dev_warn(dev, "Unbalanced %s!\n", __func__); |
| 1073 | |
| 1074 | spin_unlock_irqrestore(&dev->power.lock, flags); |
| 1075 | } |
| 1076 | EXPORT_SYMBOL_GPL(pm_runtime_enable); |
| 1077 | |
| 1078 | /** |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 1079 | * pm_runtime_forbid - Block runtime PM of a device. |
Rafael J. Wysocki | 5382363 | 2010-01-23 22:02:51 +0100 | [diff] [blame] | 1080 | * @dev: Device to handle. |
| 1081 | * |
| 1082 | * Increase the device's usage count and clear its power.runtime_auto flag, |
| 1083 | * so that it cannot be suspended at run time until pm_runtime_allow() is called |
| 1084 | * for it. |
| 1085 | */ |
| 1086 | void pm_runtime_forbid(struct device *dev) |
| 1087 | { |
| 1088 | spin_lock_irq(&dev->power.lock); |
| 1089 | if (!dev->power.runtime_auto) |
| 1090 | goto out; |
| 1091 | |
| 1092 | dev->power.runtime_auto = false; |
| 1093 | atomic_inc(&dev->power.usage_count); |
Alan Stern | 140a6c9 | 2010-09-25 23:35:07 +0200 | [diff] [blame] | 1094 | rpm_resume(dev, 0); |
Rafael J. Wysocki | 5382363 | 2010-01-23 22:02:51 +0100 | [diff] [blame] | 1095 | |
| 1096 | out: |
| 1097 | spin_unlock_irq(&dev->power.lock); |
| 1098 | } |
| 1099 | EXPORT_SYMBOL_GPL(pm_runtime_forbid); |
| 1100 | |
| 1101 | /** |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 1102 | * pm_runtime_allow - Unblock runtime PM of a device. |
Rafael J. Wysocki | 5382363 | 2010-01-23 22:02:51 +0100 | [diff] [blame] | 1103 | * @dev: Device to handle. |
| 1104 | * |
| 1105 | * Decrease the device's usage count and set its power.runtime_auto flag. |
| 1106 | */ |
| 1107 | void pm_runtime_allow(struct device *dev) |
| 1108 | { |
| 1109 | spin_lock_irq(&dev->power.lock); |
| 1110 | if (dev->power.runtime_auto) |
| 1111 | goto out; |
| 1112 | |
| 1113 | dev->power.runtime_auto = true; |
| 1114 | if (atomic_dec_and_test(&dev->power.usage_count)) |
Alan Stern | 15bcb91d | 2010-09-25 23:35:21 +0200 | [diff] [blame] | 1115 | rpm_idle(dev, RPM_AUTO); |
Rafael J. Wysocki | 5382363 | 2010-01-23 22:02:51 +0100 | [diff] [blame] | 1116 | |
| 1117 | out: |
| 1118 | spin_unlock_irq(&dev->power.lock); |
| 1119 | } |
| 1120 | EXPORT_SYMBOL_GPL(pm_runtime_allow); |
| 1121 | |
| 1122 | /** |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 1123 | * pm_runtime_no_callbacks - Ignore runtime PM callbacks for a device. |
Alan Stern | 7490e44 | 2010-09-25 23:35:15 +0200 | [diff] [blame] | 1124 | * @dev: Device to handle. |
| 1125 | * |
| 1126 | * Set the power.no_callbacks flag, which tells the PM core that this |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 1127 | * device is power-managed through its parent and has no runtime PM |
| 1128 | * callbacks of its own. The runtime sysfs attributes will be removed. |
Alan Stern | 7490e44 | 2010-09-25 23:35:15 +0200 | [diff] [blame] | 1129 | */ |
| 1130 | void pm_runtime_no_callbacks(struct device *dev) |
| 1131 | { |
| 1132 | spin_lock_irq(&dev->power.lock); |
| 1133 | dev->power.no_callbacks = 1; |
| 1134 | spin_unlock_irq(&dev->power.lock); |
| 1135 | if (device_is_registered(dev)) |
| 1136 | rpm_sysfs_remove(dev); |
| 1137 | } |
| 1138 | EXPORT_SYMBOL_GPL(pm_runtime_no_callbacks); |
| 1139 | |
| 1140 | /** |
Alan Stern | c7b61de | 2010-12-01 00:14:42 +0100 | [diff] [blame] | 1141 | * pm_runtime_irq_safe - Leave interrupts disabled during callbacks. |
| 1142 | * @dev: Device to handle |
| 1143 | * |
| 1144 | * Set the power.irq_safe flag, which tells the PM core that the |
| 1145 | * ->runtime_suspend() and ->runtime_resume() callbacks for this device should |
| 1146 | * always be invoked with the spinlock held and interrupts disabled. It also |
| 1147 | * causes the parent's usage counter to be permanently incremented, preventing |
| 1148 | * the parent from runtime suspending -- otherwise an irq-safe child might have |
| 1149 | * to wait for a non-irq-safe parent. |
| 1150 | */ |
| 1151 | void pm_runtime_irq_safe(struct device *dev) |
| 1152 | { |
| 1153 | if (dev->parent) |
| 1154 | pm_runtime_get_sync(dev->parent); |
| 1155 | spin_lock_irq(&dev->power.lock); |
| 1156 | dev->power.irq_safe = 1; |
| 1157 | spin_unlock_irq(&dev->power.lock); |
| 1158 | } |
| 1159 | EXPORT_SYMBOL_GPL(pm_runtime_irq_safe); |
| 1160 | |
| 1161 | /** |
Alan Stern | 15bcb91d | 2010-09-25 23:35:21 +0200 | [diff] [blame] | 1162 | * update_autosuspend - Handle a change to a device's autosuspend settings. |
| 1163 | * @dev: Device to handle. |
| 1164 | * @old_delay: The former autosuspend_delay value. |
| 1165 | * @old_use: The former use_autosuspend value. |
| 1166 | * |
| 1167 | * Prevent runtime suspend if the new delay is negative and use_autosuspend is |
| 1168 | * set; otherwise allow it. Send an idle notification if suspends are allowed. |
| 1169 | * |
| 1170 | * This function must be called under dev->power.lock with interrupts disabled. |
| 1171 | */ |
| 1172 | static void update_autosuspend(struct device *dev, int old_delay, int old_use) |
| 1173 | { |
| 1174 | int delay = dev->power.autosuspend_delay; |
| 1175 | |
| 1176 | /* Should runtime suspend be prevented now? */ |
| 1177 | if (dev->power.use_autosuspend && delay < 0) { |
| 1178 | |
| 1179 | /* If it used to be allowed then prevent it. */ |
| 1180 | if (!old_use || old_delay >= 0) { |
| 1181 | atomic_inc(&dev->power.usage_count); |
| 1182 | rpm_resume(dev, 0); |
| 1183 | } |
| 1184 | } |
| 1185 | |
| 1186 | /* Runtime suspend should be allowed now. */ |
| 1187 | else { |
| 1188 | |
| 1189 | /* If it used to be prevented then allow it. */ |
| 1190 | if (old_use && old_delay < 0) |
| 1191 | atomic_dec(&dev->power.usage_count); |
| 1192 | |
| 1193 | /* Maybe we can autosuspend now. */ |
| 1194 | rpm_idle(dev, RPM_AUTO); |
| 1195 | } |
| 1196 | } |
| 1197 | |
| 1198 | /** |
| 1199 | * pm_runtime_set_autosuspend_delay - Set a device's autosuspend_delay value. |
| 1200 | * @dev: Device to handle. |
| 1201 | * @delay: Value of the new delay in milliseconds. |
| 1202 | * |
| 1203 | * Set the device's power.autosuspend_delay value. If it changes to negative |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 1204 | * and the power.use_autosuspend flag is set, prevent runtime suspends. If it |
| 1205 | * changes the other way, allow runtime suspends. |
Alan Stern | 15bcb91d | 2010-09-25 23:35:21 +0200 | [diff] [blame] | 1206 | */ |
| 1207 | void pm_runtime_set_autosuspend_delay(struct device *dev, int delay) |
| 1208 | { |
| 1209 | int old_delay, old_use; |
| 1210 | |
| 1211 | spin_lock_irq(&dev->power.lock); |
| 1212 | old_delay = dev->power.autosuspend_delay; |
| 1213 | old_use = dev->power.use_autosuspend; |
| 1214 | dev->power.autosuspend_delay = delay; |
| 1215 | update_autosuspend(dev, old_delay, old_use); |
| 1216 | spin_unlock_irq(&dev->power.lock); |
| 1217 | } |
| 1218 | EXPORT_SYMBOL_GPL(pm_runtime_set_autosuspend_delay); |
| 1219 | |
| 1220 | /** |
| 1221 | * __pm_runtime_use_autosuspend - Set a device's use_autosuspend flag. |
| 1222 | * @dev: Device to handle. |
| 1223 | * @use: New value for use_autosuspend. |
| 1224 | * |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 1225 | * Set the device's power.use_autosuspend flag, and allow or prevent runtime |
Alan Stern | 15bcb91d | 2010-09-25 23:35:21 +0200 | [diff] [blame] | 1226 | * suspends as needed. |
| 1227 | */ |
| 1228 | void __pm_runtime_use_autosuspend(struct device *dev, bool use) |
| 1229 | { |
| 1230 | int old_delay, old_use; |
| 1231 | |
| 1232 | spin_lock_irq(&dev->power.lock); |
| 1233 | old_delay = dev->power.autosuspend_delay; |
| 1234 | old_use = dev->power.use_autosuspend; |
| 1235 | dev->power.use_autosuspend = use; |
| 1236 | update_autosuspend(dev, old_delay, old_use); |
| 1237 | spin_unlock_irq(&dev->power.lock); |
| 1238 | } |
| 1239 | EXPORT_SYMBOL_GPL(__pm_runtime_use_autosuspend); |
| 1240 | |
| 1241 | /** |
Rafael J. Wysocki | 62052ab | 2011-07-06 10:52:13 +0200 | [diff] [blame] | 1242 | * pm_runtime_init - Initialize runtime PM fields in given device object. |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 1243 | * @dev: Device object to initialize. |
| 1244 | */ |
| 1245 | void pm_runtime_init(struct device *dev) |
| 1246 | { |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 1247 | dev->power.runtime_status = RPM_SUSPENDED; |
| 1248 | dev->power.idle_notification = false; |
| 1249 | |
| 1250 | dev->power.disable_depth = 1; |
| 1251 | atomic_set(&dev->power.usage_count, 0); |
| 1252 | |
| 1253 | dev->power.runtime_error = 0; |
| 1254 | |
| 1255 | atomic_set(&dev->power.child_count, 0); |
| 1256 | pm_suspend_ignore_children(dev, false); |
Rafael J. Wysocki | 5382363 | 2010-01-23 22:02:51 +0100 | [diff] [blame] | 1257 | dev->power.runtime_auto = true; |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 1258 | |
| 1259 | dev->power.request_pending = false; |
| 1260 | dev->power.request = RPM_REQ_NONE; |
| 1261 | dev->power.deferred_resume = false; |
Arjan van de Ven | 8d4b9d1 | 2010-07-19 02:01:06 +0200 | [diff] [blame] | 1262 | dev->power.accounting_timestamp = jiffies; |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 1263 | INIT_WORK(&dev->power.work, pm_runtime_work); |
| 1264 | |
| 1265 | dev->power.timer_expires = 0; |
| 1266 | setup_timer(&dev->power.suspend_timer, pm_suspend_timer_fn, |
| 1267 | (unsigned long)dev); |
| 1268 | |
| 1269 | init_waitqueue_head(&dev->power.wait_queue); |
| 1270 | } |
| 1271 | |
| 1272 | /** |
| 1273 | * pm_runtime_remove - Prepare for removing a device from device hierarchy. |
| 1274 | * @dev: Device object being removed from device hierarchy. |
| 1275 | */ |
| 1276 | void pm_runtime_remove(struct device *dev) |
| 1277 | { |
| 1278 | __pm_runtime_disable(dev, false); |
| 1279 | |
| 1280 | /* Change the status back to 'suspended' to match the initial status. */ |
| 1281 | if (dev->power.runtime_status == RPM_ACTIVE) |
| 1282 | pm_runtime_set_suspended(dev); |
Alan Stern | c7b61de | 2010-12-01 00:14:42 +0100 | [diff] [blame] | 1283 | if (dev->power.irq_safe && dev->parent) |
| 1284 | pm_runtime_put_sync(dev->parent); |
Rafael J. Wysocki | 5e928f7 | 2009-08-18 23:38:32 +0200 | [diff] [blame] | 1285 | } |