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/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/async.h>
31 #include <linux/suspend.h>
32 #include <trace/events/power.h>
33 #include <linux/cpufreq.h>
34 #include <linux/cpuidle.h>
35 #include <linux/timer.h>
40 typedef int (*pm_callback_t
)(struct device
*);
43 * The entries in the dpm_list list are in a depth first order, simply
44 * because children are guaranteed to be discovered after parents, and
45 * are inserted at the back of the list on discovery.
47 * Since device_pm_add() may be called with a device lock held,
48 * we must never try to acquire a device lock while holding
53 static LIST_HEAD(dpm_prepared_list
);
54 static LIST_HEAD(dpm_suspended_list
);
55 static LIST_HEAD(dpm_late_early_list
);
56 static LIST_HEAD(dpm_noirq_list
);
58 struct suspend_stats suspend_stats
;
59 static DEFINE_MUTEX(dpm_list_mtx
);
60 static pm_message_t pm_transition
;
62 static int async_error
;
64 static char *pm_verb(int event
)
67 case PM_EVENT_SUSPEND
:
73 case PM_EVENT_QUIESCE
:
75 case PM_EVENT_HIBERNATE
:
79 case PM_EVENT_RESTORE
:
81 case PM_EVENT_RECOVER
:
84 return "(unknown PM event)";
89 * device_pm_sleep_init - Initialize system suspend-related device fields.
90 * @dev: Device object being initialized.
92 void device_pm_sleep_init(struct device
*dev
)
94 dev
->power
.is_prepared
= false;
95 dev
->power
.is_suspended
= false;
96 dev
->power
.is_noirq_suspended
= false;
97 dev
->power
.is_late_suspended
= false;
98 init_completion(&dev
->power
.completion
);
99 complete_all(&dev
->power
.completion
);
100 dev
->power
.wakeup
= NULL
;
101 INIT_LIST_HEAD(&dev
->power
.entry
);
105 * device_pm_lock - Lock the list of active devices used by the PM core.
107 void device_pm_lock(void)
109 mutex_lock(&dpm_list_mtx
);
113 * device_pm_unlock - Unlock the list of active devices used by the PM core.
115 void device_pm_unlock(void)
117 mutex_unlock(&dpm_list_mtx
);
121 * device_pm_add - Add a device to the PM core's list of active devices.
122 * @dev: Device to add to the list.
124 void device_pm_add(struct device
*dev
)
126 pr_debug("PM: Adding info for %s:%s\n",
127 dev
->bus
? dev
->bus
->name
: "No Bus", dev_name(dev
));
128 device_pm_check_callbacks(dev
);
129 mutex_lock(&dpm_list_mtx
);
130 if (dev
->parent
&& dev
->parent
->power
.is_prepared
)
131 dev_warn(dev
, "parent %s should not be sleeping\n",
132 dev_name(dev
->parent
));
133 list_add_tail(&dev
->power
.entry
, &dpm_list
);
134 mutex_unlock(&dpm_list_mtx
);
138 * device_pm_remove - Remove a device from the PM core's list of active devices.
139 * @dev: Device to be removed from the list.
141 void device_pm_remove(struct device
*dev
)
143 pr_debug("PM: Removing info for %s:%s\n",
144 dev
->bus
? dev
->bus
->name
: "No Bus", dev_name(dev
));
145 complete_all(&dev
->power
.completion
);
146 mutex_lock(&dpm_list_mtx
);
147 list_del_init(&dev
->power
.entry
);
148 mutex_unlock(&dpm_list_mtx
);
149 device_wakeup_disable(dev
);
150 pm_runtime_remove(dev
);
151 device_pm_check_callbacks(dev
);
155 * device_pm_move_before - Move device in the PM core's list of active devices.
156 * @deva: Device to move in dpm_list.
157 * @devb: Device @deva should come before.
159 void device_pm_move_before(struct device
*deva
, struct device
*devb
)
161 pr_debug("PM: Moving %s:%s before %s:%s\n",
162 deva
->bus
? deva
->bus
->name
: "No Bus", dev_name(deva
),
163 devb
->bus
? devb
->bus
->name
: "No Bus", dev_name(devb
));
164 /* Delete deva from dpm_list and reinsert before devb. */
165 list_move_tail(&deva
->power
.entry
, &devb
->power
.entry
);
169 * device_pm_move_after - 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 after.
173 void device_pm_move_after(struct device
*deva
, struct device
*devb
)
175 pr_debug("PM: Moving %s:%s after %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 after devb. */
179 list_move(&deva
->power
.entry
, &devb
->power
.entry
);
183 * device_pm_move_last - Move device to end of the PM core's list of devices.
184 * @dev: Device to move in dpm_list.
186 void device_pm_move_last(struct device
*dev
)
188 pr_debug("PM: Moving %s:%s to end of list\n",
189 dev
->bus
? dev
->bus
->name
: "No Bus", dev_name(dev
));
190 list_move_tail(&dev
->power
.entry
, &dpm_list
);
193 static ktime_t
initcall_debug_start(struct device
*dev
)
195 ktime_t calltime
= ktime_set(0, 0);
197 if (pm_print_times_enabled
) {
198 pr_info("calling %s+ @ %i, parent: %s\n",
199 dev_name(dev
), task_pid_nr(current
),
200 dev
->parent
? dev_name(dev
->parent
) : "none");
201 calltime
= ktime_get();
207 static void initcall_debug_report(struct device
*dev
, ktime_t calltime
,
208 int error
, pm_message_t state
, char *info
)
213 rettime
= ktime_get();
214 nsecs
= (s64
) ktime_to_ns(ktime_sub(rettime
, calltime
));
216 if (pm_print_times_enabled
) {
217 pr_info("call %s+ returned %d after %Ld usecs\n", dev_name(dev
),
218 error
, (unsigned long long)nsecs
>> 10);
223 * dpm_wait - Wait for a PM operation to complete.
224 * @dev: Device to wait for.
225 * @async: If unset, wait only if the device's power.async_suspend flag is set.
227 static void dpm_wait(struct device
*dev
, bool async
)
232 if (async
|| (pm_async_enabled
&& dev
->power
.async_suspend
))
233 wait_for_completion(&dev
->power
.completion
);
236 static int dpm_wait_fn(struct device
*dev
, void *async_ptr
)
238 dpm_wait(dev
, *((bool *)async_ptr
));
242 static void dpm_wait_for_children(struct device
*dev
, bool async
)
244 device_for_each_child(dev
, &async
, dpm_wait_fn
);
248 * pm_op - Return the PM operation appropriate for given PM event.
249 * @ops: PM operations to choose from.
250 * @state: PM transition of the system being carried out.
252 static pm_callback_t
pm_op(const struct dev_pm_ops
*ops
, pm_message_t state
)
254 switch (state
.event
) {
255 #ifdef CONFIG_SUSPEND
256 case PM_EVENT_SUSPEND
:
258 case PM_EVENT_RESUME
:
260 #endif /* CONFIG_SUSPEND */
261 #ifdef CONFIG_HIBERNATE_CALLBACKS
262 case PM_EVENT_FREEZE
:
263 case PM_EVENT_QUIESCE
:
265 case PM_EVENT_HIBERNATE
:
266 return ops
->poweroff
;
268 case PM_EVENT_RECOVER
:
271 case PM_EVENT_RESTORE
:
273 #endif /* CONFIG_HIBERNATE_CALLBACKS */
280 * pm_late_early_op - Return the PM operation appropriate for given PM event.
281 * @ops: PM operations to choose from.
282 * @state: PM transition of the system being carried out.
284 * Runtime PM is disabled for @dev while this function is being executed.
286 static pm_callback_t
pm_late_early_op(const struct dev_pm_ops
*ops
,
289 switch (state
.event
) {
290 #ifdef CONFIG_SUSPEND
291 case PM_EVENT_SUSPEND
:
292 return ops
->suspend_late
;
293 case PM_EVENT_RESUME
:
294 return ops
->resume_early
;
295 #endif /* CONFIG_SUSPEND */
296 #ifdef CONFIG_HIBERNATE_CALLBACKS
297 case PM_EVENT_FREEZE
:
298 case PM_EVENT_QUIESCE
:
299 return ops
->freeze_late
;
300 case PM_EVENT_HIBERNATE
:
301 return ops
->poweroff_late
;
303 case PM_EVENT_RECOVER
:
304 return ops
->thaw_early
;
305 case PM_EVENT_RESTORE
:
306 return ops
->restore_early
;
307 #endif /* CONFIG_HIBERNATE_CALLBACKS */
314 * pm_noirq_op - Return the PM operation appropriate for given PM event.
315 * @ops: PM operations to choose from.
316 * @state: PM transition of the system being carried out.
318 * The driver of @dev will not receive interrupts while this function is being
321 static pm_callback_t
pm_noirq_op(const struct dev_pm_ops
*ops
, pm_message_t state
)
323 switch (state
.event
) {
324 #ifdef CONFIG_SUSPEND
325 case PM_EVENT_SUSPEND
:
326 return ops
->suspend_noirq
;
327 case PM_EVENT_RESUME
:
328 return ops
->resume_noirq
;
329 #endif /* CONFIG_SUSPEND */
330 #ifdef CONFIG_HIBERNATE_CALLBACKS
331 case PM_EVENT_FREEZE
:
332 case PM_EVENT_QUIESCE
:
333 return ops
->freeze_noirq
;
334 case PM_EVENT_HIBERNATE
:
335 return ops
->poweroff_noirq
;
337 case PM_EVENT_RECOVER
:
338 return ops
->thaw_noirq
;
339 case PM_EVENT_RESTORE
:
340 return ops
->restore_noirq
;
341 #endif /* CONFIG_HIBERNATE_CALLBACKS */
347 static void pm_dev_dbg(struct device
*dev
, pm_message_t state
, char *info
)
349 dev_dbg(dev
, "%s%s%s\n", info
, pm_verb(state
.event
),
350 ((state
.event
& PM_EVENT_SLEEP
) && device_may_wakeup(dev
)) ?
351 ", may wakeup" : "");
354 static void pm_dev_err(struct device
*dev
, pm_message_t state
, char *info
,
357 printk(KERN_ERR
"PM: Device %s failed to %s%s: error %d\n",
358 dev_name(dev
), pm_verb(state
.event
), info
, error
);
361 static void dpm_show_time(ktime_t starttime
, pm_message_t state
, char *info
)
367 calltime
= ktime_get();
368 usecs64
= ktime_to_ns(ktime_sub(calltime
, starttime
));
369 do_div(usecs64
, NSEC_PER_USEC
);
373 pr_info("PM: %s%s%s of devices complete after %ld.%03ld msecs\n",
374 info
?: "", info
? " " : "", pm_verb(state
.event
),
375 usecs
/ USEC_PER_MSEC
, usecs
% USEC_PER_MSEC
);
378 static int dpm_run_callback(pm_callback_t cb
, struct device
*dev
,
379 pm_message_t state
, char *info
)
387 calltime
= initcall_debug_start(dev
);
389 pm_dev_dbg(dev
, state
, info
);
390 trace_device_pm_callback_start(dev
, info
, state
.event
);
392 trace_device_pm_callback_end(dev
, error
);
393 suspend_report_result(cb
, error
);
395 initcall_debug_report(dev
, calltime
, error
, state
, info
);
400 #ifdef CONFIG_DPM_WATCHDOG
401 struct dpm_watchdog
{
403 struct task_struct
*tsk
;
404 struct timer_list timer
;
407 #define DECLARE_DPM_WATCHDOG_ON_STACK(wd) \
408 struct dpm_watchdog wd
411 * dpm_watchdog_handler - Driver suspend / resume watchdog handler.
412 * @data: Watchdog object address.
414 * Called when a driver has timed out suspending or resuming.
415 * There's not much we can do here to recover so panic() to
416 * capture a crash-dump in pstore.
418 static void dpm_watchdog_handler(unsigned long data
)
420 struct dpm_watchdog
*wd
= (void *)data
;
422 dev_emerg(wd
->dev
, "**** DPM device timeout ****\n");
423 show_stack(wd
->tsk
, NULL
);
424 panic("%s %s: unrecoverable failure\n",
425 dev_driver_string(wd
->dev
), dev_name(wd
->dev
));
429 * dpm_watchdog_set - Enable pm watchdog for given device.
430 * @wd: Watchdog. Must be allocated on the stack.
431 * @dev: Device to handle.
433 static void dpm_watchdog_set(struct dpm_watchdog
*wd
, struct device
*dev
)
435 struct timer_list
*timer
= &wd
->timer
;
440 init_timer_on_stack(timer
);
441 /* use same timeout value for both suspend and resume */
442 timer
->expires
= jiffies
+ HZ
* CONFIG_DPM_WATCHDOG_TIMEOUT
;
443 timer
->function
= dpm_watchdog_handler
;
444 timer
->data
= (unsigned long)wd
;
449 * dpm_watchdog_clear - Disable suspend/resume watchdog.
450 * @wd: Watchdog to disable.
452 static void dpm_watchdog_clear(struct dpm_watchdog
*wd
)
454 struct timer_list
*timer
= &wd
->timer
;
456 del_timer_sync(timer
);
457 destroy_timer_on_stack(timer
);
460 #define DECLARE_DPM_WATCHDOG_ON_STACK(wd)
461 #define dpm_watchdog_set(x, y)
462 #define dpm_watchdog_clear(x)
465 /*------------------------- Resume routines -------------------------*/
468 * device_resume_noirq - Execute an "early resume" callback for given device.
469 * @dev: Device to handle.
470 * @state: PM transition of the system being carried out.
471 * @async: If true, the device is being resumed asynchronously.
473 * The driver of @dev will not receive interrupts while this function is being
476 static int device_resume_noirq(struct device
*dev
, pm_message_t state
, bool async
)
478 pm_callback_t callback
= NULL
;
485 if (dev
->power
.syscore
|| dev
->power
.direct_complete
)
488 if (!dev
->power
.is_noirq_suspended
)
491 dpm_wait(dev
->parent
, async
);
493 if (dev
->pm_domain
) {
494 info
= "noirq power domain ";
495 callback
= pm_noirq_op(&dev
->pm_domain
->ops
, state
);
496 } else if (dev
->type
&& dev
->type
->pm
) {
497 info
= "noirq type ";
498 callback
= pm_noirq_op(dev
->type
->pm
, state
);
499 } else if (dev
->class && dev
->class->pm
) {
500 info
= "noirq class ";
501 callback
= pm_noirq_op(dev
->class->pm
, state
);
502 } else if (dev
->bus
&& dev
->bus
->pm
) {
504 callback
= pm_noirq_op(dev
->bus
->pm
, state
);
507 if (!callback
&& dev
->driver
&& dev
->driver
->pm
) {
508 info
= "noirq driver ";
509 callback
= pm_noirq_op(dev
->driver
->pm
, state
);
512 error
= dpm_run_callback(callback
, dev
, state
, info
);
513 dev
->power
.is_noirq_suspended
= false;
516 complete_all(&dev
->power
.completion
);
521 static bool is_async(struct device
*dev
)
523 return dev
->power
.async_suspend
&& pm_async_enabled
524 && !pm_trace_is_enabled();
527 static void async_resume_noirq(void *data
, async_cookie_t cookie
)
529 struct device
*dev
= (struct device
*)data
;
532 error
= device_resume_noirq(dev
, pm_transition
, true);
534 pm_dev_err(dev
, pm_transition
, " async", error
);
540 * dpm_resume_noirq - Execute "noirq resume" callbacks for all devices.
541 * @state: PM transition of the system being carried out.
543 * Call the "noirq" resume handlers for all devices in dpm_noirq_list and
544 * enable device drivers to receive interrupts.
546 void dpm_resume_noirq(pm_message_t state
)
549 ktime_t starttime
= ktime_get();
551 trace_suspend_resume(TPS("dpm_resume_noirq"), state
.event
, true);
552 mutex_lock(&dpm_list_mtx
);
553 pm_transition
= state
;
556 * Advanced the async threads upfront,
557 * in case the starting of async threads is
558 * delayed by non-async resuming devices.
560 list_for_each_entry(dev
, &dpm_noirq_list
, power
.entry
) {
561 reinit_completion(&dev
->power
.completion
);
564 async_schedule(async_resume_noirq
, dev
);
568 while (!list_empty(&dpm_noirq_list
)) {
569 dev
= to_device(dpm_noirq_list
.next
);
571 list_move_tail(&dev
->power
.entry
, &dpm_late_early_list
);
572 mutex_unlock(&dpm_list_mtx
);
574 if (!is_async(dev
)) {
577 error
= device_resume_noirq(dev
, state
, false);
579 suspend_stats
.failed_resume_noirq
++;
580 dpm_save_failed_step(SUSPEND_RESUME_NOIRQ
);
581 dpm_save_failed_dev(dev_name(dev
));
582 pm_dev_err(dev
, state
, " noirq", error
);
586 mutex_lock(&dpm_list_mtx
);
589 mutex_unlock(&dpm_list_mtx
);
590 async_synchronize_full();
591 dpm_show_time(starttime
, state
, "noirq");
592 resume_device_irqs();
593 device_wakeup_disarm_wake_irqs();
595 trace_suspend_resume(TPS("dpm_resume_noirq"), state
.event
, false);
599 * device_resume_early - Execute an "early resume" callback for given device.
600 * @dev: Device to handle.
601 * @state: PM transition of the system being carried out.
602 * @async: If true, the device is being resumed asynchronously.
604 * Runtime PM is disabled for @dev while this function is being executed.
606 static int device_resume_early(struct device
*dev
, pm_message_t state
, bool async
)
608 pm_callback_t callback
= NULL
;
615 if (dev
->power
.syscore
|| dev
->power
.direct_complete
)
618 if (!dev
->power
.is_late_suspended
)
621 dpm_wait(dev
->parent
, async
);
623 if (dev
->pm_domain
) {
624 info
= "early power domain ";
625 callback
= pm_late_early_op(&dev
->pm_domain
->ops
, state
);
626 } else if (dev
->type
&& dev
->type
->pm
) {
627 info
= "early type ";
628 callback
= pm_late_early_op(dev
->type
->pm
, state
);
629 } else if (dev
->class && dev
->class->pm
) {
630 info
= "early class ";
631 callback
= pm_late_early_op(dev
->class->pm
, state
);
632 } else if (dev
->bus
&& dev
->bus
->pm
) {
634 callback
= pm_late_early_op(dev
->bus
->pm
, state
);
637 if (!callback
&& dev
->driver
&& dev
->driver
->pm
) {
638 info
= "early driver ";
639 callback
= pm_late_early_op(dev
->driver
->pm
, state
);
642 error
= dpm_run_callback(callback
, dev
, state
, info
);
643 dev
->power
.is_late_suspended
= false;
648 pm_runtime_enable(dev
);
649 complete_all(&dev
->power
.completion
);
653 static void async_resume_early(void *data
, async_cookie_t cookie
)
655 struct device
*dev
= (struct device
*)data
;
658 error
= device_resume_early(dev
, pm_transition
, true);
660 pm_dev_err(dev
, pm_transition
, " async", error
);
666 * dpm_resume_early - Execute "early resume" callbacks for all devices.
667 * @state: PM transition of the system being carried out.
669 void dpm_resume_early(pm_message_t state
)
672 ktime_t starttime
= ktime_get();
674 trace_suspend_resume(TPS("dpm_resume_early"), state
.event
, true);
675 mutex_lock(&dpm_list_mtx
);
676 pm_transition
= state
;
679 * Advanced the async threads upfront,
680 * in case the starting of async threads is
681 * delayed by non-async resuming devices.
683 list_for_each_entry(dev
, &dpm_late_early_list
, power
.entry
) {
684 reinit_completion(&dev
->power
.completion
);
687 async_schedule(async_resume_early
, dev
);
691 while (!list_empty(&dpm_late_early_list
)) {
692 dev
= to_device(dpm_late_early_list
.next
);
694 list_move_tail(&dev
->power
.entry
, &dpm_suspended_list
);
695 mutex_unlock(&dpm_list_mtx
);
697 if (!is_async(dev
)) {
700 error
= device_resume_early(dev
, state
, false);
702 suspend_stats
.failed_resume_early
++;
703 dpm_save_failed_step(SUSPEND_RESUME_EARLY
);
704 dpm_save_failed_dev(dev_name(dev
));
705 pm_dev_err(dev
, state
, " early", error
);
708 mutex_lock(&dpm_list_mtx
);
711 mutex_unlock(&dpm_list_mtx
);
712 async_synchronize_full();
713 dpm_show_time(starttime
, state
, "early");
714 trace_suspend_resume(TPS("dpm_resume_early"), state
.event
, false);
718 * dpm_resume_start - Execute "noirq" and "early" device callbacks.
719 * @state: PM transition of the system being carried out.
721 void dpm_resume_start(pm_message_t state
)
723 dpm_resume_noirq(state
);
724 dpm_resume_early(state
);
726 EXPORT_SYMBOL_GPL(dpm_resume_start
);
729 * device_resume - Execute "resume" callbacks for given device.
730 * @dev: Device to handle.
731 * @state: PM transition of the system being carried out.
732 * @async: If true, the device is being resumed asynchronously.
734 static int device_resume(struct device
*dev
, pm_message_t state
, bool async
)
736 pm_callback_t callback
= NULL
;
739 DECLARE_DPM_WATCHDOG_ON_STACK(wd
);
744 if (dev
->power
.syscore
)
747 if (dev
->power
.direct_complete
) {
748 /* Match the pm_runtime_disable() in __device_suspend(). */
749 pm_runtime_enable(dev
);
753 dpm_wait(dev
->parent
, async
);
754 dpm_watchdog_set(&wd
, dev
);
758 * This is a fib. But we'll allow new children to be added below
759 * a resumed device, even if the device hasn't been completed yet.
761 dev
->power
.is_prepared
= false;
763 if (!dev
->power
.is_suspended
)
766 if (dev
->pm_domain
) {
767 info
= "power domain ";
768 callback
= pm_op(&dev
->pm_domain
->ops
, state
);
772 if (dev
->type
&& dev
->type
->pm
) {
774 callback
= pm_op(dev
->type
->pm
, state
);
779 if (dev
->class->pm
) {
781 callback
= pm_op(dev
->class->pm
, state
);
783 } else if (dev
->class->resume
) {
784 info
= "legacy class ";
785 callback
= dev
->class->resume
;
793 callback
= pm_op(dev
->bus
->pm
, state
);
794 } else if (dev
->bus
->resume
) {
795 info
= "legacy bus ";
796 callback
= dev
->bus
->resume
;
802 if (!callback
&& dev
->driver
&& dev
->driver
->pm
) {
804 callback
= pm_op(dev
->driver
->pm
, state
);
808 error
= dpm_run_callback(callback
, dev
, state
, info
);
809 dev
->power
.is_suspended
= false;
813 dpm_watchdog_clear(&wd
);
816 complete_all(&dev
->power
.completion
);
823 static void async_resume(void *data
, async_cookie_t cookie
)
825 struct device
*dev
= (struct device
*)data
;
828 error
= device_resume(dev
, pm_transition
, true);
830 pm_dev_err(dev
, pm_transition
, " async", error
);
835 * dpm_resume - Execute "resume" callbacks for non-sysdev devices.
836 * @state: PM transition of the system being carried out.
838 * Execute the appropriate "resume" callback for all devices whose status
839 * indicates that they are suspended.
841 void dpm_resume(pm_message_t state
)
844 ktime_t starttime
= ktime_get();
846 trace_suspend_resume(TPS("dpm_resume"), state
.event
, true);
849 mutex_lock(&dpm_list_mtx
);
850 pm_transition
= state
;
853 list_for_each_entry(dev
, &dpm_suspended_list
, power
.entry
) {
854 reinit_completion(&dev
->power
.completion
);
857 async_schedule(async_resume
, dev
);
861 while (!list_empty(&dpm_suspended_list
)) {
862 dev
= to_device(dpm_suspended_list
.next
);
864 if (!is_async(dev
)) {
867 mutex_unlock(&dpm_list_mtx
);
869 error
= device_resume(dev
, state
, false);
871 suspend_stats
.failed_resume
++;
872 dpm_save_failed_step(SUSPEND_RESUME
);
873 dpm_save_failed_dev(dev_name(dev
));
874 pm_dev_err(dev
, state
, "", error
);
877 mutex_lock(&dpm_list_mtx
);
879 if (!list_empty(&dev
->power
.entry
))
880 list_move_tail(&dev
->power
.entry
, &dpm_prepared_list
);
883 mutex_unlock(&dpm_list_mtx
);
884 async_synchronize_full();
885 dpm_show_time(starttime
, state
, NULL
);
888 trace_suspend_resume(TPS("dpm_resume"), state
.event
, false);
892 * device_complete - Complete a PM transition for given device.
893 * @dev: Device to handle.
894 * @state: PM transition of the system being carried out.
896 static void device_complete(struct device
*dev
, pm_message_t state
)
898 void (*callback
)(struct device
*) = NULL
;
901 if (dev
->power
.syscore
)
906 if (dev
->pm_domain
) {
907 info
= "completing power domain ";
908 callback
= dev
->pm_domain
->ops
.complete
;
909 } else if (dev
->type
&& dev
->type
->pm
) {
910 info
= "completing type ";
911 callback
= dev
->type
->pm
->complete
;
912 } else if (dev
->class && dev
->class->pm
) {
913 info
= "completing class ";
914 callback
= dev
->class->pm
->complete
;
915 } else if (dev
->bus
&& dev
->bus
->pm
) {
916 info
= "completing bus ";
917 callback
= dev
->bus
->pm
->complete
;
920 if (!callback
&& dev
->driver
&& dev
->driver
->pm
) {
921 info
= "completing driver ";
922 callback
= dev
->driver
->pm
->complete
;
926 pm_dev_dbg(dev
, state
, info
);
936 * dpm_complete - Complete a PM transition for all non-sysdev devices.
937 * @state: PM transition of the system being carried out.
939 * Execute the ->complete() callbacks for all devices whose PM status is not
940 * DPM_ON (this allows new devices to be registered).
942 void dpm_complete(pm_message_t state
)
944 struct list_head list
;
946 trace_suspend_resume(TPS("dpm_complete"), state
.event
, true);
949 INIT_LIST_HEAD(&list
);
950 mutex_lock(&dpm_list_mtx
);
951 while (!list_empty(&dpm_prepared_list
)) {
952 struct device
*dev
= to_device(dpm_prepared_list
.prev
);
955 dev
->power
.is_prepared
= false;
956 list_move(&dev
->power
.entry
, &list
);
957 mutex_unlock(&dpm_list_mtx
);
959 trace_device_pm_callback_start(dev
, "", state
.event
);
960 device_complete(dev
, state
);
961 trace_device_pm_callback_end(dev
, 0);
963 mutex_lock(&dpm_list_mtx
);
966 list_splice(&list
, &dpm_list
);
967 mutex_unlock(&dpm_list_mtx
);
969 /* Allow device probing and trigger re-probing of deferred devices */
970 device_unblock_probing();
971 trace_suspend_resume(TPS("dpm_complete"), state
.event
, false);
975 * dpm_resume_end - Execute "resume" callbacks and complete system transition.
976 * @state: PM transition of the system being carried out.
978 * Execute "resume" callbacks for all devices and complete the PM transition of
981 void dpm_resume_end(pm_message_t state
)
986 EXPORT_SYMBOL_GPL(dpm_resume_end
);
989 /*------------------------- Suspend routines -------------------------*/
992 * resume_event - Return a "resume" message for given "suspend" sleep state.
993 * @sleep_state: PM message representing a sleep state.
995 * Return a PM message representing the resume event corresponding to given
998 static pm_message_t
resume_event(pm_message_t sleep_state
)
1000 switch (sleep_state
.event
) {
1001 case PM_EVENT_SUSPEND
:
1003 case PM_EVENT_FREEZE
:
1004 case PM_EVENT_QUIESCE
:
1005 return PMSG_RECOVER
;
1006 case PM_EVENT_HIBERNATE
:
1007 return PMSG_RESTORE
;
1013 * device_suspend_noirq - Execute a "late suspend" callback for given device.
1014 * @dev: Device to handle.
1015 * @state: PM transition of the system being carried out.
1016 * @async: If true, the device is being suspended asynchronously.
1018 * The driver of @dev will not receive interrupts while this function is being
1021 static int __device_suspend_noirq(struct device
*dev
, pm_message_t state
, bool async
)
1023 pm_callback_t callback
= NULL
;
1033 if (pm_wakeup_pending()) {
1034 async_error
= -EBUSY
;
1038 if (dev
->power
.syscore
|| dev
->power
.direct_complete
)
1041 dpm_wait_for_children(dev
, async
);
1043 if (dev
->pm_domain
) {
1044 info
= "noirq power domain ";
1045 callback
= pm_noirq_op(&dev
->pm_domain
->ops
, state
);
1046 } else if (dev
->type
&& dev
->type
->pm
) {
1047 info
= "noirq type ";
1048 callback
= pm_noirq_op(dev
->type
->pm
, state
);
1049 } else if (dev
->class && dev
->class->pm
) {
1050 info
= "noirq class ";
1051 callback
= pm_noirq_op(dev
->class->pm
, state
);
1052 } else if (dev
->bus
&& dev
->bus
->pm
) {
1053 info
= "noirq bus ";
1054 callback
= pm_noirq_op(dev
->bus
->pm
, state
);
1057 if (!callback
&& dev
->driver
&& dev
->driver
->pm
) {
1058 info
= "noirq driver ";
1059 callback
= pm_noirq_op(dev
->driver
->pm
, state
);
1062 error
= dpm_run_callback(callback
, dev
, state
, info
);
1064 dev
->power
.is_noirq_suspended
= true;
1066 async_error
= error
;
1069 complete_all(&dev
->power
.completion
);
1070 TRACE_SUSPEND(error
);
1074 static void async_suspend_noirq(void *data
, async_cookie_t cookie
)
1076 struct device
*dev
= (struct device
*)data
;
1079 error
= __device_suspend_noirq(dev
, pm_transition
, true);
1081 dpm_save_failed_dev(dev_name(dev
));
1082 pm_dev_err(dev
, pm_transition
, " async", error
);
1088 static int device_suspend_noirq(struct device
*dev
)
1090 reinit_completion(&dev
->power
.completion
);
1092 if (is_async(dev
)) {
1094 async_schedule(async_suspend_noirq
, dev
);
1097 return __device_suspend_noirq(dev
, pm_transition
, false);
1101 * dpm_suspend_noirq - Execute "noirq suspend" callbacks for all devices.
1102 * @state: PM transition of the system being carried out.
1104 * Prevent device drivers from receiving interrupts and call the "noirq" suspend
1105 * handlers for all non-sysdev devices.
1107 int dpm_suspend_noirq(pm_message_t state
)
1109 ktime_t starttime
= ktime_get();
1112 trace_suspend_resume(TPS("dpm_suspend_noirq"), state
.event
, true);
1114 device_wakeup_arm_wake_irqs();
1115 suspend_device_irqs();
1116 mutex_lock(&dpm_list_mtx
);
1117 pm_transition
= state
;
1120 while (!list_empty(&dpm_late_early_list
)) {
1121 struct device
*dev
= to_device(dpm_late_early_list
.prev
);
1124 mutex_unlock(&dpm_list_mtx
);
1126 error
= device_suspend_noirq(dev
);
1128 mutex_lock(&dpm_list_mtx
);
1130 pm_dev_err(dev
, state
, " noirq", error
);
1131 dpm_save_failed_dev(dev_name(dev
));
1135 if (!list_empty(&dev
->power
.entry
))
1136 list_move(&dev
->power
.entry
, &dpm_noirq_list
);
1142 mutex_unlock(&dpm_list_mtx
);
1143 async_synchronize_full();
1145 error
= async_error
;
1148 suspend_stats
.failed_suspend_noirq
++;
1149 dpm_save_failed_step(SUSPEND_SUSPEND_NOIRQ
);
1150 dpm_resume_noirq(resume_event(state
));
1152 dpm_show_time(starttime
, state
, "noirq");
1154 trace_suspend_resume(TPS("dpm_suspend_noirq"), state
.event
, false);
1159 * device_suspend_late - Execute a "late suspend" callback for given device.
1160 * @dev: Device to handle.
1161 * @state: PM transition of the system being carried out.
1162 * @async: If true, the device is being suspended asynchronously.
1164 * Runtime PM is disabled for @dev while this function is being executed.
1166 static int __device_suspend_late(struct device
*dev
, pm_message_t state
, bool async
)
1168 pm_callback_t callback
= NULL
;
1175 __pm_runtime_disable(dev
, false);
1180 if (pm_wakeup_pending()) {
1181 async_error
= -EBUSY
;
1185 if (dev
->power
.syscore
|| dev
->power
.direct_complete
)
1188 dpm_wait_for_children(dev
, async
);
1190 if (dev
->pm_domain
) {
1191 info
= "late power domain ";
1192 callback
= pm_late_early_op(&dev
->pm_domain
->ops
, state
);
1193 } else if (dev
->type
&& dev
->type
->pm
) {
1194 info
= "late type ";
1195 callback
= pm_late_early_op(dev
->type
->pm
, state
);
1196 } else if (dev
->class && dev
->class->pm
) {
1197 info
= "late class ";
1198 callback
= pm_late_early_op(dev
->class->pm
, state
);
1199 } else if (dev
->bus
&& dev
->bus
->pm
) {
1201 callback
= pm_late_early_op(dev
->bus
->pm
, state
);
1204 if (!callback
&& dev
->driver
&& dev
->driver
->pm
) {
1205 info
= "late driver ";
1206 callback
= pm_late_early_op(dev
->driver
->pm
, state
);
1209 error
= dpm_run_callback(callback
, dev
, state
, info
);
1211 dev
->power
.is_late_suspended
= true;
1213 async_error
= error
;
1216 TRACE_SUSPEND(error
);
1217 complete_all(&dev
->power
.completion
);
1221 static void async_suspend_late(void *data
, async_cookie_t cookie
)
1223 struct device
*dev
= (struct device
*)data
;
1226 error
= __device_suspend_late(dev
, pm_transition
, true);
1228 dpm_save_failed_dev(dev_name(dev
));
1229 pm_dev_err(dev
, pm_transition
, " async", error
);
1234 static int device_suspend_late(struct device
*dev
)
1236 reinit_completion(&dev
->power
.completion
);
1238 if (is_async(dev
)) {
1240 async_schedule(async_suspend_late
, dev
);
1244 return __device_suspend_late(dev
, pm_transition
, false);
1248 * dpm_suspend_late - Execute "late suspend" callbacks for all devices.
1249 * @state: PM transition of the system being carried out.
1251 int dpm_suspend_late(pm_message_t state
)
1253 ktime_t starttime
= ktime_get();
1256 trace_suspend_resume(TPS("dpm_suspend_late"), state
.event
, true);
1257 mutex_lock(&dpm_list_mtx
);
1258 pm_transition
= state
;
1261 while (!list_empty(&dpm_suspended_list
)) {
1262 struct device
*dev
= to_device(dpm_suspended_list
.prev
);
1265 mutex_unlock(&dpm_list_mtx
);
1267 error
= device_suspend_late(dev
);
1269 mutex_lock(&dpm_list_mtx
);
1270 if (!list_empty(&dev
->power
.entry
))
1271 list_move(&dev
->power
.entry
, &dpm_late_early_list
);
1274 pm_dev_err(dev
, state
, " late", error
);
1275 dpm_save_failed_dev(dev_name(dev
));
1284 mutex_unlock(&dpm_list_mtx
);
1285 async_synchronize_full();
1287 error
= async_error
;
1289 suspend_stats
.failed_suspend_late
++;
1290 dpm_save_failed_step(SUSPEND_SUSPEND_LATE
);
1291 dpm_resume_early(resume_event(state
));
1293 dpm_show_time(starttime
, state
, "late");
1295 trace_suspend_resume(TPS("dpm_suspend_late"), state
.event
, false);
1300 * dpm_suspend_end - Execute "late" and "noirq" device suspend callbacks.
1301 * @state: PM transition of the system being carried out.
1303 int dpm_suspend_end(pm_message_t state
)
1305 int error
= dpm_suspend_late(state
);
1309 error
= dpm_suspend_noirq(state
);
1311 dpm_resume_early(resume_event(state
));
1317 EXPORT_SYMBOL_GPL(dpm_suspend_end
);
1320 * legacy_suspend - Execute a legacy (bus or class) suspend callback for device.
1321 * @dev: Device to suspend.
1322 * @state: PM transition of the system being carried out.
1323 * @cb: Suspend callback to execute.
1324 * @info: string description of caller.
1326 static int legacy_suspend(struct device
*dev
, pm_message_t state
,
1327 int (*cb
)(struct device
*dev
, pm_message_t state
),
1333 calltime
= initcall_debug_start(dev
);
1335 trace_device_pm_callback_start(dev
, info
, state
.event
);
1336 error
= cb(dev
, state
);
1337 trace_device_pm_callback_end(dev
, error
);
1338 suspend_report_result(cb
, error
);
1340 initcall_debug_report(dev
, calltime
, error
, state
, info
);
1346 * device_suspend - Execute "suspend" callbacks for given device.
1347 * @dev: Device to handle.
1348 * @state: PM transition of the system being carried out.
1349 * @async: If true, the device is being suspended asynchronously.
1351 static int __device_suspend(struct device
*dev
, pm_message_t state
, bool async
)
1353 pm_callback_t callback
= NULL
;
1356 DECLARE_DPM_WATCHDOG_ON_STACK(wd
);
1361 dpm_wait_for_children(dev
, async
);
1367 * If a device configured to wake up the system from sleep states
1368 * has been suspended at run time and there's a resume request pending
1369 * for it, this is equivalent to the device signaling wakeup, so the
1370 * system suspend operation should be aborted.
1372 if (pm_runtime_barrier(dev
) && device_may_wakeup(dev
))
1373 pm_wakeup_event(dev
, 0);
1375 if (pm_wakeup_pending()) {
1376 async_error
= -EBUSY
;
1380 if (dev
->power
.syscore
)
1383 if (dev
->power
.direct_complete
) {
1384 if (pm_runtime_status_suspended(dev
)) {
1385 pm_runtime_disable(dev
);
1386 if (pm_runtime_status_suspended(dev
))
1389 pm_runtime_enable(dev
);
1391 dev
->power
.direct_complete
= false;
1394 dpm_watchdog_set(&wd
, dev
);
1397 if (dev
->pm_domain
) {
1398 info
= "power domain ";
1399 callback
= pm_op(&dev
->pm_domain
->ops
, state
);
1403 if (dev
->type
&& dev
->type
->pm
) {
1405 callback
= pm_op(dev
->type
->pm
, state
);
1410 if (dev
->class->pm
) {
1412 callback
= pm_op(dev
->class->pm
, state
);
1414 } else if (dev
->class->suspend
) {
1415 pm_dev_dbg(dev
, state
, "legacy class ");
1416 error
= legacy_suspend(dev
, state
, dev
->class->suspend
,
1425 callback
= pm_op(dev
->bus
->pm
, state
);
1426 } else if (dev
->bus
->suspend
) {
1427 pm_dev_dbg(dev
, state
, "legacy bus ");
1428 error
= legacy_suspend(dev
, state
, dev
->bus
->suspend
,
1435 if (!callback
&& dev
->driver
&& dev
->driver
->pm
) {
1437 callback
= pm_op(dev
->driver
->pm
, state
);
1440 error
= dpm_run_callback(callback
, dev
, state
, info
);
1444 struct device
*parent
= dev
->parent
;
1446 dev
->power
.is_suspended
= true;
1448 spin_lock_irq(&parent
->power
.lock
);
1450 dev
->parent
->power
.direct_complete
= false;
1451 if (dev
->power
.wakeup_path
1452 && !dev
->parent
->power
.ignore_children
)
1453 dev
->parent
->power
.wakeup_path
= true;
1455 spin_unlock_irq(&parent
->power
.lock
);
1460 dpm_watchdog_clear(&wd
);
1463 complete_all(&dev
->power
.completion
);
1465 async_error
= error
;
1467 TRACE_SUSPEND(error
);
1471 static void async_suspend(void *data
, async_cookie_t cookie
)
1473 struct device
*dev
= (struct device
*)data
;
1476 error
= __device_suspend(dev
, pm_transition
, true);
1478 dpm_save_failed_dev(dev_name(dev
));
1479 pm_dev_err(dev
, pm_transition
, " async", error
);
1485 static int device_suspend(struct device
*dev
)
1487 reinit_completion(&dev
->power
.completion
);
1489 if (is_async(dev
)) {
1491 async_schedule(async_suspend
, dev
);
1495 return __device_suspend(dev
, pm_transition
, false);
1499 * dpm_suspend - Execute "suspend" callbacks for all non-sysdev devices.
1500 * @state: PM transition of the system being carried out.
1502 int dpm_suspend(pm_message_t state
)
1504 ktime_t starttime
= ktime_get();
1507 trace_suspend_resume(TPS("dpm_suspend"), state
.event
, true);
1512 mutex_lock(&dpm_list_mtx
);
1513 pm_transition
= state
;
1515 while (!list_empty(&dpm_prepared_list
)) {
1516 struct device
*dev
= to_device(dpm_prepared_list
.prev
);
1519 mutex_unlock(&dpm_list_mtx
);
1521 error
= device_suspend(dev
);
1523 mutex_lock(&dpm_list_mtx
);
1525 pm_dev_err(dev
, state
, "", error
);
1526 dpm_save_failed_dev(dev_name(dev
));
1530 if (!list_empty(&dev
->power
.entry
))
1531 list_move(&dev
->power
.entry
, &dpm_suspended_list
);
1536 mutex_unlock(&dpm_list_mtx
);
1537 async_synchronize_full();
1539 error
= async_error
;
1541 suspend_stats
.failed_suspend
++;
1542 dpm_save_failed_step(SUSPEND_SUSPEND
);
1544 dpm_show_time(starttime
, state
, NULL
);
1545 trace_suspend_resume(TPS("dpm_suspend"), state
.event
, false);
1550 * device_prepare - Prepare a device for system power transition.
1551 * @dev: Device to handle.
1552 * @state: PM transition of the system being carried out.
1554 * Execute the ->prepare() callback(s) for given device. No new children of the
1555 * device may be registered after this function has returned.
1557 static int device_prepare(struct device
*dev
, pm_message_t state
)
1559 int (*callback
)(struct device
*) = NULL
;
1562 if (dev
->power
.syscore
)
1566 * If a device's parent goes into runtime suspend at the wrong time,
1567 * it won't be possible to resume the device. To prevent this we
1568 * block runtime suspend here, during the prepare phase, and allow
1569 * it again during the complete phase.
1571 pm_runtime_get_noresume(dev
);
1575 dev
->power
.wakeup_path
= device_may_wakeup(dev
);
1577 if (dev
->power
.no_pm_callbacks
) {
1578 ret
= 1; /* Let device go direct_complete */
1583 callback
= dev
->pm_domain
->ops
.prepare
;
1584 else if (dev
->type
&& dev
->type
->pm
)
1585 callback
= dev
->type
->pm
->prepare
;
1586 else if (dev
->class && dev
->class->pm
)
1587 callback
= dev
->class->pm
->prepare
;
1588 else if (dev
->bus
&& dev
->bus
->pm
)
1589 callback
= dev
->bus
->pm
->prepare
;
1591 if (!callback
&& dev
->driver
&& dev
->driver
->pm
)
1592 callback
= dev
->driver
->pm
->prepare
;
1595 ret
= callback(dev
);
1601 suspend_report_result(callback
, ret
);
1602 pm_runtime_put(dev
);
1606 * A positive return value from ->prepare() means "this device appears
1607 * to be runtime-suspended and its state is fine, so if it really is
1608 * runtime-suspended, you can leave it in that state provided that you
1609 * will do the same thing with all of its descendants". This only
1610 * applies to suspend transitions, however.
1612 spin_lock_irq(&dev
->power
.lock
);
1613 dev
->power
.direct_complete
= ret
> 0 && state
.event
== PM_EVENT_SUSPEND
;
1614 spin_unlock_irq(&dev
->power
.lock
);
1619 * dpm_prepare - Prepare all non-sysdev devices for a system PM transition.
1620 * @state: PM transition of the system being carried out.
1622 * Execute the ->prepare() callback(s) for all devices.
1624 int dpm_prepare(pm_message_t state
)
1628 trace_suspend_resume(TPS("dpm_prepare"), state
.event
, true);
1632 * Give a chance for the known devices to complete their probes, before
1633 * disable probing of devices. This sync point is important at least
1634 * at boot time + hibernation restore.
1636 wait_for_device_probe();
1638 * It is unsafe if probing of devices will happen during suspend or
1639 * hibernation and system behavior will be unpredictable in this case.
1640 * So, let's prohibit device's probing here and defer their probes
1641 * instead. The normal behavior will be restored in dpm_complete().
1643 device_block_probing();
1645 mutex_lock(&dpm_list_mtx
);
1646 while (!list_empty(&dpm_list
)) {
1647 struct device
*dev
= to_device(dpm_list
.next
);
1650 mutex_unlock(&dpm_list_mtx
);
1652 trace_device_pm_callback_start(dev
, "", state
.event
);
1653 error
= device_prepare(dev
, state
);
1654 trace_device_pm_callback_end(dev
, error
);
1656 mutex_lock(&dpm_list_mtx
);
1658 if (error
== -EAGAIN
) {
1663 printk(KERN_INFO
"PM: Device %s not prepared "
1664 "for power transition: code %d\n",
1665 dev_name(dev
), error
);
1669 dev
->power
.is_prepared
= true;
1670 if (!list_empty(&dev
->power
.entry
))
1671 list_move_tail(&dev
->power
.entry
, &dpm_prepared_list
);
1674 mutex_unlock(&dpm_list_mtx
);
1675 trace_suspend_resume(TPS("dpm_prepare"), state
.event
, false);
1680 * dpm_suspend_start - Prepare devices for PM transition and suspend them.
1681 * @state: PM transition of the system being carried out.
1683 * Prepare all non-sysdev devices for system PM transition and execute "suspend"
1684 * callbacks for them.
1686 int dpm_suspend_start(pm_message_t state
)
1690 error
= dpm_prepare(state
);
1692 suspend_stats
.failed_prepare
++;
1693 dpm_save_failed_step(SUSPEND_PREPARE
);
1695 error
= dpm_suspend(state
);
1698 EXPORT_SYMBOL_GPL(dpm_suspend_start
);
1700 void __suspend_report_result(const char *function
, void *fn
, int ret
)
1703 printk(KERN_ERR
"%s(): %pF returns %d\n", function
, fn
, ret
);
1705 EXPORT_SYMBOL_GPL(__suspend_report_result
);
1708 * device_pm_wait_for_dev - Wait for suspend/resume of a device to complete.
1709 * @dev: Device to wait for.
1710 * @subordinate: Device that needs to wait for @dev.
1712 int device_pm_wait_for_dev(struct device
*subordinate
, struct device
*dev
)
1714 dpm_wait(dev
, subordinate
->power
.async_suspend
);
1717 EXPORT_SYMBOL_GPL(device_pm_wait_for_dev
);
1720 * dpm_for_each_dev - device iterator.
1721 * @data: data for the callback.
1722 * @fn: function to be called for each device.
1724 * Iterate over devices in dpm_list, and call @fn for each device,
1727 void dpm_for_each_dev(void *data
, void (*fn
)(struct device
*, void *))
1735 list_for_each_entry(dev
, &dpm_list
, power
.entry
)
1739 EXPORT_SYMBOL_GPL(dpm_for_each_dev
);
1741 static bool pm_ops_is_empty(const struct dev_pm_ops
*ops
)
1746 return !ops
->prepare
&&
1748 !ops
->suspend_late
&&
1749 !ops
->suspend_noirq
&&
1750 !ops
->resume_noirq
&&
1751 !ops
->resume_early
&&
1756 void device_pm_check_callbacks(struct device
*dev
)
1758 spin_lock_irq(&dev
->power
.lock
);
1759 dev
->power
.no_pm_callbacks
=
1760 (!dev
->bus
|| pm_ops_is_empty(dev
->bus
->pm
)) &&
1761 (!dev
->class || pm_ops_is_empty(dev
->class->pm
)) &&
1762 (!dev
->type
|| pm_ops_is_empty(dev
->type
->pm
)) &&
1763 (!dev
->pm_domain
|| pm_ops_is_empty(&dev
->pm_domain
->ops
)) &&
1764 (!dev
->driver
|| pm_ops_is_empty(dev
->driver
->pm
));
1765 spin_unlock_irq(&dev
->power
.lock
);