]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - kernel/power/disk.c
64e42ab8b57c3008e5d1f1574557eef3667939d7
[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
25 #include "power.h"
26
27
28 static int noresume = 0;
29 char resume_file[256] = CONFIG_PM_STD_PARTITION;
30 dev_t swsusp_resume_device;
31 sector_t swsusp_resume_block;
32
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
42 };
43 #define HIBERNATION_MAX (__HIBERNATION_AFTER_LAST-1)
44 #define HIBERNATION_FIRST (HIBERNATION_INVALID + 1)
45
46 static int hibernation_mode = HIBERNATION_SHUTDOWN;
47
48 static struct platform_hibernation_ops *hibernation_ops;
49
50 /**
51  * hibernation_set_ops - set the global hibernate operations
52  * @ops: the hibernation operations to use in subsequent hibernation transitions
53  */
54
55 void hibernation_set_ops(struct platform_hibernation_ops *ops)
56 {
57         if (ops && !(ops->start && ops->pre_snapshot && ops->finish
58             && ops->prepare && ops->enter && ops->pre_restore
59             && ops->restore_cleanup)) {
60                 WARN_ON(1);
61                 return;
62         }
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;
69
70         mutex_unlock(&pm_mutex);
71 }
72
73 #ifdef CONFIG_PM_DEBUG
74 static void hibernation_debug_sleep(void)
75 {
76         printk(KERN_INFO "hibernation debug: Waiting for 5 seconds.\n");
77         mdelay(5000);
78 }
79
80 static int hibernation_testmode(int mode)
81 {
82         if (hibernation_mode == mode) {
83                 hibernation_debug_sleep();
84                 return 1;
85         }
86         return 0;
87 }
88
89 static int hibernation_test(int level)
90 {
91         if (pm_test_level == level) {
92                 hibernation_debug_sleep();
93                 return 1;
94         }
95         return 0;
96 }
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 */
101
102 /**
103  *      platform_start - tell the platform driver that we're starting
104  *      hibernation
105  */
106
107 static int platform_start(int platform_mode)
108 {
109         return (platform_mode && hibernation_ops) ?
110                 hibernation_ops->start() : 0;
111 }
112
113 /**
114  *      platform_pre_snapshot - prepare the machine for hibernation using the
115  *      platform driver if so configured and return an error code if it fails
116  */
117
118 static int platform_pre_snapshot(int platform_mode)
119 {
120         return (platform_mode && hibernation_ops) ?
121                 hibernation_ops->pre_snapshot() : 0;
122 }
123
124 /**
125  *      platform_leave - prepare the machine for switching to the normal mode
126  *      of operation using the platform driver (called with interrupts disabled)
127  */
128
129 static void platform_leave(int platform_mode)
130 {
131         if (platform_mode && hibernation_ops)
132                 hibernation_ops->leave();
133 }
134
135 /**
136  *      platform_finish - switch the machine to the normal mode of operation
137  *      using the platform driver (must be called after platform_prepare())
138  */
139
140 static void platform_finish(int platform_mode)
141 {
142         if (platform_mode && hibernation_ops)
143                 hibernation_ops->finish();
144 }
145
146 /**
147  *      platform_pre_restore - prepare the platform for the restoration from a
148  *      hibernation image.  If the restore fails after this function has been
149  *      called, platform_restore_cleanup() must be called.
150  */
151
152 static int platform_pre_restore(int platform_mode)
153 {
154         return (platform_mode && hibernation_ops) ?
155                 hibernation_ops->pre_restore() : 0;
156 }
157
158 /**
159  *      platform_restore_cleanup - switch the platform to the normal mode of
160  *      operation after a failing restore.  If platform_pre_restore() has been
161  *      called before the failing restore, this function must be called too,
162  *      regardless of the result of platform_pre_restore().
163  */
164
165 static void platform_restore_cleanup(int platform_mode)
166 {
167         if (platform_mode && hibernation_ops)
168                 hibernation_ops->restore_cleanup();
169 }
170
171 /**
172  *      create_image - freeze devices that need to be frozen with interrupts
173  *      off, create the hibernation image and thaw those devices.  Control
174  *      reappears in this routine after a restore.
175  */
176
177 int create_image(int platform_mode)
178 {
179         int error;
180
181         error = arch_prepare_suspend();
182         if (error)
183                 return error;
184
185         local_irq_disable();
186         /* At this point, device_suspend() has been called, but *not*
187          * device_power_down(). We *must* call device_power_down() now.
188          * Otherwise, drivers for some devices (e.g. interrupt controllers)
189          * become desynchronized with the actual state of the hardware
190          * at resume time, and evil weirdness ensues.
191          */
192         error = device_power_down(PMSG_FREEZE);
193         if (error) {
194                 printk(KERN_ERR "PM: Some devices failed to power down, "
195                         "aborting hibernation\n");
196                 goto Enable_irqs;
197         }
198
199         if (hibernation_test(TEST_CORE))
200                 goto Power_up;
201
202         in_suspend = 1;
203         save_processor_state();
204         error = swsusp_arch_suspend();
205         if (error)
206                 printk(KERN_ERR "PM: Error %d creating hibernation image\n",
207                         error);
208         /* Restore control flow magically appears here */
209         restore_processor_state();
210         if (!in_suspend)
211                 platform_leave(platform_mode);
212  Power_up:
213         /* NOTE:  device_power_up() is just a resume() for devices
214          * that suspended with irqs off ... no overall powerup.
215          */
216         device_power_up();
217  Enable_irqs:
218         local_irq_enable();
219         return error;
220 }
221
222 /**
223  *      hibernation_snapshot - quiesce devices and create the hibernation
224  *      snapshot image.
225  *      @platform_mode - if set, use the platform driver, if available, to
226  *                       prepare the platform frimware for the power transition.
227  *
228  *      Must be called with pm_mutex held
229  */
230
231 int hibernation_snapshot(int platform_mode)
232 {
233         int error;
234
235         /* Free memory before shutting down devices. */
236         error = swsusp_shrink_memory();
237         if (error)
238                 return error;
239
240         error = platform_start(platform_mode);
241         if (error)
242                 return error;
243
244         suspend_console();
245         error = device_suspend(PMSG_FREEZE);
246         if (error)
247                 goto Resume_console;
248
249         if (hibernation_test(TEST_DEVICES))
250                 goto Resume_devices;
251
252         error = platform_pre_snapshot(platform_mode);
253         if (error || hibernation_test(TEST_PLATFORM))
254                 goto Finish;
255
256         error = disable_nonboot_cpus();
257         if (!error) {
258                 if (hibernation_test(TEST_CPUS))
259                         goto Enable_cpus;
260
261                 if (hibernation_testmode(HIBERNATION_TEST))
262                         goto Enable_cpus;
263
264                 error = create_image(platform_mode);
265                 /* Control returns here after successful restore */
266         }
267  Enable_cpus:
268         enable_nonboot_cpus();
269  Finish:
270         platform_finish(platform_mode);
271  Resume_devices:
272         device_resume();
273  Resume_console:
274         resume_console();
275         return error;
276 }
277
278 /**
279  *      resume_target_kernel - prepare devices that need to be suspended with
280  *      interrupts off, restore the contents of highmem that have not been
281  *      restored yet from the image and run the low level code that will restore
282  *      the remaining contents of memory and switch to the just restored target
283  *      kernel.
284  */
285
286 static int resume_target_kernel(void)
287 {
288         int error;
289
290         local_irq_disable();
291         error = device_power_down(PMSG_PRETHAW);
292         if (error) {
293                 printk(KERN_ERR "PM: Some devices failed to power down, "
294                         "aborting resume\n");
295                 goto Enable_irqs;
296         }
297         /* We'll ignore saved state, but this gets preempt count (etc) right */
298         save_processor_state();
299         error = restore_highmem();
300         if (!error) {
301                 error = swsusp_arch_resume();
302                 /*
303                  * The code below is only ever reached in case of a failure.
304                  * Otherwise execution continues at place where
305                  * swsusp_arch_suspend() was called
306                  */
307                 BUG_ON(!error);
308                 /* This call to restore_highmem() undos the previous one */
309                 restore_highmem();
310         }
311         /*
312          * The only reason why swsusp_arch_resume() can fail is memory being
313          * very tight, so we have to free it as soon as we can to avoid
314          * subsequent failures
315          */
316         swsusp_free();
317         restore_processor_state();
318         touch_softlockup_watchdog();
319         device_power_up();
320  Enable_irqs:
321         local_irq_enable();
322         return error;
323 }
324
325 /**
326  *      hibernation_restore - quiesce devices and restore the hibernation
327  *      snapshot image.  If successful, control returns in hibernation_snaphot()
328  *      @platform_mode - if set, use the platform driver, if available, to
329  *                       prepare the platform frimware for the transition.
330  *
331  *      Must be called with pm_mutex held
332  */
333
334 int hibernation_restore(int platform_mode)
335 {
336         int error;
337
338         pm_prepare_console();
339         suspend_console();
340         error = device_suspend(PMSG_PRETHAW);
341         if (error)
342                 goto Finish;
343
344         error = platform_pre_restore(platform_mode);
345         if (!error) {
346                 error = disable_nonboot_cpus();
347                 if (!error)
348                         error = resume_target_kernel();
349                 enable_nonboot_cpus();
350         }
351         platform_restore_cleanup(platform_mode);
352         device_resume();
353  Finish:
354         resume_console();
355         pm_restore_console();
356         return error;
357 }
358
359 /**
360  *      hibernation_platform_enter - enter the hibernation state using the
361  *      platform driver (if available)
362  */
363
364 int hibernation_platform_enter(void)
365 {
366         int error;
367
368         if (!hibernation_ops)
369                 return -ENOSYS;
370
371         /*
372          * We have cancelled the power transition by running
373          * hibernation_ops->finish() before saving the image, so we should let
374          * the firmware know that we're going to enter the sleep state after all
375          */
376         error = hibernation_ops->start();
377         if (error)
378                 return error;
379
380         suspend_console();
381         error = device_suspend(PMSG_SUSPEND);
382         if (error)
383                 goto Resume_console;
384
385         error = hibernation_ops->prepare();
386         if (error)
387                 goto Resume_devices;
388
389         error = disable_nonboot_cpus();
390         if (error)
391                 goto Finish;
392
393         local_irq_disable();
394         error = device_power_down(PMSG_SUSPEND);
395         if (!error) {
396                 hibernation_ops->enter();
397                 /* We should never get here */
398                 while (1);
399         }
400         local_irq_enable();
401
402         /*
403          * We don't need to reenable the nonboot CPUs or resume consoles, since
404          * the system is going to be halted anyway.
405          */
406  Finish:
407         hibernation_ops->finish();
408  Resume_devices:
409         device_resume();
410  Resume_console:
411         resume_console();
412         return error;
413 }
414
415 /**
416  *      power_down - Shut the machine down for hibernation.
417  *
418  *      Use the platform driver, if configured so; otherwise try
419  *      to power off or reboot.
420  */
421
422 static void power_down(void)
423 {
424         switch (hibernation_mode) {
425         case HIBERNATION_TEST:
426         case HIBERNATION_TESTPROC:
427                 break;
428         case HIBERNATION_REBOOT:
429                 kernel_restart(NULL);
430                 break;
431         case HIBERNATION_PLATFORM:
432                 hibernation_platform_enter();
433         case HIBERNATION_SHUTDOWN:
434                 kernel_power_off();
435                 break;
436         }
437         kernel_halt();
438         /*
439          * Valid image is on the disk, if we continue we risk serious data
440          * corruption after resume.
441          */
442         printk(KERN_CRIT "PM: Please power down manually\n");
443         while(1);
444 }
445
446 static void unprepare_processes(void)
447 {
448         thaw_processes();
449         pm_restore_console();
450 }
451
452 static int prepare_processes(void)
453 {
454         int error = 0;
455
456         pm_prepare_console();
457         if (freeze_processes()) {
458                 error = -EBUSY;
459                 unprepare_processes();
460         }
461         return error;
462 }
463
464 /**
465  *      hibernate - The granpappy of the built-in hibernation management
466  */
467
468 int hibernate(void)
469 {
470         int error;
471
472         mutex_lock(&pm_mutex);
473         /* The snapshot device should not be opened while we're running */
474         if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
475                 error = -EBUSY;
476                 goto Unlock;
477         }
478
479         error = pm_notifier_call_chain(PM_HIBERNATION_PREPARE);
480         if (error)
481                 goto Exit;
482
483         /* Allocate memory management structures */
484         error = create_basic_memory_bitmaps();
485         if (error)
486                 goto Exit;
487
488         printk(KERN_INFO "PM: Syncing filesystems ... ");
489         sys_sync();
490         printk("done.\n");
491
492         error = prepare_processes();
493         if (error)
494                 goto Finish;
495
496         if (hibernation_test(TEST_FREEZER))
497                 goto Thaw;
498
499         if (hibernation_testmode(HIBERNATION_TESTPROC))
500                 goto Thaw;
501
502         error = hibernation_snapshot(hibernation_mode == HIBERNATION_PLATFORM);
503         if (in_suspend && !error) {
504                 unsigned int flags = 0;
505
506                 if (hibernation_mode == HIBERNATION_PLATFORM)
507                         flags |= SF_PLATFORM_MODE;
508                 pr_debug("PM: writing image.\n");
509                 error = swsusp_write(flags);
510                 swsusp_free();
511                 if (!error)
512                         power_down();
513         } else {
514                 pr_debug("PM: Image restored successfully.\n");
515                 swsusp_free();
516         }
517  Thaw:
518         unprepare_processes();
519  Finish:
520         free_basic_memory_bitmaps();
521  Exit:
522         pm_notifier_call_chain(PM_POST_HIBERNATION);
523         atomic_inc(&snapshot_device_available);
524  Unlock:
525         mutex_unlock(&pm_mutex);
526         return error;
527 }
528
529
530 /**
531  *      software_resume - Resume from a saved image.
532  *
533  *      Called as a late_initcall (so all devices are discovered and
534  *      initialized), we call swsusp to see if we have a saved image or not.
535  *      If so, we quiesce devices, the restore the saved image. We will
536  *      return above (in hibernate() ) if everything goes well.
537  *      Otherwise, we fail gracefully and return to the normally
538  *      scheduled program.
539  *
540  */
541
542 static int software_resume(void)
543 {
544         int error;
545         unsigned int flags;
546
547         /*
548          * name_to_dev_t() below takes a sysfs buffer mutex when sysfs
549          * is configured into the kernel. Since the regular hibernate
550          * trigger path is via sysfs which takes a buffer mutex before
551          * calling hibernate functions (which take pm_mutex) this can
552          * cause lockdep to complain about a possible ABBA deadlock
553          * which cannot happen since we're in the boot code here and
554          * sysfs can't be invoked yet. Therefore, we use a subclass
555          * here to avoid lockdep complaining.
556          */
557         mutex_lock_nested(&pm_mutex, SINGLE_DEPTH_NESTING);
558         if (!swsusp_resume_device) {
559                 if (!strlen(resume_file)) {
560                         mutex_unlock(&pm_mutex);
561                         return -ENOENT;
562                 }
563                 swsusp_resume_device = name_to_dev_t(resume_file);
564                 pr_debug("PM: Resume from partition %s\n", resume_file);
565         } else {
566                 pr_debug("PM: Resume from partition %d:%d\n",
567                                 MAJOR(swsusp_resume_device),
568                                 MINOR(swsusp_resume_device));
569         }
570
571         if (noresume) {
572                 /**
573                  * FIXME: If noresume is specified, we need to find the
574                  * partition and reset it back to normal swap space.
575                  */
576                 mutex_unlock(&pm_mutex);
577                 return 0;
578         }
579
580         pr_debug("PM: Checking hibernation image.\n");
581         error = swsusp_check();
582         if (error)
583                 goto Unlock;
584
585         /* The snapshot device should not be opened while we're running */
586         if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
587                 error = -EBUSY;
588                 goto Unlock;
589         }
590
591         error = pm_notifier_call_chain(PM_RESTORE_PREPARE);
592         if (error)
593                 goto Finish;
594
595         error = create_basic_memory_bitmaps();
596         if (error)
597                 goto Finish;
598
599         pr_debug("PM: Preparing processes for restore.\n");
600         error = prepare_processes();
601         if (error) {
602                 swsusp_close();
603                 goto Done;
604         }
605
606         pr_debug("PM: Reading hibernation image.\n");
607
608         error = swsusp_read(&flags);
609         if (!error)
610                 hibernation_restore(flags & SF_PLATFORM_MODE);
611
612         printk(KERN_ERR "PM: Restore failed, recovering.\n");
613         swsusp_free();
614         unprepare_processes();
615  Done:
616         free_basic_memory_bitmaps();
617  Finish:
618         pm_notifier_call_chain(PM_POST_RESTORE);
619         atomic_inc(&snapshot_device_available);
620         /* For success case, the suspend path will release the lock */
621  Unlock:
622         mutex_unlock(&pm_mutex);
623         pr_debug("PM: Resume from disk failed.\n");
624         return error;
625 }
626
627 late_initcall(software_resume);
628
629
630 static const char * const hibernation_modes[] = {
631         [HIBERNATION_PLATFORM]  = "platform",
632         [HIBERNATION_SHUTDOWN]  = "shutdown",
633         [HIBERNATION_REBOOT]    = "reboot",
634         [HIBERNATION_TEST]      = "test",
635         [HIBERNATION_TESTPROC]  = "testproc",
636 };
637
638 /**
639  *      disk - Control hibernation mode
640  *
641  *      Suspend-to-disk can be handled in several ways. We have a few options
642  *      for putting the system to sleep - using the platform driver (e.g. ACPI
643  *      or other hibernation_ops), powering off the system or rebooting the
644  *      system (for testing) as well as the two test modes.
645  *
646  *      The system can support 'platform', and that is known a priori (and
647  *      encoded by the presence of hibernation_ops). However, the user may
648  *      choose 'shutdown' or 'reboot' as alternatives, as well as one fo the
649  *      test modes, 'test' or 'testproc'.
650  *
651  *      show() will display what the mode is currently set to.
652  *      store() will accept one of
653  *
654  *      'platform'
655  *      'shutdown'
656  *      'reboot'
657  *      'test'
658  *      'testproc'
659  *
660  *      It will only change to 'platform' if the system
661  *      supports it (as determined by having hibernation_ops).
662  */
663
664 static ssize_t disk_show(struct kobject *kobj, struct kobj_attribute *attr,
665                          char *buf)
666 {
667         int i;
668         char *start = buf;
669
670         for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
671                 if (!hibernation_modes[i])
672                         continue;
673                 switch (i) {
674                 case HIBERNATION_SHUTDOWN:
675                 case HIBERNATION_REBOOT:
676                 case HIBERNATION_TEST:
677                 case HIBERNATION_TESTPROC:
678                         break;
679                 case HIBERNATION_PLATFORM:
680                         if (hibernation_ops)
681                                 break;
682                         /* not a valid mode, continue with loop */
683                         continue;
684                 }
685                 if (i == hibernation_mode)
686                         buf += sprintf(buf, "[%s] ", hibernation_modes[i]);
687                 else
688                         buf += sprintf(buf, "%s ", hibernation_modes[i]);
689         }
690         buf += sprintf(buf, "\n");
691         return buf-start;
692 }
693
694
695 static ssize_t disk_store(struct kobject *kobj, struct kobj_attribute *attr,
696                           const char *buf, size_t n)
697 {
698         int error = 0;
699         int i;
700         int len;
701         char *p;
702         int mode = HIBERNATION_INVALID;
703
704         p = memchr(buf, '\n', n);
705         len = p ? p - buf : n;
706
707         mutex_lock(&pm_mutex);
708         for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
709                 if (len == strlen(hibernation_modes[i])
710                     && !strncmp(buf, hibernation_modes[i], len)) {
711                         mode = i;
712                         break;
713                 }
714         }
715         if (mode != HIBERNATION_INVALID) {
716                 switch (mode) {
717                 case HIBERNATION_SHUTDOWN:
718                 case HIBERNATION_REBOOT:
719                 case HIBERNATION_TEST:
720                 case HIBERNATION_TESTPROC:
721                         hibernation_mode = mode;
722                         break;
723                 case HIBERNATION_PLATFORM:
724                         if (hibernation_ops)
725                                 hibernation_mode = mode;
726                         else
727                                 error = -EINVAL;
728                 }
729         } else
730                 error = -EINVAL;
731
732         if (!error)
733                 pr_debug("PM: Hibernation mode set to '%s'\n",
734                          hibernation_modes[mode]);
735         mutex_unlock(&pm_mutex);
736         return error ? error : n;
737 }
738
739 power_attr(disk);
740
741 static ssize_t resume_show(struct kobject *kobj, struct kobj_attribute *attr,
742                            char *buf)
743 {
744         return sprintf(buf,"%d:%d\n", MAJOR(swsusp_resume_device),
745                        MINOR(swsusp_resume_device));
746 }
747
748 static ssize_t resume_store(struct kobject *kobj, struct kobj_attribute *attr,
749                             const char *buf, size_t n)
750 {
751         unsigned int maj, min;
752         dev_t res;
753         int ret = -EINVAL;
754
755         if (sscanf(buf, "%u:%u", &maj, &min) != 2)
756                 goto out;
757
758         res = MKDEV(maj,min);
759         if (maj != MAJOR(res) || min != MINOR(res))
760                 goto out;
761
762         mutex_lock(&pm_mutex);
763         swsusp_resume_device = res;
764         mutex_unlock(&pm_mutex);
765         printk(KERN_INFO "PM: Starting manual resume from disk\n");
766         noresume = 0;
767         software_resume();
768         ret = n;
769  out:
770         return ret;
771 }
772
773 power_attr(resume);
774
775 static ssize_t image_size_show(struct kobject *kobj, struct kobj_attribute *attr,
776                                char *buf)
777 {
778         return sprintf(buf, "%lu\n", image_size);
779 }
780
781 static ssize_t image_size_store(struct kobject *kobj, struct kobj_attribute *attr,
782                                 const char *buf, size_t n)
783 {
784         unsigned long size;
785
786         if (sscanf(buf, "%lu", &size) == 1) {
787                 image_size = size;
788                 return n;
789         }
790
791         return -EINVAL;
792 }
793
794 power_attr(image_size);
795
796 static struct attribute * g[] = {
797         &disk_attr.attr,
798         &resume_attr.attr,
799         &image_size_attr.attr,
800         NULL,
801 };
802
803
804 static struct attribute_group attr_group = {
805         .attrs = g,
806 };
807
808
809 static int __init pm_disk_init(void)
810 {
811         return sysfs_create_group(power_kobj, &attr_group);
812 }
813
814 core_initcall(pm_disk_init);
815
816
817 static int __init resume_setup(char *str)
818 {
819         if (noresume)
820                 return 1;
821
822         strncpy( resume_file, str, 255 );
823         return 1;
824 }
825
826 static int __init resume_offset_setup(char *str)
827 {
828         unsigned long long offset;
829
830         if (noresume)
831                 return 1;
832
833         if (sscanf(str, "%llu", &offset) == 1)
834                 swsusp_resume_block = offset;
835
836         return 1;
837 }
838
839 static int __init noresume_setup(char *str)
840 {
841         noresume = 1;
842         return 1;
843 }
844
845 __setup("noresume", noresume_setup);
846 __setup("resume_offset=", resume_offset_setup);
847 __setup("resume=", resume_setup);