[PATCH] swsusp: fix platform mode
[deliverable/linux.git] / kernel / power / disk.c
CommitLineData
1da177e4
LT
1/*
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>
d53d9f16 19#include <linux/mount.h>
88d10bba 20#include <linux/pm.h>
97c7801c 21#include <linux/console.h>
e3920fb4 22#include <linux/cpu.h>
d53d9f16 23
1da177e4
LT
24#include "power.h"
25
26
1da177e4
LT
27static int noresume = 0;
28char resume_file[256] = CONFIG_PM_STD_PARTITION;
29dev_t swsusp_resume_device;
9a154d9d 30sector_t swsusp_resume_block;
1da177e4 31
8a05aac2
SS
32/**
33 * platform_prepare - prepare the machine for hibernation using the
34 * platform driver if so configured and return an error code if it fails
35 */
36
37static inline int platform_prepare(void)
38{
39 int error = 0;
40
41 if (pm_disk_mode == PM_DISK_PLATFORM) {
42 if (pm_ops && pm_ops->prepare)
43 error = pm_ops->prepare(PM_SUSPEND_DISK);
44 }
45 return error;
46}
47
1da177e4
LT
48/**
49 * power_down - Shut machine down for hibernate.
50 * @mode: Suspend-to-disk mode
51 *
52 * Use the platform driver, if configured so, and return gracefully if it
53 * fails.
54 * Otherwise, try to power off and reboot. If they fail, halt the machine,
55 * there ain't no turning back.
56 */
57
58static void power_down(suspend_disk_method_t mode)
59{
1da177e4
LT
60 int error = 0;
61
1da177e4
LT
62 switch(mode) {
63 case PM_DISK_PLATFORM:
729b4d4c 64 kernel_shutdown_prepare(SYSTEM_SUSPEND_DISK);
1da177e4
LT
65 error = pm_ops->enter(PM_SUSPEND_DISK);
66 break;
67 case PM_DISK_SHUTDOWN:
fdde86ac 68 kernel_power_off();
1da177e4
LT
69 break;
70 case PM_DISK_REBOOT:
fdde86ac 71 kernel_restart(NULL);
1da177e4
LT
72 break;
73 }
fdde86ac 74 kernel_halt();
1da177e4
LT
75 /* Valid image is on the disk, if we continue we risk serious data corruption
76 after resume. */
77 printk(KERN_CRIT "Please power me down manually\n");
78 while(1);
79}
80
1da177e4
LT
81static inline void platform_finish(void)
82{
83 if (pm_disk_mode == PM_DISK_PLATFORM) {
84 if (pm_ops && pm_ops->finish)
85 pm_ops->finish(PM_SUSPEND_DISK);
86 }
87}
88
1da177e4
LT
89static int prepare_processes(void)
90{
b918f6e6 91 int error = 0;
1da177e4
LT
92
93 pm_prepare_console();
e3920fb4
RW
94
95 error = disable_nonboot_cpus();
96 if (error)
97 goto enable_cpus;
5a72e04d 98
1da177e4
LT
99 if (freeze_processes()) {
100 error = -EBUSY;
5a72e04d 101 goto thaw;
1da177e4
LT
102 }
103
b918f6e6
RW
104 if (pm_disk_mode == PM_DISK_TESTPROC) {
105 printk("swsusp debug: Waiting for 5 seconds.\n");
106 mdelay(5000);
107 goto thaw;
108 }
109
8a05aac2
SS
110 error = platform_prepare();
111 if (error)
112 goto thaw;
113
1da177e4 114 /* Free memory before shutting down devices. */
72a97e08
RW
115 if (!(error = swsusp_shrink_memory()))
116 return 0;
8a05aac2
SS
117
118 platform_finish();
5a72e04d
LS
119thaw:
120 thaw_processes();
e3920fb4 121enable_cpus:
5a72e04d
LS
122 enable_nonboot_cpus();
123 pm_restore_console();
124 return error;
1da177e4
LT
125}
126
127static void unprepare_processes(void)
128{
5a72e04d 129 platform_finish();
1da177e4 130 thaw_processes();
5a72e04d 131 enable_nonboot_cpus();
1da177e4
LT
132 pm_restore_console();
133}
134
1da177e4 135/**
f1cc0a89 136 * pm_suspend_disk - The granpappy of hibernation power management.
1da177e4
LT
137 *
138 * If we're going through the firmware, then get it over with quickly.
139 *
140 * If not, then call swsusp to do its thing, then figure out how
141 * to power down the system.
142 */
143
144int pm_suspend_disk(void)
145{
146 int error;
147
148 error = prepare_processes();
5a72e04d
LS
149 if (error)
150 return error;
1da177e4 151
b918f6e6
RW
152 if (pm_disk_mode == PM_DISK_TESTPROC)
153 goto Thaw;
154
97c7801c 155 suspend_console();
99dc7d63 156 error = device_suspend(PMSG_FREEZE);
1da177e4 157 if (error) {
97c7801c 158 resume_console();
99dc7d63 159 printk("Some devices failed to suspend\n");
b918f6e6
RW
160 goto Thaw;
161 }
162
163 if (pm_disk_mode == PM_DISK_TEST) {
164 printk("swsusp debug: Waiting for 5 seconds.\n");
165 mdelay(5000);
166 goto Done;
1da177e4
LT
167 }
168
1da177e4
LT
169 pr_debug("PM: snapshotting memory.\n");
170 in_suspend = 1;
171 if ((error = swsusp_suspend()))
172 goto Done;
173
174 if (in_suspend) {
0245b3e7 175 device_resume();
97c7801c 176 resume_console();
1da177e4 177 pr_debug("PM: writing image.\n");
f577eb30 178 error = swsusp_write();
1da177e4
LT
179 if (!error)
180 power_down(pm_disk_mode);
99dc7d63 181 else {
99dc7d63 182 swsusp_free();
b918f6e6 183 goto Thaw;
99dc7d63 184 }
b918f6e6 185 } else {
1da177e4 186 pr_debug("PM: Image restored successfully.\n");
b918f6e6 187 }
99dc7d63 188
1da177e4
LT
189 swsusp_free();
190 Done:
99dc7d63 191 device_resume();
97c7801c 192 resume_console();
b918f6e6 193 Thaw:
99dc7d63 194 unprepare_processes();
1da177e4
LT
195 return error;
196}
197
198
199/**
200 * software_resume - Resume from a saved image.
201 *
202 * Called as a late_initcall (so all devices are discovered and
203 * initialized), we call swsusp to see if we have a saved image or not.
204 * If so, we quiesce devices, the restore the saved image. We will
205 * return above (in pm_suspend_disk() ) if everything goes well.
206 * Otherwise, we fail gracefully and return to the normally
207 * scheduled program.
208 *
209 */
210
211static int software_resume(void)
212{
213 int error;
214
dd5d666b 215 down(&pm_sem);
3efa147a 216 if (!swsusp_resume_device) {
dd5d666b
SL
217 if (!strlen(resume_file)) {
218 up(&pm_sem);
3efa147a 219 return -ENOENT;
dd5d666b 220 }
3efa147a
PM
221 swsusp_resume_device = name_to_dev_t(resume_file);
222 pr_debug("swsusp: Resume From Partition %s\n", resume_file);
223 } else {
224 pr_debug("swsusp: Resume From Partition %d:%d\n",
225 MAJOR(swsusp_resume_device), MINOR(swsusp_resume_device));
226 }
227
1da177e4
LT
228 if (noresume) {
229 /**
230 * FIXME: If noresume is specified, we need to find the partition
231 * and reset it back to normal swap space.
232 */
dd5d666b 233 up(&pm_sem);
1da177e4
LT
234 return 0;
235 }
236
237 pr_debug("PM: Checking swsusp image.\n");
238
239 if ((error = swsusp_check()))
240 goto Done;
241
242 pr_debug("PM: Preparing processes for restore.\n");
243
244 if ((error = prepare_processes())) {
245 swsusp_close();
5a72e04d 246 goto Done;
1da177e4
LT
247 }
248
249 pr_debug("PM: Reading swsusp image.\n");
250
f577eb30 251 if ((error = swsusp_read())) {
2c1b4a5c
RW
252 swsusp_free();
253 goto Thaw;
254 }
1da177e4
LT
255
256 pr_debug("PM: Preparing devices for restore.\n");
257
97c7801c 258 suspend_console();
f1cc0a89 259 if ((error = device_suspend(PMSG_PRETHAW))) {
97c7801c 260 resume_console();
99dc7d63 261 printk("Some devices failed to suspend\n");
2c1b4a5c
RW
262 swsusp_free();
263 goto Thaw;
99dc7d63 264 }
1da177e4
LT
265
266 mb();
267
268 pr_debug("PM: Restoring saved image.\n");
269 swsusp_resume();
270 pr_debug("PM: Restore failed, recovering.n");
99dc7d63 271 device_resume();
97c7801c 272 resume_console();
2c1b4a5c 273 Thaw:
1da177e4
LT
274 unprepare_processes();
275 Done:
dd5d666b
SL
276 /* For success case, the suspend path will release the lock */
277 up(&pm_sem);
1da177e4
LT
278 pr_debug("PM: Resume from disk failed.\n");
279 return 0;
280}
281
282late_initcall(software_resume);
283
284
3b364b8d 285static const char * const pm_disk_modes[] = {
1da177e4
LT
286 [PM_DISK_FIRMWARE] = "firmware",
287 [PM_DISK_PLATFORM] = "platform",
288 [PM_DISK_SHUTDOWN] = "shutdown",
289 [PM_DISK_REBOOT] = "reboot",
b918f6e6
RW
290 [PM_DISK_TEST] = "test",
291 [PM_DISK_TESTPROC] = "testproc",
1da177e4
LT
292};
293
294/**
295 * disk - Control suspend-to-disk mode
296 *
297 * Suspend-to-disk can be handled in several ways. The greatest
298 * distinction is who writes memory to disk - the firmware or the OS.
299 * If the firmware does it, we assume that it also handles suspending
300 * the system.
301 * If the OS does it, then we have three options for putting the system
302 * to sleep - using the platform driver (e.g. ACPI or other PM registers),
303 * powering off the system or rebooting the system (for testing).
304 *
305 * The system will support either 'firmware' or 'platform', and that is
306 * known a priori (and encoded in pm_ops). But, the user may choose
307 * 'shutdown' or 'reboot' as alternatives.
308 *
309 * show() will display what the mode is currently set to.
310 * store() will accept one of
311 *
312 * 'firmware'
313 * 'platform'
314 * 'shutdown'
315 * 'reboot'
316 *
317 * It will only change to 'firmware' or 'platform' if the system
318 * supports it (as determined from pm_ops->pm_disk_mode).
319 */
320
321static ssize_t disk_show(struct subsystem * subsys, char * buf)
322{
323 return sprintf(buf, "%s\n", pm_disk_modes[pm_disk_mode]);
324}
325
326
327static ssize_t disk_store(struct subsystem * s, const char * buf, size_t n)
328{
329 int error = 0;
330 int i;
331 int len;
332 char *p;
333 suspend_disk_method_t mode = 0;
334
335 p = memchr(buf, '\n', n);
336 len = p ? p - buf : n;
337
338 down(&pm_sem);
339 for (i = PM_DISK_FIRMWARE; i < PM_DISK_MAX; i++) {
340 if (!strncmp(buf, pm_disk_modes[i], len)) {
341 mode = i;
342 break;
343 }
344 }
345 if (mode) {
b918f6e6
RW
346 if (mode == PM_DISK_SHUTDOWN || mode == PM_DISK_REBOOT ||
347 mode == PM_DISK_TEST || mode == PM_DISK_TESTPROC) {
1da177e4 348 pm_disk_mode = mode;
b918f6e6 349 } else {
1da177e4
LT
350 if (pm_ops && pm_ops->enter &&
351 (mode == pm_ops->pm_disk_mode))
352 pm_disk_mode = mode;
353 else
354 error = -EINVAL;
355 }
b918f6e6 356 } else {
1da177e4 357 error = -EINVAL;
b918f6e6 358 }
1da177e4
LT
359
360 pr_debug("PM: suspend-to-disk mode set to '%s'\n",
361 pm_disk_modes[mode]);
362 up(&pm_sem);
363 return error ? error : n;
364}
365
366power_attr(disk);
367
368static ssize_t resume_show(struct subsystem * subsys, char *buf)
369{
370 return sprintf(buf,"%d:%d\n", MAJOR(swsusp_resume_device),
371 MINOR(swsusp_resume_device));
372}
373
a576219a 374static ssize_t resume_store(struct subsystem *subsys, const char *buf, size_t n)
1da177e4 375{
1da177e4 376 unsigned int maj, min;
1da177e4 377 dev_t res;
a576219a 378 int ret = -EINVAL;
1da177e4 379
a576219a
AM
380 if (sscanf(buf, "%u:%u", &maj, &min) != 2)
381 goto out;
1da177e4 382
a576219a
AM
383 res = MKDEV(maj,min);
384 if (maj != MAJOR(res) || min != MINOR(res))
385 goto out;
1da177e4 386
a576219a
AM
387 down(&pm_sem);
388 swsusp_resume_device = res;
389 up(&pm_sem);
390 printk("Attempting manual resume\n");
391 noresume = 0;
392 software_resume();
393 ret = n;
394out:
395 return ret;
1da177e4
LT
396}
397
398power_attr(resume);
399
ca0aec0f
RW
400static ssize_t image_size_show(struct subsystem * subsys, char *buf)
401{
853609b6 402 return sprintf(buf, "%lu\n", image_size);
ca0aec0f
RW
403}
404
405static ssize_t image_size_store(struct subsystem * subsys, const char * buf, size_t n)
406{
853609b6 407 unsigned long size;
ca0aec0f 408
853609b6 409 if (sscanf(buf, "%lu", &size) == 1) {
ca0aec0f
RW
410 image_size = size;
411 return n;
412 }
413
414 return -EINVAL;
415}
416
417power_attr(image_size);
418
1da177e4
LT
419static struct attribute * g[] = {
420 &disk_attr.attr,
421 &resume_attr.attr,
ca0aec0f 422 &image_size_attr.attr,
1da177e4
LT
423 NULL,
424};
425
426
427static struct attribute_group attr_group = {
428 .attrs = g,
429};
430
431
432static int __init pm_disk_init(void)
433{
434 return sysfs_create_group(&power_subsys.kset.kobj,&attr_group);
435}
436
437core_initcall(pm_disk_init);
438
439
440static int __init resume_setup(char *str)
441{
442 if (noresume)
443 return 1;
444
445 strncpy( resume_file, str, 255 );
446 return 1;
447}
448
9a154d9d
RW
449static int __init resume_offset_setup(char *str)
450{
451 unsigned long long offset;
452
453 if (noresume)
454 return 1;
455
456 if (sscanf(str, "%llu", &offset) == 1)
457 swsusp_resume_block = offset;
458
459 return 1;
460}
461
1da177e4
LT
462static int __init noresume_setup(char *str)
463{
464 noresume = 1;
465 return 1;
466}
467
468__setup("noresume", noresume_setup);
9a154d9d 469__setup("resume_offset=", resume_offset_setup);
1da177e4 470__setup("resume=", resume_setup);
This page took 0.257752 seconds and 5 git commands to generate.