PM: Separate hibernation code from suspend code
[linux-2.6/cjktty.git] / kernel / power / disk.c
blobb5f0543ed84d38bd44ceb96cb5efe3d0330d15e8
1 /*
2 * kernel/power/disk.c - Suspend-to-disk support.
4 * Copyright (c) 2003 Patrick Mochel
5 * Copyright (c) 2003 Open Source Development Lab
6 * Copyright (c) 2004 Pavel Machek <pavel@suse.cz>
8 * This file is released under the GPLv2.
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>
19 #include <linux/mount.h>
20 #include <linux/pm.h>
21 #include <linux/console.h>
22 #include <linux/cpu.h>
23 #include <linux/freezer.h>
25 #include "power.h"
28 static int noresume = 0;
29 char resume_file[256] = CONFIG_PM_STD_PARTITION;
30 dev_t swsusp_resume_device;
31 sector_t swsusp_resume_block;
33 enum {
34 HIBERNATION_INVALID,
35 HIBERNATION_PLATFORM,
36 HIBERNATION_TEST,
37 HIBERNATION_TESTPROC,
38 HIBERNATION_SHUTDOWN,
39 HIBERNATION_REBOOT,
40 /* keep last */
41 __HIBERNATION_AFTER_LAST
43 #define HIBERNATION_MAX (__HIBERNATION_AFTER_LAST-1)
44 #define HIBERNATION_FIRST (HIBERNATION_INVALID + 1)
46 static int hibernation_mode = HIBERNATION_SHUTDOWN;
48 struct hibernation_ops *hibernation_ops;
50 /**
51 * hibernation_set_ops - set the global hibernate operations
52 * @ops: the hibernation operations to use in subsequent hibernation transitions
55 void hibernation_set_ops(struct hibernation_ops *ops)
57 if (ops && !(ops->prepare && ops->enter && ops->finish)) {
58 WARN_ON(1);
59 return;
61 mutex_lock(&pm_mutex);
62 hibernation_ops = ops;
63 if (ops)
64 hibernation_mode = HIBERNATION_PLATFORM;
65 else if (hibernation_mode == HIBERNATION_PLATFORM)
66 hibernation_mode = HIBERNATION_SHUTDOWN;
68 mutex_unlock(&pm_mutex);
72 /**
73 * platform_prepare - prepare the machine for hibernation using the
74 * platform driver if so configured and return an error code if it fails
77 static int platform_prepare(void)
79 return (hibernation_mode == HIBERNATION_PLATFORM && hibernation_ops) ?
80 hibernation_ops->prepare() : 0;
83 /**
84 * platform_finish - switch the machine to the normal mode of operation
85 * using the platform driver (must be called after platform_prepare())
88 static void platform_finish(void)
90 if (hibernation_mode == HIBERNATION_PLATFORM && hibernation_ops)
91 hibernation_ops->finish();
94 /**
95 * power_down - Shut the machine down for hibernation.
97 * Use the platform driver, if configured so; otherwise try
98 * to power off or reboot.
101 static void power_down(void)
103 switch (hibernation_mode) {
104 case HIBERNATION_TEST:
105 case HIBERNATION_TESTPROC:
106 break;
107 case HIBERNATION_SHUTDOWN:
108 kernel_power_off();
109 break;
110 case HIBERNATION_REBOOT:
111 kernel_restart(NULL);
112 break;
113 case HIBERNATION_PLATFORM:
114 if (hibernation_ops) {
115 kernel_shutdown_prepare(SYSTEM_SUSPEND_DISK);
116 hibernation_ops->enter();
117 break;
120 kernel_halt();
122 * Valid image is on the disk, if we continue we risk serious data
123 * corruption after resume.
125 printk(KERN_CRIT "Please power me down manually\n");
126 while(1);
129 static void unprepare_processes(void)
131 thaw_processes();
132 pm_restore_console();
135 static int prepare_processes(void)
137 int error = 0;
139 pm_prepare_console();
140 if (freeze_processes()) {
141 error = -EBUSY;
142 unprepare_processes();
144 return error;
148 * hibernate - The granpappy of the built-in hibernation management
151 int hibernate(void)
153 int error;
155 /* The snapshot device should not be opened while we're running */
156 if (!atomic_add_unless(&snapshot_device_available, -1, 0))
157 return -EBUSY;
159 /* Allocate memory management structures */
160 error = create_basic_memory_bitmaps();
161 if (error)
162 goto Exit;
164 error = prepare_processes();
165 if (error)
166 goto Finish;
168 mutex_lock(&pm_mutex);
169 if (hibernation_mode == HIBERNATION_TESTPROC) {
170 printk("swsusp debug: Waiting for 5 seconds.\n");
171 mdelay(5000);
172 goto Thaw;
175 /* Free memory before shutting down devices. */
176 error = swsusp_shrink_memory();
177 if (error)
178 goto Thaw;
180 error = platform_prepare();
181 if (error)
182 goto Thaw;
184 suspend_console();
185 error = device_suspend(PMSG_FREEZE);
186 if (error) {
187 printk(KERN_ERR "PM: Some devices failed to suspend\n");
188 goto Resume_devices;
190 error = disable_nonboot_cpus();
191 if (error)
192 goto Enable_cpus;
194 if (hibernation_mode == HIBERNATION_TEST) {
195 printk("swsusp debug: Waiting for 5 seconds.\n");
196 mdelay(5000);
197 goto Enable_cpus;
200 pr_debug("PM: snapshotting memory.\n");
201 in_suspend = 1;
202 error = swsusp_suspend();
203 if (error)
204 goto Enable_cpus;
206 if (in_suspend) {
207 enable_nonboot_cpus();
208 platform_finish();
209 device_resume();
210 resume_console();
211 pr_debug("PM: writing image.\n");
212 error = swsusp_write();
213 if (!error)
214 power_down();
215 else {
216 swsusp_free();
217 goto Thaw;
219 } else {
220 pr_debug("PM: Image restored successfully.\n");
223 swsusp_free();
224 Enable_cpus:
225 enable_nonboot_cpus();
226 Resume_devices:
227 platform_finish();
228 device_resume();
229 resume_console();
230 Thaw:
231 mutex_unlock(&pm_mutex);
232 unprepare_processes();
233 Finish:
234 free_basic_memory_bitmaps();
235 Exit:
236 atomic_inc(&snapshot_device_available);
237 return error;
242 * software_resume - Resume from a saved image.
244 * Called as a late_initcall (so all devices are discovered and
245 * initialized), we call swsusp to see if we have a saved image or not.
246 * If so, we quiesce devices, the restore the saved image. We will
247 * return above (in hibernate() ) if everything goes well.
248 * Otherwise, we fail gracefully and return to the normally
249 * scheduled program.
253 static int software_resume(void)
255 int error;
257 mutex_lock(&pm_mutex);
258 if (!swsusp_resume_device) {
259 if (!strlen(resume_file)) {
260 mutex_unlock(&pm_mutex);
261 return -ENOENT;
263 swsusp_resume_device = name_to_dev_t(resume_file);
264 pr_debug("swsusp: Resume From Partition %s\n", resume_file);
265 } else {
266 pr_debug("swsusp: Resume From Partition %d:%d\n",
267 MAJOR(swsusp_resume_device), MINOR(swsusp_resume_device));
270 if (noresume) {
272 * FIXME: If noresume is specified, we need to find the partition
273 * and reset it back to normal swap space.
275 mutex_unlock(&pm_mutex);
276 return 0;
279 pr_debug("PM: Checking swsusp image.\n");
280 error = swsusp_check();
281 if (error)
282 goto Unlock;
284 /* The snapshot device should not be opened while we're running */
285 if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
286 error = -EBUSY;
287 goto Unlock;
290 error = create_basic_memory_bitmaps();
291 if (error)
292 goto Finish;
294 pr_debug("PM: Preparing processes for restore.\n");
295 error = prepare_processes();
296 if (error) {
297 swsusp_close();
298 goto Done;
301 pr_debug("PM: Reading swsusp image.\n");
303 error = swsusp_read();
304 if (error) {
305 swsusp_free();
306 goto Thaw;
309 pr_debug("PM: Preparing devices for restore.\n");
311 suspend_console();
312 error = device_suspend(PMSG_PRETHAW);
313 if (error)
314 goto Free;
316 error = disable_nonboot_cpus();
317 if (!error)
318 swsusp_resume();
320 enable_nonboot_cpus();
321 Free:
322 swsusp_free();
323 device_resume();
324 resume_console();
325 Thaw:
326 printk(KERN_ERR "PM: Restore failed, recovering.\n");
327 unprepare_processes();
328 Done:
329 free_basic_memory_bitmaps();
330 Finish:
331 atomic_inc(&snapshot_device_available);
332 /* For success case, the suspend path will release the lock */
333 Unlock:
334 mutex_unlock(&pm_mutex);
335 pr_debug("PM: Resume from disk failed.\n");
336 return 0;
339 late_initcall(software_resume);
342 static const char * const hibernation_modes[] = {
343 [HIBERNATION_PLATFORM] = "platform",
344 [HIBERNATION_SHUTDOWN] = "shutdown",
345 [HIBERNATION_REBOOT] = "reboot",
346 [HIBERNATION_TEST] = "test",
347 [HIBERNATION_TESTPROC] = "testproc",
351 * disk - Control hibernation mode
353 * Suspend-to-disk can be handled in several ways. We have a few options
354 * for putting the system to sleep - using the platform driver (e.g. ACPI
355 * or other hibernation_ops), powering off the system or rebooting the
356 * system (for testing) as well as the two test modes.
358 * The system can support 'platform', and that is known a priori (and
359 * encoded by the presence of hibernation_ops). However, the user may
360 * choose 'shutdown' or 'reboot' as alternatives, as well as one fo the
361 * test modes, 'test' or 'testproc'.
363 * show() will display what the mode is currently set to.
364 * store() will accept one of
366 * 'platform'
367 * 'shutdown'
368 * 'reboot'
369 * 'test'
370 * 'testproc'
372 * It will only change to 'platform' if the system
373 * supports it (as determined by having hibernation_ops).
376 static ssize_t disk_show(struct kset *kset, char *buf)
378 int i;
379 char *start = buf;
381 for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
382 if (!hibernation_modes[i])
383 continue;
384 switch (i) {
385 case HIBERNATION_SHUTDOWN:
386 case HIBERNATION_REBOOT:
387 case HIBERNATION_TEST:
388 case HIBERNATION_TESTPROC:
389 break;
390 case HIBERNATION_PLATFORM:
391 if (hibernation_ops)
392 break;
393 /* not a valid mode, continue with loop */
394 continue;
396 if (i == hibernation_mode)
397 buf += sprintf(buf, "[%s] ", hibernation_modes[i]);
398 else
399 buf += sprintf(buf, "%s ", hibernation_modes[i]);
401 buf += sprintf(buf, "\n");
402 return buf-start;
406 static ssize_t disk_store(struct kset *kset, const char *buf, size_t n)
408 int error = 0;
409 int i;
410 int len;
411 char *p;
412 int mode = HIBERNATION_INVALID;
414 p = memchr(buf, '\n', n);
415 len = p ? p - buf : n;
417 mutex_lock(&pm_mutex);
418 for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
419 if (!strncmp(buf, hibernation_modes[i], len)) {
420 mode = i;
421 break;
424 if (mode != HIBERNATION_INVALID) {
425 switch (mode) {
426 case HIBERNATION_SHUTDOWN:
427 case HIBERNATION_REBOOT:
428 case HIBERNATION_TEST:
429 case HIBERNATION_TESTPROC:
430 hibernation_mode = mode;
431 break;
432 case HIBERNATION_PLATFORM:
433 if (hibernation_ops)
434 hibernation_mode = mode;
435 else
436 error = -EINVAL;
438 } else
439 error = -EINVAL;
441 if (!error)
442 pr_debug("PM: suspend-to-disk mode set to '%s'\n",
443 hibernation_modes[mode]);
444 mutex_unlock(&pm_mutex);
445 return error ? error : n;
448 power_attr(disk);
450 static ssize_t resume_show(struct kset *kset, char *buf)
452 return sprintf(buf,"%d:%d\n", MAJOR(swsusp_resume_device),
453 MINOR(swsusp_resume_device));
456 static ssize_t resume_store(struct kset *kset, const char *buf, size_t n)
458 unsigned int maj, min;
459 dev_t res;
460 int ret = -EINVAL;
462 if (sscanf(buf, "%u:%u", &maj, &min) != 2)
463 goto out;
465 res = MKDEV(maj,min);
466 if (maj != MAJOR(res) || min != MINOR(res))
467 goto out;
469 mutex_lock(&pm_mutex);
470 swsusp_resume_device = res;
471 mutex_unlock(&pm_mutex);
472 printk("Attempting manual resume\n");
473 noresume = 0;
474 software_resume();
475 ret = n;
476 out:
477 return ret;
480 power_attr(resume);
482 static ssize_t image_size_show(struct kset *kset, char *buf)
484 return sprintf(buf, "%lu\n", image_size);
487 static ssize_t image_size_store(struct kset *kset, const char *buf, size_t n)
489 unsigned long size;
491 if (sscanf(buf, "%lu", &size) == 1) {
492 image_size = size;
493 return n;
496 return -EINVAL;
499 power_attr(image_size);
501 static struct attribute * g[] = {
502 &disk_attr.attr,
503 &resume_attr.attr,
504 &image_size_attr.attr,
505 NULL,
509 static struct attribute_group attr_group = {
510 .attrs = g,
514 static int __init pm_disk_init(void)
516 return sysfs_create_group(&power_subsys.kobj, &attr_group);
519 core_initcall(pm_disk_init);
522 static int __init resume_setup(char *str)
524 if (noresume)
525 return 1;
527 strncpy( resume_file, str, 255 );
528 return 1;
531 static int __init resume_offset_setup(char *str)
533 unsigned long long offset;
535 if (noresume)
536 return 1;
538 if (sscanf(str, "%llu", &offset) == 1)
539 swsusp_resume_block = offset;
541 return 1;
544 static int __init noresume_setup(char *str)
546 noresume = 1;
547 return 1;
550 __setup("noresume", noresume_setup);
551 __setup("resume_offset=", resume_offset_setup);
552 __setup("resume=", resume_setup);