ide/ata: Add module.h to the implicit modular users
[linux-2.6-block.git] / drivers / base / power / runtime.c
CommitLineData
5e928f77 1/*
62052ab1 2 * drivers/base/power/runtime.c - Helper functions for device runtime PM
5e928f77
RW
3 *
4 * Copyright (c) 2009 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc.
1bfee5bc 5 * Copyright (C) 2010 Alan Stern <stern@rowland.harvard.edu>
5e928f77
RW
6 *
7 * This file is released under the GPLv2.
8 */
9
10#include <linux/sched.h>
11#include <linux/pm_runtime.h>
c3dc2f14 12#include <trace/events/rpm.h>
7490e442 13#include "power.h"
5e928f77 14
140a6c94 15static int rpm_resume(struct device *dev, int rpmflags);
7490e442 16static int rpm_suspend(struct device *dev, int rpmflags);
5e928f77 17
4769373c
AS
18/**
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 */
29void 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
50static 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
5e928f77
RW
56/**
57 * pm_runtime_deactivate_timer - Deactivate given device's suspend timer.
58 * @dev: Device to handle.
59 */
60static 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 */
72static 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
15bcb91d
AS
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 */
94unsigned 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}
127EXPORT_SYMBOL_GPL(pm_runtime_autosuspend_expiration);
128
5e928f77 129/**
1bfee5bc
AS
130 * rpm_check_suspend_allowed - Test whether a device may be suspended.
131 * @dev: Device to test.
5e928f77 132 */
1bfee5bc 133static int rpm_check_suspend_allowed(struct device *dev)
5e928f77
RW
134{
135 int retval = 0;
136
5e928f77
RW
137 if (dev->power.runtime_error)
138 retval = -EINVAL;
632e270e
RW
139 else if (dev->power.disable_depth > 0)
140 retval = -EACCES;
141 else if (atomic_read(&dev->power.usage_count) > 0)
5e928f77
RW
142 retval = -EAGAIN;
143 else if (!pm_children_suspended(dev))
144 retval = -EBUSY;
1bfee5bc
AS
145
146 /* Pending resume requests take precedence over suspends. */
147 else if ((dev->power.deferred_resume
78ca7c37 148 && dev->power.runtime_status == RPM_SUSPENDING)
1bfee5bc
AS
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
ad3c36a5
RW
158/**
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 */
163static 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
1bfee5bc 183/**
140a6c94 184 * rpm_idle - Notify device bus type if the device can be suspended.
1bfee5bc
AS
185 * @dev: Device to notify the bus type about.
186 * @rpmflags: Flag bits.
187 *
62052ab1 188 * Check if the device's runtime PM status allows it to be suspended. If
1bfee5bc
AS
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 */
140a6c94 195static int rpm_idle(struct device *dev, int rpmflags)
1bfee5bc 196{
71c63122 197 int (*callback)(struct device *);
1bfee5bc
AS
198 int retval;
199
c3dc2f14 200 trace_rpm_idle(dev, rpmflags);
1bfee5bc
AS
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;
5e928f77
RW
220 if (retval)
221 goto out;
222
1bfee5bc
AS
223 /* Pending requests need to be canceled. */
224 dev->power.request = RPM_REQ_NONE;
225
7490e442
AS
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
1bfee5bc
AS
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);
5e928f77 238 }
1bfee5bc 239 goto out;
5e928f77
RW
240 }
241
242 dev->power.idle_notification = true;
243
564b905a
RW
244 if (dev->pm_domain)
245 callback = dev->pm_domain->ops.runtime_idle;
4d27e9dc 246 else if (dev->type && dev->type->pm)
71c63122
RW
247 callback = dev->type->pm->runtime_idle;
248 else if (dev->class && dev->class->pm)
249 callback = dev->class->pm->runtime_idle;
9659cc06
RW
250 else if (dev->bus && dev->bus->pm)
251 callback = dev->bus->pm->runtime_idle;
71c63122
RW
252 else
253 callback = NULL;
a6ab7aa9 254
ad3c36a5
RW
255 if (callback)
256 __rpm_callback(callback, dev);
5e928f77
RW
257
258 dev->power.idle_notification = false;
259 wake_up_all(&dev->power.wait_queue);
260
261 out:
c3dc2f14 262 trace_rpm_return_int(dev, _THIS_IP_, retval);
5e928f77
RW
263 return retval;
264}
265
71c63122
RW
266/**
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 */
271static int rpm_callback(int (*cb)(struct device *), struct device *dev)
71c63122
RW
272{
273 int retval;
274
275 if (!cb)
276 return -ENOSYS;
277
ad3c36a5 278 retval = __rpm_callback(cb, dev);
71c63122 279
71c63122 280 dev->power.runtime_error = retval;
632e270e 281 return retval != -EACCES ? retval : -EIO;
71c63122
RW
282}
283
5e928f77 284/**
62052ab1 285 * rpm_suspend - Carry out runtime suspend of given device.
5e928f77 286 * @dev: Device to suspend.
3f9af051 287 * @rpmflags: Flag bits.
5e928f77 288 *
47d8f0ba
ML
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;
857b36c7
ML
294 * otherwise run the ->runtime_suspend() callback directly. When
295 * ->runtime_suspend succeeded, if a deferred resume was requested while
296 * the callback was running then carry it out, otherwise send an idle
297 * notification for its parent (if the suspend succeeded and both
298 * ignore_children of parent->power and irq_safe of dev->power are not set).
5e928f77
RW
299 *
300 * This function must be called under dev->power.lock with interrupts disabled.
301 */
140a6c94 302static int rpm_suspend(struct device *dev, int rpmflags)
5e928f77
RW
303 __releases(&dev->power.lock) __acquires(&dev->power.lock)
304{
71c63122 305 int (*callback)(struct device *);
5e928f77 306 struct device *parent = NULL;
1bfee5bc 307 int retval;
5e928f77 308
c3dc2f14 309 trace_rpm_suspend(dev, rpmflags);
5e928f77
RW
310
311 repeat:
1bfee5bc 312 retval = rpm_check_suspend_allowed(dev);
5e928f77 313
1bfee5bc
AS
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))
5e928f77 320 retval = -EAGAIN;
1bfee5bc 321 if (retval)
5e928f77 322 goto out;
5e928f77 323
15bcb91d
AS
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
5e928f77
RW
350 /* Other scheduled or pending requests need to be canceled. */
351 pm_runtime_cancel_pending(dev);
352
5e928f77
RW
353 if (dev->power.runtime_status == RPM_SUSPENDING) {
354 DEFINE_WAIT(wait);
355
1bfee5bc 356 if (rpmflags & (RPM_ASYNC | RPM_NOWAIT)) {
5e928f77
RW
357 retval = -EINPROGRESS;
358 goto out;
359 }
360
ad3c36a5
RW
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
5e928f77
RW
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
7490e442
AS
387 dev->power.deferred_resume = false;
388 if (dev->power.no_callbacks)
389 goto no_callback; /* Assume success. */
390
1bfee5bc
AS
391 /* Carry out an asynchronous or a synchronous suspend. */
392 if (rpmflags & RPM_ASYNC) {
15bcb91d
AS
393 dev->power.request = (rpmflags & RPM_AUTO) ?
394 RPM_REQ_AUTOSUSPEND : RPM_REQ_SUSPEND;
1bfee5bc
AS
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
8d4b9d1b 402 __update_runtime_status(dev, RPM_SUSPENDING);
5e928f77 403
564b905a
RW
404 if (dev->pm_domain)
405 callback = dev->pm_domain->ops.runtime_suspend;
4d27e9dc 406 else if (dev->type && dev->type->pm)
71c63122
RW
407 callback = dev->type->pm->runtime_suspend;
408 else if (dev->class && dev->class->pm)
409 callback = dev->class->pm->runtime_suspend;
9659cc06
RW
410 else if (dev->bus && dev->bus->pm)
411 callback = dev->bus->pm->runtime_suspend;
71c63122
RW
412 else
413 callback = NULL;
5e928f77 414
71c63122 415 retval = rpm_callback(callback, dev);
5e928f77 416 if (retval) {
8d4b9d1b 417 __update_runtime_status(dev, RPM_ACTIVE);
2cffff12 418 dev->power.deferred_resume = false;
f71648d7 419 if (retval == -EAGAIN || retval == -EBUSY)
5e928f77 420 dev->power.runtime_error = 0;
f71648d7 421 else
240c7337 422 pm_runtime_cancel_pending(dev);
857b36c7
ML
423 wake_up_all(&dev->power.wait_queue);
424 goto out;
425 }
7490e442 426 no_callback:
857b36c7
ML
427 __update_runtime_status(dev, RPM_SUSPENDED);
428 pm_runtime_deactivate_timer(dev);
5e928f77 429
857b36c7
ML
430 if (dev->parent) {
431 parent = dev->parent;
432 atomic_add_unless(&parent->power.child_count, -1, 0);
5e928f77
RW
433 }
434 wake_up_all(&dev->power.wait_queue);
435
436 if (dev->power.deferred_resume) {
140a6c94 437 rpm_resume(dev, 0);
5e928f77
RW
438 retval = -EAGAIN;
439 goto out;
440 }
441
c3810c88 442 /* Maybe the parent is now able to suspend. */
c7b61de5 443 if (parent && !parent->power.ignore_children && !dev->power.irq_safe) {
c3810c88 444 spin_unlock(&dev->power.lock);
5e928f77 445
c3810c88
AS
446 spin_lock(&parent->power.lock);
447 rpm_idle(parent, RPM_ASYNC);
448 spin_unlock(&parent->power.lock);
5e928f77 449
c3810c88 450 spin_lock(&dev->power.lock);
5e928f77
RW
451 }
452
453 out:
c3dc2f14 454 trace_rpm_return_int(dev, _THIS_IP_, retval);
5e928f77
RW
455
456 return retval;
457}
458
459/**
62052ab1 460 * rpm_resume - Carry out runtime resume of given device.
5e928f77 461 * @dev: Device to resume.
3f9af051 462 * @rpmflags: Flag bits.
5e928f77 463 *
62052ab1 464 * Check if the device's runtime PM status allows it to be resumed. Cancel
1bfee5bc 465 * any scheduled or pending requests. If another resume has been started
25985edc 466 * earlier, either return immediately or wait for it to finish, depending on the
1bfee5bc
AS
467 * RPM_NOWAIT and RPM_ASYNC flags. Similarly, if there's a suspend running in
468 * parallel with this function, either tell the other process to resume after
469 * suspending (deferred_resume) or wait for it to finish. If the RPM_ASYNC
470 * flag is set then queue a resume request; otherwise run the
471 * ->runtime_resume() callback directly. Queue an idle notification for the
472 * device if the resume succeeded.
5e928f77
RW
473 *
474 * This function must be called under dev->power.lock with interrupts disabled.
475 */
140a6c94 476static int rpm_resume(struct device *dev, int rpmflags)
5e928f77
RW
477 __releases(&dev->power.lock) __acquires(&dev->power.lock)
478{
71c63122 479 int (*callback)(struct device *);
5e928f77
RW
480 struct device *parent = NULL;
481 int retval = 0;
482
c3dc2f14 483 trace_rpm_resume(dev, rpmflags);
5e928f77
RW
484
485 repeat:
1bfee5bc 486 if (dev->power.runtime_error)
5e928f77 487 retval = -EINVAL;
1bfee5bc 488 else if (dev->power.disable_depth > 0)
632e270e 489 retval = -EACCES;
1bfee5bc 490 if (retval)
5e928f77 491 goto out;
5e928f77 492
15bcb91d
AS
493 /*
494 * Other scheduled or pending requests need to be canceled. Small
495 * optimization: If an autosuspend timer is running, leave it running
496 * rather than cancelling it now only to restart it again in the near
497 * future.
498 */
499 dev->power.request = RPM_REQ_NONE;
500 if (!dev->power.timer_autosuspends)
501 pm_runtime_deactivate_timer(dev);
5e928f77 502
1bfee5bc 503 if (dev->power.runtime_status == RPM_ACTIVE) {
5e928f77 504 retval = 1;
5e928f77 505 goto out;
1bfee5bc 506 }
5e928f77
RW
507
508 if (dev->power.runtime_status == RPM_RESUMING
509 || dev->power.runtime_status == RPM_SUSPENDING) {
510 DEFINE_WAIT(wait);
511
1bfee5bc 512 if (rpmflags & (RPM_ASYNC | RPM_NOWAIT)) {
5e928f77
RW
513 if (dev->power.runtime_status == RPM_SUSPENDING)
514 dev->power.deferred_resume = true;
1bfee5bc
AS
515 else
516 retval = -EINPROGRESS;
5e928f77
RW
517 goto out;
518 }
519
ad3c36a5
RW
520 if (dev->power.irq_safe) {
521 spin_unlock(&dev->power.lock);
522
523 cpu_relax();
524
525 spin_lock(&dev->power.lock);
526 goto repeat;
527 }
528
5e928f77
RW
529 /* Wait for the operation carried out in parallel with us. */
530 for (;;) {
531 prepare_to_wait(&dev->power.wait_queue, &wait,
532 TASK_UNINTERRUPTIBLE);
533 if (dev->power.runtime_status != RPM_RESUMING
534 && dev->power.runtime_status != RPM_SUSPENDING)
535 break;
536
537 spin_unlock_irq(&dev->power.lock);
538
539 schedule();
540
541 spin_lock_irq(&dev->power.lock);
542 }
543 finish_wait(&dev->power.wait_queue, &wait);
544 goto repeat;
545 }
546
7490e442
AS
547 /*
548 * See if we can skip waking up the parent. This is safe only if
549 * power.no_callbacks is set, because otherwise we don't know whether
550 * the resume will actually succeed.
551 */
552 if (dev->power.no_callbacks && !parent && dev->parent) {
d63be5f9 553 spin_lock_nested(&dev->parent->power.lock, SINGLE_DEPTH_NESTING);
7490e442
AS
554 if (dev->parent->power.disable_depth > 0
555 || dev->parent->power.ignore_children
556 || dev->parent->power.runtime_status == RPM_ACTIVE) {
557 atomic_inc(&dev->parent->power.child_count);
558 spin_unlock(&dev->parent->power.lock);
559 goto no_callback; /* Assume success. */
560 }
561 spin_unlock(&dev->parent->power.lock);
562 }
563
1bfee5bc
AS
564 /* Carry out an asynchronous or a synchronous resume. */
565 if (rpmflags & RPM_ASYNC) {
566 dev->power.request = RPM_REQ_RESUME;
567 if (!dev->power.request_pending) {
568 dev->power.request_pending = true;
569 queue_work(pm_wq, &dev->power.work);
570 }
571 retval = 0;
572 goto out;
573 }
574
5e928f77
RW
575 if (!parent && dev->parent) {
576 /*
c7b61de5
AS
577 * Increment the parent's usage counter and resume it if
578 * necessary. Not needed if dev is irq-safe; then the
579 * parent is permanently resumed.
5e928f77
RW
580 */
581 parent = dev->parent;
c7b61de5
AS
582 if (dev->power.irq_safe)
583 goto skip_parent;
862f89b3 584 spin_unlock(&dev->power.lock);
5e928f77
RW
585
586 pm_runtime_get_noresume(parent);
587
862f89b3 588 spin_lock(&parent->power.lock);
5e928f77 589 /*
62052ab1 590 * We can resume if the parent's runtime PM is disabled or it
5e928f77
RW
591 * is set to ignore children.
592 */
593 if (!parent->power.disable_depth
594 && !parent->power.ignore_children) {
140a6c94 595 rpm_resume(parent, 0);
5e928f77
RW
596 if (parent->power.runtime_status != RPM_ACTIVE)
597 retval = -EBUSY;
598 }
862f89b3 599 spin_unlock(&parent->power.lock);
5e928f77 600
862f89b3 601 spin_lock(&dev->power.lock);
5e928f77
RW
602 if (retval)
603 goto out;
604 goto repeat;
605 }
c7b61de5 606 skip_parent:
5e928f77 607
7490e442
AS
608 if (dev->power.no_callbacks)
609 goto no_callback; /* Assume success. */
610
8d4b9d1b 611 __update_runtime_status(dev, RPM_RESUMING);
5e928f77 612
564b905a
RW
613 if (dev->pm_domain)
614 callback = dev->pm_domain->ops.runtime_resume;
4d27e9dc 615 else if (dev->type && dev->type->pm)
71c63122
RW
616 callback = dev->type->pm->runtime_resume;
617 else if (dev->class && dev->class->pm)
618 callback = dev->class->pm->runtime_resume;
9659cc06
RW
619 else if (dev->bus && dev->bus->pm)
620 callback = dev->bus->pm->runtime_resume;
71c63122
RW
621 else
622 callback = NULL;
5e928f77 623
71c63122 624 retval = rpm_callback(callback, dev);
5e928f77 625 if (retval) {
8d4b9d1b 626 __update_runtime_status(dev, RPM_SUSPENDED);
5e928f77
RW
627 pm_runtime_cancel_pending(dev);
628 } else {
7490e442 629 no_callback:
8d4b9d1b 630 __update_runtime_status(dev, RPM_ACTIVE);
5e928f77
RW
631 if (parent)
632 atomic_inc(&parent->power.child_count);
633 }
634 wake_up_all(&dev->power.wait_queue);
635
636 if (!retval)
140a6c94 637 rpm_idle(dev, RPM_ASYNC);
5e928f77
RW
638
639 out:
c7b61de5 640 if (parent && !dev->power.irq_safe) {
5e928f77
RW
641 spin_unlock_irq(&dev->power.lock);
642
643 pm_runtime_put(parent);
644
645 spin_lock_irq(&dev->power.lock);
646 }
647
c3dc2f14 648 trace_rpm_return_int(dev, _THIS_IP_, retval);
5e928f77
RW
649
650 return retval;
651}
652
5e928f77 653/**
62052ab1 654 * pm_runtime_work - Universal runtime PM work function.
5e928f77
RW
655 * @work: Work structure used for scheduling the execution of this function.
656 *
657 * Use @work to get the device object the work is to be done for, determine what
62052ab1 658 * is to be done and execute the appropriate runtime PM function.
5e928f77
RW
659 */
660static void pm_runtime_work(struct work_struct *work)
661{
662 struct device *dev = container_of(work, struct device, power.work);
663 enum rpm_request req;
664
665 spin_lock_irq(&dev->power.lock);
666
667 if (!dev->power.request_pending)
668 goto out;
669
670 req = dev->power.request;
671 dev->power.request = RPM_REQ_NONE;
672 dev->power.request_pending = false;
673
674 switch (req) {
675 case RPM_REQ_NONE:
676 break;
677 case RPM_REQ_IDLE:
140a6c94 678 rpm_idle(dev, RPM_NOWAIT);
5e928f77
RW
679 break;
680 case RPM_REQ_SUSPEND:
140a6c94 681 rpm_suspend(dev, RPM_NOWAIT);
5e928f77 682 break;
15bcb91d
AS
683 case RPM_REQ_AUTOSUSPEND:
684 rpm_suspend(dev, RPM_NOWAIT | RPM_AUTO);
685 break;
5e928f77 686 case RPM_REQ_RESUME:
140a6c94 687 rpm_resume(dev, RPM_NOWAIT);
5e928f77
RW
688 break;
689 }
690
691 out:
692 spin_unlock_irq(&dev->power.lock);
693}
694
5e928f77
RW
695/**
696 * pm_suspend_timer_fn - Timer function for pm_schedule_suspend().
697 * @data: Device pointer passed by pm_schedule_suspend().
698 *
1bfee5bc 699 * Check if the time is right and queue a suspend request.
5e928f77
RW
700 */
701static void pm_suspend_timer_fn(unsigned long data)
702{
703 struct device *dev = (struct device *)data;
704 unsigned long flags;
705 unsigned long expires;
706
707 spin_lock_irqsave(&dev->power.lock, flags);
708
709 expires = dev->power.timer_expires;
710 /* If 'expire' is after 'jiffies' we've been called too early. */
711 if (expires > 0 && !time_after(expires, jiffies)) {
712 dev->power.timer_expires = 0;
15bcb91d
AS
713 rpm_suspend(dev, dev->power.timer_autosuspends ?
714 (RPM_ASYNC | RPM_AUTO) : RPM_ASYNC);
5e928f77
RW
715 }
716
717 spin_unlock_irqrestore(&dev->power.lock, flags);
718}
719
720/**
721 * pm_schedule_suspend - Set up a timer to submit a suspend request in future.
722 * @dev: Device to suspend.
723 * @delay: Time to wait before submitting a suspend request, in milliseconds.
724 */
725int pm_schedule_suspend(struct device *dev, unsigned int delay)
726{
727 unsigned long flags;
1bfee5bc 728 int retval;
5e928f77
RW
729
730 spin_lock_irqsave(&dev->power.lock, flags);
731
5e928f77 732 if (!delay) {
140a6c94 733 retval = rpm_suspend(dev, RPM_ASYNC);
5e928f77
RW
734 goto out;
735 }
736
1bfee5bc 737 retval = rpm_check_suspend_allowed(dev);
5e928f77
RW
738 if (retval)
739 goto out;
740
1bfee5bc
AS
741 /* Other scheduled or pending requests need to be canceled. */
742 pm_runtime_cancel_pending(dev);
743
5e928f77 744 dev->power.timer_expires = jiffies + msecs_to_jiffies(delay);
1bfee5bc 745 dev->power.timer_expires += !dev->power.timer_expires;
15bcb91d 746 dev->power.timer_autosuspends = 0;
5e928f77
RW
747 mod_timer(&dev->power.suspend_timer, dev->power.timer_expires);
748
749 out:
750 spin_unlock_irqrestore(&dev->power.lock, flags);
751
752 return retval;
753}
754EXPORT_SYMBOL_GPL(pm_schedule_suspend);
755
5e928f77 756/**
62052ab1 757 * __pm_runtime_idle - Entry point for runtime idle operations.
140a6c94
AS
758 * @dev: Device to send idle notification for.
759 * @rpmflags: Flag bits.
760 *
761 * If the RPM_GET_PUT flag is set, decrement the device's usage count and
762 * return immediately if it is larger than zero. Then carry out an idle
763 * notification, either synchronous or asynchronous.
764 *
311aab73
CC
765 * This routine may be called in atomic context if the RPM_ASYNC flag is set,
766 * or if pm_runtime_irq_safe() has been called.
5e928f77 767 */
140a6c94 768int __pm_runtime_idle(struct device *dev, int rpmflags)
5e928f77
RW
769{
770 unsigned long flags;
771 int retval;
772
311aab73
CC
773 might_sleep_if(!(rpmflags & RPM_ASYNC) && !dev->power.irq_safe);
774
140a6c94
AS
775 if (rpmflags & RPM_GET_PUT) {
776 if (!atomic_dec_and_test(&dev->power.usage_count))
777 return 0;
778 }
779
5e928f77 780 spin_lock_irqsave(&dev->power.lock, flags);
140a6c94 781 retval = rpm_idle(dev, rpmflags);
5e928f77
RW
782 spin_unlock_irqrestore(&dev->power.lock, flags);
783
784 return retval;
785}
140a6c94 786EXPORT_SYMBOL_GPL(__pm_runtime_idle);
5e928f77
RW
787
788/**
62052ab1 789 * __pm_runtime_suspend - Entry point for runtime put/suspend operations.
140a6c94 790 * @dev: Device to suspend.
3f9af051 791 * @rpmflags: Flag bits.
5e928f77 792 *
15bcb91d
AS
793 * If the RPM_GET_PUT flag is set, decrement the device's usage count and
794 * return immediately if it is larger than zero. Then carry out a suspend,
795 * either synchronous or asynchronous.
140a6c94 796 *
311aab73
CC
797 * This routine may be called in atomic context if the RPM_ASYNC flag is set,
798 * or if pm_runtime_irq_safe() has been called.
5e928f77 799 */
140a6c94 800int __pm_runtime_suspend(struct device *dev, int rpmflags)
5e928f77 801{
140a6c94 802 unsigned long flags;
1d531c14 803 int retval;
5e928f77 804
311aab73
CC
805 might_sleep_if(!(rpmflags & RPM_ASYNC) && !dev->power.irq_safe);
806
15bcb91d
AS
807 if (rpmflags & RPM_GET_PUT) {
808 if (!atomic_dec_and_test(&dev->power.usage_count))
809 return 0;
810 }
811
140a6c94
AS
812 spin_lock_irqsave(&dev->power.lock, flags);
813 retval = rpm_suspend(dev, rpmflags);
814 spin_unlock_irqrestore(&dev->power.lock, flags);
5e928f77
RW
815
816 return retval;
817}
140a6c94 818EXPORT_SYMBOL_GPL(__pm_runtime_suspend);
5e928f77
RW
819
820/**
62052ab1 821 * __pm_runtime_resume - Entry point for runtime resume operations.
140a6c94 822 * @dev: Device to resume.
3f9af051 823 * @rpmflags: Flag bits.
5e928f77 824 *
140a6c94
AS
825 * If the RPM_GET_PUT flag is set, increment the device's usage count. Then
826 * carry out a resume, either synchronous or asynchronous.
827 *
311aab73
CC
828 * This routine may be called in atomic context if the RPM_ASYNC flag is set,
829 * or if pm_runtime_irq_safe() has been called.
5e928f77 830 */
140a6c94 831int __pm_runtime_resume(struct device *dev, int rpmflags)
5e928f77 832{
140a6c94
AS
833 unsigned long flags;
834 int retval;
5e928f77 835
311aab73
CC
836 might_sleep_if(!(rpmflags & RPM_ASYNC) && !dev->power.irq_safe);
837
140a6c94
AS
838 if (rpmflags & RPM_GET_PUT)
839 atomic_inc(&dev->power.usage_count);
840
841 spin_lock_irqsave(&dev->power.lock, flags);
842 retval = rpm_resume(dev, rpmflags);
843 spin_unlock_irqrestore(&dev->power.lock, flags);
5e928f77
RW
844
845 return retval;
846}
140a6c94 847EXPORT_SYMBOL_GPL(__pm_runtime_resume);
5e928f77
RW
848
849/**
62052ab1 850 * __pm_runtime_set_status - Set runtime PM status of a device.
5e928f77 851 * @dev: Device to handle.
62052ab1 852 * @status: New runtime PM status of the device.
5e928f77 853 *
62052ab1 854 * If runtime PM of the device is disabled or its power.runtime_error field is
5e928f77
RW
855 * different from zero, the status may be changed either to RPM_ACTIVE, or to
856 * RPM_SUSPENDED, as long as that reflects the actual state of the device.
857 * However, if the device has a parent and the parent is not active, and the
858 * parent's power.ignore_children flag is unset, the device's status cannot be
859 * set to RPM_ACTIVE, so -EBUSY is returned in that case.
860 *
861 * If successful, __pm_runtime_set_status() clears the power.runtime_error field
862 * and the device parent's counter of unsuspended children is modified to
863 * reflect the new status. If the new status is RPM_SUSPENDED, an idle
864 * notification request for the parent is submitted.
865 */
866int __pm_runtime_set_status(struct device *dev, unsigned int status)
867{
868 struct device *parent = dev->parent;
869 unsigned long flags;
870 bool notify_parent = false;
871 int error = 0;
872
873 if (status != RPM_ACTIVE && status != RPM_SUSPENDED)
874 return -EINVAL;
875
876 spin_lock_irqsave(&dev->power.lock, flags);
877
878 if (!dev->power.runtime_error && !dev->power.disable_depth) {
879 error = -EAGAIN;
880 goto out;
881 }
882
883 if (dev->power.runtime_status == status)
884 goto out_set;
885
886 if (status == RPM_SUSPENDED) {
887 /* It always is possible to set the status to 'suspended'. */
888 if (parent) {
889 atomic_add_unless(&parent->power.child_count, -1, 0);
890 notify_parent = !parent->power.ignore_children;
891 }
892 goto out_set;
893 }
894
895 if (parent) {
bab636b9 896 spin_lock_nested(&parent->power.lock, SINGLE_DEPTH_NESTING);
5e928f77
RW
897
898 /*
899 * It is invalid to put an active child under a parent that is
62052ab1 900 * not active, has runtime PM enabled and the
5e928f77
RW
901 * 'power.ignore_children' flag unset.
902 */
903 if (!parent->power.disable_depth
904 && !parent->power.ignore_children
965c4ac0 905 && parent->power.runtime_status != RPM_ACTIVE)
5e928f77 906 error = -EBUSY;
965c4ac0
RW
907 else if (dev->power.runtime_status == RPM_SUSPENDED)
908 atomic_inc(&parent->power.child_count);
5e928f77 909
862f89b3 910 spin_unlock(&parent->power.lock);
5e928f77
RW
911
912 if (error)
913 goto out;
914 }
915
916 out_set:
8d4b9d1b 917 __update_runtime_status(dev, status);
5e928f77
RW
918 dev->power.runtime_error = 0;
919 out:
920 spin_unlock_irqrestore(&dev->power.lock, flags);
921
922 if (notify_parent)
923 pm_request_idle(parent);
924
925 return error;
926}
927EXPORT_SYMBOL_GPL(__pm_runtime_set_status);
928
929/**
930 * __pm_runtime_barrier - Cancel pending requests and wait for completions.
931 * @dev: Device to handle.
932 *
933 * Flush all pending requests for the device from pm_wq and wait for all
62052ab1 934 * runtime PM operations involving the device in progress to complete.
5e928f77
RW
935 *
936 * Should be called under dev->power.lock with interrupts disabled.
937 */
938static void __pm_runtime_barrier(struct device *dev)
939{
940 pm_runtime_deactivate_timer(dev);
941
942 if (dev->power.request_pending) {
943 dev->power.request = RPM_REQ_NONE;
944 spin_unlock_irq(&dev->power.lock);
945
946 cancel_work_sync(&dev->power.work);
947
948 spin_lock_irq(&dev->power.lock);
949 dev->power.request_pending = false;
950 }
951
952 if (dev->power.runtime_status == RPM_SUSPENDING
953 || dev->power.runtime_status == RPM_RESUMING
954 || dev->power.idle_notification) {
955 DEFINE_WAIT(wait);
956
957 /* Suspend, wake-up or idle notification in progress. */
958 for (;;) {
959 prepare_to_wait(&dev->power.wait_queue, &wait,
960 TASK_UNINTERRUPTIBLE);
961 if (dev->power.runtime_status != RPM_SUSPENDING
962 && dev->power.runtime_status != RPM_RESUMING
963 && !dev->power.idle_notification)
964 break;
965 spin_unlock_irq(&dev->power.lock);
966
967 schedule();
968
969 spin_lock_irq(&dev->power.lock);
970 }
971 finish_wait(&dev->power.wait_queue, &wait);
972 }
973}
974
975/**
976 * pm_runtime_barrier - Flush pending requests and wait for completions.
977 * @dev: Device to handle.
978 *
979 * Prevent the device from being suspended by incrementing its usage counter and
980 * if there's a pending resume request for the device, wake the device up.
981 * Next, make sure that all pending requests for the device have been flushed
62052ab1 982 * from pm_wq and wait for all runtime PM operations involving the device in
5e928f77
RW
983 * progress to complete.
984 *
985 * Return value:
986 * 1, if there was a resume request pending and the device had to be woken up,
987 * 0, otherwise
988 */
989int pm_runtime_barrier(struct device *dev)
990{
991 int retval = 0;
992
993 pm_runtime_get_noresume(dev);
994 spin_lock_irq(&dev->power.lock);
995
996 if (dev->power.request_pending
997 && dev->power.request == RPM_REQ_RESUME) {
140a6c94 998 rpm_resume(dev, 0);
5e928f77
RW
999 retval = 1;
1000 }
1001
1002 __pm_runtime_barrier(dev);
1003
1004 spin_unlock_irq(&dev->power.lock);
1005 pm_runtime_put_noidle(dev);
1006
1007 return retval;
1008}
1009EXPORT_SYMBOL_GPL(pm_runtime_barrier);
1010
1011/**
62052ab1 1012 * __pm_runtime_disable - Disable runtime PM of a device.
5e928f77
RW
1013 * @dev: Device to handle.
1014 * @check_resume: If set, check if there's a resume request for the device.
1015 *
1016 * Increment power.disable_depth for the device and if was zero previously,
62052ab1 1017 * cancel all pending runtime PM requests for the device and wait for all
5e928f77 1018 * operations in progress to complete. The device can be either active or
62052ab1 1019 * suspended after its runtime PM has been disabled.
5e928f77
RW
1020 *
1021 * If @check_resume is set and there's a resume request pending when
1022 * __pm_runtime_disable() is called and power.disable_depth is zero, the
62052ab1 1023 * function will wake up the device before disabling its runtime PM.
5e928f77
RW
1024 */
1025void __pm_runtime_disable(struct device *dev, bool check_resume)
1026{
1027 spin_lock_irq(&dev->power.lock);
1028
1029 if (dev->power.disable_depth > 0) {
1030 dev->power.disable_depth++;
1031 goto out;
1032 }
1033
1034 /*
1035 * Wake up the device if there's a resume request pending, because that
62052ab1 1036 * means there probably is some I/O to process and disabling runtime PM
5e928f77
RW
1037 * shouldn't prevent the device from processing the I/O.
1038 */
1039 if (check_resume && dev->power.request_pending
1040 && dev->power.request == RPM_REQ_RESUME) {
1041 /*
1042 * Prevent suspends and idle notifications from being carried
1043 * out after we have woken up the device.
1044 */
1045 pm_runtime_get_noresume(dev);
1046
140a6c94 1047 rpm_resume(dev, 0);
5e928f77
RW
1048
1049 pm_runtime_put_noidle(dev);
1050 }
1051
1052 if (!dev->power.disable_depth++)
1053 __pm_runtime_barrier(dev);
1054
1055 out:
1056 spin_unlock_irq(&dev->power.lock);
1057}
1058EXPORT_SYMBOL_GPL(__pm_runtime_disable);
1059
1060/**
62052ab1 1061 * pm_runtime_enable - Enable runtime PM of a device.
5e928f77
RW
1062 * @dev: Device to handle.
1063 */
1064void pm_runtime_enable(struct device *dev)
1065{
1066 unsigned long flags;
1067
1068 spin_lock_irqsave(&dev->power.lock, flags);
1069
1070 if (dev->power.disable_depth > 0)
1071 dev->power.disable_depth--;
1072 else
1073 dev_warn(dev, "Unbalanced %s!\n", __func__);
1074
1075 spin_unlock_irqrestore(&dev->power.lock, flags);
1076}
1077EXPORT_SYMBOL_GPL(pm_runtime_enable);
1078
53823639 1079/**
62052ab1 1080 * pm_runtime_forbid - Block runtime PM of a device.
53823639
RW
1081 * @dev: Device to handle.
1082 *
1083 * Increase the device's usage count and clear its power.runtime_auto flag,
1084 * so that it cannot be suspended at run time until pm_runtime_allow() is called
1085 * for it.
1086 */
1087void pm_runtime_forbid(struct device *dev)
1088{
1089 spin_lock_irq(&dev->power.lock);
1090 if (!dev->power.runtime_auto)
1091 goto out;
1092
1093 dev->power.runtime_auto = false;
1094 atomic_inc(&dev->power.usage_count);
140a6c94 1095 rpm_resume(dev, 0);
53823639
RW
1096
1097 out:
1098 spin_unlock_irq(&dev->power.lock);
1099}
1100EXPORT_SYMBOL_GPL(pm_runtime_forbid);
1101
1102/**
62052ab1 1103 * pm_runtime_allow - Unblock runtime PM of a device.
53823639
RW
1104 * @dev: Device to handle.
1105 *
1106 * Decrease the device's usage count and set its power.runtime_auto flag.
1107 */
1108void pm_runtime_allow(struct device *dev)
1109{
1110 spin_lock_irq(&dev->power.lock);
1111 if (dev->power.runtime_auto)
1112 goto out;
1113
1114 dev->power.runtime_auto = true;
1115 if (atomic_dec_and_test(&dev->power.usage_count))
15bcb91d 1116 rpm_idle(dev, RPM_AUTO);
53823639
RW
1117
1118 out:
1119 spin_unlock_irq(&dev->power.lock);
1120}
1121EXPORT_SYMBOL_GPL(pm_runtime_allow);
1122
7490e442 1123/**
62052ab1 1124 * pm_runtime_no_callbacks - Ignore runtime PM callbacks for a device.
7490e442
AS
1125 * @dev: Device to handle.
1126 *
1127 * Set the power.no_callbacks flag, which tells the PM core that this
62052ab1
RW
1128 * device is power-managed through its parent and has no runtime PM
1129 * callbacks of its own. The runtime sysfs attributes will be removed.
7490e442
AS
1130 */
1131void pm_runtime_no_callbacks(struct device *dev)
1132{
1133 spin_lock_irq(&dev->power.lock);
1134 dev->power.no_callbacks = 1;
1135 spin_unlock_irq(&dev->power.lock);
1136 if (device_is_registered(dev))
1137 rpm_sysfs_remove(dev);
1138}
1139EXPORT_SYMBOL_GPL(pm_runtime_no_callbacks);
1140
c7b61de5
AS
1141/**
1142 * pm_runtime_irq_safe - Leave interrupts disabled during callbacks.
1143 * @dev: Device to handle
1144 *
1145 * Set the power.irq_safe flag, which tells the PM core that the
1146 * ->runtime_suspend() and ->runtime_resume() callbacks for this device should
1147 * always be invoked with the spinlock held and interrupts disabled. It also
1148 * causes the parent's usage counter to be permanently incremented, preventing
1149 * the parent from runtime suspending -- otherwise an irq-safe child might have
1150 * to wait for a non-irq-safe parent.
1151 */
1152void pm_runtime_irq_safe(struct device *dev)
1153{
1154 if (dev->parent)
1155 pm_runtime_get_sync(dev->parent);
1156 spin_lock_irq(&dev->power.lock);
1157 dev->power.irq_safe = 1;
1158 spin_unlock_irq(&dev->power.lock);
1159}
1160EXPORT_SYMBOL_GPL(pm_runtime_irq_safe);
1161
15bcb91d
AS
1162/**
1163 * update_autosuspend - Handle a change to a device's autosuspend settings.
1164 * @dev: Device to handle.
1165 * @old_delay: The former autosuspend_delay value.
1166 * @old_use: The former use_autosuspend value.
1167 *
1168 * Prevent runtime suspend if the new delay is negative and use_autosuspend is
1169 * set; otherwise allow it. Send an idle notification if suspends are allowed.
1170 *
1171 * This function must be called under dev->power.lock with interrupts disabled.
1172 */
1173static void update_autosuspend(struct device *dev, int old_delay, int old_use)
1174{
1175 int delay = dev->power.autosuspend_delay;
1176
1177 /* Should runtime suspend be prevented now? */
1178 if (dev->power.use_autosuspend && delay < 0) {
1179
1180 /* If it used to be allowed then prevent it. */
1181 if (!old_use || old_delay >= 0) {
1182 atomic_inc(&dev->power.usage_count);
1183 rpm_resume(dev, 0);
1184 }
1185 }
1186
1187 /* Runtime suspend should be allowed now. */
1188 else {
1189
1190 /* If it used to be prevented then allow it. */
1191 if (old_use && old_delay < 0)
1192 atomic_dec(&dev->power.usage_count);
1193
1194 /* Maybe we can autosuspend now. */
1195 rpm_idle(dev, RPM_AUTO);
1196 }
1197}
1198
1199/**
1200 * pm_runtime_set_autosuspend_delay - Set a device's autosuspend_delay value.
1201 * @dev: Device to handle.
1202 * @delay: Value of the new delay in milliseconds.
1203 *
1204 * Set the device's power.autosuspend_delay value. If it changes to negative
62052ab1
RW
1205 * and the power.use_autosuspend flag is set, prevent runtime suspends. If it
1206 * changes the other way, allow runtime suspends.
15bcb91d
AS
1207 */
1208void pm_runtime_set_autosuspend_delay(struct device *dev, int delay)
1209{
1210 int old_delay, old_use;
1211
1212 spin_lock_irq(&dev->power.lock);
1213 old_delay = dev->power.autosuspend_delay;
1214 old_use = dev->power.use_autosuspend;
1215 dev->power.autosuspend_delay = delay;
1216 update_autosuspend(dev, old_delay, old_use);
1217 spin_unlock_irq(&dev->power.lock);
1218}
1219EXPORT_SYMBOL_GPL(pm_runtime_set_autosuspend_delay);
1220
1221/**
1222 * __pm_runtime_use_autosuspend - Set a device's use_autosuspend flag.
1223 * @dev: Device to handle.
1224 * @use: New value for use_autosuspend.
1225 *
62052ab1 1226 * Set the device's power.use_autosuspend flag, and allow or prevent runtime
15bcb91d
AS
1227 * suspends as needed.
1228 */
1229void __pm_runtime_use_autosuspend(struct device *dev, bool use)
1230{
1231 int old_delay, old_use;
1232
1233 spin_lock_irq(&dev->power.lock);
1234 old_delay = dev->power.autosuspend_delay;
1235 old_use = dev->power.use_autosuspend;
1236 dev->power.use_autosuspend = use;
1237 update_autosuspend(dev, old_delay, old_use);
1238 spin_unlock_irq(&dev->power.lock);
1239}
1240EXPORT_SYMBOL_GPL(__pm_runtime_use_autosuspend);
1241
5e928f77 1242/**
62052ab1 1243 * pm_runtime_init - Initialize runtime PM fields in given device object.
5e928f77
RW
1244 * @dev: Device object to initialize.
1245 */
1246void pm_runtime_init(struct device *dev)
1247{
5e928f77
RW
1248 dev->power.runtime_status = RPM_SUSPENDED;
1249 dev->power.idle_notification = false;
1250
1251 dev->power.disable_depth = 1;
1252 atomic_set(&dev->power.usage_count, 0);
1253
1254 dev->power.runtime_error = 0;
1255
1256 atomic_set(&dev->power.child_count, 0);
1257 pm_suspend_ignore_children(dev, false);
53823639 1258 dev->power.runtime_auto = true;
5e928f77
RW
1259
1260 dev->power.request_pending = false;
1261 dev->power.request = RPM_REQ_NONE;
1262 dev->power.deferred_resume = false;
8d4b9d1b 1263 dev->power.accounting_timestamp = jiffies;
5e928f77
RW
1264 INIT_WORK(&dev->power.work, pm_runtime_work);
1265
1266 dev->power.timer_expires = 0;
1267 setup_timer(&dev->power.suspend_timer, pm_suspend_timer_fn,
1268 (unsigned long)dev);
1269
1270 init_waitqueue_head(&dev->power.wait_queue);
1271}
1272
1273/**
1274 * pm_runtime_remove - Prepare for removing a device from device hierarchy.
1275 * @dev: Device object being removed from device hierarchy.
1276 */
1277void pm_runtime_remove(struct device *dev)
1278{
1279 __pm_runtime_disable(dev, false);
1280
1281 /* Change the status back to 'suspended' to match the initial status. */
1282 if (dev->power.runtime_status == RPM_ACTIVE)
1283 pm_runtime_set_suspended(dev);
c7b61de5
AS
1284 if (dev->power.irq_safe && dev->parent)
1285 pm_runtime_put_sync(dev->parent);
5e928f77 1286}