blob: e1914c7b85b180e7683eed48738e14443dbadc62 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Rafael J. Wysocki8b759b82009-06-10 01:27:49 +02002 * kernel/power/hibernate.c - Hibernation (a.k.a suspend-to-disk) support.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (c) 2003 Patrick Mochel
5 * Copyright (c) 2003 Open Source Development Lab
Pavel Macheka2531292010-07-18 14:27:13 +02006 * Copyright (c) 2004 Pavel Machek <pavel@ucw.cz>
Rafael J. Wysocki8b759b82009-06-10 01:27:49 +02007 * Copyright (c) 2009 Rafael J. Wysocki, Novell Inc.
Bojan Smojver62c552c2012-06-16 00:09:58 +02008 * Copyright (C) 2012 Bojan Smojver <bojan@rexursive.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * This file is released under the GPLv2.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
Rafael J. Wysocki2872de12017-02-24 00:26:15 +010013#define pr_fmt(fmt) "PM: " fmt
14
Paul Gortmaker6e5fdee2011-05-26 16:00:52 -040015#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/suspend.h>
17#include <linux/syscalls.h>
18#include <linux/reboot.h>
19#include <linux/string.h>
20#include <linux/device.h>
Barry Song6f8d7022011-10-06 20:34:46 +020021#include <linux/async.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/delay.h>
23#include <linux/fs.h>
Andrew Mortond53d9f12005-07-12 13:58:07 -070024#include <linux/mount.h>
Eric W. Biederman88d10bb2005-09-22 21:43:46 -070025#include <linux/pm.h>
Ingo Molnar38b8d202017-02-08 18:51:31 +010026#include <linux/nmi.h>
Rafael J. Wysocki97c78012006-10-11 01:20:45 -070027#include <linux/console.h>
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -070028#include <linux/cpu.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080029#include <linux/freezer.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/gfp.h>
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +010031#include <linux/syscore_ops.h>
Minho Ban2df83fa2012-05-14 21:45:31 +020032#include <linux/ctype.h>
33#include <linux/genhd.h>
Tina Ruchandanidb597602014-10-30 11:04:53 -070034#include <linux/ktime.h>
Todd E Brandtbb3632c2014-06-06 05:40:17 -070035#include <trace/events/power.h>
Andrew Mortond53d9f12005-07-12 13:58:07 -070036
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "power.h"
38
39
Barry Songd231ff12011-10-11 23:29:18 -070040static int nocompress;
41static int noresume;
Kees Cooka6e15a32014-06-13 13:30:35 -070042static int nohibernate;
Barry Songd231ff12011-10-11 23:29:18 -070043static int resume_wait;
Dan Carpenterf6514be2014-05-14 19:08:46 +030044static unsigned int resume_delay;
Adrian Bunk47a460d2008-02-04 22:30:06 -080045static char resume_file[256] = CONFIG_PM_STD_PARTITION;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046dev_t swsusp_resume_device;
Rafael J. Wysocki9a154d92006-12-06 20:34:12 -080047sector_t swsusp_resume_block;
Andi Kleend6efc2f2013-08-05 15:02:49 -070048__visible int in_suspend __nosavedata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070050enum {
51 HIBERNATION_INVALID,
52 HIBERNATION_PLATFORM,
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070053 HIBERNATION_SHUTDOWN,
54 HIBERNATION_REBOOT,
Bojan Smojver62c552c2012-06-16 00:09:58 +020055#ifdef CONFIG_SUSPEND
56 HIBERNATION_SUSPEND,
57#endif
Chen Yufe12c002016-07-22 10:30:47 +080058 HIBERNATION_TEST_RESUME,
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070059 /* 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
Srivatsa S. Bhat97819a22011-12-01 22:33:10 +010067bool freezer_test_done;
Srivatsa S. Bhataa9a7b12011-11-18 23:02:42 +010068
Lionel Debroux073ef1f2010-11-09 21:48:49 +010069static const struct platform_hibernation_ops *hibernation_ops;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070070
Kees Cooka6e15a32014-06-13 13:30:35 -070071bool hibernation_available(void)
72{
73 return (nohibernate == 0);
74}
75
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070076/**
Rafael J. Wysockif42a9812011-05-24 23:36:06 +020077 * hibernation_set_ops - Set the global hibernate operations.
78 * @ops: Hibernation operations to use in subsequent hibernation transitions.
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070079 */
Lionel Debroux073ef1f2010-11-09 21:48:49 +010080void hibernation_set_ops(const struct platform_hibernation_ops *ops)
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070081{
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +010082 if (ops && !(ops->begin && ops->end && ops->pre_snapshot
83 && ops->prepare && ops->finish && ops->enter && ops->pre_restore
MyungJoo Ham5729c632010-11-26 23:07:48 +010084 && ops->restore_cleanup && ops->leave)) {
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070085 WARN_ON(1);
86 return;
87 }
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +010088 lock_system_sleep();
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070089 hibernation_ops = ops;
90 if (ops)
91 hibernation_mode = HIBERNATION_PLATFORM;
92 else if (hibernation_mode == HIBERNATION_PLATFORM)
93 hibernation_mode = HIBERNATION_SHUTDOWN;
94
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +010095 unlock_system_sleep();
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070096}
Leonardo Potenzae0c78552013-11-19 12:27:41 +000097EXPORT_SYMBOL_GPL(hibernation_set_ops);
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070098
Rafael J. Wysockiabfe2d72009-01-19 20:54:54 +010099static bool entering_platform_hibernation;
100
101bool system_entering_hibernation(void)
102{
103 return entering_platform_hibernation;
104}
105EXPORT_SYMBOL(system_entering_hibernation);
106
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100107#ifdef CONFIG_PM_DEBUG
108static void hibernation_debug_sleep(void)
109{
Rafael J. Wysocki2872de12017-02-24 00:26:15 +0100110 pr_info("hibernation debug: Waiting for 5 seconds.\n");
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100111 mdelay(5000);
112}
113
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100114static int hibernation_test(int level)
115{
116 if (pm_test_level == level) {
117 hibernation_debug_sleep();
118 return 1;
119 }
120 return 0;
121}
122#else /* !CONFIG_PM_DEBUG */
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100123static int hibernation_test(int level) { return 0; }
124#endif /* !CONFIG_PM_DEBUG */
125
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700126/**
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200127 * platform_begin - Call platform to start hibernation.
128 * @platform_mode: Whether or not to use the platform driver.
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700129 */
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100130static int platform_begin(int platform_mode)
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700131{
132 return (platform_mode && hibernation_ops) ?
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100133 hibernation_ops->begin() : 0;
134}
135
136/**
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200137 * platform_end - Call platform to finish transition to the working state.
138 * @platform_mode: Whether or not to use the platform driver.
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100139 */
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100140static void platform_end(int platform_mode)
141{
142 if (platform_mode && hibernation_ops)
143 hibernation_ops->end();
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700144}
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146/**
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200147 * platform_pre_snapshot - Call platform to prepare the machine for hibernation.
148 * @platform_mode: Whether or not to use the platform driver.
149 *
150 * Use the platform driver to prepare the system for creating a hibernate image,
151 * if so configured, and return an error code if that fails.
Stefan Seyfried8a05aac2006-12-06 20:34:21 -0800152 */
153
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700154static int platform_pre_snapshot(int platform_mode)
Stefan Seyfried8a05aac2006-12-06 20:34:21 -0800155{
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700156 return (platform_mode && hibernation_ops) ?
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700157 hibernation_ops->pre_snapshot() : 0;
Stefan Seyfried8a05aac2006-12-06 20:34:21 -0800158}
159
160/**
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200161 * platform_leave - Call platform to prepare a transition to the working state.
162 * @platform_mode: Whether or not to use the platform driver.
163 *
164 * Use the platform driver prepare to prepare the machine for switching to the
165 * normal mode of operation.
166 *
167 * This routine is called on one CPU with interrupts disabled.
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700168 */
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700169static void platform_leave(int platform_mode)
170{
171 if (platform_mode && hibernation_ops)
172 hibernation_ops->leave();
173}
174
175/**
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200176 * platform_finish - Call platform to switch the system to the working state.
177 * @platform_mode: Whether or not to use the platform driver.
178 *
179 * Use the platform driver to switch the machine to the normal mode of
180 * operation.
181 *
182 * This routine must be called after platform_prepare().
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700183 */
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700184static void platform_finish(int platform_mode)
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700185{
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700186 if (platform_mode && hibernation_ops)
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700187 hibernation_ops->finish();
188}
189
190/**
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200191 * platform_pre_restore - Prepare for hibernate image restoration.
192 * @platform_mode: Whether or not to use the platform driver.
193 *
194 * Use the platform driver to prepare the system for resume from a hibernation
195 * image.
196 *
197 * If the restore fails after this function has been called,
198 * platform_restore_cleanup() must be called.
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700199 */
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700200static int platform_pre_restore(int platform_mode)
201{
202 return (platform_mode && hibernation_ops) ?
203 hibernation_ops->pre_restore() : 0;
204}
205
206/**
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200207 * platform_restore_cleanup - Switch to the working state after failing restore.
208 * @platform_mode: Whether or not to use the platform driver.
209 *
210 * Use the platform driver to switch the system to the normal mode of operation
211 * after a failing restore.
212 *
213 * If platform_pre_restore() has been called before the failing restore, this
214 * function must be called too, regardless of the result of
215 * platform_pre_restore().
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700216 */
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700217static void platform_restore_cleanup(int platform_mode)
218{
219 if (platform_mode && hibernation_ops)
220 hibernation_ops->restore_cleanup();
221}
222
223/**
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200224 * platform_recover - Recover from a failure to suspend devices.
225 * @platform_mode: Whether or not to use the platform driver.
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200226 */
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200227static void platform_recover(int platform_mode)
228{
229 if (platform_mode && hibernation_ops && hibernation_ops->recover)
230 hibernation_ops->recover();
231}
232
233/**
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200234 * swsusp_show_speed - Print time elapsed between two events during hibernation.
235 * @start: Starting event.
236 * @stop: Final event.
237 * @nr_pages: Number of memory pages processed between @start and @stop.
238 * @msg: Additional diagnostic message to print.
Nigel Cunningham8e60c6a2009-12-06 16:16:07 +0100239 */
Tina Ruchandanidb597602014-10-30 11:04:53 -0700240void swsusp_show_speed(ktime_t start, ktime_t stop,
241 unsigned nr_pages, char *msg)
Nigel Cunningham8e60c6a2009-12-06 16:16:07 +0100242{
Tina Ruchandanidb597602014-10-30 11:04:53 -0700243 ktime_t diff;
Chen Gang4881f602014-04-25 08:44:59 +0800244 u64 elapsed_centisecs64;
245 unsigned int centisecs;
246 unsigned int k;
247 unsigned int kps;
Nigel Cunningham8e60c6a2009-12-06 16:16:07 +0100248
Tina Ruchandanidb597602014-10-30 11:04:53 -0700249 diff = ktime_sub(stop, start);
250 elapsed_centisecs64 = ktime_divns(diff, 10*NSEC_PER_MSEC);
Nigel Cunningham8e60c6a2009-12-06 16:16:07 +0100251 centisecs = elapsed_centisecs64;
252 if (centisecs == 0)
253 centisecs = 1; /* avoid div-by-zero */
254 k = nr_pages * (PAGE_SIZE / 1024);
255 kps = (k * 100) / centisecs;
Rafael J. Wysocki2872de12017-02-24 00:26:15 +0100256 pr_info("%s %u kbytes in %u.%02u seconds (%u.%02u MB/s)\n",
257 msg, k, centisecs / 100, centisecs % 100, kps / 1000,
258 (kps % 1000) / 10);
Nigel Cunningham8e60c6a2009-12-06 16:16:07 +0100259}
260
261/**
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200262 * create_image - Create a hibernation image.
263 * @platform_mode: Whether or not to use the platform driver.
264 *
Rafael J. Wysockicf579df2012-01-29 20:38:29 +0100265 * Execute device drivers' "late" and "noirq" freeze callbacks, create a
266 * hibernation image and run the drivers' "noirq" and "early" thaw callbacks.
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200267 *
268 * Control reappears in this routine after the subsequent restore.
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700269 */
Adrian Bunk47a460d2008-02-04 22:30:06 -0800270static int create_image(int platform_mode)
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700271{
272 int error;
273
Rafael J. Wysockicf579df2012-01-29 20:38:29 +0100274 error = dpm_suspend_end(PMSG_FREEZE);
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700275 if (error) {
Rafael J. Wysocki2872de12017-02-24 00:26:15 +0100276 pr_err("Some devices failed to power down, aborting hibernation\n");
Rafael J. Wysocki32bdfac2009-05-24 21:15:07 +0200277 return error;
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700278 }
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100279
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100280 error = platform_pre_snapshot(platform_mode);
281 if (error || hibernation_test(TEST_PLATFORM))
282 goto Platform_finish;
283
284 error = disable_nonboot_cpus();
Srivatsa S. Bhat48580ab2011-12-01 22:33:20 +0100285 if (error || hibernation_test(TEST_CPUS))
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100286 goto Enable_cpus;
287
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100288 local_irq_disable();
289
Rafael J. Wysocki2e711c02011-04-26 19:15:07 +0200290 error = syscore_suspend();
Rafael J. Wysocki770824b2009-02-22 18:38:50 +0100291 if (error) {
Rafael J. Wysocki2872de12017-02-24 00:26:15 +0100292 pr_err("Some system devices failed to power down, aborting hibernation\n");
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100293 goto Enable_irqs;
Rafael J. Wysocki770824b2009-02-22 18:38:50 +0100294 }
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700295
Rafael J. Wysockia2867e02010-12-03 22:58:31 +0100296 if (hibernation_test(TEST_CORE) || pm_wakeup_pending())
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100297 goto Power_up;
298
299 in_suspend = 1;
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700300 save_processor_state();
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700301 trace_suspend_resume(TPS("machine_suspend"), PM_EVENT_HIBERNATE, true);
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700302 error = swsusp_arch_suspend();
Thomas Garnier62822e22016-08-11 14:49:29 -0700303 /* Restore control flow magically appears here */
304 restore_processor_state();
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700305 trace_suspend_resume(TPS("machine_suspend"), PM_EVENT_HIBERNATE, false);
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700306 if (error)
Rafael J. Wysocki2872de12017-02-24 00:26:15 +0100307 pr_err("Error %d creating hibernation image\n", error);
308
Anisse Astier1ad14102016-09-09 10:43:32 +0200309 if (!in_suspend) {
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200310 events_check_enabled = false;
Anisse Astier1ad14102016-09-09 10:43:32 +0200311 clear_free_pages();
312 }
Bjørn Mork362e77d2013-12-04 16:06:58 +0100313
314 platform_leave(platform_mode);
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100315
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100316 Power_up:
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +0100317 syscore_resume();
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100318
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100319 Enable_irqs:
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100320 local_irq_enable();
321
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100322 Enable_cpus:
323 enable_nonboot_cpus();
324
325 Platform_finish:
326 platform_finish(platform_mode);
327
Rafael J. Wysockicf579df2012-01-29 20:38:29 +0100328 dpm_resume_start(in_suspend ?
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200329 (error ? PMSG_RECOVER : PMSG_THAW) : PMSG_RESTORE);
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100330
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700331 return error;
332}
333
334/**
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200335 * hibernation_snapshot - Quiesce devices and create a hibernation image.
336 * @platform_mode: If set, use platform driver to prepare for the transition.
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700337 *
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200338 * This routine must be called with pm_mutex held.
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700339 */
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700340int hibernation_snapshot(int platform_mode)
341{
Srivatsa S. Bhat953a2062011-11-22 23:20:31 +0100342 pm_message_t msg;
Ingo Molnarcbe2f5a2008-11-23 10:37:12 +0100343 int error;
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700344
Lukas Wunner27614272016-03-23 00:11:20 +0100345 pm_suspend_clear_flags();
Zhang Rui3fe03132008-10-26 20:50:26 +0100346 error = platform_begin(platform_mode);
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700347 if (error)
Rafael J. Wysockid074ee02010-07-07 23:43:35 +0200348 goto Close;
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700349
Rafael J. Wysocki64a473c2009-07-08 13:24:05 +0200350 /* Preallocate image memory before shutting down devices. */
351 error = hibernate_preallocate_memory();
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700352 if (error)
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200353 goto Close;
354
355 error = freeze_kernel_threads();
356 if (error)
Rafael J. Wysockibb58dd52011-11-22 23:08:10 +0100357 goto Cleanup;
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200358
Srivatsa S. Bhat48580ab2011-12-01 22:33:20 +0100359 if (hibernation_test(TEST_FREEZER)) {
Srivatsa S. Bhataa9a7b12011-11-18 23:02:42 +0100360
361 /*
362 * Indicate to the caller that we are returning due to a
363 * successful freezer test.
364 */
365 freezer_test_done = true;
Srivatsa S. Bhat51d6ff72012-02-04 22:26:38 +0100366 goto Thaw;
Srivatsa S. Bhataa9a7b12011-11-18 23:02:42 +0100367 }
368
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200369 error = dpm_prepare(PMSG_FREEZE);
Rafael J. Wysockibb58dd52011-11-22 23:08:10 +0100370 if (error) {
Srivatsa S. Bhat953a2062011-11-22 23:20:31 +0100371 dpm_complete(PMSG_RECOVER);
Srivatsa S. Bhat51d6ff72012-02-04 22:26:38 +0100372 goto Thaw;
Rafael J. Wysockibb58dd52011-11-22 23:08:10 +0100373 }
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700374
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700375 suspend_console();
Rafael J. Wysockic9e664f2010-12-03 22:57:45 +0100376 pm_restrict_gfp_mask();
Srivatsa S. Bhat953a2062011-11-22 23:20:31 +0100377
Rafael J. Wysocki91e7c752011-05-17 23:26:00 +0200378 error = dpm_suspend(PMSG_FREEZE);
Rafael J. Wysocki10a18032007-07-19 01:47:31 -0700379
Srivatsa S. Bhat953a2062011-11-22 23:20:31 +0100380 if (error || hibernation_test(TEST_DEVICES))
381 platform_recover(platform_mode);
382 else
383 error = create_image(platform_mode);
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700384
Rafael J. Wysockic9e664f2010-12-03 22:57:45 +0100385 /*
Srivatsa S. Bhat953a2062011-11-22 23:20:31 +0100386 * In the case that we call create_image() above, the control
387 * returns here (1) after the image has been created or the
Rafael J. Wysockic9e664f2010-12-03 22:57:45 +0100388 * image creation has failed and (2) after a successful restore.
389 */
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100390
Rafael J. Wysocki64a473c2009-07-08 13:24:05 +0200391 /* We may need to release the preallocated image pages here. */
392 if (error || !in_suspend)
393 swsusp_free();
394
Rafael J. Wysocki91e7c752011-05-17 23:26:00 +0200395 msg = in_suspend ? (error ? PMSG_RECOVER : PMSG_THAW) : PMSG_RESTORE;
396 dpm_resume(msg);
Rafael J. Wysockic9e664f2010-12-03 22:57:45 +0100397
398 if (error || !in_suspend)
399 pm_restore_gfp_mask();
400
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700401 resume_console();
Rafael J. Wysocki91e7c752011-05-17 23:26:00 +0200402 dpm_complete(msg);
403
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100404 Close:
405 platform_end(platform_mode);
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700406 return error;
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200407
Srivatsa S. Bhat51d6ff72012-02-04 22:26:38 +0100408 Thaw:
409 thaw_kernel_threads();
Rafael J. Wysockibb58dd52011-11-22 23:08:10 +0100410 Cleanup:
411 swsusp_free();
412 goto Close;
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700413}
414
Rafael J. Wysocki406f9922016-07-14 03:55:23 +0200415int __weak hibernate_resume_nonboot_cpu_disable(void)
416{
417 return disable_nonboot_cpus();
418}
419
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700420/**
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200421 * resume_target_kernel - Restore system state from a hibernation image.
422 * @platform_mode: Whether or not to use the platform driver.
423 *
Rafael J. Wysockicf579df2012-01-29 20:38:29 +0100424 * Execute device drivers' "noirq" and "late" freeze callbacks, restore the
425 * contents of highmem that have not been restored yet from the image and run
426 * the low-level code that will restore the remaining contents of memory and
427 * switch to the just restored target kernel.
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100428 */
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100429static int resume_target_kernel(bool platform_mode)
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100430{
431 int error;
432
Rafael J. Wysockicf579df2012-01-29 20:38:29 +0100433 error = dpm_suspend_end(PMSG_QUIESCE);
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100434 if (error) {
Rafael J. Wysocki2872de12017-02-24 00:26:15 +0100435 pr_err("Some devices failed to power down, aborting resume\n");
Rafael J. Wysocki32bdfac2009-05-24 21:15:07 +0200436 return error;
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100437 }
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100438
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100439 error = platform_pre_restore(platform_mode);
440 if (error)
441 goto Cleanup;
442
Rafael J. Wysocki406f9922016-07-14 03:55:23 +0200443 error = hibernate_resume_nonboot_cpu_disable();
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100444 if (error)
445 goto Enable_cpus;
446
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100447 local_irq_disable();
448
Rafael J. Wysocki2e711c02011-04-26 19:15:07 +0200449 error = syscore_suspend();
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100450 if (error)
451 goto Enable_irqs;
452
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100453 save_processor_state();
454 error = restore_highmem();
455 if (!error) {
456 error = swsusp_arch_resume();
457 /*
458 * The code below is only ever reached in case of a failure.
Rafael J. Wysocki4e2d9492011-05-24 00:21:26 +0200459 * Otherwise, execution continues at the place where
460 * swsusp_arch_suspend() was called.
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100461 */
462 BUG_ON(!error);
Rafael J. Wysocki4e2d9492011-05-24 00:21:26 +0200463 /*
464 * This call to restore_highmem() reverts the changes made by
465 * the previous one.
466 */
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100467 restore_highmem();
468 }
469 /*
470 * The only reason why swsusp_arch_resume() can fail is memory being
471 * very tight, so we have to free it as soon as we can to avoid
Rafael J. Wysocki4e2d9492011-05-24 00:21:26 +0200472 * subsequent failures.
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100473 */
474 swsusp_free();
475 restore_processor_state();
476 touch_softlockup_watchdog();
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100477
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +0100478 syscore_resume();
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100479
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100480 Enable_irqs:
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100481 local_irq_enable();
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100482
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100483 Enable_cpus:
484 enable_nonboot_cpus();
485
486 Cleanup:
487 platform_restore_cleanup(platform_mode);
488
Rafael J. Wysockicf579df2012-01-29 20:38:29 +0100489 dpm_resume_start(PMSG_RECOVER);
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100490
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100491 return error;
492}
493
494/**
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200495 * hibernation_restore - Quiesce devices and restore from a hibernation image.
496 * @platform_mode: If set, use platform driver to prepare for the transition.
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700497 *
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200498 * This routine must be called with pm_mutex held. If it is successful, control
Barry Song21e82802011-09-27 22:05:44 +0200499 * reappears in the restored target kernel in hibernation_snapshot().
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700500 */
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700501int hibernation_restore(int platform_mode)
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700502{
Ingo Molnarcbe2f5a2008-11-23 10:37:12 +0100503 int error;
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700504
505 pm_prepare_console();
506 suspend_console();
Rafael J. Wysockic9e664f2010-12-03 22:57:45 +0100507 pm_restrict_gfp_mask();
Alan Sternd1616302009-05-24 22:05:42 +0200508 error = dpm_suspend_start(PMSG_QUIESCE);
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700509 if (!error) {
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100510 error = resume_target_kernel(platform_mode);
Imre Deak94fb8232014-10-24 20:29:10 +0300511 /*
512 * The above should either succeed and jump to the new kernel,
513 * or return with an error. Otherwise things are just
514 * undefined, so let's be paranoid.
515 */
516 BUG_ON(!error);
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700517 }
Imre Deak94fb8232014-10-24 20:29:10 +0300518 dpm_resume_end(PMSG_RECOVER);
Rafael J. Wysockic9e664f2010-12-03 22:57:45 +0100519 pm_restore_gfp_mask();
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700520 resume_console();
521 pm_restore_console();
522 return error;
523}
524
525/**
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200526 * hibernation_platform_enter - Power off the system using the platform driver.
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700527 */
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700528int hibernation_platform_enter(void)
529{
Ingo Molnarcbe2f5a2008-11-23 10:37:12 +0100530 int error;
Rafael J. Wysockib1457bc2007-07-19 01:47:31 -0700531
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700532 if (!hibernation_ops)
533 return -ENOSYS;
534
535 /*
536 * We have cancelled the power transition by running
537 * hibernation_ops->finish() before saving the image, so we should let
538 * the firmware know that we're going to enter the sleep state after all
539 */
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100540 error = hibernation_ops->begin();
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700541 if (error)
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100542 goto Close;
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700543
Rafael J. Wysockiabfe2d72009-01-19 20:54:54 +0100544 entering_platform_hibernation = true;
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700545 suspend_console();
Alan Sternd1616302009-05-24 22:05:42 +0200546 error = dpm_suspend_start(PMSG_HIBERNATE);
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200547 if (error) {
548 if (hibernation_ops->recover)
549 hibernation_ops->recover();
550 goto Resume_devices;
551 }
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700552
Rafael J. Wysockicf579df2012-01-29 20:38:29 +0100553 error = dpm_suspend_end(PMSG_HIBERNATE);
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100554 if (error)
Rafael J. Wysocki32bdfac2009-05-24 21:15:07 +0200555 goto Resume_devices;
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100556
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100557 error = hibernation_ops->prepare();
558 if (error)
Thadeu Lima de Souza Cascardoe681c9d2009-07-08 13:23:32 +0200559 goto Platform_finish;
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100560
561 error = disable_nonboot_cpus();
562 if (error)
Vitaly Kuznetsov8c506602015-06-24 16:02:06 +0200563 goto Enable_cpus;
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100564
565 local_irq_disable();
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +0100566 syscore_suspend();
Rafael J. Wysockia2867e02010-12-03 22:58:31 +0100567 if (pm_wakeup_pending()) {
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200568 error = -EAGAIN;
569 goto Power_up;
570 }
571
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100572 hibernation_ops->enter();
573 /* We should never get here */
574 while (1);
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700575
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200576 Power_up:
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +0100577 syscore_resume();
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200578 local_irq_enable();
Vitaly Kuznetsov8c506602015-06-24 16:02:06 +0200579
580 Enable_cpus:
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200581 enable_nonboot_cpus();
582
Thadeu Lima de Souza Cascardoe681c9d2009-07-08 13:23:32 +0200583 Platform_finish:
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700584 hibernation_ops->finish();
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100585
Rafael J. Wysockicf579df2012-01-29 20:38:29 +0100586 dpm_resume_start(PMSG_RESTORE);
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100587
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700588 Resume_devices:
Rafael J. Wysockiabfe2d72009-01-19 20:54:54 +0100589 entering_platform_hibernation = false;
Alan Sternd1616302009-05-24 22:05:42 +0200590 dpm_resume_end(PMSG_RESTORE);
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700591 resume_console();
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100592
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100593 Close:
594 hibernation_ops->end();
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100595
Rafael J. Wysockib1457bc2007-07-19 01:47:31 -0700596 return error;
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700597}
598
599/**
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200600 * power_down - Shut the machine down for hibernation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 *
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200602 * Use the platform driver, if configured, to put the system into the sleep
603 * state corresponding to hibernation, or try to power it off or reboot,
604 * depending on the value of hibernation_mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 */
Johannes Bergfe0c935a2007-04-30 15:09:51 -0700606static void power_down(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
Bojan Smojver62c552c2012-06-16 00:09:58 +0200608#ifdef CONFIG_SUSPEND
609 int error;
Rafael J. Wysocki81d45bd2017-02-24 00:25:28 +0100610
611 if (hibernation_mode == HIBERNATION_SUSPEND) {
612 error = suspend_devices_and_enter(PM_SUSPEND_MEM);
613 if (error) {
614 hibernation_mode = hibernation_ops ?
615 HIBERNATION_PLATFORM :
616 HIBERNATION_SHUTDOWN;
617 } else {
618 /* Restore swap signature. */
619 error = swsusp_unmark();
620 if (error)
Rafael J. Wysocki2872de12017-02-24 00:26:15 +0100621 pr_err("Swap will be unusable! Try swapon -a.\n");
Rafael J. Wysocki81d45bd2017-02-24 00:25:28 +0100622
623 return;
624 }
625 }
Bojan Smojver62c552c2012-06-16 00:09:58 +0200626#endif
627
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700628 switch (hibernation_mode) {
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700629 case HIBERNATION_REBOOT:
Eric W. Biedermanfdde86a2005-07-26 12:01:17 -0600630 kernel_restart(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 break;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700632 case HIBERNATION_PLATFORM:
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700633 hibernation_platform_enter();
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700634 case HIBERNATION_SHUTDOWN:
Sebastian Capella2c730782014-04-21 17:30:46 -0700635 if (pm_power_off)
636 kernel_power_off();
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700637 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 }
Eric W. Biedermanfdde86a2005-07-26 12:01:17 -0600639 kernel_halt();
Johannes Bergfe0c935a2007-04-30 15:09:51 -0700640 /*
641 * Valid image is on the disk, if we continue we risk serious data
642 * corruption after resume.
643 */
Rafael J. Wysocki2872de12017-02-24 00:26:15 +0100644 pr_crit("Power down manually\n");
Sebastian Capella2c730782014-04-21 17:30:46 -0700645 while (1)
646 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
Chen Yufe12c002016-07-22 10:30:47 +0800649static int load_image_and_restore(void)
650{
651 int error;
652 unsigned int flags;
653
Rafael J. Wysocki2872de12017-02-24 00:26:15 +0100654 pr_debug("Loading hibernation image.\n");
Chen Yufe12c002016-07-22 10:30:47 +0800655
656 lock_device_hotplug();
657 error = create_basic_memory_bitmaps();
658 if (error)
659 goto Unlock;
660
661 error = swsusp_read(&flags);
662 swsusp_close(FMODE_READ);
663 if (!error)
664 hibernation_restore(flags & SF_PLATFORM_MODE);
665
Rafael J. Wysocki2872de12017-02-24 00:26:15 +0100666 pr_err("Failed to load hibernation image, recovering.\n");
Chen Yufe12c002016-07-22 10:30:47 +0800667 swsusp_free();
668 free_basic_memory_bitmaps();
669 Unlock:
670 unlock_device_hotplug();
671
672 return error;
673}
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675/**
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200676 * hibernate - Carry out system hibernation, including saving the image.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 */
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700678int hibernate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Lianwei Wangea00f4f2016-06-19 23:52:27 -0700680 int error, nr_calls = 0;
Chen Yufe12c002016-07-22 10:30:47 +0800681 bool snapshot_test = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Kees Cooka6e15a32014-06-13 13:30:35 -0700683 if (!hibernation_available()) {
Rafael J. Wysocki2872de12017-02-24 00:26:15 +0100684 pr_debug("Hibernation not available.\n");
Kees Cooka6e15a32014-06-13 13:30:35 -0700685 return -EPERM;
686 }
687
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +0100688 lock_system_sleep();
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700689 /* The snapshot device should not be opened while we're running */
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700690 if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
691 error = -EBUSY;
692 goto Unlock;
693 }
694
Rafael J. Wysocki5a0a2f32008-01-11 01:25:21 +0100695 pm_prepare_console();
Lianwei Wangea00f4f2016-06-19 23:52:27 -0700696 error = __pm_notifier_call_chain(PM_HIBERNATION_PREPARE, -1, &nr_calls);
697 if (error) {
698 nr_calls--;
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700699 goto Exit;
Lianwei Wangea00f4f2016-06-19 23:52:27 -0700700 }
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700701
Rafael J. Wysocki2872de12017-02-24 00:26:15 +0100702 pr_info("Syncing filesystems ... \n");
Rafael J. Wysocki232b1432007-10-18 03:04:44 -0700703 sys_sync();
Rafael J. Wysocki2872de12017-02-24 00:26:15 +0100704 pr_info("done.\n");
Rafael J. Wysocki232b1432007-10-18 03:04:44 -0700705
Tejun Heo03afed82011-11-21 12:32:24 -0800706 error = freeze_processes();
Li Shaohua5a72e042005-06-25 14:55:06 -0700707 if (error)
Rafael J. Wysocki8fd37a42013-08-30 14:19:38 +0200708 goto Exit;
709
Rafael J. Wysocki942f4012013-08-30 14:19:46 +0200710 lock_device_hotplug();
Rafael J. Wysocki8fd37a42013-08-30 14:19:38 +0200711 /* Allocate memory management structures */
712 error = create_basic_memory_bitmaps();
713 if (error)
714 goto Thaw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700716 error = hibernation_snapshot(hibernation_mode == HIBERNATION_PLATFORM);
Srivatsa S. Bhata556d5b52012-02-04 23:39:56 +0100717 if (error || freezer_test_done)
Rafael J. Wysocki8fd37a42013-08-30 14:19:38 +0200718 goto Free_bitmaps;
Rafael J. Wysocki64a473c2009-07-08 13:24:05 +0200719
720 if (in_suspend) {
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700721 unsigned int flags = 0;
722
723 if (hibernation_mode == HIBERNATION_PLATFORM)
724 flags |= SF_PLATFORM_MODE;
Bojan Smojverf996fc92010-09-09 23:06:23 +0200725 if (nocompress)
726 flags |= SF_NOCOMPRESS_MODE;
Bojan Smojver081a9d02011-10-13 23:58:07 +0200727 else
728 flags |= SF_CRC32_MODE;
729
Rafael J. Wysocki2872de12017-02-24 00:26:15 +0100730 pr_debug("Writing image.\n");
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700731 error = swsusp_write(flags);
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700732 swsusp_free();
Chen Yufe12c002016-07-22 10:30:47 +0800733 if (!error) {
734 if (hibernation_mode == HIBERNATION_TEST_RESUME)
735 snapshot_test = true;
736 else
737 power_down();
738 }
MyungJoo Ham5262a472010-11-26 23:07:56 +0100739 in_suspend = 0;
Rafael J. Wysockic9e664f2010-12-03 22:57:45 +0100740 pm_restore_gfp_mask();
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800741 } else {
Rafael J. Wysocki2872de12017-02-24 00:26:15 +0100742 pr_debug("Image restored successfully.\n");
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800743 }
Rafael J. Wysocki64a473c2009-07-08 13:24:05 +0200744
Rafael J. Wysocki8fd37a42013-08-30 14:19:38 +0200745 Free_bitmaps:
746 free_basic_memory_bitmaps();
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800747 Thaw:
Rafael J. Wysocki942f4012013-08-30 14:19:46 +0200748 unlock_device_hotplug();
Chen Yufe12c002016-07-22 10:30:47 +0800749 if (snapshot_test) {
Rafael J. Wysocki2872de12017-02-24 00:26:15 +0100750 pr_debug("Checking hibernation image\n");
Chen Yufe12c002016-07-22 10:30:47 +0800751 error = swsusp_check();
752 if (!error)
753 error = load_image_and_restore();
754 }
Rafael J. Wysocki5a0a2f32008-01-11 01:25:21 +0100755 thaw_processes();
Srivatsa S. Bhata556d5b52012-02-04 23:39:56 +0100756
757 /* Don't bother checking whether freezer_test_done is true */
758 freezer_test_done = false;
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700759 Exit:
Lianwei Wangea00f4f2016-06-19 23:52:27 -0700760 __pm_notifier_call_chain(PM_POST_HIBERNATION, nr_calls, NULL);
Rafael J. Wysocki5a0a2f32008-01-11 01:25:21 +0100761 pm_restore_console();
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700762 atomic_inc(&snapshot_device_available);
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700763 Unlock:
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +0100764 unlock_system_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 return error;
766}
767
768
769/**
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200770 * software_resume - Resume from a saved hibernation image.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 *
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200772 * This routine is called as a late initcall, when all devices have been
773 * discovered and initialized already.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 *
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200775 * The image reading code is called to see if there is a hibernation image
776 * available for reading. If that is the case, devices are quiesced and the
777 * contents of memory is restored from the saved image.
778 *
779 * If this is successful, control reappears in the restored target kernel in
Geliang Tangd439e642015-09-29 20:36:58 -0700780 * hibernation_snapshot() which returns to hibernate(). Otherwise, the routine
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200781 * attempts to recover gracefully and make the kernel return to the normal mode
782 * of operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784static int software_resume(void)
785{
Lianwei Wangea00f4f2016-06-19 23:52:27 -0700786 int error, nr_calls = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Johannes Berg60a0d232007-11-14 17:00:16 -0800788 /*
Arjan van de Veneed3ee02009-02-14 02:00:19 +0100789 * If the user said "noresume".. bail out early.
790 */
Kees Cooka6e15a32014-06-13 13:30:35 -0700791 if (noresume || !hibernation_available())
Arjan van de Veneed3ee02009-02-14 02:00:19 +0100792 return 0;
793
794 /*
Johannes Berg60a0d232007-11-14 17:00:16 -0800795 * name_to_dev_t() below takes a sysfs buffer mutex when sysfs
796 * is configured into the kernel. Since the regular hibernate
797 * trigger path is via sysfs which takes a buffer mutex before
798 * calling hibernate functions (which take pm_mutex) this can
799 * cause lockdep to complain about a possible ABBA deadlock
800 * which cannot happen since we're in the boot code here and
801 * sysfs can't be invoked yet. Therefore, we use a subclass
802 * here to avoid lockdep complaining.
803 */
804 mutex_lock_nested(&pm_mutex, SINGLE_DEPTH_NESTING);
Rafael J. Wysocki0c8454f2009-04-25 00:16:06 +0200805
806 if (swsusp_resume_device)
807 goto Check_image;
808
809 if (!strlen(resume_file)) {
810 error = -ENOENT;
811 goto Unlock;
812 }
813
Rafael J. Wysocki2872de12017-02-24 00:26:15 +0100814 pr_debug("Checking hibernation image partition %s\n", resume_file);
Rafael J. Wysocki0c8454f2009-04-25 00:16:06 +0200815
Barry Songf126f732011-10-10 23:38:41 +0200816 if (resume_delay) {
Rafael J. Wysocki2872de12017-02-24 00:26:15 +0100817 pr_info("Waiting %dsec before reading resume device ...\n",
Barry Songf126f732011-10-10 23:38:41 +0200818 resume_delay);
819 ssleep(resume_delay);
820 }
821
Rafael J. Wysocki0c8454f2009-04-25 00:16:06 +0200822 /* Check if the device is there */
823 swsusp_resume_device = name_to_dev_t(resume_file);
Minho Ban2df83fa2012-05-14 21:45:31 +0200824
825 /*
826 * name_to_dev_t is ineffective to verify parition if resume_file is in
827 * integer format. (e.g. major:minor)
828 */
829 if (isdigit(resume_file[0]) && resume_wait) {
830 int partno;
831 while (!get_gendisk(swsusp_resume_device, &partno))
832 msleep(10);
833 }
834
Pavel Machek3efa1472005-07-07 17:56:43 -0700835 if (!swsusp_resume_device) {
Arjan van de Veneed3ee02009-02-14 02:00:19 +0100836 /*
837 * Some device discovery might still be in progress; we need
838 * to wait for this to finish.
839 */
840 wait_for_device_probe();
Barry Song6f8d7022011-10-06 20:34:46 +0200841
842 if (resume_wait) {
843 while ((swsusp_resume_device = name_to_dev_t(resume_file)) == 0)
844 msleep(10);
845 async_synchronize_full();
846 }
847
Pavel Machek3efa1472005-07-07 17:56:43 -0700848 swsusp_resume_device = name_to_dev_t(resume_file);
Rafael J. Wysocki0c8454f2009-04-25 00:16:06 +0200849 if (!swsusp_resume_device) {
850 error = -ENODEV;
851 goto Unlock;
852 }
Pavel Machek3efa1472005-07-07 17:56:43 -0700853 }
854
Rafael J. Wysocki0c8454f2009-04-25 00:16:06 +0200855 Check_image:
Rafael J. Wysocki2872de12017-02-24 00:26:15 +0100856 pr_debug("Hibernation image partition %d:%d present\n",
Rafael J. Wysocki0c8454f2009-04-25 00:16:06 +0200857 MAJOR(swsusp_resume_device), MINOR(swsusp_resume_device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Rafael J. Wysocki2872de12017-02-24 00:26:15 +0100859 pr_debug("Looking for hibernation image.\n");
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800860 error = swsusp_check();
861 if (error)
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700862 goto Unlock;
863
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700864 /* The snapshot device should not be opened while we're running */
865 if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
866 error = -EBUSY;
Jiri Slaby76b57e62009-10-07 22:37:35 +0200867 swsusp_close(FMODE_READ);
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700868 goto Unlock;
869 }
870
Rafael J. Wysocki5a0a2f32008-01-11 01:25:21 +0100871 pm_prepare_console();
Lianwei Wangea00f4f2016-06-19 23:52:27 -0700872 error = __pm_notifier_call_chain(PM_RESTORE_PREPARE, -1, &nr_calls);
873 if (error) {
874 nr_calls--;
Rafael J. Wysocki8fd37a42013-08-30 14:19:38 +0200875 goto Close_Finish;
Lianwei Wangea00f4f2016-06-19 23:52:27 -0700876 }
Rafael J. Wysocki1bfcf132008-10-15 22:01:21 -0700877
Rafael J. Wysocki2872de12017-02-24 00:26:15 +0100878 pr_debug("Preparing processes for restore.\n");
Tejun Heo03afed82011-11-21 12:32:24 -0800879 error = freeze_processes();
Rafael J. Wysocki8fd37a42013-08-30 14:19:38 +0200880 if (error)
881 goto Close_Finish;
Chen Yufe12c002016-07-22 10:30:47 +0800882 error = load_image_and_restore();
Rafael J. Wysocki8fd37a42013-08-30 14:19:38 +0200883 thaw_processes();
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700884 Finish:
Lianwei Wangea00f4f2016-06-19 23:52:27 -0700885 __pm_notifier_call_chain(PM_POST_RESTORE, nr_calls, NULL);
Rafael J. Wysocki5a0a2f32008-01-11 01:25:21 +0100886 pm_restore_console();
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700887 atomic_inc(&snapshot_device_available);
Shaohua Lidd5d6662005-09-03 15:57:04 -0700888 /* For success case, the suspend path will release the lock */
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700889 Unlock:
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800890 mutex_unlock(&pm_mutex);
Rafael J. Wysocki2872de12017-02-24 00:26:15 +0100891 pr_debug("Hibernation image not present or could not be loaded.\n");
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700892 return error;
Rafael J. Wysocki8fd37a42013-08-30 14:19:38 +0200893 Close_Finish:
Jiri Slaby76b57e62009-10-07 22:37:35 +0200894 swsusp_close(FMODE_READ);
895 goto Finish;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896}
897
Russ Dilld3c345d2013-10-24 14:25:26 +0100898late_initcall_sync(software_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700901static const char * const hibernation_modes[] = {
902 [HIBERNATION_PLATFORM] = "platform",
903 [HIBERNATION_SHUTDOWN] = "shutdown",
904 [HIBERNATION_REBOOT] = "reboot",
Bojan Smojver62c552c2012-06-16 00:09:58 +0200905#ifdef CONFIG_SUSPEND
906 [HIBERNATION_SUSPEND] = "suspend",
907#endif
Chen Yufe12c002016-07-22 10:30:47 +0800908 [HIBERNATION_TEST_RESUME] = "test_resume",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909};
910
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200911/*
912 * /sys/power/disk - Control hibernation mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 *
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200914 * Hibernation can be handled in several ways. There are a few different ways
915 * to put the system into the sleep state: using the platform driver (e.g. ACPI
916 * or other hibernation_ops), powering it off or rebooting it (for testing
Srivatsa S. Bhat48580ab2011-12-01 22:33:20 +0100917 * mostly).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 *
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200919 * The sysfs file /sys/power/disk provides an interface for selecting the
920 * hibernation mode to use. Reading from this file causes the available modes
Srivatsa S. Bhat48580ab2011-12-01 22:33:20 +0100921 * to be printed. There are 3 modes that can be supported:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 * 'platform'
924 * 'shutdown'
925 * 'reboot'
926 *
Rafael J. Wysockif42a9812011-05-24 23:36:06 +0200927 * If a platform hibernation driver is in use, 'platform' will be supported
928 * and will be used by default. Otherwise, 'shutdown' will be used by default.
929 * The selected option (i.e. the one corresponding to the current value of
930 * hibernation_mode) is enclosed by a square bracket.
931 *
932 * To select a given hibernation mode it is necessary to write the mode's
933 * string representation (as returned by reading from /sys/power/disk) back
934 * into /sys/power/disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 */
936
Kay Sievers386f2752007-11-02 13:47:53 +0100937static ssize_t disk_show(struct kobject *kobj, struct kobj_attribute *attr,
938 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700940 int i;
941 char *start = buf;
942
Kees Cooka6e15a32014-06-13 13:30:35 -0700943 if (!hibernation_available())
944 return sprintf(buf, "[disabled]\n");
945
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700946 for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
947 if (!hibernation_modes[i])
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700948 continue;
949 switch (i) {
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700950 case HIBERNATION_SHUTDOWN:
951 case HIBERNATION_REBOOT:
Bojan Smojver62c552c2012-06-16 00:09:58 +0200952#ifdef CONFIG_SUSPEND
953 case HIBERNATION_SUSPEND:
954#endif
Chen Yufe12c002016-07-22 10:30:47 +0800955 case HIBERNATION_TEST_RESUME:
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700956 break;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700957 case HIBERNATION_PLATFORM:
958 if (hibernation_ops)
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700959 break;
960 /* not a valid mode, continue with loop */
961 continue;
962 }
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700963 if (i == hibernation_mode)
964 buf += sprintf(buf, "[%s] ", hibernation_modes[i]);
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700965 else
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700966 buf += sprintf(buf, "%s ", hibernation_modes[i]);
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700967 }
968 buf += sprintf(buf, "\n");
969 return buf-start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970}
971
Kay Sievers386f2752007-11-02 13:47:53 +0100972static ssize_t disk_store(struct kobject *kobj, struct kobj_attribute *attr,
973 const char *buf, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
975 int error = 0;
976 int i;
977 int len;
978 char *p;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700979 int mode = HIBERNATION_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Kees Cooka6e15a32014-06-13 13:30:35 -0700981 if (!hibernation_available())
982 return -EPERM;
983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 p = memchr(buf, '\n', n);
985 len = p ? p - buf : n;
986
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +0100987 lock_system_sleep();
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700988 for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
Rafael J. Wysocki8d98a692007-05-16 22:11:19 -0700989 if (len == strlen(hibernation_modes[i])
990 && !strncmp(buf, hibernation_modes[i], len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 mode = i;
992 break;
993 }
994 }
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700995 if (mode != HIBERNATION_INVALID) {
Johannes Bergfe0c935a2007-04-30 15:09:51 -0700996 switch (mode) {
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700997 case HIBERNATION_SHUTDOWN:
998 case HIBERNATION_REBOOT:
Bojan Smojver62c552c2012-06-16 00:09:58 +0200999#ifdef CONFIG_SUSPEND
1000 case HIBERNATION_SUSPEND:
1001#endif
Chen Yufe12c002016-07-22 10:30:47 +08001002 case HIBERNATION_TEST_RESUME:
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -07001003 hibernation_mode = mode;
Johannes Bergfe0c935a2007-04-30 15:09:51 -07001004 break;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -07001005 case HIBERNATION_PLATFORM:
1006 if (hibernation_ops)
1007 hibernation_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 else
1009 error = -EINVAL;
1010 }
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -07001011 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 error = -EINVAL;
1013
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -07001014 if (!error)
Rafael J. Wysocki2872de12017-02-24 00:26:15 +01001015 pr_debug("Hibernation mode set to '%s'\n",
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -07001016 hibernation_modes[mode]);
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +01001017 unlock_system_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 return error ? error : n;
1019}
1020
1021power_attr(disk);
1022
Kay Sievers386f2752007-11-02 13:47:53 +01001023static ssize_t resume_show(struct kobject *kobj, struct kobj_attribute *attr,
1024 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
1026 return sprintf(buf,"%d:%d\n", MAJOR(swsusp_resume_device),
1027 MINOR(swsusp_resume_device));
1028}
1029
Kay Sievers386f2752007-11-02 13:47:53 +01001030static ssize_t resume_store(struct kobject *kobj, struct kobj_attribute *attr,
1031 const char *buf, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 dev_t res;
Sebastian Capella421a5fa2014-02-14 14:52:56 -08001034 int len = n;
1035 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Sebastian Capella421a5fa2014-02-14 14:52:56 -08001037 if (len && buf[len-1] == '\n')
1038 len--;
1039 name = kstrndup(buf, len, GFP_KERNEL);
1040 if (!name)
1041 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Sebastian Capella421a5fa2014-02-14 14:52:56 -08001043 res = name_to_dev_t(name);
1044 kfree(name);
1045 if (!res)
1046 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +01001048 lock_system_sleep();
Andrew Mortona5762192006-01-06 00:09:50 -08001049 swsusp_resume_device = res;
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +01001050 unlock_system_sleep();
Rafael J. Wysocki2872de12017-02-24 00:26:15 +01001051 pr_info("Starting manual resume from disk\n");
Andrew Mortona5762192006-01-06 00:09:50 -08001052 noresume = 0;
1053 software_resume();
Sebastian Capella421a5fa2014-02-14 14:52:56 -08001054 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055}
1056
1057power_attr(resume);
1058
Kay Sievers386f2752007-11-02 13:47:53 +01001059static ssize_t image_size_show(struct kobject *kobj, struct kobj_attribute *attr,
1060 char *buf)
Rafael J. Wysockica0aec02006-01-06 00:15:56 -08001061{
Rafael J. Wysocki853609b2006-02-01 03:05:07 -08001062 return sprintf(buf, "%lu\n", image_size);
Rafael J. Wysockica0aec02006-01-06 00:15:56 -08001063}
1064
Kay Sievers386f2752007-11-02 13:47:53 +01001065static ssize_t image_size_store(struct kobject *kobj, struct kobj_attribute *attr,
1066 const char *buf, size_t n)
Rafael J. Wysockica0aec02006-01-06 00:15:56 -08001067{
Rafael J. Wysocki853609b2006-02-01 03:05:07 -08001068 unsigned long size;
Rafael J. Wysockica0aec02006-01-06 00:15:56 -08001069
Rafael J. Wysocki853609b2006-02-01 03:05:07 -08001070 if (sscanf(buf, "%lu", &size) == 1) {
Rafael J. Wysockica0aec02006-01-06 00:15:56 -08001071 image_size = size;
1072 return n;
1073 }
1074
1075 return -EINVAL;
1076}
1077
1078power_attr(image_size);
1079
Rafael J. Wysockiddeb6482011-05-15 11:38:48 +02001080static ssize_t reserved_size_show(struct kobject *kobj,
1081 struct kobj_attribute *attr, char *buf)
1082{
1083 return sprintf(buf, "%lu\n", reserved_size);
1084}
1085
1086static ssize_t reserved_size_store(struct kobject *kobj,
1087 struct kobj_attribute *attr,
1088 const char *buf, size_t n)
1089{
1090 unsigned long size;
1091
1092 if (sscanf(buf, "%lu", &size) == 1) {
1093 reserved_size = size;
1094 return n;
1095 }
1096
1097 return -EINVAL;
1098}
1099
1100power_attr(reserved_size);
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102static struct attribute * g[] = {
1103 &disk_attr.attr,
1104 &resume_attr.attr,
Rafael J. Wysockica0aec02006-01-06 00:15:56 -08001105 &image_size_attr.attr,
Rafael J. Wysockiddeb6482011-05-15 11:38:48 +02001106 &reserved_size_attr.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 NULL,
1108};
1109
1110
Arvind Yadav59494fe2017-06-29 16:58:40 +05301111static const struct attribute_group attr_group = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 .attrs = g,
1113};
1114
1115
1116static int __init pm_disk_init(void)
1117{
Greg Kroah-Hartmand76e15f2007-11-27 11:28:26 -08001118 return sysfs_create_group(power_kobj, &attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119}
1120
1121core_initcall(pm_disk_init);
1122
1123
1124static int __init resume_setup(char *str)
1125{
1126 if (noresume)
1127 return 1;
1128
1129 strncpy( resume_file, str, 255 );
1130 return 1;
1131}
1132
Rafael J. Wysocki9a154d92006-12-06 20:34:12 -08001133static int __init resume_offset_setup(char *str)
1134{
1135 unsigned long long offset;
1136
1137 if (noresume)
1138 return 1;
1139
1140 if (sscanf(str, "%llu", &offset) == 1)
1141 swsusp_resume_block = offset;
1142
1143 return 1;
1144}
1145
Bojan Smojverf996fc92010-09-09 23:06:23 +02001146static int __init hibernate_setup(char *str)
1147{
Rafael J. Wysocki2f88e412016-07-06 02:40:56 +02001148 if (!strncmp(str, "noresume", 8)) {
Bojan Smojverf996fc92010-09-09 23:06:23 +02001149 noresume = 1;
Rafael J. Wysocki2f88e412016-07-06 02:40:56 +02001150 } else if (!strncmp(str, "nocompress", 10)) {
Bojan Smojverf996fc92010-09-09 23:06:23 +02001151 nocompress = 1;
Rafael J. Wysocki2f88e412016-07-06 02:40:56 +02001152 } else if (!strncmp(str, "no", 2)) {
Kees Cooka6e15a32014-06-13 13:30:35 -07001153 noresume = 1;
1154 nohibernate = 1;
Laura Abbott0f5bf6d2017-02-06 16:31:58 -08001155 } else if (IS_ENABLED(CONFIG_STRICT_KERNEL_RWX)
Rafael J. Wysocki4c0b6c12016-07-10 02:12:10 +02001156 && !strncmp(str, "protect_image", 13)) {
1157 enable_restore_image_protection();
Kees Cooka6e15a32014-06-13 13:30:35 -07001158 }
Bojan Smojverf996fc92010-09-09 23:06:23 +02001159 return 1;
1160}
1161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162static int __init noresume_setup(char *str)
1163{
1164 noresume = 1;
1165 return 1;
1166}
1167
Barry Song6f8d7022011-10-06 20:34:46 +02001168static int __init resumewait_setup(char *str)
1169{
1170 resume_wait = 1;
1171 return 1;
1172}
1173
Barry Songf126f732011-10-10 23:38:41 +02001174static int __init resumedelay_setup(char *str)
1175{
Dan Carpenterf6514be2014-05-14 19:08:46 +03001176 int rc = kstrtouint(str, 0, &resume_delay);
Fabian Frederick317cf7e2014-05-09 23:32:08 +02001177
1178 if (rc)
1179 return rc;
Barry Songf126f732011-10-10 23:38:41 +02001180 return 1;
1181}
1182
Kees Cooka6e15a32014-06-13 13:30:35 -07001183static int __init nohibernate_setup(char *str)
1184{
1185 noresume = 1;
1186 nohibernate = 1;
1187 return 1;
1188}
1189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190__setup("noresume", noresume_setup);
Rafael J. Wysocki9a154d92006-12-06 20:34:12 -08001191__setup("resume_offset=", resume_offset_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192__setup("resume=", resume_setup);
Bojan Smojverf996fc92010-09-09 23:06:23 +02001193__setup("hibernate=", hibernate_setup);
Barry Song6f8d7022011-10-06 20:34:46 +02001194__setup("resumewait", resumewait_setup);
Barry Songf126f732011-10-10 23:38:41 +02001195__setup("resumedelay=", resumedelay_setup);
Kees Cooka6e15a32014-06-13 13:30:35 -07001196__setup("nohibernate", nohibernate_setup);