blob: f5079231383e65fcd7ab9ff0aaadf6570ccc3a4b [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;
Rafael J. Wysocki9a154d92006-12-06 20:34:12 -080030sector_t swsusp_resume_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32/**
Stefan Seyfried8a05aac2006-12-06 20:34:21 -080033 * platform_prepare - prepare the machine for hibernation using the
34 * platform driver if so configured and return an error code if it fails
35 */
36
37static inline int platform_prepare(void)
38{
39 int error = 0;
40
41 if (pm_disk_mode == PM_DISK_PLATFORM) {
42 if (pm_ops && pm_ops->prepare)
43 error = pm_ops->prepare(PM_SUSPEND_DISK);
44 }
45 return error;
46}
47
48/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 * power_down - Shut machine down for hibernate.
50 * @mode: Suspend-to-disk mode
51 *
52 * Use the platform driver, if configured so, and return gracefully if it
53 * fails.
54 * Otherwise, try to power off and reboot. If they fail, halt the machine,
55 * there ain't no turning back.
56 */
57
58static void power_down(suspend_disk_method_t mode)
59{
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 int error = 0;
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 switch(mode) {
63 case PM_DISK_PLATFORM:
Alexey Starikovskiy729b4d42005-12-01 04:29:00 -050064 kernel_shutdown_prepare(SYSTEM_SUSPEND_DISK);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 error = pm_ops->enter(PM_SUSPEND_DISK);
66 break;
67 case PM_DISK_SHUTDOWN:
Eric W. Biedermanfdde86a2005-07-26 12:01:17 -060068 kernel_power_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 break;
70 case PM_DISK_REBOOT:
Eric W. Biedermanfdde86a2005-07-26 12:01:17 -060071 kernel_restart(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 break;
73 }
Eric W. Biedermanfdde86a2005-07-26 12:01:17 -060074 kernel_halt();
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 /* Valid image is on the disk, if we continue we risk serious data corruption
76 after resume. */
77 printk(KERN_CRIT "Please power me down manually\n");
78 while(1);
79}
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static inline void platform_finish(void)
82{
83 if (pm_disk_mode == PM_DISK_PLATFORM) {
84 if (pm_ops && pm_ops->finish)
85 pm_ops->finish(PM_SUSPEND_DISK);
86 }
87}
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089static int prepare_processes(void)
90{
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -080091 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 pm_prepare_console();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -070094
95 error = disable_nonboot_cpus();
96 if (error)
97 goto enable_cpus;
Li Shaohua5a72e042005-06-25 14:55:06 -070098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 if (freeze_processes()) {
100 error = -EBUSY;
Li Shaohua5a72e042005-06-25 14:55:06 -0700101 goto thaw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 }
103
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800104 if (pm_disk_mode == PM_DISK_TESTPROC) {
105 printk("swsusp debug: Waiting for 5 seconds.\n");
106 mdelay(5000);
107 goto thaw;
108 }
109
Stefan Seyfried8a05aac2006-12-06 20:34:21 -0800110 error = platform_prepare();
111 if (error)
112 goto thaw;
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 /* Free memory before shutting down devices. */
Rafael J. Wysocki72a97e02006-01-06 00:13:46 -0800115 if (!(error = swsusp_shrink_memory()))
116 return 0;
Stefan Seyfried8a05aac2006-12-06 20:34:21 -0800117
118 platform_finish();
Li Shaohua5a72e042005-06-25 14:55:06 -0700119thaw:
120 thaw_processes();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700121enable_cpus:
Li Shaohua5a72e042005-06-25 14:55:06 -0700122 enable_nonboot_cpus();
123 pm_restore_console();
124 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
127static void unprepare_processes(void)
128{
Li Shaohua5a72e042005-06-25 14:55:06 -0700129 platform_finish();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 thaw_processes();
Li Shaohua5a72e042005-06-25 14:55:06 -0700131 enable_nonboot_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 pm_restore_console();
133}
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135/**
David Brownellf1cc0a82006-08-14 23:11:08 -0700136 * pm_suspend_disk - The granpappy of hibernation power management.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 *
138 * If we're going through the firmware, then get it over with quickly.
139 *
140 * If not, then call swsusp to do its thing, then figure out how
141 * to power down the system.
142 */
143
144int pm_suspend_disk(void)
145{
146 int error;
147
148 error = prepare_processes();
Li Shaohua5a72e042005-06-25 14:55:06 -0700149 if (error)
150 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800152 if (pm_disk_mode == PM_DISK_TESTPROC)
153 goto Thaw;
154
Rafael J. Wysocki97c78012006-10-11 01:20:45 -0700155 suspend_console();
Pavel Machek99dc7d62005-09-03 15:57:05 -0700156 error = device_suspend(PMSG_FREEZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 if (error) {
Rafael J. Wysocki97c78012006-10-11 01:20:45 -0700158 resume_console();
Pavel Machek99dc7d62005-09-03 15:57:05 -0700159 printk("Some devices failed to suspend\n");
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800160 goto Thaw;
161 }
162
163 if (pm_disk_mode == PM_DISK_TEST) {
164 printk("swsusp debug: Waiting for 5 seconds.\n");
165 mdelay(5000);
166 goto Done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 }
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 pr_debug("PM: snapshotting memory.\n");
170 in_suspend = 1;
171 if ((error = swsusp_suspend()))
172 goto Done;
173
174 if (in_suspend) {
Rafael J. Wysocki0245b3e2005-10-30 15:00:01 -0800175 device_resume();
Rafael J. Wysocki97c78012006-10-11 01:20:45 -0700176 resume_console();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 pr_debug("PM: writing image.\n");
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800178 error = swsusp_write();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 if (!error)
180 power_down(pm_disk_mode);
Pavel Machek99dc7d62005-09-03 15:57:05 -0700181 else {
Pavel Machek99dc7d62005-09-03 15:57:05 -0700182 swsusp_free();
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800183 goto Thaw;
Pavel Machek99dc7d62005-09-03 15:57:05 -0700184 }
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800185 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 pr_debug("PM: Image restored successfully.\n");
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800187 }
Pavel Machek99dc7d62005-09-03 15:57:05 -0700188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 swsusp_free();
190 Done:
Pavel Machek99dc7d62005-09-03 15:57:05 -0700191 device_resume();
Rafael J. Wysocki97c78012006-10-11 01:20:45 -0700192 resume_console();
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800193 Thaw:
Pavel Machek99dc7d62005-09-03 15:57:05 -0700194 unprepare_processes();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 return error;
196}
197
198
199/**
200 * software_resume - Resume from a saved image.
201 *
202 * Called as a late_initcall (so all devices are discovered and
203 * initialized), we call swsusp to see if we have a saved image or not.
204 * If so, we quiesce devices, the restore the saved image. We will
205 * return above (in pm_suspend_disk() ) if everything goes well.
206 * Otherwise, we fail gracefully and return to the normally
207 * scheduled program.
208 *
209 */
210
211static int software_resume(void)
212{
213 int error;
214
Shaohua Lidd5d6662005-09-03 15:57:04 -0700215 down(&pm_sem);
Pavel Machek3efa1472005-07-07 17:56:43 -0700216 if (!swsusp_resume_device) {
Shaohua Lidd5d6662005-09-03 15:57:04 -0700217 if (!strlen(resume_file)) {
218 up(&pm_sem);
Pavel Machek3efa1472005-07-07 17:56:43 -0700219 return -ENOENT;
Shaohua Lidd5d6662005-09-03 15:57:04 -0700220 }
Pavel Machek3efa1472005-07-07 17:56:43 -0700221 swsusp_resume_device = name_to_dev_t(resume_file);
222 pr_debug("swsusp: Resume From Partition %s\n", resume_file);
223 } else {
224 pr_debug("swsusp: Resume From Partition %d:%d\n",
225 MAJOR(swsusp_resume_device), MINOR(swsusp_resume_device));
226 }
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (noresume) {
229 /**
230 * FIXME: If noresume is specified, we need to find the partition
231 * and reset it back to normal swap space.
232 */
Shaohua Lidd5d6662005-09-03 15:57:04 -0700233 up(&pm_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 return 0;
235 }
236
237 pr_debug("PM: Checking swsusp image.\n");
238
239 if ((error = swsusp_check()))
240 goto Done;
241
242 pr_debug("PM: Preparing processes for restore.\n");
243
244 if ((error = prepare_processes())) {
245 swsusp_close();
Li Shaohua5a72e042005-06-25 14:55:06 -0700246 goto Done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 }
248
249 pr_debug("PM: Reading swsusp image.\n");
250
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800251 if ((error = swsusp_read())) {
Rafael J. Wysocki2c1b4a52005-10-30 14:59:58 -0800252 swsusp_free();
253 goto Thaw;
254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 pr_debug("PM: Preparing devices for restore.\n");
257
Rafael J. Wysocki97c78012006-10-11 01:20:45 -0700258 suspend_console();
David Brownellf1cc0a82006-08-14 23:11:08 -0700259 if ((error = device_suspend(PMSG_PRETHAW))) {
Rafael J. Wysocki97c78012006-10-11 01:20:45 -0700260 resume_console();
Pavel Machek99dc7d62005-09-03 15:57:05 -0700261 printk("Some devices failed to suspend\n");
Rafael J. Wysocki2c1b4a52005-10-30 14:59:58 -0800262 swsusp_free();
263 goto Thaw;
Pavel Machek99dc7d62005-09-03 15:57:05 -0700264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 mb();
267
268 pr_debug("PM: Restoring saved image.\n");
269 swsusp_resume();
270 pr_debug("PM: Restore failed, recovering.n");
Pavel Machek99dc7d62005-09-03 15:57:05 -0700271 device_resume();
Rafael J. Wysocki97c78012006-10-11 01:20:45 -0700272 resume_console();
Rafael J. Wysocki2c1b4a52005-10-30 14:59:58 -0800273 Thaw:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 unprepare_processes();
275 Done:
Shaohua Lidd5d6662005-09-03 15:57:04 -0700276 /* For success case, the suspend path will release the lock */
277 up(&pm_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 pr_debug("PM: Resume from disk failed.\n");
279 return 0;
280}
281
282late_initcall(software_resume);
283
284
Andreas Mohr3b364b82006-06-25 05:47:56 -0700285static const char * const pm_disk_modes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 [PM_DISK_FIRMWARE] = "firmware",
287 [PM_DISK_PLATFORM] = "platform",
288 [PM_DISK_SHUTDOWN] = "shutdown",
289 [PM_DISK_REBOOT] = "reboot",
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800290 [PM_DISK_TEST] = "test",
291 [PM_DISK_TESTPROC] = "testproc",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292};
293
294/**
295 * disk - Control suspend-to-disk mode
296 *
297 * Suspend-to-disk can be handled in several ways. The greatest
298 * distinction is who writes memory to disk - the firmware or the OS.
299 * If the firmware does it, we assume that it also handles suspending
300 * the system.
301 * If the OS does it, then we have three options for putting the system
302 * to sleep - using the platform driver (e.g. ACPI or other PM registers),
303 * powering off the system or rebooting the system (for testing).
304 *
305 * The system will support either 'firmware' or 'platform', and that is
306 * known a priori (and encoded in pm_ops). But, the user may choose
307 * 'shutdown' or 'reboot' as alternatives.
308 *
309 * show() will display what the mode is currently set to.
310 * store() will accept one of
311 *
312 * 'firmware'
313 * 'platform'
314 * 'shutdown'
315 * 'reboot'
316 *
317 * It will only change to 'firmware' or 'platform' if the system
318 * supports it (as determined from pm_ops->pm_disk_mode).
319 */
320
321static ssize_t disk_show(struct subsystem * subsys, char * buf)
322{
323 return sprintf(buf, "%s\n", pm_disk_modes[pm_disk_mode]);
324}
325
326
327static ssize_t disk_store(struct subsystem * s, const char * buf, size_t n)
328{
329 int error = 0;
330 int i;
331 int len;
332 char *p;
333 suspend_disk_method_t mode = 0;
334
335 p = memchr(buf, '\n', n);
336 len = p ? p - buf : n;
337
338 down(&pm_sem);
339 for (i = PM_DISK_FIRMWARE; i < PM_DISK_MAX; i++) {
340 if (!strncmp(buf, pm_disk_modes[i], len)) {
341 mode = i;
342 break;
343 }
344 }
345 if (mode) {
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800346 if (mode == PM_DISK_SHUTDOWN || mode == PM_DISK_REBOOT ||
347 mode == PM_DISK_TEST || mode == PM_DISK_TESTPROC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 pm_disk_mode = mode;
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800349 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 if (pm_ops && pm_ops->enter &&
351 (mode == pm_ops->pm_disk_mode))
352 pm_disk_mode = mode;
353 else
354 error = -EINVAL;
355 }
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800356 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 error = -EINVAL;
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 pr_debug("PM: suspend-to-disk mode set to '%s'\n",
361 pm_disk_modes[mode]);
362 up(&pm_sem);
363 return error ? error : n;
364}
365
366power_attr(disk);
367
368static ssize_t resume_show(struct subsystem * subsys, char *buf)
369{
370 return sprintf(buf,"%d:%d\n", MAJOR(swsusp_resume_device),
371 MINOR(swsusp_resume_device));
372}
373
Andrew Mortona5762192006-01-06 00:09:50 -0800374static ssize_t resume_store(struct subsystem *subsys, const char *buf, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 unsigned int maj, min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 dev_t res;
Andrew Mortona5762192006-01-06 00:09:50 -0800378 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Andrew Mortona5762192006-01-06 00:09:50 -0800380 if (sscanf(buf, "%u:%u", &maj, &min) != 2)
381 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Andrew Mortona5762192006-01-06 00:09:50 -0800383 res = MKDEV(maj,min);
384 if (maj != MAJOR(res) || min != MINOR(res))
385 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Andrew Mortona5762192006-01-06 00:09:50 -0800387 down(&pm_sem);
388 swsusp_resume_device = res;
389 up(&pm_sem);
390 printk("Attempting manual resume\n");
391 noresume = 0;
392 software_resume();
393 ret = n;
394out:
395 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
398power_attr(resume);
399
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800400static ssize_t image_size_show(struct subsystem * subsys, char *buf)
401{
Rafael J. Wysocki853609b2006-02-01 03:05:07 -0800402 return sprintf(buf, "%lu\n", image_size);
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800403}
404
405static ssize_t image_size_store(struct subsystem * subsys, const char * buf, size_t n)
406{
Rafael J. Wysocki853609b2006-02-01 03:05:07 -0800407 unsigned long size;
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800408
Rafael J. Wysocki853609b2006-02-01 03:05:07 -0800409 if (sscanf(buf, "%lu", &size) == 1) {
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800410 image_size = size;
411 return n;
412 }
413
414 return -EINVAL;
415}
416
417power_attr(image_size);
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419static struct attribute * g[] = {
420 &disk_attr.attr,
421 &resume_attr.attr,
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800422 &image_size_attr.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 NULL,
424};
425
426
427static struct attribute_group attr_group = {
428 .attrs = g,
429};
430
431
432static int __init pm_disk_init(void)
433{
434 return sysfs_create_group(&power_subsys.kset.kobj,&attr_group);
435}
436
437core_initcall(pm_disk_init);
438
439
440static int __init resume_setup(char *str)
441{
442 if (noresume)
443 return 1;
444
445 strncpy( resume_file, str, 255 );
446 return 1;
447}
448
Rafael J. Wysocki9a154d92006-12-06 20:34:12 -0800449static int __init resume_offset_setup(char *str)
450{
451 unsigned long long offset;
452
453 if (noresume)
454 return 1;
455
456 if (sscanf(str, "%llu", &offset) == 1)
457 swsusp_resume_block = offset;
458
459 return 1;
460}
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462static int __init noresume_setup(char *str)
463{
464 noresume = 1;
465 return 1;
466}
467
468__setup("noresume", noresume_setup);
Rafael J. Wysocki9a154d92006-12-06 20:34:12 -0800469__setup("resume_offset=", resume_offset_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470__setup("resume=", resume_setup);