2 * drivers/base/power/main.c - Where the driver meets power management.
4 * Copyright (c) 2003 Patrick Mochel
5 * Copyright (c) 2003 Open Source Development Lab
7 * This file is released under the GPLv2
10 * The driver model core calls device_pm_add() when a device is registered.
11 * This will initialize the embedded device_pm_info object in the device
12 * and add it to the list of power-controlled devices. sysfs entries for
13 * controlling device power management will also be added.
15 * A separate list is used for keeping track of power info, because the power
16 * domain dependencies may differ from the ancestral dependencies that the
17 * subsystem list maintains.
20 #include <linux/device.h>
21 #include <linux/kallsyms.h>
22 #include <linux/mutex.h>
24 #include <linux/pm_runtime.h>
25 #include <linux/resume-trace.h>
26 #include <linux/interrupt.h>
27 #include <linux/sched.h>
28 #include <linux/async.h>
29 #include <linux/suspend.h>
35 * The entries in the dpm_list list are in a depth first order, simply
36 * because children are guaranteed to be discovered after parents, and
37 * are inserted at the back of the list on discovery.
39 * Since device_pm_add() may be called with a device lock held,
40 * we must never try to acquire a device lock while holding
45 LIST_HEAD(dpm_prepared_list
);
46 LIST_HEAD(dpm_suspended_list
);
47 LIST_HEAD(dpm_noirq_list
);
49 static DEFINE_MUTEX(dpm_list_mtx
);
50 static pm_message_t pm_transition
;
52 static int async_error
;
55 * device_pm_init - Initialize the PM-related part of a device object.
56 * @dev: Device object being initialized.
58 void device_pm_init(struct device
*dev
)
60 dev
->power
.is_prepared
= false;
61 dev
->power
.is_suspended
= false;
62 init_completion(&dev
->power
.completion
);
63 complete_all(&dev
->power
.completion
);
64 dev
->power
.wakeup
= NULL
;
65 spin_lock_init(&dev
->power
.lock
);
67 INIT_LIST_HEAD(&dev
->power
.entry
);
71 * device_pm_lock - Lock the list of active devices used by the PM core.
73 void device_pm_lock(void)
75 mutex_lock(&dpm_list_mtx
);
79 * device_pm_unlock - Unlock the list of active devices used by the PM core.
81 void device_pm_unlock(void)
83 mutex_unlock(&dpm_list_mtx
);
87 * device_pm_add - Add a device to the PM core's list of active devices.
88 * @dev: Device to add to the list.
90 void device_pm_add(struct device
*dev
)
92 pr_debug("PM: Adding info for %s:%s\n",
93 dev
->bus
? dev
->bus
->name
: "No Bus", dev_name(dev
));
94 mutex_lock(&dpm_list_mtx
);
95 if (dev
->parent
&& dev
->parent
->power
.is_prepared
)
96 dev_warn(dev
, "parent %s should not be sleeping\n",
97 dev_name(dev
->parent
));
98 list_add_tail(&dev
->power
.entry
, &dpm_list
);
99 mutex_unlock(&dpm_list_mtx
);
103 * device_pm_remove - Remove a device from the PM core's list of active devices.
104 * @dev: Device to be removed from the list.
106 void device_pm_remove(struct device
*dev
)
108 pr_debug("PM: Removing info for %s:%s\n",
109 dev
->bus
? dev
->bus
->name
: "No Bus", dev_name(dev
));
110 complete_all(&dev
->power
.completion
);
111 mutex_lock(&dpm_list_mtx
);
112 list_del_init(&dev
->power
.entry
);
113 mutex_unlock(&dpm_list_mtx
);
114 device_wakeup_disable(dev
);
115 pm_runtime_remove(dev
);
119 * device_pm_move_before - Move device in the PM core's list of active devices.
120 * @deva: Device to move in dpm_list.
121 * @devb: Device @deva should come before.
123 void device_pm_move_before(struct device
*deva
, struct device
*devb
)
125 pr_debug("PM: Moving %s:%s before %s:%s\n",
126 deva
->bus
? deva
->bus
->name
: "No Bus", dev_name(deva
),
127 devb
->bus
? devb
->bus
->name
: "No Bus", dev_name(devb
));
128 /* Delete deva from dpm_list and reinsert before devb. */
129 list_move_tail(&deva
->power
.entry
, &devb
->power
.entry
);
133 * device_pm_move_after - Move device in the PM core's list of active devices.
134 * @deva: Device to move in dpm_list.
135 * @devb: Device @deva should come after.
137 void device_pm_move_after(struct device
*deva
, struct device
*devb
)
139 pr_debug("PM: Moving %s:%s after %s:%s\n",
140 deva
->bus
? deva
->bus
->name
: "No Bus", dev_name(deva
),
141 devb
->bus
? devb
->bus
->name
: "No Bus", dev_name(devb
));
142 /* Delete deva from dpm_list and reinsert after devb. */
143 list_move(&deva
->power
.entry
, &devb
->power
.entry
);
147 * device_pm_move_last - Move device to end of the PM core's list of devices.
148 * @dev: Device to move in dpm_list.
150 void device_pm_move_last(struct device
*dev
)
152 pr_debug("PM: Moving %s:%s to end of list\n",
153 dev
->bus
? dev
->bus
->name
: "No Bus", dev_name(dev
));
154 list_move_tail(&dev
->power
.entry
, &dpm_list
);
157 static ktime_t
initcall_debug_start(struct device
*dev
)
159 ktime_t calltime
= ktime_set(0, 0);
161 if (initcall_debug
) {
162 pr_info("calling %s+ @ %i\n",
163 dev_name(dev
), task_pid_nr(current
));
164 calltime
= ktime_get();
170 static void initcall_debug_report(struct device
*dev
, ktime_t calltime
,
173 ktime_t delta
, rettime
;
175 if (initcall_debug
) {
176 rettime
= ktime_get();
177 delta
= ktime_sub(rettime
, calltime
);
178 pr_info("call %s+ returned %d after %Ld usecs\n", dev_name(dev
),
179 error
, (unsigned long long)ktime_to_ns(delta
) >> 10);
184 * dpm_wait - Wait for a PM operation to complete.
185 * @dev: Device to wait for.
186 * @async: If unset, wait only if the device's power.async_suspend flag is set.
188 static void dpm_wait(struct device
*dev
, bool async
)
193 if (async
|| (pm_async_enabled
&& dev
->power
.async_suspend
))
194 wait_for_completion(&dev
->power
.completion
);
197 static int dpm_wait_fn(struct device
*dev
, void *async_ptr
)
199 dpm_wait(dev
, *((bool *)async_ptr
));
203 static void dpm_wait_for_children(struct device
*dev
, bool async
)
205 device_for_each_child(dev
, &async
, dpm_wait_fn
);
209 * pm_op - Execute the PM operation appropriate for given PM event.
210 * @dev: Device to handle.
211 * @ops: PM operations to choose from.
212 * @state: PM transition of the system being carried out.
214 static int pm_op(struct device
*dev
,
215 const struct dev_pm_ops
*ops
,
221 calltime
= initcall_debug_start(dev
);
223 switch (state
.event
) {
224 #ifdef CONFIG_SUSPEND
225 case PM_EVENT_SUSPEND
:
227 error
= ops
->suspend(dev
);
228 suspend_report_result(ops
->suspend
, error
);
231 case PM_EVENT_RESUME
:
233 error
= ops
->resume(dev
);
234 suspend_report_result(ops
->resume
, error
);
237 #endif /* CONFIG_SUSPEND */
238 #ifdef CONFIG_HIBERNATE_CALLBACKS
239 case PM_EVENT_FREEZE
:
240 case PM_EVENT_QUIESCE
:
242 error
= ops
->freeze(dev
);
243 suspend_report_result(ops
->freeze
, error
);
246 case PM_EVENT_HIBERNATE
:
248 error
= ops
->poweroff(dev
);
249 suspend_report_result(ops
->poweroff
, error
);
253 case PM_EVENT_RECOVER
:
255 error
= ops
->thaw(dev
);
256 suspend_report_result(ops
->thaw
, error
);
259 case PM_EVENT_RESTORE
:
261 error
= ops
->restore(dev
);
262 suspend_report_result(ops
->restore
, error
);
265 #endif /* CONFIG_HIBERNATE_CALLBACKS */
270 initcall_debug_report(dev
, calltime
, error
);
276 * pm_noirq_op - Execute the PM operation appropriate for given PM event.
277 * @dev: Device to handle.
278 * @ops: PM operations to choose from.
279 * @state: PM transition of the system being carried out.
281 * The driver of @dev will not receive interrupts while this function is being
284 static int pm_noirq_op(struct device
*dev
,
285 const struct dev_pm_ops
*ops
,
289 ktime_t calltime
= ktime_set(0, 0), delta
, rettime
;
291 if (initcall_debug
) {
292 pr_info("calling %s+ @ %i, parent: %s\n",
293 dev_name(dev
), task_pid_nr(current
),
294 dev
->parent
? dev_name(dev
->parent
) : "none");
295 calltime
= ktime_get();
298 switch (state
.event
) {
299 #ifdef CONFIG_SUSPEND
300 case PM_EVENT_SUSPEND
:
301 if (ops
->suspend_noirq
) {
302 error
= ops
->suspend_noirq(dev
);
303 suspend_report_result(ops
->suspend_noirq
, error
);
306 case PM_EVENT_RESUME
:
307 if (ops
->resume_noirq
) {
308 error
= ops
->resume_noirq(dev
);
309 suspend_report_result(ops
->resume_noirq
, error
);
312 #endif /* CONFIG_SUSPEND */
313 #ifdef CONFIG_HIBERNATE_CALLBACKS
314 case PM_EVENT_FREEZE
:
315 case PM_EVENT_QUIESCE
:
316 if (ops
->freeze_noirq
) {
317 error
= ops
->freeze_noirq(dev
);
318 suspend_report_result(ops
->freeze_noirq
, error
);
321 case PM_EVENT_HIBERNATE
:
322 if (ops
->poweroff_noirq
) {
323 error
= ops
->poweroff_noirq(dev
);
324 suspend_report_result(ops
->poweroff_noirq
, error
);
328 case PM_EVENT_RECOVER
:
329 if (ops
->thaw_noirq
) {
330 error
= ops
->thaw_noirq(dev
);
331 suspend_report_result(ops
->thaw_noirq
, error
);
334 case PM_EVENT_RESTORE
:
335 if (ops
->restore_noirq
) {
336 error
= ops
->restore_noirq(dev
);
337 suspend_report_result(ops
->restore_noirq
, error
);
340 #endif /* CONFIG_HIBERNATE_CALLBACKS */
345 if (initcall_debug
) {
346 rettime
= ktime_get();
347 delta
= ktime_sub(rettime
, calltime
);
348 printk("initcall %s_i+ returned %d after %Ld usecs\n",
349 dev_name(dev
), error
,
350 (unsigned long long)ktime_to_ns(delta
) >> 10);
356 static char *pm_verb(int event
)
359 case PM_EVENT_SUSPEND
:
361 case PM_EVENT_RESUME
:
363 case PM_EVENT_FREEZE
:
365 case PM_EVENT_QUIESCE
:
367 case PM_EVENT_HIBERNATE
:
371 case PM_EVENT_RESTORE
:
373 case PM_EVENT_RECOVER
:
376 return "(unknown PM event)";
380 static void pm_dev_dbg(struct device
*dev
, pm_message_t state
, char *info
)
382 dev_dbg(dev
, "%s%s%s\n", info
, pm_verb(state
.event
),
383 ((state
.event
& PM_EVENT_SLEEP
) && device_may_wakeup(dev
)) ?
384 ", may wakeup" : "");
387 static void pm_dev_err(struct device
*dev
, pm_message_t state
, char *info
,
390 printk(KERN_ERR
"PM: Device %s failed to %s%s: error %d\n",
391 dev_name(dev
), pm_verb(state
.event
), info
, error
);
394 static void dpm_show_time(ktime_t starttime
, pm_message_t state
, char *info
)
400 calltime
= ktime_get();
401 usecs64
= ktime_to_ns(ktime_sub(calltime
, starttime
));
402 do_div(usecs64
, NSEC_PER_USEC
);
406 pr_info("PM: %s%s%s of devices complete after %ld.%03ld msecs\n",
407 info
?: "", info
? " " : "", pm_verb(state
.event
),
408 usecs
/ USEC_PER_MSEC
, usecs
% USEC_PER_MSEC
);
411 /*------------------------- Resume routines -------------------------*/
414 * device_resume_noirq - Execute an "early resume" callback for given device.
415 * @dev: Device to handle.
416 * @state: PM transition of the system being carried out.
418 * The driver of @dev will not receive interrupts while this function is being
421 static int device_resume_noirq(struct device
*dev
, pm_message_t state
)
428 if (dev
->pwr_domain
) {
429 pm_dev_dbg(dev
, state
, "EARLY power domain ");
430 error
= pm_noirq_op(dev
, &dev
->pwr_domain
->ops
, state
);
431 } else if (dev
->type
&& dev
->type
->pm
) {
432 pm_dev_dbg(dev
, state
, "EARLY type ");
433 error
= pm_noirq_op(dev
, dev
->type
->pm
, state
);
434 } else if (dev
->class && dev
->class->pm
) {
435 pm_dev_dbg(dev
, state
, "EARLY class ");
436 error
= pm_noirq_op(dev
, dev
->class->pm
, state
);
437 } else if (dev
->bus
&& dev
->bus
->pm
) {
438 pm_dev_dbg(dev
, state
, "EARLY ");
439 error
= pm_noirq_op(dev
, dev
->bus
->pm
, state
);
447 * dpm_resume_noirq - Execute "early resume" callbacks for non-sysdev devices.
448 * @state: PM transition of the system being carried out.
450 * Call the "noirq" resume handlers for all devices marked as DPM_OFF_IRQ and
451 * enable device drivers to receive interrupts.
453 void dpm_resume_noirq(pm_message_t state
)
455 ktime_t starttime
= ktime_get();
457 mutex_lock(&dpm_list_mtx
);
458 while (!list_empty(&dpm_noirq_list
)) {
459 struct device
*dev
= to_device(dpm_noirq_list
.next
);
463 list_move_tail(&dev
->power
.entry
, &dpm_suspended_list
);
464 mutex_unlock(&dpm_list_mtx
);
466 error
= device_resume_noirq(dev
, state
);
468 pm_dev_err(dev
, state
, " early", error
);
470 mutex_lock(&dpm_list_mtx
);
473 mutex_unlock(&dpm_list_mtx
);
474 dpm_show_time(starttime
, state
, "early");
475 resume_device_irqs();
477 EXPORT_SYMBOL_GPL(dpm_resume_noirq
);
480 * legacy_resume - Execute a legacy (bus or class) resume callback for device.
481 * @dev: Device to resume.
482 * @cb: Resume callback to execute.
484 static int legacy_resume(struct device
*dev
, int (*cb
)(struct device
*dev
))
489 calltime
= initcall_debug_start(dev
);
492 suspend_report_result(cb
, error
);
494 initcall_debug_report(dev
, calltime
, error
);
500 * device_resume - Execute "resume" callbacks for given device.
501 * @dev: Device to handle.
502 * @state: PM transition of the system being carried out.
503 * @async: If true, the device is being resumed asynchronously.
505 static int device_resume(struct device
*dev
, pm_message_t state
, bool async
)
512 dpm_wait(dev
->parent
, async
);
516 * This is a fib. But we'll allow new children to be added below
517 * a resumed device, even if the device hasn't been completed yet.
519 dev
->power
.is_prepared
= false;
521 if (!dev
->power
.is_suspended
)
524 if (dev
->pwr_domain
) {
525 pm_dev_dbg(dev
, state
, "power domain ");
526 error
= pm_op(dev
, &dev
->pwr_domain
->ops
, state
);
530 if (dev
->type
&& dev
->type
->pm
) {
531 pm_dev_dbg(dev
, state
, "type ");
532 error
= pm_op(dev
, dev
->type
->pm
, state
);
537 if (dev
->class->pm
) {
538 pm_dev_dbg(dev
, state
, "class ");
539 error
= pm_op(dev
, dev
->class->pm
, state
);
541 } else if (dev
->class->resume
) {
542 pm_dev_dbg(dev
, state
, "legacy class ");
543 error
= legacy_resume(dev
, dev
->class->resume
);
550 pm_dev_dbg(dev
, state
, "");
551 error
= pm_op(dev
, dev
->bus
->pm
, state
);
552 } else if (dev
->bus
->resume
) {
553 pm_dev_dbg(dev
, state
, "legacy ");
554 error
= legacy_resume(dev
, dev
->bus
->resume
);
559 dev
->power
.is_suspended
= false;
563 complete_all(&dev
->power
.completion
);
569 static void async_resume(void *data
, async_cookie_t cookie
)
571 struct device
*dev
= (struct device
*)data
;
574 error
= device_resume(dev
, pm_transition
, true);
576 pm_dev_err(dev
, pm_transition
, " async", error
);
580 static bool is_async(struct device
*dev
)
582 return dev
->power
.async_suspend
&& pm_async_enabled
583 && !pm_trace_is_enabled();
587 * dpm_resume - Execute "resume" callbacks for non-sysdev devices.
588 * @state: PM transition of the system being carried out.
590 * Execute the appropriate "resume" callback for all devices whose status
591 * indicates that they are suspended.
593 void dpm_resume(pm_message_t state
)
596 ktime_t starttime
= ktime_get();
600 mutex_lock(&dpm_list_mtx
);
601 pm_transition
= state
;
604 list_for_each_entry(dev
, &dpm_suspended_list
, power
.entry
) {
605 INIT_COMPLETION(dev
->power
.completion
);
608 async_schedule(async_resume
, dev
);
612 while (!list_empty(&dpm_suspended_list
)) {
613 dev
= to_device(dpm_suspended_list
.next
);
615 if (!is_async(dev
)) {
618 mutex_unlock(&dpm_list_mtx
);
620 error
= device_resume(dev
, state
, false);
622 pm_dev_err(dev
, state
, "", error
);
624 mutex_lock(&dpm_list_mtx
);
626 if (!list_empty(&dev
->power
.entry
))
627 list_move_tail(&dev
->power
.entry
, &dpm_prepared_list
);
630 mutex_unlock(&dpm_list_mtx
);
631 async_synchronize_full();
632 dpm_show_time(starttime
, state
, NULL
);
636 * device_complete - Complete a PM transition for given device.
637 * @dev: Device to handle.
638 * @state: PM transition of the system being carried out.
640 static void device_complete(struct device
*dev
, pm_message_t state
)
644 if (dev
->pwr_domain
) {
645 pm_dev_dbg(dev
, state
, "completing power domain ");
646 if (dev
->pwr_domain
->ops
.complete
)
647 dev
->pwr_domain
->ops
.complete(dev
);
648 } else if (dev
->type
&& dev
->type
->pm
) {
649 pm_dev_dbg(dev
, state
, "completing type ");
650 if (dev
->type
->pm
->complete
)
651 dev
->type
->pm
->complete(dev
);
652 } else if (dev
->class && dev
->class->pm
) {
653 pm_dev_dbg(dev
, state
, "completing class ");
654 if (dev
->class->pm
->complete
)
655 dev
->class->pm
->complete(dev
);
656 } else if (dev
->bus
&& dev
->bus
->pm
) {
657 pm_dev_dbg(dev
, state
, "completing ");
658 if (dev
->bus
->pm
->complete
)
659 dev
->bus
->pm
->complete(dev
);
666 * dpm_complete - Complete a PM transition for all non-sysdev devices.
667 * @state: PM transition of the system being carried out.
669 * Execute the ->complete() callbacks for all devices whose PM status is not
670 * DPM_ON (this allows new devices to be registered).
672 void dpm_complete(pm_message_t state
)
674 struct list_head list
;
678 INIT_LIST_HEAD(&list
);
679 mutex_lock(&dpm_list_mtx
);
680 while (!list_empty(&dpm_prepared_list
)) {
681 struct device
*dev
= to_device(dpm_prepared_list
.prev
);
684 dev
->power
.is_prepared
= false;
685 list_move(&dev
->power
.entry
, &list
);
686 mutex_unlock(&dpm_list_mtx
);
688 device_complete(dev
, state
);
690 mutex_lock(&dpm_list_mtx
);
693 list_splice(&list
, &dpm_list
);
694 mutex_unlock(&dpm_list_mtx
);
698 * dpm_resume_end - Execute "resume" callbacks and complete system transition.
699 * @state: PM transition of the system being carried out.
701 * Execute "resume" callbacks for all devices and complete the PM transition of
704 void dpm_resume_end(pm_message_t state
)
709 EXPORT_SYMBOL_GPL(dpm_resume_end
);
712 /*------------------------- Suspend routines -------------------------*/
715 * resume_event - Return a "resume" message for given "suspend" sleep state.
716 * @sleep_state: PM message representing a sleep state.
718 * Return a PM message representing the resume event corresponding to given
721 static pm_message_t
resume_event(pm_message_t sleep_state
)
723 switch (sleep_state
.event
) {
724 case PM_EVENT_SUSPEND
:
726 case PM_EVENT_FREEZE
:
727 case PM_EVENT_QUIESCE
:
729 case PM_EVENT_HIBERNATE
:
736 * device_suspend_noirq - Execute a "late suspend" callback for given device.
737 * @dev: Device to handle.
738 * @state: PM transition of the system being carried out.
740 * The driver of @dev will not receive interrupts while this function is being
743 static int device_suspend_noirq(struct device
*dev
, pm_message_t state
)
747 if (dev
->pwr_domain
) {
748 pm_dev_dbg(dev
, state
, "LATE power domain ");
749 error
= pm_noirq_op(dev
, &dev
->pwr_domain
->ops
, state
);
752 } else if (dev
->type
&& dev
->type
->pm
) {
753 pm_dev_dbg(dev
, state
, "LATE type ");
754 error
= pm_noirq_op(dev
, dev
->type
->pm
, state
);
757 } else if (dev
->class && dev
->class->pm
) {
758 pm_dev_dbg(dev
, state
, "LATE class ");
759 error
= pm_noirq_op(dev
, dev
->class->pm
, state
);
762 } else if (dev
->bus
&& dev
->bus
->pm
) {
763 pm_dev_dbg(dev
, state
, "LATE ");
764 error
= pm_noirq_op(dev
, dev
->bus
->pm
, state
);
773 * dpm_suspend_noirq - Execute "late suspend" callbacks for non-sysdev devices.
774 * @state: PM transition of the system being carried out.
776 * Prevent device drivers from receiving interrupts and call the "noirq" suspend
777 * handlers for all non-sysdev devices.
779 int dpm_suspend_noirq(pm_message_t state
)
781 ktime_t starttime
= ktime_get();
784 suspend_device_irqs();
785 mutex_lock(&dpm_list_mtx
);
786 while (!list_empty(&dpm_suspended_list
)) {
787 struct device
*dev
= to_device(dpm_suspended_list
.prev
);
790 mutex_unlock(&dpm_list_mtx
);
792 error
= device_suspend_noirq(dev
, state
);
794 mutex_lock(&dpm_list_mtx
);
796 pm_dev_err(dev
, state
, " late", error
);
800 if (!list_empty(&dev
->power
.entry
))
801 list_move(&dev
->power
.entry
, &dpm_noirq_list
);
804 mutex_unlock(&dpm_list_mtx
);
806 dpm_resume_noirq(resume_event(state
));
808 dpm_show_time(starttime
, state
, "late");
811 EXPORT_SYMBOL_GPL(dpm_suspend_noirq
);
814 * legacy_suspend - Execute a legacy (bus or class) suspend callback for device.
815 * @dev: Device to suspend.
816 * @state: PM transition of the system being carried out.
817 * @cb: Suspend callback to execute.
819 static int legacy_suspend(struct device
*dev
, pm_message_t state
,
820 int (*cb
)(struct device
*dev
, pm_message_t state
))
825 calltime
= initcall_debug_start(dev
);
827 error
= cb(dev
, state
);
828 suspend_report_result(cb
, error
);
830 initcall_debug_report(dev
, calltime
, error
);
836 * device_suspend - Execute "suspend" callbacks for given device.
837 * @dev: Device to handle.
838 * @state: PM transition of the system being carried out.
839 * @async: If true, the device is being suspended asynchronously.
841 static int __device_suspend(struct device
*dev
, pm_message_t state
, bool async
)
845 dpm_wait_for_children(dev
, async
);
851 if (pm_wakeup_pending()) {
852 async_error
= -EBUSY
;
856 if (dev
->pwr_domain
) {
857 pm_dev_dbg(dev
, state
, "power domain ");
858 error
= pm_op(dev
, &dev
->pwr_domain
->ops
, state
);
862 if (dev
->type
&& dev
->type
->pm
) {
863 pm_dev_dbg(dev
, state
, "type ");
864 error
= pm_op(dev
, dev
->type
->pm
, state
);
869 if (dev
->class->pm
) {
870 pm_dev_dbg(dev
, state
, "class ");
871 error
= pm_op(dev
, dev
->class->pm
, state
);
873 } else if (dev
->class->suspend
) {
874 pm_dev_dbg(dev
, state
, "legacy class ");
875 error
= legacy_suspend(dev
, state
, dev
->class->suspend
);
882 pm_dev_dbg(dev
, state
, "");
883 error
= pm_op(dev
, dev
->bus
->pm
, state
);
884 } else if (dev
->bus
->suspend
) {
885 pm_dev_dbg(dev
, state
, "legacy ");
886 error
= legacy_suspend(dev
, state
, dev
->bus
->suspend
);
891 dev
->power
.is_suspended
= !error
;
895 complete_all(&dev
->power
.completion
);
903 static void async_suspend(void *data
, async_cookie_t cookie
)
905 struct device
*dev
= (struct device
*)data
;
908 error
= __device_suspend(dev
, pm_transition
, true);
910 pm_dev_err(dev
, pm_transition
, " async", error
);
915 static int device_suspend(struct device
*dev
)
917 INIT_COMPLETION(dev
->power
.completion
);
919 if (pm_async_enabled
&& dev
->power
.async_suspend
) {
921 async_schedule(async_suspend
, dev
);
925 return __device_suspend(dev
, pm_transition
, false);
929 * dpm_suspend - Execute "suspend" callbacks for all non-sysdev devices.
930 * @state: PM transition of the system being carried out.
932 int dpm_suspend(pm_message_t state
)
934 ktime_t starttime
= ktime_get();
939 mutex_lock(&dpm_list_mtx
);
940 pm_transition
= state
;
942 while (!list_empty(&dpm_prepared_list
)) {
943 struct device
*dev
= to_device(dpm_prepared_list
.prev
);
946 mutex_unlock(&dpm_list_mtx
);
948 error
= device_suspend(dev
);
950 mutex_lock(&dpm_list_mtx
);
952 pm_dev_err(dev
, state
, "", error
);
956 if (!list_empty(&dev
->power
.entry
))
957 list_move(&dev
->power
.entry
, &dpm_suspended_list
);
962 mutex_unlock(&dpm_list_mtx
);
963 async_synchronize_full();
967 dpm_show_time(starttime
, state
, NULL
);
972 * device_prepare - Prepare a device for system power transition.
973 * @dev: Device to handle.
974 * @state: PM transition of the system being carried out.
976 * Execute the ->prepare() callback(s) for given device. No new children of the
977 * device may be registered after this function has returned.
979 static int device_prepare(struct device
*dev
, pm_message_t state
)
985 if (dev
->pwr_domain
) {
986 pm_dev_dbg(dev
, state
, "preparing power domain ");
987 if (dev
->pwr_domain
->ops
.prepare
)
988 error
= dev
->pwr_domain
->ops
.prepare(dev
);
989 suspend_report_result(dev
->pwr_domain
->ops
.prepare
, error
);
992 } else if (dev
->type
&& dev
->type
->pm
) {
993 pm_dev_dbg(dev
, state
, "preparing type ");
994 if (dev
->type
->pm
->prepare
)
995 error
= dev
->type
->pm
->prepare(dev
);
996 suspend_report_result(dev
->type
->pm
->prepare
, error
);
999 } else if (dev
->class && dev
->class->pm
) {
1000 pm_dev_dbg(dev
, state
, "preparing class ");
1001 if (dev
->class->pm
->prepare
)
1002 error
= dev
->class->pm
->prepare(dev
);
1003 suspend_report_result(dev
->class->pm
->prepare
, error
);
1006 } else if (dev
->bus
&& dev
->bus
->pm
) {
1007 pm_dev_dbg(dev
, state
, "preparing ");
1008 if (dev
->bus
->pm
->prepare
)
1009 error
= dev
->bus
->pm
->prepare(dev
);
1010 suspend_report_result(dev
->bus
->pm
->prepare
, error
);
1020 * dpm_prepare - Prepare all non-sysdev devices for a system PM transition.
1021 * @state: PM transition of the system being carried out.
1023 * Execute the ->prepare() callback(s) for all devices.
1025 int dpm_prepare(pm_message_t state
)
1031 mutex_lock(&dpm_list_mtx
);
1032 while (!list_empty(&dpm_list
)) {
1033 struct device
*dev
= to_device(dpm_list
.next
);
1036 mutex_unlock(&dpm_list_mtx
);
1038 pm_runtime_get_noresume(dev
);
1039 if (pm_runtime_barrier(dev
) && device_may_wakeup(dev
))
1040 pm_wakeup_event(dev
, 0);
1042 pm_runtime_put_sync(dev
);
1043 error
= pm_wakeup_pending() ?
1044 -EBUSY
: device_prepare(dev
, state
);
1046 mutex_lock(&dpm_list_mtx
);
1048 if (error
== -EAGAIN
) {
1053 printk(KERN_INFO
"PM: Device %s not prepared "
1054 "for power transition: code %d\n",
1055 dev_name(dev
), error
);
1059 dev
->power
.is_prepared
= true;
1060 if (!list_empty(&dev
->power
.entry
))
1061 list_move_tail(&dev
->power
.entry
, &dpm_prepared_list
);
1064 mutex_unlock(&dpm_list_mtx
);
1069 * dpm_suspend_start - Prepare devices for PM transition and suspend them.
1070 * @state: PM transition of the system being carried out.
1072 * Prepare all non-sysdev devices for system PM transition and execute "suspend"
1073 * callbacks for them.
1075 int dpm_suspend_start(pm_message_t state
)
1079 error
= dpm_prepare(state
);
1081 error
= dpm_suspend(state
);
1084 EXPORT_SYMBOL_GPL(dpm_suspend_start
);
1086 void __suspend_report_result(const char *function
, void *fn
, int ret
)
1089 printk(KERN_ERR
"%s(): %pF returns %d\n", function
, fn
, ret
);
1091 EXPORT_SYMBOL_GPL(__suspend_report_result
);
1094 * device_pm_wait_for_dev - Wait for suspend/resume of a device to complete.
1095 * @dev: Device to wait for.
1096 * @subordinate: Device that needs to wait for @dev.
1098 int device_pm_wait_for_dev(struct device
*subordinate
, struct device
*dev
)
1100 dpm_wait(dev
, subordinate
->power
.async_suspend
);
1103 EXPORT_SYMBOL_GPL(device_pm_wait_for_dev
);