USB: Obscure Maxon BP3-USB Device Support 16d8:6280 for option driver
[linux-2.6/s3c2410-cpufreq.git] / kernel / power / disk.c
blob14a656cdc6523bf64d9c5b64c3a628529b56bab5
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 static 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 static struct platform_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 platform_hibernation_ops *ops)
57 if (ops && !(ops->begin && ops->end && ops->pre_snapshot
58 && ops->prepare && ops->finish && ops->enter && ops->pre_restore
59 && ops->restore_cleanup)) {
60 WARN_ON(1);
61 return;
63 mutex_lock(&pm_mutex);
64 hibernation_ops = ops;
65 if (ops)
66 hibernation_mode = HIBERNATION_PLATFORM;
67 else if (hibernation_mode == HIBERNATION_PLATFORM)
68 hibernation_mode = HIBERNATION_SHUTDOWN;
70 mutex_unlock(&pm_mutex);
73 #ifdef CONFIG_PM_DEBUG
74 static void hibernation_debug_sleep(void)
76 printk(KERN_INFO "hibernation debug: Waiting for 5 seconds.\n");
77 mdelay(5000);
80 static int hibernation_testmode(int mode)
82 if (hibernation_mode == mode) {
83 hibernation_debug_sleep();
84 return 1;
86 return 0;
89 static int hibernation_test(int level)
91 if (pm_test_level == level) {
92 hibernation_debug_sleep();
93 return 1;
95 return 0;
97 #else /* !CONFIG_PM_DEBUG */
98 static int hibernation_testmode(int mode) { return 0; }
99 static int hibernation_test(int level) { return 0; }
100 #endif /* !CONFIG_PM_DEBUG */
103 * platform_begin - tell the platform driver that we're starting
104 * hibernation
107 static int platform_begin(int platform_mode)
109 return (platform_mode && hibernation_ops) ?
110 hibernation_ops->begin() : 0;
114 * platform_end - tell the platform driver that we've entered the
115 * working state
118 static void platform_end(int platform_mode)
120 if (platform_mode && hibernation_ops)
121 hibernation_ops->end();
125 * platform_pre_snapshot - prepare the machine for hibernation using the
126 * platform driver if so configured and return an error code if it fails
129 static int platform_pre_snapshot(int platform_mode)
131 return (platform_mode && hibernation_ops) ?
132 hibernation_ops->pre_snapshot() : 0;
136 * platform_leave - prepare the machine for switching to the normal mode
137 * of operation using the platform driver (called with interrupts disabled)
140 static void platform_leave(int platform_mode)
142 if (platform_mode && hibernation_ops)
143 hibernation_ops->leave();
147 * platform_finish - switch the machine to the normal mode of operation
148 * using the platform driver (must be called after platform_prepare())
151 static void platform_finish(int platform_mode)
153 if (platform_mode && hibernation_ops)
154 hibernation_ops->finish();
158 * platform_pre_restore - prepare the platform for the restoration from a
159 * hibernation image. If the restore fails after this function has been
160 * called, platform_restore_cleanup() must be called.
163 static int platform_pre_restore(int platform_mode)
165 return (platform_mode && hibernation_ops) ?
166 hibernation_ops->pre_restore() : 0;
170 * platform_restore_cleanup - switch the platform to the normal mode of
171 * operation after a failing restore. If platform_pre_restore() has been
172 * called before the failing restore, this function must be called too,
173 * regardless of the result of platform_pre_restore().
176 static void platform_restore_cleanup(int platform_mode)
178 if (platform_mode && hibernation_ops)
179 hibernation_ops->restore_cleanup();
183 * create_image - freeze devices that need to be frozen with interrupts
184 * off, create the hibernation image and thaw those devices. Control
185 * reappears in this routine after a restore.
188 static int create_image(int platform_mode)
190 int error;
192 error = arch_prepare_suspend();
193 if (error)
194 return error;
196 local_irq_disable();
197 /* At this point, device_suspend() has been called, but *not*
198 * device_power_down(). We *must* call device_power_down() now.
199 * Otherwise, drivers for some devices (e.g. interrupt controllers)
200 * become desynchronized with the actual state of the hardware
201 * at resume time, and evil weirdness ensues.
203 error = device_power_down(PMSG_FREEZE);
204 if (error) {
205 printk(KERN_ERR "PM: Some devices failed to power down, "
206 "aborting hibernation\n");
207 goto Enable_irqs;
210 if (hibernation_test(TEST_CORE))
211 goto Power_up;
213 in_suspend = 1;
214 save_processor_state();
215 error = swsusp_arch_suspend();
216 if (error)
217 printk(KERN_ERR "PM: Error %d creating hibernation image\n",
218 error);
219 /* Restore control flow magically appears here */
220 restore_processor_state();
221 if (!in_suspend)
222 platform_leave(platform_mode);
223 Power_up:
224 /* NOTE: device_power_up() is just a resume() for devices
225 * that suspended with irqs off ... no overall powerup.
227 device_power_up();
228 Enable_irqs:
229 local_irq_enable();
230 return error;
234 * hibernation_snapshot - quiesce devices and create the hibernation
235 * snapshot image.
236 * @platform_mode - if set, use the platform driver, if available, to
237 * prepare the platform frimware for the power transition.
239 * Must be called with pm_mutex held
242 int hibernation_snapshot(int platform_mode)
244 int error;
246 /* Free memory before shutting down devices. */
247 error = swsusp_shrink_memory();
248 if (error)
249 return error;
251 error = platform_begin(platform_mode);
252 if (error)
253 goto Close;
255 suspend_console();
256 error = device_suspend(PMSG_FREEZE);
257 if (error)
258 goto Resume_console;
260 if (hibernation_test(TEST_DEVICES))
261 goto Resume_devices;
263 error = platform_pre_snapshot(platform_mode);
264 if (error || hibernation_test(TEST_PLATFORM))
265 goto Finish;
267 error = disable_nonboot_cpus();
268 if (!error) {
269 if (hibernation_test(TEST_CPUS))
270 goto Enable_cpus;
272 if (hibernation_testmode(HIBERNATION_TEST))
273 goto Enable_cpus;
275 error = create_image(platform_mode);
276 /* Control returns here after successful restore */
278 Enable_cpus:
279 enable_nonboot_cpus();
280 Finish:
281 platform_finish(platform_mode);
282 Resume_devices:
283 device_resume();
284 Resume_console:
285 resume_console();
286 Close:
287 platform_end(platform_mode);
288 return error;
292 * resume_target_kernel - prepare devices that need to be suspended with
293 * interrupts off, restore the contents of highmem that have not been
294 * restored yet from the image and run the low level code that will restore
295 * the remaining contents of memory and switch to the just restored target
296 * kernel.
299 static int resume_target_kernel(void)
301 int error;
303 local_irq_disable();
304 error = device_power_down(PMSG_PRETHAW);
305 if (error) {
306 printk(KERN_ERR "PM: Some devices failed to power down, "
307 "aborting resume\n");
308 goto Enable_irqs;
310 /* We'll ignore saved state, but this gets preempt count (etc) right */
311 save_processor_state();
312 error = restore_highmem();
313 if (!error) {
314 error = swsusp_arch_resume();
316 * The code below is only ever reached in case of a failure.
317 * Otherwise execution continues at place where
318 * swsusp_arch_suspend() was called
320 BUG_ON(!error);
321 /* This call to restore_highmem() undos the previous one */
322 restore_highmem();
325 * The only reason why swsusp_arch_resume() can fail is memory being
326 * very tight, so we have to free it as soon as we can to avoid
327 * subsequent failures
329 swsusp_free();
330 restore_processor_state();
331 touch_softlockup_watchdog();
332 device_power_up();
333 Enable_irqs:
334 local_irq_enable();
335 return error;
339 * hibernation_restore - quiesce devices and restore the hibernation
340 * snapshot image. If successful, control returns in hibernation_snaphot()
341 * @platform_mode - if set, use the platform driver, if available, to
342 * prepare the platform frimware for the transition.
344 * Must be called with pm_mutex held
347 int hibernation_restore(int platform_mode)
349 int error;
351 pm_prepare_console();
352 suspend_console();
353 error = device_suspend(PMSG_PRETHAW);
354 if (error)
355 goto Finish;
357 error = platform_pre_restore(platform_mode);
358 if (!error) {
359 error = disable_nonboot_cpus();
360 if (!error)
361 error = resume_target_kernel();
362 enable_nonboot_cpus();
364 platform_restore_cleanup(platform_mode);
365 device_resume();
366 Finish:
367 resume_console();
368 pm_restore_console();
369 return error;
373 * hibernation_platform_enter - enter the hibernation state using the
374 * platform driver (if available)
377 int hibernation_platform_enter(void)
379 int error;
381 if (!hibernation_ops)
382 return -ENOSYS;
385 * We have cancelled the power transition by running
386 * hibernation_ops->finish() before saving the image, so we should let
387 * the firmware know that we're going to enter the sleep state after all
389 error = hibernation_ops->begin();
390 if (error)
391 goto Close;
393 suspend_console();
394 error = device_suspend(PMSG_HIBERNATE);
395 if (error)
396 goto Resume_console;
398 error = hibernation_ops->prepare();
399 if (error)
400 goto Resume_devices;
402 error = disable_nonboot_cpus();
403 if (error)
404 goto Finish;
406 local_irq_disable();
407 error = device_power_down(PMSG_HIBERNATE);
408 if (!error) {
409 hibernation_ops->enter();
410 /* We should never get here */
411 while (1);
413 local_irq_enable();
416 * We don't need to reenable the nonboot CPUs or resume consoles, since
417 * the system is going to be halted anyway.
419 Finish:
420 hibernation_ops->finish();
421 Resume_devices:
422 device_resume();
423 Resume_console:
424 resume_console();
425 Close:
426 hibernation_ops->end();
427 return error;
431 * power_down - Shut the machine down for hibernation.
433 * Use the platform driver, if configured so; otherwise try
434 * to power off or reboot.
437 static void power_down(void)
439 switch (hibernation_mode) {
440 case HIBERNATION_TEST:
441 case HIBERNATION_TESTPROC:
442 break;
443 case HIBERNATION_REBOOT:
444 kernel_restart(NULL);
445 break;
446 case HIBERNATION_PLATFORM:
447 hibernation_platform_enter();
448 case HIBERNATION_SHUTDOWN:
449 kernel_power_off();
450 break;
452 kernel_halt();
454 * Valid image is on the disk, if we continue we risk serious data
455 * corruption after resume.
457 printk(KERN_CRIT "PM: Please power down manually\n");
458 while(1);
461 static int prepare_processes(void)
463 int error = 0;
465 if (freeze_processes()) {
466 error = -EBUSY;
467 thaw_processes();
469 return error;
473 * hibernate - The granpappy of the built-in hibernation management
476 int hibernate(void)
478 int error;
480 mutex_lock(&pm_mutex);
481 /* The snapshot device should not be opened while we're running */
482 if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
483 error = -EBUSY;
484 goto Unlock;
487 pm_prepare_console();
488 error = pm_notifier_call_chain(PM_HIBERNATION_PREPARE);
489 if (error)
490 goto Exit;
492 /* Allocate memory management structures */
493 error = create_basic_memory_bitmaps();
494 if (error)
495 goto Exit;
497 printk(KERN_INFO "PM: Syncing filesystems ... ");
498 sys_sync();
499 printk("done.\n");
501 error = prepare_processes();
502 if (error)
503 goto Finish;
505 if (hibernation_test(TEST_FREEZER))
506 goto Thaw;
508 if (hibernation_testmode(HIBERNATION_TESTPROC))
509 goto Thaw;
511 error = hibernation_snapshot(hibernation_mode == HIBERNATION_PLATFORM);
512 if (in_suspend && !error) {
513 unsigned int flags = 0;
515 if (hibernation_mode == HIBERNATION_PLATFORM)
516 flags |= SF_PLATFORM_MODE;
517 pr_debug("PM: writing image.\n");
518 error = swsusp_write(flags);
519 swsusp_free();
520 if (!error)
521 power_down();
522 } else {
523 pr_debug("PM: Image restored successfully.\n");
524 swsusp_free();
526 Thaw:
527 thaw_processes();
528 Finish:
529 free_basic_memory_bitmaps();
530 Exit:
531 pm_notifier_call_chain(PM_POST_HIBERNATION);
532 pm_restore_console();
533 atomic_inc(&snapshot_device_available);
534 Unlock:
535 mutex_unlock(&pm_mutex);
536 return error;
541 * software_resume - Resume from a saved image.
543 * Called as a late_initcall (so all devices are discovered and
544 * initialized), we call swsusp to see if we have a saved image or not.
545 * If so, we quiesce devices, the restore the saved image. We will
546 * return above (in hibernate() ) if everything goes well.
547 * Otherwise, we fail gracefully and return to the normally
548 * scheduled program.
552 static int software_resume(void)
554 int error;
555 unsigned int flags;
558 * name_to_dev_t() below takes a sysfs buffer mutex when sysfs
559 * is configured into the kernel. Since the regular hibernate
560 * trigger path is via sysfs which takes a buffer mutex before
561 * calling hibernate functions (which take pm_mutex) this can
562 * cause lockdep to complain about a possible ABBA deadlock
563 * which cannot happen since we're in the boot code here and
564 * sysfs can't be invoked yet. Therefore, we use a subclass
565 * here to avoid lockdep complaining.
567 mutex_lock_nested(&pm_mutex, SINGLE_DEPTH_NESTING);
568 if (!swsusp_resume_device) {
569 if (!strlen(resume_file)) {
570 mutex_unlock(&pm_mutex);
571 return -ENOENT;
573 swsusp_resume_device = name_to_dev_t(resume_file);
574 pr_debug("PM: Resume from partition %s\n", resume_file);
575 } else {
576 pr_debug("PM: Resume from partition %d:%d\n",
577 MAJOR(swsusp_resume_device),
578 MINOR(swsusp_resume_device));
581 if (noresume) {
583 * FIXME: If noresume is specified, we need to find the
584 * partition and reset it back to normal swap space.
586 mutex_unlock(&pm_mutex);
587 return 0;
590 pr_debug("PM: Checking hibernation image.\n");
591 error = swsusp_check();
592 if (error)
593 goto Unlock;
595 /* The snapshot device should not be opened while we're running */
596 if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
597 error = -EBUSY;
598 goto Unlock;
601 pm_prepare_console();
602 error = pm_notifier_call_chain(PM_RESTORE_PREPARE);
603 if (error)
604 goto Finish;
606 error = create_basic_memory_bitmaps();
607 if (error)
608 goto Finish;
610 pr_debug("PM: Preparing processes for restore.\n");
611 error = prepare_processes();
612 if (error) {
613 swsusp_close();
614 goto Done;
617 pr_debug("PM: Reading hibernation image.\n");
619 error = swsusp_read(&flags);
620 if (!error)
621 hibernation_restore(flags & SF_PLATFORM_MODE);
623 printk(KERN_ERR "PM: Restore failed, recovering.\n");
624 swsusp_free();
625 thaw_processes();
626 Done:
627 free_basic_memory_bitmaps();
628 Finish:
629 pm_notifier_call_chain(PM_POST_RESTORE);
630 pm_restore_console();
631 atomic_inc(&snapshot_device_available);
632 /* For success case, the suspend path will release the lock */
633 Unlock:
634 mutex_unlock(&pm_mutex);
635 pr_debug("PM: Resume from disk failed.\n");
636 return error;
639 late_initcall(software_resume);
642 static const char * const hibernation_modes[] = {
643 [HIBERNATION_PLATFORM] = "platform",
644 [HIBERNATION_SHUTDOWN] = "shutdown",
645 [HIBERNATION_REBOOT] = "reboot",
646 [HIBERNATION_TEST] = "test",
647 [HIBERNATION_TESTPROC] = "testproc",
651 * disk - Control hibernation mode
653 * Suspend-to-disk can be handled in several ways. We have a few options
654 * for putting the system to sleep - using the platform driver (e.g. ACPI
655 * or other hibernation_ops), powering off the system or rebooting the
656 * system (for testing) as well as the two test modes.
658 * The system can support 'platform', and that is known a priori (and
659 * encoded by the presence of hibernation_ops). However, the user may
660 * choose 'shutdown' or 'reboot' as alternatives, as well as one fo the
661 * test modes, 'test' or 'testproc'.
663 * show() will display what the mode is currently set to.
664 * store() will accept one of
666 * 'platform'
667 * 'shutdown'
668 * 'reboot'
669 * 'test'
670 * 'testproc'
672 * It will only change to 'platform' if the system
673 * supports it (as determined by having hibernation_ops).
676 static ssize_t disk_show(struct kobject *kobj, struct kobj_attribute *attr,
677 char *buf)
679 int i;
680 char *start = buf;
682 for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
683 if (!hibernation_modes[i])
684 continue;
685 switch (i) {
686 case HIBERNATION_SHUTDOWN:
687 case HIBERNATION_REBOOT:
688 case HIBERNATION_TEST:
689 case HIBERNATION_TESTPROC:
690 break;
691 case HIBERNATION_PLATFORM:
692 if (hibernation_ops)
693 break;
694 /* not a valid mode, continue with loop */
695 continue;
697 if (i == hibernation_mode)
698 buf += sprintf(buf, "[%s] ", hibernation_modes[i]);
699 else
700 buf += sprintf(buf, "%s ", hibernation_modes[i]);
702 buf += sprintf(buf, "\n");
703 return buf-start;
707 static ssize_t disk_store(struct kobject *kobj, struct kobj_attribute *attr,
708 const char *buf, size_t n)
710 int error = 0;
711 int i;
712 int len;
713 char *p;
714 int mode = HIBERNATION_INVALID;
716 p = memchr(buf, '\n', n);
717 len = p ? p - buf : n;
719 mutex_lock(&pm_mutex);
720 for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
721 if (len == strlen(hibernation_modes[i])
722 && !strncmp(buf, hibernation_modes[i], len)) {
723 mode = i;
724 break;
727 if (mode != HIBERNATION_INVALID) {
728 switch (mode) {
729 case HIBERNATION_SHUTDOWN:
730 case HIBERNATION_REBOOT:
731 case HIBERNATION_TEST:
732 case HIBERNATION_TESTPROC:
733 hibernation_mode = mode;
734 break;
735 case HIBERNATION_PLATFORM:
736 if (hibernation_ops)
737 hibernation_mode = mode;
738 else
739 error = -EINVAL;
741 } else
742 error = -EINVAL;
744 if (!error)
745 pr_debug("PM: Hibernation mode set to '%s'\n",
746 hibernation_modes[mode]);
747 mutex_unlock(&pm_mutex);
748 return error ? error : n;
751 power_attr(disk);
753 static ssize_t resume_show(struct kobject *kobj, struct kobj_attribute *attr,
754 char *buf)
756 return sprintf(buf,"%d:%d\n", MAJOR(swsusp_resume_device),
757 MINOR(swsusp_resume_device));
760 static ssize_t resume_store(struct kobject *kobj, struct kobj_attribute *attr,
761 const char *buf, size_t n)
763 unsigned int maj, min;
764 dev_t res;
765 int ret = -EINVAL;
767 if (sscanf(buf, "%u:%u", &maj, &min) != 2)
768 goto out;
770 res = MKDEV(maj,min);
771 if (maj != MAJOR(res) || min != MINOR(res))
772 goto out;
774 mutex_lock(&pm_mutex);
775 swsusp_resume_device = res;
776 mutex_unlock(&pm_mutex);
777 printk(KERN_INFO "PM: Starting manual resume from disk\n");
778 noresume = 0;
779 software_resume();
780 ret = n;
781 out:
782 return ret;
785 power_attr(resume);
787 static ssize_t image_size_show(struct kobject *kobj, struct kobj_attribute *attr,
788 char *buf)
790 return sprintf(buf, "%lu\n", image_size);
793 static ssize_t image_size_store(struct kobject *kobj, struct kobj_attribute *attr,
794 const char *buf, size_t n)
796 unsigned long size;
798 if (sscanf(buf, "%lu", &size) == 1) {
799 image_size = size;
800 return n;
803 return -EINVAL;
806 power_attr(image_size);
808 static struct attribute * g[] = {
809 &disk_attr.attr,
810 &resume_attr.attr,
811 &image_size_attr.attr,
812 NULL,
816 static struct attribute_group attr_group = {
817 .attrs = g,
821 static int __init pm_disk_init(void)
823 return sysfs_create_group(power_kobj, &attr_group);
826 core_initcall(pm_disk_init);
829 static int __init resume_setup(char *str)
831 if (noresume)
832 return 1;
834 strncpy( resume_file, str, 255 );
835 return 1;
838 static int __init resume_offset_setup(char *str)
840 unsigned long long offset;
842 if (noresume)
843 return 1;
845 if (sscanf(str, "%llu", &offset) == 1)
846 swsusp_resume_block = offset;
848 return 1;
851 static int __init noresume_setup(char *str)
853 noresume = 1;
854 return 1;
857 __setup("noresume", noresume_setup);
858 __setup("resume_offset=", resume_offset_setup);
859 __setup("resume=", resume_setup);