1 // SPDX-License-Identifier: GPL-2.0-only
3 * kernel/power/hibernate.c - Hibernation (a.k.a suspend-to-disk) support.
5 * Copyright (c) 2003 Patrick Mochel
6 * Copyright (c) 2003 Open Source Development Lab
7 * Copyright (c) 2004 Pavel Machek <pavel@ucw.cz>
8 * Copyright (c) 2009 Rafael J. Wysocki, Novell Inc.
9 * Copyright (C) 2012 Bojan Smojver <bojan@rexursive.com>
12 #define pr_fmt(fmt) "PM: " fmt
14 #include <linux/export.h>
15 #include <linux/suspend.h>
16 #include <linux/reboot.h>
17 #include <linux/string.h>
18 #include <linux/device.h>
19 #include <linux/async.h>
20 #include <linux/delay.h>
22 #include <linux/mount.h>
24 #include <linux/nmi.h>
25 #include <linux/console.h>
26 #include <linux/cpu.h>
27 #include <linux/freezer.h>
28 #include <linux/gfp.h>
29 #include <linux/syscore_ops.h>
30 #include <linux/ctype.h>
31 #include <linux/genhd.h>
32 #include <linux/ktime.h>
33 #include <trace/events/power.h>
38 static int nocompress
;
40 static int nohibernate
;
41 static int resume_wait
;
42 static unsigned int resume_delay
;
43 static char resume_file
[256] = CONFIG_PM_STD_PARTITION
;
44 dev_t swsusp_resume_device
;
45 sector_t swsusp_resume_block
;
46 __visible
int in_suspend __nosavedata
;
56 HIBERNATION_TEST_RESUME
,
58 __HIBERNATION_AFTER_LAST
60 #define HIBERNATION_MAX (__HIBERNATION_AFTER_LAST-1)
61 #define HIBERNATION_FIRST (HIBERNATION_INVALID + 1)
63 static int hibernation_mode
= HIBERNATION_SHUTDOWN
;
65 bool freezer_test_done
;
67 static const struct platform_hibernation_ops
*hibernation_ops
;
69 bool hibernation_available(void)
71 return (nohibernate
== 0);
75 * hibernation_set_ops - Set the global hibernate operations.
76 * @ops: Hibernation operations to use in subsequent hibernation transitions.
78 void hibernation_set_ops(const struct platform_hibernation_ops
*ops
)
80 if (ops
&& !(ops
->begin
&& ops
->end
&& ops
->pre_snapshot
81 && ops
->prepare
&& ops
->finish
&& ops
->enter
&& ops
->pre_restore
82 && ops
->restore_cleanup
&& ops
->leave
)) {
87 hibernation_ops
= ops
;
89 hibernation_mode
= HIBERNATION_PLATFORM
;
90 else if (hibernation_mode
== HIBERNATION_PLATFORM
)
91 hibernation_mode
= HIBERNATION_SHUTDOWN
;
93 unlock_system_sleep();
95 EXPORT_SYMBOL_GPL(hibernation_set_ops
);
97 static bool entering_platform_hibernation
;
99 bool system_entering_hibernation(void)
101 return entering_platform_hibernation
;
103 EXPORT_SYMBOL(system_entering_hibernation
);
105 #ifdef CONFIG_PM_DEBUG
106 static void hibernation_debug_sleep(void)
108 pr_info("hibernation debug: Waiting for 5 seconds.\n");
112 static int hibernation_test(int level
)
114 if (pm_test_level
== level
) {
115 hibernation_debug_sleep();
120 #else /* !CONFIG_PM_DEBUG */
121 static int hibernation_test(int level
) { return 0; }
122 #endif /* !CONFIG_PM_DEBUG */
125 * platform_begin - Call platform to start hibernation.
126 * @platform_mode: Whether or not to use the platform driver.
128 static int platform_begin(int platform_mode
)
130 return (platform_mode
&& hibernation_ops
) ?
131 hibernation_ops
->begin(PMSG_FREEZE
) : 0;
135 * platform_end - Call platform to finish transition to the working state.
136 * @platform_mode: Whether or not to use the platform driver.
138 static void platform_end(int platform_mode
)
140 if (platform_mode
&& hibernation_ops
)
141 hibernation_ops
->end();
145 * platform_pre_snapshot - Call platform to prepare the machine for hibernation.
146 * @platform_mode: Whether or not to use the platform driver.
148 * Use the platform driver to prepare the system for creating a hibernate image,
149 * if so configured, and return an error code if that fails.
152 static int platform_pre_snapshot(int platform_mode
)
154 return (platform_mode
&& hibernation_ops
) ?
155 hibernation_ops
->pre_snapshot() : 0;
159 * platform_leave - Call platform to prepare a transition to the working state.
160 * @platform_mode: Whether or not to use the platform driver.
162 * Use the platform driver prepare to prepare the machine for switching to the
163 * normal mode of operation.
165 * This routine is called on one CPU with interrupts disabled.
167 static void platform_leave(int platform_mode
)
169 if (platform_mode
&& hibernation_ops
)
170 hibernation_ops
->leave();
174 * platform_finish - Call platform to switch the system to the working state.
175 * @platform_mode: Whether or not to use the platform driver.
177 * Use the platform driver to switch the machine to the normal mode of
180 * This routine must be called after platform_prepare().
182 static void platform_finish(int platform_mode
)
184 if (platform_mode
&& hibernation_ops
)
185 hibernation_ops
->finish();
189 * platform_pre_restore - Prepare for hibernate image restoration.
190 * @platform_mode: Whether or not to use the platform driver.
192 * Use the platform driver to prepare the system for resume from a hibernation
195 * If the restore fails after this function has been called,
196 * platform_restore_cleanup() must be called.
198 static int platform_pre_restore(int platform_mode
)
200 return (platform_mode
&& hibernation_ops
) ?
201 hibernation_ops
->pre_restore() : 0;
205 * platform_restore_cleanup - Switch to the working state after failing restore.
206 * @platform_mode: Whether or not to use the platform driver.
208 * Use the platform driver to switch the system to the normal mode of operation
209 * after a failing restore.
211 * If platform_pre_restore() has been called before the failing restore, this
212 * function must be called too, regardless of the result of
213 * platform_pre_restore().
215 static void platform_restore_cleanup(int platform_mode
)
217 if (platform_mode
&& hibernation_ops
)
218 hibernation_ops
->restore_cleanup();
222 * platform_recover - Recover from a failure to suspend devices.
223 * @platform_mode: Whether or not to use the platform driver.
225 static void platform_recover(int platform_mode
)
227 if (platform_mode
&& hibernation_ops
&& hibernation_ops
->recover
)
228 hibernation_ops
->recover();
232 * swsusp_show_speed - Print time elapsed between two events during hibernation.
233 * @start: Starting event.
234 * @stop: Final event.
235 * @nr_pages: Number of memory pages processed between @start and @stop.
236 * @msg: Additional diagnostic message to print.
238 void swsusp_show_speed(ktime_t start
, ktime_t stop
,
239 unsigned nr_pages
, char *msg
)
242 u64 elapsed_centisecs64
;
243 unsigned int centisecs
;
247 diff
= ktime_sub(stop
, start
);
248 elapsed_centisecs64
= ktime_divns(diff
, 10*NSEC_PER_MSEC
);
249 centisecs
= elapsed_centisecs64
;
251 centisecs
= 1; /* avoid div-by-zero */
252 k
= nr_pages
* (PAGE_SIZE
/ 1024);
253 kps
= (k
* 100) / centisecs
;
254 pr_info("%s %u kbytes in %u.%02u seconds (%u.%02u MB/s)\n",
255 msg
, k
, centisecs
/ 100, centisecs
% 100, kps
/ 1000,
259 __weak
int arch_resume_nosmt(void)
265 * create_image - Create a hibernation image.
266 * @platform_mode: Whether or not to use the platform driver.
268 * Execute device drivers' "late" and "noirq" freeze callbacks, create a
269 * hibernation image and run the drivers' "noirq" and "early" thaw callbacks.
271 * Control reappears in this routine after the subsequent restore.
273 static int create_image(int platform_mode
)
277 error
= dpm_suspend_end(PMSG_FREEZE
);
279 pr_err("Some devices failed to power down, aborting hibernation\n");
283 error
= platform_pre_snapshot(platform_mode
);
284 if (error
|| hibernation_test(TEST_PLATFORM
))
285 goto Platform_finish
;
287 error
= suspend_disable_secondary_cpus();
288 if (error
|| hibernation_test(TEST_CPUS
))
293 system_state
= SYSTEM_SUSPEND
;
295 error
= syscore_suspend();
297 pr_err("Some system devices failed to power down, aborting hibernation\n");
301 if (hibernation_test(TEST_CORE
) || pm_wakeup_pending())
305 save_processor_state();
306 trace_suspend_resume(TPS("machine_suspend"), PM_EVENT_HIBERNATE
, true);
307 error
= swsusp_arch_suspend();
308 /* Restore control flow magically appears here */
309 restore_processor_state();
310 trace_suspend_resume(TPS("machine_suspend"), PM_EVENT_HIBERNATE
, false);
312 pr_err("Error %d creating hibernation image\n", error
);
315 events_check_enabled
= false;
319 platform_leave(platform_mode
);
325 system_state
= SYSTEM_RUNNING
;
329 suspend_enable_secondary_cpus();
331 /* Allow architectures to do nosmt-specific post-resume dances */
333 error
= arch_resume_nosmt();
336 platform_finish(platform_mode
);
338 dpm_resume_start(in_suspend
?
339 (error
? PMSG_RECOVER
: PMSG_THAW
) : PMSG_RESTORE
);
345 * hibernation_snapshot - Quiesce devices and create a hibernation image.
346 * @platform_mode: If set, use platform driver to prepare for the transition.
348 * This routine must be called with system_transition_mutex held.
350 int hibernation_snapshot(int platform_mode
)
355 pm_suspend_clear_flags();
356 error
= platform_begin(platform_mode
);
360 /* Preallocate image memory before shutting down devices. */
361 error
= hibernate_preallocate_memory();
365 error
= freeze_kernel_threads();
369 if (hibernation_test(TEST_FREEZER
)) {
372 * Indicate to the caller that we are returning due to a
373 * successful freezer test.
375 freezer_test_done
= true;
379 error
= dpm_prepare(PMSG_FREEZE
);
381 dpm_complete(PMSG_RECOVER
);
386 pm_restrict_gfp_mask();
388 error
= dpm_suspend(PMSG_FREEZE
);
390 if (error
|| hibernation_test(TEST_DEVICES
))
391 platform_recover(platform_mode
);
393 error
= create_image(platform_mode
);
396 * In the case that we call create_image() above, the control
397 * returns here (1) after the image has been created or the
398 * image creation has failed and (2) after a successful restore.
401 /* We may need to release the preallocated image pages here. */
402 if (error
|| !in_suspend
)
405 msg
= in_suspend
? (error
? PMSG_RECOVER
: PMSG_THAW
) : PMSG_RESTORE
;
408 if (error
|| !in_suspend
)
409 pm_restore_gfp_mask();
415 platform_end(platform_mode
);
419 thaw_kernel_threads();
425 int __weak
hibernate_resume_nonboot_cpu_disable(void)
427 return suspend_disable_secondary_cpus();
431 * resume_target_kernel - Restore system state from a hibernation image.
432 * @platform_mode: Whether or not to use the platform driver.
434 * Execute device drivers' "noirq" and "late" freeze callbacks, restore the
435 * contents of highmem that have not been restored yet from the image and run
436 * the low-level code that will restore the remaining contents of memory and
437 * switch to the just restored target kernel.
439 static int resume_target_kernel(bool platform_mode
)
443 error
= dpm_suspend_end(PMSG_QUIESCE
);
445 pr_err("Some devices failed to power down, aborting resume\n");
449 error
= platform_pre_restore(platform_mode
);
453 error
= hibernate_resume_nonboot_cpu_disable();
458 system_state
= SYSTEM_SUSPEND
;
460 error
= syscore_suspend();
464 save_processor_state();
465 error
= restore_highmem();
467 error
= swsusp_arch_resume();
469 * The code below is only ever reached in case of a failure.
470 * Otherwise, execution continues at the place where
471 * swsusp_arch_suspend() was called.
475 * This call to restore_highmem() reverts the changes made by
481 * The only reason why swsusp_arch_resume() can fail is memory being
482 * very tight, so we have to free it as soon as we can to avoid
483 * subsequent failures.
486 restore_processor_state();
487 touch_softlockup_watchdog();
492 system_state
= SYSTEM_RUNNING
;
496 suspend_enable_secondary_cpus();
499 platform_restore_cleanup(platform_mode
);
501 dpm_resume_start(PMSG_RECOVER
);
507 * hibernation_restore - Quiesce devices and restore from a hibernation image.
508 * @platform_mode: If set, use platform driver to prepare for the transition.
510 * This routine must be called with system_transition_mutex held. If it is
511 * successful, control reappears in the restored target kernel in
512 * hibernation_snapshot().
514 int hibernation_restore(int platform_mode
)
518 pm_prepare_console();
520 pm_restrict_gfp_mask();
521 error
= dpm_suspend_start(PMSG_QUIESCE
);
523 error
= resume_target_kernel(platform_mode
);
525 * The above should either succeed and jump to the new kernel,
526 * or return with an error. Otherwise things are just
527 * undefined, so let's be paranoid.
531 dpm_resume_end(PMSG_RECOVER
);
532 pm_restore_gfp_mask();
534 pm_restore_console();
539 * hibernation_platform_enter - Power off the system using the platform driver.
541 int hibernation_platform_enter(void)
545 if (!hibernation_ops
)
549 * We have cancelled the power transition by running
550 * hibernation_ops->finish() before saving the image, so we should let
551 * the firmware know that we're going to enter the sleep state after all
553 error
= hibernation_ops
->begin(PMSG_HIBERNATE
);
557 entering_platform_hibernation
= true;
559 error
= dpm_suspend_start(PMSG_HIBERNATE
);
561 if (hibernation_ops
->recover
)
562 hibernation_ops
->recover();
566 error
= dpm_suspend_end(PMSG_HIBERNATE
);
570 error
= hibernation_ops
->prepare();
572 goto Platform_finish
;
574 error
= suspend_disable_secondary_cpus();
579 system_state
= SYSTEM_SUSPEND
;
581 if (pm_wakeup_pending()) {
586 hibernation_ops
->enter();
587 /* We should never get here */
592 system_state
= SYSTEM_RUNNING
;
596 suspend_enable_secondary_cpus();
599 hibernation_ops
->finish();
601 dpm_resume_start(PMSG_RESTORE
);
604 entering_platform_hibernation
= false;
605 dpm_resume_end(PMSG_RESTORE
);
609 hibernation_ops
->end();
615 * power_down - Shut the machine down for hibernation.
617 * Use the platform driver, if configured, to put the system into the sleep
618 * state corresponding to hibernation, or try to power it off or reboot,
619 * depending on the value of hibernation_mode.
621 static void power_down(void)
623 #ifdef CONFIG_SUSPEND
626 if (hibernation_mode
== HIBERNATION_SUSPEND
) {
627 error
= suspend_devices_and_enter(PM_SUSPEND_MEM
);
629 hibernation_mode
= hibernation_ops
?
630 HIBERNATION_PLATFORM
:
631 HIBERNATION_SHUTDOWN
;
633 /* Restore swap signature. */
634 error
= swsusp_unmark();
636 pr_err("Swap will be unusable! Try swapon -a.\n");
643 switch (hibernation_mode
) {
644 case HIBERNATION_REBOOT
:
645 kernel_restart(NULL
);
647 case HIBERNATION_PLATFORM
:
648 hibernation_platform_enter();
650 case HIBERNATION_SHUTDOWN
:
657 * Valid image is on the disk, if we continue we risk serious data
658 * corruption after resume.
660 pr_crit("Power down manually\n");
665 static int load_image_and_restore(void)
670 pm_pr_dbg("Loading hibernation image.\n");
672 lock_device_hotplug();
673 error
= create_basic_memory_bitmaps();
677 error
= swsusp_read(&flags
);
678 swsusp_close(FMODE_READ
);
680 hibernation_restore(flags
& SF_PLATFORM_MODE
);
682 pr_err("Failed to load hibernation image, recovering.\n");
684 free_basic_memory_bitmaps();
686 unlock_device_hotplug();
692 * hibernate - Carry out system hibernation, including saving the image.
696 int error
, nr_calls
= 0;
697 bool snapshot_test
= false;
699 if (!hibernation_available()) {
700 pm_pr_dbg("Hibernation not available.\n");
705 /* The snapshot device should not be opened while we're running */
706 if (!atomic_add_unless(&snapshot_device_available
, -1, 0)) {
711 pr_info("hibernation entry\n");
712 pm_prepare_console();
713 error
= __pm_notifier_call_chain(PM_HIBERNATION_PREPARE
, -1, &nr_calls
);
721 error
= freeze_processes();
725 lock_device_hotplug();
726 /* Allocate memory management structures */
727 error
= create_basic_memory_bitmaps();
731 error
= hibernation_snapshot(hibernation_mode
== HIBERNATION_PLATFORM
);
732 if (error
|| freezer_test_done
)
736 unsigned int flags
= 0;
738 if (hibernation_mode
== HIBERNATION_PLATFORM
)
739 flags
|= SF_PLATFORM_MODE
;
741 flags
|= SF_NOCOMPRESS_MODE
;
743 flags
|= SF_CRC32_MODE
;
745 pm_pr_dbg("Writing image.\n");
746 error
= swsusp_write(flags
);
749 if (hibernation_mode
== HIBERNATION_TEST_RESUME
)
750 snapshot_test
= true;
755 pm_restore_gfp_mask();
757 pm_pr_dbg("Image restored successfully.\n");
761 free_basic_memory_bitmaps();
763 unlock_device_hotplug();
765 pm_pr_dbg("Checking hibernation image\n");
766 error
= swsusp_check();
768 error
= load_image_and_restore();
772 /* Don't bother checking whether freezer_test_done is true */
773 freezer_test_done
= false;
775 __pm_notifier_call_chain(PM_POST_HIBERNATION
, nr_calls
, NULL
);
776 pm_restore_console();
777 atomic_inc(&snapshot_device_available
);
779 unlock_system_sleep();
780 pr_info("hibernation exit\n");
787 * software_resume - Resume from a saved hibernation image.
789 * This routine is called as a late initcall, when all devices have been
790 * discovered and initialized already.
792 * The image reading code is called to see if there is a hibernation image
793 * available for reading. If that is the case, devices are quiesced and the
794 * contents of memory is restored from the saved image.
796 * If this is successful, control reappears in the restored target kernel in
797 * hibernation_snapshot() which returns to hibernate(). Otherwise, the routine
798 * attempts to recover gracefully and make the kernel return to the normal mode
801 static int software_resume(void)
803 int error
, nr_calls
= 0;
806 * If the user said "noresume".. bail out early.
808 if (noresume
|| !hibernation_available())
812 * name_to_dev_t() below takes a sysfs buffer mutex when sysfs
813 * is configured into the kernel. Since the regular hibernate
814 * trigger path is via sysfs which takes a buffer mutex before
815 * calling hibernate functions (which take system_transition_mutex)
816 * this can cause lockdep to complain about a possible ABBA deadlock
817 * which cannot happen since we're in the boot code here and
818 * sysfs can't be invoked yet. Therefore, we use a subclass
819 * here to avoid lockdep complaining.
821 mutex_lock_nested(&system_transition_mutex
, SINGLE_DEPTH_NESTING
);
823 if (swsusp_resume_device
)
826 if (!strlen(resume_file
)) {
831 pm_pr_dbg("Checking hibernation image partition %s\n", resume_file
);
834 pr_info("Waiting %dsec before reading resume device ...\n",
836 ssleep(resume_delay
);
839 /* Check if the device is there */
840 swsusp_resume_device
= name_to_dev_t(resume_file
);
843 * name_to_dev_t is ineffective to verify parition if resume_file is in
844 * integer format. (e.g. major:minor)
846 if (isdigit(resume_file
[0]) && resume_wait
) {
848 while (!get_gendisk(swsusp_resume_device
, &partno
))
852 if (!swsusp_resume_device
) {
854 * Some device discovery might still be in progress; we need
855 * to wait for this to finish.
857 wait_for_device_probe();
860 while ((swsusp_resume_device
= name_to_dev_t(resume_file
)) == 0)
862 async_synchronize_full();
865 swsusp_resume_device
= name_to_dev_t(resume_file
);
866 if (!swsusp_resume_device
) {
873 pm_pr_dbg("Hibernation image partition %d:%d present\n",
874 MAJOR(swsusp_resume_device
), MINOR(swsusp_resume_device
));
876 pm_pr_dbg("Looking for hibernation image.\n");
877 error
= swsusp_check();
881 /* The snapshot device should not be opened while we're running */
882 if (!atomic_add_unless(&snapshot_device_available
, -1, 0)) {
884 swsusp_close(FMODE_READ
);
888 pr_info("resume from hibernation\n");
889 pm_prepare_console();
890 error
= __pm_notifier_call_chain(PM_RESTORE_PREPARE
, -1, &nr_calls
);
896 pm_pr_dbg("Preparing processes for restore.\n");
897 error
= freeze_processes();
900 error
= load_image_and_restore();
903 __pm_notifier_call_chain(PM_POST_RESTORE
, nr_calls
, NULL
);
904 pm_restore_console();
905 pr_info("resume from hibernation failed (%d)\n", error
);
906 atomic_inc(&snapshot_device_available
);
907 /* For success case, the suspend path will release the lock */
909 mutex_unlock(&system_transition_mutex
);
910 pm_pr_dbg("Hibernation image not present or could not be loaded.\n");
913 swsusp_close(FMODE_READ
);
917 late_initcall_sync(software_resume
);
920 static const char * const hibernation_modes
[] = {
921 [HIBERNATION_PLATFORM
] = "platform",
922 [HIBERNATION_SHUTDOWN
] = "shutdown",
923 [HIBERNATION_REBOOT
] = "reboot",
924 #ifdef CONFIG_SUSPEND
925 [HIBERNATION_SUSPEND
] = "suspend",
927 [HIBERNATION_TEST_RESUME
] = "test_resume",
931 * /sys/power/disk - Control hibernation mode.
933 * Hibernation can be handled in several ways. There are a few different ways
934 * to put the system into the sleep state: using the platform driver (e.g. ACPI
935 * or other hibernation_ops), powering it off or rebooting it (for testing
938 * The sysfs file /sys/power/disk provides an interface for selecting the
939 * hibernation mode to use. Reading from this file causes the available modes
940 * to be printed. There are 3 modes that can be supported:
946 * If a platform hibernation driver is in use, 'platform' will be supported
947 * and will be used by default. Otherwise, 'shutdown' will be used by default.
948 * The selected option (i.e. the one corresponding to the current value of
949 * hibernation_mode) is enclosed by a square bracket.
951 * To select a given hibernation mode it is necessary to write the mode's
952 * string representation (as returned by reading from /sys/power/disk) back
953 * into /sys/power/disk.
956 static ssize_t
disk_show(struct kobject
*kobj
, struct kobj_attribute
*attr
,
962 if (!hibernation_available())
963 return sprintf(buf
, "[disabled]\n");
965 for (i
= HIBERNATION_FIRST
; i
<= HIBERNATION_MAX
; i
++) {
966 if (!hibernation_modes
[i
])
969 case HIBERNATION_SHUTDOWN
:
970 case HIBERNATION_REBOOT
:
971 #ifdef CONFIG_SUSPEND
972 case HIBERNATION_SUSPEND
:
974 case HIBERNATION_TEST_RESUME
:
976 case HIBERNATION_PLATFORM
:
979 /* not a valid mode, continue with loop */
982 if (i
== hibernation_mode
)
983 buf
+= sprintf(buf
, "[%s] ", hibernation_modes
[i
]);
985 buf
+= sprintf(buf
, "%s ", hibernation_modes
[i
]);
987 buf
+= sprintf(buf
, "\n");
991 static ssize_t
disk_store(struct kobject
*kobj
, struct kobj_attribute
*attr
,
992 const char *buf
, size_t n
)
998 int mode
= HIBERNATION_INVALID
;
1000 if (!hibernation_available())
1003 p
= memchr(buf
, '\n', n
);
1004 len
= p
? p
- buf
: n
;
1006 lock_system_sleep();
1007 for (i
= HIBERNATION_FIRST
; i
<= HIBERNATION_MAX
; i
++) {
1008 if (len
== strlen(hibernation_modes
[i
])
1009 && !strncmp(buf
, hibernation_modes
[i
], len
)) {
1014 if (mode
!= HIBERNATION_INVALID
) {
1016 case HIBERNATION_SHUTDOWN
:
1017 case HIBERNATION_REBOOT
:
1018 #ifdef CONFIG_SUSPEND
1019 case HIBERNATION_SUSPEND
:
1021 case HIBERNATION_TEST_RESUME
:
1022 hibernation_mode
= mode
;
1024 case HIBERNATION_PLATFORM
:
1025 if (hibernation_ops
)
1026 hibernation_mode
= mode
;
1034 pm_pr_dbg("Hibernation mode set to '%s'\n",
1035 hibernation_modes
[mode
]);
1036 unlock_system_sleep();
1037 return error
? error
: n
;
1042 static ssize_t
resume_show(struct kobject
*kobj
, struct kobj_attribute
*attr
,
1045 return sprintf(buf
,"%d:%d\n", MAJOR(swsusp_resume_device
),
1046 MINOR(swsusp_resume_device
));
1049 static ssize_t
resume_store(struct kobject
*kobj
, struct kobj_attribute
*attr
,
1050 const char *buf
, size_t n
)
1056 if (len
&& buf
[len
-1] == '\n')
1058 name
= kstrndup(buf
, len
, GFP_KERNEL
);
1062 res
= name_to_dev_t(name
);
1067 lock_system_sleep();
1068 swsusp_resume_device
= res
;
1069 unlock_system_sleep();
1070 pm_pr_dbg("Configured resume from disk to %u\n", swsusp_resume_device
);
1078 static ssize_t
resume_offset_show(struct kobject
*kobj
,
1079 struct kobj_attribute
*attr
, char *buf
)
1081 return sprintf(buf
, "%llu\n", (unsigned long long)swsusp_resume_block
);
1084 static ssize_t
resume_offset_store(struct kobject
*kobj
,
1085 struct kobj_attribute
*attr
, const char *buf
,
1088 unsigned long long offset
;
1091 rc
= kstrtoull(buf
, 0, &offset
);
1094 swsusp_resume_block
= offset
;
1099 power_attr(resume_offset
);
1101 static ssize_t
image_size_show(struct kobject
*kobj
, struct kobj_attribute
*attr
,
1104 return sprintf(buf
, "%lu\n", image_size
);
1107 static ssize_t
image_size_store(struct kobject
*kobj
, struct kobj_attribute
*attr
,
1108 const char *buf
, size_t n
)
1112 if (sscanf(buf
, "%lu", &size
) == 1) {
1120 power_attr(image_size
);
1122 static ssize_t
reserved_size_show(struct kobject
*kobj
,
1123 struct kobj_attribute
*attr
, char *buf
)
1125 return sprintf(buf
, "%lu\n", reserved_size
);
1128 static ssize_t
reserved_size_store(struct kobject
*kobj
,
1129 struct kobj_attribute
*attr
,
1130 const char *buf
, size_t n
)
1134 if (sscanf(buf
, "%lu", &size
) == 1) {
1135 reserved_size
= size
;
1142 power_attr(reserved_size
);
1144 static struct attribute
* g
[] = {
1146 &resume_offset_attr
.attr
,
1148 &image_size_attr
.attr
,
1149 &reserved_size_attr
.attr
,
1154 static const struct attribute_group attr_group
= {
1159 static int __init
pm_disk_init(void)
1161 return sysfs_create_group(power_kobj
, &attr_group
);
1164 core_initcall(pm_disk_init
);
1167 static int __init
resume_setup(char *str
)
1172 strncpy( resume_file
, str
, 255 );
1176 static int __init
resume_offset_setup(char *str
)
1178 unsigned long long offset
;
1183 if (sscanf(str
, "%llu", &offset
) == 1)
1184 swsusp_resume_block
= offset
;
1189 static int __init
hibernate_setup(char *str
)
1191 if (!strncmp(str
, "noresume", 8)) {
1193 } else if (!strncmp(str
, "nocompress", 10)) {
1195 } else if (!strncmp(str
, "no", 2)) {
1198 } else if (IS_ENABLED(CONFIG_STRICT_KERNEL_RWX
)
1199 && !strncmp(str
, "protect_image", 13)) {
1200 enable_restore_image_protection();
1205 static int __init
noresume_setup(char *str
)
1211 static int __init
resumewait_setup(char *str
)
1217 static int __init
resumedelay_setup(char *str
)
1219 int rc
= kstrtouint(str
, 0, &resume_delay
);
1226 static int __init
nohibernate_setup(char *str
)
1233 __setup("noresume", noresume_setup
);
1234 __setup("resume_offset=", resume_offset_setup
);
1235 __setup("resume=", resume_setup
);
1236 __setup("hibernate=", hibernate_setup
);
1237 __setup("resumewait", resumewait_setup
);
1238 __setup("resumedelay=", resumedelay_setup
);
1239 __setup("nohibernate", nohibernate_setup
);