blob: 320bb0949bdf97e0a62356f2e54b6dbb2392d9ee [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>
Rafael J. Wysocki1bfcf132008-10-15 22:01:21 -070017#include <linux/kmod.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/delay.h>
19#include <linux/fs.h>
Andrew Mortond53d9f12005-07-12 13:58:07 -070020#include <linux/mount.h>
Eric W. Biederman88d10bb2005-09-22 21:43:46 -070021#include <linux/pm.h>
Rafael J. Wysocki97c78012006-10-11 01:20:45 -070022#include <linux/console.h>
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -070023#include <linux/cpu.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080024#include <linux/freezer.h>
Andrew Mortond53d9f12005-07-12 13:58:07 -070025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "power.h"
27
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029static int noresume = 0;
Adrian Bunk47a460d2008-02-04 22:30:06 -080030static char resume_file[256] = CONFIG_PM_STD_PARTITION;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031dev_t swsusp_resume_device;
Rafael J. Wysocki9a154d92006-12-06 20:34:12 -080032sector_t swsusp_resume_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070034enum {
35 HIBERNATION_INVALID,
36 HIBERNATION_PLATFORM,
37 HIBERNATION_TEST,
38 HIBERNATION_TESTPROC,
39 HIBERNATION_SHUTDOWN,
40 HIBERNATION_REBOOT,
41 /* keep last */
42 __HIBERNATION_AFTER_LAST
43};
44#define HIBERNATION_MAX (__HIBERNATION_AFTER_LAST-1)
45#define HIBERNATION_FIRST (HIBERNATION_INVALID + 1)
46
47static int hibernation_mode = HIBERNATION_SHUTDOWN;
48
Rafael J. Wysockib3dac3b2007-10-18 03:04:43 -070049static struct platform_hibernation_ops *hibernation_ops;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070050
51/**
52 * hibernation_set_ops - set the global hibernate operations
53 * @ops: the hibernation operations to use in subsequent hibernation transitions
54 */
55
Rafael J. Wysockib3dac3b2007-10-18 03:04:43 -070056void hibernation_set_ops(struct platform_hibernation_ops *ops)
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070057{
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +010058 if (ops && !(ops->begin && ops->end && ops->pre_snapshot
59 && ops->prepare && ops->finish && ops->enter && ops->pre_restore
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -070060 && ops->restore_cleanup)) {
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070061 WARN_ON(1);
62 return;
63 }
64 mutex_lock(&pm_mutex);
65 hibernation_ops = ops;
66 if (ops)
67 hibernation_mode = HIBERNATION_PLATFORM;
68 else if (hibernation_mode == HIBERNATION_PLATFORM)
69 hibernation_mode = HIBERNATION_SHUTDOWN;
70
71 mutex_unlock(&pm_mutex);
72}
73
Rafael J. Wysockiabfe2d72009-01-19 20:54:54 +010074static bool entering_platform_hibernation;
75
76bool system_entering_hibernation(void)
77{
78 return entering_platform_hibernation;
79}
80EXPORT_SYMBOL(system_entering_hibernation);
81
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +010082#ifdef CONFIG_PM_DEBUG
83static void hibernation_debug_sleep(void)
84{
85 printk(KERN_INFO "hibernation debug: Waiting for 5 seconds.\n");
86 mdelay(5000);
87}
88
89static int hibernation_testmode(int mode)
90{
91 if (hibernation_mode == mode) {
92 hibernation_debug_sleep();
93 return 1;
94 }
95 return 0;
96}
97
98static int hibernation_test(int level)
99{
100 if (pm_test_level == level) {
101 hibernation_debug_sleep();
102 return 1;
103 }
104 return 0;
105}
106#else /* !CONFIG_PM_DEBUG */
107static int hibernation_testmode(int mode) { return 0; }
108static int hibernation_test(int level) { return 0; }
109#endif /* !CONFIG_PM_DEBUG */
110
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700111/**
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100112 * platform_begin - tell the platform driver that we're starting
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700113 * hibernation
114 */
115
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100116static int platform_begin(int platform_mode)
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700117{
118 return (platform_mode && hibernation_ops) ?
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100119 hibernation_ops->begin() : 0;
120}
121
122/**
123 * platform_end - tell the platform driver that we've entered the
124 * working state
125 */
126
127static void platform_end(int platform_mode)
128{
129 if (platform_mode && hibernation_ops)
130 hibernation_ops->end();
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700131}
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133/**
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700134 * platform_pre_snapshot - prepare the machine for hibernation using the
Stefan Seyfried8a05aac2006-12-06 20:34:21 -0800135 * platform driver if so configured and return an error code if it fails
136 */
137
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700138static int platform_pre_snapshot(int platform_mode)
Stefan Seyfried8a05aac2006-12-06 20:34:21 -0800139{
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700140 return (platform_mode && hibernation_ops) ?
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700141 hibernation_ops->pre_snapshot() : 0;
Stefan Seyfried8a05aac2006-12-06 20:34:21 -0800142}
143
144/**
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700145 * platform_leave - prepare the machine for switching to the normal mode
146 * of operation using the platform driver (called with interrupts disabled)
147 */
148
149static void platform_leave(int platform_mode)
150{
151 if (platform_mode && hibernation_ops)
152 hibernation_ops->leave();
153}
154
155/**
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700156 * platform_finish - switch the machine to the normal mode of operation
157 * using the platform driver (must be called after platform_prepare())
158 */
159
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700160static void platform_finish(int platform_mode)
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700161{
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700162 if (platform_mode && hibernation_ops)
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700163 hibernation_ops->finish();
164}
165
166/**
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700167 * platform_pre_restore - prepare the platform for the restoration from a
168 * hibernation image. If the restore fails after this function has been
169 * called, platform_restore_cleanup() must be called.
170 */
171
172static int platform_pre_restore(int platform_mode)
173{
174 return (platform_mode && hibernation_ops) ?
175 hibernation_ops->pre_restore() : 0;
176}
177
178/**
179 * platform_restore_cleanup - switch the platform to the normal mode of
180 * operation after a failing restore. If platform_pre_restore() has been
181 * called before the failing restore, this function must be called too,
182 * regardless of the result of platform_pre_restore().
183 */
184
185static void platform_restore_cleanup(int platform_mode)
186{
187 if (platform_mode && hibernation_ops)
188 hibernation_ops->restore_cleanup();
189}
190
191/**
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200192 * platform_recover - recover the platform from a failure to suspend
193 * devices.
194 */
195
196static void platform_recover(int platform_mode)
197{
198 if (platform_mode && hibernation_ops && hibernation_ops->recover)
199 hibernation_ops->recover();
200}
201
202/**
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700203 * create_image - freeze devices that need to be frozen with interrupts
204 * off, create the hibernation image and thaw those devices. Control
205 * reappears in this routine after a restore.
206 */
207
Adrian Bunk47a460d2008-02-04 22:30:06 -0800208static int create_image(int platform_mode)
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700209{
210 int error;
211
212 error = arch_prepare_suspend();
213 if (error)
214 return error;
215
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200216 device_pm_lock();
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100217
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700218 /* At this point, device_suspend() has been called, but *not*
219 * device_power_down(). We *must* call device_power_down() now.
220 * Otherwise, drivers for some devices (e.g. interrupt controllers)
221 * become desynchronized with the actual state of the hardware
222 * at resume time, and evil weirdness ensues.
223 */
224 error = device_power_down(PMSG_FREEZE);
225 if (error) {
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100226 printk(KERN_ERR "PM: Some devices failed to power down, "
227 "aborting hibernation\n");
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100228 goto Unlock;
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700229 }
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100230
231 local_irq_disable();
232
Rafael J. Wysocki770824b2009-02-22 18:38:50 +0100233 sysdev_suspend(PMSG_FREEZE);
234 if (error) {
235 printk(KERN_ERR "PM: Some devices failed to power down, "
236 "aborting hibernation\n");
237 goto Power_up_devices;
238 }
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700239
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100240 if (hibernation_test(TEST_CORE))
241 goto Power_up;
242
243 in_suspend = 1;
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700244 save_processor_state();
245 error = swsusp_arch_suspend();
246 if (error)
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100247 printk(KERN_ERR "PM: Error %d creating hibernation image\n",
248 error);
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700249 /* Restore control flow magically appears here */
250 restore_processor_state();
251 if (!in_suspend)
252 platform_leave(platform_mode);
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100253 Power_up:
Rafael J. Wysocki770824b2009-02-22 18:38:50 +0100254 sysdev_resume();
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700255 /* NOTE: device_power_up() is just a resume() for devices
256 * that suspended with irqs off ... no overall powerup.
257 */
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100258
Rafael J. Wysocki770824b2009-02-22 18:38:50 +0100259 Power_up_devices:
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100260 local_irq_enable();
261
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200262 device_power_up(in_suspend ?
263 (error ? PMSG_RECOVER : PMSG_THAW) : PMSG_RESTORE);
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100264
265 Unlock:
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200266 device_pm_unlock();
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100267
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700268 return error;
269}
270
271/**
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700272 * hibernation_snapshot - quiesce devices and create the hibernation
273 * snapshot image.
274 * @platform_mode - if set, use the platform driver, if available, to
275 * prepare the platform frimware for the power transition.
276 *
277 * Must be called with pm_mutex held
278 */
279
280int hibernation_snapshot(int platform_mode)
281{
Ingo Molnarcbe2f5a2008-11-23 10:37:12 +0100282 int error;
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700283
Zhang Rui3fe03132008-10-26 20:50:26 +0100284 error = platform_begin(platform_mode);
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700285 if (error)
Rafael J. Wysocki10a18032007-07-19 01:47:31 -0700286 return error;
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700287
Zhang Rui3fe03132008-10-26 20:50:26 +0100288 /* Free memory before shutting down devices. */
289 error = swsusp_shrink_memory();
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700290 if (error)
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100291 goto Close;
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700292
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700293 suspend_console();
294 error = device_suspend(PMSG_FREEZE);
295 if (error)
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200296 goto Recover_platform;
Rafael J. Wysocki10a18032007-07-19 01:47:31 -0700297
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100298 if (hibernation_test(TEST_DEVICES))
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200299 goto Recover_platform;
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700300
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100301 error = platform_pre_snapshot(platform_mode);
302 if (error || hibernation_test(TEST_PLATFORM))
303 goto Finish;
304
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700305 error = disable_nonboot_cpus();
306 if (!error) {
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100307 if (hibernation_test(TEST_CPUS))
308 goto Enable_cpus;
309
310 if (hibernation_testmode(HIBERNATION_TEST))
311 goto Enable_cpus;
312
313 error = create_image(platform_mode);
314 /* Control returns here after successful restore */
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700315 }
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100316 Enable_cpus:
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700317 enable_nonboot_cpus();
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100318 Finish:
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700319 platform_finish(platform_mode);
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100320 Resume_devices:
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200321 device_resume(in_suspend ?
322 (error ? PMSG_RECOVER : PMSG_THAW) : PMSG_RESTORE);
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700323 resume_console();
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100324 Close:
325 platform_end(platform_mode);
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700326 return error;
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200327
328 Recover_platform:
329 platform_recover(platform_mode);
330 goto Resume_devices;
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700331}
332
333/**
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100334 * resume_target_kernel - prepare devices that need to be suspended with
335 * interrupts off, restore the contents of highmem that have not been
336 * restored yet from the image and run the low level code that will restore
337 * the remaining contents of memory and switch to the just restored target
338 * kernel.
339 */
340
341static int resume_target_kernel(void)
342{
343 int error;
344
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200345 device_pm_lock();
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100346
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200347 error = device_power_down(PMSG_QUIESCE);
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100348 if (error) {
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100349 printk(KERN_ERR "PM: Some devices failed to power down, "
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100350 "aborting resume\n");
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100351 goto Unlock;
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100352 }
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100353
354 local_irq_disable();
355
Rafael J. Wysocki770824b2009-02-22 18:38:50 +0100356 sysdev_suspend(PMSG_QUIESCE);
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100357 /* We'll ignore saved state, but this gets preempt count (etc) right */
358 save_processor_state();
359 error = restore_highmem();
360 if (!error) {
361 error = swsusp_arch_resume();
362 /*
363 * The code below is only ever reached in case of a failure.
364 * Otherwise execution continues at place where
365 * swsusp_arch_suspend() was called
366 */
367 BUG_ON(!error);
368 /* This call to restore_highmem() undos the previous one */
369 restore_highmem();
370 }
371 /*
372 * The only reason why swsusp_arch_resume() can fail is memory being
373 * very tight, so we have to free it as soon as we can to avoid
374 * subsequent failures
375 */
376 swsusp_free();
377 restore_processor_state();
378 touch_softlockup_watchdog();
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100379
Rafael J. Wysocki770824b2009-02-22 18:38:50 +0100380 sysdev_resume();
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100381
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100382 local_irq_enable();
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100383
384 device_power_up(PMSG_RECOVER);
385
386 Unlock:
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200387 device_pm_unlock();
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100388
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100389 return error;
390}
391
392/**
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700393 * hibernation_restore - quiesce devices and restore the hibernation
394 * snapshot image. If successful, control returns in hibernation_snaphot()
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700395 * @platform_mode - if set, use the platform driver, if available, to
396 * prepare the platform frimware for the transition.
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700397 *
398 * Must be called with pm_mutex held
399 */
400
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700401int hibernation_restore(int platform_mode)
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700402{
Ingo Molnarcbe2f5a2008-11-23 10:37:12 +0100403 int error;
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700404
405 pm_prepare_console();
406 suspend_console();
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200407 error = device_suspend(PMSG_QUIESCE);
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700408 if (error)
409 goto Finish;
410
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700411 error = platform_pre_restore(platform_mode);
412 if (!error) {
413 error = disable_nonboot_cpus();
414 if (!error)
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100415 error = resume_target_kernel();
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700416 enable_nonboot_cpus();
417 }
418 platform_restore_cleanup(platform_mode);
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200419 device_resume(PMSG_RECOVER);
Rafael J. Wysocki10a18032007-07-19 01:47:31 -0700420 Finish:
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700421 resume_console();
422 pm_restore_console();
423 return error;
424}
425
426/**
427 * hibernation_platform_enter - enter the hibernation state using the
428 * platform driver (if available)
429 */
430
431int hibernation_platform_enter(void)
432{
Ingo Molnarcbe2f5a2008-11-23 10:37:12 +0100433 int error;
Rafael J. Wysockib1457bc2007-07-19 01:47:31 -0700434
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700435 if (!hibernation_ops)
436 return -ENOSYS;
437
438 /*
439 * We have cancelled the power transition by running
440 * hibernation_ops->finish() before saving the image, so we should let
441 * the firmware know that we're going to enter the sleep state after all
442 */
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100443 error = hibernation_ops->begin();
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700444 if (error)
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100445 goto Close;
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700446
Rafael J. Wysockiabfe2d72009-01-19 20:54:54 +0100447 entering_platform_hibernation = true;
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700448 suspend_console();
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +0100449 error = device_suspend(PMSG_HIBERNATE);
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200450 if (error) {
451 if (hibernation_ops->recover)
452 hibernation_ops->recover();
453 goto Resume_devices;
454 }
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700455
456 error = hibernation_ops->prepare();
457 if (error)
458 goto Resume_devices;
459
460 error = disable_nonboot_cpus();
461 if (error)
462 goto Finish;
463
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200464 device_pm_lock();
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100465
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +0100466 error = device_power_down(PMSG_HIBERNATE);
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700467 if (!error) {
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100468 local_irq_disable();
Rafael J. Wysocki770824b2009-02-22 18:38:50 +0100469 sysdev_suspend(PMSG_HIBERNATE);
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700470 hibernation_ops->enter();
471 /* We should never get here */
472 while (1);
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700473 }
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100474
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200475 device_pm_unlock();
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700476
477 /*
478 * We don't need to reenable the nonboot CPUs or resume consoles, since
479 * the system is going to be halted anyway.
480 */
481 Finish:
482 hibernation_ops->finish();
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100483
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700484 Resume_devices:
Rafael J. Wysockiabfe2d72009-01-19 20:54:54 +0100485 entering_platform_hibernation = false;
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200486 device_resume(PMSG_RESTORE);
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700487 resume_console();
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100488
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100489 Close:
490 hibernation_ops->end();
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100491
Rafael J. Wysockib1457bc2007-07-19 01:47:31 -0700492 return error;
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700493}
494
495/**
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700496 * power_down - Shut the machine down for hibernation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 *
Johannes Bergfe0c9352007-04-30 15:09:51 -0700498 * Use the platform driver, if configured so; otherwise try
499 * to power off or reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 */
501
Johannes Bergfe0c9352007-04-30 15:09:51 -0700502static void power_down(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700504 switch (hibernation_mode) {
505 case HIBERNATION_TEST:
506 case HIBERNATION_TESTPROC:
Johannes Bergfe0c9352007-04-30 15:09:51 -0700507 break;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700508 case HIBERNATION_REBOOT:
Eric W. Biedermanfdde86a2005-07-26 12:01:17 -0600509 kernel_restart(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 break;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700511 case HIBERNATION_PLATFORM:
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700512 hibernation_platform_enter();
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700513 case HIBERNATION_SHUTDOWN:
514 kernel_power_off();
515 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 }
Eric W. Biedermanfdde86a2005-07-26 12:01:17 -0600517 kernel_halt();
Johannes Bergfe0c9352007-04-30 15:09:51 -0700518 /*
519 * Valid image is on the disk, if we continue we risk serious data
520 * corruption after resume.
521 */
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100522 printk(KERN_CRIT "PM: Please power down manually\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 while(1);
524}
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526static int prepare_processes(void)
527{
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800528 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 if (freeze_processes()) {
531 error = -EBUSY;
Rafael J. Wysocki5a0a2f32008-01-11 01:25:21 +0100532 thaw_processes();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
Li Shaohua5a72e042005-06-25 14:55:06 -0700534 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537/**
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700538 * hibernate - The granpappy of the built-in hibernation management
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 */
540
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700541int hibernate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
543 int error;
544
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700545 mutex_lock(&pm_mutex);
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700546 /* The snapshot device should not be opened while we're running */
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700547 if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
548 error = -EBUSY;
549 goto Unlock;
550 }
551
Rafael J. Wysocki5a0a2f32008-01-11 01:25:21 +0100552 pm_prepare_console();
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700553 error = pm_notifier_call_chain(PM_HIBERNATION_PREPARE);
554 if (error)
555 goto Exit;
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700556
Rafael J. Wysocki1bfcf132008-10-15 22:01:21 -0700557 error = usermodehelper_disable();
558 if (error)
559 goto Exit;
560
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700561 /* Allocate memory management structures */
562 error = create_basic_memory_bitmaps();
563 if (error)
564 goto Exit;
565
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100566 printk(KERN_INFO "PM: Syncing filesystems ... ");
Rafael J. Wysocki232b1432007-10-18 03:04:44 -0700567 sys_sync();
568 printk("done.\n");
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 error = prepare_processes();
Li Shaohua5a72e042005-06-25 14:55:06 -0700571 if (error)
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700572 goto Finish;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100574 if (hibernation_test(TEST_FREEZER))
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800575 goto Thaw;
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100576
577 if (hibernation_testmode(HIBERNATION_TESTPROC))
578 goto Thaw;
579
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700580 error = hibernation_snapshot(hibernation_mode == HIBERNATION_PLATFORM);
581 if (in_suspend && !error) {
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700582 unsigned int flags = 0;
583
584 if (hibernation_mode == HIBERNATION_PLATFORM)
585 flags |= SF_PLATFORM_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 pr_debug("PM: writing image.\n");
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700587 error = swsusp_write(flags);
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700588 swsusp_free();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if (!error)
Johannes Bergfe0c9352007-04-30 15:09:51 -0700590 power_down();
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800591 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 pr_debug("PM: Image restored successfully.\n");
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700593 swsusp_free();
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800594 }
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800595 Thaw:
Rafael J. Wysocki5a0a2f32008-01-11 01:25:21 +0100596 thaw_processes();
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700597 Finish:
598 free_basic_memory_bitmaps();
Rafael J. Wysocki1bfcf132008-10-15 22:01:21 -0700599 usermodehelper_enable();
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700600 Exit:
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700601 pm_notifier_call_chain(PM_POST_HIBERNATION);
Rafael J. Wysocki5a0a2f32008-01-11 01:25:21 +0100602 pm_restore_console();
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700603 atomic_inc(&snapshot_device_available);
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700604 Unlock:
605 mutex_unlock(&pm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return error;
607}
608
609
610/**
611 * software_resume - Resume from a saved image.
612 *
613 * Called as a late_initcall (so all devices are discovered and
614 * initialized), we call swsusp to see if we have a saved image or not.
615 * If so, we quiesce devices, the restore the saved image. We will
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700616 * return above (in hibernate() ) if everything goes well.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 * Otherwise, we fail gracefully and return to the normally
618 * scheduled program.
619 *
620 */
621
622static int software_resume(void)
623{
624 int error;
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700625 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Johannes Berg60a0d232007-11-14 17:00:16 -0800627 /*
Arjan van de Veneed3ee02009-02-14 02:00:19 +0100628 * If the user said "noresume".. bail out early.
629 */
630 if (noresume)
631 return 0;
632
633 /*
Johannes Berg60a0d232007-11-14 17:00:16 -0800634 * name_to_dev_t() below takes a sysfs buffer mutex when sysfs
635 * is configured into the kernel. Since the regular hibernate
636 * trigger path is via sysfs which takes a buffer mutex before
637 * calling hibernate functions (which take pm_mutex) this can
638 * cause lockdep to complain about a possible ABBA deadlock
639 * which cannot happen since we're in the boot code here and
640 * sysfs can't be invoked yet. Therefore, we use a subclass
641 * here to avoid lockdep complaining.
642 */
643 mutex_lock_nested(&pm_mutex, SINGLE_DEPTH_NESTING);
Pavel Machek3efa1472005-07-07 17:56:43 -0700644 if (!swsusp_resume_device) {
Shaohua Lidd5d6662005-09-03 15:57:04 -0700645 if (!strlen(resume_file)) {
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800646 mutex_unlock(&pm_mutex);
Pavel Machek3efa1472005-07-07 17:56:43 -0700647 return -ENOENT;
Shaohua Lidd5d6662005-09-03 15:57:04 -0700648 }
Arjan van de Veneed3ee02009-02-14 02:00:19 +0100649 /*
650 * Some device discovery might still be in progress; we need
651 * to wait for this to finish.
652 */
653 wait_for_device_probe();
Pavel Machek3efa1472005-07-07 17:56:43 -0700654 swsusp_resume_device = name_to_dev_t(resume_file);
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100655 pr_debug("PM: Resume from partition %s\n", resume_file);
Pavel Machek3efa1472005-07-07 17:56:43 -0700656 } else {
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100657 pr_debug("PM: Resume from partition %d:%d\n",
658 MAJOR(swsusp_resume_device),
659 MINOR(swsusp_resume_device));
Pavel Machek3efa1472005-07-07 17:56:43 -0700660 }
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (noresume) {
663 /**
Rafael J. Wysocki95758092007-12-08 02:06:57 +0100664 * FIXME: If noresume is specified, we need to find the
665 * partition and reset it back to normal swap space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 */
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800667 mutex_unlock(&pm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 return 0;
669 }
670
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100671 pr_debug("PM: Checking hibernation image.\n");
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800672 error = swsusp_check();
673 if (error)
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700674 goto Unlock;
675
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700676 /* The snapshot device should not be opened while we're running */
677 if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
678 error = -EBUSY;
679 goto Unlock;
680 }
681
Rafael J. Wysocki5a0a2f32008-01-11 01:25:21 +0100682 pm_prepare_console();
Alan Sternc3e94d82007-11-19 23:38:25 +0100683 error = pm_notifier_call_chain(PM_RESTORE_PREPARE);
684 if (error)
685 goto Finish;
686
Rafael J. Wysocki1bfcf132008-10-15 22:01:21 -0700687 error = usermodehelper_disable();
688 if (error)
689 goto Finish;
690
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700691 error = create_basic_memory_bitmaps();
692 if (error)
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700693 goto Finish;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
695 pr_debug("PM: Preparing processes for restore.\n");
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800696 error = prepare_processes();
697 if (error) {
Al Viroc2dd0da2007-10-08 13:21:10 -0400698 swsusp_close(FMODE_READ);
Li Shaohua5a72e042005-06-25 14:55:06 -0700699 goto Done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
701
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100702 pr_debug("PM: Reading hibernation image.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700704 error = swsusp_read(&flags);
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800705 if (!error)
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700706 hibernation_restore(flags & SF_PLATFORM_MODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800708 printk(KERN_ERR "PM: Restore failed, recovering.\n");
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700709 swsusp_free();
Rafael J. Wysocki5a0a2f32008-01-11 01:25:21 +0100710 thaw_processes();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 Done:
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700712 free_basic_memory_bitmaps();
Rafael J. Wysocki1bfcf132008-10-15 22:01:21 -0700713 usermodehelper_enable();
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700714 Finish:
Alan Sternc3e94d82007-11-19 23:38:25 +0100715 pm_notifier_call_chain(PM_POST_RESTORE);
Rafael J. Wysocki5a0a2f32008-01-11 01:25:21 +0100716 pm_restore_console();
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700717 atomic_inc(&snapshot_device_available);
Shaohua Lidd5d6662005-09-03 15:57:04 -0700718 /* For success case, the suspend path will release the lock */
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700719 Unlock:
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800720 mutex_unlock(&pm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 pr_debug("PM: Resume from disk failed.\n");
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700722 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723}
724
725late_initcall(software_resume);
726
727
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700728static const char * const hibernation_modes[] = {
729 [HIBERNATION_PLATFORM] = "platform",
730 [HIBERNATION_SHUTDOWN] = "shutdown",
731 [HIBERNATION_REBOOT] = "reboot",
732 [HIBERNATION_TEST] = "test",
733 [HIBERNATION_TESTPROC] = "testproc",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734};
735
736/**
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700737 * disk - Control hibernation mode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 *
Johannes Berg11d77d02007-04-30 15:09:53 -0700739 * Suspend-to-disk can be handled in several ways. We have a few options
740 * for putting the system to sleep - using the platform driver (e.g. ACPI
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700741 * or other hibernation_ops), powering off the system or rebooting the
742 * system (for testing) as well as the two test modes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 *
Johannes Berg11d77d02007-04-30 15:09:53 -0700744 * The system can support 'platform', and that is known a priori (and
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700745 * encoded by the presence of hibernation_ops). However, the user may
746 * choose 'shutdown' or 'reboot' as alternatives, as well as one fo the
747 * test modes, 'test' or 'testproc'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 *
749 * show() will display what the mode is currently set to.
750 * store() will accept one of
751 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 * 'platform'
753 * 'shutdown'
754 * 'reboot'
Johannes Berg11d77d02007-04-30 15:09:53 -0700755 * 'test'
756 * 'testproc'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 *
Johannes Berg11d77d02007-04-30 15:09:53 -0700758 * It will only change to 'platform' if the system
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700759 * supports it (as determined by having hibernation_ops).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 */
761
Kay Sievers386f2752007-11-02 13:47:53 +0100762static ssize_t disk_show(struct kobject *kobj, struct kobj_attribute *attr,
763 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764{
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700765 int i;
766 char *start = buf;
767
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700768 for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
769 if (!hibernation_modes[i])
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700770 continue;
771 switch (i) {
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700772 case HIBERNATION_SHUTDOWN:
773 case HIBERNATION_REBOOT:
774 case HIBERNATION_TEST:
775 case HIBERNATION_TESTPROC:
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700776 break;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700777 case HIBERNATION_PLATFORM:
778 if (hibernation_ops)
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700779 break;
780 /* not a valid mode, continue with loop */
781 continue;
782 }
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700783 if (i == hibernation_mode)
784 buf += sprintf(buf, "[%s] ", hibernation_modes[i]);
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700785 else
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700786 buf += sprintf(buf, "%s ", hibernation_modes[i]);
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700787 }
788 buf += sprintf(buf, "\n");
789 return buf-start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790}
791
792
Kay Sievers386f2752007-11-02 13:47:53 +0100793static ssize_t disk_store(struct kobject *kobj, struct kobj_attribute *attr,
794 const char *buf, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
796 int error = 0;
797 int i;
798 int len;
799 char *p;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700800 int mode = HIBERNATION_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802 p = memchr(buf, '\n', n);
803 len = p ? p - buf : n;
804
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800805 mutex_lock(&pm_mutex);
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700806 for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
Rafael J. Wysocki8d98a692007-05-16 22:11:19 -0700807 if (len == strlen(hibernation_modes[i])
808 && !strncmp(buf, hibernation_modes[i], len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 mode = i;
810 break;
811 }
812 }
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700813 if (mode != HIBERNATION_INVALID) {
Johannes Bergfe0c9352007-04-30 15:09:51 -0700814 switch (mode) {
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700815 case HIBERNATION_SHUTDOWN:
816 case HIBERNATION_REBOOT:
817 case HIBERNATION_TEST:
818 case HIBERNATION_TESTPROC:
819 hibernation_mode = mode;
Johannes Bergfe0c9352007-04-30 15:09:51 -0700820 break;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700821 case HIBERNATION_PLATFORM:
822 if (hibernation_ops)
823 hibernation_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 else
825 error = -EINVAL;
826 }
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700827 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 error = -EINVAL;
829
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700830 if (!error)
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100831 pr_debug("PM: Hibernation mode set to '%s'\n",
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700832 hibernation_modes[mode]);
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800833 mutex_unlock(&pm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 return error ? error : n;
835}
836
837power_attr(disk);
838
Kay Sievers386f2752007-11-02 13:47:53 +0100839static ssize_t resume_show(struct kobject *kobj, struct kobj_attribute *attr,
840 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
842 return sprintf(buf,"%d:%d\n", MAJOR(swsusp_resume_device),
843 MINOR(swsusp_resume_device));
844}
845
Kay Sievers386f2752007-11-02 13:47:53 +0100846static ssize_t resume_store(struct kobject *kobj, struct kobj_attribute *attr,
847 const char *buf, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 unsigned int maj, min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 dev_t res;
Andrew Mortona5762192006-01-06 00:09:50 -0800851 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Andrew Mortona5762192006-01-06 00:09:50 -0800853 if (sscanf(buf, "%u:%u", &maj, &min) != 2)
854 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Andrew Mortona5762192006-01-06 00:09:50 -0800856 res = MKDEV(maj,min);
857 if (maj != MAJOR(res) || min != MINOR(res))
858 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800860 mutex_lock(&pm_mutex);
Andrew Mortona5762192006-01-06 00:09:50 -0800861 swsusp_resume_device = res;
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800862 mutex_unlock(&pm_mutex);
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100863 printk(KERN_INFO "PM: Starting manual resume from disk\n");
Andrew Mortona5762192006-01-06 00:09:50 -0800864 noresume = 0;
865 software_resume();
866 ret = n;
Rafael J. Wysocki59a493352006-12-06 20:34:44 -0800867 out:
Andrew Mortona5762192006-01-06 00:09:50 -0800868 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
870
871power_attr(resume);
872
Kay Sievers386f2752007-11-02 13:47:53 +0100873static ssize_t image_size_show(struct kobject *kobj, struct kobj_attribute *attr,
874 char *buf)
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800875{
Rafael J. Wysocki853609b2006-02-01 03:05:07 -0800876 return sprintf(buf, "%lu\n", image_size);
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800877}
878
Kay Sievers386f2752007-11-02 13:47:53 +0100879static ssize_t image_size_store(struct kobject *kobj, struct kobj_attribute *attr,
880 const char *buf, size_t n)
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800881{
Rafael J. Wysocki853609b2006-02-01 03:05:07 -0800882 unsigned long size;
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800883
Rafael J. Wysocki853609b2006-02-01 03:05:07 -0800884 if (sscanf(buf, "%lu", &size) == 1) {
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800885 image_size = size;
886 return n;
887 }
888
889 return -EINVAL;
890}
891
892power_attr(image_size);
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894static struct attribute * g[] = {
895 &disk_attr.attr,
896 &resume_attr.attr,
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800897 &image_size_attr.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 NULL,
899};
900
901
902static struct attribute_group attr_group = {
903 .attrs = g,
904};
905
906
907static int __init pm_disk_init(void)
908{
Greg Kroah-Hartmand76e15f2007-11-27 11:28:26 -0800909 return sysfs_create_group(power_kobj, &attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
911
912core_initcall(pm_disk_init);
913
914
915static int __init resume_setup(char *str)
916{
917 if (noresume)
918 return 1;
919
920 strncpy( resume_file, str, 255 );
921 return 1;
922}
923
Rafael J. Wysocki9a154d92006-12-06 20:34:12 -0800924static int __init resume_offset_setup(char *str)
925{
926 unsigned long long offset;
927
928 if (noresume)
929 return 1;
930
931 if (sscanf(str, "%llu", &offset) == 1)
932 swsusp_resume_block = offset;
933
934 return 1;
935}
936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937static int __init noresume_setup(char *str)
938{
939 noresume = 1;
940 return 1;
941}
942
943__setup("noresume", noresume_setup);
Rafael J. Wysocki9a154d92006-12-06 20:34:12 -0800944__setup("resume_offset=", resume_offset_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945__setup("resume=", resume_setup);