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 intialize 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/resume-trace.h>
25 #include <linux/rwsem.h>
26 #include <linux/interrupt.h>
32 * The entries in the dpm_list list are in a depth first order, simply
33 * because children are guaranteed to be discovered after parents, and
34 * are inserted at the back of the list on discovery.
36 * Since device_pm_add() may be called with a device semaphore held,
37 * we must never try to acquire a device semaphore while holding
43 static DEFINE_MUTEX(dpm_list_mtx);
46 * Set once the preparation of devices for a PM transition has started, reset
47 * before starting to resume devices. Protected by dpm_list_mtx.
49 static bool transition_started;
52 * device_pm_lock - lock the list of active devices used by the PM core
54 void device_pm_lock(void)
56 mutex_lock(&dpm_list_mtx);
60 * device_pm_unlock - unlock the list of active devices used by the PM core
62 void device_pm_unlock(void)
64 mutex_unlock(&dpm_list_mtx);
68 * device_pm_add - add a device to the list of active devices
69 * @dev: Device to be added to the list
71 void device_pm_add(struct device *dev)
73 pr_debug("PM: Adding info for %s:%s\n",
74 dev->bus ? dev->bus->name : "No Bus",
75 kobject_name(&dev->kobj));
76 mutex_lock(&dpm_list_mtx);
78 if (dev->parent->power.status >= DPM_SUSPENDING)
79 dev_warn(dev, "parent %s should not be sleeping\n",
80 dev_name(dev->parent));
81 } else if (transition_started) {
83 * We refuse to register parentless devices while a PM
84 * transition is in progress in order to avoid leaving them
85 * unhandled down the road
87 dev_WARN(dev, "Parentless device registered during a PM transaction\n");
90 list_add_tail(&dev->power.entry, &dpm_list);
91 mutex_unlock(&dpm_list_mtx);
95 * device_pm_remove - remove a device from the list of active devices
96 * @dev: Device to be removed from the list
98 * This function also removes the device's PM-related sysfs attributes.
100 void device_pm_remove(struct device *dev)
102 pr_debug("PM: Removing info for %s:%s\n",
103 dev->bus ? dev->bus->name : "No Bus",
104 kobject_name(&dev->kobj));
105 mutex_lock(&dpm_list_mtx);
106 list_del_init(&dev->power.entry);
107 mutex_unlock(&dpm_list_mtx);
111 * device_pm_move_before - move device in dpm_list
112 * @deva: Device to move in dpm_list
113 * @devb: Device @deva should come before
115 void device_pm_move_before(struct device *deva, struct device *devb)
117 pr_debug("PM: Moving %s:%s before %s:%s\n",
118 deva->bus ? deva->bus->name : "No Bus",
119 kobject_name(&deva->kobj),
120 devb->bus ? devb->bus->name : "No Bus",
121 kobject_name(&devb->kobj));
122 /* Delete deva from dpm_list and reinsert before devb. */
123 list_move_tail(&deva->power.entry, &devb->power.entry);
127 * device_pm_move_after - move device in dpm_list
128 * @deva: Device to move in dpm_list
129 * @devb: Device @deva should come after
131 void device_pm_move_after(struct device *deva, struct device *devb)
133 pr_debug("PM: Moving %s:%s after %s:%s\n",
134 deva->bus ? deva->bus->name : "No Bus",
135 kobject_name(&deva->kobj),
136 devb->bus ? devb->bus->name : "No Bus",
137 kobject_name(&devb->kobj));
138 /* Delete deva from dpm_list and reinsert after devb. */
139 list_move(&deva->power.entry, &devb->power.entry);
143 * device_pm_move_last - move device to end of dpm_list
144 * @dev: Device to move in dpm_list
146 void device_pm_move_last(struct device *dev)
148 pr_debug("PM: Moving %s:%s to end of list\n",
149 dev->bus ? dev->bus->name : "No Bus",
150 kobject_name(&dev->kobj));
151 list_move_tail(&dev->power.entry, &dpm_list);
155 * pm_op - execute the PM operation appropiate for given PM event
157 * @ops: PM operations to choose from.
158 * @state: PM transition of the system being carried out.
160 static int pm_op(struct device *dev, struct dev_pm_ops *ops,
165 switch (state.event) {
166 #ifdef CONFIG_SUSPEND
167 case PM_EVENT_SUSPEND:
169 error = ops->suspend(dev);
170 suspend_report_result(ops->suspend, error);
173 case PM_EVENT_RESUME:
175 error = ops->resume(dev);
176 suspend_report_result(ops->resume, error);
179 #endif /* CONFIG_SUSPEND */
180 #ifdef CONFIG_HIBERNATION
181 case PM_EVENT_FREEZE:
182 case PM_EVENT_QUIESCE:
184 error = ops->freeze(dev);
185 suspend_report_result(ops->freeze, error);
188 case PM_EVENT_HIBERNATE:
190 error = ops->poweroff(dev);
191 suspend_report_result(ops->poweroff, error);
195 case PM_EVENT_RECOVER:
197 error = ops->thaw(dev);
198 suspend_report_result(ops->thaw, error);
201 case PM_EVENT_RESTORE:
203 error = ops->restore(dev);
204 suspend_report_result(ops->restore, error);
207 #endif /* CONFIG_HIBERNATION */
215 * pm_noirq_op - execute the PM operation appropiate for given PM event
217 * @ops: PM operations to choose from.
218 * @state: PM transition of the system being carried out.
220 * The operation is executed with interrupts disabled by the only remaining
221 * functional CPU in the system.
223 static int pm_noirq_op(struct device *dev, struct dev_pm_ops *ops,
228 switch (state.event) {
229 #ifdef CONFIG_SUSPEND
230 case PM_EVENT_SUSPEND:
231 if (ops->suspend_noirq) {
232 error = ops->suspend_noirq(dev);
233 suspend_report_result(ops->suspend_noirq, error);
236 case PM_EVENT_RESUME:
237 if (ops->resume_noirq) {
238 error = ops->resume_noirq(dev);
239 suspend_report_result(ops->resume_noirq, error);
242 #endif /* CONFIG_SUSPEND */
243 #ifdef CONFIG_HIBERNATION
244 case PM_EVENT_FREEZE:
245 case PM_EVENT_QUIESCE:
246 if (ops->freeze_noirq) {
247 error = ops->freeze_noirq(dev);
248 suspend_report_result(ops->freeze_noirq, error);
251 case PM_EVENT_HIBERNATE:
252 if (ops->poweroff_noirq) {
253 error = ops->poweroff_noirq(dev);
254 suspend_report_result(ops->poweroff_noirq, error);
258 case PM_EVENT_RECOVER:
259 if (ops->thaw_noirq) {
260 error = ops->thaw_noirq(dev);
261 suspend_report_result(ops->thaw_noirq, error);
264 case PM_EVENT_RESTORE:
265 if (ops->restore_noirq) {
266 error = ops->restore_noirq(dev);
267 suspend_report_result(ops->restore_noirq, error);
270 #endif /* CONFIG_HIBERNATION */
277 static char *pm_verb(int event)
280 case PM_EVENT_SUSPEND:
282 case PM_EVENT_RESUME:
284 case PM_EVENT_FREEZE:
286 case PM_EVENT_QUIESCE:
288 case PM_EVENT_HIBERNATE:
292 case PM_EVENT_RESTORE:
294 case PM_EVENT_RECOVER:
297 return "(unknown PM event)";
301 static void pm_dev_dbg(struct device *dev, pm_message_t state, char *info)
303 dev_dbg(dev, "%s%s%s\n", info, pm_verb(state.event),
304 ((state.event & PM_EVENT_SLEEP) && device_may_wakeup(dev)) ?
305 ", may wakeup" : "");
308 static void pm_dev_err(struct device *dev, pm_message_t state, char *info,
311 printk(KERN_ERR "PM: Device %s failed to %s%s: error %d\n",
312 kobject_name(&dev->kobj), pm_verb(state.event), info, error);
315 /*------------------------- Resume routines -------------------------*/
318 * device_resume_noirq - Power on one device (early resume).
320 * @state: PM transition of the system being carried out.
322 * Must be called with interrupts disabled.
324 static int device_resume_noirq(struct device *dev, pm_message_t state)
335 pm_dev_dbg(dev, state, "EARLY ");
336 error = pm_noirq_op(dev, dev->bus->pm, state);
344 * dpm_resume_noirq - Power on all regular (non-sysdev) devices.
345 * @state: PM transition of the system being carried out.
347 * Call the "noirq" resume handlers for all devices marked as
348 * DPM_OFF_IRQ and enable device drivers to receive interrupts.
350 * Must be called under dpm_list_mtx. Device drivers should not receive
351 * interrupts while it's being executed.
353 void dpm_resume_noirq(pm_message_t state)
357 mutex_lock(&dpm_list_mtx);
358 list_for_each_entry(dev, &dpm_list, power.entry)
359 if (dev->power.status > DPM_OFF) {
362 dev->power.status = DPM_OFF;
363 error = device_resume_noirq(dev, state);
365 pm_dev_err(dev, state, " early", error);
367 mutex_unlock(&dpm_list_mtx);
368 resume_device_irqs();
370 EXPORT_SYMBOL_GPL(dpm_resume_noirq);
373 * device_resume - Restore state for one device.
375 * @state: PM transition of the system being carried out.
377 static int device_resume(struct device *dev, pm_message_t state)
388 pm_dev_dbg(dev, state, "");
389 error = pm_op(dev, dev->bus->pm, state);
390 } else if (dev->bus->resume) {
391 pm_dev_dbg(dev, state, "legacy ");
392 error = dev->bus->resume(dev);
400 pm_dev_dbg(dev, state, "type ");
401 error = pm_op(dev, dev->type->pm, state);
408 if (dev->class->pm) {
409 pm_dev_dbg(dev, state, "class ");
410 error = pm_op(dev, dev->class->pm, state);
411 } else if (dev->class->resume) {
412 pm_dev_dbg(dev, state, "legacy class ");
413 error = dev->class->resume(dev);
424 * dpm_resume - Resume every device.
425 * @state: PM transition of the system being carried out.
427 * Execute the appropriate "resume" callback for all devices the status of
428 * which indicates that they are inactive.
430 static void dpm_resume(pm_message_t state)
432 struct list_head list;
434 INIT_LIST_HEAD(&list);
435 mutex_lock(&dpm_list_mtx);
436 transition_started = false;
437 while (!list_empty(&dpm_list)) {
438 struct device *dev = to_device(dpm_list.next);
441 if (dev->power.status >= DPM_OFF) {
444 dev->power.status = DPM_RESUMING;
445 mutex_unlock(&dpm_list_mtx);
447 error = device_resume(dev, state);
449 mutex_lock(&dpm_list_mtx);
451 pm_dev_err(dev, state, "", error);
452 } else if (dev->power.status == DPM_SUSPENDING) {
453 /* Allow new children of the device to be registered */
454 dev->power.status = DPM_RESUMING;
456 if (!list_empty(&dev->power.entry))
457 list_move_tail(&dev->power.entry, &list);
460 list_splice(&list, &dpm_list);
461 mutex_unlock(&dpm_list_mtx);
465 * device_complete - Complete a PM transition for given device
467 * @state: PM transition of the system being carried out.
469 static void device_complete(struct device *dev, pm_message_t state)
473 if (dev->class && dev->class->pm && dev->class->pm->complete) {
474 pm_dev_dbg(dev, state, "completing class ");
475 dev->class->pm->complete(dev);
478 if (dev->type && dev->type->pm && dev->type->pm->complete) {
479 pm_dev_dbg(dev, state, "completing type ");
480 dev->type->pm->complete(dev);
483 if (dev->bus && dev->bus->pm && dev->bus->pm->complete) {
484 pm_dev_dbg(dev, state, "completing ");
485 dev->bus->pm->complete(dev);
492 * dpm_complete - Complete a PM transition for all devices.
493 * @state: PM transition of the system being carried out.
495 * Execute the ->complete() callbacks for all devices that are not marked
498 static void dpm_complete(pm_message_t state)
500 struct list_head list;
502 INIT_LIST_HEAD(&list);
503 mutex_lock(&dpm_list_mtx);
504 while (!list_empty(&dpm_list)) {
505 struct device *dev = to_device(dpm_list.prev);
508 if (dev->power.status > DPM_ON) {
509 dev->power.status = DPM_ON;
510 mutex_unlock(&dpm_list_mtx);
512 device_complete(dev, state);
514 mutex_lock(&dpm_list_mtx);
516 if (!list_empty(&dev->power.entry))
517 list_move(&dev->power.entry, &list);
520 list_splice(&list, &dpm_list);
521 mutex_unlock(&dpm_list_mtx);
525 * dpm_resume_end - Restore state of each device in system.
526 * @state: PM transition of the system being carried out.
528 * Resume all the devices, unlock them all, and allow new
529 * devices to be registered once again.
531 void dpm_resume_end(pm_message_t state)
537 EXPORT_SYMBOL_GPL(dpm_resume_end);
540 /*------------------------- Suspend routines -------------------------*/
543 * resume_event - return a PM message representing the resume event
544 * corresponding to given sleep state.
545 * @sleep_state: PM message representing a sleep state.
547 static pm_message_t resume_event(pm_message_t sleep_state)
549 switch (sleep_state.event) {
550 case PM_EVENT_SUSPEND:
552 case PM_EVENT_FREEZE:
553 case PM_EVENT_QUIESCE:
555 case PM_EVENT_HIBERNATE:
562 * device_suspend_noirq - Shut down one device (late suspend).
564 * @state: PM transition of the system being carried out.
566 * This is called with interrupts off and only a single CPU running.
568 static int device_suspend_noirq(struct device *dev, pm_message_t state)
576 pm_dev_dbg(dev, state, "LATE ");
577 error = pm_noirq_op(dev, dev->bus->pm, state);
583 * dpm_suspend_noirq - Power down all regular (non-sysdev) devices.
584 * @state: PM transition of the system being carried out.
586 * Prevent device drivers from receiving interrupts and call the "noirq"
589 * Must be called under dpm_list_mtx.
591 int dpm_suspend_noirq(pm_message_t state)
596 suspend_device_irqs();
597 mutex_lock(&dpm_list_mtx);
598 list_for_each_entry_reverse(dev, &dpm_list, power.entry) {
599 error = device_suspend_noirq(dev, state);
601 pm_dev_err(dev, state, " late", error);
604 dev->power.status = DPM_OFF_IRQ;
606 mutex_unlock(&dpm_list_mtx);
608 dpm_resume_noirq(resume_event(state));
611 EXPORT_SYMBOL_GPL(dpm_suspend_noirq);
614 * device_suspend - Save state of one device.
616 * @state: PM transition of the system being carried out.
618 static int device_suspend(struct device *dev, pm_message_t state)
625 if (dev->class->pm) {
626 pm_dev_dbg(dev, state, "class ");
627 error = pm_op(dev, dev->class->pm, state);
628 } else if (dev->class->suspend) {
629 pm_dev_dbg(dev, state, "legacy class ");
630 error = dev->class->suspend(dev, state);
631 suspend_report_result(dev->class->suspend, error);
639 pm_dev_dbg(dev, state, "type ");
640 error = pm_op(dev, dev->type->pm, state);
648 pm_dev_dbg(dev, state, "");
649 error = pm_op(dev, dev->bus->pm, state);
650 } else if (dev->bus->suspend) {
651 pm_dev_dbg(dev, state, "legacy ");
652 error = dev->bus->suspend(dev, state);
653 suspend_report_result(dev->bus->suspend, error);
663 * dpm_suspend - Suspend every device.
664 * @state: PM transition of the system being carried out.
666 * Execute the appropriate "suspend" callbacks for all devices.
668 static int dpm_suspend(pm_message_t state)
670 struct list_head list;
673 INIT_LIST_HEAD(&list);
674 mutex_lock(&dpm_list_mtx);
675 while (!list_empty(&dpm_list)) {
676 struct device *dev = to_device(dpm_list.prev);
679 mutex_unlock(&dpm_list_mtx);
681 error = device_suspend(dev, state);
683 mutex_lock(&dpm_list_mtx);
685 pm_dev_err(dev, state, "", error);
689 dev->power.status = DPM_OFF;
690 if (!list_empty(&dev->power.entry))
691 list_move(&dev->power.entry, &list);
694 list_splice(&list, dpm_list.prev);
695 mutex_unlock(&dpm_list_mtx);
700 * device_prepare - Execute the ->prepare() callback(s) for given device.
702 * @state: PM transition of the system being carried out.
704 static int device_prepare(struct device *dev, pm_message_t state)
710 if (dev->bus && dev->bus->pm && dev->bus->pm->prepare) {
711 pm_dev_dbg(dev, state, "preparing ");
712 error = dev->bus->pm->prepare(dev);
713 suspend_report_result(dev->bus->pm->prepare, error);
718 if (dev->type && dev->type->pm && dev->type->pm->prepare) {
719 pm_dev_dbg(dev, state, "preparing type ");
720 error = dev->type->pm->prepare(dev);
721 suspend_report_result(dev->type->pm->prepare, error);
726 if (dev->class && dev->class->pm && dev->class->pm->prepare) {
727 pm_dev_dbg(dev, state, "preparing class ");
728 error = dev->class->pm->prepare(dev);
729 suspend_report_result(dev->class->pm->prepare, error);
738 * dpm_prepare - Prepare all devices for a PM transition.
739 * @state: PM transition of the system being carried out.
741 * Execute the ->prepare() callback for all devices.
743 static int dpm_prepare(pm_message_t state)
745 struct list_head list;
748 INIT_LIST_HEAD(&list);
749 mutex_lock(&dpm_list_mtx);
750 transition_started = true;
751 while (!list_empty(&dpm_list)) {
752 struct device *dev = to_device(dpm_list.next);
755 dev->power.status = DPM_PREPARING;
756 mutex_unlock(&dpm_list_mtx);
758 error = device_prepare(dev, state);
760 mutex_lock(&dpm_list_mtx);
762 dev->power.status = DPM_ON;
763 if (error == -EAGAIN) {
768 printk(KERN_ERR "PM: Failed to prepare device %s "
769 "for power transition: error %d\n",
770 kobject_name(&dev->kobj), error);
774 dev->power.status = DPM_SUSPENDING;
775 if (!list_empty(&dev->power.entry))
776 list_move_tail(&dev->power.entry, &list);
779 list_splice(&list, &dpm_list);
780 mutex_unlock(&dpm_list_mtx);
785 * dpm_suspend_start - Save state and stop all devices in system.
786 * @state: PM transition of the system being carried out.
788 * Prepare and suspend all devices.
790 int dpm_suspend_start(pm_message_t state)
795 error = dpm_prepare(state);
797 error = dpm_suspend(state);
800 EXPORT_SYMBOL_GPL(dpm_suspend_start);
802 void __suspend_report_result(const char *function, void *fn, int ret)
805 printk(KERN_ERR "%s(): %pF returns %d\n", function, fn, ret);
807 EXPORT_SYMBOL_GPL(__suspend_report_result);