blob: af2cedfbc1b437831e54622c68b0152e5de848dd [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
11#include <linux/device.h>
Andrew Morton02669492006-03-23 01:38:34 -080012#include <linux/kallsyms.h>
13#include <linux/pm.h>
Adrian Bunkf67d1152006-01-19 17:30:17 +010014#include "../base.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include "power.h"
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017/*
18 * The entries in the dpm_active list are in a depth first order, simply
19 * because children are guaranteed to be discovered after parents, and
20 * are inserted at the back of the list on discovery.
21 *
22 * All list on the suspend path are done in reverse order, so we operate
23 * on the leaves of the device tree (or forests, depending on how you want
24 * to look at it ;) first. As nodes are removed from the back of the list,
25 * they are inserted into the front of their destintation lists.
26 *
27 * Things are the reverse on the resume path - iterations are done in
28 * forward order, and nodes are inserted at the back of their destination
29 * lists. This way, the ancestors will be accessed before their descendents.
30 */
31
David Brownellfd869db2006-05-16 17:03:25 -070032static inline char *suspend_verb(u32 event)
33{
34 switch (event) {
35 case PM_EVENT_SUSPEND: return "suspend";
36 case PM_EVENT_FREEZE: return "freeze";
David Brownellf1cc0a82006-08-14 23:11:08 -070037 case PM_EVENT_PRETHAW: return "prethaw";
David Brownellfd869db2006-05-16 17:03:25 -070038 default: return "(unknown suspend event)";
39 }
40}
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Rafael J. Wysocki9e584a42007-06-13 16:19:27 +020043static void
44suspend_device_dbg(struct device *dev, pm_message_t state, char *info)
45{
46 dev_dbg(dev, "%s%s%s\n", info, suspend_verb(state.event),
47 ((state.event == PM_EVENT_SUSPEND) && device_may_wakeup(dev)) ?
48 ", may wakeup" : "");
49}
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/**
52 * suspend_device - Save state of one device.
53 * @dev: Device.
54 * @state: Power state device is entering.
55 */
56
57int suspend_device(struct device * dev, pm_message_t state)
58{
59 int error = 0;
60
mochel@digitalimplant.orgaf703162005-03-21 10:41:04 -080061 down(&dev->sem);
Pavel Machekca078ba2005-09-03 15:56:57 -070062 if (dev->power.power_state.event) {
David Brownell82428b62005-05-09 08:07:00 -070063 dev_dbg(dev, "PM: suspend %d-->%d\n",
Pavel Machekca078ba2005-09-03 15:56:57 -070064 dev->power.power_state.event, state.event);
David Brownell82428b62005-05-09 08:07:00 -070065 }
Rafael J. Wysocki9cddad72007-06-13 15:53:34 +020066 if (dev->parent && dev->parent->power.power_state.event) {
David Brownell82428b62005-05-09 08:07:00 -070067 dev_err(dev,
68 "PM: suspend %d->%d, parent %s already %d\n",
Pavel Machekca078ba2005-09-03 15:56:57 -070069 dev->power.power_state.event, state.event,
Rafael J. Wysocki9cddad72007-06-13 15:53:34 +020070 dev->parent->bus_id,
71 dev->parent->power.power_state.event);
David Brownell82428b62005-05-09 08:07:00 -070072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 dev->power.prev_state = dev->power.power_state;
75
Linus Torvalds7c8265f2006-06-24 14:50:29 -070076 if (dev->class && dev->class->suspend && !dev->power.power_state.event) {
Rafael J. Wysocki9e584a42007-06-13 16:19:27 +020077 suspend_device_dbg(dev, state, "class ");
Linus Torvalds7c8265f2006-06-24 14:50:29 -070078 error = dev->class->suspend(dev, state);
79 suspend_report_result(dev->class->suspend, error);
80 }
81
Rafael J. Wysocki9e584a42007-06-13 16:19:27 +020082 if (!error && dev->type && dev->type->suspend
83 && !dev->power.power_state.event) {
84 suspend_device_dbg(dev, state, "type ");
Dmitry Torokhovf89cbc32007-04-03 01:08:40 -040085 error = dev->type->suspend(dev, state);
86 suspend_report_result(dev->type->suspend, error);
87 }
88
Rafael J. Wysocki9e584a42007-06-13 16:19:27 +020089 if (!error && dev->bus && dev->bus->suspend
90 && !dev->power.power_state.event) {
91 suspend_device_dbg(dev, state, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 error = dev->bus->suspend(dev, state);
Andrew Morton02669492006-03-23 01:38:34 -080093 suspend_report_result(dev->bus->suspend, error);
David Brownell82428b62005-05-09 08:07:00 -070094 }
mochel@digitalimplant.orgaf703162005-03-21 10:41:04 -080095 up(&dev->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 return error;
97}
98
Andrew Morton760f1fc2006-05-30 21:26:03 -070099
Linus Torvalds7c8265f2006-06-24 14:50:29 -0700100/*
101 * This is called with interrupts off, only a single CPU
Matthias Kaehlcke11048dc2007-05-23 14:19:41 -0700102 * running. We can't acquire a mutex or semaphore (and we don't
Linus Torvalds7c8265f2006-06-24 14:50:29 -0700103 * need the protection)
104 */
105static int suspend_device_late(struct device *dev, pm_message_t state)
106{
107 int error = 0;
108
Rafael J. Wysocki9e584a42007-06-13 16:19:27 +0200109 if (dev->bus && dev->bus->suspend_late
110 && !dev->power.power_state.event) {
111 suspend_device_dbg(dev, state, "LATE ");
Linus Torvalds7c8265f2006-06-24 14:50:29 -0700112 error = dev->bus->suspend_late(dev, state);
113 suspend_report_result(dev->bus->suspend_late, error);
114 }
115 return error;
116}
117
118/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 * device_suspend - Save state and stop all devices in system.
120 * @state: Power state to put each device in.
121 *
122 * Walk the dpm_active list, call ->suspend() for each device, and move
Linus Torvalds7c8265f2006-06-24 14:50:29 -0700123 * it to the dpm_off list.
124 *
125 * (For historical reasons, if it returns -EAGAIN, that used to mean
126 * that the device would be called again with interrupts disabled.
127 * These days, we use the "suspend_late()" callback for that, so we
128 * print a warning and consider it an error).
129 *
130 * If we get a different error, try and back out.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 *
132 * If we hit a failure with any of the devices, call device_resume()
133 * above to bring the suspended devices back to life.
134 *
135 */
136
137int device_suspend(pm_message_t state)
138{
139 int error = 0;
140
Pavel Machekbb84c892006-08-31 22:02:11 -0700141 might_sleep();
Matthias Kaehlcke11048dc2007-05-23 14:19:41 -0700142 mutex_lock(&dpm_mtx);
143 mutex_lock(&dpm_list_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 while (!list_empty(&dpm_active) && error == 0) {
145 struct list_head * entry = dpm_active.prev;
146 struct device * dev = to_device(entry);
147
148 get_device(dev);
Matthias Kaehlcke11048dc2007-05-23 14:19:41 -0700149 mutex_unlock(&dpm_list_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 error = suspend_device(dev, state);
152
Matthias Kaehlcke11048dc2007-05-23 14:19:41 -0700153 mutex_lock(&dpm_list_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 /* Check if the device got removed */
156 if (!list_empty(&dev->power.entry)) {
Linus Torvalds7c8265f2006-06-24 14:50:29 -0700157 /* Move it to the dpm_off list */
Akinobu Mita1bfba4e2006-06-26 00:24:40 -0700158 if (!error)
159 list_move(&dev->power.entry, &dpm_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 }
161 if (error)
162 printk(KERN_ERR "Could not suspend device %s: "
Linus Torvalds7c8265f2006-06-24 14:50:29 -0700163 "error %d%s\n",
164 kobject_name(&dev->kobj), error,
165 error == -EAGAIN ? " (please convert to suspend_late)" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 put_device(dev);
167 }
Matthias Kaehlcke11048dc2007-05-23 14:19:41 -0700168 mutex_unlock(&dpm_list_mtx);
Linus Torvalds7c8265f2006-06-24 14:50:29 -0700169 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 dpm_resume();
Linus Torvalds7c8265f2006-06-24 14:50:29 -0700171
Matthias Kaehlcke11048dc2007-05-23 14:19:41 -0700172 mutex_unlock(&dpm_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 return error;
174}
175
176EXPORT_SYMBOL_GPL(device_suspend);
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178/**
179 * device_power_down - Shut down special devices.
180 * @state: Power state to enter.
181 *
182 * Walk the dpm_off_irq list, calling ->power_down() for each device that
183 * couldn't power down the device with interrupts enabled. When we're
184 * done, power down system devices.
185 */
186
187int device_power_down(pm_message_t state)
188{
189 int error = 0;
190 struct device * dev;
191
Linus Torvalds7c8265f2006-06-24 14:50:29 -0700192 while (!list_empty(&dpm_off)) {
193 struct list_head * entry = dpm_off.prev;
194
195 dev = to_device(entry);
196 error = suspend_device_late(dev, state);
197 if (error)
198 goto Error;
199 list_move(&dev->power.entry, &dpm_off_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
Linus Torvalds7c8265f2006-06-24 14:50:29 -0700201
202 error = sysdev_suspend(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 Done:
204 return error;
205 Error:
206 printk(KERN_ERR "Could not power down device %s: "
207 "error %d\n", kobject_name(&dev->kobj), error);
208 dpm_power_up();
209 goto Done;
210}
211
212EXPORT_SYMBOL_GPL(device_power_down);
213
Andrew Morton02669492006-03-23 01:38:34 -0800214void __suspend_report_result(const char *function, void *fn, int ret)
215{
216 if (ret) {
217 printk(KERN_ERR "%s(): ", function);
218 print_fn_descriptor_symbol("%s() returns ", (unsigned long)fn);
219 printk("%d\n", ret);
220 }
221}
222EXPORT_SYMBOL_GPL(__suspend_report_result);