blob: 068f7ed1f009fc2d7ab2a2d77e40874361b6b0bb [file] [log] [blame]
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +02001/*
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +02002 * drivers/base/power/runtime.c - Helper functions for device runtime PM
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +02003 *
4 * Copyright (c) 2009 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc.
Alan Stern1bfee5b2010-09-25 23:35:00 +02005 * Copyright (C) 2010 Alan Stern <stern@rowland.harvard.edu>
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +02006 *
7 * This file is released under the GPLv2.
8 */
9
10#include <linux/sched.h>
Paul Gortmaker1b6bc322011-05-27 07:12:15 -040011#include <linux/export.h>
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +020012#include <linux/pm_runtime.h>
Ming Leic3dc2f12011-09-27 22:54:41 +020013#include <trace/events/rpm.h>
Alan Stern7490e442010-09-25 23:35:15 +020014#include "power.h"
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +020015
Alan Stern140a6c92010-09-25 23:35:07 +020016static int rpm_resume(struct device *dev, int rpmflags);
Alan Stern7490e442010-09-25 23:35:15 +020017static int rpm_suspend(struct device *dev, int rpmflags);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +020018
19/**
Alan Stern47693732010-09-25 23:34:46 +020020 * update_pm_runtime_accounting - Update the time accounting of power states
21 * @dev: Device to update the accounting for
22 *
23 * In order to be able to have time accounting of the various power states
24 * (as used by programs such as PowerTOP to show the effectiveness of runtime
25 * PM), we need to track the time spent in each state.
26 * update_pm_runtime_accounting must be called each time before the
27 * runtime_status field is updated, to account the time in the old state
28 * correctly.
29 */
30void update_pm_runtime_accounting(struct device *dev)
31{
32 unsigned long now = jiffies;
venu byravarasudef0c0a2011-11-03 10:12:14 +010033 unsigned long delta;
Alan Stern47693732010-09-25 23:34:46 +020034
35 delta = now - dev->power.accounting_timestamp;
36
Alan Stern47693732010-09-25 23:34:46 +020037 dev->power.accounting_timestamp = now;
38
39 if (dev->power.disable_depth > 0)
40 return;
41
42 if (dev->power.runtime_status == RPM_SUSPENDED)
43 dev->power.suspended_jiffies += delta;
44 else
45 dev->power.active_jiffies += delta;
46}
47
48static void __update_runtime_status(struct device *dev, enum rpm_status status)
49{
50 update_pm_runtime_accounting(dev);
51 dev->power.runtime_status = status;
52}
53
54/**
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +020055 * pm_runtime_deactivate_timer - Deactivate given device's suspend timer.
56 * @dev: Device to handle.
57 */
58static void pm_runtime_deactivate_timer(struct device *dev)
59{
60 if (dev->power.timer_expires > 0) {
61 del_timer(&dev->power.suspend_timer);
62 dev->power.timer_expires = 0;
63 }
64}
65
66/**
67 * pm_runtime_cancel_pending - Deactivate suspend timer and cancel requests.
68 * @dev: Device to handle.
69 */
70static void pm_runtime_cancel_pending(struct device *dev)
71{
72 pm_runtime_deactivate_timer(dev);
73 /*
74 * In case there's a request pending, make sure its work function will
75 * return without doing anything.
76 */
77 dev->power.request = RPM_REQ_NONE;
78}
79
Alan Stern15bcb912010-09-25 23:35:21 +020080/*
81 * pm_runtime_autosuspend_expiration - Get a device's autosuspend-delay expiration time.
82 * @dev: Device to handle.
83 *
84 * Compute the autosuspend-delay expiration time based on the device's
85 * power.last_busy time. If the delay has already expired or is disabled
86 * (negative) or the power.use_autosuspend flag isn't set, return 0.
87 * Otherwise return the expiration time in jiffies (adjusted to be nonzero).
88 *
89 * This function may be called either with or without dev->power.lock held.
90 * Either way it can be racy, since power.last_busy may be updated at any time.
91 */
92unsigned long pm_runtime_autosuspend_expiration(struct device *dev)
93{
94 int autosuspend_delay;
95 long elapsed;
96 unsigned long last_busy;
97 unsigned long expires = 0;
98
99 if (!dev->power.use_autosuspend)
100 goto out;
101
102 autosuspend_delay = ACCESS_ONCE(dev->power.autosuspend_delay);
103 if (autosuspend_delay < 0)
104 goto out;
105
106 last_busy = ACCESS_ONCE(dev->power.last_busy);
107 elapsed = jiffies - last_busy;
108 if (elapsed < 0)
109 goto out; /* jiffies has wrapped around. */
110
111 /*
112 * If the autosuspend_delay is >= 1 second, align the timer by rounding
113 * up to the nearest second.
114 */
115 expires = last_busy + msecs_to_jiffies(autosuspend_delay);
116 if (autosuspend_delay >= 1000)
117 expires = round_jiffies(expires);
118 expires += !expires;
119 if (elapsed >= expires - last_busy)
120 expires = 0; /* Already expired. */
121
122 out:
123 return expires;
124}
125EXPORT_SYMBOL_GPL(pm_runtime_autosuspend_expiration);
126
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200127/**
Alan Stern1bfee5b2010-09-25 23:35:00 +0200128 * rpm_check_suspend_allowed - Test whether a device may be suspended.
129 * @dev: Device to test.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200130 */
Alan Stern1bfee5b2010-09-25 23:35:00 +0200131static int rpm_check_suspend_allowed(struct device *dev)
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200132{
133 int retval = 0;
134
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200135 if (dev->power.runtime_error)
136 retval = -EINVAL;
Rafael J. Wysocki632e2702011-07-01 22:29:15 +0200137 else if (dev->power.disable_depth > 0)
138 retval = -EACCES;
139 else if (atomic_read(&dev->power.usage_count) > 0)
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200140 retval = -EAGAIN;
141 else if (!pm_children_suspended(dev))
142 retval = -EBUSY;
Alan Stern1bfee5b2010-09-25 23:35:00 +0200143
144 /* Pending resume requests take precedence over suspends. */
145 else if ((dev->power.deferred_resume
Kevin Winchester78ca7c32010-10-29 15:29:55 +0200146 && dev->power.runtime_status == RPM_SUSPENDING)
Alan Stern1bfee5b2010-09-25 23:35:00 +0200147 || (dev->power.request_pending
148 && dev->power.request == RPM_REQ_RESUME))
149 retval = -EAGAIN;
150 else if (dev->power.runtime_status == RPM_SUSPENDED)
151 retval = 1;
152
153 return retval;
154}
155
Alan Stern1bfee5b2010-09-25 23:35:00 +0200156/**
Rafael J. Wysockiad3c36a2011-09-27 21:54:52 +0200157 * __rpm_callback - Run a given runtime PM callback for a given device.
158 * @cb: Runtime PM callback to run.
159 * @dev: Device to run the callback for.
160 */
161static int __rpm_callback(int (*cb)(struct device *), struct device *dev)
162 __releases(&dev->power.lock) __acquires(&dev->power.lock)
163{
164 int retval;
165
166 if (dev->power.irq_safe)
167 spin_unlock(&dev->power.lock);
168 else
169 spin_unlock_irq(&dev->power.lock);
170
171 retval = cb(dev);
172
173 if (dev->power.irq_safe)
174 spin_lock(&dev->power.lock);
175 else
176 spin_lock_irq(&dev->power.lock);
177
178 return retval;
179}
180
181/**
Alan Stern140a6c92010-09-25 23:35:07 +0200182 * rpm_idle - Notify device bus type if the device can be suspended.
Alan Stern1bfee5b2010-09-25 23:35:00 +0200183 * @dev: Device to notify the bus type about.
184 * @rpmflags: Flag bits.
185 *
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +0200186 * Check if the device's runtime PM status allows it to be suspended. If
Alan Stern1bfee5b2010-09-25 23:35:00 +0200187 * another idle notification has been started earlier, return immediately. If
188 * the RPM_ASYNC flag is set then queue an idle-notification request; otherwise
189 * run the ->runtime_idle() callback directly.
190 *
191 * This function must be called under dev->power.lock with interrupts disabled.
192 */
Alan Stern140a6c92010-09-25 23:35:07 +0200193static int rpm_idle(struct device *dev, int rpmflags)
Alan Stern1bfee5b2010-09-25 23:35:00 +0200194{
Rafael J. Wysocki71c63122010-10-04 22:08:01 +0200195 int (*callback)(struct device *);
Alan Stern1bfee5b2010-09-25 23:35:00 +0200196 int retval;
197
Ming Leic3dc2f12011-09-27 22:54:41 +0200198 trace_rpm_idle(dev, rpmflags);
Alan Stern1bfee5b2010-09-25 23:35:00 +0200199 retval = rpm_check_suspend_allowed(dev);
200 if (retval < 0)
201 ; /* Conditions are wrong. */
202
203 /* Idle notifications are allowed only in the RPM_ACTIVE state. */
204 else if (dev->power.runtime_status != RPM_ACTIVE)
205 retval = -EAGAIN;
206
207 /*
208 * Any pending request other than an idle notification takes
209 * precedence over us, except that the timer may be running.
210 */
211 else if (dev->power.request_pending &&
212 dev->power.request > RPM_REQ_IDLE)
213 retval = -EAGAIN;
214
215 /* Act as though RPM_NOWAIT is always set. */
216 else if (dev->power.idle_notification)
217 retval = -EINPROGRESS;
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200218 if (retval)
219 goto out;
220
Alan Stern1bfee5b2010-09-25 23:35:00 +0200221 /* Pending requests need to be canceled. */
222 dev->power.request = RPM_REQ_NONE;
223
Alan Stern7490e442010-09-25 23:35:15 +0200224 if (dev->power.no_callbacks) {
225 /* Assume ->runtime_idle() callback would have suspended. */
226 retval = rpm_suspend(dev, rpmflags);
227 goto out;
228 }
229
Alan Stern1bfee5b2010-09-25 23:35:00 +0200230 /* Carry out an asynchronous or a synchronous idle notification. */
231 if (rpmflags & RPM_ASYNC) {
232 dev->power.request = RPM_REQ_IDLE;
233 if (!dev->power.request_pending) {
234 dev->power.request_pending = true;
235 queue_work(pm_wq, &dev->power.work);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200236 }
Alan Stern1bfee5b2010-09-25 23:35:00 +0200237 goto out;
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200238 }
239
240 dev->power.idle_notification = true;
241
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200242 if (dev->pm_domain)
243 callback = dev->pm_domain->ops.runtime_idle;
Rafael J. Wysocki4d27e9d2011-04-29 00:35:50 +0200244 else if (dev->type && dev->type->pm)
Rafael J. Wysocki71c63122010-10-04 22:08:01 +0200245 callback = dev->type->pm->runtime_idle;
246 else if (dev->class && dev->class->pm)
247 callback = dev->class->pm->runtime_idle;
Rafael J. Wysocki9659cc02011-02-18 23:20:21 +0100248 else if (dev->bus && dev->bus->pm)
249 callback = dev->bus->pm->runtime_idle;
Rafael J. Wysocki71c63122010-10-04 22:08:01 +0200250 else
251 callback = NULL;
252
Rafael J. Wysockiad3c36a2011-09-27 21:54:52 +0200253 if (callback)
254 __rpm_callback(callback, dev);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200255
256 dev->power.idle_notification = false;
257 wake_up_all(&dev->power.wait_queue);
258
259 out:
Ming Leic3dc2f12011-09-27 22:54:41 +0200260 trace_rpm_return_int(dev, _THIS_IP_, retval);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200261 return retval;
262}
263
264/**
Rafael J. Wysocki71c63122010-10-04 22:08:01 +0200265 * rpm_callback - Run a given runtime PM callback for a given device.
266 * @cb: Runtime PM callback to run.
267 * @dev: Device to run the callback for.
268 */
269static int rpm_callback(int (*cb)(struct device *), struct device *dev)
Rafael J. Wysocki71c63122010-10-04 22:08:01 +0200270{
271 int retval;
272
273 if (!cb)
274 return -ENOSYS;
275
Rafael J. Wysockiad3c36a2011-09-27 21:54:52 +0200276 retval = __rpm_callback(cb, dev);
Rafael J. Wysocki71c63122010-10-04 22:08:01 +0200277
Rafael J. Wysocki71c63122010-10-04 22:08:01 +0200278 dev->power.runtime_error = retval;
Rafael J. Wysocki632e2702011-07-01 22:29:15 +0200279 return retval != -EACCES ? retval : -EIO;
Rafael J. Wysocki71c63122010-10-04 22:08:01 +0200280}
281
Rafael J. Wysocki00dc9ad2011-12-01 00:01:31 +0100282struct rpm_qos_data {
283 ktime_t time_now;
284 s64 constraint_ns;
285};
286
287/**
288 * rpm_update_qos_constraint - Update a given PM QoS constraint data.
289 * @dev: Device whose timing data to use.
290 * @data: PM QoS constraint data to update.
291 *
292 * Use the suspend timing data of @dev to update PM QoS constraint data pointed
293 * to by @data.
294 */
295static int rpm_update_qos_constraint(struct device *dev, void *data)
296{
297 struct rpm_qos_data *qos = data;
298 unsigned long flags;
299 s64 delta_ns;
300 int ret = 0;
301
302 spin_lock_irqsave(&dev->power.lock, flags);
303
304 if (dev->power.max_time_suspended_ns < 0)
305 goto out;
306
307 delta_ns = dev->power.max_time_suspended_ns -
308 ktime_to_ns(ktime_sub(qos->time_now, dev->power.suspend_time));
309 if (delta_ns <= 0) {
310 ret = -EBUSY;
311 goto out;
312 }
313
314 if (qos->constraint_ns > delta_ns || qos->constraint_ns == 0)
315 qos->constraint_ns = delta_ns;
316
317 out:
318 spin_unlock_irqrestore(&dev->power.lock, flags);
319
320 return ret;
321}
322
Rafael J. Wysocki71c63122010-10-04 22:08:01 +0200323/**
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +0200324 * rpm_suspend - Carry out runtime suspend of given device.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200325 * @dev: Device to suspend.
Alan Stern3f9af052010-09-25 23:34:54 +0200326 * @rpmflags: Flag bits.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200327 *
Ming Lei47d8f0b2011-10-12 11:53:32 +0800328 * Check if the device's runtime PM status allows it to be suspended.
329 * Cancel a pending idle notification, autosuspend or suspend. If
330 * another suspend has been started earlier, either return immediately
331 * or wait for it to finish, depending on the RPM_NOWAIT and RPM_ASYNC
332 * flags. If the RPM_ASYNC flag is set then queue a suspend request;
Ming Lei857b36c2011-10-12 22:59:33 +0200333 * otherwise run the ->runtime_suspend() callback directly. When
334 * ->runtime_suspend succeeded, if a deferred resume was requested while
335 * the callback was running then carry it out, otherwise send an idle
336 * notification for its parent (if the suspend succeeded and both
337 * ignore_children of parent->power and irq_safe of dev->power are not set).
Alan Stern886486b2011-11-03 23:39:18 +0100338 * If ->runtime_suspend failed with -EAGAIN or -EBUSY, and if the RPM_AUTO
339 * flag is set and the next autosuspend-delay expiration time is in the
340 * future, schedule another autosuspend attempt.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200341 *
342 * This function must be called under dev->power.lock with interrupts disabled.
343 */
Alan Stern140a6c92010-09-25 23:35:07 +0200344static int rpm_suspend(struct device *dev, int rpmflags)
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200345 __releases(&dev->power.lock) __acquires(&dev->power.lock)
346{
Rafael J. Wysocki71c63122010-10-04 22:08:01 +0200347 int (*callback)(struct device *);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200348 struct device *parent = NULL;
Rafael J. Wysocki00dc9ad2011-12-01 00:01:31 +0100349 struct rpm_qos_data qos;
Alan Stern1bfee5b2010-09-25 23:35:00 +0200350 int retval;
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200351
Ming Leic3dc2f12011-09-27 22:54:41 +0200352 trace_rpm_suspend(dev, rpmflags);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200353
354 repeat:
Alan Stern1bfee5b2010-09-25 23:35:00 +0200355 retval = rpm_check_suspend_allowed(dev);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200356
Alan Stern1bfee5b2010-09-25 23:35:00 +0200357 if (retval < 0)
358 ; /* Conditions are wrong. */
359
360 /* Synchronous suspends are not allowed in the RPM_RESUMING state. */
361 else if (dev->power.runtime_status == RPM_RESUMING &&
362 !(rpmflags & RPM_ASYNC))
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200363 retval = -EAGAIN;
Alan Stern1bfee5b2010-09-25 23:35:00 +0200364 if (retval)
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200365 goto out;
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200366
Alan Stern15bcb912010-09-25 23:35:21 +0200367 /* If the autosuspend_delay time hasn't expired yet, reschedule. */
368 if ((rpmflags & RPM_AUTO)
369 && dev->power.runtime_status != RPM_SUSPENDING) {
370 unsigned long expires = pm_runtime_autosuspend_expiration(dev);
371
372 if (expires != 0) {
373 /* Pending requests need to be canceled. */
374 dev->power.request = RPM_REQ_NONE;
375
376 /*
377 * Optimization: If the timer is already running and is
378 * set to expire at or before the autosuspend delay,
379 * avoid the overhead of resetting it. Just let it
380 * expire; pm_suspend_timer_fn() will take care of the
381 * rest.
382 */
383 if (!(dev->power.timer_expires && time_before_eq(
384 dev->power.timer_expires, expires))) {
385 dev->power.timer_expires = expires;
386 mod_timer(&dev->power.suspend_timer, expires);
387 }
388 dev->power.timer_autosuspends = 1;
389 goto out;
390 }
391 }
392
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200393 /* Other scheduled or pending requests need to be canceled. */
394 pm_runtime_cancel_pending(dev);
395
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200396 if (dev->power.runtime_status == RPM_SUSPENDING) {
397 DEFINE_WAIT(wait);
398
Alan Stern1bfee5b2010-09-25 23:35:00 +0200399 if (rpmflags & (RPM_ASYNC | RPM_NOWAIT)) {
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200400 retval = -EINPROGRESS;
401 goto out;
402 }
403
Rafael J. Wysockiad3c36a2011-09-27 21:54:52 +0200404 if (dev->power.irq_safe) {
405 spin_unlock(&dev->power.lock);
406
407 cpu_relax();
408
409 spin_lock(&dev->power.lock);
410 goto repeat;
411 }
412
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200413 /* Wait for the other suspend running in parallel with us. */
414 for (;;) {
415 prepare_to_wait(&dev->power.wait_queue, &wait,
416 TASK_UNINTERRUPTIBLE);
417 if (dev->power.runtime_status != RPM_SUSPENDING)
418 break;
419
420 spin_unlock_irq(&dev->power.lock);
421
422 schedule();
423
424 spin_lock_irq(&dev->power.lock);
425 }
426 finish_wait(&dev->power.wait_queue, &wait);
427 goto repeat;
428 }
429
Alan Stern7490e442010-09-25 23:35:15 +0200430 dev->power.deferred_resume = false;
431 if (dev->power.no_callbacks)
432 goto no_callback; /* Assume success. */
433
Alan Stern1bfee5b2010-09-25 23:35:00 +0200434 /* Carry out an asynchronous or a synchronous suspend. */
435 if (rpmflags & RPM_ASYNC) {
Alan Stern15bcb912010-09-25 23:35:21 +0200436 dev->power.request = (rpmflags & RPM_AUTO) ?
437 RPM_REQ_AUTOSUSPEND : RPM_REQ_SUSPEND;
Alan Stern1bfee5b2010-09-25 23:35:00 +0200438 if (!dev->power.request_pending) {
439 dev->power.request_pending = true;
440 queue_work(pm_wq, &dev->power.work);
441 }
442 goto out;
443 }
444
Rafael J. Wysocki00dc9ad2011-12-01 00:01:31 +0100445 qos.constraint_ns = __dev_pm_qos_read_value(dev);
446 if (qos.constraint_ns < 0) {
447 /* Negative constraint means "never suspend". */
448 retval = -EPERM;
449 goto out;
450 }
451 qos.constraint_ns *= NSEC_PER_USEC;
452 qos.time_now = ktime_get();
453
Arjan van de Ven8d4b9d12010-07-19 02:01:06 +0200454 __update_runtime_status(dev, RPM_SUSPENDING);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200455
Rafael J. Wysocki00dc9ad2011-12-01 00:01:31 +0100456 if (!dev->power.ignore_children) {
457 if (dev->power.irq_safe)
458 spin_unlock(&dev->power.lock);
459 else
460 spin_unlock_irq(&dev->power.lock);
461
462 retval = device_for_each_child(dev, &qos,
463 rpm_update_qos_constraint);
464
465 if (dev->power.irq_safe)
466 spin_lock(&dev->power.lock);
467 else
468 spin_lock_irq(&dev->power.lock);
469
470 if (retval)
471 goto fail;
472 }
473
474 dev->power.suspend_time = qos.time_now;
475 dev->power.max_time_suspended_ns = qos.constraint_ns ? : -1;
476
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200477 if (dev->pm_domain)
478 callback = dev->pm_domain->ops.runtime_suspend;
Rafael J. Wysocki4d27e9d2011-04-29 00:35:50 +0200479 else if (dev->type && dev->type->pm)
Rafael J. Wysocki71c63122010-10-04 22:08:01 +0200480 callback = dev->type->pm->runtime_suspend;
481 else if (dev->class && dev->class->pm)
482 callback = dev->class->pm->runtime_suspend;
Rafael J. Wysocki9659cc02011-02-18 23:20:21 +0100483 else if (dev->bus && dev->bus->pm)
484 callback = dev->bus->pm->runtime_suspend;
Rafael J. Wysocki71c63122010-10-04 22:08:01 +0200485 else
486 callback = NULL;
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200487
Rafael J. Wysocki71c63122010-10-04 22:08:01 +0200488 retval = rpm_callback(callback, dev);
Rafael J. Wysocki00dc9ad2011-12-01 00:01:31 +0100489 if (retval)
490 goto fail;
Alan Stern886486b2011-11-03 23:39:18 +0100491
Alan Stern7490e442010-09-25 23:35:15 +0200492 no_callback:
Ming Lei857b36c2011-10-12 22:59:33 +0200493 __update_runtime_status(dev, RPM_SUSPENDED);
494 pm_runtime_deactivate_timer(dev);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200495
Ming Lei857b36c2011-10-12 22:59:33 +0200496 if (dev->parent) {
497 parent = dev->parent;
498 atomic_add_unless(&parent->power.child_count, -1, 0);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200499 }
500 wake_up_all(&dev->power.wait_queue);
501
502 if (dev->power.deferred_resume) {
Alan Stern140a6c92010-09-25 23:35:07 +0200503 rpm_resume(dev, 0);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200504 retval = -EAGAIN;
505 goto out;
506 }
507
Alan Sternc3810c82011-01-25 20:50:07 +0100508 /* Maybe the parent is now able to suspend. */
Alan Sternc7b61de2010-12-01 00:14:42 +0100509 if (parent && !parent->power.ignore_children && !dev->power.irq_safe) {
Alan Sternc3810c82011-01-25 20:50:07 +0100510 spin_unlock(&dev->power.lock);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200511
Alan Sternc3810c82011-01-25 20:50:07 +0100512 spin_lock(&parent->power.lock);
513 rpm_idle(parent, RPM_ASYNC);
514 spin_unlock(&parent->power.lock);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200515
Alan Sternc3810c82011-01-25 20:50:07 +0100516 spin_lock(&dev->power.lock);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200517 }
518
519 out:
Ming Leic3dc2f12011-09-27 22:54:41 +0200520 trace_rpm_return_int(dev, _THIS_IP_, retval);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200521
522 return retval;
Rafael J. Wysocki00dc9ad2011-12-01 00:01:31 +0100523
524 fail:
525 __update_runtime_status(dev, RPM_ACTIVE);
526 dev->power.suspend_time = ktime_set(0, 0);
527 dev->power.max_time_suspended_ns = -1;
528 dev->power.deferred_resume = false;
529 if (retval == -EAGAIN || retval == -EBUSY) {
530 dev->power.runtime_error = 0;
531
532 /*
533 * If the callback routine failed an autosuspend, and
534 * if the last_busy time has been updated so that there
535 * is a new autosuspend expiration time, automatically
536 * reschedule another autosuspend.
537 */
538 if ((rpmflags & RPM_AUTO) &&
539 pm_runtime_autosuspend_expiration(dev) != 0)
540 goto repeat;
541 } else {
542 pm_runtime_cancel_pending(dev);
543 }
544 wake_up_all(&dev->power.wait_queue);
545 goto out;
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200546}
547
548/**
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +0200549 * rpm_resume - Carry out runtime resume of given device.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200550 * @dev: Device to resume.
Alan Stern3f9af052010-09-25 23:34:54 +0200551 * @rpmflags: Flag bits.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200552 *
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +0200553 * Check if the device's runtime PM status allows it to be resumed. Cancel
Alan Stern1bfee5b2010-09-25 23:35:00 +0200554 * any scheduled or pending requests. If another resume has been started
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300555 * earlier, either return immediately or wait for it to finish, depending on the
Alan Stern1bfee5b2010-09-25 23:35:00 +0200556 * RPM_NOWAIT and RPM_ASYNC flags. Similarly, if there's a suspend running in
557 * parallel with this function, either tell the other process to resume after
558 * suspending (deferred_resume) or wait for it to finish. If the RPM_ASYNC
559 * flag is set then queue a resume request; otherwise run the
560 * ->runtime_resume() callback directly. Queue an idle notification for the
561 * device if the resume succeeded.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200562 *
563 * This function must be called under dev->power.lock with interrupts disabled.
564 */
Alan Stern140a6c92010-09-25 23:35:07 +0200565static int rpm_resume(struct device *dev, int rpmflags)
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200566 __releases(&dev->power.lock) __acquires(&dev->power.lock)
567{
Rafael J. Wysocki71c63122010-10-04 22:08:01 +0200568 int (*callback)(struct device *);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200569 struct device *parent = NULL;
570 int retval = 0;
571
Ming Leic3dc2f12011-09-27 22:54:41 +0200572 trace_rpm_resume(dev, rpmflags);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200573
574 repeat:
Alan Stern1bfee5b2010-09-25 23:35:00 +0200575 if (dev->power.runtime_error)
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200576 retval = -EINVAL;
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200577 else if (dev->power.disable_depth > 0)
Rafael J. Wysocki632e2702011-07-01 22:29:15 +0200578 retval = -EACCES;
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200579 if (retval)
580 goto out;
581
Alan Stern15bcb912010-09-25 23:35:21 +0200582 /*
583 * Other scheduled or pending requests need to be canceled. Small
584 * optimization: If an autosuspend timer is running, leave it running
585 * rather than cancelling it now only to restart it again in the near
586 * future.
587 */
588 dev->power.request = RPM_REQ_NONE;
589 if (!dev->power.timer_autosuspends)
590 pm_runtime_deactivate_timer(dev);
Alan Stern1bfee5b2010-09-25 23:35:00 +0200591
592 if (dev->power.runtime_status == RPM_ACTIVE) {
593 retval = 1;
594 goto out;
595 }
596
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200597 if (dev->power.runtime_status == RPM_RESUMING
598 || dev->power.runtime_status == RPM_SUSPENDING) {
599 DEFINE_WAIT(wait);
600
Alan Stern1bfee5b2010-09-25 23:35:00 +0200601 if (rpmflags & (RPM_ASYNC | RPM_NOWAIT)) {
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200602 if (dev->power.runtime_status == RPM_SUSPENDING)
603 dev->power.deferred_resume = true;
Alan Stern1bfee5b2010-09-25 23:35:00 +0200604 else
605 retval = -EINPROGRESS;
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200606 goto out;
607 }
608
Rafael J. Wysockiad3c36a2011-09-27 21:54:52 +0200609 if (dev->power.irq_safe) {
610 spin_unlock(&dev->power.lock);
611
612 cpu_relax();
613
614 spin_lock(&dev->power.lock);
615 goto repeat;
616 }
617
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200618 /* Wait for the operation carried out in parallel with us. */
619 for (;;) {
620 prepare_to_wait(&dev->power.wait_queue, &wait,
621 TASK_UNINTERRUPTIBLE);
622 if (dev->power.runtime_status != RPM_RESUMING
623 && dev->power.runtime_status != RPM_SUSPENDING)
624 break;
625
626 spin_unlock_irq(&dev->power.lock);
627
628 schedule();
629
630 spin_lock_irq(&dev->power.lock);
631 }
632 finish_wait(&dev->power.wait_queue, &wait);
633 goto repeat;
634 }
635
Alan Stern7490e442010-09-25 23:35:15 +0200636 /*
637 * See if we can skip waking up the parent. This is safe only if
638 * power.no_callbacks is set, because otherwise we don't know whether
639 * the resume will actually succeed.
640 */
641 if (dev->power.no_callbacks && !parent && dev->parent) {
Ming Leid63be5f2010-10-22 23:48:14 +0200642 spin_lock_nested(&dev->parent->power.lock, SINGLE_DEPTH_NESTING);
Alan Stern7490e442010-09-25 23:35:15 +0200643 if (dev->parent->power.disable_depth > 0
644 || dev->parent->power.ignore_children
645 || dev->parent->power.runtime_status == RPM_ACTIVE) {
646 atomic_inc(&dev->parent->power.child_count);
647 spin_unlock(&dev->parent->power.lock);
648 goto no_callback; /* Assume success. */
649 }
650 spin_unlock(&dev->parent->power.lock);
651 }
652
Alan Stern1bfee5b2010-09-25 23:35:00 +0200653 /* Carry out an asynchronous or a synchronous resume. */
654 if (rpmflags & RPM_ASYNC) {
655 dev->power.request = RPM_REQ_RESUME;
656 if (!dev->power.request_pending) {
657 dev->power.request_pending = true;
658 queue_work(pm_wq, &dev->power.work);
659 }
660 retval = 0;
661 goto out;
662 }
663
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200664 if (!parent && dev->parent) {
665 /*
Alan Sternc7b61de2010-12-01 00:14:42 +0100666 * Increment the parent's usage counter and resume it if
667 * necessary. Not needed if dev is irq-safe; then the
668 * parent is permanently resumed.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200669 */
670 parent = dev->parent;
Alan Sternc7b61de2010-12-01 00:14:42 +0100671 if (dev->power.irq_safe)
672 goto skip_parent;
Alan Stern862f89b2009-11-25 01:06:37 +0100673 spin_unlock(&dev->power.lock);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200674
675 pm_runtime_get_noresume(parent);
676
Alan Stern862f89b2009-11-25 01:06:37 +0100677 spin_lock(&parent->power.lock);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200678 /*
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +0200679 * We can resume if the parent's runtime PM is disabled or it
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200680 * is set to ignore children.
681 */
682 if (!parent->power.disable_depth
683 && !parent->power.ignore_children) {
Alan Stern140a6c92010-09-25 23:35:07 +0200684 rpm_resume(parent, 0);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200685 if (parent->power.runtime_status != RPM_ACTIVE)
686 retval = -EBUSY;
687 }
Alan Stern862f89b2009-11-25 01:06:37 +0100688 spin_unlock(&parent->power.lock);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200689
Alan Stern862f89b2009-11-25 01:06:37 +0100690 spin_lock(&dev->power.lock);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200691 if (retval)
692 goto out;
693 goto repeat;
694 }
Alan Sternc7b61de2010-12-01 00:14:42 +0100695 skip_parent:
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200696
Alan Stern7490e442010-09-25 23:35:15 +0200697 if (dev->power.no_callbacks)
698 goto no_callback; /* Assume success. */
699
Rafael J. Wysocki00dc9ad2011-12-01 00:01:31 +0100700 dev->power.suspend_time = ktime_set(0, 0);
701 dev->power.max_time_suspended_ns = -1;
702
Arjan van de Ven8d4b9d12010-07-19 02:01:06 +0200703 __update_runtime_status(dev, RPM_RESUMING);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200704
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200705 if (dev->pm_domain)
706 callback = dev->pm_domain->ops.runtime_resume;
Rafael J. Wysocki4d27e9d2011-04-29 00:35:50 +0200707 else if (dev->type && dev->type->pm)
Rafael J. Wysocki71c63122010-10-04 22:08:01 +0200708 callback = dev->type->pm->runtime_resume;
709 else if (dev->class && dev->class->pm)
710 callback = dev->class->pm->runtime_resume;
Rafael J. Wysocki9659cc02011-02-18 23:20:21 +0100711 else if (dev->bus && dev->bus->pm)
712 callback = dev->bus->pm->runtime_resume;
Rafael J. Wysocki71c63122010-10-04 22:08:01 +0200713 else
714 callback = NULL;
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200715
Rafael J. Wysocki71c63122010-10-04 22:08:01 +0200716 retval = rpm_callback(callback, dev);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200717 if (retval) {
Arjan van de Ven8d4b9d12010-07-19 02:01:06 +0200718 __update_runtime_status(dev, RPM_SUSPENDED);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200719 pm_runtime_cancel_pending(dev);
720 } else {
Alan Stern7490e442010-09-25 23:35:15 +0200721 no_callback:
Arjan van de Ven8d4b9d12010-07-19 02:01:06 +0200722 __update_runtime_status(dev, RPM_ACTIVE);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200723 if (parent)
724 atomic_inc(&parent->power.child_count);
725 }
726 wake_up_all(&dev->power.wait_queue);
727
728 if (!retval)
Alan Stern140a6c92010-09-25 23:35:07 +0200729 rpm_idle(dev, RPM_ASYNC);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200730
731 out:
Alan Sternc7b61de2010-12-01 00:14:42 +0100732 if (parent && !dev->power.irq_safe) {
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200733 spin_unlock_irq(&dev->power.lock);
734
735 pm_runtime_put(parent);
736
737 spin_lock_irq(&dev->power.lock);
738 }
739
Ming Leic3dc2f12011-09-27 22:54:41 +0200740 trace_rpm_return_int(dev, _THIS_IP_, retval);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200741
742 return retval;
743}
744
745/**
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +0200746 * pm_runtime_work - Universal runtime PM work function.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200747 * @work: Work structure used for scheduling the execution of this function.
748 *
749 * Use @work to get the device object the work is to be done for, determine what
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +0200750 * is to be done and execute the appropriate runtime PM function.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200751 */
752static void pm_runtime_work(struct work_struct *work)
753{
754 struct device *dev = container_of(work, struct device, power.work);
755 enum rpm_request req;
756
757 spin_lock_irq(&dev->power.lock);
758
759 if (!dev->power.request_pending)
760 goto out;
761
762 req = dev->power.request;
763 dev->power.request = RPM_REQ_NONE;
764 dev->power.request_pending = false;
765
766 switch (req) {
767 case RPM_REQ_NONE:
768 break;
769 case RPM_REQ_IDLE:
Alan Stern140a6c92010-09-25 23:35:07 +0200770 rpm_idle(dev, RPM_NOWAIT);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200771 break;
772 case RPM_REQ_SUSPEND:
Alan Stern140a6c92010-09-25 23:35:07 +0200773 rpm_suspend(dev, RPM_NOWAIT);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200774 break;
Alan Stern15bcb912010-09-25 23:35:21 +0200775 case RPM_REQ_AUTOSUSPEND:
776 rpm_suspend(dev, RPM_NOWAIT | RPM_AUTO);
777 break;
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200778 case RPM_REQ_RESUME:
Alan Stern140a6c92010-09-25 23:35:07 +0200779 rpm_resume(dev, RPM_NOWAIT);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200780 break;
781 }
782
783 out:
784 spin_unlock_irq(&dev->power.lock);
785}
786
787/**
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200788 * pm_suspend_timer_fn - Timer function for pm_schedule_suspend().
789 * @data: Device pointer passed by pm_schedule_suspend().
790 *
Alan Stern1bfee5b2010-09-25 23:35:00 +0200791 * Check if the time is right and queue a suspend request.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200792 */
793static void pm_suspend_timer_fn(unsigned long data)
794{
795 struct device *dev = (struct device *)data;
796 unsigned long flags;
797 unsigned long expires;
798
799 spin_lock_irqsave(&dev->power.lock, flags);
800
801 expires = dev->power.timer_expires;
802 /* If 'expire' is after 'jiffies' we've been called too early. */
803 if (expires > 0 && !time_after(expires, jiffies)) {
804 dev->power.timer_expires = 0;
Alan Stern15bcb912010-09-25 23:35:21 +0200805 rpm_suspend(dev, dev->power.timer_autosuspends ?
806 (RPM_ASYNC | RPM_AUTO) : RPM_ASYNC);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200807 }
808
809 spin_unlock_irqrestore(&dev->power.lock, flags);
810}
811
812/**
813 * pm_schedule_suspend - Set up a timer to submit a suspend request in future.
814 * @dev: Device to suspend.
815 * @delay: Time to wait before submitting a suspend request, in milliseconds.
816 */
817int pm_schedule_suspend(struct device *dev, unsigned int delay)
818{
819 unsigned long flags;
Alan Stern1bfee5b2010-09-25 23:35:00 +0200820 int retval;
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200821
822 spin_lock_irqsave(&dev->power.lock, flags);
823
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200824 if (!delay) {
Alan Stern140a6c92010-09-25 23:35:07 +0200825 retval = rpm_suspend(dev, RPM_ASYNC);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200826 goto out;
827 }
828
Alan Stern1bfee5b2010-09-25 23:35:00 +0200829 retval = rpm_check_suspend_allowed(dev);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200830 if (retval)
831 goto out;
832
Alan Stern1bfee5b2010-09-25 23:35:00 +0200833 /* Other scheduled or pending requests need to be canceled. */
834 pm_runtime_cancel_pending(dev);
835
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200836 dev->power.timer_expires = jiffies + msecs_to_jiffies(delay);
Alan Stern1bfee5b2010-09-25 23:35:00 +0200837 dev->power.timer_expires += !dev->power.timer_expires;
Alan Stern15bcb912010-09-25 23:35:21 +0200838 dev->power.timer_autosuspends = 0;
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200839 mod_timer(&dev->power.suspend_timer, dev->power.timer_expires);
840
841 out:
842 spin_unlock_irqrestore(&dev->power.lock, flags);
843
844 return retval;
845}
846EXPORT_SYMBOL_GPL(pm_schedule_suspend);
847
848/**
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +0200849 * __pm_runtime_idle - Entry point for runtime idle operations.
Alan Stern140a6c92010-09-25 23:35:07 +0200850 * @dev: Device to send idle notification for.
851 * @rpmflags: Flag bits.
852 *
853 * If the RPM_GET_PUT flag is set, decrement the device's usage count and
854 * return immediately if it is larger than zero. Then carry out an idle
855 * notification, either synchronous or asynchronous.
856 *
Colin Cross311aab72011-08-08 23:39:36 +0200857 * This routine may be called in atomic context if the RPM_ASYNC flag is set,
858 * or if pm_runtime_irq_safe() has been called.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200859 */
Alan Stern140a6c92010-09-25 23:35:07 +0200860int __pm_runtime_idle(struct device *dev, int rpmflags)
861{
862 unsigned long flags;
863 int retval;
864
Colin Cross311aab72011-08-08 23:39:36 +0200865 might_sleep_if(!(rpmflags & RPM_ASYNC) && !dev->power.irq_safe);
866
Alan Stern140a6c92010-09-25 23:35:07 +0200867 if (rpmflags & RPM_GET_PUT) {
868 if (!atomic_dec_and_test(&dev->power.usage_count))
869 return 0;
870 }
871
872 spin_lock_irqsave(&dev->power.lock, flags);
873 retval = rpm_idle(dev, rpmflags);
874 spin_unlock_irqrestore(&dev->power.lock, flags);
875
876 return retval;
877}
878EXPORT_SYMBOL_GPL(__pm_runtime_idle);
879
880/**
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +0200881 * __pm_runtime_suspend - Entry point for runtime put/suspend operations.
Alan Stern140a6c92010-09-25 23:35:07 +0200882 * @dev: Device to suspend.
883 * @rpmflags: Flag bits.
884 *
Alan Stern15bcb912010-09-25 23:35:21 +0200885 * If the RPM_GET_PUT flag is set, decrement the device's usage count and
886 * return immediately if it is larger than zero. Then carry out a suspend,
887 * either synchronous or asynchronous.
Alan Stern140a6c92010-09-25 23:35:07 +0200888 *
Colin Cross311aab72011-08-08 23:39:36 +0200889 * This routine may be called in atomic context if the RPM_ASYNC flag is set,
890 * or if pm_runtime_irq_safe() has been called.
Alan Stern140a6c92010-09-25 23:35:07 +0200891 */
892int __pm_runtime_suspend(struct device *dev, int rpmflags)
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200893{
894 unsigned long flags;
895 int retval;
896
Colin Cross311aab72011-08-08 23:39:36 +0200897 might_sleep_if(!(rpmflags & RPM_ASYNC) && !dev->power.irq_safe);
898
Alan Stern15bcb912010-09-25 23:35:21 +0200899 if (rpmflags & RPM_GET_PUT) {
900 if (!atomic_dec_and_test(&dev->power.usage_count))
901 return 0;
902 }
903
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200904 spin_lock_irqsave(&dev->power.lock, flags);
Alan Stern140a6c92010-09-25 23:35:07 +0200905 retval = rpm_suspend(dev, rpmflags);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200906 spin_unlock_irqrestore(&dev->power.lock, flags);
907
908 return retval;
909}
Alan Stern140a6c92010-09-25 23:35:07 +0200910EXPORT_SYMBOL_GPL(__pm_runtime_suspend);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200911
912/**
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +0200913 * __pm_runtime_resume - Entry point for runtime resume operations.
Alan Stern140a6c92010-09-25 23:35:07 +0200914 * @dev: Device to resume.
Alan Stern3f9af052010-09-25 23:34:54 +0200915 * @rpmflags: Flag bits.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200916 *
Alan Stern140a6c92010-09-25 23:35:07 +0200917 * If the RPM_GET_PUT flag is set, increment the device's usage count. Then
918 * carry out a resume, either synchronous or asynchronous.
919 *
Colin Cross311aab72011-08-08 23:39:36 +0200920 * This routine may be called in atomic context if the RPM_ASYNC flag is set,
921 * or if pm_runtime_irq_safe() has been called.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200922 */
Alan Stern140a6c92010-09-25 23:35:07 +0200923int __pm_runtime_resume(struct device *dev, int rpmflags)
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200924{
Alan Stern140a6c92010-09-25 23:35:07 +0200925 unsigned long flags;
Alan Stern1d531c12009-12-13 20:28:30 +0100926 int retval;
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200927
Colin Cross311aab72011-08-08 23:39:36 +0200928 might_sleep_if(!(rpmflags & RPM_ASYNC) && !dev->power.irq_safe);
929
Alan Stern140a6c92010-09-25 23:35:07 +0200930 if (rpmflags & RPM_GET_PUT)
931 atomic_inc(&dev->power.usage_count);
932
933 spin_lock_irqsave(&dev->power.lock, flags);
934 retval = rpm_resume(dev, rpmflags);
935 spin_unlock_irqrestore(&dev->power.lock, flags);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200936
937 return retval;
938}
Alan Stern140a6c92010-09-25 23:35:07 +0200939EXPORT_SYMBOL_GPL(__pm_runtime_resume);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200940
941/**
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +0200942 * __pm_runtime_set_status - Set runtime PM status of a device.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200943 * @dev: Device to handle.
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +0200944 * @status: New runtime PM status of the device.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200945 *
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +0200946 * If runtime PM of the device is disabled or its power.runtime_error field is
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200947 * different from zero, the status may be changed either to RPM_ACTIVE, or to
948 * RPM_SUSPENDED, as long as that reflects the actual state of the device.
949 * However, if the device has a parent and the parent is not active, and the
950 * parent's power.ignore_children flag is unset, the device's status cannot be
951 * set to RPM_ACTIVE, so -EBUSY is returned in that case.
952 *
953 * If successful, __pm_runtime_set_status() clears the power.runtime_error field
954 * and the device parent's counter of unsuspended children is modified to
955 * reflect the new status. If the new status is RPM_SUSPENDED, an idle
956 * notification request for the parent is submitted.
957 */
958int __pm_runtime_set_status(struct device *dev, unsigned int status)
959{
960 struct device *parent = dev->parent;
961 unsigned long flags;
962 bool notify_parent = false;
963 int error = 0;
964
965 if (status != RPM_ACTIVE && status != RPM_SUSPENDED)
966 return -EINVAL;
967
968 spin_lock_irqsave(&dev->power.lock, flags);
969
970 if (!dev->power.runtime_error && !dev->power.disable_depth) {
971 error = -EAGAIN;
972 goto out;
973 }
974
975 if (dev->power.runtime_status == status)
976 goto out_set;
977
978 if (status == RPM_SUSPENDED) {
979 /* It always is possible to set the status to 'suspended'. */
980 if (parent) {
981 atomic_add_unless(&parent->power.child_count, -1, 0);
982 notify_parent = !parent->power.ignore_children;
983 }
984 goto out_set;
985 }
986
987 if (parent) {
Rafael J. Wysockibab636b2009-12-03 20:21:21 +0100988 spin_lock_nested(&parent->power.lock, SINGLE_DEPTH_NESTING);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200989
990 /*
991 * It is invalid to put an active child under a parent that is
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +0200992 * not active, has runtime PM enabled and the
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200993 * 'power.ignore_children' flag unset.
994 */
995 if (!parent->power.disable_depth
996 && !parent->power.ignore_children
Rafael J. Wysocki965c4ac2009-12-03 21:04:41 +0100997 && parent->power.runtime_status != RPM_ACTIVE)
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200998 error = -EBUSY;
Rafael J. Wysocki965c4ac2009-12-03 21:04:41 +0100999 else if (dev->power.runtime_status == RPM_SUSPENDED)
1000 atomic_inc(&parent->power.child_count);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +02001001
Alan Stern862f89b2009-11-25 01:06:37 +01001002 spin_unlock(&parent->power.lock);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +02001003
1004 if (error)
1005 goto out;
1006 }
1007
1008 out_set:
Arjan van de Ven8d4b9d12010-07-19 02:01:06 +02001009 __update_runtime_status(dev, status);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +02001010 dev->power.runtime_error = 0;
1011 out:
1012 spin_unlock_irqrestore(&dev->power.lock, flags);
1013
1014 if (notify_parent)
1015 pm_request_idle(parent);
1016
1017 return error;
1018}
1019EXPORT_SYMBOL_GPL(__pm_runtime_set_status);
1020
1021/**
1022 * __pm_runtime_barrier - Cancel pending requests and wait for completions.
1023 * @dev: Device to handle.
1024 *
1025 * Flush all pending requests for the device from pm_wq and wait for all
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +02001026 * runtime PM operations involving the device in progress to complete.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +02001027 *
1028 * Should be called under dev->power.lock with interrupts disabled.
1029 */
1030static void __pm_runtime_barrier(struct device *dev)
1031{
1032 pm_runtime_deactivate_timer(dev);
1033
1034 if (dev->power.request_pending) {
1035 dev->power.request = RPM_REQ_NONE;
1036 spin_unlock_irq(&dev->power.lock);
1037
1038 cancel_work_sync(&dev->power.work);
1039
1040 spin_lock_irq(&dev->power.lock);
1041 dev->power.request_pending = false;
1042 }
1043
1044 if (dev->power.runtime_status == RPM_SUSPENDING
1045 || dev->power.runtime_status == RPM_RESUMING
1046 || dev->power.idle_notification) {
1047 DEFINE_WAIT(wait);
1048
1049 /* Suspend, wake-up or idle notification in progress. */
1050 for (;;) {
1051 prepare_to_wait(&dev->power.wait_queue, &wait,
1052 TASK_UNINTERRUPTIBLE);
1053 if (dev->power.runtime_status != RPM_SUSPENDING
1054 && dev->power.runtime_status != RPM_RESUMING
1055 && !dev->power.idle_notification)
1056 break;
1057 spin_unlock_irq(&dev->power.lock);
1058
1059 schedule();
1060
1061 spin_lock_irq(&dev->power.lock);
1062 }
1063 finish_wait(&dev->power.wait_queue, &wait);
1064 }
1065}
1066
1067/**
1068 * pm_runtime_barrier - Flush pending requests and wait for completions.
1069 * @dev: Device to handle.
1070 *
1071 * Prevent the device from being suspended by incrementing its usage counter and
1072 * if there's a pending resume request for the device, wake the device up.
1073 * Next, make sure that all pending requests for the device have been flushed
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +02001074 * from pm_wq and wait for all runtime PM operations involving the device in
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +02001075 * progress to complete.
1076 *
1077 * Return value:
1078 * 1, if there was a resume request pending and the device had to be woken up,
1079 * 0, otherwise
1080 */
1081int pm_runtime_barrier(struct device *dev)
1082{
1083 int retval = 0;
1084
1085 pm_runtime_get_noresume(dev);
1086 spin_lock_irq(&dev->power.lock);
1087
1088 if (dev->power.request_pending
1089 && dev->power.request == RPM_REQ_RESUME) {
Alan Stern140a6c92010-09-25 23:35:07 +02001090 rpm_resume(dev, 0);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +02001091 retval = 1;
1092 }
1093
1094 __pm_runtime_barrier(dev);
1095
1096 spin_unlock_irq(&dev->power.lock);
1097 pm_runtime_put_noidle(dev);
1098
1099 return retval;
1100}
1101EXPORT_SYMBOL_GPL(pm_runtime_barrier);
1102
1103/**
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +02001104 * __pm_runtime_disable - Disable runtime PM of a device.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +02001105 * @dev: Device to handle.
1106 * @check_resume: If set, check if there's a resume request for the device.
1107 *
1108 * Increment power.disable_depth for the device and if was zero previously,
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +02001109 * cancel all pending runtime PM requests for the device and wait for all
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +02001110 * operations in progress to complete. The device can be either active or
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +02001111 * suspended after its runtime PM has been disabled.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +02001112 *
1113 * If @check_resume is set and there's a resume request pending when
1114 * __pm_runtime_disable() is called and power.disable_depth is zero, the
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +02001115 * function will wake up the device before disabling its runtime PM.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +02001116 */
1117void __pm_runtime_disable(struct device *dev, bool check_resume)
1118{
1119 spin_lock_irq(&dev->power.lock);
1120
1121 if (dev->power.disable_depth > 0) {
1122 dev->power.disable_depth++;
1123 goto out;
1124 }
1125
1126 /*
1127 * Wake up the device if there's a resume request pending, because that
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +02001128 * means there probably is some I/O to process and disabling runtime PM
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +02001129 * shouldn't prevent the device from processing the I/O.
1130 */
1131 if (check_resume && dev->power.request_pending
1132 && dev->power.request == RPM_REQ_RESUME) {
1133 /*
1134 * Prevent suspends and idle notifications from being carried
1135 * out after we have woken up the device.
1136 */
1137 pm_runtime_get_noresume(dev);
1138
Alan Stern140a6c92010-09-25 23:35:07 +02001139 rpm_resume(dev, 0);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +02001140
1141 pm_runtime_put_noidle(dev);
1142 }
1143
1144 if (!dev->power.disable_depth++)
1145 __pm_runtime_barrier(dev);
1146
1147 out:
1148 spin_unlock_irq(&dev->power.lock);
1149}
1150EXPORT_SYMBOL_GPL(__pm_runtime_disable);
1151
1152/**
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +02001153 * pm_runtime_enable - Enable runtime PM of a device.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +02001154 * @dev: Device to handle.
1155 */
1156void pm_runtime_enable(struct device *dev)
1157{
1158 unsigned long flags;
1159
1160 spin_lock_irqsave(&dev->power.lock, flags);
1161
1162 if (dev->power.disable_depth > 0)
1163 dev->power.disable_depth--;
1164 else
1165 dev_warn(dev, "Unbalanced %s!\n", __func__);
1166
1167 spin_unlock_irqrestore(&dev->power.lock, flags);
1168}
1169EXPORT_SYMBOL_GPL(pm_runtime_enable);
1170
1171/**
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +02001172 * pm_runtime_forbid - Block runtime PM of a device.
Rafael J. Wysocki53823632010-01-23 22:02:51 +01001173 * @dev: Device to handle.
1174 *
1175 * Increase the device's usage count and clear its power.runtime_auto flag,
1176 * so that it cannot be suspended at run time until pm_runtime_allow() is called
1177 * for it.
1178 */
1179void pm_runtime_forbid(struct device *dev)
1180{
1181 spin_lock_irq(&dev->power.lock);
1182 if (!dev->power.runtime_auto)
1183 goto out;
1184
1185 dev->power.runtime_auto = false;
1186 atomic_inc(&dev->power.usage_count);
Alan Stern140a6c92010-09-25 23:35:07 +02001187 rpm_resume(dev, 0);
Rafael J. Wysocki53823632010-01-23 22:02:51 +01001188
1189 out:
1190 spin_unlock_irq(&dev->power.lock);
1191}
1192EXPORT_SYMBOL_GPL(pm_runtime_forbid);
1193
1194/**
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +02001195 * pm_runtime_allow - Unblock runtime PM of a device.
Rafael J. Wysocki53823632010-01-23 22:02:51 +01001196 * @dev: Device to handle.
1197 *
1198 * Decrease the device's usage count and set its power.runtime_auto flag.
1199 */
1200void pm_runtime_allow(struct device *dev)
1201{
1202 spin_lock_irq(&dev->power.lock);
1203 if (dev->power.runtime_auto)
1204 goto out;
1205
1206 dev->power.runtime_auto = true;
1207 if (atomic_dec_and_test(&dev->power.usage_count))
Alan Stern15bcb912010-09-25 23:35:21 +02001208 rpm_idle(dev, RPM_AUTO);
Rafael J. Wysocki53823632010-01-23 22:02:51 +01001209
1210 out:
1211 spin_unlock_irq(&dev->power.lock);
1212}
1213EXPORT_SYMBOL_GPL(pm_runtime_allow);
1214
1215/**
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +02001216 * pm_runtime_no_callbacks - Ignore runtime PM callbacks for a device.
Alan Stern7490e442010-09-25 23:35:15 +02001217 * @dev: Device to handle.
1218 *
1219 * Set the power.no_callbacks flag, which tells the PM core that this
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +02001220 * device is power-managed through its parent and has no runtime PM
1221 * callbacks of its own. The runtime sysfs attributes will be removed.
Alan Stern7490e442010-09-25 23:35:15 +02001222 */
1223void pm_runtime_no_callbacks(struct device *dev)
1224{
1225 spin_lock_irq(&dev->power.lock);
1226 dev->power.no_callbacks = 1;
1227 spin_unlock_irq(&dev->power.lock);
1228 if (device_is_registered(dev))
1229 rpm_sysfs_remove(dev);
1230}
1231EXPORT_SYMBOL_GPL(pm_runtime_no_callbacks);
1232
1233/**
Alan Sternc7b61de2010-12-01 00:14:42 +01001234 * pm_runtime_irq_safe - Leave interrupts disabled during callbacks.
1235 * @dev: Device to handle
1236 *
1237 * Set the power.irq_safe flag, which tells the PM core that the
1238 * ->runtime_suspend() and ->runtime_resume() callbacks for this device should
1239 * always be invoked with the spinlock held and interrupts disabled. It also
1240 * causes the parent's usage counter to be permanently incremented, preventing
1241 * the parent from runtime suspending -- otherwise an irq-safe child might have
1242 * to wait for a non-irq-safe parent.
1243 */
1244void pm_runtime_irq_safe(struct device *dev)
1245{
1246 if (dev->parent)
1247 pm_runtime_get_sync(dev->parent);
1248 spin_lock_irq(&dev->power.lock);
1249 dev->power.irq_safe = 1;
1250 spin_unlock_irq(&dev->power.lock);
1251}
1252EXPORT_SYMBOL_GPL(pm_runtime_irq_safe);
1253
1254/**
Alan Stern15bcb912010-09-25 23:35:21 +02001255 * update_autosuspend - Handle a change to a device's autosuspend settings.
1256 * @dev: Device to handle.
1257 * @old_delay: The former autosuspend_delay value.
1258 * @old_use: The former use_autosuspend value.
1259 *
1260 * Prevent runtime suspend if the new delay is negative and use_autosuspend is
1261 * set; otherwise allow it. Send an idle notification if suspends are allowed.
1262 *
1263 * This function must be called under dev->power.lock with interrupts disabled.
1264 */
1265static void update_autosuspend(struct device *dev, int old_delay, int old_use)
1266{
1267 int delay = dev->power.autosuspend_delay;
1268
1269 /* Should runtime suspend be prevented now? */
1270 if (dev->power.use_autosuspend && delay < 0) {
1271
1272 /* If it used to be allowed then prevent it. */
1273 if (!old_use || old_delay >= 0) {
1274 atomic_inc(&dev->power.usage_count);
1275 rpm_resume(dev, 0);
1276 }
1277 }
1278
1279 /* Runtime suspend should be allowed now. */
1280 else {
1281
1282 /* If it used to be prevented then allow it. */
1283 if (old_use && old_delay < 0)
1284 atomic_dec(&dev->power.usage_count);
1285
1286 /* Maybe we can autosuspend now. */
1287 rpm_idle(dev, RPM_AUTO);
1288 }
1289}
1290
1291/**
1292 * pm_runtime_set_autosuspend_delay - Set a device's autosuspend_delay value.
1293 * @dev: Device to handle.
1294 * @delay: Value of the new delay in milliseconds.
1295 *
1296 * Set the device's power.autosuspend_delay value. If it changes to negative
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +02001297 * and the power.use_autosuspend flag is set, prevent runtime suspends. If it
1298 * changes the other way, allow runtime suspends.
Alan Stern15bcb912010-09-25 23:35:21 +02001299 */
1300void pm_runtime_set_autosuspend_delay(struct device *dev, int delay)
1301{
1302 int old_delay, old_use;
1303
1304 spin_lock_irq(&dev->power.lock);
1305 old_delay = dev->power.autosuspend_delay;
1306 old_use = dev->power.use_autosuspend;
1307 dev->power.autosuspend_delay = delay;
1308 update_autosuspend(dev, old_delay, old_use);
1309 spin_unlock_irq(&dev->power.lock);
1310}
1311EXPORT_SYMBOL_GPL(pm_runtime_set_autosuspend_delay);
1312
1313/**
1314 * __pm_runtime_use_autosuspend - Set a device's use_autosuspend flag.
1315 * @dev: Device to handle.
1316 * @use: New value for use_autosuspend.
1317 *
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +02001318 * Set the device's power.use_autosuspend flag, and allow or prevent runtime
Alan Stern15bcb912010-09-25 23:35:21 +02001319 * suspends as needed.
1320 */
1321void __pm_runtime_use_autosuspend(struct device *dev, bool use)
1322{
1323 int old_delay, old_use;
1324
1325 spin_lock_irq(&dev->power.lock);
1326 old_delay = dev->power.autosuspend_delay;
1327 old_use = dev->power.use_autosuspend;
1328 dev->power.use_autosuspend = use;
1329 update_autosuspend(dev, old_delay, old_use);
1330 spin_unlock_irq(&dev->power.lock);
1331}
1332EXPORT_SYMBOL_GPL(__pm_runtime_use_autosuspend);
1333
1334/**
Rafael J. Wysocki62052ab2011-07-06 10:52:13 +02001335 * pm_runtime_init - Initialize runtime PM fields in given device object.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +02001336 * @dev: Device object to initialize.
1337 */
1338void pm_runtime_init(struct device *dev)
1339{
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +02001340 dev->power.runtime_status = RPM_SUSPENDED;
1341 dev->power.idle_notification = false;
1342
1343 dev->power.disable_depth = 1;
1344 atomic_set(&dev->power.usage_count, 0);
1345
1346 dev->power.runtime_error = 0;
1347
1348 atomic_set(&dev->power.child_count, 0);
1349 pm_suspend_ignore_children(dev, false);
Rafael J. Wysocki53823632010-01-23 22:02:51 +01001350 dev->power.runtime_auto = true;
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +02001351
1352 dev->power.request_pending = false;
1353 dev->power.request = RPM_REQ_NONE;
1354 dev->power.deferred_resume = false;
Arjan van de Ven8d4b9d12010-07-19 02:01:06 +02001355 dev->power.accounting_timestamp = jiffies;
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +02001356 INIT_WORK(&dev->power.work, pm_runtime_work);
1357
1358 dev->power.timer_expires = 0;
1359 setup_timer(&dev->power.suspend_timer, pm_suspend_timer_fn,
1360 (unsigned long)dev);
1361
Rafael J. Wysocki00dc9ad2011-12-01 00:01:31 +01001362 dev->power.suspend_time = ktime_set(0, 0);
1363 dev->power.max_time_suspended_ns = -1;
1364
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +02001365 init_waitqueue_head(&dev->power.wait_queue);
1366}
1367
1368/**
1369 * pm_runtime_remove - Prepare for removing a device from device hierarchy.
1370 * @dev: Device object being removed from device hierarchy.
1371 */
1372void pm_runtime_remove(struct device *dev)
1373{
1374 __pm_runtime_disable(dev, false);
1375
1376 /* Change the status back to 'suspended' to match the initial status. */
1377 if (dev->power.runtime_status == RPM_ACTIVE)
1378 pm_runtime_set_suspended(dev);
Alan Sternc7b61de2010-12-01 00:14:42 +01001379 if (dev->power.irq_safe && dev->parent)
1380 pm_runtime_put_sync(dev->parent);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +02001381}
Rafael J. Wysocki00dc9ad2011-12-01 00:01:31 +01001382
1383/**
1384 * pm_runtime_update_max_time_suspended - Update device's suspend time data.
1385 * @dev: Device to handle.
1386 * @delta_ns: Value to subtract from the device's max_time_suspended_ns field.
1387 *
1388 * Update the device's power.max_time_suspended_ns field by subtracting
1389 * @delta_ns from it. The resulting value of power.max_time_suspended_ns is
1390 * never negative.
1391 */
1392void pm_runtime_update_max_time_suspended(struct device *dev, s64 delta_ns)
1393{
1394 unsigned long flags;
1395
1396 spin_lock_irqsave(&dev->power.lock, flags);
1397
1398 if (delta_ns > 0 && dev->power.max_time_suspended_ns > 0) {
1399 if (dev->power.max_time_suspended_ns > delta_ns)
1400 dev->power.max_time_suspended_ns -= delta_ns;
1401 else
1402 dev->power.max_time_suspended_ns = 0;
1403 }
1404
1405 spin_unlock_irqrestore(&dev->power.lock, flags);
1406}