1 // SPDX-License-Identifier: GPL-2.0
3 * drivers/base/power/main.c - Where the driver meets power management.
5 * Copyright (c) 2003 Patrick Mochel
6 * Copyright (c) 2003 Open Source Development Lab
8 * The driver model core calls device_pm_add() when a device is registered.
9 * This will initialize the embedded device_pm_info object in the device
10 * and add it to the list of power-controlled devices. sysfs entries for
11 * controlling device power management will also be added.
13 * A separate list is used for keeping track of power info, because the power
14 * domain dependencies may differ from the ancestral dependencies that the
15 * subsystem list maintains.
18 #define pr_fmt(fmt) "PM: " fmt
19 #define dev_fmt pr_fmt
21 #include <linux/device.h>
22 #include <linux/export.h>
23 #include <linux/mutex.h>
25 #include <linux/pm_runtime.h>
26 #include <linux/pm-trace.h>
27 #include <linux/pm_wakeirq.h>
28 #include <linux/interrupt.h>
29 #include <linux/sched.h>
30 #include <linux/sched/debug.h>
31 #include <linux/async.h>
32 #include <linux/suspend.h>
33 #include <trace/events/power.h>
34 #include <linux/cpufreq.h>
35 #include <linux/devfreq.h>
36 #include <linux/timer.h>
41 typedef int (*pm_callback_t)(struct device *);
43 #define list_for_each_entry_rcu_locked(pos, head, member) \
44 list_for_each_entry_rcu(pos, head, member, \
45 device_links_read_lock_held())
48 * The entries in the dpm_list list are in a depth first order, simply
49 * because children are guaranteed to be discovered after parents, and
50 * are inserted at the back of the list on discovery.
52 * Since device_pm_add() may be called with a device lock held,
53 * we must never try to acquire a device lock while holding
58 static LIST_HEAD(dpm_prepared_list);
59 static LIST_HEAD(dpm_suspended_list);
60 static LIST_HEAD(dpm_late_early_list);
61 static LIST_HEAD(dpm_noirq_list);
63 struct suspend_stats suspend_stats;
64 static DEFINE_MUTEX(dpm_list_mtx);
65 static pm_message_t pm_transition;
67 static int async_error;
69 static const char *pm_verb(int event)
72 case PM_EVENT_SUSPEND:
78 case PM_EVENT_QUIESCE:
80 case PM_EVENT_HIBERNATE:
84 case PM_EVENT_RESTORE:
86 case PM_EVENT_RECOVER:
89 return "(unknown PM event)";
94 * device_pm_sleep_init - Initialize system suspend-related device fields.
95 * @dev: Device object being initialized.
97 void device_pm_sleep_init(struct device *dev)
99 dev->power.is_prepared = false;
100 dev->power.is_suspended = false;
101 dev->power.is_noirq_suspended = false;
102 dev->power.is_late_suspended = false;
103 init_completion(&dev->power.completion);
104 complete_all(&dev->power.completion);
105 dev->power.wakeup = NULL;
106 INIT_LIST_HEAD(&dev->power.entry);
110 * device_pm_lock - Lock the list of active devices used by the PM core.
112 void device_pm_lock(void)
114 mutex_lock(&dpm_list_mtx);
118 * device_pm_unlock - Unlock the list of active devices used by the PM core.
120 void device_pm_unlock(void)
122 mutex_unlock(&dpm_list_mtx);
126 * device_pm_add - Add a device to the PM core's list of active devices.
127 * @dev: Device to add to the list.
129 void device_pm_add(struct device *dev)
131 /* Skip PM setup/initialization. */
132 if (device_pm_not_required(dev))
135 pr_debug("Adding info for %s:%s\n",
136 dev->bus ? dev->bus->name : "No Bus", dev_name(dev));
137 device_pm_check_callbacks(dev);
138 mutex_lock(&dpm_list_mtx);
139 if (dev->parent && dev->parent->power.is_prepared)
140 dev_warn(dev, "parent %s should not be sleeping\n",
141 dev_name(dev->parent));
142 list_add_tail(&dev->power.entry, &dpm_list);
143 dev->power.in_dpm_list = true;
144 mutex_unlock(&dpm_list_mtx);
148 * device_pm_remove - Remove a device from the PM core's list of active devices.
149 * @dev: Device to be removed from the list.
151 void device_pm_remove(struct device *dev)
153 if (device_pm_not_required(dev))
156 pr_debug("Removing info for %s:%s\n",
157 dev->bus ? dev->bus->name : "No Bus", dev_name(dev));
158 complete_all(&dev->power.completion);
159 mutex_lock(&dpm_list_mtx);
160 list_del_init(&dev->power.entry);
161 dev->power.in_dpm_list = false;
162 mutex_unlock(&dpm_list_mtx);
163 device_wakeup_disable(dev);
164 pm_runtime_remove(dev);
165 device_pm_check_callbacks(dev);
169 * device_pm_move_before - Move device in the PM core's list of active devices.
170 * @deva: Device to move in dpm_list.
171 * @devb: Device @deva should come before.
173 void device_pm_move_before(struct device *deva, struct device *devb)
175 pr_debug("Moving %s:%s before %s:%s\n",
176 deva->bus ? deva->bus->name : "No Bus", dev_name(deva),
177 devb->bus ? devb->bus->name : "No Bus", dev_name(devb));
178 /* Delete deva from dpm_list and reinsert before devb. */
179 list_move_tail(&deva->power.entry, &devb->power.entry);
183 * device_pm_move_after - Move device in the PM core's list of active devices.
184 * @deva: Device to move in dpm_list.
185 * @devb: Device @deva should come after.
187 void device_pm_move_after(struct device *deva, struct device *devb)
189 pr_debug("Moving %s:%s after %s:%s\n",
190 deva->bus ? deva->bus->name : "No Bus", dev_name(deva),
191 devb->bus ? devb->bus->name : "No Bus", dev_name(devb));
192 /* Delete deva from dpm_list and reinsert after devb. */
193 list_move(&deva->power.entry, &devb->power.entry);
197 * device_pm_move_last - Move device to end of the PM core's list of devices.
198 * @dev: Device to move in dpm_list.
200 void device_pm_move_last(struct device *dev)
202 pr_debug("Moving %s:%s to end of list\n",
203 dev->bus ? dev->bus->name : "No Bus", dev_name(dev));
204 list_move_tail(&dev->power.entry, &dpm_list);
207 static ktime_t initcall_debug_start(struct device *dev, void *cb)
209 if (!pm_print_times_enabled)
212 dev_info(dev, "calling %pS @ %i, parent: %s\n", cb,
213 task_pid_nr(current),
214 dev->parent ? dev_name(dev->parent) : "none");
218 static void initcall_debug_report(struct device *dev, ktime_t calltime,
223 if (!pm_print_times_enabled)
226 rettime = ktime_get();
227 dev_info(dev, "%pS returned %d after %Ld usecs\n", cb, error,
228 (unsigned long long)ktime_us_delta(rettime, calltime));
232 * dpm_wait - Wait for a PM operation to complete.
233 * @dev: Device to wait for.
234 * @async: If unset, wait only if the device's power.async_suspend flag is set.
236 static void dpm_wait(struct device *dev, bool async)
241 if (async || (pm_async_enabled && dev->power.async_suspend))
242 wait_for_completion(&dev->power.completion);
245 static int dpm_wait_fn(struct device *dev, void *async_ptr)
247 dpm_wait(dev, *((bool *)async_ptr));
251 static void dpm_wait_for_children(struct device *dev, bool async)
253 device_for_each_child(dev, &async, dpm_wait_fn);
256 static void dpm_wait_for_suppliers(struct device *dev, bool async)
258 struct device_link *link;
261 idx = device_links_read_lock();
264 * If the supplier goes away right after we've checked the link to it,
265 * we'll wait for its completion to change the state, but that's fine,
266 * because the only things that will block as a result are the SRCU
267 * callbacks freeing the link objects for the links in the list we're
270 list_for_each_entry_rcu_locked(link, &dev->links.suppliers, c_node)
271 if (READ_ONCE(link->status) != DL_STATE_DORMANT)
272 dpm_wait(link->supplier, async);
274 device_links_read_unlock(idx);
277 static bool dpm_wait_for_superior(struct device *dev, bool async)
279 struct device *parent;
282 * If the device is resumed asynchronously and the parent's callback
283 * deletes both the device and the parent itself, the parent object may
284 * be freed while this function is running, so avoid that by reference
285 * counting the parent once more unless the device has been deleted
286 * already (in which case return right away).
288 mutex_lock(&dpm_list_mtx);
290 if (!device_pm_initialized(dev)) {
291 mutex_unlock(&dpm_list_mtx);
295 parent = get_device(dev->parent);
297 mutex_unlock(&dpm_list_mtx);
299 dpm_wait(parent, async);
302 dpm_wait_for_suppliers(dev, async);
305 * If the parent's callback has deleted the device, attempting to resume
306 * it would be invalid, so avoid doing that then.
308 return device_pm_initialized(dev);
311 static void dpm_wait_for_consumers(struct device *dev, bool async)
313 struct device_link *link;
316 idx = device_links_read_lock();
319 * The status of a device link can only be changed from "dormant" by a
320 * probe, but that cannot happen during system suspend/resume. In
321 * theory it can change to "dormant" at that time, but then it is
322 * reasonable to wait for the target device anyway (eg. if it goes
323 * away, it's better to wait for it to go away completely and then
324 * continue instead of trying to continue in parallel with its
327 list_for_each_entry_rcu_locked(link, &dev->links.consumers, s_node)
328 if (READ_ONCE(link->status) != DL_STATE_DORMANT)
329 dpm_wait(link->consumer, async);
331 device_links_read_unlock(idx);
334 static void dpm_wait_for_subordinate(struct device *dev, bool async)
336 dpm_wait_for_children(dev, async);
337 dpm_wait_for_consumers(dev, async);
341 * pm_op - Return the PM operation appropriate for given PM event.
342 * @ops: PM operations to choose from.
343 * @state: PM transition of the system being carried out.
345 static pm_callback_t pm_op(const struct dev_pm_ops *ops, pm_message_t state)
347 switch (state.event) {
348 #ifdef CONFIG_SUSPEND
349 case PM_EVENT_SUSPEND:
351 case PM_EVENT_RESUME:
353 #endif /* CONFIG_SUSPEND */
354 #ifdef CONFIG_HIBERNATE_CALLBACKS
355 case PM_EVENT_FREEZE:
356 case PM_EVENT_QUIESCE:
358 case PM_EVENT_HIBERNATE:
359 return ops->poweroff;
361 case PM_EVENT_RECOVER:
363 case PM_EVENT_RESTORE:
365 #endif /* CONFIG_HIBERNATE_CALLBACKS */
372 * pm_late_early_op - Return the PM operation appropriate for given PM event.
373 * @ops: PM operations to choose from.
374 * @state: PM transition of the system being carried out.
376 * Runtime PM is disabled for @dev while this function is being executed.
378 static pm_callback_t pm_late_early_op(const struct dev_pm_ops *ops,
381 switch (state.event) {
382 #ifdef CONFIG_SUSPEND
383 case PM_EVENT_SUSPEND:
384 return ops->suspend_late;
385 case PM_EVENT_RESUME:
386 return ops->resume_early;
387 #endif /* CONFIG_SUSPEND */
388 #ifdef CONFIG_HIBERNATE_CALLBACKS
389 case PM_EVENT_FREEZE:
390 case PM_EVENT_QUIESCE:
391 return ops->freeze_late;
392 case PM_EVENT_HIBERNATE:
393 return ops->poweroff_late;
395 case PM_EVENT_RECOVER:
396 return ops->thaw_early;
397 case PM_EVENT_RESTORE:
398 return ops->restore_early;
399 #endif /* CONFIG_HIBERNATE_CALLBACKS */
406 * pm_noirq_op - Return the PM operation appropriate for given PM event.
407 * @ops: PM operations to choose from.
408 * @state: PM transition of the system being carried out.
410 * The driver of @dev will not receive interrupts while this function is being
413 static pm_callback_t pm_noirq_op(const struct dev_pm_ops *ops, pm_message_t state)
415 switch (state.event) {
416 #ifdef CONFIG_SUSPEND
417 case PM_EVENT_SUSPEND:
418 return ops->suspend_noirq;
419 case PM_EVENT_RESUME:
420 return ops->resume_noirq;
421 #endif /* CONFIG_SUSPEND */
422 #ifdef CONFIG_HIBERNATE_CALLBACKS
423 case PM_EVENT_FREEZE:
424 case PM_EVENT_QUIESCE:
425 return ops->freeze_noirq;
426 case PM_EVENT_HIBERNATE:
427 return ops->poweroff_noirq;
429 case PM_EVENT_RECOVER:
430 return ops->thaw_noirq;
431 case PM_EVENT_RESTORE:
432 return ops->restore_noirq;
433 #endif /* CONFIG_HIBERNATE_CALLBACKS */
439 static void pm_dev_dbg(struct device *dev, pm_message_t state, const char *info)
441 dev_dbg(dev, "%s%s%s driver flags: %x\n", info, pm_verb(state.event),
442 ((state.event & PM_EVENT_SLEEP) && device_may_wakeup(dev)) ?
443 ", may wakeup" : "", dev->power.driver_flags);
446 static void pm_dev_err(struct device *dev, pm_message_t state, const char *info,
449 dev_err(dev, "failed to %s%s: error %d\n", pm_verb(state.event), info,
453 static void dpm_show_time(ktime_t starttime, pm_message_t state, int error,
460 calltime = ktime_get();
461 usecs64 = ktime_to_ns(ktime_sub(calltime, starttime));
462 do_div(usecs64, NSEC_PER_USEC);
467 pm_pr_dbg("%s%s%s of devices %s after %ld.%03ld msecs\n",
468 info ?: "", info ? " " : "", pm_verb(state.event),
469 error ? "aborted" : "complete",
470 usecs / USEC_PER_MSEC, usecs % USEC_PER_MSEC);
473 static int dpm_run_callback(pm_callback_t cb, struct device *dev,
474 pm_message_t state, const char *info)
482 calltime = initcall_debug_start(dev, cb);
484 pm_dev_dbg(dev, state, info);
485 trace_device_pm_callback_start(dev, info, state.event);
487 trace_device_pm_callback_end(dev, error);
488 suspend_report_result(dev, cb, error);
490 initcall_debug_report(dev, calltime, cb, error);
495 #ifdef CONFIG_DPM_WATCHDOG
496 struct dpm_watchdog {
498 struct task_struct *tsk;
499 struct timer_list timer;
502 #define DECLARE_DPM_WATCHDOG_ON_STACK(wd) \
503 struct dpm_watchdog wd
506 * dpm_watchdog_handler - Driver suspend / resume watchdog handler.
507 * @t: The timer that PM watchdog depends on.
509 * Called when a driver has timed out suspending or resuming.
510 * There's not much we can do here to recover so panic() to
511 * capture a crash-dump in pstore.
513 static void dpm_watchdog_handler(struct timer_list *t)
515 struct dpm_watchdog *wd = from_timer(wd, t, timer);
517 dev_emerg(wd->dev, "**** DPM device timeout ****\n");
518 show_stack(wd->tsk, NULL, KERN_EMERG);
519 panic("%s %s: unrecoverable failure\n",
520 dev_driver_string(wd->dev), dev_name(wd->dev));
524 * dpm_watchdog_set - Enable pm watchdog for given device.
525 * @wd: Watchdog. Must be allocated on the stack.
526 * @dev: Device to handle.
528 static void dpm_watchdog_set(struct dpm_watchdog *wd, struct device *dev)
530 struct timer_list *timer = &wd->timer;
535 timer_setup_on_stack(timer, dpm_watchdog_handler, 0);
536 /* use same timeout value for both suspend and resume */
537 timer->expires = jiffies + HZ * CONFIG_DPM_WATCHDOG_TIMEOUT;
542 * dpm_watchdog_clear - Disable suspend/resume watchdog.
543 * @wd: Watchdog to disable.
545 static void dpm_watchdog_clear(struct dpm_watchdog *wd)
547 struct timer_list *timer = &wd->timer;
549 del_timer_sync(timer);
550 destroy_timer_on_stack(timer);
553 #define DECLARE_DPM_WATCHDOG_ON_STACK(wd)
554 #define dpm_watchdog_set(x, y)
555 #define dpm_watchdog_clear(x)
558 /*------------------------- Resume routines -------------------------*/
561 * dev_pm_skip_resume - System-wide device resume optimization check.
562 * @dev: Target device.
565 * - %false if the transition under way is RESTORE.
566 * - Return value of dev_pm_skip_suspend() if the transition under way is THAW.
567 * - The logical negation of %power.must_resume otherwise (that is, when the
568 * transition under way is RESUME).
570 bool dev_pm_skip_resume(struct device *dev)
572 if (pm_transition.event == PM_EVENT_RESTORE)
575 if (pm_transition.event == PM_EVENT_THAW)
576 return dev_pm_skip_suspend(dev);
578 return !dev->power.must_resume;
582 * device_resume_noirq - Execute a "noirq resume" callback for given device.
583 * @dev: Device to handle.
584 * @state: PM transition of the system being carried out.
585 * @async: If true, the device is being resumed asynchronously.
587 * The driver of @dev will not receive interrupts while this function is being
590 static int device_resume_noirq(struct device *dev, pm_message_t state, bool async)
592 pm_callback_t callback = NULL;
593 const char *info = NULL;
600 if (dev->power.syscore || dev->power.direct_complete)
603 if (!dev->power.is_noirq_suspended)
606 if (!dpm_wait_for_superior(dev, async))
609 skip_resume = dev_pm_skip_resume(dev);
611 * If the driver callback is skipped below or by the middle layer
612 * callback and device_resume_early() also skips the driver callback for
613 * this device later, it needs to appear as "suspended" to PM-runtime,
614 * so change its status accordingly.
616 * Otherwise, the device is going to be resumed, so set its PM-runtime
617 * status to "active", but do that only if DPM_FLAG_SMART_SUSPEND is set
618 * to avoid confusing drivers that don't use it.
621 pm_runtime_set_suspended(dev);
622 else if (dev_pm_skip_suspend(dev))
623 pm_runtime_set_active(dev);
625 if (dev->pm_domain) {
626 info = "noirq power domain ";
627 callback = pm_noirq_op(&dev->pm_domain->ops, state);
628 } else if (dev->type && dev->type->pm) {
629 info = "noirq type ";
630 callback = pm_noirq_op(dev->type->pm, state);
631 } else if (dev->class && dev->class->pm) {
632 info = "noirq class ";
633 callback = pm_noirq_op(dev->class->pm, state);
634 } else if (dev->bus && dev->bus->pm) {
636 callback = pm_noirq_op(dev->bus->pm, state);
644 if (dev->driver && dev->driver->pm) {
645 info = "noirq driver ";
646 callback = pm_noirq_op(dev->driver->pm, state);
650 error = dpm_run_callback(callback, dev, state, info);
653 dev->power.is_noirq_suspended = false;
656 complete_all(&dev->power.completion);
661 static bool is_async(struct device *dev)
663 return dev->power.async_suspend && pm_async_enabled
664 && !pm_trace_is_enabled();
667 static bool dpm_async_fn(struct device *dev, async_func_t func)
669 reinit_completion(&dev->power.completion);
673 async_schedule_dev(func, dev);
680 static void async_resume_noirq(void *data, async_cookie_t cookie)
682 struct device *dev = data;
685 error = device_resume_noirq(dev, pm_transition, true);
687 pm_dev_err(dev, pm_transition, " async", error);
692 static void dpm_noirq_resume_devices(pm_message_t state)
695 ktime_t starttime = ktime_get();
697 trace_suspend_resume(TPS("dpm_resume_noirq"), state.event, true);
698 mutex_lock(&dpm_list_mtx);
699 pm_transition = state;
702 * Advanced the async threads upfront,
703 * in case the starting of async threads is
704 * delayed by non-async resuming devices.
706 list_for_each_entry(dev, &dpm_noirq_list, power.entry)
707 dpm_async_fn(dev, async_resume_noirq);
709 while (!list_empty(&dpm_noirq_list)) {
710 dev = to_device(dpm_noirq_list.next);
712 list_move_tail(&dev->power.entry, &dpm_late_early_list);
714 mutex_unlock(&dpm_list_mtx);
716 if (!is_async(dev)) {
719 error = device_resume_noirq(dev, state, false);
721 suspend_stats.failed_resume_noirq++;
722 dpm_save_failed_step(SUSPEND_RESUME_NOIRQ);
723 dpm_save_failed_dev(dev_name(dev));
724 pm_dev_err(dev, state, " noirq", error);
730 mutex_lock(&dpm_list_mtx);
732 mutex_unlock(&dpm_list_mtx);
733 async_synchronize_full();
734 dpm_show_time(starttime, state, 0, "noirq");
735 trace_suspend_resume(TPS("dpm_resume_noirq"), state.event, false);
739 * dpm_resume_noirq - Execute "noirq resume" callbacks for all devices.
740 * @state: PM transition of the system being carried out.
742 * Invoke the "noirq" resume callbacks for all devices in dpm_noirq_list and
743 * allow device drivers' interrupt handlers to be called.
745 void dpm_resume_noirq(pm_message_t state)
747 dpm_noirq_resume_devices(state);
749 resume_device_irqs();
750 device_wakeup_disarm_wake_irqs();
754 * device_resume_early - Execute an "early resume" callback for given device.
755 * @dev: Device to handle.
756 * @state: PM transition of the system being carried out.
757 * @async: If true, the device is being resumed asynchronously.
759 * Runtime PM is disabled for @dev while this function is being executed.
761 static int device_resume_early(struct device *dev, pm_message_t state, bool async)
763 pm_callback_t callback = NULL;
764 const char *info = NULL;
770 if (dev->power.syscore || dev->power.direct_complete)
773 if (!dev->power.is_late_suspended)
776 if (!dpm_wait_for_superior(dev, async))
779 if (dev->pm_domain) {
780 info = "early power domain ";
781 callback = pm_late_early_op(&dev->pm_domain->ops, state);
782 } else if (dev->type && dev->type->pm) {
783 info = "early type ";
784 callback = pm_late_early_op(dev->type->pm, state);
785 } else if (dev->class && dev->class->pm) {
786 info = "early class ";
787 callback = pm_late_early_op(dev->class->pm, state);
788 } else if (dev->bus && dev->bus->pm) {
790 callback = pm_late_early_op(dev->bus->pm, state);
795 if (dev_pm_skip_resume(dev))
798 if (dev->driver && dev->driver->pm) {
799 info = "early driver ";
800 callback = pm_late_early_op(dev->driver->pm, state);
804 error = dpm_run_callback(callback, dev, state, info);
807 dev->power.is_late_suspended = false;
812 pm_runtime_enable(dev);
813 complete_all(&dev->power.completion);
817 static void async_resume_early(void *data, async_cookie_t cookie)
819 struct device *dev = data;
822 error = device_resume_early(dev, pm_transition, true);
824 pm_dev_err(dev, pm_transition, " async", error);
830 * dpm_resume_early - Execute "early resume" callbacks for all devices.
831 * @state: PM transition of the system being carried out.
833 void dpm_resume_early(pm_message_t state)
836 ktime_t starttime = ktime_get();
838 trace_suspend_resume(TPS("dpm_resume_early"), state.event, true);
839 mutex_lock(&dpm_list_mtx);
840 pm_transition = state;
843 * Advanced the async threads upfront,
844 * in case the starting of async threads is
845 * delayed by non-async resuming devices.
847 list_for_each_entry(dev, &dpm_late_early_list, power.entry)
848 dpm_async_fn(dev, async_resume_early);
850 while (!list_empty(&dpm_late_early_list)) {
851 dev = to_device(dpm_late_early_list.next);
853 list_move_tail(&dev->power.entry, &dpm_suspended_list);
855 mutex_unlock(&dpm_list_mtx);
857 if (!is_async(dev)) {
860 error = device_resume_early(dev, state, false);
862 suspend_stats.failed_resume_early++;
863 dpm_save_failed_step(SUSPEND_RESUME_EARLY);
864 dpm_save_failed_dev(dev_name(dev));
865 pm_dev_err(dev, state, " early", error);
871 mutex_lock(&dpm_list_mtx);
873 mutex_unlock(&dpm_list_mtx);
874 async_synchronize_full();
875 dpm_show_time(starttime, state, 0, "early");
876 trace_suspend_resume(TPS("dpm_resume_early"), state.event, false);
880 * dpm_resume_start - Execute "noirq" and "early" device callbacks.
881 * @state: PM transition of the system being carried out.
883 void dpm_resume_start(pm_message_t state)
885 dpm_resume_noirq(state);
886 dpm_resume_early(state);
888 EXPORT_SYMBOL_GPL(dpm_resume_start);
891 * device_resume - Execute "resume" callbacks for given device.
892 * @dev: Device to handle.
893 * @state: PM transition of the system being carried out.
894 * @async: If true, the device is being resumed asynchronously.
896 static int device_resume(struct device *dev, pm_message_t state, bool async)
898 pm_callback_t callback = NULL;
899 const char *info = NULL;
901 DECLARE_DPM_WATCHDOG_ON_STACK(wd);
906 if (dev->power.syscore)
909 if (dev->power.direct_complete) {
910 /* Match the pm_runtime_disable() in __device_suspend(). */
911 pm_runtime_enable(dev);
915 if (!dpm_wait_for_superior(dev, async))
918 dpm_watchdog_set(&wd, dev);
922 * This is a fib. But we'll allow new children to be added below
923 * a resumed device, even if the device hasn't been completed yet.
925 dev->power.is_prepared = false;
927 if (!dev->power.is_suspended)
930 if (dev->pm_domain) {
931 info = "power domain ";
932 callback = pm_op(&dev->pm_domain->ops, state);
936 if (dev->type && dev->type->pm) {
938 callback = pm_op(dev->type->pm, state);
942 if (dev->class && dev->class->pm) {
944 callback = pm_op(dev->class->pm, state);
951 callback = pm_op(dev->bus->pm, state);
952 } else if (dev->bus->resume) {
953 info = "legacy bus ";
954 callback = dev->bus->resume;
960 if (!callback && dev->driver && dev->driver->pm) {
962 callback = pm_op(dev->driver->pm, state);
966 error = dpm_run_callback(callback, dev, state, info);
967 dev->power.is_suspended = false;
971 dpm_watchdog_clear(&wd);
974 complete_all(&dev->power.completion);
981 static void async_resume(void *data, async_cookie_t cookie)
983 struct device *dev = data;
986 error = device_resume(dev, pm_transition, true);
988 pm_dev_err(dev, pm_transition, " async", error);
993 * dpm_resume - Execute "resume" callbacks for non-sysdev devices.
994 * @state: PM transition of the system being carried out.
996 * Execute the appropriate "resume" callback for all devices whose status
997 * indicates that they are suspended.
999 void dpm_resume(pm_message_t state)
1002 ktime_t starttime = ktime_get();
1004 trace_suspend_resume(TPS("dpm_resume"), state.event, true);
1007 mutex_lock(&dpm_list_mtx);
1008 pm_transition = state;
1011 list_for_each_entry(dev, &dpm_suspended_list, power.entry)
1012 dpm_async_fn(dev, async_resume);
1014 while (!list_empty(&dpm_suspended_list)) {
1015 dev = to_device(dpm_suspended_list.next);
1017 if (!is_async(dev)) {
1020 mutex_unlock(&dpm_list_mtx);
1022 error = device_resume(dev, state, false);
1024 suspend_stats.failed_resume++;
1025 dpm_save_failed_step(SUSPEND_RESUME);
1026 dpm_save_failed_dev(dev_name(dev));
1027 pm_dev_err(dev, state, "", error);
1030 mutex_lock(&dpm_list_mtx);
1032 if (!list_empty(&dev->power.entry))
1033 list_move_tail(&dev->power.entry, &dpm_prepared_list);
1035 mutex_unlock(&dpm_list_mtx);
1039 mutex_lock(&dpm_list_mtx);
1041 mutex_unlock(&dpm_list_mtx);
1042 async_synchronize_full();
1043 dpm_show_time(starttime, state, 0, NULL);
1047 trace_suspend_resume(TPS("dpm_resume"), state.event, false);
1051 * device_complete - Complete a PM transition for given device.
1052 * @dev: Device to handle.
1053 * @state: PM transition of the system being carried out.
1055 static void device_complete(struct device *dev, pm_message_t state)
1057 void (*callback)(struct device *) = NULL;
1058 const char *info = NULL;
1060 if (dev->power.syscore)
1065 if (dev->pm_domain) {
1066 info = "completing power domain ";
1067 callback = dev->pm_domain->ops.complete;
1068 } else if (dev->type && dev->type->pm) {
1069 info = "completing type ";
1070 callback = dev->type->pm->complete;
1071 } else if (dev->class && dev->class->pm) {
1072 info = "completing class ";
1073 callback = dev->class->pm->complete;
1074 } else if (dev->bus && dev->bus->pm) {
1075 info = "completing bus ";
1076 callback = dev->bus->pm->complete;
1079 if (!callback && dev->driver && dev->driver->pm) {
1080 info = "completing driver ";
1081 callback = dev->driver->pm->complete;
1085 pm_dev_dbg(dev, state, info);
1092 pm_runtime_put(dev);
1096 * dpm_complete - Complete a PM transition for all non-sysdev devices.
1097 * @state: PM transition of the system being carried out.
1099 * Execute the ->complete() callbacks for all devices whose PM status is not
1100 * DPM_ON (this allows new devices to be registered).
1102 void dpm_complete(pm_message_t state)
1104 struct list_head list;
1106 trace_suspend_resume(TPS("dpm_complete"), state.event, true);
1109 INIT_LIST_HEAD(&list);
1110 mutex_lock(&dpm_list_mtx);
1111 while (!list_empty(&dpm_prepared_list)) {
1112 struct device *dev = to_device(dpm_prepared_list.prev);
1115 dev->power.is_prepared = false;
1116 list_move(&dev->power.entry, &list);
1118 mutex_unlock(&dpm_list_mtx);
1120 trace_device_pm_callback_start(dev, "", state.event);
1121 device_complete(dev, state);
1122 trace_device_pm_callback_end(dev, 0);
1126 mutex_lock(&dpm_list_mtx);
1128 list_splice(&list, &dpm_list);
1129 mutex_unlock(&dpm_list_mtx);
1131 /* Allow device probing and trigger re-probing of deferred devices */
1132 device_unblock_probing();
1133 trace_suspend_resume(TPS("dpm_complete"), state.event, false);
1137 * dpm_resume_end - Execute "resume" callbacks and complete system transition.
1138 * @state: PM transition of the system being carried out.
1140 * Execute "resume" callbacks for all devices and complete the PM transition of
1143 void dpm_resume_end(pm_message_t state)
1146 dpm_complete(state);
1148 EXPORT_SYMBOL_GPL(dpm_resume_end);
1151 /*------------------------- Suspend routines -------------------------*/
1154 * resume_event - Return a "resume" message for given "suspend" sleep state.
1155 * @sleep_state: PM message representing a sleep state.
1157 * Return a PM message representing the resume event corresponding to given
1160 static pm_message_t resume_event(pm_message_t sleep_state)
1162 switch (sleep_state.event) {
1163 case PM_EVENT_SUSPEND:
1165 case PM_EVENT_FREEZE:
1166 case PM_EVENT_QUIESCE:
1167 return PMSG_RECOVER;
1168 case PM_EVENT_HIBERNATE:
1169 return PMSG_RESTORE;
1174 static void dpm_superior_set_must_resume(struct device *dev)
1176 struct device_link *link;
1180 dev->parent->power.must_resume = true;
1182 idx = device_links_read_lock();
1184 list_for_each_entry_rcu_locked(link, &dev->links.suppliers, c_node)
1185 link->supplier->power.must_resume = true;
1187 device_links_read_unlock(idx);
1191 * __device_suspend_noirq - Execute a "noirq suspend" callback for given device.
1192 * @dev: Device to handle.
1193 * @state: PM transition of the system being carried out.
1194 * @async: If true, the device is being suspended asynchronously.
1196 * The driver of @dev will not receive interrupts while this function is being
1199 static int __device_suspend_noirq(struct device *dev, pm_message_t state, bool async)
1201 pm_callback_t callback = NULL;
1202 const char *info = NULL;
1208 dpm_wait_for_subordinate(dev, async);
1213 if (dev->power.syscore || dev->power.direct_complete)
1216 if (dev->pm_domain) {
1217 info = "noirq power domain ";
1218 callback = pm_noirq_op(&dev->pm_domain->ops, state);
1219 } else if (dev->type && dev->type->pm) {
1220 info = "noirq type ";
1221 callback = pm_noirq_op(dev->type->pm, state);
1222 } else if (dev->class && dev->class->pm) {
1223 info = "noirq class ";
1224 callback = pm_noirq_op(dev->class->pm, state);
1225 } else if (dev->bus && dev->bus->pm) {
1226 info = "noirq bus ";
1227 callback = pm_noirq_op(dev->bus->pm, state);
1232 if (dev_pm_skip_suspend(dev))
1235 if (dev->driver && dev->driver->pm) {
1236 info = "noirq driver ";
1237 callback = pm_noirq_op(dev->driver->pm, state);
1241 error = dpm_run_callback(callback, dev, state, info);
1243 async_error = error;
1248 dev->power.is_noirq_suspended = true;
1251 * Skipping the resume of devices that were in use right before the
1252 * system suspend (as indicated by their PM-runtime usage counters)
1253 * would be suboptimal. Also resume them if doing that is not allowed
1256 if (atomic_read(&dev->power.usage_count) > 1 ||
1257 !(dev_pm_test_driver_flags(dev, DPM_FLAG_MAY_SKIP_RESUME) &&
1258 dev->power.may_skip_resume))
1259 dev->power.must_resume = true;
1261 if (dev->power.must_resume)
1262 dpm_superior_set_must_resume(dev);
1265 complete_all(&dev->power.completion);
1266 TRACE_SUSPEND(error);
1270 static void async_suspend_noirq(void *data, async_cookie_t cookie)
1272 struct device *dev = data;
1275 error = __device_suspend_noirq(dev, pm_transition, true);
1277 dpm_save_failed_dev(dev_name(dev));
1278 pm_dev_err(dev, pm_transition, " async", error);
1284 static int device_suspend_noirq(struct device *dev)
1286 if (dpm_async_fn(dev, async_suspend_noirq))
1289 return __device_suspend_noirq(dev, pm_transition, false);
1292 static int dpm_noirq_suspend_devices(pm_message_t state)
1294 ktime_t starttime = ktime_get();
1297 trace_suspend_resume(TPS("dpm_suspend_noirq"), state.event, true);
1298 mutex_lock(&dpm_list_mtx);
1299 pm_transition = state;
1302 while (!list_empty(&dpm_late_early_list)) {
1303 struct device *dev = to_device(dpm_late_early_list.prev);
1306 mutex_unlock(&dpm_list_mtx);
1308 error = device_suspend_noirq(dev);
1310 mutex_lock(&dpm_list_mtx);
1313 pm_dev_err(dev, state, " noirq", error);
1314 dpm_save_failed_dev(dev_name(dev));
1315 } else if (!list_empty(&dev->power.entry)) {
1316 list_move(&dev->power.entry, &dpm_noirq_list);
1319 mutex_unlock(&dpm_list_mtx);
1323 mutex_lock(&dpm_list_mtx);
1325 if (error || async_error)
1328 mutex_unlock(&dpm_list_mtx);
1329 async_synchronize_full();
1331 error = async_error;
1334 suspend_stats.failed_suspend_noirq++;
1335 dpm_save_failed_step(SUSPEND_SUSPEND_NOIRQ);
1337 dpm_show_time(starttime, state, error, "noirq");
1338 trace_suspend_resume(TPS("dpm_suspend_noirq"), state.event, false);
1343 * dpm_suspend_noirq - Execute "noirq suspend" callbacks for all devices.
1344 * @state: PM transition of the system being carried out.
1346 * Prevent device drivers' interrupt handlers from being called and invoke
1347 * "noirq" suspend callbacks for all non-sysdev devices.
1349 int dpm_suspend_noirq(pm_message_t state)
1353 device_wakeup_arm_wake_irqs();
1354 suspend_device_irqs();
1356 ret = dpm_noirq_suspend_devices(state);
1358 dpm_resume_noirq(resume_event(state));
1363 static void dpm_propagate_wakeup_to_parent(struct device *dev)
1365 struct device *parent = dev->parent;
1370 spin_lock_irq(&parent->power.lock);
1372 if (device_wakeup_path(dev) && !parent->power.ignore_children)
1373 parent->power.wakeup_path = true;
1375 spin_unlock_irq(&parent->power.lock);
1379 * __device_suspend_late - Execute a "late suspend" callback for given device.
1380 * @dev: Device to handle.
1381 * @state: PM transition of the system being carried out.
1382 * @async: If true, the device is being suspended asynchronously.
1384 * Runtime PM is disabled for @dev while this function is being executed.
1386 static int __device_suspend_late(struct device *dev, pm_message_t state, bool async)
1388 pm_callback_t callback = NULL;
1389 const char *info = NULL;
1395 __pm_runtime_disable(dev, false);
1397 dpm_wait_for_subordinate(dev, async);
1402 if (pm_wakeup_pending()) {
1403 async_error = -EBUSY;
1407 if (dev->power.syscore || dev->power.direct_complete)
1410 if (dev->pm_domain) {
1411 info = "late power domain ";
1412 callback = pm_late_early_op(&dev->pm_domain->ops, state);
1413 } else if (dev->type && dev->type->pm) {
1414 info = "late type ";
1415 callback = pm_late_early_op(dev->type->pm, state);
1416 } else if (dev->class && dev->class->pm) {
1417 info = "late class ";
1418 callback = pm_late_early_op(dev->class->pm, state);
1419 } else if (dev->bus && dev->bus->pm) {
1421 callback = pm_late_early_op(dev->bus->pm, state);
1426 if (dev_pm_skip_suspend(dev))
1429 if (dev->driver && dev->driver->pm) {
1430 info = "late driver ";
1431 callback = pm_late_early_op(dev->driver->pm, state);
1435 error = dpm_run_callback(callback, dev, state, info);
1437 async_error = error;
1440 dpm_propagate_wakeup_to_parent(dev);
1443 dev->power.is_late_suspended = true;
1446 TRACE_SUSPEND(error);
1447 complete_all(&dev->power.completion);
1451 static void async_suspend_late(void *data, async_cookie_t cookie)
1453 struct device *dev = data;
1456 error = __device_suspend_late(dev, pm_transition, true);
1458 dpm_save_failed_dev(dev_name(dev));
1459 pm_dev_err(dev, pm_transition, " async", error);
1464 static int device_suspend_late(struct device *dev)
1466 if (dpm_async_fn(dev, async_suspend_late))
1469 return __device_suspend_late(dev, pm_transition, false);
1473 * dpm_suspend_late - Execute "late suspend" callbacks for all devices.
1474 * @state: PM transition of the system being carried out.
1476 int dpm_suspend_late(pm_message_t state)
1478 ktime_t starttime = ktime_get();
1481 trace_suspend_resume(TPS("dpm_suspend_late"), state.event, true);
1482 wake_up_all_idle_cpus();
1483 mutex_lock(&dpm_list_mtx);
1484 pm_transition = state;
1487 while (!list_empty(&dpm_suspended_list)) {
1488 struct device *dev = to_device(dpm_suspended_list.prev);
1492 mutex_unlock(&dpm_list_mtx);
1494 error = device_suspend_late(dev);
1496 mutex_lock(&dpm_list_mtx);
1498 if (!list_empty(&dev->power.entry))
1499 list_move(&dev->power.entry, &dpm_late_early_list);
1502 pm_dev_err(dev, state, " late", error);
1503 dpm_save_failed_dev(dev_name(dev));
1506 mutex_unlock(&dpm_list_mtx);
1510 mutex_lock(&dpm_list_mtx);
1512 if (error || async_error)
1515 mutex_unlock(&dpm_list_mtx);
1516 async_synchronize_full();
1518 error = async_error;
1520 suspend_stats.failed_suspend_late++;
1521 dpm_save_failed_step(SUSPEND_SUSPEND_LATE);
1522 dpm_resume_early(resume_event(state));
1524 dpm_show_time(starttime, state, error, "late");
1525 trace_suspend_resume(TPS("dpm_suspend_late"), state.event, false);
1530 * dpm_suspend_end - Execute "late" and "noirq" device suspend callbacks.
1531 * @state: PM transition of the system being carried out.
1533 int dpm_suspend_end(pm_message_t state)
1535 ktime_t starttime = ktime_get();
1538 error = dpm_suspend_late(state);
1542 error = dpm_suspend_noirq(state);
1544 dpm_resume_early(resume_event(state));
1547 dpm_show_time(starttime, state, error, "end");
1550 EXPORT_SYMBOL_GPL(dpm_suspend_end);
1553 * legacy_suspend - Execute a legacy (bus or class) suspend callback for device.
1554 * @dev: Device to suspend.
1555 * @state: PM transition of the system being carried out.
1556 * @cb: Suspend callback to execute.
1557 * @info: string description of caller.
1559 static int legacy_suspend(struct device *dev, pm_message_t state,
1560 int (*cb)(struct device *dev, pm_message_t state),
1566 calltime = initcall_debug_start(dev, cb);
1568 trace_device_pm_callback_start(dev, info, state.event);
1569 error = cb(dev, state);
1570 trace_device_pm_callback_end(dev, error);
1571 suspend_report_result(dev, cb, error);
1573 initcall_debug_report(dev, calltime, cb, error);
1578 static void dpm_clear_superiors_direct_complete(struct device *dev)
1580 struct device_link *link;
1584 spin_lock_irq(&dev->parent->power.lock);
1585 dev->parent->power.direct_complete = false;
1586 spin_unlock_irq(&dev->parent->power.lock);
1589 idx = device_links_read_lock();
1591 list_for_each_entry_rcu_locked(link, &dev->links.suppliers, c_node) {
1592 spin_lock_irq(&link->supplier->power.lock);
1593 link->supplier->power.direct_complete = false;
1594 spin_unlock_irq(&link->supplier->power.lock);
1597 device_links_read_unlock(idx);
1601 * __device_suspend - Execute "suspend" callbacks for given device.
1602 * @dev: Device to handle.
1603 * @state: PM transition of the system being carried out.
1604 * @async: If true, the device is being suspended asynchronously.
1606 static int __device_suspend(struct device *dev, pm_message_t state, bool async)
1608 pm_callback_t callback = NULL;
1609 const char *info = NULL;
1611 DECLARE_DPM_WATCHDOG_ON_STACK(wd);
1616 dpm_wait_for_subordinate(dev, async);
1619 dev->power.direct_complete = false;
1624 * Wait for possible runtime PM transitions of the device in progress
1625 * to complete and if there's a runtime resume request pending for it,
1626 * resume it before proceeding with invoking the system-wide suspend
1629 * If the system-wide suspend callbacks below change the configuration
1630 * of the device, they must disable runtime PM for it or otherwise
1631 * ensure that its runtime-resume callbacks will not be confused by that
1632 * change in case they are invoked going forward.
1634 pm_runtime_barrier(dev);
1636 if (pm_wakeup_pending()) {
1637 dev->power.direct_complete = false;
1638 async_error = -EBUSY;
1642 if (dev->power.syscore)
1645 /* Avoid direct_complete to let wakeup_path propagate. */
1646 if (device_may_wakeup(dev) || device_wakeup_path(dev))
1647 dev->power.direct_complete = false;
1649 if (dev->power.direct_complete) {
1650 if (pm_runtime_status_suspended(dev)) {
1651 pm_runtime_disable(dev);
1652 if (pm_runtime_status_suspended(dev)) {
1653 pm_dev_dbg(dev, state, "direct-complete ");
1657 pm_runtime_enable(dev);
1659 dev->power.direct_complete = false;
1662 dev->power.may_skip_resume = true;
1663 dev->power.must_resume = !dev_pm_test_driver_flags(dev, DPM_FLAG_MAY_SKIP_RESUME);
1665 dpm_watchdog_set(&wd, dev);
1668 if (dev->pm_domain) {
1669 info = "power domain ";
1670 callback = pm_op(&dev->pm_domain->ops, state);
1674 if (dev->type && dev->type->pm) {
1676 callback = pm_op(dev->type->pm, state);
1680 if (dev->class && dev->class->pm) {
1682 callback = pm_op(dev->class->pm, state);
1689 callback = pm_op(dev->bus->pm, state);
1690 } else if (dev->bus->suspend) {
1691 pm_dev_dbg(dev, state, "legacy bus ");
1692 error = legacy_suspend(dev, state, dev->bus->suspend,
1699 if (!callback && dev->driver && dev->driver->pm) {
1701 callback = pm_op(dev->driver->pm, state);
1704 error = dpm_run_callback(callback, dev, state, info);
1708 dev->power.is_suspended = true;
1709 if (device_may_wakeup(dev))
1710 dev->power.wakeup_path = true;
1712 dpm_propagate_wakeup_to_parent(dev);
1713 dpm_clear_superiors_direct_complete(dev);
1717 dpm_watchdog_clear(&wd);
1721 async_error = error;
1723 complete_all(&dev->power.completion);
1724 TRACE_SUSPEND(error);
1728 static void async_suspend(void *data, async_cookie_t cookie)
1730 struct device *dev = data;
1733 error = __device_suspend(dev, pm_transition, true);
1735 dpm_save_failed_dev(dev_name(dev));
1736 pm_dev_err(dev, pm_transition, " async", error);
1742 static int device_suspend(struct device *dev)
1744 if (dpm_async_fn(dev, async_suspend))
1747 return __device_suspend(dev, pm_transition, false);
1751 * dpm_suspend - Execute "suspend" callbacks for all non-sysdev devices.
1752 * @state: PM transition of the system being carried out.
1754 int dpm_suspend(pm_message_t state)
1756 ktime_t starttime = ktime_get();
1759 trace_suspend_resume(TPS("dpm_suspend"), state.event, true);
1765 mutex_lock(&dpm_list_mtx);
1766 pm_transition = state;
1768 while (!list_empty(&dpm_prepared_list)) {
1769 struct device *dev = to_device(dpm_prepared_list.prev);
1773 mutex_unlock(&dpm_list_mtx);
1775 error = device_suspend(dev);
1777 mutex_lock(&dpm_list_mtx);
1780 pm_dev_err(dev, state, "", error);
1781 dpm_save_failed_dev(dev_name(dev));
1782 } else if (!list_empty(&dev->power.entry)) {
1783 list_move(&dev->power.entry, &dpm_suspended_list);
1786 mutex_unlock(&dpm_list_mtx);
1790 mutex_lock(&dpm_list_mtx);
1792 if (error || async_error)
1795 mutex_unlock(&dpm_list_mtx);
1796 async_synchronize_full();
1798 error = async_error;
1800 suspend_stats.failed_suspend++;
1801 dpm_save_failed_step(SUSPEND_SUSPEND);
1803 dpm_show_time(starttime, state, error, NULL);
1804 trace_suspend_resume(TPS("dpm_suspend"), state.event, false);
1809 * device_prepare - Prepare a device for system power transition.
1810 * @dev: Device to handle.
1811 * @state: PM transition of the system being carried out.
1813 * Execute the ->prepare() callback(s) for given device. No new children of the
1814 * device may be registered after this function has returned.
1816 static int device_prepare(struct device *dev, pm_message_t state)
1818 int (*callback)(struct device *) = NULL;
1822 * If a device's parent goes into runtime suspend at the wrong time,
1823 * it won't be possible to resume the device. To prevent this we
1824 * block runtime suspend here, during the prepare phase, and allow
1825 * it again during the complete phase.
1827 pm_runtime_get_noresume(dev);
1829 if (dev->power.syscore)
1834 dev->power.wakeup_path = false;
1836 if (dev->power.no_pm_callbacks)
1840 callback = dev->pm_domain->ops.prepare;
1841 else if (dev->type && dev->type->pm)
1842 callback = dev->type->pm->prepare;
1843 else if (dev->class && dev->class->pm)
1844 callback = dev->class->pm->prepare;
1845 else if (dev->bus && dev->bus->pm)
1846 callback = dev->bus->pm->prepare;
1848 if (!callback && dev->driver && dev->driver->pm)
1849 callback = dev->driver->pm->prepare;
1852 ret = callback(dev);
1858 suspend_report_result(dev, callback, ret);
1859 pm_runtime_put(dev);
1863 * A positive return value from ->prepare() means "this device appears
1864 * to be runtime-suspended and its state is fine, so if it really is
1865 * runtime-suspended, you can leave it in that state provided that you
1866 * will do the same thing with all of its descendants". This only
1867 * applies to suspend transitions, however.
1869 spin_lock_irq(&dev->power.lock);
1870 dev->power.direct_complete = state.event == PM_EVENT_SUSPEND &&
1871 (ret > 0 || dev->power.no_pm_callbacks) &&
1872 !dev_pm_test_driver_flags(dev, DPM_FLAG_NO_DIRECT_COMPLETE);
1873 spin_unlock_irq(&dev->power.lock);
1878 * dpm_prepare - Prepare all non-sysdev devices for a system PM transition.
1879 * @state: PM transition of the system being carried out.
1881 * Execute the ->prepare() callback(s) for all devices.
1883 int dpm_prepare(pm_message_t state)
1887 trace_suspend_resume(TPS("dpm_prepare"), state.event, true);
1891 * Give a chance for the known devices to complete their probes, before
1892 * disable probing of devices. This sync point is important at least
1893 * at boot time + hibernation restore.
1895 wait_for_device_probe();
1897 * It is unsafe if probing of devices will happen during suspend or
1898 * hibernation and system behavior will be unpredictable in this case.
1899 * So, let's prohibit device's probing here and defer their probes
1900 * instead. The normal behavior will be restored in dpm_complete().
1902 device_block_probing();
1904 mutex_lock(&dpm_list_mtx);
1905 while (!list_empty(&dpm_list) && !error) {
1906 struct device *dev = to_device(dpm_list.next);
1910 mutex_unlock(&dpm_list_mtx);
1912 trace_device_pm_callback_start(dev, "", state.event);
1913 error = device_prepare(dev, state);
1914 trace_device_pm_callback_end(dev, error);
1916 mutex_lock(&dpm_list_mtx);
1919 dev->power.is_prepared = true;
1920 if (!list_empty(&dev->power.entry))
1921 list_move_tail(&dev->power.entry, &dpm_prepared_list);
1922 } else if (error == -EAGAIN) {
1925 dev_info(dev, "not prepared for power transition: code %d\n",
1929 mutex_unlock(&dpm_list_mtx);
1933 mutex_lock(&dpm_list_mtx);
1935 mutex_unlock(&dpm_list_mtx);
1936 trace_suspend_resume(TPS("dpm_prepare"), state.event, false);
1941 * dpm_suspend_start - Prepare devices for PM transition and suspend them.
1942 * @state: PM transition of the system being carried out.
1944 * Prepare all non-sysdev devices for system PM transition and execute "suspend"
1945 * callbacks for them.
1947 int dpm_suspend_start(pm_message_t state)
1949 ktime_t starttime = ktime_get();
1952 error = dpm_prepare(state);
1954 suspend_stats.failed_prepare++;
1955 dpm_save_failed_step(SUSPEND_PREPARE);
1957 error = dpm_suspend(state);
1958 dpm_show_time(starttime, state, error, "start");
1961 EXPORT_SYMBOL_GPL(dpm_suspend_start);
1963 void __suspend_report_result(const char *function, struct device *dev, void *fn, int ret)
1966 dev_err(dev, "%s(): %pS returns %d\n", function, fn, ret);
1968 EXPORT_SYMBOL_GPL(__suspend_report_result);
1971 * device_pm_wait_for_dev - Wait for suspend/resume of a device to complete.
1972 * @subordinate: Device that needs to wait for @dev.
1973 * @dev: Device to wait for.
1975 int device_pm_wait_for_dev(struct device *subordinate, struct device *dev)
1977 dpm_wait(dev, subordinate->power.async_suspend);
1980 EXPORT_SYMBOL_GPL(device_pm_wait_for_dev);
1983 * dpm_for_each_dev - device iterator.
1984 * @data: data for the callback.
1985 * @fn: function to be called for each device.
1987 * Iterate over devices in dpm_list, and call @fn for each device,
1990 void dpm_for_each_dev(void *data, void (*fn)(struct device *, void *))
1998 list_for_each_entry(dev, &dpm_list, power.entry)
2002 EXPORT_SYMBOL_GPL(dpm_for_each_dev);
2004 static bool pm_ops_is_empty(const struct dev_pm_ops *ops)
2009 return !ops->prepare &&
2011 !ops->suspend_late &&
2012 !ops->suspend_noirq &&
2013 !ops->resume_noirq &&
2014 !ops->resume_early &&
2019 void device_pm_check_callbacks(struct device *dev)
2021 unsigned long flags;
2023 spin_lock_irqsave(&dev->power.lock, flags);
2024 dev->power.no_pm_callbacks =
2025 (!dev->bus || (pm_ops_is_empty(dev->bus->pm) &&
2026 !dev->bus->suspend && !dev->bus->resume)) &&
2027 (!dev->class || pm_ops_is_empty(dev->class->pm)) &&
2028 (!dev->type || pm_ops_is_empty(dev->type->pm)) &&
2029 (!dev->pm_domain || pm_ops_is_empty(&dev->pm_domain->ops)) &&
2030 (!dev->driver || (pm_ops_is_empty(dev->driver->pm) &&
2031 !dev->driver->suspend && !dev->driver->resume));
2032 spin_unlock_irqrestore(&dev->power.lock, flags);
2035 bool dev_pm_skip_suspend(struct device *dev)
2037 return dev_pm_test_driver_flags(dev, DPM_FLAG_SMART_SUSPEND) &&
2038 pm_runtime_status_suspended(dev);