Merge tag 'drm-misc-fixes-2023-08-03' of ssh://git.freedesktop.org/git/drm/drm-misc...
[linux-block.git] / kernel / power / hibernate.c
CommitLineData
55716d26 1// SPDX-License-Identifier: GPL-2.0-only
1da177e4 2/*
8b759b84 3 * kernel/power/hibernate.c - Hibernation (a.k.a suspend-to-disk) support.
1da177e4
LT
4 *
5 * Copyright (c) 2003 Patrick Mochel
6 * Copyright (c) 2003 Open Source Development Lab
a2531293 7 * Copyright (c) 2004 Pavel Machek <pavel@ucw.cz>
8b759b84 8 * Copyright (c) 2009 Rafael J. Wysocki, Novell Inc.
62c552cc 9 * Copyright (C) 2012 Bojan Smojver <bojan@rexursive.com>
1da177e4
LT
10 */
11
7a7b99bf 12#define pr_fmt(fmt) "PM: hibernation: " fmt
2872de13 13
cf056a43 14#include <linux/blkdev.h>
6e5fdeed 15#include <linux/export.h>
1da177e4 16#include <linux/suspend.h>
1da177e4
LT
17#include <linux/reboot.h>
18#include <linux/string.h>
19#include <linux/device.h>
6f8d7022 20#include <linux/async.h>
1da177e4
LT
21#include <linux/delay.h>
22#include <linux/fs.h>
d53d9f16 23#include <linux/mount.h>
88d10bba 24#include <linux/pm.h>
38b8d208 25#include <linux/nmi.h>
97c7801c 26#include <linux/console.h>
e3920fb4 27#include <linux/cpu.h>
7dfb7103 28#include <linux/freezer.h>
5a0e3ad6 29#include <linux/gfp.h>
40dc166c 30#include <linux/syscore_ops.h>
2df83fa4 31#include <linux/ctype.h>
db597605 32#include <linux/ktime.h>
38bd94b8 33#include <linux/security.h>
9a436f8f 34#include <linux/secretmem.h>
bb3632c6 35#include <trace/events/power.h>
d53d9f16 36
1da177e4
LT
37#include "power.h"
38
39
d231ff1a
BS
40static int nocompress;
41static int noresume;
a6e15a39 42static int nohibernate;
d231ff1a 43static int resume_wait;
f6514be5 44static unsigned int resume_delay;
47a460d5 45static char resume_file[256] = CONFIG_PM_STD_PARTITION;
1da177e4 46dev_t swsusp_resume_device;
9a154d9d 47sector_t swsusp_resume_block;
d6efc2f7 48__visible int in_suspend __nosavedata;
1da177e4 49
a3d25c27
RW
50enum {
51 HIBERNATION_INVALID,
52 HIBERNATION_PLATFORM,
a3d25c27
RW
53 HIBERNATION_SHUTDOWN,
54 HIBERNATION_REBOOT,
62c552cc
BS
55#ifdef CONFIG_SUSPEND
56 HIBERNATION_SUSPEND,
57#endif
fe12c00d 58 HIBERNATION_TEST_RESUME,
a3d25c27
RW
59 /* keep last */
60 __HIBERNATION_AFTER_LAST
61};
62#define HIBERNATION_MAX (__HIBERNATION_AFTER_LAST-1)
63#define HIBERNATION_FIRST (HIBERNATION_INVALID + 1)
64
65static int hibernation_mode = HIBERNATION_SHUTDOWN;
66
97819a26 67bool freezer_test_done;
aa9a7b11 68
073ef1f6 69static const struct platform_hibernation_ops *hibernation_ops;
a3d25c27 70
ab7e9b06
DA
71static atomic_t hibernate_atomic = ATOMIC_INIT(1);
72
73bool hibernate_acquire(void)
74{
75 return atomic_add_unless(&hibernate_atomic, -1, 0);
76}
77
78void hibernate_release(void)
79{
80 atomic_inc(&hibernate_atomic);
81}
82
a6e15a39
KC
83bool hibernation_available(void)
84{
9a436f8f
MR
85 return nohibernate == 0 &&
86 !security_locked_down(LOCKDOWN_HIBERNATION) &&
9ea4dcf4 87 !secretmem_active() && !cxl_mem_active();
a6e15a39
KC
88}
89
a3d25c27 90/**
f42a9813
RW
91 * hibernation_set_ops - Set the global hibernate operations.
92 * @ops: Hibernation operations to use in subsequent hibernation transitions.
a3d25c27 93 */
073ef1f6 94void hibernation_set_ops(const struct platform_hibernation_ops *ops)
a3d25c27 95{
5950e5d5
PZ
96 unsigned int sleep_flags;
97
caea99ef
RW
98 if (ops && !(ops->begin && ops->end && ops->pre_snapshot
99 && ops->prepare && ops->finish && ops->enter && ops->pre_restore
5729c63a 100 && ops->restore_cleanup && ops->leave)) {
a3d25c27
RW
101 WARN_ON(1);
102 return;
103 }
5950e5d5
PZ
104
105 sleep_flags = lock_system_sleep();
106
a3d25c27
RW
107 hibernation_ops = ops;
108 if (ops)
109 hibernation_mode = HIBERNATION_PLATFORM;
110 else if (hibernation_mode == HIBERNATION_PLATFORM)
111 hibernation_mode = HIBERNATION_SHUTDOWN;
112
5950e5d5 113 unlock_system_sleep(sleep_flags);
a3d25c27 114}
e0c7855e 115EXPORT_SYMBOL_GPL(hibernation_set_ops);
a3d25c27 116
abfe2d7b
RW
117static bool entering_platform_hibernation;
118
119bool system_entering_hibernation(void)
120{
121 return entering_platform_hibernation;
122}
123EXPORT_SYMBOL(system_entering_hibernation);
124
4cc79776
RW
125#ifdef CONFIG_PM_DEBUG
126static void hibernation_debug_sleep(void)
127{
7a7b99bf 128 pr_info("debug: Waiting for 5 seconds.\n");
4cc79776
RW
129 mdelay(5000);
130}
131
4cc79776
RW
132static int hibernation_test(int level)
133{
134 if (pm_test_level == level) {
135 hibernation_debug_sleep();
136 return 1;
137 }
138 return 0;
139}
140#else /* !CONFIG_PM_DEBUG */
4cc79776
RW
141static int hibernation_test(int level) { return 0; }
142#endif /* !CONFIG_PM_DEBUG */
143
74f270af 144/**
f42a9813
RW
145 * platform_begin - Call platform to start hibernation.
146 * @platform_mode: Whether or not to use the platform driver.
74f270af 147 */
caea99ef 148static int platform_begin(int platform_mode)
74f270af
RW
149{
150 return (platform_mode && hibernation_ops) ?
bb186901 151 hibernation_ops->begin(PMSG_FREEZE) : 0;
caea99ef
RW
152}
153
154/**
f42a9813
RW
155 * platform_end - Call platform to finish transition to the working state.
156 * @platform_mode: Whether or not to use the platform driver.
caea99ef 157 */
caea99ef
RW
158static void platform_end(int platform_mode)
159{
160 if (platform_mode && hibernation_ops)
161 hibernation_ops->end();
74f270af 162}
a3d25c27 163
8a05aac2 164/**
f42a9813
RW
165 * platform_pre_snapshot - Call platform to prepare the machine for hibernation.
166 * @platform_mode: Whether or not to use the platform driver.
167 *
168 * Use the platform driver to prepare the system for creating a hibernate image,
169 * if so configured, and return an error code if that fails.
8a05aac2
SS
170 */
171
74f270af 172static int platform_pre_snapshot(int platform_mode)
8a05aac2 173{
7777fab9 174 return (platform_mode && hibernation_ops) ?
74f270af 175 hibernation_ops->pre_snapshot() : 0;
a3d25c27 176}
8a05aac2 177
c7e0831d 178/**
f42a9813
RW
179 * platform_leave - Call platform to prepare a transition to the working state.
180 * @platform_mode: Whether or not to use the platform driver.
181 *
182 * Use the platform driver prepare to prepare the machine for switching to the
183 * normal mode of operation.
184 *
185 * This routine is called on one CPU with interrupts disabled.
c7e0831d 186 */
c7e0831d
RW
187static void platform_leave(int platform_mode)
188{
189 if (platform_mode && hibernation_ops)
190 hibernation_ops->leave();
191}
192
a3d25c27 193/**
f42a9813
RW
194 * platform_finish - Call platform to switch the system to the working state.
195 * @platform_mode: Whether or not to use the platform driver.
196 *
197 * Use the platform driver to switch the machine to the normal mode of
198 * operation.
199 *
200 * This routine must be called after platform_prepare().
a3d25c27 201 */
7777fab9 202static void platform_finish(int platform_mode)
a3d25c27 203{
7777fab9 204 if (platform_mode && hibernation_ops)
a3d25c27 205 hibernation_ops->finish();
8a05aac2
SS
206}
207
a634cc10 208/**
f42a9813
RW
209 * platform_pre_restore - Prepare for hibernate image restoration.
210 * @platform_mode: Whether or not to use the platform driver.
211 *
212 * Use the platform driver to prepare the system for resume from a hibernation
213 * image.
214 *
215 * If the restore fails after this function has been called,
216 * platform_restore_cleanup() must be called.
a634cc10 217 */
a634cc10
RW
218static int platform_pre_restore(int platform_mode)
219{
220 return (platform_mode && hibernation_ops) ?
221 hibernation_ops->pre_restore() : 0;
222}
223
224/**
f42a9813
RW
225 * platform_restore_cleanup - Switch to the working state after failing restore.
226 * @platform_mode: Whether or not to use the platform driver.
227 *
228 * Use the platform driver to switch the system to the normal mode of operation
229 * after a failing restore.
230 *
231 * If platform_pre_restore() has been called before the failing restore, this
232 * function must be called too, regardless of the result of
233 * platform_pre_restore().
a634cc10 234 */
a634cc10
RW
235static void platform_restore_cleanup(int platform_mode)
236{
237 if (platform_mode && hibernation_ops)
238 hibernation_ops->restore_cleanup();
239}
240
d8f3de0d 241/**
f42a9813
RW
242 * platform_recover - Recover from a failure to suspend devices.
243 * @platform_mode: Whether or not to use the platform driver.
d8f3de0d 244 */
d8f3de0d
RW
245static void platform_recover(int platform_mode)
246{
247 if (platform_mode && hibernation_ops && hibernation_ops->recover)
248 hibernation_ops->recover();
249}
250
8e60c6a1 251/**
f42a9813
RW
252 * swsusp_show_speed - Print time elapsed between two events during hibernation.
253 * @start: Starting event.
254 * @stop: Final event.
255 * @nr_pages: Number of memory pages processed between @start and @stop.
256 * @msg: Additional diagnostic message to print.
8e60c6a1 257 */
db597605
TR
258void swsusp_show_speed(ktime_t start, ktime_t stop,
259 unsigned nr_pages, char *msg)
8e60c6a1 260{
db597605 261 ktime_t diff;
4881f603
CG
262 u64 elapsed_centisecs64;
263 unsigned int centisecs;
264 unsigned int k;
265 unsigned int kps;
8e60c6a1 266
db597605
TR
267 diff = ktime_sub(stop, start);
268 elapsed_centisecs64 = ktime_divns(diff, 10*NSEC_PER_MSEC);
8e60c6a1
NC
269 centisecs = elapsed_centisecs64;
270 if (centisecs == 0)
271 centisecs = 1; /* avoid div-by-zero */
272 k = nr_pages * (PAGE_SIZE / 1024);
273 kps = (k * 100) / centisecs;
2872de13
RW
274 pr_info("%s %u kbytes in %u.%02u seconds (%u.%02u MB/s)\n",
275 msg, k, centisecs / 100, centisecs % 100, kps / 1000,
276 (kps % 1000) / 10);
8e60c6a1
NC
277}
278
ec527c31
JK
279__weak int arch_resume_nosmt(void)
280{
281 return 0;
282}
283
c7e0831d 284/**
f42a9813
RW
285 * create_image - Create a hibernation image.
286 * @platform_mode: Whether or not to use the platform driver.
287 *
cf579dfb
RW
288 * Execute device drivers' "late" and "noirq" freeze callbacks, create a
289 * hibernation image and run the drivers' "noirq" and "early" thaw callbacks.
f42a9813
RW
290 *
291 * Control reappears in this routine after the subsequent restore.
c7e0831d 292 */
47a460d5 293static int create_image(int platform_mode)
c7e0831d
RW
294{
295 int error;
296
cf579dfb 297 error = dpm_suspend_end(PMSG_FREEZE);
c7e0831d 298 if (error) {
7a7b99bf 299 pr_err("Some devices failed to power down, aborting\n");
32bdfac5 300 return error;
c7e0831d 301 }
2ed8d2b3 302
4aecd671
RW
303 error = platform_pre_snapshot(platform_mode);
304 if (error || hibernation_test(TEST_PLATFORM))
305 goto Platform_finish;
306
23f62d7a 307 error = pm_sleep_disable_secondary_cpus();
48580ab8 308 if (error || hibernation_test(TEST_CPUS))
4aecd671
RW
309 goto Enable_cpus;
310
2ed8d2b3
RW
311 local_irq_disable();
312
c1a957d1
TG
313 system_state = SYSTEM_SUSPEND;
314
2e711c04 315 error = syscore_suspend();
770824bd 316 if (error) {
7a7b99bf 317 pr_err("Some system devices failed to power down, aborting\n");
4aecd671 318 goto Enable_irqs;
770824bd 319 }
c7e0831d 320
a2867e08 321 if (hibernation_test(TEST_CORE) || pm_wakeup_pending())
4cc79776
RW
322 goto Power_up;
323
324 in_suspend = 1;
c7e0831d 325 save_processor_state();
bb3632c6 326 trace_suspend_resume(TPS("machine_suspend"), PM_EVENT_HIBERNATE, true);
c7e0831d 327 error = swsusp_arch_suspend();
62822e2e
TG
328 /* Restore control flow magically appears here */
329 restore_processor_state();
bb3632c6 330 trace_suspend_resume(TPS("machine_suspend"), PM_EVENT_HIBERNATE, false);
c7e0831d 331 if (error)
7a7b99bf 332 pr_err("Error %d creating image\n", error);
2872de13 333
1ad1410f 334 if (!in_suspend) {
c125e96f 335 events_check_enabled = false;
03b6c9a3 336 clear_or_poison_free_pages();
1ad1410f 337 }
362e77d1
BM
338
339 platform_leave(platform_mode);
4aecd671 340
4cc79776 341 Power_up:
40dc166c 342 syscore_resume();
2ed8d2b3 343
4aecd671 344 Enable_irqs:
c1a957d1 345 system_state = SYSTEM_RUNNING;
2ed8d2b3
RW
346 local_irq_enable();
347
4aecd671 348 Enable_cpus:
23f62d7a 349 pm_sleep_enable_secondary_cpus();
4aecd671 350
ec527c31
JK
351 /* Allow architectures to do nosmt-specific post-resume dances */
352 if (!in_suspend)
353 error = arch_resume_nosmt();
354
4aecd671
RW
355 Platform_finish:
356 platform_finish(platform_mode);
357
cf579dfb 358 dpm_resume_start(in_suspend ?
1eede070 359 (error ? PMSG_RECOVER : PMSG_THAW) : PMSG_RESTORE);
2ed8d2b3 360
c7e0831d
RW
361 return error;
362}
363
7777fab9 364/**
f42a9813
RW
365 * hibernation_snapshot - Quiesce devices and create a hibernation image.
366 * @platform_mode: If set, use platform driver to prepare for the transition.
7777fab9 367 *
55f2503c 368 * This routine must be called with system_transition_mutex held.
7777fab9 369 */
7777fab9
RW
370int hibernation_snapshot(int platform_mode)
371{
953a2063 372 pm_message_t msg;
cbe2f5a6 373 int error;
7777fab9 374
27614273 375 pm_suspend_clear_flags();
3fe0313e 376 error = platform_begin(platform_mode);
7777fab9 377 if (error)
d074ee02 378 goto Close;
7777fab9 379
64a473cb
RW
380 /* Preallocate image memory before shutting down devices. */
381 error = hibernate_preallocate_memory();
2aede851
RW
382 if (error)
383 goto Close;
384
385 error = freeze_kernel_threads();
386 if (error)
bb58dd5d 387 goto Cleanup;
2aede851 388
48580ab8 389 if (hibernation_test(TEST_FREEZER)) {
aa9a7b11
SB
390
391 /*
392 * Indicate to the caller that we are returning due to a
393 * successful freezer test.
394 */
395 freezer_test_done = true;
51d6ff7a 396 goto Thaw;
aa9a7b11
SB
397 }
398
2aede851 399 error = dpm_prepare(PMSG_FREEZE);
bb58dd5d 400 if (error) {
953a2063 401 dpm_complete(PMSG_RECOVER);
51d6ff7a 402 goto Thaw;
bb58dd5d 403 }
74f270af 404
7777fab9 405 suspend_console();
c9e664f1 406 pm_restrict_gfp_mask();
953a2063 407
91e7c75b 408 error = dpm_suspend(PMSG_FREEZE);
10a1803d 409
953a2063
SB
410 if (error || hibernation_test(TEST_DEVICES))
411 platform_recover(platform_mode);
412 else
413 error = create_image(platform_mode);
7777fab9 414
c9e664f1 415 /*
953a2063
SB
416 * In the case that we call create_image() above, the control
417 * returns here (1) after the image has been created or the
c9e664f1
RW
418 * image creation has failed and (2) after a successful restore.
419 */
4cc79776 420
64a473cb
RW
421 /* We may need to release the preallocated image pages here. */
422 if (error || !in_suspend)
423 swsusp_free();
424
91e7c75b
RW
425 msg = in_suspend ? (error ? PMSG_RECOVER : PMSG_THAW) : PMSG_RESTORE;
426 dpm_resume(msg);
c9e664f1
RW
427
428 if (error || !in_suspend)
429 pm_restore_gfp_mask();
430
7777fab9 431 resume_console();
91e7c75b
RW
432 dpm_complete(msg);
433
caea99ef
RW
434 Close:
435 platform_end(platform_mode);
7777fab9 436 return error;
d8f3de0d 437
51d6ff7a
SB
438 Thaw:
439 thaw_kernel_threads();
bb58dd5d
RW
440 Cleanup:
441 swsusp_free();
442 goto Close;
7777fab9
RW
443}
444
406f992e
RW
445int __weak hibernate_resume_nonboot_cpu_disable(void)
446{
2f1a6fbb 447 return suspend_disable_secondary_cpus();
406f992e
RW
448}
449
72df68ca 450/**
f42a9813
RW
451 * resume_target_kernel - Restore system state from a hibernation image.
452 * @platform_mode: Whether or not to use the platform driver.
453 *
cf579dfb
RW
454 * Execute device drivers' "noirq" and "late" freeze callbacks, restore the
455 * contents of highmem that have not been restored yet from the image and run
456 * the low-level code that will restore the remaining contents of memory and
457 * switch to the just restored target kernel.
72df68ca 458 */
4aecd671 459static int resume_target_kernel(bool platform_mode)
72df68ca
RW
460{
461 int error;
462
cf579dfb 463 error = dpm_suspend_end(PMSG_QUIESCE);
72df68ca 464 if (error) {
2872de13 465 pr_err("Some devices failed to power down, aborting resume\n");
32bdfac5 466 return error;
72df68ca 467 }
2ed8d2b3 468
4aecd671
RW
469 error = platform_pre_restore(platform_mode);
470 if (error)
471 goto Cleanup;
472
23f62d7a
RW
473 cpuidle_pause();
474
406f992e 475 error = hibernate_resume_nonboot_cpu_disable();
4aecd671
RW
476 if (error)
477 goto Enable_cpus;
478
2ed8d2b3 479 local_irq_disable();
c1a957d1 480 system_state = SYSTEM_SUSPEND;
2ed8d2b3 481
2e711c04 482 error = syscore_suspend();
4aecd671
RW
483 if (error)
484 goto Enable_irqs;
485
72df68ca
RW
486 save_processor_state();
487 error = restore_highmem();
488 if (!error) {
489 error = swsusp_arch_resume();
490 /*
491 * The code below is only ever reached in case of a failure.
4e2d9491
RW
492 * Otherwise, execution continues at the place where
493 * swsusp_arch_suspend() was called.
72df68ca
RW
494 */
495 BUG_ON(!error);
4e2d9491
RW
496 /*
497 * This call to restore_highmem() reverts the changes made by
498 * the previous one.
499 */
72df68ca
RW
500 restore_highmem();
501 }
502 /*
503 * The only reason why swsusp_arch_resume() can fail is memory being
504 * very tight, so we have to free it as soon as we can to avoid
4e2d9491 505 * subsequent failures.
72df68ca
RW
506 */
507 swsusp_free();
508 restore_processor_state();
509 touch_softlockup_watchdog();
2ed8d2b3 510
40dc166c 511 syscore_resume();
2ed8d2b3 512
4aecd671 513 Enable_irqs:
c1a957d1 514 system_state = SYSTEM_RUNNING;
72df68ca 515 local_irq_enable();
2ed8d2b3 516
4aecd671 517 Enable_cpus:
23f62d7a 518 pm_sleep_enable_secondary_cpus();
4aecd671
RW
519
520 Cleanup:
521 platform_restore_cleanup(platform_mode);
522
cf579dfb 523 dpm_resume_start(PMSG_RECOVER);
2ed8d2b3 524
72df68ca
RW
525 return error;
526}
527
7777fab9 528/**
f42a9813
RW
529 * hibernation_restore - Quiesce devices and restore from a hibernation image.
530 * @platform_mode: If set, use platform driver to prepare for the transition.
7777fab9 531 *
55f2503c
PL
532 * This routine must be called with system_transition_mutex held. If it is
533 * successful, control reappears in the restored target kernel in
534 * hibernation_snapshot().
7777fab9 535 */
a634cc10 536int hibernation_restore(int platform_mode)
7777fab9 537{
cbe2f5a6 538 int error;
7777fab9
RW
539
540 pm_prepare_console();
541 suspend_console();
c9e664f1 542 pm_restrict_gfp_mask();
d1616302 543 error = dpm_suspend_start(PMSG_QUIESCE);
a634cc10 544 if (!error) {
4aecd671 545 error = resume_target_kernel(platform_mode);
94fb823f
ID
546 /*
547 * The above should either succeed and jump to the new kernel,
548 * or return with an error. Otherwise things are just
549 * undefined, so let's be paranoid.
550 */
551 BUG_ON(!error);
a634cc10 552 }
94fb823f 553 dpm_resume_end(PMSG_RECOVER);
c9e664f1 554 pm_restore_gfp_mask();
7777fab9
RW
555 resume_console();
556 pm_restore_console();
557 return error;
558}
559
560/**
f42a9813 561 * hibernation_platform_enter - Power off the system using the platform driver.
7777fab9 562 */
7777fab9
RW
563int hibernation_platform_enter(void)
564{
cbe2f5a6 565 int error;
b1457bcc 566
9cd9a005
RW
567 if (!hibernation_ops)
568 return -ENOSYS;
569
570 /*
571 * We have cancelled the power transition by running
572 * hibernation_ops->finish() before saving the image, so we should let
573 * the firmware know that we're going to enter the sleep state after all
574 */
bb186901 575 error = hibernation_ops->begin(PMSG_HIBERNATE);
9cd9a005 576 if (error)
caea99ef 577 goto Close;
9cd9a005 578
abfe2d7b 579 entering_platform_hibernation = true;
9cd9a005 580 suspend_console();
d1616302 581 error = dpm_suspend_start(PMSG_HIBERNATE);
d8f3de0d
RW
582 if (error) {
583 if (hibernation_ops->recover)
584 hibernation_ops->recover();
585 goto Resume_devices;
586 }
9cd9a005 587
cf579dfb 588 error = dpm_suspend_end(PMSG_HIBERNATE);
4aecd671 589 if (error)
32bdfac5 590 goto Resume_devices;
4aecd671 591
9cd9a005
RW
592 error = hibernation_ops->prepare();
593 if (error)
e681c9dd 594 goto Platform_finish;
9cd9a005 595
23f62d7a 596 error = pm_sleep_disable_secondary_cpus();
9cd9a005 597 if (error)
8c506608 598 goto Enable_cpus;
2ed8d2b3 599
4aecd671 600 local_irq_disable();
c1a957d1 601 system_state = SYSTEM_SUSPEND;
40dc166c 602 syscore_suspend();
a2867e08 603 if (pm_wakeup_pending()) {
c125e96f
RW
604 error = -EAGAIN;
605 goto Power_up;
606 }
607
4aecd671
RW
608 hibernation_ops->enter();
609 /* We should never get here */
610 while (1);
9cd9a005 611
c125e96f 612 Power_up:
40dc166c 613 syscore_resume();
c1a957d1 614 system_state = SYSTEM_RUNNING;
c125e96f 615 local_irq_enable();
8c506608
VK
616
617 Enable_cpus:
23f62d7a 618 pm_sleep_enable_secondary_cpus();
c125e96f 619
e681c9dd 620 Platform_finish:
9cd9a005 621 hibernation_ops->finish();
2ed8d2b3 622
cf579dfb 623 dpm_resume_start(PMSG_RESTORE);
4aecd671 624
9cd9a005 625 Resume_devices:
abfe2d7b 626 entering_platform_hibernation = false;
d1616302 627 dpm_resume_end(PMSG_RESTORE);
9cd9a005 628 resume_console();
2ed8d2b3 629
caea99ef
RW
630 Close:
631 hibernation_ops->end();
2ed8d2b3 632
b1457bcc 633 return error;
7777fab9
RW
634}
635
1da177e4 636/**
f42a9813 637 * power_down - Shut the machine down for hibernation.
1da177e4 638 *
f42a9813
RW
639 * Use the platform driver, if configured, to put the system into the sleep
640 * state corresponding to hibernation, or try to power it off or reboot,
641 * depending on the value of hibernation_mode.
1da177e4 642 */
fe0c935a 643static void power_down(void)
1da177e4 644{
62c552cc
BS
645#ifdef CONFIG_SUSPEND
646 int error;
81d45bdf
RW
647
648 if (hibernation_mode == HIBERNATION_SUSPEND) {
85850af4 649 error = suspend_devices_and_enter(mem_sleep_current);
81d45bdf
RW
650 if (error) {
651 hibernation_mode = hibernation_ops ?
652 HIBERNATION_PLATFORM :
653 HIBERNATION_SHUTDOWN;
654 } else {
655 /* Restore swap signature. */
656 error = swsusp_unmark();
657 if (error)
2872de13 658 pr_err("Swap will be unusable! Try swapon -a.\n");
81d45bdf
RW
659
660 return;
661 }
662 }
62c552cc
BS
663#endif
664
a3d25c27 665 switch (hibernation_mode) {
a3d25c27 666 case HIBERNATION_REBOOT:
fdde86ac 667 kernel_restart(NULL);
1da177e4 668 break;
a3d25c27 669 case HIBERNATION_PLATFORM:
7777fab9 670 hibernation_platform_enter();
df561f66 671 fallthrough;
9cd9a005 672 case HIBERNATION_SHUTDOWN:
20277326 673 if (kernel_can_power_off())
2c730785 674 kernel_power_off();
9cd9a005 675 break;
1da177e4 676 }
fdde86ac 677 kernel_halt();
fe0c935a
JB
678 /*
679 * Valid image is on the disk, if we continue we risk serious data
680 * corruption after resume.
681 */
2872de13 682 pr_crit("Power down manually\n");
2c730785
SC
683 while (1)
684 cpu_relax();
1da177e4
LT
685}
686
d6545e68 687static int load_image_and_restore(bool snapshot_test)
fe12c00d
CY
688{
689 int error;
690 unsigned int flags;
691
8d8b2441 692 pm_pr_dbg("Loading hibernation image.\n");
fe12c00d
CY
693
694 lock_device_hotplug();
695 error = create_basic_memory_bitmaps();
3f51aa9e 696 if (error) {
2736e8ee 697 swsusp_close(snapshot_test);
fe12c00d 698 goto Unlock;
3f51aa9e 699 }
fe12c00d
CY
700
701 error = swsusp_read(&flags);
2736e8ee 702 swsusp_close(snapshot_test);
fe12c00d 703 if (!error)
3704a6a4 704 error = hibernation_restore(flags & SF_PLATFORM_MODE);
fe12c00d 705
7a7b99bf 706 pr_err("Failed to load image, recovering.\n");
fe12c00d
CY
707 swsusp_free();
708 free_basic_memory_bitmaps();
709 Unlock:
710 unlock_device_hotplug();
711
712 return error;
713}
714
1da177e4 715/**
f42a9813 716 * hibernate - Carry out system hibernation, including saving the image.
1da177e4 717 */
a3d25c27 718int hibernate(void)
1da177e4 719{
d6545e68 720 bool snapshot_test = false;
5950e5d5 721 unsigned int sleep_flags;
70d93298 722 int error;
1da177e4 723
a6e15a39 724 if (!hibernation_available()) {
8d8b2441 725 pm_pr_dbg("Hibernation not available.\n");
a6e15a39
KC
726 return -EPERM;
727 }
728
5950e5d5 729 sleep_flags = lock_system_sleep();
0709db60 730 /* The snapshot device should not be opened while we're running */
ab7e9b06 731 if (!hibernate_acquire()) {
b10d9117
RW
732 error = -EBUSY;
733 goto Unlock;
734 }
735
8915aa20 736 pr_info("hibernation entry\n");
5a0a2f30 737 pm_prepare_console();
70d93298
PZ
738 error = pm_notifier_call_chain_robust(PM_HIBERNATION_PREPARE, PM_POST_HIBERNATION);
739 if (error)
740 goto Restore;
0709db60 741
b5dee313 742 ksys_sync_helper();
232b1432 743
03afed8b 744 error = freeze_processes();
5a72e04d 745 if (error)
8fd37a4c
RW
746 goto Exit;
747
942f4015 748 lock_device_hotplug();
8fd37a4c
RW
749 /* Allocate memory management structures */
750 error = create_basic_memory_bitmaps();
751 if (error)
752 goto Thaw;
1da177e4 753
7777fab9 754 error = hibernation_snapshot(hibernation_mode == HIBERNATION_PLATFORM);
a556d5b5 755 if (error || freezer_test_done)
8fd37a4c 756 goto Free_bitmaps;
64a473cb
RW
757
758 if (in_suspend) {
a634cc10
RW
759 unsigned int flags = 0;
760
761 if (hibernation_mode == HIBERNATION_PLATFORM)
762 flags |= SF_PLATFORM_MODE;
f996fc96
BS
763 if (nocompress)
764 flags |= SF_NOCOMPRESS_MODE;
081a9d04
BS
765 else
766 flags |= SF_CRC32_MODE;
767
7a7b99bf 768 pm_pr_dbg("Writing hibernation image.\n");
a634cc10 769 error = swsusp_write(flags);
7777fab9 770 swsusp_free();
fe12c00d
CY
771 if (!error) {
772 if (hibernation_mode == HIBERNATION_TEST_RESUME)
773 snapshot_test = true;
774 else
775 power_down();
776 }
5262a475 777 in_suspend = 0;
c9e664f1 778 pm_restore_gfp_mask();
b918f6e6 779 } else {
7a7b99bf 780 pm_pr_dbg("Hibernation image restored successfully.\n");
b918f6e6 781 }
64a473cb 782
8fd37a4c
RW
783 Free_bitmaps:
784 free_basic_memory_bitmaps();
b918f6e6 785 Thaw:
942f4015 786 unlock_device_hotplug();
fe12c00d 787 if (snapshot_test) {
8d8b2441 788 pm_pr_dbg("Checking hibernation image\n");
d6545e68 789 error = swsusp_check(snapshot_test);
fe12c00d 790 if (!error)
d6545e68 791 error = load_image_and_restore(snapshot_test);
fe12c00d 792 }
5a0a2f30 793 thaw_processes();
a556d5b5
SB
794
795 /* Don't bother checking whether freezer_test_done is true */
796 freezer_test_done = false;
0709db60 797 Exit:
70d93298
PZ
798 pm_notifier_call_chain(PM_POST_HIBERNATION);
799 Restore:
5a0a2f30 800 pm_restore_console();
ab7e9b06 801 hibernate_release();
b10d9117 802 Unlock:
5950e5d5 803 unlock_system_sleep(sleep_flags);
8915aa20
RW
804 pr_info("hibernation exit\n");
805
1da177e4
LT
806 return error;
807}
808
48001ea5
DW
809/**
810 * hibernate_quiet_exec - Execute a function with all devices frozen.
811 * @func: Function to execute.
812 * @data: Data pointer to pass to @func.
813 *
814 * Return the @func return value or an error code if it cannot be executed.
815 */
816int hibernate_quiet_exec(int (*func)(void *data), void *data)
817{
5950e5d5 818 unsigned int sleep_flags;
70d93298 819 int error;
48001ea5 820
5950e5d5 821 sleep_flags = lock_system_sleep();
48001ea5
DW
822
823 if (!hibernate_acquire()) {
824 error = -EBUSY;
825 goto unlock;
826 }
827
828 pm_prepare_console();
829
70d93298
PZ
830 error = pm_notifier_call_chain_robust(PM_HIBERNATION_PREPARE, PM_POST_HIBERNATION);
831 if (error)
832 goto restore;
48001ea5
DW
833
834 error = freeze_processes();
835 if (error)
836 goto exit;
837
838 lock_device_hotplug();
839
840 pm_suspend_clear_flags();
841
842 error = platform_begin(true);
843 if (error)
844 goto thaw;
845
846 error = freeze_kernel_threads();
847 if (error)
848 goto thaw;
849
850 error = dpm_prepare(PMSG_FREEZE);
851 if (error)
852 goto dpm_complete;
853
854 suspend_console();
855
856 error = dpm_suspend(PMSG_FREEZE);
857 if (error)
858 goto dpm_resume;
859
860 error = dpm_suspend_end(PMSG_FREEZE);
861 if (error)
862 goto dpm_resume;
863
864 error = platform_pre_snapshot(true);
865 if (error)
866 goto skip;
867
868 error = func(data);
869
870skip:
871 platform_finish(true);
872
873 dpm_resume_start(PMSG_THAW);
874
875dpm_resume:
876 dpm_resume(PMSG_THAW);
877
878 resume_console();
879
880dpm_complete:
881 dpm_complete(PMSG_THAW);
882
883 thaw_kernel_threads();
884
885thaw:
886 platform_end(true);
887
888 unlock_device_hotplug();
889
890 thaw_processes();
891
892exit:
70d93298 893 pm_notifier_call_chain(PM_POST_HIBERNATION);
48001ea5 894
70d93298 895restore:
48001ea5
DW
896 pm_restore_console();
897
898 hibernate_release();
899
900unlock:
5950e5d5 901 unlock_system_sleep(sleep_flags);
48001ea5
DW
902
903 return error;
904}
905EXPORT_SYMBOL_GPL(hibernate_quiet_exec);
1da177e4 906
cc89c63e 907static int __init find_resume_device(void)
02b42d58
CH
908{
909 if (!strlen(resume_file))
910 return -ENOENT;
911
912 pm_pr_dbg("Checking hibernation image partition %s\n", resume_file);
913
914 if (resume_delay) {
915 pr_info("Waiting %dsec before reading resume device ...\n",
916 resume_delay);
917 ssleep(resume_delay);
918 }
919
920 /* Check if the device is there */
cf056a43 921 if (!early_lookup_bdev(resume_file, &swsusp_resume_device))
02b42d58
CH
922 return 0;
923
924 /*
925 * Some device discovery might still be in progress; we need to wait for
926 * this to finish.
927 */
928 wait_for_device_probe();
929 if (resume_wait) {
cf056a43 930 while (early_lookup_bdev(resume_file, &swsusp_resume_device))
02b42d58
CH
931 msleep(10);
932 async_synchronize_full();
933 }
934
cf056a43 935 return early_lookup_bdev(resume_file, &swsusp_resume_device);
02b42d58
CH
936}
937
1da177e4
LT
938static int software_resume(void)
939{
70d93298 940 int error;
1da177e4 941
8d8b2441 942 pm_pr_dbg("Hibernation image partition %d:%d present\n",
0c8454f5 943 MAJOR(swsusp_resume_device), MINOR(swsusp_resume_device));
1da177e4 944
8d8b2441 945 pm_pr_dbg("Looking for hibernation image.\n");
cc89c63e
CH
946
947 mutex_lock(&system_transition_mutex);
d6545e68 948 error = swsusp_check(false);
ed746e3b 949 if (error)
74dfd666 950 goto Unlock;
1da177e4 951
0709db60 952 /* The snapshot device should not be opened while we're running */
ab7e9b06 953 if (!hibernate_acquire()) {
0709db60 954 error = -EBUSY;
2736e8ee 955 swsusp_close(false);
0709db60
RW
956 goto Unlock;
957 }
958
8915aa20 959 pr_info("resume from hibernation\n");
5a0a2f30 960 pm_prepare_console();
70d93298
PZ
961 error = pm_notifier_call_chain_robust(PM_RESTORE_PREPARE, PM_POST_RESTORE);
962 if (error)
963 goto Restore;
1bfcf130 964
7a7b99bf 965 pm_pr_dbg("Preparing processes for hibernation restore.\n");
03afed8b 966 error = freeze_processes();
8fd37a4c
RW
967 if (error)
968 goto Close_Finish;
2351f8d2
DC
969
970 error = freeze_kernel_threads();
971 if (error) {
972 thaw_processes();
973 goto Close_Finish;
974 }
975
d6545e68 976 error = load_image_and_restore(false);
8fd37a4c 977 thaw_processes();
0709db60 978 Finish:
70d93298
PZ
979 pm_notifier_call_chain(PM_POST_RESTORE);
980 Restore:
5a0a2f30 981 pm_restore_console();
7a7b99bf 982 pr_info("resume failed (%d)\n", error);
ab7e9b06 983 hibernate_release();
dd5d666b 984 /* For success case, the suspend path will release the lock */
74dfd666 985 Unlock:
55f2503c 986 mutex_unlock(&system_transition_mutex);
8d8b2441 987 pm_pr_dbg("Hibernation image not present or could not be loaded.\n");
7777fab9 988 return error;
8fd37a4c 989 Close_Finish:
2736e8ee 990 swsusp_close(false);
76b57e61 991 goto Finish;
1da177e4
LT
992}
993
cc89c63e
CH
994/**
995 * software_resume_initcall - Resume from a saved hibernation image.
996 *
997 * This routine is called as a late initcall, when all devices have been
998 * discovered and initialized already.
999 *
1000 * The image reading code is called to see if there is a hibernation image
1001 * available for reading. If that is the case, devices are quiesced and the
1002 * contents of memory is restored from the saved image.
1003 *
1004 * If this is successful, control reappears in the restored target kernel in
1005 * hibernation_snapshot() which returns to hibernate(). Otherwise, the routine
1006 * attempts to recover gracefully and make the kernel return to the normal mode
1007 * of operation.
1008 */
1009static int __init software_resume_initcall(void)
1010{
1011 /*
1012 * If the user said "noresume".. bail out early.
1013 */
1014 if (noresume || !hibernation_available())
1015 return 0;
1016
1017 if (!swsusp_resume_device) {
1018 int error = find_resume_device();
1019
1020 if (error)
1021 return error;
1022 }
1023
1024 return software_resume();
1025}
1026late_initcall_sync(software_resume_initcall);
1da177e4
LT
1027
1028
a3d25c27
RW
1029static const char * const hibernation_modes[] = {
1030 [HIBERNATION_PLATFORM] = "platform",
1031 [HIBERNATION_SHUTDOWN] = "shutdown",
1032 [HIBERNATION_REBOOT] = "reboot",
62c552cc
BS
1033#ifdef CONFIG_SUSPEND
1034 [HIBERNATION_SUSPEND] = "suspend",
1035#endif
fe12c00d 1036 [HIBERNATION_TEST_RESUME] = "test_resume",
1da177e4
LT
1037};
1038
f42a9813
RW
1039/*
1040 * /sys/power/disk - Control hibernation mode.
1da177e4 1041 *
f42a9813
RW
1042 * Hibernation can be handled in several ways. There are a few different ways
1043 * to put the system into the sleep state: using the platform driver (e.g. ACPI
1044 * or other hibernation_ops), powering it off or rebooting it (for testing
48580ab8 1045 * mostly).
1da177e4 1046 *
f42a9813
RW
1047 * The sysfs file /sys/power/disk provides an interface for selecting the
1048 * hibernation mode to use. Reading from this file causes the available modes
48580ab8 1049 * to be printed. There are 3 modes that can be supported:
1da177e4 1050 *
1da177e4
LT
1051 * 'platform'
1052 * 'shutdown'
1053 * 'reboot'
1054 *
f42a9813
RW
1055 * If a platform hibernation driver is in use, 'platform' will be supported
1056 * and will be used by default. Otherwise, 'shutdown' will be used by default.
1057 * The selected option (i.e. the one corresponding to the current value of
1058 * hibernation_mode) is enclosed by a square bracket.
1059 *
1060 * To select a given hibernation mode it is necessary to write the mode's
1061 * string representation (as returned by reading from /sys/power/disk) back
1062 * into /sys/power/disk.
1da177e4
LT
1063 */
1064
386f275f
KS
1065static ssize_t disk_show(struct kobject *kobj, struct kobj_attribute *attr,
1066 char *buf)
1da177e4 1067{
f0ced9b2
JB
1068 int i;
1069 char *start = buf;
1070
a6e15a39
KC
1071 if (!hibernation_available())
1072 return sprintf(buf, "[disabled]\n");
1073
a3d25c27
RW
1074 for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
1075 if (!hibernation_modes[i])
f0ced9b2
JB
1076 continue;
1077 switch (i) {
a3d25c27
RW
1078 case HIBERNATION_SHUTDOWN:
1079 case HIBERNATION_REBOOT:
62c552cc
BS
1080#ifdef CONFIG_SUSPEND
1081 case HIBERNATION_SUSPEND:
1082#endif
fe12c00d 1083 case HIBERNATION_TEST_RESUME:
f0ced9b2 1084 break;
a3d25c27
RW
1085 case HIBERNATION_PLATFORM:
1086 if (hibernation_ops)
f0ced9b2
JB
1087 break;
1088 /* not a valid mode, continue with loop */
1089 continue;
1090 }
a3d25c27
RW
1091 if (i == hibernation_mode)
1092 buf += sprintf(buf, "[%s] ", hibernation_modes[i]);
f0ced9b2 1093 else
a3d25c27 1094 buf += sprintf(buf, "%s ", hibernation_modes[i]);
f0ced9b2
JB
1095 }
1096 buf += sprintf(buf, "\n");
1097 return buf-start;
1da177e4
LT
1098}
1099
386f275f
KS
1100static ssize_t disk_store(struct kobject *kobj, struct kobj_attribute *attr,
1101 const char *buf, size_t n)
1da177e4 1102{
5950e5d5
PZ
1103 int mode = HIBERNATION_INVALID;
1104 unsigned int sleep_flags;
1da177e4 1105 int error = 0;
1da177e4
LT
1106 int len;
1107 char *p;
5950e5d5 1108 int i;
1da177e4 1109
a6e15a39
KC
1110 if (!hibernation_available())
1111 return -EPERM;
1112
1da177e4
LT
1113 p = memchr(buf, '\n', n);
1114 len = p ? p - buf : n;
1115
5950e5d5 1116 sleep_flags = lock_system_sleep();
a3d25c27 1117 for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
8d98a690
RW
1118 if (len == strlen(hibernation_modes[i])
1119 && !strncmp(buf, hibernation_modes[i], len)) {
1da177e4
LT
1120 mode = i;
1121 break;
1122 }
1123 }
a3d25c27 1124 if (mode != HIBERNATION_INVALID) {
fe0c935a 1125 switch (mode) {
a3d25c27
RW
1126 case HIBERNATION_SHUTDOWN:
1127 case HIBERNATION_REBOOT:
62c552cc
BS
1128#ifdef CONFIG_SUSPEND
1129 case HIBERNATION_SUSPEND:
1130#endif
fe12c00d 1131 case HIBERNATION_TEST_RESUME:
a3d25c27 1132 hibernation_mode = mode;
fe0c935a 1133 break;
a3d25c27
RW
1134 case HIBERNATION_PLATFORM:
1135 if (hibernation_ops)
1136 hibernation_mode = mode;
1da177e4
LT
1137 else
1138 error = -EINVAL;
1139 }
a3d25c27 1140 } else
1da177e4
LT
1141 error = -EINVAL;
1142
a3d25c27 1143 if (!error)
8d8b2441
RW
1144 pm_pr_dbg("Hibernation mode set to '%s'\n",
1145 hibernation_modes[mode]);
5950e5d5 1146 unlock_system_sleep(sleep_flags);
1da177e4
LT
1147 return error ? error : n;
1148}
1149
1150power_attr(disk);
1151
386f275f
KS
1152static ssize_t resume_show(struct kobject *kobj, struct kobj_attribute *attr,
1153 char *buf)
1da177e4 1154{
6ada7ba2 1155 return sprintf(buf, "%d:%d\n", MAJOR(swsusp_resume_device),
1da177e4
LT
1156 MINOR(swsusp_resume_device));
1157}
1158
386f275f
KS
1159static ssize_t resume_store(struct kobject *kobj, struct kobj_attribute *attr,
1160 const char *buf, size_t n)
1da177e4 1161{
5950e5d5 1162 unsigned int sleep_flags;
421a5fa1
SC
1163 int len = n;
1164 char *name;
cf056a43
CH
1165 dev_t dev;
1166 int error;
1da177e4 1167
cc89c63e
CH
1168 if (!hibernation_available())
1169 return 0;
1170
421a5fa1
SC
1171 if (len && buf[len-1] == '\n')
1172 len--;
1173 name = kstrndup(buf, len, GFP_KERNEL);
1174 if (!name)
1175 return -ENOMEM;
1da177e4 1176
1e8c813b
CH
1177 error = lookup_bdev(name, &dev);
1178 if (error) {
1179 unsigned maj, min, offset;
1180 char *p, dummy;
1181
c9e4bf60 1182 error = 0;
1e8c813b
CH
1183 if (sscanf(name, "%u:%u%c", &maj, &min, &dummy) == 2 ||
1184 sscanf(name, "%u:%u:%u:%c", &maj, &min, &offset,
1185 &dummy) == 3) {
1186 dev = MKDEV(maj, min);
1187 if (maj != MAJOR(dev) || min != MINOR(dev))
1188 error = -EINVAL;
1189 } else {
1190 dev = new_decode_dev(simple_strtoul(name, &p, 16));
1191 if (*p)
1192 error = -EINVAL;
1193 }
1194 }
421a5fa1 1195 kfree(name);
cf056a43
CH
1196 if (error)
1197 return error;
1da177e4 1198
5950e5d5 1199 sleep_flags = lock_system_sleep();
cf056a43 1200 swsusp_resume_device = dev;
5950e5d5
PZ
1201 unlock_system_sleep(sleep_flags);
1202
7a7b99bf
LS
1203 pm_pr_dbg("Configured hibernation resume from disk to %u\n",
1204 swsusp_resume_device);
a576219a
AM
1205 noresume = 0;
1206 software_resume();
421a5fa1 1207 return n;
1da177e4
LT
1208}
1209
1210power_attr(resume);
1211
35506467
ML
1212static ssize_t resume_offset_show(struct kobject *kobj,
1213 struct kobj_attribute *attr, char *buf)
1214{
1215 return sprintf(buf, "%llu\n", (unsigned long long)swsusp_resume_block);
1216}
1217
1218static ssize_t resume_offset_store(struct kobject *kobj,
1219 struct kobj_attribute *attr, const char *buf,
1220 size_t n)
1221{
1222 unsigned long long offset;
1223 int rc;
1224
1225 rc = kstrtoull(buf, 0, &offset);
1226 if (rc)
1227 return rc;
1228 swsusp_resume_block = offset;
1229
1230 return n;
1231}
1232
1233power_attr(resume_offset);
1234
386f275f
KS
1235static ssize_t image_size_show(struct kobject *kobj, struct kobj_attribute *attr,
1236 char *buf)
ca0aec0f 1237{
853609b6 1238 return sprintf(buf, "%lu\n", image_size);
ca0aec0f
RW
1239}
1240
386f275f
KS
1241static ssize_t image_size_store(struct kobject *kobj, struct kobj_attribute *attr,
1242 const char *buf, size_t n)
ca0aec0f 1243{
853609b6 1244 unsigned long size;
ca0aec0f 1245
853609b6 1246 if (sscanf(buf, "%lu", &size) == 1) {
ca0aec0f
RW
1247 image_size = size;
1248 return n;
1249 }
1250
1251 return -EINVAL;
1252}
1253
1254power_attr(image_size);
1255
ddeb6487
RW
1256static ssize_t reserved_size_show(struct kobject *kobj,
1257 struct kobj_attribute *attr, char *buf)
1258{
1259 return sprintf(buf, "%lu\n", reserved_size);
1260}
1261
1262static ssize_t reserved_size_store(struct kobject *kobj,
1263 struct kobj_attribute *attr,
1264 const char *buf, size_t n)
1265{
1266 unsigned long size;
1267
1268 if (sscanf(buf, "%lu", &size) == 1) {
1269 reserved_size = size;
1270 return n;
1271 }
1272
1273 return -EINVAL;
1274}
1275
1276power_attr(reserved_size);
1277
6ada7ba2 1278static struct attribute *g[] = {
1da177e4 1279 &disk_attr.attr,
35506467 1280 &resume_offset_attr.attr,
1da177e4 1281 &resume_attr.attr,
ca0aec0f 1282 &image_size_attr.attr,
ddeb6487 1283 &reserved_size_attr.attr,
1da177e4
LT
1284 NULL,
1285};
1286
1287
59494fe2 1288static const struct attribute_group attr_group = {
1da177e4
LT
1289 .attrs = g,
1290};
1291
1292
1293static int __init pm_disk_init(void)
1294{
d76e15fb 1295 return sysfs_create_group(power_kobj, &attr_group);
1da177e4
LT
1296}
1297
1298core_initcall(pm_disk_init);
1299
1300
1301static int __init resume_setup(char *str)
1302{
1303 if (noresume)
1304 return 1;
1305
6ada7ba2 1306 strncpy(resume_file, str, 255);
1da177e4
LT
1307 return 1;
1308}
1309
9a154d9d
RW
1310static int __init resume_offset_setup(char *str)
1311{
1312 unsigned long long offset;
1313
1314 if (noresume)
1315 return 1;
1316
1317 if (sscanf(str, "%llu", &offset) == 1)
1318 swsusp_resume_block = offset;
1319
1320 return 1;
1321}
1322
f996fc96
BS
1323static int __init hibernate_setup(char *str)
1324{
2f88e41a 1325 if (!strncmp(str, "noresume", 8)) {
f996fc96 1326 noresume = 1;
2f88e41a 1327 } else if (!strncmp(str, "nocompress", 10)) {
f996fc96 1328 nocompress = 1;
2f88e41a 1329 } else if (!strncmp(str, "no", 2)) {
a6e15a39
KC
1330 noresume = 1;
1331 nohibernate = 1;
0f5bf6d0 1332 } else if (IS_ENABLED(CONFIG_STRICT_KERNEL_RWX)
4c0b6c10
RW
1333 && !strncmp(str, "protect_image", 13)) {
1334 enable_restore_image_protection();
a6e15a39 1335 }
f996fc96
BS
1336 return 1;
1337}
1338
1da177e4
LT
1339static int __init noresume_setup(char *str)
1340{
1341 noresume = 1;
1342 return 1;
1343}
1344
6f8d7022
BS
1345static int __init resumewait_setup(char *str)
1346{
1347 resume_wait = 1;
1348 return 1;
1349}
1350
f126f733
BS
1351static int __init resumedelay_setup(char *str)
1352{
f6514be5 1353 int rc = kstrtouint(str, 0, &resume_delay);
317cf7e5
FF
1354
1355 if (rc)
ba7ffcd4 1356 pr_warn("resumedelay: bad option string '%s'\n", str);
f126f733
BS
1357 return 1;
1358}
1359
a6e15a39
KC
1360static int __init nohibernate_setup(char *str)
1361{
1362 noresume = 1;
1363 nohibernate = 1;
1364 return 1;
1365}
1366
1da177e4 1367__setup("noresume", noresume_setup);
9a154d9d 1368__setup("resume_offset=", resume_offset_setup);
1da177e4 1369__setup("resume=", resume_setup);
f996fc96 1370__setup("hibernate=", hibernate_setup);
6f8d7022 1371__setup("resumewait", resumewait_setup);
f126f733 1372__setup("resumedelay=", resumedelay_setup);
a6e15a39 1373__setup("nohibernate", nohibernate_setup);