2 * kernel/power/hibernate.c - Hibernation (a.k.a 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>
7 * Copyright (c) 2009 Rafael J. Wysocki, Novell Inc.
9 * 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>
20 #include <linux/mount.h>
22 #include <linux/console.h>
23 #include <linux/cpu.h>
24 #include <linux/freezer.h>
25 #include <scsi/scsi_scan.h>
26 #include <asm/suspend.h>
31 static int noresume
= 0;
32 static char resume_file
[256] = CONFIG_PM_STD_PARTITION
;
33 dev_t swsusp_resume_device
;
34 sector_t swsusp_resume_block
;
35 int in_suspend __nosavedata
= 0;
45 __HIBERNATION_AFTER_LAST
47 #define HIBERNATION_MAX (__HIBERNATION_AFTER_LAST-1)
48 #define HIBERNATION_FIRST (HIBERNATION_INVALID + 1)
50 static int hibernation_mode
= HIBERNATION_SHUTDOWN
;
52 static struct platform_hibernation_ops
*hibernation_ops
;
55 * hibernation_set_ops - set the global hibernate operations
56 * @ops: the hibernation operations to use in subsequent hibernation transitions
59 void hibernation_set_ops(struct platform_hibernation_ops
*ops
)
61 if (ops
&& !(ops
->begin
&& ops
->end
&& ops
->pre_snapshot
62 && ops
->prepare
&& ops
->finish
&& ops
->enter
&& ops
->pre_restore
63 && ops
->restore_cleanup
)) {
67 mutex_lock(&pm_mutex
);
68 hibernation_ops
= ops
;
70 hibernation_mode
= HIBERNATION_PLATFORM
;
71 else if (hibernation_mode
== HIBERNATION_PLATFORM
)
72 hibernation_mode
= HIBERNATION_SHUTDOWN
;
74 mutex_unlock(&pm_mutex
);
77 static bool entering_platform_hibernation
;
79 bool system_entering_hibernation(void)
81 return entering_platform_hibernation
;
83 EXPORT_SYMBOL(system_entering_hibernation
);
85 #ifdef CONFIG_PM_DEBUG
86 static void hibernation_debug_sleep(void)
88 printk(KERN_INFO
"hibernation debug: Waiting for 5 seconds.\n");
92 static int hibernation_testmode(int mode
)
94 if (hibernation_mode
== mode
) {
95 hibernation_debug_sleep();
101 static int hibernation_test(int level
)
103 if (pm_test_level
== level
) {
104 hibernation_debug_sleep();
109 #else /* !CONFIG_PM_DEBUG */
110 static int hibernation_testmode(int mode
) { return 0; }
111 static int hibernation_test(int level
) { return 0; }
112 #endif /* !CONFIG_PM_DEBUG */
115 * platform_begin - tell the platform driver that we're starting
119 static int platform_begin(int platform_mode
)
121 return (platform_mode
&& hibernation_ops
) ?
122 hibernation_ops
->begin() : 0;
126 * platform_end - tell the platform driver that we've entered the
130 static void platform_end(int platform_mode
)
132 if (platform_mode
&& hibernation_ops
)
133 hibernation_ops
->end();
137 * platform_pre_snapshot - prepare the machine for hibernation using the
138 * platform driver if so configured and return an error code if it fails
141 static int platform_pre_snapshot(int platform_mode
)
143 return (platform_mode
&& hibernation_ops
) ?
144 hibernation_ops
->pre_snapshot() : 0;
148 * platform_leave - prepare the machine for switching to the normal mode
149 * of operation using the platform driver (called with interrupts disabled)
152 static void platform_leave(int platform_mode
)
154 if (platform_mode
&& hibernation_ops
)
155 hibernation_ops
->leave();
159 * platform_finish - switch the machine to the normal mode of operation
160 * using the platform driver (must be called after platform_prepare())
163 static void platform_finish(int platform_mode
)
165 if (platform_mode
&& hibernation_ops
)
166 hibernation_ops
->finish();
170 * platform_pre_restore - prepare the platform for the restoration from a
171 * hibernation image. If the restore fails after this function has been
172 * called, platform_restore_cleanup() must be called.
175 static int platform_pre_restore(int platform_mode
)
177 return (platform_mode
&& hibernation_ops
) ?
178 hibernation_ops
->pre_restore() : 0;
182 * platform_restore_cleanup - switch the platform to the normal mode of
183 * operation after a failing restore. If platform_pre_restore() has been
184 * called before the failing restore, this function must be called too,
185 * regardless of the result of platform_pre_restore().
188 static void platform_restore_cleanup(int platform_mode
)
190 if (platform_mode
&& hibernation_ops
)
191 hibernation_ops
->restore_cleanup();
195 * platform_recover - recover the platform from a failure to suspend
199 static void platform_recover(int platform_mode
)
201 if (platform_mode
&& hibernation_ops
&& hibernation_ops
->recover
)
202 hibernation_ops
->recover();
206 * swsusp_show_speed - print the time elapsed between two events.
207 * @start: Starting event.
208 * @stop: Final event.
209 * @nr_pages - number of pages processed between @start and @stop
210 * @msg - introductory message to print
213 void swsusp_show_speed(struct timeval
*start
, struct timeval
*stop
,
214 unsigned nr_pages
, char *msg
)
216 s64 elapsed_centisecs64
;
221 elapsed_centisecs64
= timeval_to_ns(stop
) - timeval_to_ns(start
);
222 do_div(elapsed_centisecs64
, NSEC_PER_SEC
/ 100);
223 centisecs
= elapsed_centisecs64
;
225 centisecs
= 1; /* avoid div-by-zero */
226 k
= nr_pages
* (PAGE_SIZE
/ 1024);
227 kps
= (k
* 100) / centisecs
;
228 printk(KERN_INFO
"PM: %s %d kbytes in %d.%02d seconds (%d.%02d MB/s)\n",
230 centisecs
/ 100, centisecs
% 100,
231 kps
/ 1000, (kps
% 1000) / 10);
235 * create_image - freeze devices that need to be frozen with interrupts
236 * off, create the hibernation image and thaw those devices. Control
237 * reappears in this routine after a restore.
240 static int create_image(int platform_mode
)
244 error
= arch_prepare_suspend();
248 /* At this point, dpm_suspend_start() has been called, but *not*
249 * dpm_suspend_noirq(). We *must* call dpm_suspend_noirq() now.
250 * Otherwise, drivers for some devices (e.g. interrupt controllers)
251 * become desynchronized with the actual state of the hardware
252 * at resume time, and evil weirdness ensues.
254 error
= dpm_suspend_noirq(PMSG_FREEZE
);
256 printk(KERN_ERR
"PM: Some devices failed to power down, "
257 "aborting hibernation\n");
261 error
= platform_pre_snapshot(platform_mode
);
262 if (error
|| hibernation_test(TEST_PLATFORM
))
263 goto Platform_finish
;
265 error
= disable_nonboot_cpus();
266 if (error
|| hibernation_test(TEST_CPUS
)
267 || hibernation_testmode(HIBERNATION_TEST
))
272 error
= sysdev_suspend(PMSG_FREEZE
);
274 printk(KERN_ERR
"PM: Some system devices failed to power down, "
275 "aborting hibernation\n");
279 if (hibernation_test(TEST_CORE
))
283 save_processor_state();
284 error
= swsusp_arch_suspend();
286 printk(KERN_ERR
"PM: Error %d creating hibernation image\n",
288 /* Restore control flow magically appears here */
289 restore_processor_state();
291 platform_leave(platform_mode
);
295 /* NOTE: dpm_resume_noirq() is just a resume() for devices
296 * that suspended with irqs off ... no overall powerup.
303 enable_nonboot_cpus();
306 platform_finish(platform_mode
);
308 dpm_resume_noirq(in_suspend
?
309 (error
? PMSG_RECOVER
: PMSG_THAW
) : PMSG_RESTORE
);
315 * hibernation_snapshot - quiesce devices and create the hibernation
317 * @platform_mode - if set, use the platform driver, if available, to
318 * prepare the platform firmware for the power transition.
320 * Must be called with pm_mutex held
323 int hibernation_snapshot(int platform_mode
)
327 error
= platform_begin(platform_mode
);
331 /* Preallocate image memory before shutting down devices. */
332 error
= hibernate_preallocate_memory();
337 error
= dpm_suspend_start(PMSG_FREEZE
);
339 goto Recover_platform
;
341 if (hibernation_test(TEST_DEVICES
))
342 goto Recover_platform
;
344 error
= create_image(platform_mode
);
345 /* Control returns here after successful restore */
348 /* We may need to release the preallocated image pages here. */
349 if (error
|| !in_suspend
)
352 dpm_resume_end(in_suspend
?
353 (error
? PMSG_RECOVER
: PMSG_THAW
) : PMSG_RESTORE
);
356 platform_end(platform_mode
);
360 platform_recover(platform_mode
);
365 * resume_target_kernel - prepare devices that need to be suspended with
366 * interrupts off, restore the contents of highmem that have not been
367 * restored yet from the image and run the low level code that will restore
368 * the remaining contents of memory and switch to the just restored target
372 static int resume_target_kernel(bool platform_mode
)
376 error
= dpm_suspend_noirq(PMSG_QUIESCE
);
378 printk(KERN_ERR
"PM: Some devices failed to power down, "
379 "aborting resume\n");
383 error
= platform_pre_restore(platform_mode
);
387 error
= disable_nonboot_cpus();
393 error
= sysdev_suspend(PMSG_QUIESCE
);
397 /* We'll ignore saved state, but this gets preempt count (etc) right */
398 save_processor_state();
399 error
= restore_highmem();
401 error
= swsusp_arch_resume();
403 * The code below is only ever reached in case of a failure.
404 * Otherwise execution continues at place where
405 * swsusp_arch_suspend() was called
408 /* This call to restore_highmem() undos the previous one */
412 * The only reason why swsusp_arch_resume() can fail is memory being
413 * very tight, so we have to free it as soon as we can to avoid
414 * subsequent failures
417 restore_processor_state();
418 touch_softlockup_watchdog();
426 enable_nonboot_cpus();
429 platform_restore_cleanup(platform_mode
);
431 dpm_resume_noirq(PMSG_RECOVER
);
437 * hibernation_restore - quiesce devices and restore the hibernation
438 * snapshot image. If successful, control returns in hibernation_snaphot()
439 * @platform_mode - if set, use the platform driver, if available, to
440 * prepare the platform firmware for the transition.
442 * Must be called with pm_mutex held
445 int hibernation_restore(int platform_mode
)
449 pm_prepare_console();
451 error
= dpm_suspend_start(PMSG_QUIESCE
);
453 error
= resume_target_kernel(platform_mode
);
454 dpm_resume_end(PMSG_RECOVER
);
457 pm_restore_console();
462 * hibernation_platform_enter - enter the hibernation state using the
463 * platform driver (if available)
466 int hibernation_platform_enter(void)
470 if (!hibernation_ops
)
474 * We have cancelled the power transition by running
475 * hibernation_ops->finish() before saving the image, so we should let
476 * the firmware know that we're going to enter the sleep state after all
478 error
= hibernation_ops
->begin();
482 entering_platform_hibernation
= true;
484 error
= dpm_suspend_start(PMSG_HIBERNATE
);
486 if (hibernation_ops
->recover
)
487 hibernation_ops
->recover();
491 error
= dpm_suspend_noirq(PMSG_HIBERNATE
);
495 error
= hibernation_ops
->prepare();
497 goto Platform_finish
;
499 error
= disable_nonboot_cpus();
501 goto Platform_finish
;
504 sysdev_suspend(PMSG_HIBERNATE
);
505 hibernation_ops
->enter();
506 /* We should never get here */
510 * We don't need to reenable the nonboot CPUs or resume consoles, since
511 * the system is going to be halted anyway.
514 hibernation_ops
->finish();
516 dpm_suspend_noirq(PMSG_RESTORE
);
519 entering_platform_hibernation
= false;
520 dpm_resume_end(PMSG_RESTORE
);
524 hibernation_ops
->end();
530 * power_down - Shut the machine down for hibernation.
532 * Use the platform driver, if configured so; otherwise try
533 * to power off or reboot.
536 static void power_down(void)
538 switch (hibernation_mode
) {
539 case HIBERNATION_TEST
:
540 case HIBERNATION_TESTPROC
:
542 case HIBERNATION_REBOOT
:
543 kernel_restart(NULL
);
545 case HIBERNATION_PLATFORM
:
546 hibernation_platform_enter();
547 case HIBERNATION_SHUTDOWN
:
553 * Valid image is on the disk, if we continue we risk serious data
554 * corruption after resume.
556 printk(KERN_CRIT
"PM: Please power down manually\n");
560 static int prepare_processes(void)
564 if (freeze_processes()) {
572 * hibernate - The granpappy of the built-in hibernation management
579 mutex_lock(&pm_mutex
);
580 /* The snapshot device should not be opened while we're running */
581 if (!atomic_add_unless(&snapshot_device_available
, -1, 0)) {
586 pm_prepare_console();
587 error
= pm_notifier_call_chain(PM_HIBERNATION_PREPARE
);
591 error
= usermodehelper_disable();
595 /* Allocate memory management structures */
596 error
= create_basic_memory_bitmaps();
600 printk(KERN_INFO
"PM: Syncing filesystems ... ");
604 error
= prepare_processes();
608 if (hibernation_test(TEST_FREEZER
))
611 if (hibernation_testmode(HIBERNATION_TESTPROC
))
614 error
= hibernation_snapshot(hibernation_mode
== HIBERNATION_PLATFORM
);
619 unsigned int flags
= 0;
621 if (hibernation_mode
== HIBERNATION_PLATFORM
)
622 flags
|= SF_PLATFORM_MODE
;
623 pr_debug("PM: writing image.\n");
624 error
= swsusp_write(flags
);
629 pr_debug("PM: Image restored successfully.\n");
635 free_basic_memory_bitmaps();
636 usermodehelper_enable();
638 pm_notifier_call_chain(PM_POST_HIBERNATION
);
639 pm_restore_console();
640 atomic_inc(&snapshot_device_available
);
642 mutex_unlock(&pm_mutex
);
648 * software_resume - Resume from a saved image.
650 * Called as a late_initcall (so all devices are discovered and
651 * initialized), we call swsusp to see if we have a saved image or not.
652 * If so, we quiesce devices, the restore the saved image. We will
653 * return above (in hibernate() ) if everything goes well.
654 * Otherwise, we fail gracefully and return to the normally
659 static int software_resume(void)
665 * If the user said "noresume".. bail out early.
671 * name_to_dev_t() below takes a sysfs buffer mutex when sysfs
672 * is configured into the kernel. Since the regular hibernate
673 * trigger path is via sysfs which takes a buffer mutex before
674 * calling hibernate functions (which take pm_mutex) this can
675 * cause lockdep to complain about a possible ABBA deadlock
676 * which cannot happen since we're in the boot code here and
677 * sysfs can't be invoked yet. Therefore, we use a subclass
678 * here to avoid lockdep complaining.
680 mutex_lock_nested(&pm_mutex
, SINGLE_DEPTH_NESTING
);
682 if (swsusp_resume_device
)
685 if (!strlen(resume_file
)) {
690 pr_debug("PM: Checking image partition %s\n", resume_file
);
692 /* Check if the device is there */
693 swsusp_resume_device
= name_to_dev_t(resume_file
);
694 if (!swsusp_resume_device
) {
696 * Some device discovery might still be in progress; we need
697 * to wait for this to finish.
699 wait_for_device_probe();
701 * We can't depend on SCSI devices being available after loading
702 * one of their modules until scsi_complete_async_scans() is
703 * called and the resume device usually is a SCSI one.
705 scsi_complete_async_scans();
707 swsusp_resume_device
= name_to_dev_t(resume_file
);
708 if (!swsusp_resume_device
) {
715 pr_debug("PM: Resume from partition %d:%d\n",
716 MAJOR(swsusp_resume_device
), MINOR(swsusp_resume_device
));
718 pr_debug("PM: Checking hibernation image.\n");
719 error
= swsusp_check();
723 /* The snapshot device should not be opened while we're running */
724 if (!atomic_add_unless(&snapshot_device_available
, -1, 0)) {
726 swsusp_close(FMODE_READ
);
730 pm_prepare_console();
731 error
= pm_notifier_call_chain(PM_RESTORE_PREPARE
);
735 error
= usermodehelper_disable();
739 error
= create_basic_memory_bitmaps();
743 pr_debug("PM: Preparing processes for restore.\n");
744 error
= prepare_processes();
746 swsusp_close(FMODE_READ
);
750 pr_debug("PM: Reading hibernation image.\n");
752 error
= swsusp_read(&flags
);
753 swsusp_close(FMODE_READ
);
755 hibernation_restore(flags
& SF_PLATFORM_MODE
);
757 printk(KERN_ERR
"PM: Restore failed, recovering.\n");
761 free_basic_memory_bitmaps();
762 usermodehelper_enable();
764 pm_notifier_call_chain(PM_POST_RESTORE
);
765 pm_restore_console();
766 atomic_inc(&snapshot_device_available
);
767 /* For success case, the suspend path will release the lock */
769 mutex_unlock(&pm_mutex
);
770 pr_debug("PM: Resume from disk failed.\n");
773 swsusp_close(FMODE_READ
);
777 late_initcall(software_resume
);
780 static const char * const hibernation_modes
[] = {
781 [HIBERNATION_PLATFORM
] = "platform",
782 [HIBERNATION_SHUTDOWN
] = "shutdown",
783 [HIBERNATION_REBOOT
] = "reboot",
784 [HIBERNATION_TEST
] = "test",
785 [HIBERNATION_TESTPROC
] = "testproc",
789 * disk - Control hibernation mode
791 * Suspend-to-disk can be handled in several ways. We have a few options
792 * for putting the system to sleep - using the platform driver (e.g. ACPI
793 * or other hibernation_ops), powering off the system or rebooting the
794 * system (for testing) as well as the two test modes.
796 * The system can support 'platform', and that is known a priori (and
797 * encoded by the presence of hibernation_ops). However, the user may
798 * choose 'shutdown' or 'reboot' as alternatives, as well as one fo the
799 * test modes, 'test' or 'testproc'.
801 * show() will display what the mode is currently set to.
802 * store() will accept one of
810 * It will only change to 'platform' if the system
811 * supports it (as determined by having hibernation_ops).
814 static ssize_t
disk_show(struct kobject
*kobj
, struct kobj_attribute
*attr
,
820 for (i
= HIBERNATION_FIRST
; i
<= HIBERNATION_MAX
; i
++) {
821 if (!hibernation_modes
[i
])
824 case HIBERNATION_SHUTDOWN
:
825 case HIBERNATION_REBOOT
:
826 case HIBERNATION_TEST
:
827 case HIBERNATION_TESTPROC
:
829 case HIBERNATION_PLATFORM
:
832 /* not a valid mode, continue with loop */
835 if (i
== hibernation_mode
)
836 buf
+= sprintf(buf
, "[%s] ", hibernation_modes
[i
]);
838 buf
+= sprintf(buf
, "%s ", hibernation_modes
[i
]);
840 buf
+= sprintf(buf
, "\n");
845 static ssize_t
disk_store(struct kobject
*kobj
, struct kobj_attribute
*attr
,
846 const char *buf
, size_t n
)
852 int mode
= HIBERNATION_INVALID
;
854 p
= memchr(buf
, '\n', n
);
855 len
= p
? p
- buf
: n
;
857 mutex_lock(&pm_mutex
);
858 for (i
= HIBERNATION_FIRST
; i
<= HIBERNATION_MAX
; i
++) {
859 if (len
== strlen(hibernation_modes
[i
])
860 && !strncmp(buf
, hibernation_modes
[i
], len
)) {
865 if (mode
!= HIBERNATION_INVALID
) {
867 case HIBERNATION_SHUTDOWN
:
868 case HIBERNATION_REBOOT
:
869 case HIBERNATION_TEST
:
870 case HIBERNATION_TESTPROC
:
871 hibernation_mode
= mode
;
873 case HIBERNATION_PLATFORM
:
875 hibernation_mode
= mode
;
883 pr_debug("PM: Hibernation mode set to '%s'\n",
884 hibernation_modes
[mode
]);
885 mutex_unlock(&pm_mutex
);
886 return error
? error
: n
;
891 static ssize_t
resume_show(struct kobject
*kobj
, struct kobj_attribute
*attr
,
894 return sprintf(buf
,"%d:%d\n", MAJOR(swsusp_resume_device
),
895 MINOR(swsusp_resume_device
));
898 static ssize_t
resume_store(struct kobject
*kobj
, struct kobj_attribute
*attr
,
899 const char *buf
, size_t n
)
901 unsigned int maj
, min
;
905 if (sscanf(buf
, "%u:%u", &maj
, &min
) != 2)
908 res
= MKDEV(maj
,min
);
909 if (maj
!= MAJOR(res
) || min
!= MINOR(res
))
912 mutex_lock(&pm_mutex
);
913 swsusp_resume_device
= res
;
914 mutex_unlock(&pm_mutex
);
915 printk(KERN_INFO
"PM: Starting manual resume from disk\n");
925 static ssize_t
image_size_show(struct kobject
*kobj
, struct kobj_attribute
*attr
,
928 return sprintf(buf
, "%lu\n", image_size
);
931 static ssize_t
image_size_store(struct kobject
*kobj
, struct kobj_attribute
*attr
,
932 const char *buf
, size_t n
)
936 if (sscanf(buf
, "%lu", &size
) == 1) {
944 power_attr(image_size
);
946 static struct attribute
* g
[] = {
949 &image_size_attr
.attr
,
954 static struct attribute_group attr_group
= {
959 static int __init
pm_disk_init(void)
961 return sysfs_create_group(power_kobj
, &attr_group
);
964 core_initcall(pm_disk_init
);
967 static int __init
resume_setup(char *str
)
972 strncpy( resume_file
, str
, 255 );
976 static int __init
resume_offset_setup(char *str
)
978 unsigned long long offset
;
983 if (sscanf(str
, "%llu", &offset
) == 1)
984 swsusp_resume_block
= offset
;
989 static int __init
noresume_setup(char *str
)
995 __setup("noresume", noresume_setup
);
996 __setup("resume_offset=", resume_offset_setup
);
997 __setup("resume=", resume_setup
);