]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - kernel/power/disk.c
bbd85c60f7419f5fca1cbf1d0b5d6e6aad37f625
[linux-2.6-omap-h63xx.git] / kernel / power / disk.c
1 /*
2  * kernel/power/disk.c - Suspend-to-disk support.
3  *
4  * Copyright (c) 2003 Patrick Mochel
5  * Copyright (c) 2003 Open Source Development Lab
6  * Copyright (c) 2004 Pavel Machek <pavel@suse.cz>
7  *
8  * This file is released under the GPLv2.
9  *
10  */
11
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>
25
26 #include "power.h"
27
28
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;
33
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
43 };
44 #define HIBERNATION_MAX (__HIBERNATION_AFTER_LAST-1)
45 #define HIBERNATION_FIRST (HIBERNATION_INVALID + 1)
46
47 static int hibernation_mode = HIBERNATION_SHUTDOWN;
48
49 static struct platform_hibernation_ops *hibernation_ops;
50
51 /**
52  * hibernation_set_ops - set the global hibernate operations
53  * @ops: the hibernation operations to use in subsequent hibernation transitions
54  */
55
56 void hibernation_set_ops(struct platform_hibernation_ops *ops)
57 {
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;
63         }
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;
70
71         mutex_unlock(&pm_mutex);
72 }
73
74 #ifdef CONFIG_PM_DEBUG
75 static void hibernation_debug_sleep(void)
76 {
77         printk(KERN_INFO "hibernation debug: Waiting for 5 seconds.\n");
78         mdelay(5000);
79 }
80
81 static int hibernation_testmode(int mode)
82 {
83         if (hibernation_mode == mode) {
84                 hibernation_debug_sleep();
85                 return 1;
86         }
87         return 0;
88 }
89
90 static int hibernation_test(int level)
91 {
92         if (pm_test_level == level) {
93                 hibernation_debug_sleep();
94                 return 1;
95         }
96         return 0;
97 }
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 */
102
103 /**
104  *      platform_begin - tell the platform driver that we're starting
105  *      hibernation
106  */
107
108 static int platform_begin(int platform_mode)
109 {
110         return (platform_mode && hibernation_ops) ?
111                 hibernation_ops->begin() : 0;
112 }
113
114 /**
115  *      platform_end - tell the platform driver that we've entered the
116  *      working state
117  */
118
119 static void platform_end(int platform_mode)
120 {
121         if (platform_mode && hibernation_ops)
122                 hibernation_ops->end();
123 }
124
125 /**
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
128  */
129
130 static int platform_pre_snapshot(int platform_mode)
131 {
132         return (platform_mode && hibernation_ops) ?
133                 hibernation_ops->pre_snapshot() : 0;
134 }
135
136 /**
137  *      platform_leave - prepare the machine for switching to the normal mode
138  *      of operation using the platform driver (called with interrupts disabled)
139  */
140
141 static void platform_leave(int platform_mode)
142 {
143         if (platform_mode && hibernation_ops)
144                 hibernation_ops->leave();
145 }
146
147 /**
148  *      platform_finish - switch the machine to the normal mode of operation
149  *      using the platform driver (must be called after platform_prepare())
150  */
151
152 static void platform_finish(int platform_mode)
153 {
154         if (platform_mode && hibernation_ops)
155                 hibernation_ops->finish();
156 }
157
158 /**
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.
162  */
163
164 static int platform_pre_restore(int platform_mode)
165 {
166         return (platform_mode && hibernation_ops) ?
167                 hibernation_ops->pre_restore() : 0;
168 }
169
170 /**
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().
175  */
176
177 static void platform_restore_cleanup(int platform_mode)
178 {
179         if (platform_mode && hibernation_ops)
180                 hibernation_ops->restore_cleanup();
181 }
182
183 /**
184  *      platform_recover - recover the platform from a failure to suspend
185  *      devices.
186  */
187
188 static void platform_recover(int platform_mode)
189 {
190         if (platform_mode && hibernation_ops && hibernation_ops->recover)
191                 hibernation_ops->recover();
192 }
193
194 /**
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.
198  */
199
200 static int create_image(int platform_mode)
201 {
202         int error;
203
204         error = arch_prepare_suspend();
205         if (error)
206                 return error;
207
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.
215          */
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;
221         }
222
223         if (hibernation_test(TEST_CORE))
224                 goto Power_up;
225
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.
239          */
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;
246 }
247
248 /**
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.
253  *
254  *      Must be called with pm_mutex held
255  */
256
257 int hibernation_snapshot(int platform_mode)
258 {
259         int error, ftrace_save;
260
261         /* Free memory before shutting down devices. */
262         error = swsusp_shrink_memory();
263         if (error)
264                 return error;
265
266         error = platform_begin(platform_mode);
267         if (error)
268                 goto Close;
269
270         suspend_console();
271         ftrace_save = __ftrace_enabled_save();
272         error = device_suspend(PMSG_FREEZE);
273         if (error)
274                 goto Recover_platform;
275
276         if (hibernation_test(TEST_DEVICES))
277                 goto Recover_platform;
278
279         error = platform_pre_snapshot(platform_mode);
280         if (error || hibernation_test(TEST_PLATFORM))
281                 goto Finish;
282
283         error = disable_nonboot_cpus();
284         if (!error) {
285                 if (hibernation_test(TEST_CPUS))
286                         goto Enable_cpus;
287
288                 if (hibernation_testmode(HIBERNATION_TEST))
289                         goto Enable_cpus;
290
291                 error = create_image(platform_mode);
292                 /* Control returns here after successful restore */
293         }
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;
306
307  Recover_platform:
308         platform_recover(platform_mode);
309         goto Resume_devices;
310 }
311
312 /**
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.
318  */
319
320 static int resume_target_kernel(void)
321 {
322         int error;
323
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;
331         }
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();
337                 /*
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
341                  */
342                 BUG_ON(!error);
343                 /* This call to restore_highmem() undos the previous one */
344                 restore_highmem();
345         }
346         /*
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
350          */
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;
359 }
360
361 /**
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.
366  *
367  *      Must be called with pm_mutex held
368  */
369
370 int hibernation_restore(int platform_mode)
371 {
372         int error, ftrace_save;
373
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;
380
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();
387         }
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;
395 }
396
397 /**
398  *      hibernation_platform_enter - enter the hibernation state using the
399  *      platform driver (if available)
400  */
401
402 int hibernation_platform_enter(void)
403 {
404         int error, ftrace_save;
405
406         if (!hibernation_ops)
407                 return -ENOSYS;
408
409         /*
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
413          */
414         error = hibernation_ops->begin();
415         if (error)
416                 goto Close;
417
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;
425         }
426
427         error = hibernation_ops->prepare();
428         if (error)
429                 goto Resume_devices;
430
431         error = disable_nonboot_cpus();
432         if (error)
433                 goto Finish;
434
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);
442         }
443         local_irq_enable();
444         device_pm_unlock();
445
446         /*
447          * We don't need to reenable the nonboot CPUs or resume consoles, since
448          * the system is going to be halted anyway.
449          */
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;
459 }
460
461 /**
462  *      power_down - Shut the machine down for hibernation.
463  *
464  *      Use the platform driver, if configured so; otherwise try
465  *      to power off or reboot.
466  */
467
468 static void power_down(void)
469 {
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;
482         }
483         kernel_halt();
484         /*
485          * Valid image is on the disk, if we continue we risk serious data
486          * corruption after resume.
487          */
488         printk(KERN_CRIT "PM: Please power down manually\n");
489         while(1);
490 }
491
492 static int prepare_processes(void)
493 {
494         int error = 0;
495
496         if (freeze_processes()) {
497                 error = -EBUSY;
498                 thaw_processes();
499         }
500         return error;
501 }
502
503 /**
504  *      hibernate - The granpappy of the built-in hibernation management
505  */
506
507 int hibernate(void)
508 {
509         int error;
510
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;
516         }
517
518         pm_prepare_console();
519         error = pm_notifier_call_chain(PM_HIBERNATION_PREPARE);
520         if (error)
521                 goto Exit;
522
523         /* Allocate memory management structures */
524         error = create_basic_memory_bitmaps();
525         if (error)
526                 goto Exit;
527
528         printk(KERN_INFO "PM: Syncing filesystems ... ");
529         sys_sync();
530         printk("done.\n");
531
532         error = prepare_processes();
533         if (error)
534                 goto Finish;
535
536         if (hibernation_test(TEST_FREEZER))
537                 goto Thaw;
538
539         if (hibernation_testmode(HIBERNATION_TESTPROC))
540                 goto Thaw;
541
542         error = hibernation_snapshot(hibernation_mode == HIBERNATION_PLATFORM);
543         if (in_suspend && !error) {
544                 unsigned int flags = 0;
545
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();
556         }
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;
568 }
569
570
571 /**
572  *      software_resume - Resume from a saved image.
573  *
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.
580  *
581  */
582
583 static int software_resume(void)
584 {
585         int error;
586         unsigned int flags;
587
588         /*
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.
597          */
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;
603                 }
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));
610         }
611
612         if (noresume) {
613                 /**
614                  * FIXME: If noresume is specified, we need to find the
615                  * partition and reset it back to normal swap space.
616                  */
617                 mutex_unlock(&pm_mutex);
618                 return 0;
619         }
620
621         pr_debug("PM: Checking hibernation image.\n");
622         error = swsusp_check();
623         if (error)
624                 goto Unlock;
625
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;
630         }
631
632         pm_prepare_console();
633         error = pm_notifier_call_chain(PM_RESTORE_PREPARE);
634         if (error)
635                 goto Finish;
636
637         error = create_basic_memory_bitmaps();
638         if (error)
639                 goto Finish;
640
641         pr_debug("PM: Preparing processes for restore.\n");
642         error = prepare_processes();
643         if (error) {
644                 swsusp_close();
645                 goto Done;
646         }
647
648         pr_debug("PM: Reading hibernation image.\n");
649
650         error = swsusp_read(&flags);
651         if (!error)
652                 hibernation_restore(flags & SF_PLATFORM_MODE);
653
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;
668 }
669
670 late_initcall(software_resume);
671
672
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",
679 };
680
681 /**
682  *      disk - Control hibernation mode
683  *
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.
688  *
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'.
693  *
694  *      show() will display what the mode is currently set to.
695  *      store() will accept one of
696  *
697  *      'platform'
698  *      'shutdown'
699  *      'reboot'
700  *      'test'
701  *      'testproc'
702  *
703  *      It will only change to 'platform' if the system
704  *      supports it (as determined by having hibernation_ops).
705  */
706
707 static ssize_t disk_show(struct kobject *kobj, struct kobj_attribute *attr,
708                          char *buf)
709 {
710         int i;
711         char *start = buf;
712
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;
727                 }
728                 if (i == hibernation_mode)
729                         buf += sprintf(buf, "[%s] ", hibernation_modes[i]);
730                 else
731                         buf += sprintf(buf, "%s ", hibernation_modes[i]);
732         }
733         buf += sprintf(buf, "\n");
734         return buf-start;
735 }
736
737
738 static ssize_t disk_store(struct kobject *kobj, struct kobj_attribute *attr,
739                           const char *buf, size_t n)
740 {
741         int error = 0;
742         int i;
743         int len;
744         char *p;
745         int mode = HIBERNATION_INVALID;
746
747         p = memchr(buf, '\n', n);
748         len = p ? p - buf : n;
749
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;
756                 }
757         }
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;
771                 }
772         } else
773                 error = -EINVAL;
774
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;
780 }
781
782 power_attr(disk);
783
784 static ssize_t resume_show(struct kobject *kobj, struct kobj_attribute *attr,
785                            char *buf)
786 {
787         return sprintf(buf,"%d:%d\n", MAJOR(swsusp_resume_device),
788                        MINOR(swsusp_resume_device));
789 }
790
791 static ssize_t resume_store(struct kobject *kobj, struct kobj_attribute *attr,
792                             const char *buf, size_t n)
793 {
794         unsigned int maj, min;
795         dev_t res;
796         int ret = -EINVAL;
797
798         if (sscanf(buf, "%u:%u", &maj, &min) != 2)
799                 goto out;
800
801         res = MKDEV(maj,min);
802         if (maj != MAJOR(res) || min != MINOR(res))
803                 goto out;
804
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;
814 }
815
816 power_attr(resume);
817
818 static ssize_t image_size_show(struct kobject *kobj, struct kobj_attribute *attr,
819                                char *buf)
820 {
821         return sprintf(buf, "%lu\n", image_size);
822 }
823
824 static ssize_t image_size_store(struct kobject *kobj, struct kobj_attribute *attr,
825                                 const char *buf, size_t n)
826 {
827         unsigned long size;
828
829         if (sscanf(buf, "%lu", &size) == 1) {
830                 image_size = size;
831                 return n;
832         }
833
834         return -EINVAL;
835 }
836
837 power_attr(image_size);
838
839 static struct attribute * g[] = {
840         &disk_attr.attr,
841         &resume_attr.attr,
842         &image_size_attr.attr,
843         NULL,
844 };
845
846
847 static struct attribute_group attr_group = {
848         .attrs = g,
849 };
850
851
852 static int __init pm_disk_init(void)
853 {
854         return sysfs_create_group(power_kobj, &attr_group);
855 }
856
857 core_initcall(pm_disk_init);
858
859
860 static int __init resume_setup(char *str)
861 {
862         if (noresume)
863                 return 1;
864
865         strncpy( resume_file, str, 255 );
866         return 1;
867 }
868
869 static int __init resume_offset_setup(char *str)
870 {
871         unsigned long long offset;
872
873         if (noresume)
874                 return 1;
875
876         if (sscanf(str, "%llu", &offset) == 1)
877                 swsusp_resume_block = offset;
878
879         return 1;
880 }
881
882 static int __init noresume_setup(char *str)
883 {
884         noresume = 1;
885         return 1;
886 }
887
888 __setup("noresume", noresume_setup);
889 __setup("resume_offset=", resume_offset_setup);
890 __setup("resume=", resume_setup);