ftrace: disable tracing for hibernation
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / kernel / power / disk.c
blobbbd85c60f7419f5fca1cbf1d0b5d6e6aad37f625
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>
24 #include <linux/ftrace.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, ftrace_save;
261 /* Free memory before shutting down devices. */
262 error = swsusp_shrink_memory();
263 if (error)
264 return error;
266 error = platform_begin(platform_mode);
267 if (error)
268 goto Close;
270 suspend_console();
271 ftrace_save = __ftrace_enabled_save();
272 error = device_suspend(PMSG_FREEZE);
273 if (error)
274 goto Recover_platform;
276 if (hibernation_test(TEST_DEVICES))
277 goto Recover_platform;
279 error = platform_pre_snapshot(platform_mode);
280 if (error || hibernation_test(TEST_PLATFORM))
281 goto Finish;
283 error = disable_nonboot_cpus();
284 if (!error) {
285 if (hibernation_test(TEST_CPUS))
286 goto Enable_cpus;
288 if (hibernation_testmode(HIBERNATION_TEST))
289 goto Enable_cpus;
291 error = create_image(platform_mode);
292 /* Control returns here after successful restore */
294 Enable_cpus:
295 enable_nonboot_cpus();
296 Finish:
297 platform_finish(platform_mode);
298 Resume_devices:
299 device_resume(in_suspend ?
300 (error ? PMSG_RECOVER : PMSG_THAW) : PMSG_RESTORE);
301 __ftrace_enabled_restore(ftrace_save);
302 resume_console();
303 Close:
304 platform_end(platform_mode);
305 return error;
307 Recover_platform:
308 platform_recover(platform_mode);
309 goto Resume_devices;
313 * resume_target_kernel - prepare devices that need to be suspended with
314 * interrupts off, restore the contents of highmem that have not been
315 * restored yet from the image and run the low level code that will restore
316 * the remaining contents of memory and switch to the just restored target
317 * kernel.
320 static int resume_target_kernel(void)
322 int error;
324 device_pm_lock();
325 local_irq_disable();
326 error = device_power_down(PMSG_QUIESCE);
327 if (error) {
328 printk(KERN_ERR "PM: Some devices failed to power down, "
329 "aborting resume\n");
330 goto Enable_irqs;
332 /* We'll ignore saved state, but this gets preempt count (etc) right */
333 save_processor_state();
334 error = restore_highmem();
335 if (!error) {
336 error = swsusp_arch_resume();
338 * The code below is only ever reached in case of a failure.
339 * Otherwise execution continues at place where
340 * swsusp_arch_suspend() was called
342 BUG_ON(!error);
343 /* This call to restore_highmem() undos the previous one */
344 restore_highmem();
347 * The only reason why swsusp_arch_resume() can fail is memory being
348 * very tight, so we have to free it as soon as we can to avoid
349 * subsequent failures
351 swsusp_free();
352 restore_processor_state();
353 touch_softlockup_watchdog();
354 device_power_up(PMSG_RECOVER);
355 Enable_irqs:
356 local_irq_enable();
357 device_pm_unlock();
358 return error;
362 * hibernation_restore - quiesce devices and restore the hibernation
363 * snapshot image. If successful, control returns in hibernation_snaphot()
364 * @platform_mode - if set, use the platform driver, if available, to
365 * prepare the platform frimware for the transition.
367 * Must be called with pm_mutex held
370 int hibernation_restore(int platform_mode)
372 int error, ftrace_save;
374 pm_prepare_console();
375 suspend_console();
376 ftrace_save = __ftrace_enabled_save();
377 error = device_suspend(PMSG_QUIESCE);
378 if (error)
379 goto Finish;
381 error = platform_pre_restore(platform_mode);
382 if (!error) {
383 error = disable_nonboot_cpus();
384 if (!error)
385 error = resume_target_kernel();
386 enable_nonboot_cpus();
388 platform_restore_cleanup(platform_mode);
389 device_resume(PMSG_RECOVER);
390 Finish:
391 __ftrace_enabled_restore(ftrace_save);
392 resume_console();
393 pm_restore_console();
394 return error;
398 * hibernation_platform_enter - enter the hibernation state using the
399 * platform driver (if available)
402 int hibernation_platform_enter(void)
404 int error, ftrace_save;
406 if (!hibernation_ops)
407 return -ENOSYS;
410 * We have cancelled the power transition by running
411 * hibernation_ops->finish() before saving the image, so we should let
412 * the firmware know that we're going to enter the sleep state after all
414 error = hibernation_ops->begin();
415 if (error)
416 goto Close;
418 suspend_console();
419 ftrace_save = __ftrace_enabled_save();
420 error = device_suspend(PMSG_HIBERNATE);
421 if (error) {
422 if (hibernation_ops->recover)
423 hibernation_ops->recover();
424 goto Resume_devices;
427 error = hibernation_ops->prepare();
428 if (error)
429 goto Resume_devices;
431 error = disable_nonboot_cpus();
432 if (error)
433 goto Finish;
435 device_pm_lock();
436 local_irq_disable();
437 error = device_power_down(PMSG_HIBERNATE);
438 if (!error) {
439 hibernation_ops->enter();
440 /* We should never get here */
441 while (1);
443 local_irq_enable();
444 device_pm_unlock();
447 * We don't need to reenable the nonboot CPUs or resume consoles, since
448 * the system is going to be halted anyway.
450 Finish:
451 hibernation_ops->finish();
452 Resume_devices:
453 device_resume(PMSG_RESTORE);
454 __ftrace_enabled_restore(ftrace_save);
455 resume_console();
456 Close:
457 hibernation_ops->end();
458 return error;
462 * power_down - Shut the machine down for hibernation.
464 * Use the platform driver, if configured so; otherwise try
465 * to power off or reboot.
468 static void power_down(void)
470 switch (hibernation_mode) {
471 case HIBERNATION_TEST:
472 case HIBERNATION_TESTPROC:
473 break;
474 case HIBERNATION_REBOOT:
475 kernel_restart(NULL);
476 break;
477 case HIBERNATION_PLATFORM:
478 hibernation_platform_enter();
479 case HIBERNATION_SHUTDOWN:
480 kernel_power_off();
481 break;
483 kernel_halt();
485 * Valid image is on the disk, if we continue we risk serious data
486 * corruption after resume.
488 printk(KERN_CRIT "PM: Please power down manually\n");
489 while(1);
492 static int prepare_processes(void)
494 int error = 0;
496 if (freeze_processes()) {
497 error = -EBUSY;
498 thaw_processes();
500 return error;
504 * hibernate - The granpappy of the built-in hibernation management
507 int hibernate(void)
509 int error;
511 mutex_lock(&pm_mutex);
512 /* The snapshot device should not be opened while we're running */
513 if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
514 error = -EBUSY;
515 goto Unlock;
518 pm_prepare_console();
519 error = pm_notifier_call_chain(PM_HIBERNATION_PREPARE);
520 if (error)
521 goto Exit;
523 /* Allocate memory management structures */
524 error = create_basic_memory_bitmaps();
525 if (error)
526 goto Exit;
528 printk(KERN_INFO "PM: Syncing filesystems ... ");
529 sys_sync();
530 printk("done.\n");
532 error = prepare_processes();
533 if (error)
534 goto Finish;
536 if (hibernation_test(TEST_FREEZER))
537 goto Thaw;
539 if (hibernation_testmode(HIBERNATION_TESTPROC))
540 goto Thaw;
542 error = hibernation_snapshot(hibernation_mode == HIBERNATION_PLATFORM);
543 if (in_suspend && !error) {
544 unsigned int flags = 0;
546 if (hibernation_mode == HIBERNATION_PLATFORM)
547 flags |= SF_PLATFORM_MODE;
548 pr_debug("PM: writing image.\n");
549 error = swsusp_write(flags);
550 swsusp_free();
551 if (!error)
552 power_down();
553 } else {
554 pr_debug("PM: Image restored successfully.\n");
555 swsusp_free();
557 Thaw:
558 thaw_processes();
559 Finish:
560 free_basic_memory_bitmaps();
561 Exit:
562 pm_notifier_call_chain(PM_POST_HIBERNATION);
563 pm_restore_console();
564 atomic_inc(&snapshot_device_available);
565 Unlock:
566 mutex_unlock(&pm_mutex);
567 return error;
572 * software_resume - Resume from a saved image.
574 * Called as a late_initcall (so all devices are discovered and
575 * initialized), we call swsusp to see if we have a saved image or not.
576 * If so, we quiesce devices, the restore the saved image. We will
577 * return above (in hibernate() ) if everything goes well.
578 * Otherwise, we fail gracefully and return to the normally
579 * scheduled program.
583 static int software_resume(void)
585 int error;
586 unsigned int flags;
589 * name_to_dev_t() below takes a sysfs buffer mutex when sysfs
590 * is configured into the kernel. Since the regular hibernate
591 * trigger path is via sysfs which takes a buffer mutex before
592 * calling hibernate functions (which take pm_mutex) this can
593 * cause lockdep to complain about a possible ABBA deadlock
594 * which cannot happen since we're in the boot code here and
595 * sysfs can't be invoked yet. Therefore, we use a subclass
596 * here to avoid lockdep complaining.
598 mutex_lock_nested(&pm_mutex, SINGLE_DEPTH_NESTING);
599 if (!swsusp_resume_device) {
600 if (!strlen(resume_file)) {
601 mutex_unlock(&pm_mutex);
602 return -ENOENT;
604 swsusp_resume_device = name_to_dev_t(resume_file);
605 pr_debug("PM: Resume from partition %s\n", resume_file);
606 } else {
607 pr_debug("PM: Resume from partition %d:%d\n",
608 MAJOR(swsusp_resume_device),
609 MINOR(swsusp_resume_device));
612 if (noresume) {
614 * FIXME: If noresume is specified, we need to find the
615 * partition and reset it back to normal swap space.
617 mutex_unlock(&pm_mutex);
618 return 0;
621 pr_debug("PM: Checking hibernation image.\n");
622 error = swsusp_check();
623 if (error)
624 goto Unlock;
626 /* The snapshot device should not be opened while we're running */
627 if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
628 error = -EBUSY;
629 goto Unlock;
632 pm_prepare_console();
633 error = pm_notifier_call_chain(PM_RESTORE_PREPARE);
634 if (error)
635 goto Finish;
637 error = create_basic_memory_bitmaps();
638 if (error)
639 goto Finish;
641 pr_debug("PM: Preparing processes for restore.\n");
642 error = prepare_processes();
643 if (error) {
644 swsusp_close();
645 goto Done;
648 pr_debug("PM: Reading hibernation image.\n");
650 error = swsusp_read(&flags);
651 if (!error)
652 hibernation_restore(flags & SF_PLATFORM_MODE);
654 printk(KERN_ERR "PM: Restore failed, recovering.\n");
655 swsusp_free();
656 thaw_processes();
657 Done:
658 free_basic_memory_bitmaps();
659 Finish:
660 pm_notifier_call_chain(PM_POST_RESTORE);
661 pm_restore_console();
662 atomic_inc(&snapshot_device_available);
663 /* For success case, the suspend path will release the lock */
664 Unlock:
665 mutex_unlock(&pm_mutex);
666 pr_debug("PM: Resume from disk failed.\n");
667 return error;
670 late_initcall(software_resume);
673 static const char * const hibernation_modes[] = {
674 [HIBERNATION_PLATFORM] = "platform",
675 [HIBERNATION_SHUTDOWN] = "shutdown",
676 [HIBERNATION_REBOOT] = "reboot",
677 [HIBERNATION_TEST] = "test",
678 [HIBERNATION_TESTPROC] = "testproc",
682 * disk - Control hibernation mode
684 * Suspend-to-disk can be handled in several ways. We have a few options
685 * for putting the system to sleep - using the platform driver (e.g. ACPI
686 * or other hibernation_ops), powering off the system or rebooting the
687 * system (for testing) as well as the two test modes.
689 * The system can support 'platform', and that is known a priori (and
690 * encoded by the presence of hibernation_ops). However, the user may
691 * choose 'shutdown' or 'reboot' as alternatives, as well as one fo the
692 * test modes, 'test' or 'testproc'.
694 * show() will display what the mode is currently set to.
695 * store() will accept one of
697 * 'platform'
698 * 'shutdown'
699 * 'reboot'
700 * 'test'
701 * 'testproc'
703 * It will only change to 'platform' if the system
704 * supports it (as determined by having hibernation_ops).
707 static ssize_t disk_show(struct kobject *kobj, struct kobj_attribute *attr,
708 char *buf)
710 int i;
711 char *start = buf;
713 for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
714 if (!hibernation_modes[i])
715 continue;
716 switch (i) {
717 case HIBERNATION_SHUTDOWN:
718 case HIBERNATION_REBOOT:
719 case HIBERNATION_TEST:
720 case HIBERNATION_TESTPROC:
721 break;
722 case HIBERNATION_PLATFORM:
723 if (hibernation_ops)
724 break;
725 /* not a valid mode, continue with loop */
726 continue;
728 if (i == hibernation_mode)
729 buf += sprintf(buf, "[%s] ", hibernation_modes[i]);
730 else
731 buf += sprintf(buf, "%s ", hibernation_modes[i]);
733 buf += sprintf(buf, "\n");
734 return buf-start;
738 static ssize_t disk_store(struct kobject *kobj, struct kobj_attribute *attr,
739 const char *buf, size_t n)
741 int error = 0;
742 int i;
743 int len;
744 char *p;
745 int mode = HIBERNATION_INVALID;
747 p = memchr(buf, '\n', n);
748 len = p ? p - buf : n;
750 mutex_lock(&pm_mutex);
751 for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
752 if (len == strlen(hibernation_modes[i])
753 && !strncmp(buf, hibernation_modes[i], len)) {
754 mode = i;
755 break;
758 if (mode != HIBERNATION_INVALID) {
759 switch (mode) {
760 case HIBERNATION_SHUTDOWN:
761 case HIBERNATION_REBOOT:
762 case HIBERNATION_TEST:
763 case HIBERNATION_TESTPROC:
764 hibernation_mode = mode;
765 break;
766 case HIBERNATION_PLATFORM:
767 if (hibernation_ops)
768 hibernation_mode = mode;
769 else
770 error = -EINVAL;
772 } else
773 error = -EINVAL;
775 if (!error)
776 pr_debug("PM: Hibernation mode set to '%s'\n",
777 hibernation_modes[mode]);
778 mutex_unlock(&pm_mutex);
779 return error ? error : n;
782 power_attr(disk);
784 static ssize_t resume_show(struct kobject *kobj, struct kobj_attribute *attr,
785 char *buf)
787 return sprintf(buf,"%d:%d\n", MAJOR(swsusp_resume_device),
788 MINOR(swsusp_resume_device));
791 static ssize_t resume_store(struct kobject *kobj, struct kobj_attribute *attr,
792 const char *buf, size_t n)
794 unsigned int maj, min;
795 dev_t res;
796 int ret = -EINVAL;
798 if (sscanf(buf, "%u:%u", &maj, &min) != 2)
799 goto out;
801 res = MKDEV(maj,min);
802 if (maj != MAJOR(res) || min != MINOR(res))
803 goto out;
805 mutex_lock(&pm_mutex);
806 swsusp_resume_device = res;
807 mutex_unlock(&pm_mutex);
808 printk(KERN_INFO "PM: Starting manual resume from disk\n");
809 noresume = 0;
810 software_resume();
811 ret = n;
812 out:
813 return ret;
816 power_attr(resume);
818 static ssize_t image_size_show(struct kobject *kobj, struct kobj_attribute *attr,
819 char *buf)
821 return sprintf(buf, "%lu\n", image_size);
824 static ssize_t image_size_store(struct kobject *kobj, struct kobj_attribute *attr,
825 const char *buf, size_t n)
827 unsigned long size;
829 if (sscanf(buf, "%lu", &size) == 1) {
830 image_size = size;
831 return n;
834 return -EINVAL;
837 power_attr(image_size);
839 static struct attribute * g[] = {
840 &disk_attr.attr,
841 &resume_attr.attr,
842 &image_size_attr.attr,
843 NULL,
847 static struct attribute_group attr_group = {
848 .attrs = g,
852 static int __init pm_disk_init(void)
854 return sysfs_create_group(power_kobj, &attr_group);
857 core_initcall(pm_disk_init);
860 static int __init resume_setup(char *str)
862 if (noresume)
863 return 1;
865 strncpy( resume_file, str, 255 );
866 return 1;
869 static int __init resume_offset_setup(char *str)
871 unsigned long long offset;
873 if (noresume)
874 return 1;
876 if (sscanf(str, "%llu", &offset) == 1)
877 swsusp_resume_block = offset;
879 return 1;
882 static int __init noresume_setup(char *str)
884 noresume = 1;
885 return 1;
888 __setup("noresume", noresume_setup);
889 __setup("resume_offset=", resume_offset_setup);
890 __setup("resume=", resume_setup);