blob: 662209d3f42d6a551c7001ab5adb62406abfcfb0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * suspend.c - Functions for putting devices to sleep.
3 *
4 * Copyright (c) 2003 Patrick Mochel
5 * Copyright (c) 2003 Open Source Development Labs
6 *
7 * This file is released under the GPLv2
8 *
9 */
10
Rafael J. Wysockiff4da2e2006-03-23 03:00:07 -080011#include <linux/vt_kern.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/device.h>
Andrew Morton02669492006-03-23 01:38:34 -080013#include <linux/kallsyms.h>
14#include <linux/pm.h>
Adrian Bunkf67d1152006-01-19 17:30:17 +010015#include "../base.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include "power.h"
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018/*
19 * The entries in the dpm_active list are in a depth first order, simply
20 * because children are guaranteed to be discovered after parents, and
21 * are inserted at the back of the list on discovery.
22 *
23 * All list on the suspend path are done in reverse order, so we operate
24 * on the leaves of the device tree (or forests, depending on how you want
25 * to look at it ;) first. As nodes are removed from the back of the list,
26 * they are inserted into the front of their destintation lists.
27 *
28 * Things are the reverse on the resume path - iterations are done in
29 * forward order, and nodes are inserted at the back of their destination
30 * lists. This way, the ancestors will be accessed before their descendents.
31 */
32
33
34/**
35 * suspend_device - Save state of one device.
36 * @dev: Device.
37 * @state: Power state device is entering.
38 */
39
40int suspend_device(struct device * dev, pm_message_t state)
41{
42 int error = 0;
43
mochel@digitalimplant.orgaf703162005-03-21 10:41:04 -080044 down(&dev->sem);
Pavel Machekca078ba2005-09-03 15:56:57 -070045 if (dev->power.power_state.event) {
David Brownell82428b62005-05-09 08:07:00 -070046 dev_dbg(dev, "PM: suspend %d-->%d\n",
Pavel Machekca078ba2005-09-03 15:56:57 -070047 dev->power.power_state.event, state.event);
David Brownell82428b62005-05-09 08:07:00 -070048 }
49 if (dev->power.pm_parent
Pavel Machekca078ba2005-09-03 15:56:57 -070050 && dev->power.pm_parent->power.power_state.event) {
David Brownell82428b62005-05-09 08:07:00 -070051 dev_err(dev,
52 "PM: suspend %d->%d, parent %s already %d\n",
Pavel Machekca078ba2005-09-03 15:56:57 -070053 dev->power.power_state.event, state.event,
David Brownell82428b62005-05-09 08:07:00 -070054 dev->power.pm_parent->bus_id,
Pavel Machekca078ba2005-09-03 15:56:57 -070055 dev->power.pm_parent->power.power_state.event);
David Brownell82428b62005-05-09 08:07:00 -070056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 dev->power.prev_state = dev->power.power_state;
59
Pavel Machekca078ba2005-09-03 15:56:57 -070060 if (dev->bus && dev->bus->suspend && !dev->power.power_state.event) {
David Brownell82428b62005-05-09 08:07:00 -070061 dev_dbg(dev, "suspending\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 error = dev->bus->suspend(dev, state);
Andrew Morton02669492006-03-23 01:38:34 -080063 suspend_report_result(dev->bus->suspend, error);
David Brownell82428b62005-05-09 08:07:00 -070064 }
mochel@digitalimplant.orgaf703162005-03-21 10:41:04 -080065 up(&dev->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 return error;
67}
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/**
70 * device_suspend - Save state and stop all devices in system.
71 * @state: Power state to put each device in.
72 *
73 * Walk the dpm_active list, call ->suspend() for each device, and move
74 * it to dpm_off.
75 * Check the return value for each. If it returns 0, then we move the
76 * the device to the dpm_off list. If it returns -EAGAIN, we move it to
77 * the dpm_off_irq list. If we get a different error, try and back out.
78 *
79 * If we hit a failure with any of the devices, call device_resume()
80 * above to bring the suspended devices back to life.
81 *
82 */
83
84int device_suspend(pm_message_t state)
85{
86 int error = 0;
87
Rafael J. Wysockiff4da2e2006-03-23 03:00:07 -080088 if (!is_console_suspend_safe())
89 return -EINVAL;
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 down(&dpm_sem);
92 down(&dpm_list_sem);
93 while (!list_empty(&dpm_active) && error == 0) {
94 struct list_head * entry = dpm_active.prev;
95 struct device * dev = to_device(entry);
96
97 get_device(dev);
98 up(&dpm_list_sem);
99
100 error = suspend_device(dev, state);
101
102 down(&dpm_list_sem);
103
104 /* Check if the device got removed */
105 if (!list_empty(&dev->power.entry)) {
106 /* Move it to the dpm_off or dpm_off_irq list */
107 if (!error) {
108 list_del(&dev->power.entry);
109 list_add(&dev->power.entry, &dpm_off);
110 } else if (error == -EAGAIN) {
111 list_del(&dev->power.entry);
112 list_add(&dev->power.entry, &dpm_off_irq);
113 error = 0;
114 }
115 }
116 if (error)
117 printk(KERN_ERR "Could not suspend device %s: "
118 "error %d\n", kobject_name(&dev->kobj), error);
119 put_device(dev);
120 }
121 up(&dpm_list_sem);
Benjamin Herrenschmidt42b16c052005-05-31 17:08:49 +1000122 if (error) {
123 /* we failed... before resuming, bring back devices from
124 * dpm_off_irq list back to main dpm_off list, we do want
125 * to call resume() on them, in case they partially suspended
126 * despite returning -EAGAIN
127 */
128 while (!list_empty(&dpm_off_irq)) {
129 struct list_head * entry = dpm_off_irq.next;
130 list_del(entry);
131 list_add(entry, &dpm_off);
132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 dpm_resume();
Benjamin Herrenschmidt42b16c052005-05-31 17:08:49 +1000134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 up(&dpm_sem);
136 return error;
137}
138
139EXPORT_SYMBOL_GPL(device_suspend);
140
141
142/**
143 * device_power_down - Shut down special devices.
144 * @state: Power state to enter.
145 *
146 * Walk the dpm_off_irq list, calling ->power_down() for each device that
147 * couldn't power down the device with interrupts enabled. When we're
148 * done, power down system devices.
149 */
150
151int device_power_down(pm_message_t state)
152{
153 int error = 0;
154 struct device * dev;
155
156 list_for_each_entry_reverse(dev, &dpm_off_irq, power.entry) {
157 if ((error = suspend_device(dev, state)))
158 break;
159 }
160 if (error)
161 goto Error;
162 if ((error = sysdev_suspend(state)))
163 goto Error;
164 Done:
165 return error;
166 Error:
167 printk(KERN_ERR "Could not power down device %s: "
168 "error %d\n", kobject_name(&dev->kobj), error);
169 dpm_power_up();
170 goto Done;
171}
172
173EXPORT_SYMBOL_GPL(device_power_down);
174
Andrew Morton02669492006-03-23 01:38:34 -0800175void __suspend_report_result(const char *function, void *fn, int ret)
176{
177 if (ret) {
178 printk(KERN_ERR "%s(): ", function);
179 print_fn_descriptor_symbol("%s() returns ", (unsigned long)fn);
180 printk("%d\n", ret);
181 }
182}
183EXPORT_SYMBOL_GPL(__suspend_report_result);