blob: d3a158a60312187242c8e1238b68ac5151d11459 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * kernel/power/disk.c - Suspend-to-disk support.
3 *
4 * Copyright (c) 2003 Patrick Mochel
5 * Copyright (c) 2003 Open Source Development Lab
6 * Copyright (c) 2004 Pavel Machek <pavel@suse.cz>
7 *
8 * This file is released under the GPLv2.
9 *
10 */
11
12#include <linux/suspend.h>
13#include <linux/syscalls.h>
14#include <linux/reboot.h>
15#include <linux/string.h>
16#include <linux/device.h>
17#include <linux/delay.h>
18#include <linux/fs.h>
Andrew Mortond53d9f12005-07-12 13:58:07 -070019#include <linux/mount.h>
Eric W. Biederman88d10bb2005-09-22 21:43:46 -070020#include <linux/pm.h>
Rafael J. Wysocki97c78012006-10-11 01:20:45 -070021#include <linux/console.h>
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -070022#include <linux/cpu.h>
Andrew Mortond53d9f12005-07-12 13:58:07 -070023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "power.h"
25
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027static int noresume = 0;
28char resume_file[256] = CONFIG_PM_STD_PARTITION;
29dev_t swsusp_resume_device;
30
31/**
32 * power_down - Shut machine down for hibernate.
33 * @mode: Suspend-to-disk mode
34 *
35 * Use the platform driver, if configured so, and return gracefully if it
36 * fails.
37 * Otherwise, try to power off and reboot. If they fail, halt the machine,
38 * there ain't no turning back.
39 */
40
41static void power_down(suspend_disk_method_t mode)
42{
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 int error = 0;
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 switch(mode) {
46 case PM_DISK_PLATFORM:
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -050047 kernel_shutdown_prepare(SYSTEM_SUSPEND_DISK);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 error = pm_ops->enter(PM_SUSPEND_DISK);
49 break;
50 case PM_DISK_SHUTDOWN:
Eric W. Biedermanfdde86a2005-07-26 12:01:17 -060051 kernel_power_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 break;
53 case PM_DISK_REBOOT:
Eric W. Biedermanfdde86a2005-07-26 12:01:17 -060054 kernel_restart(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 break;
56 }
Eric W. Biedermanfdde86a2005-07-26 12:01:17 -060057 kernel_halt();
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 /* Valid image is on the disk, if we continue we risk serious data corruption
59 after resume. */
60 printk(KERN_CRIT "Please power me down manually\n");
61 while(1);
62}
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static inline void platform_finish(void)
65{
66 if (pm_disk_mode == PM_DISK_PLATFORM) {
67 if (pm_ops && pm_ops->finish)
68 pm_ops->finish(PM_SUSPEND_DISK);
69 }
70}
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static int prepare_processes(void)
73{
74 int error;
75
76 pm_prepare_console();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -070077
78 error = disable_nonboot_cpus();
79 if (error)
80 goto enable_cpus;
Li Shaohua5a72e042005-06-25 14:55:06 -070081
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 if (freeze_processes()) {
83 error = -EBUSY;
Li Shaohua5a72e042005-06-25 14:55:06 -070084 goto thaw;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 }
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 /* Free memory before shutting down devices. */
Rafael J. Wysocki72a97e02006-01-06 00:13:46 -080088 if (!(error = swsusp_shrink_memory()))
89 return 0;
Li Shaohua5a72e042005-06-25 14:55:06 -070090thaw:
91 thaw_processes();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -070092enable_cpus:
Li Shaohua5a72e042005-06-25 14:55:06 -070093 enable_nonboot_cpus();
94 pm_restore_console();
95 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
98static void unprepare_processes(void)
99{
Li Shaohua5a72e042005-06-25 14:55:06 -0700100 platform_finish();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 thaw_processes();
Li Shaohua5a72e042005-06-25 14:55:06 -0700102 enable_nonboot_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 pm_restore_console();
104}
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/**
David Brownellf1cc0a82006-08-14 23:11:08 -0700107 * pm_suspend_disk - The granpappy of hibernation power management.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 *
109 * If we're going through the firmware, then get it over with quickly.
110 *
111 * If not, then call swsusp to do its thing, then figure out how
112 * to power down the system.
113 */
114
115int pm_suspend_disk(void)
116{
117 int error;
118
119 error = prepare_processes();
Li Shaohua5a72e042005-06-25 14:55:06 -0700120 if (error)
121 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Rafael J. Wysocki97c78012006-10-11 01:20:45 -0700123 suspend_console();
Pavel Machek99dc7d62005-09-03 15:57:05 -0700124 error = device_suspend(PMSG_FREEZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 if (error) {
Rafael J. Wysocki97c78012006-10-11 01:20:45 -0700126 resume_console();
Pavel Machek99dc7d62005-09-03 15:57:05 -0700127 printk("Some devices failed to suspend\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 unprepare_processes();
129 return error;
130 }
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 pr_debug("PM: snapshotting memory.\n");
133 in_suspend = 1;
134 if ((error = swsusp_suspend()))
135 goto Done;
136
137 if (in_suspend) {
Rafael J. Wysocki0245b3e2005-10-30 15:00:01 -0800138 device_resume();
Rafael J. Wysocki97c78012006-10-11 01:20:45 -0700139 resume_console();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 pr_debug("PM: writing image.\n");
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800141 error = swsusp_write();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 if (!error)
143 power_down(pm_disk_mode);
Pavel Machek99dc7d62005-09-03 15:57:05 -0700144 else {
Pavel Machek99dc7d62005-09-03 15:57:05 -0700145 swsusp_free();
146 unprepare_processes();
147 return error;
148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 } else
150 pr_debug("PM: Image restored successfully.\n");
Pavel Machek99dc7d62005-09-03 15:57:05 -0700151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 swsusp_free();
153 Done:
Pavel Machek99dc7d62005-09-03 15:57:05 -0700154 device_resume();
Rafael J. Wysocki97c78012006-10-11 01:20:45 -0700155 resume_console();
Pavel Machek99dc7d62005-09-03 15:57:05 -0700156 unprepare_processes();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 return error;
158}
159
160
161/**
162 * software_resume - Resume from a saved image.
163 *
164 * Called as a late_initcall (so all devices are discovered and
165 * initialized), we call swsusp to see if we have a saved image or not.
166 * If so, we quiesce devices, the restore the saved image. We will
167 * return above (in pm_suspend_disk() ) if everything goes well.
168 * Otherwise, we fail gracefully and return to the normally
169 * scheduled program.
170 *
171 */
172
173static int software_resume(void)
174{
175 int error;
176
Shaohua Lidd5d6662005-09-03 15:57:04 -0700177 down(&pm_sem);
Pavel Machek3efa1472005-07-07 17:56:43 -0700178 if (!swsusp_resume_device) {
Shaohua Lidd5d6662005-09-03 15:57:04 -0700179 if (!strlen(resume_file)) {
180 up(&pm_sem);
Pavel Machek3efa1472005-07-07 17:56:43 -0700181 return -ENOENT;
Shaohua Lidd5d6662005-09-03 15:57:04 -0700182 }
Pavel Machek3efa1472005-07-07 17:56:43 -0700183 swsusp_resume_device = name_to_dev_t(resume_file);
184 pr_debug("swsusp: Resume From Partition %s\n", resume_file);
185 } else {
186 pr_debug("swsusp: Resume From Partition %d:%d\n",
187 MAJOR(swsusp_resume_device), MINOR(swsusp_resume_device));
188 }
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 if (noresume) {
191 /**
192 * FIXME: If noresume is specified, we need to find the partition
193 * and reset it back to normal swap space.
194 */
Shaohua Lidd5d6662005-09-03 15:57:04 -0700195 up(&pm_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return 0;
197 }
198
199 pr_debug("PM: Checking swsusp image.\n");
200
201 if ((error = swsusp_check()))
202 goto Done;
203
204 pr_debug("PM: Preparing processes for restore.\n");
205
206 if ((error = prepare_processes())) {
207 swsusp_close();
Li Shaohua5a72e042005-06-25 14:55:06 -0700208 goto Done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
210
211 pr_debug("PM: Reading swsusp image.\n");
212
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800213 if ((error = swsusp_read())) {
Rafael J. Wysocki2c1b4a52005-10-30 14:59:58 -0800214 swsusp_free();
215 goto Thaw;
216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 pr_debug("PM: Preparing devices for restore.\n");
219
Rafael J. Wysocki97c78012006-10-11 01:20:45 -0700220 suspend_console();
David Brownellf1cc0a82006-08-14 23:11:08 -0700221 if ((error = device_suspend(PMSG_PRETHAW))) {
Rafael J. Wysocki97c78012006-10-11 01:20:45 -0700222 resume_console();
Pavel Machek99dc7d62005-09-03 15:57:05 -0700223 printk("Some devices failed to suspend\n");
Rafael J. Wysocki2c1b4a52005-10-30 14:59:58 -0800224 swsusp_free();
225 goto Thaw;
Pavel Machek99dc7d62005-09-03 15:57:05 -0700226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 mb();
229
230 pr_debug("PM: Restoring saved image.\n");
231 swsusp_resume();
232 pr_debug("PM: Restore failed, recovering.n");
Pavel Machek99dc7d62005-09-03 15:57:05 -0700233 device_resume();
Rafael J. Wysocki97c78012006-10-11 01:20:45 -0700234 resume_console();
Rafael J. Wysocki2c1b4a52005-10-30 14:59:58 -0800235 Thaw:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 unprepare_processes();
237 Done:
Shaohua Lidd5d6662005-09-03 15:57:04 -0700238 /* For success case, the suspend path will release the lock */
239 up(&pm_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 pr_debug("PM: Resume from disk failed.\n");
241 return 0;
242}
243
244late_initcall(software_resume);
245
246
Andreas Mohr3b364b82006-06-25 05:47:56 -0700247static const char * const pm_disk_modes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 [PM_DISK_FIRMWARE] = "firmware",
249 [PM_DISK_PLATFORM] = "platform",
250 [PM_DISK_SHUTDOWN] = "shutdown",
251 [PM_DISK_REBOOT] = "reboot",
252};
253
254/**
255 * disk - Control suspend-to-disk mode
256 *
257 * Suspend-to-disk can be handled in several ways. The greatest
258 * distinction is who writes memory to disk - the firmware or the OS.
259 * If the firmware does it, we assume that it also handles suspending
260 * the system.
261 * If the OS does it, then we have three options for putting the system
262 * to sleep - using the platform driver (e.g. ACPI or other PM registers),
263 * powering off the system or rebooting the system (for testing).
264 *
265 * The system will support either 'firmware' or 'platform', and that is
266 * known a priori (and encoded in pm_ops). But, the user may choose
267 * 'shutdown' or 'reboot' as alternatives.
268 *
269 * show() will display what the mode is currently set to.
270 * store() will accept one of
271 *
272 * 'firmware'
273 * 'platform'
274 * 'shutdown'
275 * 'reboot'
276 *
277 * It will only change to 'firmware' or 'platform' if the system
278 * supports it (as determined from pm_ops->pm_disk_mode).
279 */
280
281static ssize_t disk_show(struct subsystem * subsys, char * buf)
282{
283 return sprintf(buf, "%s\n", pm_disk_modes[pm_disk_mode]);
284}
285
286
287static ssize_t disk_store(struct subsystem * s, const char * buf, size_t n)
288{
289 int error = 0;
290 int i;
291 int len;
292 char *p;
293 suspend_disk_method_t mode = 0;
294
295 p = memchr(buf, '\n', n);
296 len = p ? p - buf : n;
297
298 down(&pm_sem);
299 for (i = PM_DISK_FIRMWARE; i < PM_DISK_MAX; i++) {
300 if (!strncmp(buf, pm_disk_modes[i], len)) {
301 mode = i;
302 break;
303 }
304 }
305 if (mode) {
306 if (mode == PM_DISK_SHUTDOWN || mode == PM_DISK_REBOOT)
307 pm_disk_mode = mode;
308 else {
309 if (pm_ops && pm_ops->enter &&
310 (mode == pm_ops->pm_disk_mode))
311 pm_disk_mode = mode;
312 else
313 error = -EINVAL;
314 }
315 } else
316 error = -EINVAL;
317
318 pr_debug("PM: suspend-to-disk mode set to '%s'\n",
319 pm_disk_modes[mode]);
320 up(&pm_sem);
321 return error ? error : n;
322}
323
324power_attr(disk);
325
326static ssize_t resume_show(struct subsystem * subsys, char *buf)
327{
328 return sprintf(buf,"%d:%d\n", MAJOR(swsusp_resume_device),
329 MINOR(swsusp_resume_device));
330}
331
Andrew Mortona5762192006-01-06 00:09:50 -0800332static ssize_t resume_store(struct subsystem *subsys, const char *buf, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 unsigned int maj, min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 dev_t res;
Andrew Mortona5762192006-01-06 00:09:50 -0800336 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Andrew Mortona5762192006-01-06 00:09:50 -0800338 if (sscanf(buf, "%u:%u", &maj, &min) != 2)
339 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Andrew Mortona5762192006-01-06 00:09:50 -0800341 res = MKDEV(maj,min);
342 if (maj != MAJOR(res) || min != MINOR(res))
343 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Andrew Mortona5762192006-01-06 00:09:50 -0800345 down(&pm_sem);
346 swsusp_resume_device = res;
347 up(&pm_sem);
348 printk("Attempting manual resume\n");
349 noresume = 0;
350 software_resume();
351 ret = n;
352out:
353 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354}
355
356power_attr(resume);
357
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800358static ssize_t image_size_show(struct subsystem * subsys, char *buf)
359{
Rafael J. Wysocki853609b2006-02-01 03:05:07 -0800360 return sprintf(buf, "%lu\n", image_size);
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800361}
362
363static ssize_t image_size_store(struct subsystem * subsys, const char * buf, size_t n)
364{
Rafael J. Wysocki853609b2006-02-01 03:05:07 -0800365 unsigned long size;
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800366
Rafael J. Wysocki853609b2006-02-01 03:05:07 -0800367 if (sscanf(buf, "%lu", &size) == 1) {
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800368 image_size = size;
369 return n;
370 }
371
372 return -EINVAL;
373}
374
375power_attr(image_size);
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377static struct attribute * g[] = {
378 &disk_attr.attr,
379 &resume_attr.attr,
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800380 &image_size_attr.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 NULL,
382};
383
384
385static struct attribute_group attr_group = {
386 .attrs = g,
387};
388
389
390static int __init pm_disk_init(void)
391{
392 return sysfs_create_group(&power_subsys.kset.kobj,&attr_group);
393}
394
395core_initcall(pm_disk_init);
396
397
398static int __init resume_setup(char *str)
399{
400 if (noresume)
401 return 1;
402
403 strncpy( resume_file, str, 255 );
404 return 1;
405}
406
407static int __init noresume_setup(char *str)
408{
409 noresume = 1;
410 return 1;
411}
412
413__setup("noresume", noresume_setup);
414__setup("resume=", resume_setup);