blob: 5cb080e7eebd9a388d31a12425283c6b768a6e59 [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>
Rafael J. Wysockic7510852009-04-12 20:06:56 +020025#include <scsi/scsi_scan.h>
Magnus Damma8af7892009-03-31 15:23:37 -070026#include <asm/suspend.h>
Andrew Mortond53d9f12005-07-12 13:58:07 -070027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "power.h"
29
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031static int noresume = 0;
Adrian Bunk47a460d2008-02-04 22:30:06 -080032static char resume_file[256] = CONFIG_PM_STD_PARTITION;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033dev_t swsusp_resume_device;
Rafael J. Wysocki9a154d92006-12-06 20:34:12 -080034sector_t swsusp_resume_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070036enum {
37 HIBERNATION_INVALID,
38 HIBERNATION_PLATFORM,
39 HIBERNATION_TEST,
40 HIBERNATION_TESTPROC,
41 HIBERNATION_SHUTDOWN,
42 HIBERNATION_REBOOT,
43 /* keep last */
44 __HIBERNATION_AFTER_LAST
45};
46#define HIBERNATION_MAX (__HIBERNATION_AFTER_LAST-1)
47#define HIBERNATION_FIRST (HIBERNATION_INVALID + 1)
48
49static int hibernation_mode = HIBERNATION_SHUTDOWN;
50
Rafael J. Wysockib3dac3b2007-10-18 03:04:43 -070051static struct platform_hibernation_ops *hibernation_ops;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070052
53/**
54 * hibernation_set_ops - set the global hibernate operations
55 * @ops: the hibernation operations to use in subsequent hibernation transitions
56 */
57
Rafael J. Wysockib3dac3b2007-10-18 03:04:43 -070058void hibernation_set_ops(struct platform_hibernation_ops *ops)
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070059{
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +010060 if (ops && !(ops->begin && ops->end && ops->pre_snapshot
61 && ops->prepare && ops->finish && ops->enter && ops->pre_restore
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -070062 && ops->restore_cleanup)) {
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070063 WARN_ON(1);
64 return;
65 }
66 mutex_lock(&pm_mutex);
67 hibernation_ops = ops;
68 if (ops)
69 hibernation_mode = HIBERNATION_PLATFORM;
70 else if (hibernation_mode == HIBERNATION_PLATFORM)
71 hibernation_mode = HIBERNATION_SHUTDOWN;
72
73 mutex_unlock(&pm_mutex);
74}
75
Rafael J. Wysockiabfe2d72009-01-19 20:54:54 +010076static bool entering_platform_hibernation;
77
78bool system_entering_hibernation(void)
79{
80 return entering_platform_hibernation;
81}
82EXPORT_SYMBOL(system_entering_hibernation);
83
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +010084#ifdef CONFIG_PM_DEBUG
85static void hibernation_debug_sleep(void)
86{
87 printk(KERN_INFO "hibernation debug: Waiting for 5 seconds.\n");
88 mdelay(5000);
89}
90
91static int hibernation_testmode(int mode)
92{
93 if (hibernation_mode == mode) {
94 hibernation_debug_sleep();
95 return 1;
96 }
97 return 0;
98}
99
100static int hibernation_test(int level)
101{
102 if (pm_test_level == level) {
103 hibernation_debug_sleep();
104 return 1;
105 }
106 return 0;
107}
108#else /* !CONFIG_PM_DEBUG */
109static int hibernation_testmode(int mode) { return 0; }
110static int hibernation_test(int level) { return 0; }
111#endif /* !CONFIG_PM_DEBUG */
112
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700113/**
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100114 * platform_begin - tell the platform driver that we're starting
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700115 * hibernation
116 */
117
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100118static int platform_begin(int platform_mode)
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700119{
120 return (platform_mode && hibernation_ops) ?
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100121 hibernation_ops->begin() : 0;
122}
123
124/**
125 * platform_end - tell the platform driver that we've entered the
126 * working state
127 */
128
129static void platform_end(int platform_mode)
130{
131 if (platform_mode && hibernation_ops)
132 hibernation_ops->end();
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700133}
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135/**
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700136 * platform_pre_snapshot - prepare the machine for hibernation using the
Stefan Seyfried8a05aac2006-12-06 20:34:21 -0800137 * platform driver if so configured and return an error code if it fails
138 */
139
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700140static int platform_pre_snapshot(int platform_mode)
Stefan Seyfried8a05aac2006-12-06 20:34:21 -0800141{
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700142 return (platform_mode && hibernation_ops) ?
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700143 hibernation_ops->pre_snapshot() : 0;
Stefan Seyfried8a05aac2006-12-06 20:34:21 -0800144}
145
146/**
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700147 * platform_leave - prepare the machine for switching to the normal mode
148 * of operation using the platform driver (called with interrupts disabled)
149 */
150
151static void platform_leave(int platform_mode)
152{
153 if (platform_mode && hibernation_ops)
154 hibernation_ops->leave();
155}
156
157/**
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700158 * platform_finish - switch the machine to the normal mode of operation
159 * using the platform driver (must be called after platform_prepare())
160 */
161
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700162static void platform_finish(int platform_mode)
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700163{
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700164 if (platform_mode && hibernation_ops)
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700165 hibernation_ops->finish();
166}
167
168/**
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700169 * platform_pre_restore - prepare the platform for the restoration from a
170 * hibernation image. If the restore fails after this function has been
171 * called, platform_restore_cleanup() must be called.
172 */
173
174static int platform_pre_restore(int platform_mode)
175{
176 return (platform_mode && hibernation_ops) ?
177 hibernation_ops->pre_restore() : 0;
178}
179
180/**
181 * platform_restore_cleanup - switch the platform to the normal mode of
182 * operation after a failing restore. If platform_pre_restore() has been
183 * called before the failing restore, this function must be called too,
184 * regardless of the result of platform_pre_restore().
185 */
186
187static void platform_restore_cleanup(int platform_mode)
188{
189 if (platform_mode && hibernation_ops)
190 hibernation_ops->restore_cleanup();
191}
192
193/**
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200194 * platform_recover - recover the platform from a failure to suspend
195 * devices.
196 */
197
198static void platform_recover(int platform_mode)
199{
200 if (platform_mode && hibernation_ops && hibernation_ops->recover)
201 hibernation_ops->recover();
202}
203
204/**
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700205 * create_image - freeze devices that need to be frozen with interrupts
206 * off, create the hibernation image and thaw those devices. Control
207 * reappears in this routine after a restore.
208 */
209
Adrian Bunk47a460d2008-02-04 22:30:06 -0800210static int create_image(int platform_mode)
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700211{
212 int error;
213
214 error = arch_prepare_suspend();
215 if (error)
216 return error;
217
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. Wysocki32bdfac2009-05-24 21:15:07 +0200228 return error;
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700229 }
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100230
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100231 error = platform_pre_snapshot(platform_mode);
232 if (error || hibernation_test(TEST_PLATFORM))
233 goto Platform_finish;
234
235 error = disable_nonboot_cpus();
236 if (error || hibernation_test(TEST_CPUS)
237 || hibernation_testmode(HIBERNATION_TEST))
238 goto Enable_cpus;
239
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100240 local_irq_disable();
241
Bjorn Helgaas44840792009-05-15 23:30:50 +0200242 error = sysdev_suspend(PMSG_FREEZE);
Rafael J. Wysocki770824b2009-02-22 18:38:50 +0100243 if (error) {
Bjorn Helgaas44840792009-05-15 23:30:50 +0200244 printk(KERN_ERR "PM: Some system devices failed to power down, "
Rafael J. Wysocki770824b2009-02-22 18:38:50 +0100245 "aborting hibernation\n");
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100246 goto Enable_irqs;
Rafael J. Wysocki770824b2009-02-22 18:38:50 +0100247 }
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700248
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100249 if (hibernation_test(TEST_CORE))
250 goto Power_up;
251
252 in_suspend = 1;
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700253 save_processor_state();
254 error = swsusp_arch_suspend();
255 if (error)
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100256 printk(KERN_ERR "PM: Error %d creating hibernation image\n",
257 error);
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700258 /* Restore control flow magically appears here */
259 restore_processor_state();
260 if (!in_suspend)
261 platform_leave(platform_mode);
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100262
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100263 Power_up:
Rafael J. Wysocki770824b2009-02-22 18:38:50 +0100264 sysdev_resume();
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700265 /* NOTE: device_power_up() is just a resume() for devices
266 * that suspended with irqs off ... no overall powerup.
267 */
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100268
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100269 Enable_irqs:
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100270 local_irq_enable();
271
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100272 Enable_cpus:
273 enable_nonboot_cpus();
274
275 Platform_finish:
276 platform_finish(platform_mode);
277
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200278 device_power_up(in_suspend ?
279 (error ? PMSG_RECOVER : PMSG_THAW) : PMSG_RESTORE);
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100280
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700281 return error;
282}
283
284/**
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700285 * hibernation_snapshot - quiesce devices and create the hibernation
286 * snapshot image.
287 * @platform_mode - if set, use the platform driver, if available, to
Nick Andrew877d0312009-01-26 11:06:57 +0100288 * prepare the platform firmware for the power transition.
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700289 *
290 * Must be called with pm_mutex held
291 */
292
293int hibernation_snapshot(int platform_mode)
294{
Ingo Molnarcbe2f5a2008-11-23 10:37:12 +0100295 int error;
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700296
Zhang Rui3fe03132008-10-26 20:50:26 +0100297 error = platform_begin(platform_mode);
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700298 if (error)
Rafael J. Wysocki10a18032007-07-19 01:47:31 -0700299 return error;
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700300
Zhang Rui3fe03132008-10-26 20:50:26 +0100301 /* Free memory before shutting down devices. */
302 error = swsusp_shrink_memory();
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700303 if (error)
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100304 goto Close;
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700305
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700306 suspend_console();
307 error = device_suspend(PMSG_FREEZE);
308 if (error)
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200309 goto Recover_platform;
Rafael J. Wysocki10a18032007-07-19 01:47:31 -0700310
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100311 if (hibernation_test(TEST_DEVICES))
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200312 goto Recover_platform;
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700313
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100314 error = create_image(platform_mode);
315 /* Control returns here after successful restore */
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100316
Rafael J. Wysocki4cc79772007-11-19 23:42:31 +0100317 Resume_devices:
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200318 device_resume(in_suspend ?
319 (error ? PMSG_RECOVER : PMSG_THAW) : PMSG_RESTORE);
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700320 resume_console();
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100321 Close:
322 platform_end(platform_mode);
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700323 return error;
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200324
325 Recover_platform:
326 platform_recover(platform_mode);
327 goto Resume_devices;
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700328}
329
330/**
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100331 * resume_target_kernel - prepare devices that need to be suspended with
332 * interrupts off, restore the contents of highmem that have not been
333 * restored yet from the image and run the low level code that will restore
334 * the remaining contents of memory and switch to the just restored target
335 * kernel.
336 */
337
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100338static int resume_target_kernel(bool platform_mode)
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100339{
340 int error;
341
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200342 error = device_power_down(PMSG_QUIESCE);
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100343 if (error) {
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100344 printk(KERN_ERR "PM: Some devices failed to power down, "
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100345 "aborting resume\n");
Rafael J. Wysocki32bdfac2009-05-24 21:15:07 +0200346 return error;
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100347 }
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100348
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100349 error = platform_pre_restore(platform_mode);
350 if (error)
351 goto Cleanup;
352
353 error = disable_nonboot_cpus();
354 if (error)
355 goto Enable_cpus;
356
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100357 local_irq_disable();
358
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100359 error = sysdev_suspend(PMSG_QUIESCE);
360 if (error)
361 goto Enable_irqs;
362
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100363 /* We'll ignore saved state, but this gets preempt count (etc) right */
364 save_processor_state();
365 error = restore_highmem();
366 if (!error) {
367 error = swsusp_arch_resume();
368 /*
369 * The code below is only ever reached in case of a failure.
370 * Otherwise execution continues at place where
371 * swsusp_arch_suspend() was called
372 */
373 BUG_ON(!error);
374 /* This call to restore_highmem() undos the previous one */
375 restore_highmem();
376 }
377 /*
378 * The only reason why swsusp_arch_resume() can fail is memory being
379 * very tight, so we have to free it as soon as we can to avoid
380 * subsequent failures
381 */
382 swsusp_free();
383 restore_processor_state();
384 touch_softlockup_watchdog();
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100385
Rafael J. Wysocki770824b2009-02-22 18:38:50 +0100386 sysdev_resume();
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100387
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100388 Enable_irqs:
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100389 local_irq_enable();
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100390
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100391 Enable_cpus:
392 enable_nonboot_cpus();
393
394 Cleanup:
395 platform_restore_cleanup(platform_mode);
396
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100397 device_power_up(PMSG_RECOVER);
398
Rafael J. Wysocki72df68c2007-12-08 02:04:21 +0100399 return error;
400}
401
402/**
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700403 * hibernation_restore - quiesce devices and restore the hibernation
404 * snapshot image. If successful, control returns in hibernation_snaphot()
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700405 * @platform_mode - if set, use the platform driver, if available, to
Nick Andrew877d0312009-01-26 11:06:57 +0100406 * prepare the platform firmware for the transition.
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700407 *
408 * Must be called with pm_mutex held
409 */
410
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700411int hibernation_restore(int platform_mode)
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700412{
Ingo Molnarcbe2f5a2008-11-23 10:37:12 +0100413 int error;
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700414
415 pm_prepare_console();
416 suspend_console();
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200417 error = device_suspend(PMSG_QUIESCE);
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700418 if (!error) {
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100419 error = resume_target_kernel(platform_mode);
420 device_resume(PMSG_RECOVER);
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700421 }
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700422 resume_console();
423 pm_restore_console();
424 return error;
425}
426
427/**
428 * hibernation_platform_enter - enter the hibernation state using the
429 * platform driver (if available)
430 */
431
432int hibernation_platform_enter(void)
433{
Ingo Molnarcbe2f5a2008-11-23 10:37:12 +0100434 int error;
Rafael J. Wysockib1457bc2007-07-19 01:47:31 -0700435
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700436 if (!hibernation_ops)
437 return -ENOSYS;
438
439 /*
440 * We have cancelled the power transition by running
441 * hibernation_ops->finish() before saving the image, so we should let
442 * the firmware know that we're going to enter the sleep state after all
443 */
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100444 error = hibernation_ops->begin();
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700445 if (error)
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100446 goto Close;
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700447
Rafael J. Wysockiabfe2d72009-01-19 20:54:54 +0100448 entering_platform_hibernation = true;
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700449 suspend_console();
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +0100450 error = device_suspend(PMSG_HIBERNATE);
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200451 if (error) {
452 if (hibernation_ops->recover)
453 hibernation_ops->recover();
454 goto Resume_devices;
455 }
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700456
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +0100457 error = device_power_down(PMSG_HIBERNATE);
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100458 if (error)
Rafael J. Wysocki32bdfac2009-05-24 21:15:07 +0200459 goto Resume_devices;
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100460
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100461 error = hibernation_ops->prepare();
462 if (error)
463 goto Platofrm_finish;
464
465 error = disable_nonboot_cpus();
466 if (error)
467 goto Platofrm_finish;
468
469 local_irq_disable();
470 sysdev_suspend(PMSG_HIBERNATE);
471 hibernation_ops->enter();
472 /* We should never get here */
473 while (1);
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700474
475 /*
476 * We don't need to reenable the nonboot CPUs or resume consoles, since
477 * the system is going to be halted anyway.
478 */
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100479 Platofrm_finish:
Rafael J. Wysocki9cd9a002007-10-18 03:04:56 -0700480 hibernation_ops->finish();
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100481
Rafael J. Wysocki4aecd672009-03-16 22:34:26 +0100482 device_power_up(PMSG_RESTORE);
483
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);
Rafael J. Wysocki0c8454f2009-04-25 00:16:06 +0200644
645 if (swsusp_resume_device)
646 goto Check_image;
647
648 if (!strlen(resume_file)) {
649 error = -ENOENT;
650 goto Unlock;
651 }
652
653 pr_debug("PM: Checking image partition %s\n", resume_file);
654
655 /* Check if the device is there */
656 swsusp_resume_device = name_to_dev_t(resume_file);
Pavel Machek3efa1472005-07-07 17:56:43 -0700657 if (!swsusp_resume_device) {
Arjan van de Veneed3ee02009-02-14 02:00:19 +0100658 /*
659 * Some device discovery might still be in progress; we need
660 * to wait for this to finish.
661 */
662 wait_for_device_probe();
Rafael J. Wysocki0c8454f2009-04-25 00:16:06 +0200663 /*
664 * We can't depend on SCSI devices being available after loading
665 * one of their modules until scsi_complete_async_scans() is
666 * called and the resume device usually is a SCSI one.
667 */
668 scsi_complete_async_scans();
669
Pavel Machek3efa1472005-07-07 17:56:43 -0700670 swsusp_resume_device = name_to_dev_t(resume_file);
Rafael J. Wysocki0c8454f2009-04-25 00:16:06 +0200671 if (!swsusp_resume_device) {
672 error = -ENODEV;
673 goto Unlock;
674 }
Pavel Machek3efa1472005-07-07 17:56:43 -0700675 }
676
Rafael J. Wysocki0c8454f2009-04-25 00:16:06 +0200677 Check_image:
678 pr_debug("PM: Resume from partition %d:%d\n",
679 MAJOR(swsusp_resume_device), MINOR(swsusp_resume_device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100681 pr_debug("PM: Checking hibernation image.\n");
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800682 error = swsusp_check();
683 if (error)
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700684 goto Unlock;
685
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700686 /* The snapshot device should not be opened while we're running */
687 if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
688 error = -EBUSY;
689 goto Unlock;
690 }
691
Rafael J. Wysocki5a0a2f32008-01-11 01:25:21 +0100692 pm_prepare_console();
Alan Sternc3e94d82007-11-19 23:38:25 +0100693 error = pm_notifier_call_chain(PM_RESTORE_PREPARE);
694 if (error)
695 goto Finish;
696
Rafael J. Wysocki1bfcf132008-10-15 22:01:21 -0700697 error = usermodehelper_disable();
698 if (error)
699 goto Finish;
700
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700701 error = create_basic_memory_bitmaps();
702 if (error)
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700703 goto Finish;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 pr_debug("PM: Preparing processes for restore.\n");
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800706 error = prepare_processes();
707 if (error) {
Al Viroc2dd0da2007-10-08 13:21:10 -0400708 swsusp_close(FMODE_READ);
Li Shaohua5a72e042005-06-25 14:55:06 -0700709 goto Done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 }
711
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100712 pr_debug("PM: Reading hibernation image.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700714 error = swsusp_read(&flags);
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800715 if (!error)
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700716 hibernation_restore(flags & SF_PLATFORM_MODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800718 printk(KERN_ERR "PM: Restore failed, recovering.\n");
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700719 swsusp_free();
Rafael J. Wysocki5a0a2f32008-01-11 01:25:21 +0100720 thaw_processes();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 Done:
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700722 free_basic_memory_bitmaps();
Rafael J. Wysocki1bfcf132008-10-15 22:01:21 -0700723 usermodehelper_enable();
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700724 Finish:
Alan Sternc3e94d82007-11-19 23:38:25 +0100725 pm_notifier_call_chain(PM_POST_RESTORE);
Rafael J. Wysocki5a0a2f32008-01-11 01:25:21 +0100726 pm_restore_console();
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700727 atomic_inc(&snapshot_device_available);
Shaohua Lidd5d6662005-09-03 15:57:04 -0700728 /* For success case, the suspend path will release the lock */
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700729 Unlock:
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800730 mutex_unlock(&pm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 pr_debug("PM: Resume from disk failed.\n");
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700732 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733}
734
735late_initcall(software_resume);
736
737
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700738static const char * const hibernation_modes[] = {
739 [HIBERNATION_PLATFORM] = "platform",
740 [HIBERNATION_SHUTDOWN] = "shutdown",
741 [HIBERNATION_REBOOT] = "reboot",
742 [HIBERNATION_TEST] = "test",
743 [HIBERNATION_TESTPROC] = "testproc",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744};
745
746/**
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700747 * disk - Control hibernation mode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 *
Johannes Berg11d77d02007-04-30 15:09:53 -0700749 * Suspend-to-disk can be handled in several ways. We have a few options
750 * for putting the system to sleep - using the platform driver (e.g. ACPI
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700751 * or other hibernation_ops), powering off the system or rebooting the
752 * system (for testing) as well as the two test modes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 *
Johannes Berg11d77d02007-04-30 15:09:53 -0700754 * The system can support 'platform', and that is known a priori (and
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700755 * encoded by the presence of hibernation_ops). However, the user may
756 * choose 'shutdown' or 'reboot' as alternatives, as well as one fo the
757 * test modes, 'test' or 'testproc'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 *
759 * show() will display what the mode is currently set to.
760 * store() will accept one of
761 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 * 'platform'
763 * 'shutdown'
764 * 'reboot'
Johannes Berg11d77d02007-04-30 15:09:53 -0700765 * 'test'
766 * 'testproc'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 *
Johannes Berg11d77d02007-04-30 15:09:53 -0700768 * It will only change to 'platform' if the system
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700769 * supports it (as determined by having hibernation_ops).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 */
771
Kay Sievers386f2752007-11-02 13:47:53 +0100772static ssize_t disk_show(struct kobject *kobj, struct kobj_attribute *attr,
773 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700775 int i;
776 char *start = buf;
777
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700778 for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
779 if (!hibernation_modes[i])
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700780 continue;
781 switch (i) {
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700782 case HIBERNATION_SHUTDOWN:
783 case HIBERNATION_REBOOT:
784 case HIBERNATION_TEST:
785 case HIBERNATION_TESTPROC:
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700786 break;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700787 case HIBERNATION_PLATFORM:
788 if (hibernation_ops)
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700789 break;
790 /* not a valid mode, continue with loop */
791 continue;
792 }
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700793 if (i == hibernation_mode)
794 buf += sprintf(buf, "[%s] ", hibernation_modes[i]);
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700795 else
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700796 buf += sprintf(buf, "%s ", hibernation_modes[i]);
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700797 }
798 buf += sprintf(buf, "\n");
799 return buf-start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800}
801
802
Kay Sievers386f2752007-11-02 13:47:53 +0100803static ssize_t disk_store(struct kobject *kobj, struct kobj_attribute *attr,
804 const char *buf, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
806 int error = 0;
807 int i;
808 int len;
809 char *p;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700810 int mode = HIBERNATION_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 p = memchr(buf, '\n', n);
813 len = p ? p - buf : n;
814
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800815 mutex_lock(&pm_mutex);
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700816 for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
Rafael J. Wysocki8d98a692007-05-16 22:11:19 -0700817 if (len == strlen(hibernation_modes[i])
818 && !strncmp(buf, hibernation_modes[i], len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 mode = i;
820 break;
821 }
822 }
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700823 if (mode != HIBERNATION_INVALID) {
Johannes Bergfe0c9352007-04-30 15:09:51 -0700824 switch (mode) {
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700825 case HIBERNATION_SHUTDOWN:
826 case HIBERNATION_REBOOT:
827 case HIBERNATION_TEST:
828 case HIBERNATION_TESTPROC:
829 hibernation_mode = mode;
Johannes Bergfe0c9352007-04-30 15:09:51 -0700830 break;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700831 case HIBERNATION_PLATFORM:
832 if (hibernation_ops)
833 hibernation_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 else
835 error = -EINVAL;
836 }
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700837 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 error = -EINVAL;
839
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700840 if (!error)
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100841 pr_debug("PM: Hibernation mode set to '%s'\n",
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700842 hibernation_modes[mode]);
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800843 mutex_unlock(&pm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 return error ? error : n;
845}
846
847power_attr(disk);
848
Kay Sievers386f2752007-11-02 13:47:53 +0100849static ssize_t resume_show(struct kobject *kobj, struct kobj_attribute *attr,
850 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851{
852 return sprintf(buf,"%d:%d\n", MAJOR(swsusp_resume_device),
853 MINOR(swsusp_resume_device));
854}
855
Kay Sievers386f2752007-11-02 13:47:53 +0100856static ssize_t resume_store(struct kobject *kobj, struct kobj_attribute *attr,
857 const char *buf, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 unsigned int maj, min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 dev_t res;
Andrew Mortona5762192006-01-06 00:09:50 -0800861 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Andrew Mortona5762192006-01-06 00:09:50 -0800863 if (sscanf(buf, "%u:%u", &maj, &min) != 2)
864 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Andrew Mortona5762192006-01-06 00:09:50 -0800866 res = MKDEV(maj,min);
867 if (maj != MAJOR(res) || min != MINOR(res))
868 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800870 mutex_lock(&pm_mutex);
Andrew Mortona5762192006-01-06 00:09:50 -0800871 swsusp_resume_device = res;
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800872 mutex_unlock(&pm_mutex);
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100873 printk(KERN_INFO "PM: Starting manual resume from disk\n");
Andrew Mortona5762192006-01-06 00:09:50 -0800874 noresume = 0;
875 software_resume();
876 ret = n;
Rafael J. Wysocki59a493352006-12-06 20:34:44 -0800877 out:
Andrew Mortona5762192006-01-06 00:09:50 -0800878 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879}
880
881power_attr(resume);
882
Kay Sievers386f2752007-11-02 13:47:53 +0100883static ssize_t image_size_show(struct kobject *kobj, struct kobj_attribute *attr,
884 char *buf)
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800885{
Rafael J. Wysocki853609b2006-02-01 03:05:07 -0800886 return sprintf(buf, "%lu\n", image_size);
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800887}
888
Kay Sievers386f2752007-11-02 13:47:53 +0100889static ssize_t image_size_store(struct kobject *kobj, struct kobj_attribute *attr,
890 const char *buf, size_t n)
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800891{
Rafael J. Wysocki853609b2006-02-01 03:05:07 -0800892 unsigned long size;
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800893
Rafael J. Wysocki853609b2006-02-01 03:05:07 -0800894 if (sscanf(buf, "%lu", &size) == 1) {
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800895 image_size = size;
896 return n;
897 }
898
899 return -EINVAL;
900}
901
902power_attr(image_size);
903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904static struct attribute * g[] = {
905 &disk_attr.attr,
906 &resume_attr.attr,
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800907 &image_size_attr.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 NULL,
909};
910
911
912static struct attribute_group attr_group = {
913 .attrs = g,
914};
915
916
917static int __init pm_disk_init(void)
918{
Greg Kroah-Hartmand76e15f2007-11-27 11:28:26 -0800919 return sysfs_create_group(power_kobj, &attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920}
921
922core_initcall(pm_disk_init);
923
924
925static int __init resume_setup(char *str)
926{
927 if (noresume)
928 return 1;
929
930 strncpy( resume_file, str, 255 );
931 return 1;
932}
933
Rafael J. Wysocki9a154d92006-12-06 20:34:12 -0800934static int __init resume_offset_setup(char *str)
935{
936 unsigned long long offset;
937
938 if (noresume)
939 return 1;
940
941 if (sscanf(str, "%llu", &offset) == 1)
942 swsusp_resume_block = offset;
943
944 return 1;
945}
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947static int __init noresume_setup(char *str)
948{
949 noresume = 1;
950 return 1;
951}
952
953__setup("noresume", noresume_setup);
Rafael J. Wysocki9a154d92006-12-06 20:34:12 -0800954__setup("resume_offset=", resume_offset_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955__setup("resume=", resume_setup);