blob: 53c22d9cf577ecdb90eb4c3b97149bd4bdff0277 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * kernel/power/disk.c - Suspend-to-disk support.
3 *
4 * Copyright (c) 2003 Patrick Mochel
5 * Copyright (c) 2003 Open Source Development Lab
6 * Copyright (c) 2004 Pavel Machek <pavel@suse.cz>
7 *
8 * This file is released under the GPLv2.
9 *
10 */
11
12#include <linux/suspend.h>
13#include <linux/syscalls.h>
14#include <linux/reboot.h>
15#include <linux/string.h>
16#include <linux/device.h>
17#include <linux/delay.h>
18#include <linux/fs.h>
Andrew Mortond53d9f12005-07-12 13:58:07 -070019#include <linux/mount.h>
Eric W. Biederman88d10bb2005-09-22 21:43:46 -070020#include <linux/pm.h>
Rafael J. Wysocki97c78012006-10-11 01:20:45 -070021#include <linux/console.h>
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -070022#include <linux/cpu.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080023#include <linux/freezer.h>
Andrew Mortond53d9f12005-07-12 13:58:07 -070024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "power.h"
26
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028static int noresume = 0;
29char resume_file[256] = CONFIG_PM_STD_PARTITION;
30dev_t swsusp_resume_device;
Rafael J. Wysocki9a154d92006-12-06 20:34:12 -080031sector_t swsusp_resume_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070033enum {
34 HIBERNATION_INVALID,
35 HIBERNATION_PLATFORM,
36 HIBERNATION_TEST,
37 HIBERNATION_TESTPROC,
38 HIBERNATION_SHUTDOWN,
39 HIBERNATION_REBOOT,
40 /* keep last */
41 __HIBERNATION_AFTER_LAST
42};
43#define HIBERNATION_MAX (__HIBERNATION_AFTER_LAST-1)
44#define HIBERNATION_FIRST (HIBERNATION_INVALID + 1)
45
46static int hibernation_mode = HIBERNATION_SHUTDOWN;
47
Rafael J. Wysockib3dac3b2007-10-18 03:04:43 -070048static struct platform_hibernation_ops *hibernation_ops;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070049
50/**
51 * hibernation_set_ops - set the global hibernate operations
52 * @ops: the hibernation operations to use in subsequent hibernation transitions
53 */
54
Rafael J. Wysockib3dac3b2007-10-18 03:04:43 -070055void hibernation_set_ops(struct platform_hibernation_ops *ops)
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070056{
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +010057 if (ops && !(ops->begin && ops->end && ops->pre_snapshot
58 && ops->prepare && ops->finish && ops->enter && ops->pre_restore
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -070059 && ops->restore_cleanup)) {
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070060 WARN_ON(1);
61 return;
62 }
63 mutex_lock(&pm_mutex);
64 hibernation_ops = ops;
65 if (ops)
66 hibernation_mode = HIBERNATION_PLATFORM;
67 else if (hibernation_mode == HIBERNATION_PLATFORM)
68 hibernation_mode = HIBERNATION_SHUTDOWN;
69
70 mutex_unlock(&pm_mutex);
71}
72
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +010073#ifdef CONFIG_PM_DEBUG
74static void hibernation_debug_sleep(void)
75{
76 printk(KERN_INFO "hibernation debug: Waiting for 5 seconds.\n");
77 mdelay(5000);
78}
79
80static int hibernation_testmode(int mode)
81{
82 if (hibernation_mode == mode) {
83 hibernation_debug_sleep();
84 return 1;
85 }
86 return 0;
87}
88
89static int hibernation_test(int level)
90{
91 if (pm_test_level == level) {
92 hibernation_debug_sleep();
93 return 1;
94 }
95 return 0;
96}
97#else /* !CONFIG_PM_DEBUG */
98static int hibernation_testmode(int mode) { return 0; }
99static int hibernation_test(int level) { return 0; }
100#endif /* !CONFIG_PM_DEBUG */
101
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700102/**
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100103 * platform_begin - tell the platform driver that we're starting
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700104 * hibernation
105 */
106
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100107static int platform_begin(int platform_mode)
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700108{
109 return (platform_mode && hibernation_ops) ?
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100110 hibernation_ops->begin() : 0;
111}
112
113/**
114 * platform_end - tell the platform driver that we've entered the
115 * working state
116 */
117
118static void platform_end(int platform_mode)
119{
120 if (platform_mode && hibernation_ops)
121 hibernation_ops->end();
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700122}
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124/**
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700125 * platform_pre_snapshot - prepare the machine for hibernation using the
Stefan Seyfried8a05aac2006-12-06 20:34:21 -0800126 * platform driver if so configured and return an error code if it fails
127 */
128
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700129static int platform_pre_snapshot(int platform_mode)
Stefan Seyfried8a05aac2006-12-06 20:34:21 -0800130{
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700131 return (platform_mode && hibernation_ops) ?
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700132 hibernation_ops->pre_snapshot() : 0;
Stefan Seyfried8a05aac2006-12-06 20:34:21 -0800133}
134
135/**
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700136 * platform_leave - prepare the machine for switching to the normal mode
137 * of operation using the platform driver (called with interrupts disabled)
138 */
139
140static void platform_leave(int platform_mode)
141{
142 if (platform_mode && hibernation_ops)
143 hibernation_ops->leave();
144}
145
146/**
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700147 * platform_finish - switch the machine to the normal mode of operation
148 * using the platform driver (must be called after platform_prepare())
149 */
150
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700151static void platform_finish(int platform_mode)
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700152{
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700153 if (platform_mode && hibernation_ops)
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700154 hibernation_ops->finish();
155}
156
157/**
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700158 * platform_pre_restore - prepare the platform for the restoration from a
159 * hibernation image. If the restore fails after this function has been
160 * called, platform_restore_cleanup() must be called.
161 */
162
163static int platform_pre_restore(int platform_mode)
164{
165 return (platform_mode && hibernation_ops) ?
166 hibernation_ops->pre_restore() : 0;
167}
168
169/**
170 * platform_restore_cleanup - switch the platform to the normal mode of
171 * operation after a failing restore. If platform_pre_restore() has been
172 * called before the failing restore, this function must be called too,
173 * regardless of the result of platform_pre_restore().
174 */
175
176static void platform_restore_cleanup(int platform_mode)
177{
178 if (platform_mode && hibernation_ops)
179 hibernation_ops->restore_cleanup();
180}
181
182/**
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700183 * create_image - freeze devices that need to be frozen with interrupts
184 * off, create the hibernation image and thaw those devices. Control
185 * reappears in this routine after a restore.
186 */
187
188int create_image(int platform_mode)
189{
190 int error;
191
192 error = arch_prepare_suspend();
193 if (error)
194 return error;
195
196 local_irq_disable();
197 /* At this point, device_suspend() has been called, but *not*
198 * device_power_down(). We *must* call device_power_down() now.
199 * Otherwise, drivers for some devices (e.g. interrupt controllers)
200 * become desynchronized with the actual state of the hardware
201 * at resume time, and evil weirdness ensues.
202 */
203 error = device_power_down(PMSG_FREEZE);
204 if (error) {
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100205 printk(KERN_ERR "PM: Some devices failed to power down, "
206 "aborting hibernation\n");
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700207 goto Enable_irqs;
208 }
209
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100210 if (hibernation_test(TEST_CORE))
211 goto Power_up;
212
213 in_suspend = 1;
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700214 save_processor_state();
215 error = swsusp_arch_suspend();
216 if (error)
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100217 printk(KERN_ERR "PM: Error %d creating hibernation image\n",
218 error);
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700219 /* Restore control flow magically appears here */
220 restore_processor_state();
221 if (!in_suspend)
222 platform_leave(platform_mode);
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100223 Power_up:
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700224 /* NOTE: device_power_up() is just a resume() for devices
225 * that suspended with irqs off ... no overall powerup.
226 */
227 device_power_up();
228 Enable_irqs:
229 local_irq_enable();
230 return error;
231}
232
233/**
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700234 * hibernation_snapshot - quiesce devices and create the hibernation
235 * snapshot image.
236 * @platform_mode - if set, use the platform driver, if available, to
237 * prepare the platform frimware for the power transition.
238 *
239 * Must be called with pm_mutex held
240 */
241
242int hibernation_snapshot(int platform_mode)
243{
244 int error;
245
246 /* Free memory before shutting down devices. */
247 error = swsusp_shrink_memory();
248 if (error)
Rafael J. Wysocki10a18032007-07-19 01:47:31 -0700249 return error;
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700250
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100251 error = platform_begin(platform_mode);
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700252 if (error)
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100253 goto Close;
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700254
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700255 suspend_console();
256 error = device_suspend(PMSG_FREEZE);
257 if (error)
Rafael J. Wysocki10a18032007-07-19 01:47:31 -0700258 goto Resume_console;
259
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100260 if (hibernation_test(TEST_DEVICES))
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700261 goto Resume_devices;
262
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100263 error = platform_pre_snapshot(platform_mode);
264 if (error || hibernation_test(TEST_PLATFORM))
265 goto Finish;
266
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700267 error = disable_nonboot_cpus();
268 if (!error) {
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100269 if (hibernation_test(TEST_CPUS))
270 goto Enable_cpus;
271
272 if (hibernation_testmode(HIBERNATION_TEST))
273 goto Enable_cpus;
274
275 error = create_image(platform_mode);
276 /* Control returns here after successful restore */
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700277 }
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100278 Enable_cpus:
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700279 enable_nonboot_cpus();
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100280 Finish:
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700281 platform_finish(platform_mode);
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100282 Resume_devices:
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700283 device_resume();
Rafael J. Wysocki10a18032007-07-19 01:47:31 -0700284 Resume_console:
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700285 resume_console();
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100286 Close:
287 platform_end(platform_mode);
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700288 return error;
289}
290
291/**
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100292 * resume_target_kernel - prepare devices that need to be suspended with
293 * interrupts off, restore the contents of highmem that have not been
294 * restored yet from the image and run the low level code that will restore
295 * the remaining contents of memory and switch to the just restored target
296 * kernel.
297 */
298
299static int resume_target_kernel(void)
300{
301 int error;
302
303 local_irq_disable();
304 error = device_power_down(PMSG_PRETHAW);
305 if (error) {
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100306 printk(KERN_ERR "PM: Some devices failed to power down, "
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100307 "aborting resume\n");
308 goto Enable_irqs;
309 }
310 /* We'll ignore saved state, but this gets preempt count (etc) right */
311 save_processor_state();
312 error = restore_highmem();
313 if (!error) {
314 error = swsusp_arch_resume();
315 /*
316 * The code below is only ever reached in case of a failure.
317 * Otherwise execution continues at place where
318 * swsusp_arch_suspend() was called
319 */
320 BUG_ON(!error);
321 /* This call to restore_highmem() undos the previous one */
322 restore_highmem();
323 }
324 /*
325 * The only reason why swsusp_arch_resume() can fail is memory being
326 * very tight, so we have to free it as soon as we can to avoid
327 * subsequent failures
328 */
329 swsusp_free();
330 restore_processor_state();
331 touch_softlockup_watchdog();
332 device_power_up();
333 Enable_irqs:
334 local_irq_enable();
335 return error;
336}
337
338/**
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700339 * hibernation_restore - quiesce devices and restore the hibernation
340 * snapshot image. If successful, control returns in hibernation_snaphot()
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700341 * @platform_mode - if set, use the platform driver, if available, to
342 * prepare the platform frimware for the transition.
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700343 *
344 * Must be called with pm_mutex held
345 */
346
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700347int hibernation_restore(int platform_mode)
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700348{
349 int error;
350
351 pm_prepare_console();
352 suspend_console();
353 error = device_suspend(PMSG_PRETHAW);
354 if (error)
355 goto Finish;
356
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700357 error = platform_pre_restore(platform_mode);
358 if (!error) {
359 error = disable_nonboot_cpus();
360 if (!error)
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100361 error = resume_target_kernel();
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700362 enable_nonboot_cpus();
363 }
364 platform_restore_cleanup(platform_mode);
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700365 device_resume();
Rafael J. Wysocki10a18032007-07-19 01:47:31 -0700366 Finish:
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700367 resume_console();
368 pm_restore_console();
369 return error;
370}
371
372/**
373 * hibernation_platform_enter - enter the hibernation state using the
374 * platform driver (if available)
375 */
376
377int hibernation_platform_enter(void)
378{
Rafael J. Wysockib1457bc2007-07-19 01:47:31 -0700379 int error;
380
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700381 if (!hibernation_ops)
382 return -ENOSYS;
383
384 /*
385 * We have cancelled the power transition by running
386 * hibernation_ops->finish() before saving the image, so we should let
387 * the firmware know that we're going to enter the sleep state after all
388 */
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100389 error = hibernation_ops->begin();
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700390 if (error)
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100391 goto Close;
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700392
393 suspend_console();
394 error = device_suspend(PMSG_SUSPEND);
395 if (error)
396 goto Resume_console;
397
398 error = hibernation_ops->prepare();
399 if (error)
400 goto Resume_devices;
401
402 error = disable_nonboot_cpus();
403 if (error)
404 goto Finish;
405
406 local_irq_disable();
407 error = device_power_down(PMSG_SUSPEND);
408 if (!error) {
409 hibernation_ops->enter();
410 /* We should never get here */
411 while (1);
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700412 }
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700413 local_irq_enable();
414
415 /*
416 * We don't need to reenable the nonboot CPUs or resume consoles, since
417 * the system is going to be halted anyway.
418 */
419 Finish:
420 hibernation_ops->finish();
421 Resume_devices:
422 device_resume();
423 Resume_console:
424 resume_console();
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100425 Close:
426 hibernation_ops->end();
Rafael J. Wysockib1457bc2007-07-19 01:47:31 -0700427 return error;
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700428}
429
430/**
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700431 * power_down - Shut the machine down for hibernation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 *
Johannes Bergfe0c9352007-04-30 15:09:51 -0700433 * Use the platform driver, if configured so; otherwise try
434 * to power off or reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 */
436
Johannes Bergfe0c9352007-04-30 15:09:51 -0700437static void power_down(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700439 switch (hibernation_mode) {
440 case HIBERNATION_TEST:
441 case HIBERNATION_TESTPROC:
Johannes Bergfe0c9352007-04-30 15:09:51 -0700442 break;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700443 case HIBERNATION_REBOOT:
Eric W. Biedermanfdde86a2005-07-26 12:01:17 -0600444 kernel_restart(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 break;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700446 case HIBERNATION_PLATFORM:
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700447 hibernation_platform_enter();
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700448 case HIBERNATION_SHUTDOWN:
449 kernel_power_off();
450 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
Eric W. Biedermanfdde86a2005-07-26 12:01:17 -0600452 kernel_halt();
Johannes Bergfe0c9352007-04-30 15:09:51 -0700453 /*
454 * Valid image is on the disk, if we continue we risk serious data
455 * corruption after resume.
456 */
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100457 printk(KERN_CRIT "PM: Please power down manually\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 while(1);
459}
460
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800461static void unprepare_processes(void)
462{
463 thaw_processes();
464 pm_restore_console();
465}
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467static int prepare_processes(void)
468{
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800469 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 pm_prepare_console();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 if (freeze_processes()) {
473 error = -EBUSY;
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800474 unprepare_processes();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
Li Shaohua5a72e042005-06-25 14:55:06 -0700476 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479/**
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700480 * hibernate - The granpappy of the built-in hibernation management
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 */
482
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700483int hibernate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
485 int error;
486
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700487 mutex_lock(&pm_mutex);
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700488 /* The snapshot device should not be opened while we're running */
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700489 if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
490 error = -EBUSY;
491 goto Unlock;
492 }
493
494 error = pm_notifier_call_chain(PM_HIBERNATION_PREPARE);
495 if (error)
496 goto Exit;
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700497
498 /* Allocate memory management structures */
499 error = create_basic_memory_bitmaps();
500 if (error)
501 goto Exit;
502
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100503 printk(KERN_INFO "PM: Syncing filesystems ... ");
Rafael J. Wysocki232b1432007-10-18 03:04:44 -0700504 sys_sync();
505 printk("done.\n");
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 error = prepare_processes();
Li Shaohua5a72e042005-06-25 14:55:06 -0700508 if (error)
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700509 goto Finish;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100511 if (hibernation_test(TEST_FREEZER))
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800512 goto Thaw;
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100513
514 if (hibernation_testmode(HIBERNATION_TESTPROC))
515 goto Thaw;
516
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700517 error = hibernation_snapshot(hibernation_mode == HIBERNATION_PLATFORM);
518 if (in_suspend && !error) {
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700519 unsigned int flags = 0;
520
521 if (hibernation_mode == HIBERNATION_PLATFORM)
522 flags |= SF_PLATFORM_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 pr_debug("PM: writing image.\n");
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700524 error = swsusp_write(flags);
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700525 swsusp_free();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (!error)
Johannes Bergfe0c9352007-04-30 15:09:51 -0700527 power_down();
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800528 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 pr_debug("PM: Image restored successfully.\n");
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700530 swsusp_free();
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800531 }
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800532 Thaw:
Pavel Machek99dc7d62005-09-03 15:57:05 -0700533 unprepare_processes();
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700534 Finish:
535 free_basic_memory_bitmaps();
536 Exit:
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700537 pm_notifier_call_chain(PM_POST_HIBERNATION);
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700538 atomic_inc(&snapshot_device_available);
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700539 Unlock:
540 mutex_unlock(&pm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 return error;
542}
543
544
545/**
546 * software_resume - Resume from a saved image.
547 *
548 * Called as a late_initcall (so all devices are discovered and
549 * initialized), we call swsusp to see if we have a saved image or not.
550 * If so, we quiesce devices, the restore the saved image. We will
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700551 * return above (in hibernate() ) if everything goes well.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 * Otherwise, we fail gracefully and return to the normally
553 * scheduled program.
554 *
555 */
556
557static int software_resume(void)
558{
559 int error;
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700560 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Johannes Berg60a0d232007-11-14 17:00:16 -0800562 /*
563 * name_to_dev_t() below takes a sysfs buffer mutex when sysfs
564 * is configured into the kernel. Since the regular hibernate
565 * trigger path is via sysfs which takes a buffer mutex before
566 * calling hibernate functions (which take pm_mutex) this can
567 * cause lockdep to complain about a possible ABBA deadlock
568 * which cannot happen since we're in the boot code here and
569 * sysfs can't be invoked yet. Therefore, we use a subclass
570 * here to avoid lockdep complaining.
571 */
572 mutex_lock_nested(&pm_mutex, SINGLE_DEPTH_NESTING);
Pavel Machek3efa1472005-07-07 17:56:43 -0700573 if (!swsusp_resume_device) {
Shaohua Lidd5d6662005-09-03 15:57:04 -0700574 if (!strlen(resume_file)) {
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800575 mutex_unlock(&pm_mutex);
Pavel Machek3efa1472005-07-07 17:56:43 -0700576 return -ENOENT;
Shaohua Lidd5d6662005-09-03 15:57:04 -0700577 }
Pavel Machek3efa1472005-07-07 17:56:43 -0700578 swsusp_resume_device = name_to_dev_t(resume_file);
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100579 pr_debug("PM: Resume from partition %s\n", resume_file);
Pavel Machek3efa1472005-07-07 17:56:43 -0700580 } else {
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100581 pr_debug("PM: Resume from partition %d:%d\n",
582 MAJOR(swsusp_resume_device),
583 MINOR(swsusp_resume_device));
Pavel Machek3efa1472005-07-07 17:56:43 -0700584 }
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (noresume) {
587 /**
Rafael J. Wysocki95758092007-12-08 02:06:57 +0100588 * FIXME: If noresume is specified, we need to find the
589 * partition and reset it back to normal swap space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 */
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800591 mutex_unlock(&pm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 return 0;
593 }
594
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100595 pr_debug("PM: Checking hibernation image.\n");
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800596 error = swsusp_check();
597 if (error)
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700598 goto Unlock;
599
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700600 /* The snapshot device should not be opened while we're running */
601 if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
602 error = -EBUSY;
603 goto Unlock;
604 }
605
Alan Sternc3e94d82007-11-19 23:38:25 +0100606 error = pm_notifier_call_chain(PM_RESTORE_PREPARE);
607 if (error)
608 goto Finish;
609
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700610 error = create_basic_memory_bitmaps();
611 if (error)
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700612 goto Finish;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 pr_debug("PM: Preparing processes for restore.\n");
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800615 error = prepare_processes();
616 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 swsusp_close();
Li Shaohua5a72e042005-06-25 14:55:06 -0700618 goto Done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
620
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100621 pr_debug("PM: Reading hibernation image.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700623 error = swsusp_read(&flags);
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800624 if (!error)
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700625 hibernation_restore(flags & SF_PLATFORM_MODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800627 printk(KERN_ERR "PM: Restore failed, recovering.\n");
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700628 swsusp_free();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 unprepare_processes();
630 Done:
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700631 free_basic_memory_bitmaps();
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700632 Finish:
Alan Sternc3e94d82007-11-19 23:38:25 +0100633 pm_notifier_call_chain(PM_POST_RESTORE);
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700634 atomic_inc(&snapshot_device_available);
Shaohua Lidd5d6662005-09-03 15:57:04 -0700635 /* For success case, the suspend path will release the lock */
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700636 Unlock:
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800637 mutex_unlock(&pm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 pr_debug("PM: Resume from disk failed.\n");
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700639 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
641
642late_initcall(software_resume);
643
644
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700645static const char * const hibernation_modes[] = {
646 [HIBERNATION_PLATFORM] = "platform",
647 [HIBERNATION_SHUTDOWN] = "shutdown",
648 [HIBERNATION_REBOOT] = "reboot",
649 [HIBERNATION_TEST] = "test",
650 [HIBERNATION_TESTPROC] = "testproc",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651};
652
653/**
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700654 * disk - Control hibernation mode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 *
Johannes Berg11d77d02007-04-30 15:09:53 -0700656 * Suspend-to-disk can be handled in several ways. We have a few options
657 * for putting the system to sleep - using the platform driver (e.g. ACPI
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700658 * or other hibernation_ops), powering off the system or rebooting the
659 * system (for testing) as well as the two test modes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 *
Johannes Berg11d77d02007-04-30 15:09:53 -0700661 * The system can support 'platform', and that is known a priori (and
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700662 * encoded by the presence of hibernation_ops). However, the user may
663 * choose 'shutdown' or 'reboot' as alternatives, as well as one fo the
664 * test modes, 'test' or 'testproc'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 *
666 * show() will display what the mode is currently set to.
667 * store() will accept one of
668 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 * 'platform'
670 * 'shutdown'
671 * 'reboot'
Johannes Berg11d77d02007-04-30 15:09:53 -0700672 * 'test'
673 * 'testproc'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 *
Johannes Berg11d77d02007-04-30 15:09:53 -0700675 * It will only change to 'platform' if the system
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700676 * supports it (as determined by having hibernation_ops).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 */
678
Kay Sievers386f2752007-11-02 13:47:53 +0100679static ssize_t disk_show(struct kobject *kobj, struct kobj_attribute *attr,
680 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700682 int i;
683 char *start = buf;
684
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700685 for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
686 if (!hibernation_modes[i])
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700687 continue;
688 switch (i) {
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700689 case HIBERNATION_SHUTDOWN:
690 case HIBERNATION_REBOOT:
691 case HIBERNATION_TEST:
692 case HIBERNATION_TESTPROC:
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700693 break;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700694 case HIBERNATION_PLATFORM:
695 if (hibernation_ops)
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700696 break;
697 /* not a valid mode, continue with loop */
698 continue;
699 }
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700700 if (i == hibernation_mode)
701 buf += sprintf(buf, "[%s] ", hibernation_modes[i]);
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700702 else
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700703 buf += sprintf(buf, "%s ", hibernation_modes[i]);
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700704 }
705 buf += sprintf(buf, "\n");
706 return buf-start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707}
708
709
Kay Sievers386f2752007-11-02 13:47:53 +0100710static ssize_t disk_store(struct kobject *kobj, struct kobj_attribute *attr,
711 const char *buf, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
713 int error = 0;
714 int i;
715 int len;
716 char *p;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700717 int mode = HIBERNATION_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 p = memchr(buf, '\n', n);
720 len = p ? p - buf : n;
721
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800722 mutex_lock(&pm_mutex);
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700723 for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
Rafael J. Wysocki8d98a692007-05-16 22:11:19 -0700724 if (len == strlen(hibernation_modes[i])
725 && !strncmp(buf, hibernation_modes[i], len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 mode = i;
727 break;
728 }
729 }
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700730 if (mode != HIBERNATION_INVALID) {
Johannes Bergfe0c9352007-04-30 15:09:51 -0700731 switch (mode) {
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700732 case HIBERNATION_SHUTDOWN:
733 case HIBERNATION_REBOOT:
734 case HIBERNATION_TEST:
735 case HIBERNATION_TESTPROC:
736 hibernation_mode = mode;
Johannes Bergfe0c9352007-04-30 15:09:51 -0700737 break;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700738 case HIBERNATION_PLATFORM:
739 if (hibernation_ops)
740 hibernation_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 else
742 error = -EINVAL;
743 }
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700744 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 error = -EINVAL;
746
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700747 if (!error)
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100748 pr_debug("PM: Hibernation mode set to '%s'\n",
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700749 hibernation_modes[mode]);
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800750 mutex_unlock(&pm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 return error ? error : n;
752}
753
754power_attr(disk);
755
Kay Sievers386f2752007-11-02 13:47:53 +0100756static ssize_t resume_show(struct kobject *kobj, struct kobj_attribute *attr,
757 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
759 return sprintf(buf,"%d:%d\n", MAJOR(swsusp_resume_device),
760 MINOR(swsusp_resume_device));
761}
762
Kay Sievers386f2752007-11-02 13:47:53 +0100763static ssize_t resume_store(struct kobject *kobj, struct kobj_attribute *attr,
764 const char *buf, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 unsigned int maj, min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 dev_t res;
Andrew Mortona5762192006-01-06 00:09:50 -0800768 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Andrew Mortona5762192006-01-06 00:09:50 -0800770 if (sscanf(buf, "%u:%u", &maj, &min) != 2)
771 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Andrew Mortona5762192006-01-06 00:09:50 -0800773 res = MKDEV(maj,min);
774 if (maj != MAJOR(res) || min != MINOR(res))
775 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800777 mutex_lock(&pm_mutex);
Andrew Mortona5762192006-01-06 00:09:50 -0800778 swsusp_resume_device = res;
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800779 mutex_unlock(&pm_mutex);
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100780 printk(KERN_INFO "PM: Starting manual resume from disk\n");
Andrew Mortona5762192006-01-06 00:09:50 -0800781 noresume = 0;
782 software_resume();
783 ret = n;
Rafael J. Wysocki59a493352006-12-06 20:34:44 -0800784 out:
Andrew Mortona5762192006-01-06 00:09:50 -0800785 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786}
787
788power_attr(resume);
789
Kay Sievers386f2752007-11-02 13:47:53 +0100790static ssize_t image_size_show(struct kobject *kobj, struct kobj_attribute *attr,
791 char *buf)
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800792{
Rafael J. Wysocki853609b2006-02-01 03:05:07 -0800793 return sprintf(buf, "%lu\n", image_size);
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800794}
795
Kay Sievers386f2752007-11-02 13:47:53 +0100796static ssize_t image_size_store(struct kobject *kobj, struct kobj_attribute *attr,
797 const char *buf, size_t n)
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800798{
Rafael J. Wysocki853609b2006-02-01 03:05:07 -0800799 unsigned long size;
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800800
Rafael J. Wysocki853609b2006-02-01 03:05:07 -0800801 if (sscanf(buf, "%lu", &size) == 1) {
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800802 image_size = size;
803 return n;
804 }
805
806 return -EINVAL;
807}
808
809power_attr(image_size);
810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811static struct attribute * g[] = {
812 &disk_attr.attr,
813 &resume_attr.attr,
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800814 &image_size_attr.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 NULL,
816};
817
818
819static struct attribute_group attr_group = {
820 .attrs = g,
821};
822
823
824static int __init pm_disk_init(void)
825{
Greg Kroah-Hartmand76e15f2007-11-27 11:28:26 -0800826 return sysfs_create_group(power_kobj, &attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
829core_initcall(pm_disk_init);
830
831
832static int __init resume_setup(char *str)
833{
834 if (noresume)
835 return 1;
836
837 strncpy( resume_file, str, 255 );
838 return 1;
839}
840
Rafael J. Wysocki9a154d92006-12-06 20:34:12 -0800841static int __init resume_offset_setup(char *str)
842{
843 unsigned long long offset;
844
845 if (noresume)
846 return 1;
847
848 if (sscanf(str, "%llu", &offset) == 1)
849 swsusp_resume_block = offset;
850
851 return 1;
852}
853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854static int __init noresume_setup(char *str)
855{
856 noresume = 1;
857 return 1;
858}
859
860__setup("noresume", noresume_setup);
Rafael J. Wysocki9a154d92006-12-06 20:34:12 -0800861__setup("resume_offset=", resume_offset_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862__setup("resume=", resume_setup);