MIPS: Yosemite, Emma: Fix off-by-two in arcs_cmdline buffer size check
[linux-2.6/linux-mips.git] / drivers / base / power / runtime.c
blob6bb3aafa85ede9efe75d41abba500211fc9b262b
1 /*
2 * drivers/base/power/runtime.c - Helper functions for device runtime PM
4 * Copyright (c) 2009 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc.
5 * Copyright (C) 2010 Alan Stern <stern@rowland.harvard.edu>
7 * This file is released under the GPLv2.
8 */
10 #include <linux/sched.h>
11 #include <linux/pm_runtime.h>
12 #include <trace/events/rpm.h>
13 #include "power.h"
15 static int rpm_resume(struct device *dev, int rpmflags);
16 static int rpm_suspend(struct device *dev, int rpmflags);
18 /**
19 * update_pm_runtime_accounting - Update the time accounting of power states
20 * @dev: Device to update the accounting for
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.
29 void update_pm_runtime_accounting(struct device *dev)
31 unsigned long now = jiffies;
32 int delta;
34 delta = now - dev->power.accounting_timestamp;
36 if (delta < 0)
37 delta = 0;
39 dev->power.accounting_timestamp = now;
41 if (dev->power.disable_depth > 0)
42 return;
44 if (dev->power.runtime_status == RPM_SUSPENDED)
45 dev->power.suspended_jiffies += delta;
46 else
47 dev->power.active_jiffies += delta;
50 static void __update_runtime_status(struct device *dev, enum rpm_status status)
52 update_pm_runtime_accounting(dev);
53 dev->power.runtime_status = status;
56 /**
57 * pm_runtime_deactivate_timer - Deactivate given device's suspend timer.
58 * @dev: Device to handle.
60 static void pm_runtime_deactivate_timer(struct device *dev)
62 if (dev->power.timer_expires > 0) {
63 del_timer(&dev->power.suspend_timer);
64 dev->power.timer_expires = 0;
68 /**
69 * pm_runtime_cancel_pending - Deactivate suspend timer and cancel requests.
70 * @dev: Device to handle.
72 static void pm_runtime_cancel_pending(struct device *dev)
74 pm_runtime_deactivate_timer(dev);
76 * In case there's a request pending, make sure its work function will
77 * return without doing anything.
79 dev->power.request = RPM_REQ_NONE;
83 * pm_runtime_autosuspend_expiration - Get a device's autosuspend-delay expiration time.
84 * @dev: Device to handle.
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).
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.
94 unsigned long pm_runtime_autosuspend_expiration(struct device *dev)
96 int autosuspend_delay;
97 long elapsed;
98 unsigned long last_busy;
99 unsigned long expires = 0;
101 if (!dev->power.use_autosuspend)
102 goto out;
104 autosuspend_delay = ACCESS_ONCE(dev->power.autosuspend_delay);
105 if (autosuspend_delay < 0)
106 goto out;
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. */
114 * If the autosuspend_delay is >= 1 second, align the timer by rounding
115 * up to the nearest second.
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. */
124 out:
125 return expires;
127 EXPORT_SYMBOL_GPL(pm_runtime_autosuspend_expiration);
130 * rpm_check_suspend_allowed - Test whether a device may be suspended.
131 * @dev: Device to test.
133 static int rpm_check_suspend_allowed(struct device *dev)
135 int retval = 0;
137 if (dev->power.runtime_error)
138 retval = -EINVAL;
139 else if (dev->power.disable_depth > 0)
140 retval = -EACCES;
141 else if (atomic_read(&dev->power.usage_count) > 0)
142 retval = -EAGAIN;
143 else if (!pm_children_suspended(dev))
144 retval = -EBUSY;
146 /* Pending resume requests take precedence over suspends. */
147 else if ((dev->power.deferred_resume
148 && dev->power.runtime_status == RPM_SUSPENDING)
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;
155 return retval;
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.
163 static int __rpm_callback(int (*cb)(struct device *), struct device *dev)
164 __releases(&dev->power.lock) __acquires(&dev->power.lock)
166 int retval;
168 if (dev->power.irq_safe)
169 spin_unlock(&dev->power.lock);
170 else
171 spin_unlock_irq(&dev->power.lock);
173 retval = cb(dev);
175 if (dev->power.irq_safe)
176 spin_lock(&dev->power.lock);
177 else
178 spin_lock_irq(&dev->power.lock);
180 return retval;
184 * rpm_idle - Notify device bus type if the device can be suspended.
185 * @dev: Device to notify the bus type about.
186 * @rpmflags: Flag bits.
188 * Check if the device's runtime PM status allows it to be suspended. If
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.
193 * This function must be called under dev->power.lock with interrupts disabled.
195 static int rpm_idle(struct device *dev, int rpmflags)
197 int (*callback)(struct device *);
198 int retval;
200 trace_rpm_idle(dev, rpmflags);
201 retval = rpm_check_suspend_allowed(dev);
202 if (retval < 0)
203 ; /* Conditions are wrong. */
205 /* Idle notifications are allowed only in the RPM_ACTIVE state. */
206 else if (dev->power.runtime_status != RPM_ACTIVE)
207 retval = -EAGAIN;
210 * Any pending request other than an idle notification takes
211 * precedence over us, except that the timer may be running.
213 else if (dev->power.request_pending &&
214 dev->power.request > RPM_REQ_IDLE)
215 retval = -EAGAIN;
217 /* Act as though RPM_NOWAIT is always set. */
218 else if (dev->power.idle_notification)
219 retval = -EINPROGRESS;
220 if (retval)
221 goto out;
223 /* Pending requests need to be canceled. */
224 dev->power.request = RPM_REQ_NONE;
226 if (dev->power.no_callbacks) {
227 /* Assume ->runtime_idle() callback would have suspended. */
228 retval = rpm_suspend(dev, rpmflags);
229 goto out;
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);
239 goto out;
242 dev->power.idle_notification = true;
244 if (dev->pm_domain)
245 callback = dev->pm_domain->ops.runtime_idle;
246 else if (dev->type && dev->type->pm)
247 callback = dev->type->pm->runtime_idle;
248 else if (dev->class && dev->class->pm)
249 callback = dev->class->pm->runtime_idle;
250 else if (dev->bus && dev->bus->pm)
251 callback = dev->bus->pm->runtime_idle;
252 else
253 callback = NULL;
255 if (callback)
256 __rpm_callback(callback, dev);
258 dev->power.idle_notification = false;
259 wake_up_all(&dev->power.wait_queue);
261 out:
262 trace_rpm_return_int(dev, _THIS_IP_, retval);
263 return retval;
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.
271 static int rpm_callback(int (*cb)(struct device *), struct device *dev)
273 int retval;
275 if (!cb)
276 return -ENOSYS;
278 retval = __rpm_callback(cb, dev);
280 dev->power.runtime_error = retval;
281 return retval != -EACCES ? retval : -EIO;
285 * rpm_suspend - Carry out runtime suspend of given device.
286 * @dev: Device to suspend.
287 * @rpmflags: Flag bits.
289 * Check if the device's runtime PM status allows it to be suspended.
290 * Cancel a pending idle notification, autosuspend or suspend. If
291 * another suspend has been started earlier, either return immediately
292 * or wait for it to finish, depending on the RPM_NOWAIT and RPM_ASYNC
293 * flags. If the RPM_ASYNC flag is set then queue a suspend request;
294 * otherwise run the ->runtime_suspend() callback directly. 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).
300 * This function must be called under dev->power.lock with interrupts disabled.
302 static int rpm_suspend(struct device *dev, int rpmflags)
303 __releases(&dev->power.lock) __acquires(&dev->power.lock)
305 int (*callback)(struct device *);
306 struct device *parent = NULL;
307 int retval;
309 trace_rpm_suspend(dev, rpmflags);
311 repeat:
312 retval = rpm_check_suspend_allowed(dev);
314 if (retval < 0)
315 ; /* Conditions are wrong. */
317 /* Synchronous suspends are not allowed in the RPM_RESUMING state. */
318 else if (dev->power.runtime_status == RPM_RESUMING &&
319 !(rpmflags & RPM_ASYNC))
320 retval = -EAGAIN;
321 if (retval)
322 goto out;
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);
329 if (expires != 0) {
330 /* Pending requests need to be canceled. */
331 dev->power.request = RPM_REQ_NONE;
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.
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);
345 dev->power.timer_autosuspends = 1;
346 goto out;
350 /* Other scheduled or pending requests need to be canceled. */
351 pm_runtime_cancel_pending(dev);
353 if (dev->power.runtime_status == RPM_SUSPENDING) {
354 DEFINE_WAIT(wait);
356 if (rpmflags & (RPM_ASYNC | RPM_NOWAIT)) {
357 retval = -EINPROGRESS;
358 goto out;
361 if (dev->power.irq_safe) {
362 spin_unlock(&dev->power.lock);
364 cpu_relax();
366 spin_lock(&dev->power.lock);
367 goto repeat;
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;
377 spin_unlock_irq(&dev->power.lock);
379 schedule();
381 spin_lock_irq(&dev->power.lock);
383 finish_wait(&dev->power.wait_queue, &wait);
384 goto repeat;
387 dev->power.deferred_resume = false;
388 if (dev->power.no_callbacks)
389 goto no_callback; /* Assume success. */
391 /* Carry out an asynchronous or a synchronous suspend. */
392 if (rpmflags & RPM_ASYNC) {
393 dev->power.request = (rpmflags & RPM_AUTO) ?
394 RPM_REQ_AUTOSUSPEND : RPM_REQ_SUSPEND;
395 if (!dev->power.request_pending) {
396 dev->power.request_pending = true;
397 queue_work(pm_wq, &dev->power.work);
399 goto out;
402 __update_runtime_status(dev, RPM_SUSPENDING);
404 if (dev->pm_domain)
405 callback = dev->pm_domain->ops.runtime_suspend;
406 else if (dev->type && dev->type->pm)
407 callback = dev->type->pm->runtime_suspend;
408 else if (dev->class && dev->class->pm)
409 callback = dev->class->pm->runtime_suspend;
410 else if (dev->bus && dev->bus->pm)
411 callback = dev->bus->pm->runtime_suspend;
412 else
413 callback = NULL;
415 retval = rpm_callback(callback, dev);
416 if (retval) {
417 __update_runtime_status(dev, RPM_ACTIVE);
418 dev->power.deferred_resume = false;
419 if (retval == -EAGAIN || retval == -EBUSY)
420 dev->power.runtime_error = 0;
421 else
422 pm_runtime_cancel_pending(dev);
423 wake_up_all(&dev->power.wait_queue);
424 goto out;
426 no_callback:
427 __update_runtime_status(dev, RPM_SUSPENDED);
428 pm_runtime_deactivate_timer(dev);
430 if (dev->parent) {
431 parent = dev->parent;
432 atomic_add_unless(&parent->power.child_count, -1, 0);
434 wake_up_all(&dev->power.wait_queue);
436 if (dev->power.deferred_resume) {
437 rpm_resume(dev, 0);
438 retval = -EAGAIN;
439 goto out;
442 /* Maybe the parent is now able to suspend. */
443 if (parent && !parent->power.ignore_children && !dev->power.irq_safe) {
444 spin_unlock(&dev->power.lock);
446 spin_lock(&parent->power.lock);
447 rpm_idle(parent, RPM_ASYNC);
448 spin_unlock(&parent->power.lock);
450 spin_lock(&dev->power.lock);
453 out:
454 trace_rpm_return_int(dev, _THIS_IP_, retval);
456 return retval;
460 * rpm_resume - Carry out runtime resume of given device.
461 * @dev: Device to resume.
462 * @rpmflags: Flag bits.
464 * Check if the device's runtime PM status allows it to be resumed. Cancel
465 * any scheduled or pending requests. If another resume has been started
466 * earlier, either return immediately or wait for it to finish, depending on the
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.
474 * This function must be called under dev->power.lock with interrupts disabled.
476 static int rpm_resume(struct device *dev, int rpmflags)
477 __releases(&dev->power.lock) __acquires(&dev->power.lock)
479 int (*callback)(struct device *);
480 struct device *parent = NULL;
481 int retval = 0;
483 trace_rpm_resume(dev, rpmflags);
485 repeat:
486 if (dev->power.runtime_error)
487 retval = -EINVAL;
488 else if (dev->power.disable_depth > 0)
489 retval = -EACCES;
490 if (retval)
491 goto out;
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.
499 dev->power.request = RPM_REQ_NONE;
500 if (!dev->power.timer_autosuspends)
501 pm_runtime_deactivate_timer(dev);
503 if (dev->power.runtime_status == RPM_ACTIVE) {
504 retval = 1;
505 goto out;
508 if (dev->power.runtime_status == RPM_RESUMING
509 || dev->power.runtime_status == RPM_SUSPENDING) {
510 DEFINE_WAIT(wait);
512 if (rpmflags & (RPM_ASYNC | RPM_NOWAIT)) {
513 if (dev->power.runtime_status == RPM_SUSPENDING)
514 dev->power.deferred_resume = true;
515 else
516 retval = -EINPROGRESS;
517 goto out;
520 if (dev->power.irq_safe) {
521 spin_unlock(&dev->power.lock);
523 cpu_relax();
525 spin_lock(&dev->power.lock);
526 goto repeat;
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;
537 spin_unlock_irq(&dev->power.lock);
539 schedule();
541 spin_lock_irq(&dev->power.lock);
543 finish_wait(&dev->power.wait_queue, &wait);
544 goto repeat;
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.
552 if (dev->power.no_callbacks && !parent && dev->parent) {
553 spin_lock_nested(&dev->parent->power.lock, SINGLE_DEPTH_NESTING);
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. */
561 spin_unlock(&dev->parent->power.lock);
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);
571 retval = 0;
572 goto out;
575 if (!parent && dev->parent) {
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.
581 parent = dev->parent;
582 if (dev->power.irq_safe)
583 goto skip_parent;
584 spin_unlock(&dev->power.lock);
586 pm_runtime_get_noresume(parent);
588 spin_lock(&parent->power.lock);
590 * We can resume if the parent's runtime PM is disabled or it
591 * is set to ignore children.
593 if (!parent->power.disable_depth
594 && !parent->power.ignore_children) {
595 rpm_resume(parent, 0);
596 if (parent->power.runtime_status != RPM_ACTIVE)
597 retval = -EBUSY;
599 spin_unlock(&parent->power.lock);
601 spin_lock(&dev->power.lock);
602 if (retval)
603 goto out;
604 goto repeat;
606 skip_parent:
608 if (dev->power.no_callbacks)
609 goto no_callback; /* Assume success. */
611 __update_runtime_status(dev, RPM_RESUMING);
613 if (dev->pm_domain)
614 callback = dev->pm_domain->ops.runtime_resume;
615 else if (dev->type && dev->type->pm)
616 callback = dev->type->pm->runtime_resume;
617 else if (dev->class && dev->class->pm)
618 callback = dev->class->pm->runtime_resume;
619 else if (dev->bus && dev->bus->pm)
620 callback = dev->bus->pm->runtime_resume;
621 else
622 callback = NULL;
624 retval = rpm_callback(callback, dev);
625 if (retval) {
626 __update_runtime_status(dev, RPM_SUSPENDED);
627 pm_runtime_cancel_pending(dev);
628 } else {
629 no_callback:
630 __update_runtime_status(dev, RPM_ACTIVE);
631 if (parent)
632 atomic_inc(&parent->power.child_count);
634 wake_up_all(&dev->power.wait_queue);
636 if (!retval)
637 rpm_idle(dev, RPM_ASYNC);
639 out:
640 if (parent && !dev->power.irq_safe) {
641 spin_unlock_irq(&dev->power.lock);
643 pm_runtime_put(parent);
645 spin_lock_irq(&dev->power.lock);
648 trace_rpm_return_int(dev, _THIS_IP_, retval);
650 return retval;
654 * pm_runtime_work - Universal runtime PM work function.
655 * @work: Work structure used for scheduling the execution of this function.
657 * Use @work to get the device object the work is to be done for, determine what
658 * is to be done and execute the appropriate runtime PM function.
660 static void pm_runtime_work(struct work_struct *work)
662 struct device *dev = container_of(work, struct device, power.work);
663 enum rpm_request req;
665 spin_lock_irq(&dev->power.lock);
667 if (!dev->power.request_pending)
668 goto out;
670 req = dev->power.request;
671 dev->power.request = RPM_REQ_NONE;
672 dev->power.request_pending = false;
674 switch (req) {
675 case RPM_REQ_NONE:
676 break;
677 case RPM_REQ_IDLE:
678 rpm_idle(dev, RPM_NOWAIT);
679 break;
680 case RPM_REQ_SUSPEND:
681 rpm_suspend(dev, RPM_NOWAIT);
682 break;
683 case RPM_REQ_AUTOSUSPEND:
684 rpm_suspend(dev, RPM_NOWAIT | RPM_AUTO);
685 break;
686 case RPM_REQ_RESUME:
687 rpm_resume(dev, RPM_NOWAIT);
688 break;
691 out:
692 spin_unlock_irq(&dev->power.lock);
696 * pm_suspend_timer_fn - Timer function for pm_schedule_suspend().
697 * @data: Device pointer passed by pm_schedule_suspend().
699 * Check if the time is right and queue a suspend request.
701 static void pm_suspend_timer_fn(unsigned long data)
703 struct device *dev = (struct device *)data;
704 unsigned long flags;
705 unsigned long expires;
707 spin_lock_irqsave(&dev->power.lock, flags);
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;
713 rpm_suspend(dev, dev->power.timer_autosuspends ?
714 (RPM_ASYNC | RPM_AUTO) : RPM_ASYNC);
717 spin_unlock_irqrestore(&dev->power.lock, flags);
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.
725 int pm_schedule_suspend(struct device *dev, unsigned int delay)
727 unsigned long flags;
728 int retval;
730 spin_lock_irqsave(&dev->power.lock, flags);
732 if (!delay) {
733 retval = rpm_suspend(dev, RPM_ASYNC);
734 goto out;
737 retval = rpm_check_suspend_allowed(dev);
738 if (retval)
739 goto out;
741 /* Other scheduled or pending requests need to be canceled. */
742 pm_runtime_cancel_pending(dev);
744 dev->power.timer_expires = jiffies + msecs_to_jiffies(delay);
745 dev->power.timer_expires += !dev->power.timer_expires;
746 dev->power.timer_autosuspends = 0;
747 mod_timer(&dev->power.suspend_timer, dev->power.timer_expires);
749 out:
750 spin_unlock_irqrestore(&dev->power.lock, flags);
752 return retval;
754 EXPORT_SYMBOL_GPL(pm_schedule_suspend);
757 * __pm_runtime_idle - Entry point for runtime idle operations.
758 * @dev: Device to send idle notification for.
759 * @rpmflags: Flag bits.
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.
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.
768 int __pm_runtime_idle(struct device *dev, int rpmflags)
770 unsigned long flags;
771 int retval;
773 might_sleep_if(!(rpmflags & RPM_ASYNC) && !dev->power.irq_safe);
775 if (rpmflags & RPM_GET_PUT) {
776 if (!atomic_dec_and_test(&dev->power.usage_count))
777 return 0;
780 spin_lock_irqsave(&dev->power.lock, flags);
781 retval = rpm_idle(dev, rpmflags);
782 spin_unlock_irqrestore(&dev->power.lock, flags);
784 return retval;
786 EXPORT_SYMBOL_GPL(__pm_runtime_idle);
789 * __pm_runtime_suspend - Entry point for runtime put/suspend operations.
790 * @dev: Device to suspend.
791 * @rpmflags: Flag bits.
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.
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.
800 int __pm_runtime_suspend(struct device *dev, int rpmflags)
802 unsigned long flags;
803 int retval;
805 might_sleep_if(!(rpmflags & RPM_ASYNC) && !dev->power.irq_safe);
807 if (rpmflags & RPM_GET_PUT) {
808 if (!atomic_dec_and_test(&dev->power.usage_count))
809 return 0;
812 spin_lock_irqsave(&dev->power.lock, flags);
813 retval = rpm_suspend(dev, rpmflags);
814 spin_unlock_irqrestore(&dev->power.lock, flags);
816 return retval;
818 EXPORT_SYMBOL_GPL(__pm_runtime_suspend);
821 * __pm_runtime_resume - Entry point for runtime resume operations.
822 * @dev: Device to resume.
823 * @rpmflags: Flag bits.
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.
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.
831 int __pm_runtime_resume(struct device *dev, int rpmflags)
833 unsigned long flags;
834 int retval;
836 might_sleep_if(!(rpmflags & RPM_ASYNC) && !dev->power.irq_safe);
838 if (rpmflags & RPM_GET_PUT)
839 atomic_inc(&dev->power.usage_count);
841 spin_lock_irqsave(&dev->power.lock, flags);
842 retval = rpm_resume(dev, rpmflags);
843 spin_unlock_irqrestore(&dev->power.lock, flags);
845 return retval;
847 EXPORT_SYMBOL_GPL(__pm_runtime_resume);
850 * __pm_runtime_set_status - Set runtime PM status of a device.
851 * @dev: Device to handle.
852 * @status: New runtime PM status of the device.
854 * If runtime PM of the device is disabled or its power.runtime_error field is
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.
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.
866 int __pm_runtime_set_status(struct device *dev, unsigned int status)
868 struct device *parent = dev->parent;
869 unsigned long flags;
870 bool notify_parent = false;
871 int error = 0;
873 if (status != RPM_ACTIVE && status != RPM_SUSPENDED)
874 return -EINVAL;
876 spin_lock_irqsave(&dev->power.lock, flags);
878 if (!dev->power.runtime_error && !dev->power.disable_depth) {
879 error = -EAGAIN;
880 goto out;
883 if (dev->power.runtime_status == status)
884 goto out_set;
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;
892 goto out_set;
895 if (parent) {
896 spin_lock_nested(&parent->power.lock, SINGLE_DEPTH_NESTING);
899 * It is invalid to put an active child under a parent that is
900 * not active, has runtime PM enabled and the
901 * 'power.ignore_children' flag unset.
903 if (!parent->power.disable_depth
904 && !parent->power.ignore_children
905 && parent->power.runtime_status != RPM_ACTIVE)
906 error = -EBUSY;
907 else if (dev->power.runtime_status == RPM_SUSPENDED)
908 atomic_inc(&parent->power.child_count);
910 spin_unlock(&parent->power.lock);
912 if (error)
913 goto out;
916 out_set:
917 __update_runtime_status(dev, status);
918 dev->power.runtime_error = 0;
919 out:
920 spin_unlock_irqrestore(&dev->power.lock, flags);
922 if (notify_parent)
923 pm_request_idle(parent);
925 return error;
927 EXPORT_SYMBOL_GPL(__pm_runtime_set_status);
930 * __pm_runtime_barrier - Cancel pending requests and wait for completions.
931 * @dev: Device to handle.
933 * Flush all pending requests for the device from pm_wq and wait for all
934 * runtime PM operations involving the device in progress to complete.
936 * Should be called under dev->power.lock with interrupts disabled.
938 static void __pm_runtime_barrier(struct device *dev)
940 pm_runtime_deactivate_timer(dev);
942 if (dev->power.request_pending) {
943 dev->power.request = RPM_REQ_NONE;
944 spin_unlock_irq(&dev->power.lock);
946 cancel_work_sync(&dev->power.work);
948 spin_lock_irq(&dev->power.lock);
949 dev->power.request_pending = false;
952 if (dev->power.runtime_status == RPM_SUSPENDING
953 || dev->power.runtime_status == RPM_RESUMING
954 || dev->power.idle_notification) {
955 DEFINE_WAIT(wait);
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);
967 schedule();
969 spin_lock_irq(&dev->power.lock);
971 finish_wait(&dev->power.wait_queue, &wait);
976 * pm_runtime_barrier - Flush pending requests and wait for completions.
977 * @dev: Device to handle.
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
982 * from pm_wq and wait for all runtime PM operations involving the device in
983 * progress to complete.
985 * Return value:
986 * 1, if there was a resume request pending and the device had to be woken up,
987 * 0, otherwise
989 int pm_runtime_barrier(struct device *dev)
991 int retval = 0;
993 pm_runtime_get_noresume(dev);
994 spin_lock_irq(&dev->power.lock);
996 if (dev->power.request_pending
997 && dev->power.request == RPM_REQ_RESUME) {
998 rpm_resume(dev, 0);
999 retval = 1;
1002 __pm_runtime_barrier(dev);
1004 spin_unlock_irq(&dev->power.lock);
1005 pm_runtime_put_noidle(dev);
1007 return retval;
1009 EXPORT_SYMBOL_GPL(pm_runtime_barrier);
1012 * __pm_runtime_disable - Disable runtime PM of a device.
1013 * @dev: Device to handle.
1014 * @check_resume: If set, check if there's a resume request for the device.
1016 * Increment power.disable_depth for the device and if was zero previously,
1017 * cancel all pending runtime PM requests for the device and wait for all
1018 * operations in progress to complete. The device can be either active or
1019 * suspended after its runtime PM has been disabled.
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
1023 * function will wake up the device before disabling its runtime PM.
1025 void __pm_runtime_disable(struct device *dev, bool check_resume)
1027 spin_lock_irq(&dev->power.lock);
1029 if (dev->power.disable_depth > 0) {
1030 dev->power.disable_depth++;
1031 goto out;
1035 * Wake up the device if there's a resume request pending, because that
1036 * means there probably is some I/O to process and disabling runtime PM
1037 * shouldn't prevent the device from processing the I/O.
1039 if (check_resume && dev->power.request_pending
1040 && dev->power.request == RPM_REQ_RESUME) {
1042 * Prevent suspends and idle notifications from being carried
1043 * out after we have woken up the device.
1045 pm_runtime_get_noresume(dev);
1047 rpm_resume(dev, 0);
1049 pm_runtime_put_noidle(dev);
1052 if (!dev->power.disable_depth++)
1053 __pm_runtime_barrier(dev);
1055 out:
1056 spin_unlock_irq(&dev->power.lock);
1058 EXPORT_SYMBOL_GPL(__pm_runtime_disable);
1061 * pm_runtime_enable - Enable runtime PM of a device.
1062 * @dev: Device to handle.
1064 void pm_runtime_enable(struct device *dev)
1066 unsigned long flags;
1068 spin_lock_irqsave(&dev->power.lock, flags);
1070 if (dev->power.disable_depth > 0)
1071 dev->power.disable_depth--;
1072 else
1073 dev_warn(dev, "Unbalanced %s!\n", __func__);
1075 spin_unlock_irqrestore(&dev->power.lock, flags);
1077 EXPORT_SYMBOL_GPL(pm_runtime_enable);
1080 * pm_runtime_forbid - Block runtime PM of a device.
1081 * @dev: Device to handle.
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.
1087 void pm_runtime_forbid(struct device *dev)
1089 spin_lock_irq(&dev->power.lock);
1090 if (!dev->power.runtime_auto)
1091 goto out;
1093 dev->power.runtime_auto = false;
1094 atomic_inc(&dev->power.usage_count);
1095 rpm_resume(dev, 0);
1097 out:
1098 spin_unlock_irq(&dev->power.lock);
1100 EXPORT_SYMBOL_GPL(pm_runtime_forbid);
1103 * pm_runtime_allow - Unblock runtime PM of a device.
1104 * @dev: Device to handle.
1106 * Decrease the device's usage count and set its power.runtime_auto flag.
1108 void pm_runtime_allow(struct device *dev)
1110 spin_lock_irq(&dev->power.lock);
1111 if (dev->power.runtime_auto)
1112 goto out;
1114 dev->power.runtime_auto = true;
1115 if (atomic_dec_and_test(&dev->power.usage_count))
1116 rpm_idle(dev, RPM_AUTO);
1118 out:
1119 spin_unlock_irq(&dev->power.lock);
1121 EXPORT_SYMBOL_GPL(pm_runtime_allow);
1124 * pm_runtime_no_callbacks - Ignore runtime PM callbacks for a device.
1125 * @dev: Device to handle.
1127 * Set the power.no_callbacks flag, which tells the PM core that this
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.
1131 void pm_runtime_no_callbacks(struct device *dev)
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);
1139 EXPORT_SYMBOL_GPL(pm_runtime_no_callbacks);
1142 * pm_runtime_irq_safe - Leave interrupts disabled during callbacks.
1143 * @dev: Device to handle
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.
1152 void pm_runtime_irq_safe(struct device *dev)
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);
1160 EXPORT_SYMBOL_GPL(pm_runtime_irq_safe);
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.
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.
1171 * This function must be called under dev->power.lock with interrupts disabled.
1173 static void update_autosuspend(struct device *dev, int old_delay, int old_use)
1175 int delay = dev->power.autosuspend_delay;
1177 /* Should runtime suspend be prevented now? */
1178 if (dev->power.use_autosuspend && delay < 0) {
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);
1187 /* Runtime suspend should be allowed now. */
1188 else {
1190 /* If it used to be prevented then allow it. */
1191 if (old_use && old_delay < 0)
1192 atomic_dec(&dev->power.usage_count);
1194 /* Maybe we can autosuspend now. */
1195 rpm_idle(dev, RPM_AUTO);
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.
1204 * Set the device's power.autosuspend_delay value. If it changes to negative
1205 * and the power.use_autosuspend flag is set, prevent runtime suspends. If it
1206 * changes the other way, allow runtime suspends.
1208 void pm_runtime_set_autosuspend_delay(struct device *dev, int delay)
1210 int old_delay, old_use;
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);
1219 EXPORT_SYMBOL_GPL(pm_runtime_set_autosuspend_delay);
1222 * __pm_runtime_use_autosuspend - Set a device's use_autosuspend flag.
1223 * @dev: Device to handle.
1224 * @use: New value for use_autosuspend.
1226 * Set the device's power.use_autosuspend flag, and allow or prevent runtime
1227 * suspends as needed.
1229 void __pm_runtime_use_autosuspend(struct device *dev, bool use)
1231 int old_delay, old_use;
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);
1240 EXPORT_SYMBOL_GPL(__pm_runtime_use_autosuspend);
1243 * pm_runtime_init - Initialize runtime PM fields in given device object.
1244 * @dev: Device object to initialize.
1246 void pm_runtime_init(struct device *dev)
1248 dev->power.runtime_status = RPM_SUSPENDED;
1249 dev->power.idle_notification = false;
1251 dev->power.disable_depth = 1;
1252 atomic_set(&dev->power.usage_count, 0);
1254 dev->power.runtime_error = 0;
1256 atomic_set(&dev->power.child_count, 0);
1257 pm_suspend_ignore_children(dev, false);
1258 dev->power.runtime_auto = true;
1260 dev->power.request_pending = false;
1261 dev->power.request = RPM_REQ_NONE;
1262 dev->power.deferred_resume = false;
1263 dev->power.accounting_timestamp = jiffies;
1264 INIT_WORK(&dev->power.work, pm_runtime_work);
1266 dev->power.timer_expires = 0;
1267 setup_timer(&dev->power.suspend_timer, pm_suspend_timer_fn,
1268 (unsigned long)dev);
1270 init_waitqueue_head(&dev->power.wait_queue);
1274 * pm_runtime_remove - Prepare for removing a device from device hierarchy.
1275 * @dev: Device object being removed from device hierarchy.
1277 void pm_runtime_remove(struct device *dev)
1279 __pm_runtime_disable(dev, false);
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);
1284 if (dev->power.irq_safe && dev->parent)
1285 pm_runtime_put_sync(dev->parent);