ACPI: thinkpad-acpi: preserve radio state across shutdown
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / kernel / power / disk.c
blob45e8541ab7e3ee0b699142ed20094b817bdd8255
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/kmod.h>
18 #include <linux/delay.h>
19 #include <linux/fs.h>
20 #include <linux/mount.h>
21 #include <linux/pm.h>
22 #include <linux/console.h>
23 #include <linux/cpu.h>
24 #include <linux/freezer.h>
26 #include "power.h"
29 static int noresume = 0;
30 static char resume_file[256] = CONFIG_PM_STD_PARTITION;
31 dev_t swsusp_resume_device;
32 sector_t swsusp_resume_block;
34 enum {
35 HIBERNATION_INVALID,
36 HIBERNATION_PLATFORM,
37 HIBERNATION_TEST,
38 HIBERNATION_TESTPROC,
39 HIBERNATION_SHUTDOWN,
40 HIBERNATION_REBOOT,
41 /* keep last */
42 __HIBERNATION_AFTER_LAST
44 #define HIBERNATION_MAX (__HIBERNATION_AFTER_LAST-1)
45 #define HIBERNATION_FIRST (HIBERNATION_INVALID + 1)
47 static int hibernation_mode = HIBERNATION_SHUTDOWN;
49 static struct platform_hibernation_ops *hibernation_ops;
51 /**
52 * hibernation_set_ops - set the global hibernate operations
53 * @ops: the hibernation operations to use in subsequent hibernation transitions
56 void hibernation_set_ops(struct platform_hibernation_ops *ops)
58 if (ops && !(ops->begin && ops->end && ops->pre_snapshot
59 && ops->prepare && ops->finish && ops->enter && ops->pre_restore
60 && ops->restore_cleanup)) {
61 WARN_ON(1);
62 return;
64 mutex_lock(&pm_mutex);
65 hibernation_ops = ops;
66 if (ops)
67 hibernation_mode = HIBERNATION_PLATFORM;
68 else if (hibernation_mode == HIBERNATION_PLATFORM)
69 hibernation_mode = HIBERNATION_SHUTDOWN;
71 mutex_unlock(&pm_mutex);
74 #ifdef CONFIG_PM_DEBUG
75 static void hibernation_debug_sleep(void)
77 printk(KERN_INFO "hibernation debug: Waiting for 5 seconds.\n");
78 mdelay(5000);
81 static int hibernation_testmode(int mode)
83 if (hibernation_mode == mode) {
84 hibernation_debug_sleep();
85 return 1;
87 return 0;
90 static int hibernation_test(int level)
92 if (pm_test_level == level) {
93 hibernation_debug_sleep();
94 return 1;
96 return 0;
98 #else /* !CONFIG_PM_DEBUG */
99 static int hibernation_testmode(int mode) { return 0; }
100 static int hibernation_test(int level) { return 0; }
101 #endif /* !CONFIG_PM_DEBUG */
104 * platform_begin - tell the platform driver that we're starting
105 * hibernation
108 static int platform_begin(int platform_mode)
110 return (platform_mode && hibernation_ops) ?
111 hibernation_ops->begin() : 0;
115 * platform_end - tell the platform driver that we've entered the
116 * working state
119 static void platform_end(int platform_mode)
121 if (platform_mode && hibernation_ops)
122 hibernation_ops->end();
126 * platform_pre_snapshot - prepare the machine for hibernation using the
127 * platform driver if so configured and return an error code if it fails
130 static int platform_pre_snapshot(int platform_mode)
132 return (platform_mode && hibernation_ops) ?
133 hibernation_ops->pre_snapshot() : 0;
137 * platform_leave - prepare the machine for switching to the normal mode
138 * of operation using the platform driver (called with interrupts disabled)
141 static void platform_leave(int platform_mode)
143 if (platform_mode && hibernation_ops)
144 hibernation_ops->leave();
148 * platform_finish - switch the machine to the normal mode of operation
149 * using the platform driver (must be called after platform_prepare())
152 static void platform_finish(int platform_mode)
154 if (platform_mode && hibernation_ops)
155 hibernation_ops->finish();
159 * platform_pre_restore - prepare the platform for the restoration from a
160 * hibernation image. If the restore fails after this function has been
161 * called, platform_restore_cleanup() must be called.
164 static int platform_pre_restore(int platform_mode)
166 return (platform_mode && hibernation_ops) ?
167 hibernation_ops->pre_restore() : 0;
171 * platform_restore_cleanup - switch the platform to the normal mode of
172 * operation after a failing restore. If platform_pre_restore() has been
173 * called before the failing restore, this function must be called too,
174 * regardless of the result of platform_pre_restore().
177 static void platform_restore_cleanup(int platform_mode)
179 if (platform_mode && hibernation_ops)
180 hibernation_ops->restore_cleanup();
184 * platform_recover - recover the platform from a failure to suspend
185 * devices.
188 static void platform_recover(int platform_mode)
190 if (platform_mode && hibernation_ops && hibernation_ops->recover)
191 hibernation_ops->recover();
195 * create_image - freeze devices that need to be frozen with interrupts
196 * off, create the hibernation image and thaw those devices. Control
197 * reappears in this routine after a restore.
200 static int create_image(int platform_mode)
202 int error;
204 error = arch_prepare_suspend();
205 if (error)
206 return error;
208 device_pm_lock();
209 local_irq_disable();
210 /* At this point, device_suspend() has been called, but *not*
211 * device_power_down(). We *must* call device_power_down() now.
212 * Otherwise, drivers for some devices (e.g. interrupt controllers)
213 * become desynchronized with the actual state of the hardware
214 * at resume time, and evil weirdness ensues.
216 error = device_power_down(PMSG_FREEZE);
217 if (error) {
218 printk(KERN_ERR "PM: Some devices failed to power down, "
219 "aborting hibernation\n");
220 goto Enable_irqs;
223 if (hibernation_test(TEST_CORE))
224 goto Power_up;
226 in_suspend = 1;
227 save_processor_state();
228 error = swsusp_arch_suspend();
229 if (error)
230 printk(KERN_ERR "PM: Error %d creating hibernation image\n",
231 error);
232 /* Restore control flow magically appears here */
233 restore_processor_state();
234 if (!in_suspend)
235 platform_leave(platform_mode);
236 Power_up:
237 /* NOTE: device_power_up() is just a resume() for devices
238 * that suspended with irqs off ... no overall powerup.
240 device_power_up(in_suspend ?
241 (error ? PMSG_RECOVER : PMSG_THAW) : PMSG_RESTORE);
242 Enable_irqs:
243 local_irq_enable();
244 device_pm_unlock();
245 return error;
249 * hibernation_snapshot - quiesce devices and create the hibernation
250 * snapshot image.
251 * @platform_mode - if set, use the platform driver, if available, to
252 * prepare the platform frimware for the power transition.
254 * Must be called with pm_mutex held
257 int hibernation_snapshot(int platform_mode)
259 int error;
261 error = platform_begin(platform_mode);
262 if (error)
263 return error;
265 /* Free memory before shutting down devices. */
266 error = swsusp_shrink_memory();
267 if (error)
268 goto Close;
270 suspend_console();
271 error = device_suspend(PMSG_FREEZE);
272 if (error)
273 goto Recover_platform;
275 if (hibernation_test(TEST_DEVICES))
276 goto Recover_platform;
278 error = platform_pre_snapshot(platform_mode);
279 if (error || hibernation_test(TEST_PLATFORM))
280 goto Finish;
282 error = disable_nonboot_cpus();
283 if (!error) {
284 if (hibernation_test(TEST_CPUS))
285 goto Enable_cpus;
287 if (hibernation_testmode(HIBERNATION_TEST))
288 goto Enable_cpus;
290 error = create_image(platform_mode);
291 /* Control returns here after successful restore */
293 Enable_cpus:
294 enable_nonboot_cpus();
295 Finish:
296 platform_finish(platform_mode);
297 Resume_devices:
298 device_resume(in_suspend ?
299 (error ? PMSG_RECOVER : PMSG_THAW) : PMSG_RESTORE);
300 resume_console();
301 Close:
302 platform_end(platform_mode);
303 return error;
305 Recover_platform:
306 platform_recover(platform_mode);
307 goto Resume_devices;
311 * resume_target_kernel - prepare devices that need to be suspended with
312 * interrupts off, restore the contents of highmem that have not been
313 * restored yet from the image and run the low level code that will restore
314 * the remaining contents of memory and switch to the just restored target
315 * kernel.
318 static int resume_target_kernel(void)
320 int error;
322 device_pm_lock();
323 local_irq_disable();
324 error = device_power_down(PMSG_QUIESCE);
325 if (error) {
326 printk(KERN_ERR "PM: Some devices failed to power down, "
327 "aborting resume\n");
328 goto Enable_irqs;
330 /* We'll ignore saved state, but this gets preempt count (etc) right */
331 save_processor_state();
332 error = restore_highmem();
333 if (!error) {
334 error = swsusp_arch_resume();
336 * The code below is only ever reached in case of a failure.
337 * Otherwise execution continues at place where
338 * swsusp_arch_suspend() was called
340 BUG_ON(!error);
341 /* This call to restore_highmem() undos the previous one */
342 restore_highmem();
345 * The only reason why swsusp_arch_resume() can fail is memory being
346 * very tight, so we have to free it as soon as we can to avoid
347 * subsequent failures
349 swsusp_free();
350 restore_processor_state();
351 touch_softlockup_watchdog();
352 device_power_up(PMSG_RECOVER);
353 Enable_irqs:
354 local_irq_enable();
355 device_pm_unlock();
356 return error;
360 * hibernation_restore - quiesce devices and restore the hibernation
361 * snapshot image. If successful, control returns in hibernation_snaphot()
362 * @platform_mode - if set, use the platform driver, if available, to
363 * prepare the platform frimware for the transition.
365 * Must be called with pm_mutex held
368 int hibernation_restore(int platform_mode)
370 int error;
372 pm_prepare_console();
373 suspend_console();
374 error = device_suspend(PMSG_QUIESCE);
375 if (error)
376 goto Finish;
378 error = platform_pre_restore(platform_mode);
379 if (!error) {
380 error = disable_nonboot_cpus();
381 if (!error)
382 error = resume_target_kernel();
383 enable_nonboot_cpus();
385 platform_restore_cleanup(platform_mode);
386 device_resume(PMSG_RECOVER);
387 Finish:
388 resume_console();
389 pm_restore_console();
390 return error;
394 * hibernation_platform_enter - enter the hibernation state using the
395 * platform driver (if available)
398 int hibernation_platform_enter(void)
400 int error;
402 if (!hibernation_ops)
403 return -ENOSYS;
406 * We have cancelled the power transition by running
407 * hibernation_ops->finish() before saving the image, so we should let
408 * the firmware know that we're going to enter the sleep state after all
410 error = hibernation_ops->begin();
411 if (error)
412 goto Close;
414 suspend_console();
415 error = device_suspend(PMSG_HIBERNATE);
416 if (error) {
417 if (hibernation_ops->recover)
418 hibernation_ops->recover();
419 goto Resume_devices;
422 error = hibernation_ops->prepare();
423 if (error)
424 goto Resume_devices;
426 error = disable_nonboot_cpus();
427 if (error)
428 goto Finish;
430 device_pm_lock();
431 local_irq_disable();
432 error = device_power_down(PMSG_HIBERNATE);
433 if (!error) {
434 hibernation_ops->enter();
435 /* We should never get here */
436 while (1);
438 local_irq_enable();
439 device_pm_unlock();
442 * We don't need to reenable the nonboot CPUs or resume consoles, since
443 * the system is going to be halted anyway.
445 Finish:
446 hibernation_ops->finish();
447 Resume_devices:
448 device_resume(PMSG_RESTORE);
449 resume_console();
450 Close:
451 hibernation_ops->end();
452 return error;
456 * power_down - Shut the machine down for hibernation.
458 * Use the platform driver, if configured so; otherwise try
459 * to power off or reboot.
462 static void power_down(void)
464 switch (hibernation_mode) {
465 case HIBERNATION_TEST:
466 case HIBERNATION_TESTPROC:
467 break;
468 case HIBERNATION_REBOOT:
469 kernel_restart(NULL);
470 break;
471 case HIBERNATION_PLATFORM:
472 hibernation_platform_enter();
473 case HIBERNATION_SHUTDOWN:
474 kernel_power_off();
475 break;
477 kernel_halt();
479 * Valid image is on the disk, if we continue we risk serious data
480 * corruption after resume.
482 printk(KERN_CRIT "PM: Please power down manually\n");
483 while(1);
486 static int prepare_processes(void)
488 int error = 0;
490 if (freeze_processes()) {
491 error = -EBUSY;
492 thaw_processes();
494 return error;
498 * hibernate - The granpappy of the built-in hibernation management
501 int hibernate(void)
503 int error;
505 mutex_lock(&pm_mutex);
506 /* The snapshot device should not be opened while we're running */
507 if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
508 error = -EBUSY;
509 goto Unlock;
512 pm_prepare_console();
513 error = pm_notifier_call_chain(PM_HIBERNATION_PREPARE);
514 if (error)
515 goto Exit;
517 error = usermodehelper_disable();
518 if (error)
519 goto Exit;
521 /* Allocate memory management structures */
522 error = create_basic_memory_bitmaps();
523 if (error)
524 goto Exit;
526 printk(KERN_INFO "PM: Syncing filesystems ... ");
527 sys_sync();
528 printk("done.\n");
530 error = prepare_processes();
531 if (error)
532 goto Finish;
534 if (hibernation_test(TEST_FREEZER))
535 goto Thaw;
537 if (hibernation_testmode(HIBERNATION_TESTPROC))
538 goto Thaw;
540 error = hibernation_snapshot(hibernation_mode == HIBERNATION_PLATFORM);
541 if (in_suspend && !error) {
542 unsigned int flags = 0;
544 if (hibernation_mode == HIBERNATION_PLATFORM)
545 flags |= SF_PLATFORM_MODE;
546 pr_debug("PM: writing image.\n");
547 error = swsusp_write(flags);
548 swsusp_free();
549 if (!error)
550 power_down();
551 } else {
552 pr_debug("PM: Image restored successfully.\n");
553 swsusp_free();
555 Thaw:
556 thaw_processes();
557 Finish:
558 free_basic_memory_bitmaps();
559 usermodehelper_enable();
560 Exit:
561 pm_notifier_call_chain(PM_POST_HIBERNATION);
562 pm_restore_console();
563 atomic_inc(&snapshot_device_available);
564 Unlock:
565 mutex_unlock(&pm_mutex);
566 return error;
571 * software_resume - Resume from a saved image.
573 * Called as a late_initcall (so all devices are discovered and
574 * initialized), we call swsusp to see if we have a saved image or not.
575 * If so, we quiesce devices, the restore the saved image. We will
576 * return above (in hibernate() ) if everything goes well.
577 * Otherwise, we fail gracefully and return to the normally
578 * scheduled program.
582 static int software_resume(void)
584 int error;
585 unsigned int flags;
588 * name_to_dev_t() below takes a sysfs buffer mutex when sysfs
589 * is configured into the kernel. Since the regular hibernate
590 * trigger path is via sysfs which takes a buffer mutex before
591 * calling hibernate functions (which take pm_mutex) this can
592 * cause lockdep to complain about a possible ABBA deadlock
593 * which cannot happen since we're in the boot code here and
594 * sysfs can't be invoked yet. Therefore, we use a subclass
595 * here to avoid lockdep complaining.
597 mutex_lock_nested(&pm_mutex, SINGLE_DEPTH_NESTING);
598 if (!swsusp_resume_device) {
599 if (!strlen(resume_file)) {
600 mutex_unlock(&pm_mutex);
601 return -ENOENT;
603 swsusp_resume_device = name_to_dev_t(resume_file);
604 pr_debug("PM: Resume from partition %s\n", resume_file);
605 } else {
606 pr_debug("PM: Resume from partition %d:%d\n",
607 MAJOR(swsusp_resume_device),
608 MINOR(swsusp_resume_device));
611 if (noresume) {
613 * FIXME: If noresume is specified, we need to find the
614 * partition and reset it back to normal swap space.
616 mutex_unlock(&pm_mutex);
617 return 0;
620 pr_debug("PM: Checking hibernation image.\n");
621 error = swsusp_check();
622 if (error)
623 goto Unlock;
625 /* The snapshot device should not be opened while we're running */
626 if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
627 error = -EBUSY;
628 goto Unlock;
631 pm_prepare_console();
632 error = pm_notifier_call_chain(PM_RESTORE_PREPARE);
633 if (error)
634 goto Finish;
636 error = usermodehelper_disable();
637 if (error)
638 goto Finish;
640 error = create_basic_memory_bitmaps();
641 if (error)
642 goto Finish;
644 pr_debug("PM: Preparing processes for restore.\n");
645 error = prepare_processes();
646 if (error) {
647 swsusp_close(FMODE_READ);
648 goto Done;
651 pr_debug("PM: Reading hibernation image.\n");
653 error = swsusp_read(&flags);
654 if (!error)
655 hibernation_restore(flags & SF_PLATFORM_MODE);
657 printk(KERN_ERR "PM: Restore failed, recovering.\n");
658 swsusp_free();
659 thaw_processes();
660 Done:
661 free_basic_memory_bitmaps();
662 usermodehelper_enable();
663 Finish:
664 pm_notifier_call_chain(PM_POST_RESTORE);
665 pm_restore_console();
666 atomic_inc(&snapshot_device_available);
667 /* For success case, the suspend path will release the lock */
668 Unlock:
669 mutex_unlock(&pm_mutex);
670 pr_debug("PM: Resume from disk failed.\n");
671 return error;
674 late_initcall(software_resume);
677 static const char * const hibernation_modes[] = {
678 [HIBERNATION_PLATFORM] = "platform",
679 [HIBERNATION_SHUTDOWN] = "shutdown",
680 [HIBERNATION_REBOOT] = "reboot",
681 [HIBERNATION_TEST] = "test",
682 [HIBERNATION_TESTPROC] = "testproc",
686 * disk - Control hibernation mode
688 * Suspend-to-disk can be handled in several ways. We have a few options
689 * for putting the system to sleep - using the platform driver (e.g. ACPI
690 * or other hibernation_ops), powering off the system or rebooting the
691 * system (for testing) as well as the two test modes.
693 * The system can support 'platform', and that is known a priori (and
694 * encoded by the presence of hibernation_ops). However, the user may
695 * choose 'shutdown' or 'reboot' as alternatives, as well as one fo the
696 * test modes, 'test' or 'testproc'.
698 * show() will display what the mode is currently set to.
699 * store() will accept one of
701 * 'platform'
702 * 'shutdown'
703 * 'reboot'
704 * 'test'
705 * 'testproc'
707 * It will only change to 'platform' if the system
708 * supports it (as determined by having hibernation_ops).
711 static ssize_t disk_show(struct kobject *kobj, struct kobj_attribute *attr,
712 char *buf)
714 int i;
715 char *start = buf;
717 for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
718 if (!hibernation_modes[i])
719 continue;
720 switch (i) {
721 case HIBERNATION_SHUTDOWN:
722 case HIBERNATION_REBOOT:
723 case HIBERNATION_TEST:
724 case HIBERNATION_TESTPROC:
725 break;
726 case HIBERNATION_PLATFORM:
727 if (hibernation_ops)
728 break;
729 /* not a valid mode, continue with loop */
730 continue;
732 if (i == hibernation_mode)
733 buf += sprintf(buf, "[%s] ", hibernation_modes[i]);
734 else
735 buf += sprintf(buf, "%s ", hibernation_modes[i]);
737 buf += sprintf(buf, "\n");
738 return buf-start;
742 static ssize_t disk_store(struct kobject *kobj, struct kobj_attribute *attr,
743 const char *buf, size_t n)
745 int error = 0;
746 int i;
747 int len;
748 char *p;
749 int mode = HIBERNATION_INVALID;
751 p = memchr(buf, '\n', n);
752 len = p ? p - buf : n;
754 mutex_lock(&pm_mutex);
755 for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
756 if (len == strlen(hibernation_modes[i])
757 && !strncmp(buf, hibernation_modes[i], len)) {
758 mode = i;
759 break;
762 if (mode != HIBERNATION_INVALID) {
763 switch (mode) {
764 case HIBERNATION_SHUTDOWN:
765 case HIBERNATION_REBOOT:
766 case HIBERNATION_TEST:
767 case HIBERNATION_TESTPROC:
768 hibernation_mode = mode;
769 break;
770 case HIBERNATION_PLATFORM:
771 if (hibernation_ops)
772 hibernation_mode = mode;
773 else
774 error = -EINVAL;
776 } else
777 error = -EINVAL;
779 if (!error)
780 pr_debug("PM: Hibernation mode set to '%s'\n",
781 hibernation_modes[mode]);
782 mutex_unlock(&pm_mutex);
783 return error ? error : n;
786 power_attr(disk);
788 static ssize_t resume_show(struct kobject *kobj, struct kobj_attribute *attr,
789 char *buf)
791 return sprintf(buf,"%d:%d\n", MAJOR(swsusp_resume_device),
792 MINOR(swsusp_resume_device));
795 static ssize_t resume_store(struct kobject *kobj, struct kobj_attribute *attr,
796 const char *buf, size_t n)
798 unsigned int maj, min;
799 dev_t res;
800 int ret = -EINVAL;
802 if (sscanf(buf, "%u:%u", &maj, &min) != 2)
803 goto out;
805 res = MKDEV(maj,min);
806 if (maj != MAJOR(res) || min != MINOR(res))
807 goto out;
809 mutex_lock(&pm_mutex);
810 swsusp_resume_device = res;
811 mutex_unlock(&pm_mutex);
812 printk(KERN_INFO "PM: Starting manual resume from disk\n");
813 noresume = 0;
814 software_resume();
815 ret = n;
816 out:
817 return ret;
820 power_attr(resume);
822 static ssize_t image_size_show(struct kobject *kobj, struct kobj_attribute *attr,
823 char *buf)
825 return sprintf(buf, "%lu\n", image_size);
828 static ssize_t image_size_store(struct kobject *kobj, struct kobj_attribute *attr,
829 const char *buf, size_t n)
831 unsigned long size;
833 if (sscanf(buf, "%lu", &size) == 1) {
834 image_size = size;
835 return n;
838 return -EINVAL;
841 power_attr(image_size);
843 static struct attribute * g[] = {
844 &disk_attr.attr,
845 &resume_attr.attr,
846 &image_size_attr.attr,
847 NULL,
851 static struct attribute_group attr_group = {
852 .attrs = g,
856 static int __init pm_disk_init(void)
858 return sysfs_create_group(power_kobj, &attr_group);
861 core_initcall(pm_disk_init);
864 static int __init resume_setup(char *str)
866 if (noresume)
867 return 1;
869 strncpy( resume_file, str, 255 );
870 return 1;
873 static int __init resume_offset_setup(char *str)
875 unsigned long long offset;
877 if (noresume)
878 return 1;
880 if (sscanf(str, "%llu", &offset) == 1)
881 swsusp_resume_block = offset;
883 return 1;
886 static int __init noresume_setup(char *str)
888 noresume = 1;
889 return 1;
892 __setup("noresume", noresume_setup);
893 __setup("resume_offset=", resume_offset_setup);
894 __setup("resume=", resume_setup);