2 * resume.c - Functions for waking devices up.
4 * Copyright (c) 2003 Patrick Mochel
5 * Copyright (c) 2003 Open Source Development Labs
7 * This file is released under the GPLv2
11 #include <linux/device.h>
14 extern int sysdev_resume(void);
18 * resume_device - Restore state for one device.
23 int resume_device(struct device
* dev
)
25 if (dev
->bus
&& dev
->bus
->resume
)
26 return dev
->bus
->resume(dev
);
35 while(!list_empty(&dpm_off
)) {
36 struct list_head
* entry
= dpm_off
.next
;
37 struct device
* dev
= to_device(entry
);
41 list_add_tail(entry
, &dpm_active
);
44 if (!dev
->power
.prev_state
)
54 * device_resume - Restore state of each device in system.
56 * Walk the dpm_off list, remove each entry, resume the device,
57 * then add it to the dpm_active list.
60 void device_resume(void)
67 EXPORT_SYMBOL_GPL(device_resume
);
71 * device_power_up_irq - Power on some devices.
73 * Walk the dpm_off_irq list and power each device up. This
74 * is used for devices that required they be powered down with
75 * interrupts disabled. As devices are powered on, they are moved to
76 * the dpm_suspended list.
78 * Interrupts must be disabled when calling this.
81 void dpm_power_up(void)
83 while(!list_empty(&dpm_off_irq
)) {
84 struct list_head
* entry
= dpm_off_irq
.next
;
85 struct device
* dev
= to_device(entry
);
89 list_add_tail(entry
, &dpm_active
);
97 * device_pm_power_up - Turn on all devices that need special attention.
99 * Power on system devices then devices that required we shut them down
100 * with interrupts disabled.
101 * Called with interrupts disabled.
104 void device_power_up(void)
110 EXPORT_SYMBOL_GPL(device_power_up
);