blob: d17bb14bce7b597aecf3736bc03342398cec33ca [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. Wysocki7777fab2007-07-19 01:47:29 -070048static struct 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
55void hibernation_set_ops(struct hibernation_ops *ops)
56{
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -070057 if (ops && !(ops->start && ops->pre_snapshot && ops->finish
58 && ops->prepare && ops->enter && ops->pre_restore
59 && 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. Wysocki74f270a2007-10-18 03:04:42 -070073/**
74 * platform_start - tell the platform driver that we're starting
75 * hibernation
76 */
77
78static int platform_start(int platform_mode)
79{
80 return (platform_mode && hibernation_ops) ?
81 hibernation_ops->start() : 0;
82}
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070083
Linus Torvalds1da177e2005-04-16 15:20:36 -070084/**
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -070085 * platform_pre_snapshot - prepare the machine for hibernation using the
Stefan Seyfried8a05aac2006-12-06 20:34:21 -080086 * platform driver if so configured and return an error code if it fails
87 */
88
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -070089static int platform_pre_snapshot(int platform_mode)
Stefan Seyfried8a05aac2006-12-06 20:34:21 -080090{
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -070091 return (platform_mode && hibernation_ops) ?
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -070092 hibernation_ops->pre_snapshot() : 0;
Stefan Seyfried8a05aac2006-12-06 20:34:21 -080093}
94
95/**
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -070096 * platform_finish - switch the machine to the normal mode of operation
97 * using the platform driver (must be called after platform_prepare())
98 */
99
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700100static void platform_finish(int platform_mode)
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700101{
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700102 if (platform_mode && hibernation_ops)
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700103 hibernation_ops->finish();
104}
105
106/**
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700107 * platform_pre_restore - prepare the platform for the restoration from a
108 * hibernation image. If the restore fails after this function has been
109 * called, platform_restore_cleanup() must be called.
110 */
111
112static int platform_pre_restore(int platform_mode)
113{
114 return (platform_mode && hibernation_ops) ?
115 hibernation_ops->pre_restore() : 0;
116}
117
118/**
119 * platform_restore_cleanup - switch the platform to the normal mode of
120 * operation after a failing restore. If platform_pre_restore() has been
121 * called before the failing restore, this function must be called too,
122 * regardless of the result of platform_pre_restore().
123 */
124
125static void platform_restore_cleanup(int platform_mode)
126{
127 if (platform_mode && hibernation_ops)
128 hibernation_ops->restore_cleanup();
129}
130
131/**
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700132 * hibernation_snapshot - quiesce devices and create the hibernation
133 * snapshot image.
134 * @platform_mode - if set, use the platform driver, if available, to
135 * prepare the platform frimware for the power transition.
136 *
137 * Must be called with pm_mutex held
138 */
139
140int hibernation_snapshot(int platform_mode)
141{
142 int error;
143
144 /* Free memory before shutting down devices. */
145 error = swsusp_shrink_memory();
146 if (error)
Rafael J. Wysocki10a18032007-07-19 01:47:31 -0700147 return error;
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700148
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700149 error = platform_start(platform_mode);
150 if (error)
151 return error;
152
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700153 suspend_console();
154 error = device_suspend(PMSG_FREEZE);
155 if (error)
Rafael J. Wysocki10a18032007-07-19 01:47:31 -0700156 goto Resume_console;
157
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700158 error = platform_pre_snapshot(platform_mode);
Rafael J. Wysocki10a18032007-07-19 01:47:31 -0700159 if (error)
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700160 goto Resume_devices;
161
162 error = disable_nonboot_cpus();
163 if (!error) {
164 if (hibernation_mode != HIBERNATION_TEST) {
165 in_suspend = 1;
166 error = swsusp_suspend();
167 /* Control returns here after successful restore */
168 } else {
169 printk("swsusp debug: Waiting for 5 seconds.\n");
170 mdelay(5000);
171 }
172 }
173 enable_nonboot_cpus();
174 Resume_devices:
175 platform_finish(platform_mode);
176 device_resume();
Rafael J. Wysocki10a18032007-07-19 01:47:31 -0700177 Resume_console:
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700178 resume_console();
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700179 return error;
180}
181
182/**
183 * hibernation_restore - quiesce devices and restore the hibernation
184 * snapshot image. If successful, control returns in hibernation_snaphot()
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700185 * @platform_mode - if set, use the platform driver, if available, to
186 * prepare the platform frimware for the transition.
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700187 *
188 * Must be called with pm_mutex held
189 */
190
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700191int hibernation_restore(int platform_mode)
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700192{
193 int error;
194
195 pm_prepare_console();
196 suspend_console();
197 error = device_suspend(PMSG_PRETHAW);
198 if (error)
199 goto Finish;
200
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700201 error = platform_pre_restore(platform_mode);
202 if (!error) {
203 error = disable_nonboot_cpus();
204 if (!error)
205 error = swsusp_resume();
206 enable_nonboot_cpus();
207 }
208 platform_restore_cleanup(platform_mode);
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700209 device_resume();
Rafael J. Wysocki10a18032007-07-19 01:47:31 -0700210 Finish:
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700211 resume_console();
212 pm_restore_console();
213 return error;
214}
215
216/**
217 * hibernation_platform_enter - enter the hibernation state using the
218 * platform driver (if available)
219 */
220
221int hibernation_platform_enter(void)
222{
Rafael J. Wysockib1457bc2007-07-19 01:47:31 -0700223 int error;
224
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700225 if (hibernation_ops) {
226 kernel_shutdown_prepare(SYSTEM_SUSPEND_DISK);
Rafael J. Wysockib1457bc2007-07-19 01:47:31 -0700227 /*
228 * We have cancelled the power transition by running
229 * hibernation_ops->finish() before saving the image, so we
230 * should let the firmware know that we're going to enter the
231 * sleep state after all
232 */
233 error = hibernation_ops->prepare();
Rafael J. Wysocki58b3b712007-07-26 16:29:55 +0200234 sysdev_shutdown();
Rafael J. Wysockib1457bc2007-07-19 01:47:31 -0700235 if (!error)
236 error = hibernation_ops->enter();
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700237 } else {
Rafael J. Wysockib1457bc2007-07-19 01:47:31 -0700238 error = -ENOSYS;
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700239 }
Rafael J. Wysockib1457bc2007-07-19 01:47:31 -0700240 return error;
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700241}
242
243/**
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700244 * power_down - Shut the machine down for hibernation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 *
Johannes Bergfe0c9352007-04-30 15:09:51 -0700246 * Use the platform driver, if configured so; otherwise try
247 * to power off or reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 */
249
Johannes Bergfe0c9352007-04-30 15:09:51 -0700250static void power_down(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700252 switch (hibernation_mode) {
253 case HIBERNATION_TEST:
254 case HIBERNATION_TESTPROC:
Johannes Bergfe0c9352007-04-30 15:09:51 -0700255 break;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700256 case HIBERNATION_SHUTDOWN:
Eric W. Biedermanfdde86a2005-07-26 12:01:17 -0600257 kernel_power_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 break;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700259 case HIBERNATION_REBOOT:
Eric W. Biedermanfdde86a2005-07-26 12:01:17 -0600260 kernel_restart(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 break;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700262 case HIBERNATION_PLATFORM:
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700263 hibernation_platform_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
Eric W. Biedermanfdde86a2005-07-26 12:01:17 -0600265 kernel_halt();
Johannes Bergfe0c9352007-04-30 15:09:51 -0700266 /*
267 * Valid image is on the disk, if we continue we risk serious data
268 * corruption after resume.
269 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 printk(KERN_CRIT "Please power me down manually\n");
271 while(1);
272}
273
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800274static void unprepare_processes(void)
275{
276 thaw_processes();
277 pm_restore_console();
278}
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280static int prepare_processes(void)
281{
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800282 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 pm_prepare_console();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if (freeze_processes()) {
286 error = -EBUSY;
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800287 unprepare_processes();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 }
Li Shaohua5a72e042005-06-25 14:55:06 -0700289 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292/**
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700293 * hibernate - The granpappy of the built-in hibernation management
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 */
295
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700296int hibernate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
298 int error;
299
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700300 mutex_lock(&pm_mutex);
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700301 /* The snapshot device should not be opened while we're running */
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700302 if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
303 error = -EBUSY;
304 goto Unlock;
305 }
306
307 error = pm_notifier_call_chain(PM_HIBERNATION_PREPARE);
308 if (error)
309 goto Exit;
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700310
311 /* Allocate memory management structures */
312 error = create_basic_memory_bitmaps();
313 if (error)
314 goto Exit;
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 error = prepare_processes();
Li Shaohua5a72e042005-06-25 14:55:06 -0700317 if (error)
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700318 goto Finish;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700320 if (hibernation_mode == HIBERNATION_TESTPROC) {
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800321 printk("swsusp debug: Waiting for 5 seconds.\n");
322 mdelay(5000);
323 goto Thaw;
324 }
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700325 error = hibernation_snapshot(hibernation_mode == HIBERNATION_PLATFORM);
326 if (in_suspend && !error) {
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700327 unsigned int flags = 0;
328
329 if (hibernation_mode == HIBERNATION_PLATFORM)
330 flags |= SF_PLATFORM_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 pr_debug("PM: writing image.\n");
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700332 error = swsusp_write(flags);
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700333 swsusp_free();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 if (!error)
Johannes Bergfe0c9352007-04-30 15:09:51 -0700335 power_down();
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800336 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 pr_debug("PM: Image restored successfully.\n");
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700338 swsusp_free();
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800339 }
Rafael J. Wysockib918f6e2006-11-02 22:07:19 -0800340 Thaw:
Pavel Machek99dc7d62005-09-03 15:57:05 -0700341 unprepare_processes();
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700342 Finish:
343 free_basic_memory_bitmaps();
344 Exit:
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700345 pm_notifier_call_chain(PM_POST_HIBERNATION);
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700346 atomic_inc(&snapshot_device_available);
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700347 Unlock:
348 mutex_unlock(&pm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 return error;
350}
351
352
353/**
354 * software_resume - Resume from a saved image.
355 *
356 * Called as a late_initcall (so all devices are discovered and
357 * initialized), we call swsusp to see if we have a saved image or not.
358 * If so, we quiesce devices, the restore the saved image. We will
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700359 * return above (in hibernate() ) if everything goes well.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 * Otherwise, we fail gracefully and return to the normally
361 * scheduled program.
362 *
363 */
364
365static int software_resume(void)
366{
367 int error;
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700368 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800370 mutex_lock(&pm_mutex);
Pavel Machek3efa1472005-07-07 17:56:43 -0700371 if (!swsusp_resume_device) {
Shaohua Lidd5d6662005-09-03 15:57:04 -0700372 if (!strlen(resume_file)) {
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800373 mutex_unlock(&pm_mutex);
Pavel Machek3efa1472005-07-07 17:56:43 -0700374 return -ENOENT;
Shaohua Lidd5d6662005-09-03 15:57:04 -0700375 }
Pavel Machek3efa1472005-07-07 17:56:43 -0700376 swsusp_resume_device = name_to_dev_t(resume_file);
377 pr_debug("swsusp: Resume From Partition %s\n", resume_file);
378 } else {
379 pr_debug("swsusp: Resume From Partition %d:%d\n",
380 MAJOR(swsusp_resume_device), MINOR(swsusp_resume_device));
381 }
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 if (noresume) {
384 /**
385 * FIXME: If noresume is specified, we need to find the partition
386 * and reset it back to normal swap space.
387 */
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800388 mutex_unlock(&pm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return 0;
390 }
391
392 pr_debug("PM: Checking swsusp image.\n");
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800393 error = swsusp_check();
394 if (error)
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700395 goto Unlock;
396
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700397 /* The snapshot device should not be opened while we're running */
398 if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
399 error = -EBUSY;
400 goto Unlock;
401 }
402
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700403 error = create_basic_memory_bitmaps();
404 if (error)
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700405 goto Finish;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 pr_debug("PM: Preparing processes for restore.\n");
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800408 error = prepare_processes();
409 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 swsusp_close();
Li Shaohua5a72e042005-06-25 14:55:06 -0700411 goto Done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
413
414 pr_debug("PM: Reading swsusp image.\n");
415
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700416 error = swsusp_read(&flags);
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800417 if (!error)
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700418 hibernation_restore(flags & SF_PLATFORM_MODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Rafael J. Wysockied746e32007-02-10 01:43:32 -0800420 printk(KERN_ERR "PM: Restore failed, recovering.\n");
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700421 swsusp_free();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 unprepare_processes();
423 Done:
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700424 free_basic_memory_bitmaps();
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700425 Finish:
426 atomic_inc(&snapshot_device_available);
Shaohua Lidd5d6662005-09-03 15:57:04 -0700427 /* For success case, the suspend path will release the lock */
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700428 Unlock:
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800429 mutex_unlock(&pm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 pr_debug("PM: Resume from disk failed.\n");
Rafael J. Wysocki7777fab2007-07-19 01:47:29 -0700431 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
434late_initcall(software_resume);
435
436
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700437static const char * const hibernation_modes[] = {
438 [HIBERNATION_PLATFORM] = "platform",
439 [HIBERNATION_SHUTDOWN] = "shutdown",
440 [HIBERNATION_REBOOT] = "reboot",
441 [HIBERNATION_TEST] = "test",
442 [HIBERNATION_TESTPROC] = "testproc",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443};
444
445/**
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700446 * disk - Control hibernation mode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 *
Johannes Berg11d77d02007-04-30 15:09:53 -0700448 * Suspend-to-disk can be handled in several ways. We have a few options
449 * for putting the system to sleep - using the platform driver (e.g. ACPI
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700450 * or other hibernation_ops), powering off the system or rebooting the
451 * system (for testing) as well as the two test modes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 *
Johannes Berg11d77d02007-04-30 15:09:53 -0700453 * The system can support 'platform', and that is known a priori (and
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700454 * encoded by the presence of hibernation_ops). However, the user may
455 * choose 'shutdown' or 'reboot' as alternatives, as well as one fo the
456 * test modes, 'test' or 'testproc'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 *
458 * show() will display what the mode is currently set to.
459 * store() will accept one of
460 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 * 'platform'
462 * 'shutdown'
463 * 'reboot'
Johannes Berg11d77d02007-04-30 15:09:53 -0700464 * 'test'
465 * 'testproc'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 *
Johannes Berg11d77d02007-04-30 15:09:53 -0700467 * It will only change to 'platform' if the system
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700468 * supports it (as determined by having hibernation_ops).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 */
470
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700471static ssize_t disk_show(struct kset *kset, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700473 int i;
474 char *start = buf;
475
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700476 for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
477 if (!hibernation_modes[i])
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700478 continue;
479 switch (i) {
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700480 case HIBERNATION_SHUTDOWN:
481 case HIBERNATION_REBOOT:
482 case HIBERNATION_TEST:
483 case HIBERNATION_TESTPROC:
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700484 break;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700485 case HIBERNATION_PLATFORM:
486 if (hibernation_ops)
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700487 break;
488 /* not a valid mode, continue with loop */
489 continue;
490 }
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700491 if (i == hibernation_mode)
492 buf += sprintf(buf, "[%s] ", hibernation_modes[i]);
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700493 else
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700494 buf += sprintf(buf, "%s ", hibernation_modes[i]);
Johannes Bergf0ced9b2007-05-06 14:50:50 -0700495 }
496 buf += sprintf(buf, "\n");
497 return buf-start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498}
499
500
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700501static ssize_t disk_store(struct kset *kset, const char *buf, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
503 int error = 0;
504 int i;
505 int len;
506 char *p;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700507 int mode = HIBERNATION_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 p = memchr(buf, '\n', n);
510 len = p ? p - buf : n;
511
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800512 mutex_lock(&pm_mutex);
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700513 for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
Rafael J. Wysocki8d98a692007-05-16 22:11:19 -0700514 if (len == strlen(hibernation_modes[i])
515 && !strncmp(buf, hibernation_modes[i], len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 mode = i;
517 break;
518 }
519 }
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700520 if (mode != HIBERNATION_INVALID) {
Johannes Bergfe0c9352007-04-30 15:09:51 -0700521 switch (mode) {
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700522 case HIBERNATION_SHUTDOWN:
523 case HIBERNATION_REBOOT:
524 case HIBERNATION_TEST:
525 case HIBERNATION_TESTPROC:
526 hibernation_mode = mode;
Johannes Bergfe0c9352007-04-30 15:09:51 -0700527 break;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700528 case HIBERNATION_PLATFORM:
529 if (hibernation_ops)
530 hibernation_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 else
532 error = -EINVAL;
533 }
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700534 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 error = -EINVAL;
536
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700537 if (!error)
538 pr_debug("PM: suspend-to-disk mode set to '%s'\n",
539 hibernation_modes[mode]);
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800540 mutex_unlock(&pm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 return error ? error : n;
542}
543
544power_attr(disk);
545
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700546static ssize_t resume_show(struct kset *kset, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
548 return sprintf(buf,"%d:%d\n", MAJOR(swsusp_resume_device),
549 MINOR(swsusp_resume_device));
550}
551
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700552static ssize_t resume_store(struct kset *kset, const char *buf, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 unsigned int maj, min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 dev_t res;
Andrew Mortona5762192006-01-06 00:09:50 -0800556 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Andrew Mortona5762192006-01-06 00:09:50 -0800558 if (sscanf(buf, "%u:%u", &maj, &min) != 2)
559 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Andrew Mortona5762192006-01-06 00:09:50 -0800561 res = MKDEV(maj,min);
562 if (maj != MAJOR(res) || min != MINOR(res))
563 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800565 mutex_lock(&pm_mutex);
Andrew Mortona5762192006-01-06 00:09:50 -0800566 swsusp_resume_device = res;
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800567 mutex_unlock(&pm_mutex);
Andrew Mortona5762192006-01-06 00:09:50 -0800568 printk("Attempting manual resume\n");
569 noresume = 0;
570 software_resume();
571 ret = n;
Rafael J. Wysocki59a493352006-12-06 20:34:44 -0800572 out:
Andrew Mortona5762192006-01-06 00:09:50 -0800573 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
576power_attr(resume);
577
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700578static ssize_t image_size_show(struct kset *kset, char *buf)
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800579{
Rafael J. Wysocki853609b2006-02-01 03:05:07 -0800580 return sprintf(buf, "%lu\n", image_size);
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800581}
582
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700583static ssize_t image_size_store(struct kset *kset, const char *buf, size_t n)
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800584{
Rafael J. Wysocki853609b2006-02-01 03:05:07 -0800585 unsigned long size;
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800586
Rafael J. Wysocki853609b2006-02-01 03:05:07 -0800587 if (sscanf(buf, "%lu", &size) == 1) {
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800588 image_size = size;
589 return n;
590 }
591
592 return -EINVAL;
593}
594
595power_attr(image_size);
596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597static struct attribute * g[] = {
598 &disk_attr.attr,
599 &resume_attr.attr,
Rafael J. Wysockica0aec02006-01-06 00:15:56 -0800600 &image_size_attr.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 NULL,
602};
603
604
605static struct attribute_group attr_group = {
606 .attrs = g,
607};
608
609
610static int __init pm_disk_init(void)
611{
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700612 return sysfs_create_group(&power_subsys.kobj, &attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613}
614
615core_initcall(pm_disk_init);
616
617
618static int __init resume_setup(char *str)
619{
620 if (noresume)
621 return 1;
622
623 strncpy( resume_file, str, 255 );
624 return 1;
625}
626
Rafael J. Wysocki9a154d92006-12-06 20:34:12 -0800627static int __init resume_offset_setup(char *str)
628{
629 unsigned long long offset;
630
631 if (noresume)
632 return 1;
633
634 if (sscanf(str, "%llu", &offset) == 1)
635 swsusp_resume_block = offset;
636
637 return 1;
638}
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640static int __init noresume_setup(char *str)
641{
642 noresume = 1;
643 return 1;
644}
645
646__setup("noresume", noresume_setup);
Rafael J. Wysocki9a154d92006-12-06 20:34:12 -0800647__setup("resume_offset=", resume_offset_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648__setup("resume=", resume_setup);