| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> | 
| Andrew Morton | d53d9f1 | 2005-07-12 13:58:07 -0700 | [diff] [blame] | 19 | #include <linux/mount.h> | 
| Eric W. Biederman | 88d10bb | 2005-09-22 21:43:46 -0700 | [diff] [blame] | 20 | #include <linux/pm.h> | 
| Rafael J. Wysocki | 97c7801 | 2006-10-11 01:20:45 -0700 | [diff] [blame] | 21 | #include <linux/console.h> | 
| Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 22 | #include <linux/cpu.h> | 
| Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 23 | #include <linux/freezer.h> | 
| Rafael J. Wysocki | 41108eb | 2008-08-28 14:39:12 +0200 | [diff] [blame] | 24 | #include <linux/ftrace.h> | 
| Andrew Morton | d53d9f1 | 2005-07-12 13:58:07 -0700 | [diff] [blame] | 25 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include "power.h" | 
 | 27 |  | 
 | 28 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | static int noresume = 0; | 
| Adrian Bunk | 47a460d | 2008-02-04 22:30:06 -0800 | [diff] [blame] | 30 | static char resume_file[256] = CONFIG_PM_STD_PARTITION; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | dev_t swsusp_resume_device; | 
| Rafael J. Wysocki | 9a154d9 | 2006-12-06 20:34:12 -0800 | [diff] [blame] | 32 | sector_t swsusp_resume_block; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 |  | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 34 | enum { | 
 | 35 | 	HIBERNATION_INVALID, | 
 | 36 | 	HIBERNATION_PLATFORM, | 
 | 37 | 	HIBERNATION_TEST, | 
 | 38 | 	HIBERNATION_TESTPROC, | 
 | 39 | 	HIBERNATION_SHUTDOWN, | 
 | 40 | 	HIBERNATION_REBOOT, | 
 | 41 | 	/* keep last */ | 
 | 42 | 	__HIBERNATION_AFTER_LAST | 
 | 43 | }; | 
 | 44 | #define HIBERNATION_MAX (__HIBERNATION_AFTER_LAST-1) | 
 | 45 | #define HIBERNATION_FIRST (HIBERNATION_INVALID + 1) | 
 | 46 |  | 
 | 47 | static int hibernation_mode = HIBERNATION_SHUTDOWN; | 
 | 48 |  | 
| Rafael J. Wysocki | b3dac3b | 2007-10-18 03:04:43 -0700 | [diff] [blame] | 49 | static struct platform_hibernation_ops *hibernation_ops; | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 50 |  | 
 | 51 | /** | 
 | 52 |  * hibernation_set_ops - set the global hibernate operations | 
 | 53 |  * @ops: the hibernation operations to use in subsequent hibernation transitions | 
 | 54 |  */ | 
 | 55 |  | 
| Rafael J. Wysocki | b3dac3b | 2007-10-18 03:04:43 -0700 | [diff] [blame] | 56 | void hibernation_set_ops(struct platform_hibernation_ops *ops) | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 57 | { | 
| Rafael J. Wysocki | caea99e | 2008-01-08 00:08:44 +0100 | [diff] [blame] | 58 | 	if (ops && !(ops->begin && ops->end &&  ops->pre_snapshot | 
 | 59 | 	    && ops->prepare && ops->finish && ops->enter && ops->pre_restore | 
| Rafael J. Wysocki | 74f270a | 2007-10-18 03:04:42 -0700 | [diff] [blame] | 60 | 	    && ops->restore_cleanup)) { | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 61 | 		WARN_ON(1); | 
 | 62 | 		return; | 
 | 63 | 	} | 
 | 64 | 	mutex_lock(&pm_mutex); | 
 | 65 | 	hibernation_ops = ops; | 
 | 66 | 	if (ops) | 
 | 67 | 		hibernation_mode = HIBERNATION_PLATFORM; | 
 | 68 | 	else if (hibernation_mode == HIBERNATION_PLATFORM) | 
 | 69 | 		hibernation_mode = HIBERNATION_SHUTDOWN; | 
 | 70 |  | 
 | 71 | 	mutex_unlock(&pm_mutex); | 
 | 72 | } | 
 | 73 |  | 
| Rafael J. Wysocki | 4cc7977 | 2007-11-19 23:42:31 +0100 | [diff] [blame] | 74 | #ifdef CONFIG_PM_DEBUG | 
 | 75 | static void hibernation_debug_sleep(void) | 
 | 76 | { | 
 | 77 | 	printk(KERN_INFO "hibernation debug: Waiting for 5 seconds.\n"); | 
 | 78 | 	mdelay(5000); | 
 | 79 | } | 
 | 80 |  | 
 | 81 | static int hibernation_testmode(int mode) | 
 | 82 | { | 
 | 83 | 	if (hibernation_mode == mode) { | 
 | 84 | 		hibernation_debug_sleep(); | 
 | 85 | 		return 1; | 
 | 86 | 	} | 
 | 87 | 	return 0; | 
 | 88 | } | 
 | 89 |  | 
 | 90 | static int hibernation_test(int level) | 
 | 91 | { | 
 | 92 | 	if (pm_test_level == level) { | 
 | 93 | 		hibernation_debug_sleep(); | 
 | 94 | 		return 1; | 
 | 95 | 	} | 
 | 96 | 	return 0; | 
 | 97 | } | 
 | 98 | #else /* !CONFIG_PM_DEBUG */ | 
 | 99 | static int hibernation_testmode(int mode) { return 0; } | 
 | 100 | static int hibernation_test(int level) { return 0; } | 
 | 101 | #endif /* !CONFIG_PM_DEBUG */ | 
 | 102 |  | 
| Rafael J. Wysocki | 74f270a | 2007-10-18 03:04:42 -0700 | [diff] [blame] | 103 | /** | 
| Rafael J. Wysocki | caea99e | 2008-01-08 00:08:44 +0100 | [diff] [blame] | 104 |  *	platform_begin - tell the platform driver that we're starting | 
| Rafael J. Wysocki | 74f270a | 2007-10-18 03:04:42 -0700 | [diff] [blame] | 105 |  *	hibernation | 
 | 106 |  */ | 
 | 107 |  | 
| Rafael J. Wysocki | caea99e | 2008-01-08 00:08:44 +0100 | [diff] [blame] | 108 | static int platform_begin(int platform_mode) | 
| Rafael J. Wysocki | 74f270a | 2007-10-18 03:04:42 -0700 | [diff] [blame] | 109 | { | 
 | 110 | 	return (platform_mode && hibernation_ops) ? | 
| Rafael J. Wysocki | caea99e | 2008-01-08 00:08:44 +0100 | [diff] [blame] | 111 | 		hibernation_ops->begin() : 0; | 
 | 112 | } | 
 | 113 |  | 
 | 114 | /** | 
 | 115 |  *	platform_end - tell the platform driver that we've entered the | 
 | 116 |  *	working state | 
 | 117 |  */ | 
 | 118 |  | 
 | 119 | static void platform_end(int platform_mode) | 
 | 120 | { | 
 | 121 | 	if (platform_mode && hibernation_ops) | 
 | 122 | 		hibernation_ops->end(); | 
| Rafael J. Wysocki | 74f270a | 2007-10-18 03:04:42 -0700 | [diff] [blame] | 123 | } | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 124 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | /** | 
| Rafael J. Wysocki | 74f270a | 2007-10-18 03:04:42 -0700 | [diff] [blame] | 126 |  *	platform_pre_snapshot - prepare the machine for hibernation using the | 
| Stefan Seyfried | 8a05aac | 2006-12-06 20:34:21 -0800 | [diff] [blame] | 127 |  *	platform driver if so configured and return an error code if it fails | 
 | 128 |  */ | 
 | 129 |  | 
| Rafael J. Wysocki | 74f270a | 2007-10-18 03:04:42 -0700 | [diff] [blame] | 130 | static int platform_pre_snapshot(int platform_mode) | 
| Stefan Seyfried | 8a05aac | 2006-12-06 20:34:21 -0800 | [diff] [blame] | 131 | { | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 132 | 	return (platform_mode && hibernation_ops) ? | 
| Rafael J. Wysocki | 74f270a | 2007-10-18 03:04:42 -0700 | [diff] [blame] | 133 | 		hibernation_ops->pre_snapshot() : 0; | 
| Stefan Seyfried | 8a05aac | 2006-12-06 20:34:21 -0800 | [diff] [blame] | 134 | } | 
 | 135 |  | 
 | 136 | /** | 
| Rafael J. Wysocki | c7e0831 | 2007-10-18 03:04:55 -0700 | [diff] [blame] | 137 |  *	platform_leave - prepare the machine for switching to the normal mode | 
 | 138 |  *	of operation using the platform driver (called with interrupts disabled) | 
 | 139 |  */ | 
 | 140 |  | 
 | 141 | static void platform_leave(int platform_mode) | 
 | 142 | { | 
 | 143 | 	if (platform_mode && hibernation_ops) | 
 | 144 | 		hibernation_ops->leave(); | 
 | 145 | } | 
 | 146 |  | 
 | 147 | /** | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 148 |  *	platform_finish - switch the machine to the normal mode of operation | 
 | 149 |  *	using the platform driver (must be called after platform_prepare()) | 
 | 150 |  */ | 
 | 151 |  | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 152 | static void platform_finish(int platform_mode) | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 153 | { | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 154 | 	if (platform_mode && hibernation_ops) | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 155 | 		hibernation_ops->finish(); | 
 | 156 | } | 
 | 157 |  | 
 | 158 | /** | 
| Rafael J. Wysocki | a634cc1 | 2007-07-19 01:47:30 -0700 | [diff] [blame] | 159 |  *	platform_pre_restore - prepare the platform for the restoration from a | 
 | 160 |  *	hibernation image.  If the restore fails after this function has been | 
 | 161 |  *	called, platform_restore_cleanup() must be called. | 
 | 162 |  */ | 
 | 163 |  | 
 | 164 | static int platform_pre_restore(int platform_mode) | 
 | 165 | { | 
 | 166 | 	return (platform_mode && hibernation_ops) ? | 
 | 167 | 		hibernation_ops->pre_restore() : 0; | 
 | 168 | } | 
 | 169 |  | 
 | 170 | /** | 
 | 171 |  *	platform_restore_cleanup - switch the platform to the normal mode of | 
 | 172 |  *	operation after a failing restore.  If platform_pre_restore() has been | 
 | 173 |  *	called before the failing restore, this function must be called too, | 
 | 174 |  *	regardless of the result of platform_pre_restore(). | 
 | 175 |  */ | 
 | 176 |  | 
 | 177 | static void platform_restore_cleanup(int platform_mode) | 
 | 178 | { | 
 | 179 | 	if (platform_mode && hibernation_ops) | 
 | 180 | 		hibernation_ops->restore_cleanup(); | 
 | 181 | } | 
 | 182 |  | 
 | 183 | /** | 
| Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 184 |  *	platform_recover - recover the platform from a failure to suspend | 
 | 185 |  *	devices. | 
 | 186 |  */ | 
 | 187 |  | 
 | 188 | static void platform_recover(int platform_mode) | 
 | 189 | { | 
 | 190 | 	if (platform_mode && hibernation_ops && hibernation_ops->recover) | 
 | 191 | 		hibernation_ops->recover(); | 
 | 192 | } | 
 | 193 |  | 
 | 194 | /** | 
| Rafael J. Wysocki | c7e0831 | 2007-10-18 03:04:55 -0700 | [diff] [blame] | 195 |  *	create_image - freeze devices that need to be frozen with interrupts | 
 | 196 |  *	off, create the hibernation image and thaw those devices.  Control | 
 | 197 |  *	reappears in this routine after a restore. | 
 | 198 |  */ | 
 | 199 |  | 
| Adrian Bunk | 47a460d | 2008-02-04 22:30:06 -0800 | [diff] [blame] | 200 | static int create_image(int platform_mode) | 
| Rafael J. Wysocki | c7e0831 | 2007-10-18 03:04:55 -0700 | [diff] [blame] | 201 | { | 
 | 202 | 	int error; | 
 | 203 |  | 
 | 204 | 	error = arch_prepare_suspend(); | 
 | 205 | 	if (error) | 
 | 206 | 		return error; | 
 | 207 |  | 
| Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 208 | 	device_pm_lock(); | 
| Rafael J. Wysocki | c7e0831 | 2007-10-18 03:04:55 -0700 | [diff] [blame] | 209 | 	local_irq_disable(); | 
 | 210 | 	/* At this point, device_suspend() has been called, but *not* | 
 | 211 | 	 * device_power_down(). We *must* call device_power_down() now. | 
 | 212 | 	 * Otherwise, drivers for some devices (e.g. interrupt controllers) | 
 | 213 | 	 * become desynchronized with the actual state of the hardware | 
 | 214 | 	 * at resume time, and evil weirdness ensues. | 
 | 215 | 	 */ | 
 | 216 | 	error = device_power_down(PMSG_FREEZE); | 
 | 217 | 	if (error) { | 
| Rafael J. Wysocki | 2397672 | 2007-12-08 02:09:43 +0100 | [diff] [blame] | 218 | 		printk(KERN_ERR "PM: Some devices failed to power down, " | 
 | 219 | 			"aborting hibernation\n"); | 
| Rafael J. Wysocki | c7e0831 | 2007-10-18 03:04:55 -0700 | [diff] [blame] | 220 | 		goto Enable_irqs; | 
 | 221 | 	} | 
 | 222 |  | 
| Rafael J. Wysocki | 4cc7977 | 2007-11-19 23:42:31 +0100 | [diff] [blame] | 223 | 	if (hibernation_test(TEST_CORE)) | 
 | 224 | 		goto Power_up; | 
 | 225 |  | 
 | 226 | 	in_suspend = 1; | 
| Rafael J. Wysocki | c7e0831 | 2007-10-18 03:04:55 -0700 | [diff] [blame] | 227 | 	save_processor_state(); | 
 | 228 | 	error = swsusp_arch_suspend(); | 
 | 229 | 	if (error) | 
| Rafael J. Wysocki | 2397672 | 2007-12-08 02:09:43 +0100 | [diff] [blame] | 230 | 		printk(KERN_ERR "PM: Error %d creating hibernation image\n", | 
 | 231 | 			error); | 
| Rafael J. Wysocki | c7e0831 | 2007-10-18 03:04:55 -0700 | [diff] [blame] | 232 | 	/* Restore control flow magically appears here */ | 
 | 233 | 	restore_processor_state(); | 
 | 234 | 	if (!in_suspend) | 
 | 235 | 		platform_leave(platform_mode); | 
| Rafael J. Wysocki | 4cc7977 | 2007-11-19 23:42:31 +0100 | [diff] [blame] | 236 |  Power_up: | 
| Rafael J. Wysocki | c7e0831 | 2007-10-18 03:04:55 -0700 | [diff] [blame] | 237 | 	/* NOTE:  device_power_up() is just a resume() for devices | 
 | 238 | 	 * that suspended with irqs off ... no overall powerup. | 
 | 239 | 	 */ | 
| Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 240 | 	device_power_up(in_suspend ? | 
 | 241 | 		(error ? PMSG_RECOVER : PMSG_THAW) : PMSG_RESTORE); | 
| Rafael J. Wysocki | c7e0831 | 2007-10-18 03:04:55 -0700 | [diff] [blame] | 242 |  Enable_irqs: | 
 | 243 | 	local_irq_enable(); | 
| Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 244 | 	device_pm_unlock(); | 
| Rafael J. Wysocki | c7e0831 | 2007-10-18 03:04:55 -0700 | [diff] [blame] | 245 | 	return error; | 
 | 246 | } | 
 | 247 |  | 
 | 248 | /** | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 249 |  *	hibernation_snapshot - quiesce devices and create the hibernation | 
 | 250 |  *	snapshot image. | 
 | 251 |  *	@platform_mode - if set, use the platform driver, if available, to | 
 | 252 |  *			 prepare the platform frimware for the power transition. | 
 | 253 |  * | 
 | 254 |  *	Must be called with pm_mutex held | 
 | 255 |  */ | 
 | 256 |  | 
 | 257 | int hibernation_snapshot(int platform_mode) | 
 | 258 | { | 
| Rafael J. Wysocki | 41108eb | 2008-08-28 14:39:12 +0200 | [diff] [blame] | 259 | 	int error, ftrace_save; | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 260 |  | 
 | 261 | 	/* Free memory before shutting down devices. */ | 
 | 262 | 	error = swsusp_shrink_memory(); | 
 | 263 | 	if (error) | 
| Rafael J. Wysocki | 10a1803 | 2007-07-19 01:47:31 -0700 | [diff] [blame] | 264 | 		return error; | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 265 |  | 
| Rafael J. Wysocki | caea99e | 2008-01-08 00:08:44 +0100 | [diff] [blame] | 266 | 	error = platform_begin(platform_mode); | 
| Rafael J. Wysocki | 74f270a | 2007-10-18 03:04:42 -0700 | [diff] [blame] | 267 | 	if (error) | 
| Rafael J. Wysocki | caea99e | 2008-01-08 00:08:44 +0100 | [diff] [blame] | 268 | 		goto Close; | 
| Rafael J. Wysocki | 74f270a | 2007-10-18 03:04:42 -0700 | [diff] [blame] | 269 |  | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 270 | 	suspend_console(); | 
| Rafael J. Wysocki | 41108eb | 2008-08-28 14:39:12 +0200 | [diff] [blame] | 271 | 	ftrace_save = __ftrace_enabled_save(); | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 272 | 	error = device_suspend(PMSG_FREEZE); | 
 | 273 | 	if (error) | 
| Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 274 | 		goto Recover_platform; | 
| Rafael J. Wysocki | 10a1803 | 2007-07-19 01:47:31 -0700 | [diff] [blame] | 275 |  | 
| Rafael J. Wysocki | 4cc7977 | 2007-11-19 23:42:31 +0100 | [diff] [blame] | 276 | 	if (hibernation_test(TEST_DEVICES)) | 
| Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 277 | 		goto Recover_platform; | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 278 |  | 
| Rafael J. Wysocki | 4cc7977 | 2007-11-19 23:42:31 +0100 | [diff] [blame] | 279 | 	error = platform_pre_snapshot(platform_mode); | 
 | 280 | 	if (error || hibernation_test(TEST_PLATFORM)) | 
 | 281 | 		goto Finish; | 
 | 282 |  | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 283 | 	error = disable_nonboot_cpus(); | 
 | 284 | 	if (!error) { | 
| Rafael J. Wysocki | 4cc7977 | 2007-11-19 23:42:31 +0100 | [diff] [blame] | 285 | 		if (hibernation_test(TEST_CPUS)) | 
 | 286 | 			goto Enable_cpus; | 
 | 287 |  | 
 | 288 | 		if (hibernation_testmode(HIBERNATION_TEST)) | 
 | 289 | 			goto Enable_cpus; | 
 | 290 |  | 
 | 291 | 		error = create_image(platform_mode); | 
 | 292 | 		/* Control returns here after successful restore */ | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 293 | 	} | 
| Rafael J. Wysocki | 4cc7977 | 2007-11-19 23:42:31 +0100 | [diff] [blame] | 294 |  Enable_cpus: | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 295 | 	enable_nonboot_cpus(); | 
| Rafael J. Wysocki | 4cc7977 | 2007-11-19 23:42:31 +0100 | [diff] [blame] | 296 |  Finish: | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 297 | 	platform_finish(platform_mode); | 
| Rafael J. Wysocki | 4cc7977 | 2007-11-19 23:42:31 +0100 | [diff] [blame] | 298 |  Resume_devices: | 
| Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 299 | 	device_resume(in_suspend ? | 
 | 300 | 		(error ? PMSG_RECOVER : PMSG_THAW) : PMSG_RESTORE); | 
| Rafael J. Wysocki | 41108eb | 2008-08-28 14:39:12 +0200 | [diff] [blame] | 301 | 	__ftrace_enabled_restore(ftrace_save); | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 302 | 	resume_console(); | 
| Rafael J. Wysocki | caea99e | 2008-01-08 00:08:44 +0100 | [diff] [blame] | 303 |  Close: | 
 | 304 | 	platform_end(platform_mode); | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 305 | 	return error; | 
| Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 306 |  | 
 | 307 |  Recover_platform: | 
 | 308 | 	platform_recover(platform_mode); | 
 | 309 | 	goto Resume_devices; | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 310 | } | 
 | 311 |  | 
 | 312 | /** | 
| Rafael J. Wysocki | 72df68c | 2007-12-08 02:04:21 +0100 | [diff] [blame] | 313 |  *	resume_target_kernel - prepare devices that need to be suspended with | 
 | 314 |  *	interrupts off, restore the contents of highmem that have not been | 
 | 315 |  *	restored yet from the image and run the low level code that will restore | 
 | 316 |  *	the remaining contents of memory and switch to the just restored target | 
 | 317 |  *	kernel. | 
 | 318 |  */ | 
 | 319 |  | 
 | 320 | static int resume_target_kernel(void) | 
 | 321 | { | 
 | 322 | 	int error; | 
 | 323 |  | 
| Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 324 | 	device_pm_lock(); | 
| Rafael J. Wysocki | 72df68c | 2007-12-08 02:04:21 +0100 | [diff] [blame] | 325 | 	local_irq_disable(); | 
| Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 326 | 	error = device_power_down(PMSG_QUIESCE); | 
| Rafael J. Wysocki | 72df68c | 2007-12-08 02:04:21 +0100 | [diff] [blame] | 327 | 	if (error) { | 
| Rafael J. Wysocki | 2397672 | 2007-12-08 02:09:43 +0100 | [diff] [blame] | 328 | 		printk(KERN_ERR "PM: Some devices failed to power down, " | 
| Rafael J. Wysocki | 72df68c | 2007-12-08 02:04:21 +0100 | [diff] [blame] | 329 | 			"aborting resume\n"); | 
 | 330 | 		goto Enable_irqs; | 
 | 331 | 	} | 
 | 332 | 	/* We'll ignore saved state, but this gets preempt count (etc) right */ | 
 | 333 | 	save_processor_state(); | 
 | 334 | 	error = restore_highmem(); | 
 | 335 | 	if (!error) { | 
 | 336 | 		error = swsusp_arch_resume(); | 
 | 337 | 		/* | 
 | 338 | 		 * The code below is only ever reached in case of a failure. | 
 | 339 | 		 * Otherwise execution continues at place where | 
 | 340 | 		 * swsusp_arch_suspend() was called | 
 | 341 | 		 */ | 
 | 342 | 		BUG_ON(!error); | 
 | 343 | 		/* This call to restore_highmem() undos the previous one */ | 
 | 344 | 		restore_highmem(); | 
 | 345 | 	} | 
 | 346 | 	/* | 
 | 347 | 	 * The only reason why swsusp_arch_resume() can fail is memory being | 
 | 348 | 	 * very tight, so we have to free it as soon as we can to avoid | 
 | 349 | 	 * subsequent failures | 
 | 350 | 	 */ | 
 | 351 | 	swsusp_free(); | 
 | 352 | 	restore_processor_state(); | 
 | 353 | 	touch_softlockup_watchdog(); | 
| Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 354 | 	device_power_up(PMSG_RECOVER); | 
| Rafael J. Wysocki | 72df68c | 2007-12-08 02:04:21 +0100 | [diff] [blame] | 355 |  Enable_irqs: | 
 | 356 | 	local_irq_enable(); | 
| Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 357 | 	device_pm_unlock(); | 
| Rafael J. Wysocki | 72df68c | 2007-12-08 02:04:21 +0100 | [diff] [blame] | 358 | 	return error; | 
 | 359 | } | 
 | 360 |  | 
 | 361 | /** | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 362 |  *	hibernation_restore - quiesce devices and restore the hibernation | 
 | 363 |  *	snapshot image.  If successful, control returns in hibernation_snaphot() | 
| Rafael J. Wysocki | a634cc1 | 2007-07-19 01:47:30 -0700 | [diff] [blame] | 364 |  *	@platform_mode - if set, use the platform driver, if available, to | 
 | 365 |  *			 prepare the platform frimware for the transition. | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 366 |  * | 
 | 367 |  *	Must be called with pm_mutex held | 
 | 368 |  */ | 
 | 369 |  | 
| Rafael J. Wysocki | a634cc1 | 2007-07-19 01:47:30 -0700 | [diff] [blame] | 370 | int hibernation_restore(int platform_mode) | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 371 | { | 
| Rafael J. Wysocki | 41108eb | 2008-08-28 14:39:12 +0200 | [diff] [blame] | 372 | 	int error, ftrace_save; | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 373 |  | 
 | 374 | 	pm_prepare_console(); | 
 | 375 | 	suspend_console(); | 
| Rafael J. Wysocki | 41108eb | 2008-08-28 14:39:12 +0200 | [diff] [blame] | 376 | 	ftrace_save = __ftrace_enabled_save(); | 
| Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 377 | 	error = device_suspend(PMSG_QUIESCE); | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 378 | 	if (error) | 
 | 379 | 		goto Finish; | 
 | 380 |  | 
| Rafael J. Wysocki | a634cc1 | 2007-07-19 01:47:30 -0700 | [diff] [blame] | 381 | 	error = platform_pre_restore(platform_mode); | 
 | 382 | 	if (!error) { | 
 | 383 | 		error = disable_nonboot_cpus(); | 
 | 384 | 		if (!error) | 
| Rafael J. Wysocki | 72df68c | 2007-12-08 02:04:21 +0100 | [diff] [blame] | 385 | 			error = resume_target_kernel(); | 
| Rafael J. Wysocki | a634cc1 | 2007-07-19 01:47:30 -0700 | [diff] [blame] | 386 | 		enable_nonboot_cpus(); | 
 | 387 | 	} | 
 | 388 | 	platform_restore_cleanup(platform_mode); | 
| Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 389 | 	device_resume(PMSG_RECOVER); | 
| Rafael J. Wysocki | 10a1803 | 2007-07-19 01:47:31 -0700 | [diff] [blame] | 390 |  Finish: | 
| Rafael J. Wysocki | 41108eb | 2008-08-28 14:39:12 +0200 | [diff] [blame] | 391 | 	__ftrace_enabled_restore(ftrace_save); | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 392 | 	resume_console(); | 
 | 393 | 	pm_restore_console(); | 
 | 394 | 	return error; | 
 | 395 | } | 
 | 396 |  | 
 | 397 | /** | 
 | 398 |  *	hibernation_platform_enter - enter the hibernation state using the | 
 | 399 |  *	platform driver (if available) | 
 | 400 |  */ | 
 | 401 |  | 
 | 402 | int hibernation_platform_enter(void) | 
 | 403 | { | 
| Rafael J. Wysocki | 41108eb | 2008-08-28 14:39:12 +0200 | [diff] [blame] | 404 | 	int error, ftrace_save; | 
| Rafael J. Wysocki | b1457bc | 2007-07-19 01:47:31 -0700 | [diff] [blame] | 405 |  | 
| Rafael J. Wysocki | 9cd9a00 | 2007-10-18 03:04:56 -0700 | [diff] [blame] | 406 | 	if (!hibernation_ops) | 
 | 407 | 		return -ENOSYS; | 
 | 408 |  | 
 | 409 | 	/* | 
 | 410 | 	 * We have cancelled the power transition by running | 
 | 411 | 	 * hibernation_ops->finish() before saving the image, so we should let | 
 | 412 | 	 * the firmware know that we're going to enter the sleep state after all | 
 | 413 | 	 */ | 
| Rafael J. Wysocki | caea99e | 2008-01-08 00:08:44 +0100 | [diff] [blame] | 414 | 	error = hibernation_ops->begin(); | 
| Rafael J. Wysocki | 9cd9a00 | 2007-10-18 03:04:56 -0700 | [diff] [blame] | 415 | 	if (error) | 
| Rafael J. Wysocki | caea99e | 2008-01-08 00:08:44 +0100 | [diff] [blame] | 416 | 		goto Close; | 
| Rafael J. Wysocki | 9cd9a00 | 2007-10-18 03:04:56 -0700 | [diff] [blame] | 417 |  | 
 | 418 | 	suspend_console(); | 
| Rafael J. Wysocki | 41108eb | 2008-08-28 14:39:12 +0200 | [diff] [blame] | 419 | 	ftrace_save = __ftrace_enabled_save(); | 
| Rafael J. Wysocki | 3a2d5b7 | 2008-02-23 19:13:25 +0100 | [diff] [blame] | 420 | 	error = device_suspend(PMSG_HIBERNATE); | 
| Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 421 | 	if (error) { | 
 | 422 | 		if (hibernation_ops->recover) | 
 | 423 | 			hibernation_ops->recover(); | 
 | 424 | 		goto Resume_devices; | 
 | 425 | 	} | 
| Rafael J. Wysocki | 9cd9a00 | 2007-10-18 03:04:56 -0700 | [diff] [blame] | 426 |  | 
 | 427 | 	error = hibernation_ops->prepare(); | 
 | 428 | 	if (error) | 
 | 429 | 		goto Resume_devices; | 
 | 430 |  | 
 | 431 | 	error = disable_nonboot_cpus(); | 
 | 432 | 	if (error) | 
 | 433 | 		goto Finish; | 
 | 434 |  | 
| Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 435 | 	device_pm_lock(); | 
| Rafael J. Wysocki | 9cd9a00 | 2007-10-18 03:04:56 -0700 | [diff] [blame] | 436 | 	local_irq_disable(); | 
| Rafael J. Wysocki | 3a2d5b7 | 2008-02-23 19:13:25 +0100 | [diff] [blame] | 437 | 	error = device_power_down(PMSG_HIBERNATE); | 
| Rafael J. Wysocki | 9cd9a00 | 2007-10-18 03:04:56 -0700 | [diff] [blame] | 438 | 	if (!error) { | 
 | 439 | 		hibernation_ops->enter(); | 
 | 440 | 		/* We should never get here */ | 
 | 441 | 		while (1); | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 442 | 	} | 
| Rafael J. Wysocki | 9cd9a00 | 2007-10-18 03:04:56 -0700 | [diff] [blame] | 443 | 	local_irq_enable(); | 
| Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 444 | 	device_pm_unlock(); | 
| Rafael J. Wysocki | 9cd9a00 | 2007-10-18 03:04:56 -0700 | [diff] [blame] | 445 |  | 
 | 446 | 	/* | 
 | 447 | 	 * We don't need to reenable the nonboot CPUs or resume consoles, since | 
 | 448 | 	 * the system is going to be halted anyway. | 
 | 449 | 	 */ | 
 | 450 |  Finish: | 
 | 451 | 	hibernation_ops->finish(); | 
 | 452 |  Resume_devices: | 
| Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 453 | 	device_resume(PMSG_RESTORE); | 
| Rafael J. Wysocki | 41108eb | 2008-08-28 14:39:12 +0200 | [diff] [blame] | 454 | 	__ftrace_enabled_restore(ftrace_save); | 
| Rafael J. Wysocki | 9cd9a00 | 2007-10-18 03:04:56 -0700 | [diff] [blame] | 455 | 	resume_console(); | 
| Rafael J. Wysocki | caea99e | 2008-01-08 00:08:44 +0100 | [diff] [blame] | 456 |  Close: | 
 | 457 | 	hibernation_ops->end(); | 
| Rafael J. Wysocki | b1457bc | 2007-07-19 01:47:31 -0700 | [diff] [blame] | 458 | 	return error; | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 459 | } | 
 | 460 |  | 
 | 461 | /** | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 462 |  *	power_down - Shut the machine down for hibernation. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 |  * | 
| Johannes Berg | fe0c935 | 2007-04-30 15:09:51 -0700 | [diff] [blame] | 464 |  *	Use the platform driver, if configured so; otherwise try | 
 | 465 |  *	to power off or reboot. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 |  */ | 
 | 467 |  | 
| Johannes Berg | fe0c935 | 2007-04-30 15:09:51 -0700 | [diff] [blame] | 468 | static void power_down(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | { | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 470 | 	switch (hibernation_mode) { | 
 | 471 | 	case HIBERNATION_TEST: | 
 | 472 | 	case HIBERNATION_TESTPROC: | 
| Johannes Berg | fe0c935 | 2007-04-30 15:09:51 -0700 | [diff] [blame] | 473 | 		break; | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 474 | 	case HIBERNATION_REBOOT: | 
| Eric W. Biederman | fdde86a | 2005-07-26 12:01:17 -0600 | [diff] [blame] | 475 | 		kernel_restart(NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | 		break; | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 477 | 	case HIBERNATION_PLATFORM: | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 478 | 		hibernation_platform_enter(); | 
| Rafael J. Wysocki | 9cd9a00 | 2007-10-18 03:04:56 -0700 | [diff] [blame] | 479 | 	case HIBERNATION_SHUTDOWN: | 
 | 480 | 		kernel_power_off(); | 
 | 481 | 		break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | 	} | 
| Eric W. Biederman | fdde86a | 2005-07-26 12:01:17 -0600 | [diff] [blame] | 483 | 	kernel_halt(); | 
| Johannes Berg | fe0c935 | 2007-04-30 15:09:51 -0700 | [diff] [blame] | 484 | 	/* | 
 | 485 | 	 * Valid image is on the disk, if we continue we risk serious data | 
 | 486 | 	 * corruption after resume. | 
 | 487 | 	 */ | 
| Rafael J. Wysocki | 2397672 | 2007-12-08 02:09:43 +0100 | [diff] [blame] | 488 | 	printk(KERN_CRIT "PM: Please power down manually\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | 	while(1); | 
 | 490 | } | 
 | 491 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | static int prepare_processes(void) | 
 | 493 | { | 
| Rafael J. Wysocki | b918f6e | 2006-11-02 22:07:19 -0800 | [diff] [blame] | 494 | 	int error = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | 	if (freeze_processes()) { | 
 | 497 | 		error = -EBUSY; | 
| Rafael J. Wysocki | 5a0a2f3 | 2008-01-11 01:25:21 +0100 | [diff] [blame] | 498 | 		thaw_processes(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | 	} | 
| Li Shaohua | 5a72e04 | 2005-06-25 14:55:06 -0700 | [diff] [blame] | 500 | 	return error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | } | 
 | 502 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | /** | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 504 |  *	hibernate - The granpappy of the built-in hibernation management | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 |  */ | 
 | 506 |  | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 507 | int hibernate(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | { | 
 | 509 | 	int error; | 
 | 510 |  | 
| Rafael J. Wysocki | b10d911 | 2007-07-19 01:47:36 -0700 | [diff] [blame] | 511 | 	mutex_lock(&pm_mutex); | 
| Rafael J. Wysocki | 0709db6 | 2007-05-06 14:50:45 -0700 | [diff] [blame] | 512 | 	/* The snapshot device should not be opened while we're running */ | 
| Rafael J. Wysocki | b10d911 | 2007-07-19 01:47:36 -0700 | [diff] [blame] | 513 | 	if (!atomic_add_unless(&snapshot_device_available, -1, 0)) { | 
 | 514 | 		error = -EBUSY; | 
 | 515 | 		goto Unlock; | 
 | 516 | 	} | 
 | 517 |  | 
| Rafael J. Wysocki | 5a0a2f3 | 2008-01-11 01:25:21 +0100 | [diff] [blame] | 518 | 	pm_prepare_console(); | 
| Rafael J. Wysocki | b10d911 | 2007-07-19 01:47:36 -0700 | [diff] [blame] | 519 | 	error = pm_notifier_call_chain(PM_HIBERNATION_PREPARE); | 
 | 520 | 	if (error) | 
 | 521 | 		goto Exit; | 
| Rafael J. Wysocki | 0709db6 | 2007-05-06 14:50:45 -0700 | [diff] [blame] | 522 |  | 
 | 523 | 	/* Allocate memory management structures */ | 
 | 524 | 	error = create_basic_memory_bitmaps(); | 
 | 525 | 	if (error) | 
 | 526 | 		goto Exit; | 
 | 527 |  | 
| Rafael J. Wysocki | 2397672 | 2007-12-08 02:09:43 +0100 | [diff] [blame] | 528 | 	printk(KERN_INFO "PM: Syncing filesystems ... "); | 
| Rafael J. Wysocki | 232b143 | 2007-10-18 03:04:44 -0700 | [diff] [blame] | 529 | 	sys_sync(); | 
 | 530 | 	printk("done.\n"); | 
 | 531 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | 	error = prepare_processes(); | 
| Li Shaohua | 5a72e04 | 2005-06-25 14:55:06 -0700 | [diff] [blame] | 533 | 	if (error) | 
| Rafael J. Wysocki | 0709db6 | 2007-05-06 14:50:45 -0700 | [diff] [blame] | 534 | 		goto Finish; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 |  | 
| Rafael J. Wysocki | 4cc7977 | 2007-11-19 23:42:31 +0100 | [diff] [blame] | 536 | 	if (hibernation_test(TEST_FREEZER)) | 
| Rafael J. Wysocki | ed746e3 | 2007-02-10 01:43:32 -0800 | [diff] [blame] | 537 | 		goto Thaw; | 
| Rafael J. Wysocki | 4cc7977 | 2007-11-19 23:42:31 +0100 | [diff] [blame] | 538 |  | 
 | 539 | 	if (hibernation_testmode(HIBERNATION_TESTPROC)) | 
 | 540 | 		goto Thaw; | 
 | 541 |  | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 542 | 	error = hibernation_snapshot(hibernation_mode == HIBERNATION_PLATFORM); | 
 | 543 | 	if (in_suspend && !error) { | 
| Rafael J. Wysocki | a634cc1 | 2007-07-19 01:47:30 -0700 | [diff] [blame] | 544 | 		unsigned int flags = 0; | 
 | 545 |  | 
 | 546 | 		if (hibernation_mode == HIBERNATION_PLATFORM) | 
 | 547 | 			flags |= SF_PLATFORM_MODE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | 		pr_debug("PM: writing image.\n"); | 
| Rafael J. Wysocki | a634cc1 | 2007-07-19 01:47:30 -0700 | [diff] [blame] | 549 | 		error = swsusp_write(flags); | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 550 | 		swsusp_free(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | 		if (!error) | 
| Johannes Berg | fe0c935 | 2007-04-30 15:09:51 -0700 | [diff] [blame] | 552 | 			power_down(); | 
| Rafael J. Wysocki | b918f6e | 2006-11-02 22:07:19 -0800 | [diff] [blame] | 553 | 	} else { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | 		pr_debug("PM: Image restored successfully.\n"); | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 555 | 		swsusp_free(); | 
| Rafael J. Wysocki | b918f6e | 2006-11-02 22:07:19 -0800 | [diff] [blame] | 556 | 	} | 
| Rafael J. Wysocki | b918f6e | 2006-11-02 22:07:19 -0800 | [diff] [blame] | 557 |  Thaw: | 
| Rafael J. Wysocki | 5a0a2f3 | 2008-01-11 01:25:21 +0100 | [diff] [blame] | 558 | 	thaw_processes(); | 
| Rafael J. Wysocki | 0709db6 | 2007-05-06 14:50:45 -0700 | [diff] [blame] | 559 |  Finish: | 
 | 560 | 	free_basic_memory_bitmaps(); | 
 | 561 |  Exit: | 
| Rafael J. Wysocki | b10d911 | 2007-07-19 01:47:36 -0700 | [diff] [blame] | 562 | 	pm_notifier_call_chain(PM_POST_HIBERNATION); | 
| Rafael J. Wysocki | 5a0a2f3 | 2008-01-11 01:25:21 +0100 | [diff] [blame] | 563 | 	pm_restore_console(); | 
| Rafael J. Wysocki | 0709db6 | 2007-05-06 14:50:45 -0700 | [diff] [blame] | 564 | 	atomic_inc(&snapshot_device_available); | 
| Rafael J. Wysocki | b10d911 | 2007-07-19 01:47:36 -0700 | [diff] [blame] | 565 |  Unlock: | 
 | 566 | 	mutex_unlock(&pm_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | 	return error; | 
 | 568 | } | 
 | 569 |  | 
 | 570 |  | 
 | 571 | /** | 
 | 572 |  *	software_resume - Resume from a saved image. | 
 | 573 |  * | 
 | 574 |  *	Called as a late_initcall (so all devices are discovered and | 
 | 575 |  *	initialized), we call swsusp to see if we have a saved image or not. | 
 | 576 |  *	If so, we quiesce devices, the restore the saved image. We will | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 577 |  *	return above (in hibernate() ) if everything goes well. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 |  *	Otherwise, we fail gracefully and return to the normally | 
 | 579 |  *	scheduled program. | 
 | 580 |  * | 
 | 581 |  */ | 
 | 582 |  | 
 | 583 | static int software_resume(void) | 
 | 584 | { | 
 | 585 | 	int error; | 
| Rafael J. Wysocki | a634cc1 | 2007-07-19 01:47:30 -0700 | [diff] [blame] | 586 | 	unsigned int flags; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 |  | 
| Johannes Berg | 60a0d23 | 2007-11-14 17:00:16 -0800 | [diff] [blame] | 588 | 	/* | 
 | 589 | 	 * name_to_dev_t() below takes a sysfs buffer mutex when sysfs | 
 | 590 | 	 * is configured into the kernel. Since the regular hibernate | 
 | 591 | 	 * trigger path is via sysfs which takes a buffer mutex before | 
 | 592 | 	 * calling hibernate functions (which take pm_mutex) this can | 
 | 593 | 	 * cause lockdep to complain about a possible ABBA deadlock | 
 | 594 | 	 * which cannot happen since we're in the boot code here and | 
 | 595 | 	 * sysfs can't be invoked yet. Therefore, we use a subclass | 
 | 596 | 	 * here to avoid lockdep complaining. | 
 | 597 | 	 */ | 
 | 598 | 	mutex_lock_nested(&pm_mutex, SINGLE_DEPTH_NESTING); | 
| Pavel Machek | 3efa147 | 2005-07-07 17:56:43 -0700 | [diff] [blame] | 599 | 	if (!swsusp_resume_device) { | 
| Shaohua Li | dd5d666 | 2005-09-03 15:57:04 -0700 | [diff] [blame] | 600 | 		if (!strlen(resume_file)) { | 
| Stephen Hemminger | a6d7098 | 2006-12-06 20:34:35 -0800 | [diff] [blame] | 601 | 			mutex_unlock(&pm_mutex); | 
| Pavel Machek | 3efa147 | 2005-07-07 17:56:43 -0700 | [diff] [blame] | 602 | 			return -ENOENT; | 
| Shaohua Li | dd5d666 | 2005-09-03 15:57:04 -0700 | [diff] [blame] | 603 | 		} | 
| Pavel Machek | 3efa147 | 2005-07-07 17:56:43 -0700 | [diff] [blame] | 604 | 		swsusp_resume_device = name_to_dev_t(resume_file); | 
| Rafael J. Wysocki | 2397672 | 2007-12-08 02:09:43 +0100 | [diff] [blame] | 605 | 		pr_debug("PM: Resume from partition %s\n", resume_file); | 
| Pavel Machek | 3efa147 | 2005-07-07 17:56:43 -0700 | [diff] [blame] | 606 | 	} else { | 
| Rafael J. Wysocki | 2397672 | 2007-12-08 02:09:43 +0100 | [diff] [blame] | 607 | 		pr_debug("PM: Resume from partition %d:%d\n", | 
 | 608 | 				MAJOR(swsusp_resume_device), | 
 | 609 | 				MINOR(swsusp_resume_device)); | 
| Pavel Machek | 3efa147 | 2005-07-07 17:56:43 -0700 | [diff] [blame] | 610 | 	} | 
 | 611 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | 	if (noresume) { | 
 | 613 | 		/** | 
| Rafael J. Wysocki | 9575809 | 2007-12-08 02:06:57 +0100 | [diff] [blame] | 614 | 		 * FIXME: If noresume is specified, we need to find the | 
 | 615 | 		 * partition and reset it back to normal swap space. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | 		 */ | 
| Stephen Hemminger | a6d7098 | 2006-12-06 20:34:35 -0800 | [diff] [blame] | 617 | 		mutex_unlock(&pm_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | 		return 0; | 
 | 619 | 	} | 
 | 620 |  | 
| Rafael J. Wysocki | 2397672 | 2007-12-08 02:09:43 +0100 | [diff] [blame] | 621 | 	pr_debug("PM: Checking hibernation image.\n"); | 
| Rafael J. Wysocki | ed746e3 | 2007-02-10 01:43:32 -0800 | [diff] [blame] | 622 | 	error = swsusp_check(); | 
 | 623 | 	if (error) | 
| Rafael J. Wysocki | 74dfd66 | 2007-05-06 14:50:43 -0700 | [diff] [blame] | 624 | 		goto Unlock; | 
 | 625 |  | 
| Rafael J. Wysocki | 0709db6 | 2007-05-06 14:50:45 -0700 | [diff] [blame] | 626 | 	/* The snapshot device should not be opened while we're running */ | 
 | 627 | 	if (!atomic_add_unless(&snapshot_device_available, -1, 0)) { | 
 | 628 | 		error = -EBUSY; | 
 | 629 | 		goto Unlock; | 
 | 630 | 	} | 
 | 631 |  | 
| Rafael J. Wysocki | 5a0a2f3 | 2008-01-11 01:25:21 +0100 | [diff] [blame] | 632 | 	pm_prepare_console(); | 
| Alan Stern | c3e94d8 | 2007-11-19 23:38:25 +0100 | [diff] [blame] | 633 | 	error = pm_notifier_call_chain(PM_RESTORE_PREPARE); | 
 | 634 | 	if (error) | 
 | 635 | 		goto Finish; | 
 | 636 |  | 
| Rafael J. Wysocki | 74dfd66 | 2007-05-06 14:50:43 -0700 | [diff] [blame] | 637 | 	error = create_basic_memory_bitmaps(); | 
 | 638 | 	if (error) | 
| Rafael J. Wysocki | 0709db6 | 2007-05-06 14:50:45 -0700 | [diff] [blame] | 639 | 		goto Finish; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 |  | 
 | 641 | 	pr_debug("PM: Preparing processes for restore.\n"); | 
| Rafael J. Wysocki | ed746e3 | 2007-02-10 01:43:32 -0800 | [diff] [blame] | 642 | 	error = prepare_processes(); | 
 | 643 | 	if (error) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | 		swsusp_close(); | 
| Li Shaohua | 5a72e04 | 2005-06-25 14:55:06 -0700 | [diff] [blame] | 645 | 		goto Done; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | 	} | 
 | 647 |  | 
| Rafael J. Wysocki | 2397672 | 2007-12-08 02:09:43 +0100 | [diff] [blame] | 648 | 	pr_debug("PM: Reading hibernation image.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 |  | 
| Rafael J. Wysocki | a634cc1 | 2007-07-19 01:47:30 -0700 | [diff] [blame] | 650 | 	error = swsusp_read(&flags); | 
| Rafael J. Wysocki | ed746e3 | 2007-02-10 01:43:32 -0800 | [diff] [blame] | 651 | 	if (!error) | 
| Rafael J. Wysocki | a634cc1 | 2007-07-19 01:47:30 -0700 | [diff] [blame] | 652 | 		hibernation_restore(flags & SF_PLATFORM_MODE); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 |  | 
| Rafael J. Wysocki | ed746e3 | 2007-02-10 01:43:32 -0800 | [diff] [blame] | 654 | 	printk(KERN_ERR "PM: Restore failed, recovering.\n"); | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 655 | 	swsusp_free(); | 
| Rafael J. Wysocki | 5a0a2f3 | 2008-01-11 01:25:21 +0100 | [diff] [blame] | 656 | 	thaw_processes(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 |  Done: | 
| Rafael J. Wysocki | 74dfd66 | 2007-05-06 14:50:43 -0700 | [diff] [blame] | 658 | 	free_basic_memory_bitmaps(); | 
| Rafael J. Wysocki | 0709db6 | 2007-05-06 14:50:45 -0700 | [diff] [blame] | 659 |  Finish: | 
| Alan Stern | c3e94d8 | 2007-11-19 23:38:25 +0100 | [diff] [blame] | 660 | 	pm_notifier_call_chain(PM_POST_RESTORE); | 
| Rafael J. Wysocki | 5a0a2f3 | 2008-01-11 01:25:21 +0100 | [diff] [blame] | 661 | 	pm_restore_console(); | 
| Rafael J. Wysocki | 0709db6 | 2007-05-06 14:50:45 -0700 | [diff] [blame] | 662 | 	atomic_inc(&snapshot_device_available); | 
| Shaohua Li | dd5d666 | 2005-09-03 15:57:04 -0700 | [diff] [blame] | 663 | 	/* For success case, the suspend path will release the lock */ | 
| Rafael J. Wysocki | 74dfd66 | 2007-05-06 14:50:43 -0700 | [diff] [blame] | 664 |  Unlock: | 
| Stephen Hemminger | a6d7098 | 2006-12-06 20:34:35 -0800 | [diff] [blame] | 665 | 	mutex_unlock(&pm_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | 	pr_debug("PM: Resume from disk failed.\n"); | 
| Rafael J. Wysocki | 7777fab | 2007-07-19 01:47:29 -0700 | [diff] [blame] | 667 | 	return error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | } | 
 | 669 |  | 
 | 670 | late_initcall(software_resume); | 
 | 671 |  | 
 | 672 |  | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 673 | static const char * const hibernation_modes[] = { | 
 | 674 | 	[HIBERNATION_PLATFORM]	= "platform", | 
 | 675 | 	[HIBERNATION_SHUTDOWN]	= "shutdown", | 
 | 676 | 	[HIBERNATION_REBOOT]	= "reboot", | 
 | 677 | 	[HIBERNATION_TEST]	= "test", | 
 | 678 | 	[HIBERNATION_TESTPROC]	= "testproc", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | }; | 
 | 680 |  | 
 | 681 | /** | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 682 |  *	disk - Control hibernation mode | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 |  * | 
| Johannes Berg | 11d77d0 | 2007-04-30 15:09:53 -0700 | [diff] [blame] | 684 |  *	Suspend-to-disk can be handled in several ways. We have a few options | 
 | 685 |  *	for putting the system to sleep - using the platform driver (e.g. ACPI | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 686 |  *	or other hibernation_ops), powering off the system or rebooting the | 
 | 687 |  *	system (for testing) as well as the two test modes. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 |  * | 
| Johannes Berg | 11d77d0 | 2007-04-30 15:09:53 -0700 | [diff] [blame] | 689 |  *	The system can support 'platform', and that is known a priori (and | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 690 |  *	encoded by the presence of hibernation_ops). However, the user may | 
 | 691 |  *	choose 'shutdown' or 'reboot' as alternatives, as well as one fo the | 
 | 692 |  *	test modes, 'test' or 'testproc'. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 |  * | 
 | 694 |  *	show() will display what the mode is currently set to. | 
 | 695 |  *	store() will accept one of | 
 | 696 |  * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 |  *	'platform' | 
 | 698 |  *	'shutdown' | 
 | 699 |  *	'reboot' | 
| Johannes Berg | 11d77d0 | 2007-04-30 15:09:53 -0700 | [diff] [blame] | 700 |  *	'test' | 
 | 701 |  *	'testproc' | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 |  * | 
| Johannes Berg | 11d77d0 | 2007-04-30 15:09:53 -0700 | [diff] [blame] | 703 |  *	It will only change to 'platform' if the system | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 704 |  *	supports it (as determined by having hibernation_ops). | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 |  */ | 
 | 706 |  | 
| Kay Sievers | 386f275 | 2007-11-02 13:47:53 +0100 | [diff] [blame] | 707 | static ssize_t disk_show(struct kobject *kobj, struct kobj_attribute *attr, | 
 | 708 | 			 char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | { | 
| Johannes Berg | f0ced9b | 2007-05-06 14:50:50 -0700 | [diff] [blame] | 710 | 	int i; | 
 | 711 | 	char *start = buf; | 
 | 712 |  | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 713 | 	for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) { | 
 | 714 | 		if (!hibernation_modes[i]) | 
| Johannes Berg | f0ced9b | 2007-05-06 14:50:50 -0700 | [diff] [blame] | 715 | 			continue; | 
 | 716 | 		switch (i) { | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 717 | 		case HIBERNATION_SHUTDOWN: | 
 | 718 | 		case HIBERNATION_REBOOT: | 
 | 719 | 		case HIBERNATION_TEST: | 
 | 720 | 		case HIBERNATION_TESTPROC: | 
| Johannes Berg | f0ced9b | 2007-05-06 14:50:50 -0700 | [diff] [blame] | 721 | 			break; | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 722 | 		case HIBERNATION_PLATFORM: | 
 | 723 | 			if (hibernation_ops) | 
| Johannes Berg | f0ced9b | 2007-05-06 14:50:50 -0700 | [diff] [blame] | 724 | 				break; | 
 | 725 | 			/* not a valid mode, continue with loop */ | 
 | 726 | 			continue; | 
 | 727 | 		} | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 728 | 		if (i == hibernation_mode) | 
 | 729 | 			buf += sprintf(buf, "[%s] ", hibernation_modes[i]); | 
| Johannes Berg | f0ced9b | 2007-05-06 14:50:50 -0700 | [diff] [blame] | 730 | 		else | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 731 | 			buf += sprintf(buf, "%s ", hibernation_modes[i]); | 
| Johannes Berg | f0ced9b | 2007-05-06 14:50:50 -0700 | [diff] [blame] | 732 | 	} | 
 | 733 | 	buf += sprintf(buf, "\n"); | 
 | 734 | 	return buf-start; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | } | 
 | 736 |  | 
 | 737 |  | 
| Kay Sievers | 386f275 | 2007-11-02 13:47:53 +0100 | [diff] [blame] | 738 | static ssize_t disk_store(struct kobject *kobj, struct kobj_attribute *attr, | 
 | 739 | 			  const char *buf, size_t n) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | { | 
 | 741 | 	int error = 0; | 
 | 742 | 	int i; | 
 | 743 | 	int len; | 
 | 744 | 	char *p; | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 745 | 	int mode = HIBERNATION_INVALID; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 |  | 
 | 747 | 	p = memchr(buf, '\n', n); | 
 | 748 | 	len = p ? p - buf : n; | 
 | 749 |  | 
| Stephen Hemminger | a6d7098 | 2006-12-06 20:34:35 -0800 | [diff] [blame] | 750 | 	mutex_lock(&pm_mutex); | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 751 | 	for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) { | 
| Rafael J. Wysocki | 8d98a69 | 2007-05-16 22:11:19 -0700 | [diff] [blame] | 752 | 		if (len == strlen(hibernation_modes[i]) | 
 | 753 | 		    && !strncmp(buf, hibernation_modes[i], len)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | 			mode = i; | 
 | 755 | 			break; | 
 | 756 | 		} | 
 | 757 | 	} | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 758 | 	if (mode != HIBERNATION_INVALID) { | 
| Johannes Berg | fe0c935 | 2007-04-30 15:09:51 -0700 | [diff] [blame] | 759 | 		switch (mode) { | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 760 | 		case HIBERNATION_SHUTDOWN: | 
 | 761 | 		case HIBERNATION_REBOOT: | 
 | 762 | 		case HIBERNATION_TEST: | 
 | 763 | 		case HIBERNATION_TESTPROC: | 
 | 764 | 			hibernation_mode = mode; | 
| Johannes Berg | fe0c935 | 2007-04-30 15:09:51 -0700 | [diff] [blame] | 765 | 			break; | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 766 | 		case HIBERNATION_PLATFORM: | 
 | 767 | 			if (hibernation_ops) | 
 | 768 | 				hibernation_mode = mode; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | 			else | 
 | 770 | 				error = -EINVAL; | 
 | 771 | 		} | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 772 | 	} else | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | 		error = -EINVAL; | 
 | 774 |  | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 775 | 	if (!error) | 
| Rafael J. Wysocki | 2397672 | 2007-12-08 02:09:43 +0100 | [diff] [blame] | 776 | 		pr_debug("PM: Hibernation mode set to '%s'\n", | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 777 | 			 hibernation_modes[mode]); | 
| Stephen Hemminger | a6d7098 | 2006-12-06 20:34:35 -0800 | [diff] [blame] | 778 | 	mutex_unlock(&pm_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | 	return error ? error : n; | 
 | 780 | } | 
 | 781 |  | 
 | 782 | power_attr(disk); | 
 | 783 |  | 
| Kay Sievers | 386f275 | 2007-11-02 13:47:53 +0100 | [diff] [blame] | 784 | static ssize_t resume_show(struct kobject *kobj, struct kobj_attribute *attr, | 
 | 785 | 			   char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | { | 
 | 787 | 	return sprintf(buf,"%d:%d\n", MAJOR(swsusp_resume_device), | 
 | 788 | 		       MINOR(swsusp_resume_device)); | 
 | 789 | } | 
 | 790 |  | 
| Kay Sievers | 386f275 | 2007-11-02 13:47:53 +0100 | [diff] [blame] | 791 | static ssize_t resume_store(struct kobject *kobj, struct kobj_attribute *attr, | 
 | 792 | 			    const char *buf, size_t n) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | 	unsigned int maj, min; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | 	dev_t res; | 
| Andrew Morton | a576219 | 2006-01-06 00:09:50 -0800 | [diff] [blame] | 796 | 	int ret = -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 |  | 
| Andrew Morton | a576219 | 2006-01-06 00:09:50 -0800 | [diff] [blame] | 798 | 	if (sscanf(buf, "%u:%u", &maj, &min) != 2) | 
 | 799 | 		goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 |  | 
| Andrew Morton | a576219 | 2006-01-06 00:09:50 -0800 | [diff] [blame] | 801 | 	res = MKDEV(maj,min); | 
 | 802 | 	if (maj != MAJOR(res) || min != MINOR(res)) | 
 | 803 | 		goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 |  | 
| Stephen Hemminger | a6d7098 | 2006-12-06 20:34:35 -0800 | [diff] [blame] | 805 | 	mutex_lock(&pm_mutex); | 
| Andrew Morton | a576219 | 2006-01-06 00:09:50 -0800 | [diff] [blame] | 806 | 	swsusp_resume_device = res; | 
| Stephen Hemminger | a6d7098 | 2006-12-06 20:34:35 -0800 | [diff] [blame] | 807 | 	mutex_unlock(&pm_mutex); | 
| Rafael J. Wysocki | 2397672 | 2007-12-08 02:09:43 +0100 | [diff] [blame] | 808 | 	printk(KERN_INFO "PM: Starting manual resume from disk\n"); | 
| Andrew Morton | a576219 | 2006-01-06 00:09:50 -0800 | [diff] [blame] | 809 | 	noresume = 0; | 
 | 810 | 	software_resume(); | 
 | 811 | 	ret = n; | 
| Rafael J. Wysocki | 59a4933 | 2006-12-06 20:34:44 -0800 | [diff] [blame] | 812 |  out: | 
| Andrew Morton | a576219 | 2006-01-06 00:09:50 -0800 | [diff] [blame] | 813 | 	return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | } | 
 | 815 |  | 
 | 816 | power_attr(resume); | 
 | 817 |  | 
| Kay Sievers | 386f275 | 2007-11-02 13:47:53 +0100 | [diff] [blame] | 818 | static ssize_t image_size_show(struct kobject *kobj, struct kobj_attribute *attr, | 
 | 819 | 			       char *buf) | 
| Rafael J. Wysocki | ca0aec0 | 2006-01-06 00:15:56 -0800 | [diff] [blame] | 820 | { | 
| Rafael J. Wysocki | 853609b | 2006-02-01 03:05:07 -0800 | [diff] [blame] | 821 | 	return sprintf(buf, "%lu\n", image_size); | 
| Rafael J. Wysocki | ca0aec0 | 2006-01-06 00:15:56 -0800 | [diff] [blame] | 822 | } | 
 | 823 |  | 
| Kay Sievers | 386f275 | 2007-11-02 13:47:53 +0100 | [diff] [blame] | 824 | static ssize_t image_size_store(struct kobject *kobj, struct kobj_attribute *attr, | 
 | 825 | 				const char *buf, size_t n) | 
| Rafael J. Wysocki | ca0aec0 | 2006-01-06 00:15:56 -0800 | [diff] [blame] | 826 | { | 
| Rafael J. Wysocki | 853609b | 2006-02-01 03:05:07 -0800 | [diff] [blame] | 827 | 	unsigned long size; | 
| Rafael J. Wysocki | ca0aec0 | 2006-01-06 00:15:56 -0800 | [diff] [blame] | 828 |  | 
| Rafael J. Wysocki | 853609b | 2006-02-01 03:05:07 -0800 | [diff] [blame] | 829 | 	if (sscanf(buf, "%lu", &size) == 1) { | 
| Rafael J. Wysocki | ca0aec0 | 2006-01-06 00:15:56 -0800 | [diff] [blame] | 830 | 		image_size = size; | 
 | 831 | 		return n; | 
 | 832 | 	} | 
 | 833 |  | 
 | 834 | 	return -EINVAL; | 
 | 835 | } | 
 | 836 |  | 
 | 837 | power_attr(image_size); | 
 | 838 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | static struct attribute * g[] = { | 
 | 840 | 	&disk_attr.attr, | 
 | 841 | 	&resume_attr.attr, | 
| Rafael J. Wysocki | ca0aec0 | 2006-01-06 00:15:56 -0800 | [diff] [blame] | 842 | 	&image_size_attr.attr, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | 	NULL, | 
 | 844 | }; | 
 | 845 |  | 
 | 846 |  | 
 | 847 | static struct attribute_group attr_group = { | 
 | 848 | 	.attrs = g, | 
 | 849 | }; | 
 | 850 |  | 
 | 851 |  | 
 | 852 | static int __init pm_disk_init(void) | 
 | 853 | { | 
| Greg Kroah-Hartman | d76e15f | 2007-11-27 11:28:26 -0800 | [diff] [blame] | 854 | 	return sysfs_create_group(power_kobj, &attr_group); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | } | 
 | 856 |  | 
 | 857 | core_initcall(pm_disk_init); | 
 | 858 |  | 
 | 859 |  | 
 | 860 | static int __init resume_setup(char *str) | 
 | 861 | { | 
 | 862 | 	if (noresume) | 
 | 863 | 		return 1; | 
 | 864 |  | 
 | 865 | 	strncpy( resume_file, str, 255 ); | 
 | 866 | 	return 1; | 
 | 867 | } | 
 | 868 |  | 
| Rafael J. Wysocki | 9a154d9 | 2006-12-06 20:34:12 -0800 | [diff] [blame] | 869 | static int __init resume_offset_setup(char *str) | 
 | 870 | { | 
 | 871 | 	unsigned long long offset; | 
 | 872 |  | 
 | 873 | 	if (noresume) | 
 | 874 | 		return 1; | 
 | 875 |  | 
 | 876 | 	if (sscanf(str, "%llu", &offset) == 1) | 
 | 877 | 		swsusp_resume_block = offset; | 
 | 878 |  | 
 | 879 | 	return 1; | 
 | 880 | } | 
 | 881 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | static int __init noresume_setup(char *str) | 
 | 883 | { | 
 | 884 | 	noresume = 1; | 
 | 885 | 	return 1; | 
 | 886 | } | 
 | 887 |  | 
 | 888 | __setup("noresume", noresume_setup); | 
| Rafael J. Wysocki | 9a154d9 | 2006-12-06 20:34:12 -0800 | [diff] [blame] | 889 | __setup("resume_offset=", resume_offset_setup); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | __setup("resume=", resume_setup); |