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