| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * kernel/power/main.c - PM subsystem core functionality. | 
 | 3 |  * | 
 | 4 |  * Copyright (c) 2003 Patrick Mochel | 
 | 5 |  * Copyright (c) 2003 Open Source Development Lab | 
 | 6 |  *  | 
 | 7 |  * This file is released under the GPLv2 | 
 | 8 |  * | 
 | 9 |  */ | 
 | 10 |  | 
| Ralf Baechle | 4cf3034 | 2006-12-06 20:36:06 -0800 | [diff] [blame] | 11 | #include <linux/module.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/suspend.h> | 
 | 13 | #include <linux/kobject.h> | 
 | 14 | #include <linux/string.h> | 
 | 15 | #include <linux/delay.h> | 
 | 16 | #include <linux/errno.h> | 
| Rafael J. Wysocki | 1bfcf13 | 2008-10-15 22:01:21 -0700 | [diff] [blame] | 17 | #include <linux/kmod.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/init.h> | 
| Andrew Morton | 6cc0719 | 2006-06-22 14:47:18 -0700 | [diff] [blame] | 19 | #include <linux/console.h> | 
| Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 20 | #include <linux/cpu.h> | 
| Rafael J. Wysocki | c5c6ba4 | 2006-09-25 23:32:58 -0700 | [diff] [blame] | 21 | #include <linux/resume-trace.h> | 
| Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 22 | #include <linux/freezer.h> | 
| Christoph Lameter | 9617729 | 2007-02-10 01:43:03 -0800 | [diff] [blame] | 23 | #include <linux/vmstat.h> | 
| Rafael J. Wysocki | 232b143 | 2007-10-18 03:04:44 -0700 | [diff] [blame] | 24 | #include <linux/syscalls.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 |  | 
 | 26 | #include "power.h" | 
 | 27 |  | 
| Stephen Hemminger | a6d7098 | 2006-12-06 20:34:35 -0800 | [diff] [blame] | 28 | DEFINE_MUTEX(pm_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 |  | 
| Len Brown | 9f9adec | 2007-12-13 17:38:03 -0500 | [diff] [blame] | 30 | unsigned int pm_flags; | 
 | 31 | EXPORT_SYMBOL(pm_flags); | 
 | 32 |  | 
| Alan Stern | 8252575 | 2007-11-19 23:49:18 +0100 | [diff] [blame] | 33 | #ifdef CONFIG_PM_SLEEP | 
 | 34 |  | 
 | 35 | /* Routines for PM-transition notifications */ | 
 | 36 |  | 
 | 37 | static BLOCKING_NOTIFIER_HEAD(pm_chain_head); | 
 | 38 |  | 
 | 39 | int register_pm_notifier(struct notifier_block *nb) | 
 | 40 | { | 
 | 41 | 	return blocking_notifier_chain_register(&pm_chain_head, nb); | 
 | 42 | } | 
 | 43 | EXPORT_SYMBOL_GPL(register_pm_notifier); | 
 | 44 |  | 
 | 45 | int unregister_pm_notifier(struct notifier_block *nb) | 
 | 46 | { | 
 | 47 | 	return blocking_notifier_chain_unregister(&pm_chain_head, nb); | 
 | 48 | } | 
 | 49 | EXPORT_SYMBOL_GPL(unregister_pm_notifier); | 
 | 50 |  | 
 | 51 | int pm_notifier_call_chain(unsigned long val) | 
 | 52 | { | 
 | 53 | 	return (blocking_notifier_call_chain(&pm_chain_head, val, NULL) | 
 | 54 | 			== NOTIFY_BAD) ? -EINVAL : 0; | 
 | 55 | } | 
 | 56 |  | 
| Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 57 | #ifdef CONFIG_PM_DEBUG | 
 | 58 | int pm_test_level = TEST_NONE; | 
 | 59 |  | 
| Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 60 | static const char * const pm_tests[__TEST_AFTER_LAST] = { | 
 | 61 | 	[TEST_NONE] = "none", | 
 | 62 | 	[TEST_CORE] = "core", | 
 | 63 | 	[TEST_CPUS] = "processors", | 
 | 64 | 	[TEST_PLATFORM] = "platform", | 
 | 65 | 	[TEST_DEVICES] = "devices", | 
 | 66 | 	[TEST_FREEZER] = "freezer", | 
 | 67 | }; | 
 | 68 |  | 
| Rafael J. Wysocki | 039a75c | 2008-01-29 00:29:06 +0100 | [diff] [blame] | 69 | static ssize_t pm_test_show(struct kobject *kobj, struct kobj_attribute *attr, | 
 | 70 | 				char *buf) | 
| Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 71 | { | 
 | 72 | 	char *s = buf; | 
 | 73 | 	int level; | 
 | 74 |  | 
 | 75 | 	for (level = TEST_FIRST; level <= TEST_MAX; level++) | 
 | 76 | 		if (pm_tests[level]) { | 
 | 77 | 			if (level == pm_test_level) | 
 | 78 | 				s += sprintf(s, "[%s] ", pm_tests[level]); | 
 | 79 | 			else | 
 | 80 | 				s += sprintf(s, "%s ", pm_tests[level]); | 
 | 81 | 		} | 
 | 82 |  | 
 | 83 | 	if (s != buf) | 
 | 84 | 		/* convert the last space to a newline */ | 
 | 85 | 		*(s-1) = '\n'; | 
 | 86 |  | 
 | 87 | 	return (s - buf); | 
 | 88 | } | 
 | 89 |  | 
| Rafael J. Wysocki | 039a75c | 2008-01-29 00:29:06 +0100 | [diff] [blame] | 90 | static ssize_t pm_test_store(struct kobject *kobj, struct kobj_attribute *attr, | 
 | 91 | 				const char *buf, size_t n) | 
| Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 92 | { | 
 | 93 | 	const char * const *s; | 
 | 94 | 	int level; | 
 | 95 | 	char *p; | 
 | 96 | 	int len; | 
 | 97 | 	int error = -EINVAL; | 
 | 98 |  | 
 | 99 | 	p = memchr(buf, '\n', n); | 
 | 100 | 	len = p ? p - buf : n; | 
 | 101 |  | 
 | 102 | 	mutex_lock(&pm_mutex); | 
 | 103 |  | 
 | 104 | 	level = TEST_FIRST; | 
 | 105 | 	for (s = &pm_tests[level]; level <= TEST_MAX; s++, level++) | 
 | 106 | 		if (*s && len == strlen(*s) && !strncmp(buf, *s, len)) { | 
 | 107 | 			pm_test_level = level; | 
 | 108 | 			error = 0; | 
 | 109 | 			break; | 
 | 110 | 		} | 
 | 111 |  | 
 | 112 | 	mutex_unlock(&pm_mutex); | 
 | 113 |  | 
 | 114 | 	return error ? error : n; | 
 | 115 | } | 
 | 116 |  | 
 | 117 | power_attr(pm_test); | 
| Rafael J. Wysocki | 091d71e | 2009-01-17 00:10:45 +0100 | [diff] [blame] | 118 | #endif /* CONFIG_PM_DEBUG */ | 
| Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 119 |  | 
| Rafael J. Wysocki | 7671b8a | 2007-12-14 01:07:13 +0100 | [diff] [blame] | 120 | #endif /* CONFIG_PM_SLEEP */ | 
| Rafael J. Wysocki | 039a75c | 2008-01-29 00:29:06 +0100 | [diff] [blame] | 121 |  | 
| Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 122 | #ifdef CONFIG_SUSPEND | 
 | 123 |  | 
| Rafael J. Wysocki | 091d71e | 2009-01-17 00:10:45 +0100 | [diff] [blame] | 124 | static int suspend_test(int level) | 
 | 125 | { | 
 | 126 | #ifdef CONFIG_PM_DEBUG | 
 | 127 | 	if (pm_test_level == level) { | 
 | 128 | 		printk(KERN_INFO "suspend debug: Waiting for 5 seconds.\n"); | 
 | 129 | 		mdelay(5000); | 
 | 130 | 		return 1; | 
 | 131 | 	} | 
 | 132 | #endif /* !CONFIG_PM_DEBUG */ | 
 | 133 | 	return 0; | 
 | 134 | } | 
 | 135 |  | 
| David Brownell | 77437fd | 2008-07-23 21:28:33 -0700 | [diff] [blame] | 136 | #ifdef CONFIG_PM_TEST_SUSPEND | 
 | 137 |  | 
 | 138 | /* | 
 | 139 |  * We test the system suspend code by setting an RTC wakealarm a short | 
 | 140 |  * time in the future, then suspending.  Suspending the devices won't | 
 | 141 |  * normally take long ... some systems only need a few milliseconds. | 
 | 142 |  * | 
 | 143 |  * The time it takes is system-specific though, so when we test this | 
 | 144 |  * during system bootup we allow a LOT of time. | 
 | 145 |  */ | 
 | 146 | #define TEST_SUSPEND_SECONDS	5 | 
 | 147 |  | 
 | 148 | static unsigned long suspend_test_start_time; | 
 | 149 |  | 
 | 150 | static void suspend_test_start(void) | 
 | 151 | { | 
 | 152 | 	/* FIXME Use better timebase than "jiffies", ideally a clocksource. | 
 | 153 | 	 * What we want is a hardware counter that will work correctly even | 
 | 154 | 	 * during the irqs-are-off stages of the suspend/resume cycle... | 
 | 155 | 	 */ | 
 | 156 | 	suspend_test_start_time = jiffies; | 
 | 157 | } | 
 | 158 |  | 
 | 159 | static void suspend_test_finish(const char *label) | 
 | 160 | { | 
 | 161 | 	long nj = jiffies - suspend_test_start_time; | 
 | 162 | 	unsigned msec; | 
 | 163 |  | 
 | 164 | 	msec = jiffies_to_msecs(abs(nj)); | 
 | 165 | 	pr_info("PM: %s took %d.%03d seconds\n", label, | 
 | 166 | 			msec / 1000, msec % 1000); | 
 | 167 |  | 
 | 168 | 	/* Warning on suspend means the RTC alarm period needs to be | 
 | 169 | 	 * larger -- the system was sooo slooowwww to suspend that the | 
 | 170 | 	 * alarm (should have) fired before the system went to sleep! | 
 | 171 | 	 * | 
 | 172 | 	 * Warning on either suspend or resume also means the system | 
 | 173 | 	 * has some performance issues.  The stack dump of a WARN_ON | 
 | 174 | 	 * is more likely to get the right attention than a printk... | 
 | 175 | 	 */ | 
| Arjan van de Ven | a6a0c4c | 2008-11-18 06:56:51 -0800 | [diff] [blame] | 176 | 	WARN(msec > (TEST_SUSPEND_SECONDS * 1000), "Component: %s\n", label); | 
| David Brownell | 77437fd | 2008-07-23 21:28:33 -0700 | [diff] [blame] | 177 | } | 
 | 178 |  | 
 | 179 | #else | 
 | 180 |  | 
 | 181 | static void suspend_test_start(void) | 
 | 182 | { | 
 | 183 | } | 
 | 184 |  | 
 | 185 | static void suspend_test_finish(const char *label) | 
 | 186 | { | 
 | 187 | } | 
 | 188 |  | 
 | 189 | #endif | 
 | 190 |  | 
| Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 191 | /* This is just an arbitrary number */ | 
 | 192 | #define FREE_PAGE_NUMBER (100) | 
 | 193 |  | 
| Rafael J. Wysocki | f242d91 | 2007-10-18 03:04:41 -0700 | [diff] [blame] | 194 | static struct platform_suspend_ops *suspend_ops; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 |  | 
 | 196 | /** | 
| Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 197 |  *	suspend_set_ops - Set the global suspend method table. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 |  *	@ops:	Pointer to ops structure. | 
 | 199 |  */ | 
 | 200 |  | 
| Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 201 | void suspend_set_ops(struct platform_suspend_ops *ops) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | { | 
| Stephen Hemminger | a6d7098 | 2006-12-06 20:34:35 -0800 | [diff] [blame] | 203 | 	mutex_lock(&pm_mutex); | 
| Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 204 | 	suspend_ops = ops; | 
| Stephen Hemminger | a6d7098 | 2006-12-06 20:34:35 -0800 | [diff] [blame] | 205 | 	mutex_unlock(&pm_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | } | 
 | 207 |  | 
| Johannes Berg | e8c9c50 | 2007-04-30 15:09:54 -0700 | [diff] [blame] | 208 | /** | 
| Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 209 |  * suspend_valid_only_mem - generic memory-only valid callback | 
| Johannes Berg | e8c9c50 | 2007-04-30 15:09:54 -0700 | [diff] [blame] | 210 |  * | 
| Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 211 |  * Platform drivers that implement mem suspend only and only need | 
| Johannes Berg | e8c9c50 | 2007-04-30 15:09:54 -0700 | [diff] [blame] | 212 |  * to check for that in their .valid callback can use this instead | 
 | 213 |  * of rolling their own .valid callback. | 
 | 214 |  */ | 
| Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 215 | int suspend_valid_only_mem(suspend_state_t state) | 
| Johannes Berg | e8c9c50 | 2007-04-30 15:09:54 -0700 | [diff] [blame] | 216 | { | 
 | 217 | 	return state == PM_SUSPEND_MEM; | 
 | 218 | } | 
 | 219 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | /** | 
 | 221 |  *	suspend_prepare - Do prep work before entering low-power state. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 |  * | 
| Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 223 |  *	This is common code that is called for each state that we're entering. | 
 | 224 |  *	Run suspend notifiers, allocate a console and stop all processes. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 |  */ | 
| Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 226 | static int suspend_prepare(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | { | 
| Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 228 | 	int error; | 
| David Shaohua Li | 5ae947e | 2005-03-18 16:27:13 -0500 | [diff] [blame] | 229 | 	unsigned int free_pages; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 |  | 
| Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 231 | 	if (!suspend_ops || !suspend_ops->enter) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | 		return -EPERM; | 
 | 233 |  | 
| Johannes Berg | af258f5 | 2008-01-11 01:22:23 +0100 | [diff] [blame] | 234 | 	pm_prepare_console(); | 
 | 235 |  | 
| Rafael J. Wysocki | b10d911 | 2007-07-19 01:47:36 -0700 | [diff] [blame] | 236 | 	error = pm_notifier_call_chain(PM_SUSPEND_PREPARE); | 
 | 237 | 	if (error) | 
 | 238 | 		goto Finish; | 
 | 239 |  | 
| Rafael J. Wysocki | 1bfcf13 | 2008-10-15 22:01:21 -0700 | [diff] [blame] | 240 | 	error = usermodehelper_disable(); | 
 | 241 | 	if (error) | 
 | 242 | 		goto Finish; | 
 | 243 |  | 
| Johannes Berg | b28f508 | 2008-01-15 23:17:00 -0500 | [diff] [blame] | 244 | 	if (suspend_freeze_processes()) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | 		error = -EAGAIN; | 
 | 246 | 		goto Thaw; | 
 | 247 | 	} | 
 | 248 |  | 
| Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 249 | 	free_pages = global_page_state(NR_FREE_PAGES); | 
 | 250 | 	if (free_pages < FREE_PAGE_NUMBER) { | 
| David Shaohua Li | 5ae947e | 2005-03-18 16:27:13 -0500 | [diff] [blame] | 251 | 		pr_debug("PM: free some memory\n"); | 
 | 252 | 		shrink_all_memory(FREE_PAGE_NUMBER - free_pages); | 
 | 253 | 		if (nr_free_pages() < FREE_PAGE_NUMBER) { | 
 | 254 | 			error = -ENOMEM; | 
 | 255 | 			printk(KERN_ERR "PM: No enough memory\n"); | 
| David Shaohua Li | 5ae947e | 2005-03-18 16:27:13 -0500 | [diff] [blame] | 256 | 		} | 
 | 257 | 	} | 
| Rafael J. Wysocki | e3c7db62 | 2007-02-10 01:43:31 -0800 | [diff] [blame] | 258 | 	if (!error) | 
 | 259 | 		return 0; | 
 | 260 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 |  Thaw: | 
| Johannes Berg | b28f508 | 2008-01-15 23:17:00 -0500 | [diff] [blame] | 262 | 	suspend_thaw_processes(); | 
| Rafael J. Wysocki | 1bfcf13 | 2008-10-15 22:01:21 -0700 | [diff] [blame] | 263 | 	usermodehelper_enable(); | 
| Rafael J. Wysocki | b10d911 | 2007-07-19 01:47:36 -0700 | [diff] [blame] | 264 |  Finish: | 
 | 265 | 	pm_notifier_call_chain(PM_POST_SUSPEND); | 
| Johannes Berg | af258f5 | 2008-01-11 01:22:23 +0100 | [diff] [blame] | 266 | 	pm_restore_console(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | 	return error; | 
 | 268 | } | 
 | 269 |  | 
| Johannes Berg | a53c46d | 2007-04-26 11:43:58 +0200 | [diff] [blame] | 270 | /* default implementation */ | 
 | 271 | void __attribute__ ((weak)) arch_suspend_disable_irqs(void) | 
 | 272 | { | 
 | 273 | 	local_irq_disable(); | 
 | 274 | } | 
 | 275 |  | 
 | 276 | /* default implementation */ | 
 | 277 | void __attribute__ ((weak)) arch_suspend_enable_irqs(void) | 
 | 278 | { | 
 | 279 | 	local_irq_enable(); | 
 | 280 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 |  | 
| Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 282 | /** | 
 | 283 |  *	suspend_enter - enter the desired system sleep state. | 
 | 284 |  *	@state:		state to enter | 
 | 285 |  * | 
 | 286 |  *	This function should be called after devices have been suspended. | 
 | 287 |  */ | 
| Adrian Bunk | a065c86 | 2007-10-18 03:04:37 -0700 | [diff] [blame] | 288 | static int suspend_enter(suspend_state_t state) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | { | 
| Rafael J. Wysocki | 2ed8d2b | 2009-03-16 22:34:06 +0100 | [diff] [blame] | 290 | 	int error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 |  | 
| Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 292 | 	device_pm_lock(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 |  | 
| Rafael J. Wysocki | 6a7c7ea | 2009-04-19 20:08:42 +0200 | [diff] [blame] | 294 | 	if (suspend_ops->prepare) { | 
 | 295 | 		error = suspend_ops->prepare(); | 
 | 296 | 		if (error) | 
 | 297 | 			goto Done; | 
 | 298 | 	} | 
 | 299 |  | 
| Rafael J. Wysocki | 2ed8d2b | 2009-03-16 22:34:06 +0100 | [diff] [blame] | 300 | 	error = device_power_down(PMSG_SUSPEND); | 
 | 301 | 	if (error) { | 
| Rafael J. Wysocki | 465d2b4 | 2007-12-08 02:08:38 +0100 | [diff] [blame] | 302 | 		printk(KERN_ERR "PM: Some devices failed to power down\n"); | 
| Rafael J. Wysocki | 6a7c7ea | 2009-04-19 20:08:42 +0200 | [diff] [blame] | 303 | 		goto Platfrom_finish; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | 	} | 
| Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 305 |  | 
| Rafael J. Wysocki | 6a7c7ea | 2009-04-19 20:08:42 +0200 | [diff] [blame] | 306 | 	if (suspend_ops->prepare_late) { | 
 | 307 | 		error = suspend_ops->prepare_late(); | 
| Rafael J. Wysocki | 900af0d | 2009-03-16 22:34:15 +0100 | [diff] [blame] | 308 | 		if (error) | 
 | 309 | 			goto Power_up_devices; | 
 | 310 | 	} | 
 | 311 |  | 
 | 312 | 	if (suspend_test(TEST_PLATFORM)) | 
| Rafael J. Wysocki | 6a7c7ea | 2009-04-19 20:08:42 +0200 | [diff] [blame] | 313 | 		goto Platform_wake; | 
| Rafael J. Wysocki | 900af0d | 2009-03-16 22:34:15 +0100 | [diff] [blame] | 314 |  | 
 | 315 | 	error = disable_nonboot_cpus(); | 
 | 316 | 	if (error || suspend_test(TEST_CPUS)) | 
 | 317 | 		goto Enable_cpus; | 
 | 318 |  | 
| Rafael J. Wysocki | 2ed8d2b | 2009-03-16 22:34:06 +0100 | [diff] [blame] | 319 | 	arch_suspend_disable_irqs(); | 
 | 320 | 	BUG_ON(!irqs_disabled()); | 
 | 321 |  | 
| Rafael J. Wysocki | 770824b | 2009-02-22 18:38:50 +0100 | [diff] [blame] | 322 | 	error = sysdev_suspend(PMSG_SUSPEND); | 
 | 323 | 	if (!error) { | 
 | 324 | 		if (!suspend_test(TEST_CORE)) | 
 | 325 | 			error = suspend_ops->enter(state); | 
 | 326 | 		sysdev_resume(); | 
 | 327 | 	} | 
| Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 328 |  | 
| Johannes Berg | a53c46d | 2007-04-26 11:43:58 +0200 | [diff] [blame] | 329 | 	arch_suspend_enable_irqs(); | 
 | 330 | 	BUG_ON(irqs_disabled()); | 
| Rafael J. Wysocki | 2ed8d2b | 2009-03-16 22:34:06 +0100 | [diff] [blame] | 331 |  | 
| Rafael J. Wysocki | 900af0d | 2009-03-16 22:34:15 +0100 | [diff] [blame] | 332 |  Enable_cpus: | 
 | 333 | 	enable_nonboot_cpus(); | 
 | 334 |  | 
| Rafael J. Wysocki | 6a7c7ea | 2009-04-19 20:08:42 +0200 | [diff] [blame] | 335 |  Platform_wake: | 
 | 336 | 	if (suspend_ops->wake) | 
 | 337 | 		suspend_ops->wake(); | 
| Rafael J. Wysocki | 900af0d | 2009-03-16 22:34:15 +0100 | [diff] [blame] | 338 |  | 
 | 339 |  Power_up_devices: | 
| Rafael J. Wysocki | 2ed8d2b | 2009-03-16 22:34:06 +0100 | [diff] [blame] | 340 | 	device_power_up(PMSG_RESUME); | 
 | 341 |  | 
| Rafael J. Wysocki | 6a7c7ea | 2009-04-19 20:08:42 +0200 | [diff] [blame] | 342 |  Platfrom_finish: | 
 | 343 | 	if (suspend_ops->finish) | 
 | 344 | 		suspend_ops->finish(); | 
 | 345 |  | 
| Rafael J. Wysocki | 2ed8d2b | 2009-03-16 22:34:06 +0100 | [diff] [blame] | 346 |  Done: | 
| Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 347 | 	device_pm_unlock(); | 
| Rafael J. Wysocki | 2ed8d2b | 2009-03-16 22:34:06 +0100 | [diff] [blame] | 348 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | 	return error; | 
 | 350 | } | 
 | 351 |  | 
| Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 352 | /** | 
| Rafael J. Wysocki | 9628c0e | 2007-12-08 02:06:00 +0100 | [diff] [blame] | 353 |  *	suspend_devices_and_enter - suspend devices and enter the desired system | 
 | 354 |  *				    sleep state. | 
| Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 355 |  *	@state:		  state to enter | 
 | 356 |  */ | 
 | 357 | int suspend_devices_and_enter(suspend_state_t state) | 
 | 358 | { | 
| Ingo Molnar | cbe2f5a | 2008-11-23 10:37:12 +0100 | [diff] [blame] | 359 | 	int error; | 
| Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 360 |  | 
| Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 361 | 	if (!suspend_ops) | 
| Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 362 | 		return -ENOSYS; | 
 | 363 |  | 
| Rafael J. Wysocki | c697eec | 2008-01-08 00:04:17 +0100 | [diff] [blame] | 364 | 	if (suspend_ops->begin) { | 
 | 365 | 		error = suspend_ops->begin(state); | 
| Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 366 | 		if (error) | 
| Rafael J. Wysocki | c697eec | 2008-01-08 00:04:17 +0100 | [diff] [blame] | 367 | 			goto Close; | 
| Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 368 | 	} | 
 | 369 | 	suspend_console(); | 
| David Brownell | 77437fd | 2008-07-23 21:28:33 -0700 | [diff] [blame] | 370 | 	suspend_test_start(); | 
| Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 371 | 	error = device_suspend(PMSG_SUSPEND); | 
 | 372 | 	if (error) { | 
| Rafael J. Wysocki | 465d2b4 | 2007-12-08 02:08:38 +0100 | [diff] [blame] | 373 | 		printk(KERN_ERR "PM: Some devices failed to suspend\n"); | 
| Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 374 | 		goto Recover_platform; | 
| Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 375 | 	} | 
| David Brownell | 77437fd | 2008-07-23 21:28:33 -0700 | [diff] [blame] | 376 | 	suspend_test_finish("suspend devices"); | 
| Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 377 | 	if (suspend_test(TEST_DEVICES)) | 
| Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 378 | 		goto Recover_platform; | 
| Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 379 |  | 
| Rafael J. Wysocki | 900af0d | 2009-03-16 22:34:15 +0100 | [diff] [blame] | 380 | 	suspend_enter(state); | 
| Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 381 |  | 
| Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 382 |  Resume_devices: | 
| David Brownell | 77437fd | 2008-07-23 21:28:33 -0700 | [diff] [blame] | 383 | 	suspend_test_start(); | 
| Rafael J. Wysocki | 1eede07 | 2008-05-20 23:00:01 +0200 | [diff] [blame] | 384 | 	device_resume(PMSG_RESUME); | 
| David Brownell | 77437fd | 2008-07-23 21:28:33 -0700 | [diff] [blame] | 385 | 	suspend_test_finish("resume devices"); | 
| Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 386 | 	resume_console(); | 
| Rafael J. Wysocki | c697eec | 2008-01-08 00:04:17 +0100 | [diff] [blame] | 387 |  Close: | 
 | 388 | 	if (suspend_ops->end) | 
 | 389 | 		suspend_ops->end(); | 
| Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 390 | 	return error; | 
| Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 391 |  | 
 | 392 |  Recover_platform: | 
 | 393 | 	if (suspend_ops->recover) | 
 | 394 | 		suspend_ops->recover(); | 
 | 395 | 	goto Resume_devices; | 
| Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 396 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 |  | 
 | 398 | /** | 
 | 399 |  *	suspend_finish - Do final work before exiting suspend sequence. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 |  * | 
 | 401 |  *	Call platform code to clean up, restart processes, and free the  | 
 | 402 |  *	console that we've allocated. This is not called for suspend-to-disk. | 
 | 403 |  */ | 
| Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 404 | static void suspend_finish(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | { | 
| Johannes Berg | b28f508 | 2008-01-15 23:17:00 -0500 | [diff] [blame] | 406 | 	suspend_thaw_processes(); | 
| Rafael J. Wysocki | 1bfcf13 | 2008-10-15 22:01:21 -0700 | [diff] [blame] | 407 | 	usermodehelper_enable(); | 
| Rafael J. Wysocki | b10d911 | 2007-07-19 01:47:36 -0700 | [diff] [blame] | 408 | 	pm_notifier_call_chain(PM_POST_SUSPEND); | 
| Johannes Berg | af258f5 | 2008-01-11 01:22:23 +0100 | [diff] [blame] | 409 | 	pm_restore_console(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | } | 
 | 411 |  | 
 | 412 |  | 
 | 413 |  | 
 | 414 |  | 
| Andreas Mohr | 3b364b8 | 2006-06-25 05:47:56 -0700 | [diff] [blame] | 415 | static const char * const pm_states[PM_SUSPEND_MAX] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | 	[PM_SUSPEND_STANDBY]	= "standby", | 
 | 417 | 	[PM_SUSPEND_MEM]	= "mem", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | }; | 
 | 419 |  | 
| Pavel Machek | 123d3c1 | 2005-11-29 19:34:37 -0800 | [diff] [blame] | 420 | static inline int valid_state(suspend_state_t state) | 
 | 421 | { | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 422 | 	/* All states need lowlevel support and need to be valid | 
 | 423 | 	 * to the lowlevel implementation, no valid callback | 
| Johannes Berg | 9684e51 | 2007-04-30 15:09:55 -0700 | [diff] [blame] | 424 | 	 * implies that none are valid. */ | 
| Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 425 | 	if (!suspend_ops || !suspend_ops->valid || !suspend_ops->valid(state)) | 
| Pavel Machek | 123d3c1 | 2005-11-29 19:34:37 -0800 | [diff] [blame] | 426 | 		return 0; | 
 | 427 | 	return 1; | 
 | 428 | } | 
 | 429 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 |  | 
 | 431 | /** | 
 | 432 |  *	enter_state - Do common work of entering low-power state. | 
 | 433 |  *	@state:		pm_state structure for state we're entering. | 
 | 434 |  * | 
 | 435 |  *	Make sure we're the only ones trying to enter a sleep state. Fail | 
 | 436 |  *	if someone has beat us to it, since we don't want anything weird to | 
 | 437 |  *	happen when we wake up. | 
 | 438 |  *	Then, do the setup for suspend, enter the state, and cleaup (after | 
 | 439 |  *	we've woken up). | 
 | 440 |  */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | static int enter_state(suspend_state_t state) | 
 | 442 | { | 
 | 443 | 	int error; | 
 | 444 |  | 
| Pavel Machek | 123d3c1 | 2005-11-29 19:34:37 -0800 | [diff] [blame] | 445 | 	if (!valid_state(state)) | 
| Shaohua Li | eb9289e | 2005-10-30 15:00:01 -0800 | [diff] [blame] | 446 | 		return -ENODEV; | 
| Rafael J. Wysocki | 232b143 | 2007-10-18 03:04:44 -0700 | [diff] [blame] | 447 |  | 
| Stephen Hemminger | a6d7098 | 2006-12-06 20:34:35 -0800 | [diff] [blame] | 448 | 	if (!mutex_trylock(&pm_mutex)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | 		return -EBUSY; | 
 | 450 |  | 
| Rafael J. Wysocki | 465d2b4 | 2007-12-08 02:08:38 +0100 | [diff] [blame] | 451 | 	printk(KERN_INFO "PM: Syncing filesystems ... "); | 
| Rafael J. Wysocki | 232b143 | 2007-10-18 03:04:44 -0700 | [diff] [blame] | 452 | 	sys_sync(); | 
 | 453 | 	printk("done.\n"); | 
 | 454 |  | 
| David Brownell | 82428b6 | 2005-05-09 08:07:00 -0700 | [diff] [blame] | 455 | 	pr_debug("PM: Preparing system for %s sleep\n", pm_states[state]); | 
| Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 456 | 	error = suspend_prepare(); | 
 | 457 | 	if (error) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | 		goto Unlock; | 
 | 459 |  | 
| Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 460 | 	if (suspend_test(TEST_FREEZER)) | 
 | 461 | 		goto Finish; | 
 | 462 |  | 
| David Brownell | 82428b6 | 2005-05-09 08:07:00 -0700 | [diff] [blame] | 463 | 	pr_debug("PM: Entering %s sleep\n", pm_states[state]); | 
| Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 464 | 	error = suspend_devices_and_enter(state); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 |  | 
| Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 466 |  Finish: | 
| David Brownell | 82428b6 | 2005-05-09 08:07:00 -0700 | [diff] [blame] | 467 | 	pr_debug("PM: Finishing wakeup.\n"); | 
| Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 468 | 	suspend_finish(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 |  Unlock: | 
| Stephen Hemminger | a6d7098 | 2006-12-06 20:34:35 -0800 | [diff] [blame] | 470 | 	mutex_unlock(&pm_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | 	return error; | 
 | 472 | } | 
 | 473 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 |  | 
 | 475 | /** | 
 | 476 |  *	pm_suspend - Externally visible function for suspending system. | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 477 |  *	@state:		Enumerated value of state to enter. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 |  * | 
 | 479 |  *	Determine whether or not value is within range, get state  | 
 | 480 |  *	structure, and enter (above). | 
 | 481 |  */ | 
 | 482 |  | 
 | 483 | int pm_suspend(suspend_state_t state) | 
 | 484 | { | 
| Alexey Starikovskiy | e2a5b42 | 2005-03-18 16:20:46 -0500 | [diff] [blame] | 485 | 	if (state > PM_SUSPEND_ON && state <= PM_SUSPEND_MAX) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | 		return enter_state(state); | 
 | 487 | 	return -EINVAL; | 
 | 488 | } | 
 | 489 |  | 
| Ralf Baechle | 4cf3034 | 2006-12-06 20:36:06 -0800 | [diff] [blame] | 490 | EXPORT_SYMBOL(pm_suspend); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 |  | 
| Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 492 | #endif /* CONFIG_SUSPEND */ | 
 | 493 |  | 
| Greg Kroah-Hartman | d76e15f | 2007-11-27 11:28:26 -0800 | [diff] [blame] | 494 | struct kobject *power_kobj; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 |  | 
 | 496 | /** | 
 | 497 |  *	state - control system power state. | 
 | 498 |  * | 
 | 499 |  *	show() returns what states are supported, which is hard-coded to | 
 | 500 |  *	'standby' (Power-On Suspend), 'mem' (Suspend-to-RAM), and | 
 | 501 |  *	'disk' (Suspend-to-Disk). | 
 | 502 |  * | 
 | 503 |  *	store() accepts one of those strings, translates it into the  | 
 | 504 |  *	proper enumerated value, and initiates a suspend transition. | 
 | 505 |  */ | 
 | 506 |  | 
| Kay Sievers | 386f275 | 2007-11-02 13:47:53 +0100 | [diff] [blame] | 507 | static ssize_t state_show(struct kobject *kobj, struct kobj_attribute *attr, | 
 | 508 | 			  char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | { | 
| Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 510 | 	char *s = buf; | 
 | 511 | #ifdef CONFIG_SUSPEND | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | 	int i; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 |  | 
 | 514 | 	for (i = 0; i < PM_SUSPEND_MAX; i++) { | 
| Pavel Machek | 123d3c1 | 2005-11-29 19:34:37 -0800 | [diff] [blame] | 515 | 		if (pm_states[i] && valid_state(i)) | 
 | 516 | 			s += sprintf(s,"%s ", pm_states[i]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | 	} | 
| Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 518 | #endif | 
| Rafael J. Wysocki | b0cb1a1 | 2007-07-29 23:24:36 +0200 | [diff] [blame] | 519 | #ifdef CONFIG_HIBERNATION | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 520 | 	s += sprintf(s, "%s\n", "disk"); | 
 | 521 | #else | 
 | 522 | 	if (s != buf) | 
 | 523 | 		/* convert the last space to a newline */ | 
 | 524 | 		*(s-1) = '\n'; | 
 | 525 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | 	return (s - buf); | 
 | 527 | } | 
 | 528 |  | 
| Kay Sievers | 386f275 | 2007-11-02 13:47:53 +0100 | [diff] [blame] | 529 | static ssize_t state_store(struct kobject *kobj, struct kobj_attribute *attr, | 
 | 530 | 			   const char *buf, size_t n) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | { | 
| Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 532 | #ifdef CONFIG_SUSPEND | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | 	suspend_state_t state = PM_SUSPEND_STANDBY; | 
| Andreas Mohr | 3b364b8 | 2006-06-25 05:47:56 -0700 | [diff] [blame] | 534 | 	const char * const *s; | 
| Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 535 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | 	char *p; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | 	int len; | 
| Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 538 | 	int error = -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 |  | 
 | 540 | 	p = memchr(buf, '\n', n); | 
 | 541 | 	len = p ? p - buf : n; | 
 | 542 |  | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 543 | 	/* First, check if we are requested to hibernate */ | 
| Rafael J. Wysocki | 8d98a69 | 2007-05-16 22:11:19 -0700 | [diff] [blame] | 544 | 	if (len == 4 && !strncmp(buf, "disk", len)) { | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 545 | 		error = hibernate(); | 
| Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 546 |   goto Exit; | 
| Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 547 | 	} | 
 | 548 |  | 
| Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 549 | #ifdef CONFIG_SUSPEND | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | 	for (s = &pm_states[state]; state < PM_SUSPEND_MAX; s++, state++) { | 
| Rafael J. Wysocki | 8d98a69 | 2007-05-16 22:11:19 -0700 | [diff] [blame] | 551 | 		if (*s && len == strlen(*s) && !strncmp(buf, *s, len)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | 			break; | 
 | 553 | 	} | 
| dean gaudet | 47bb789 | 2006-04-27 18:39:17 -0700 | [diff] [blame] | 554 | 	if (state < PM_SUSPEND_MAX && *s) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | 		error = enter_state(state); | 
| Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 556 | #endif | 
 | 557 |  | 
 | 558 |  Exit: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | 	return error ? error : n; | 
 | 560 | } | 
 | 561 |  | 
 | 562 | power_attr(state); | 
 | 563 |  | 
| Rafael J. Wysocki | c5c6ba4 | 2006-09-25 23:32:58 -0700 | [diff] [blame] | 564 | #ifdef CONFIG_PM_TRACE | 
 | 565 | int pm_trace_enabled; | 
 | 566 |  | 
| Kay Sievers | 386f275 | 2007-11-02 13:47:53 +0100 | [diff] [blame] | 567 | static ssize_t pm_trace_show(struct kobject *kobj, struct kobj_attribute *attr, | 
 | 568 | 			     char *buf) | 
| Rafael J. Wysocki | c5c6ba4 | 2006-09-25 23:32:58 -0700 | [diff] [blame] | 569 | { | 
 | 570 | 	return sprintf(buf, "%d\n", pm_trace_enabled); | 
 | 571 | } | 
 | 572 |  | 
 | 573 | static ssize_t | 
| Kay Sievers | 386f275 | 2007-11-02 13:47:53 +0100 | [diff] [blame] | 574 | pm_trace_store(struct kobject *kobj, struct kobj_attribute *attr, | 
 | 575 | 	       const char *buf, size_t n) | 
| Rafael J. Wysocki | c5c6ba4 | 2006-09-25 23:32:58 -0700 | [diff] [blame] | 576 | { | 
 | 577 | 	int val; | 
 | 578 |  | 
 | 579 | 	if (sscanf(buf, "%d", &val) == 1) { | 
 | 580 | 		pm_trace_enabled = !!val; | 
 | 581 | 		return n; | 
 | 582 | 	} | 
 | 583 | 	return -EINVAL; | 
 | 584 | } | 
 | 585 |  | 
 | 586 | power_attr(pm_trace); | 
| Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 587 | #endif /* CONFIG_PM_TRACE */ | 
| Rafael J. Wysocki | c5c6ba4 | 2006-09-25 23:32:58 -0700 | [diff] [blame] | 588 |  | 
 | 589 | static struct attribute * g[] = { | 
 | 590 | 	&state_attr.attr, | 
| Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 591 | #ifdef CONFIG_PM_TRACE | 
| Rafael J. Wysocki | c5c6ba4 | 2006-09-25 23:32:58 -0700 | [diff] [blame] | 592 | 	&pm_trace_attr.attr, | 
| Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 593 | #endif | 
| Rafael J. Wysocki | 7671b8a | 2007-12-14 01:07:13 +0100 | [diff] [blame] | 594 | #if defined(CONFIG_PM_SLEEP) && defined(CONFIG_PM_DEBUG) | 
| Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 595 | 	&pm_test_attr.attr, | 
 | 596 | #endif | 
| Rafael J. Wysocki | c5c6ba4 | 2006-09-25 23:32:58 -0700 | [diff] [blame] | 597 | 	NULL, | 
 | 598 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 |  | 
 | 600 | static struct attribute_group attr_group = { | 
 | 601 | 	.attrs = g, | 
 | 602 | }; | 
 | 603 |  | 
 | 604 |  | 
 | 605 | static int __init pm_init(void) | 
 | 606 | { | 
| Greg Kroah-Hartman | d76e15f | 2007-11-27 11:28:26 -0800 | [diff] [blame] | 607 | 	power_kobj = kobject_create_and_add("power", NULL); | 
 | 608 | 	if (!power_kobj) | 
| Greg Kroah-Hartman | 039a5dc | 2007-11-01 10:39:50 -0700 | [diff] [blame] | 609 | 		return -ENOMEM; | 
| Greg Kroah-Hartman | d76e15f | 2007-11-27 11:28:26 -0800 | [diff] [blame] | 610 | 	return sysfs_create_group(power_kobj, &attr_group); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | } | 
 | 612 |  | 
 | 613 | core_initcall(pm_init); | 
| David Brownell | 77437fd | 2008-07-23 21:28:33 -0700 | [diff] [blame] | 614 |  | 
 | 615 |  | 
 | 616 | #ifdef CONFIG_PM_TEST_SUSPEND | 
 | 617 |  | 
 | 618 | #include <linux/rtc.h> | 
 | 619 |  | 
 | 620 | /* | 
 | 621 |  * To test system suspend, we need a hands-off mechanism to resume the | 
 | 622 |  * system.  RTCs wake alarms are a common self-contained mechanism. | 
 | 623 |  */ | 
 | 624 |  | 
 | 625 | static void __init test_wakealarm(struct rtc_device *rtc, suspend_state_t state) | 
 | 626 | { | 
 | 627 | 	static char err_readtime[] __initdata = | 
 | 628 | 		KERN_ERR "PM: can't read %s time, err %d\n"; | 
 | 629 | 	static char err_wakealarm [] __initdata = | 
 | 630 | 		KERN_ERR "PM: can't set %s wakealarm, err %d\n"; | 
 | 631 | 	static char err_suspend[] __initdata = | 
 | 632 | 		KERN_ERR "PM: suspend test failed, error %d\n"; | 
 | 633 | 	static char info_test[] __initdata = | 
 | 634 | 		KERN_INFO "PM: test RTC wakeup from '%s' suspend\n"; | 
 | 635 |  | 
 | 636 | 	unsigned long		now; | 
 | 637 | 	struct rtc_wkalrm	alm; | 
 | 638 | 	int			status; | 
 | 639 |  | 
 | 640 | 	/* this may fail if the RTC hasn't been initialized */ | 
 | 641 | 	status = rtc_read_time(rtc, &alm.time); | 
 | 642 | 	if (status < 0) { | 
| Kay Sievers | 81ff86a | 2009-01-06 10:44:39 -0800 | [diff] [blame] | 643 | 		printk(err_readtime, dev_name(&rtc->dev), status); | 
| David Brownell | 77437fd | 2008-07-23 21:28:33 -0700 | [diff] [blame] | 644 | 		return; | 
 | 645 | 	} | 
 | 646 | 	rtc_tm_to_time(&alm.time, &now); | 
 | 647 |  | 
 | 648 | 	memset(&alm, 0, sizeof alm); | 
 | 649 | 	rtc_time_to_tm(now + TEST_SUSPEND_SECONDS, &alm.time); | 
 | 650 | 	alm.enabled = true; | 
 | 651 |  | 
 | 652 | 	status = rtc_set_alarm(rtc, &alm); | 
 | 653 | 	if (status < 0) { | 
| Kay Sievers | 81ff86a | 2009-01-06 10:44:39 -0800 | [diff] [blame] | 654 | 		printk(err_wakealarm, dev_name(&rtc->dev), status); | 
| David Brownell | 77437fd | 2008-07-23 21:28:33 -0700 | [diff] [blame] | 655 | 		return; | 
 | 656 | 	} | 
 | 657 |  | 
 | 658 | 	if (state == PM_SUSPEND_MEM) { | 
 | 659 | 		printk(info_test, pm_states[state]); | 
 | 660 | 		status = pm_suspend(state); | 
 | 661 | 		if (status == -ENODEV) | 
 | 662 | 			state = PM_SUSPEND_STANDBY; | 
 | 663 | 	} | 
 | 664 | 	if (state == PM_SUSPEND_STANDBY) { | 
 | 665 | 		printk(info_test, pm_states[state]); | 
 | 666 | 		status = pm_suspend(state); | 
 | 667 | 	} | 
 | 668 | 	if (status < 0) | 
 | 669 | 		printk(err_suspend, status); | 
| David Brownell | a2e2e35 | 2008-07-25 19:44:38 -0700 | [diff] [blame] | 670 |  | 
 | 671 | 	/* Some platforms can't detect that the alarm triggered the | 
 | 672 | 	 * wakeup, or (accordingly) disable it after it afterwards. | 
 | 673 | 	 * It's supposed to give oneshot behavior; cope. | 
 | 674 | 	 */ | 
 | 675 | 	alm.enabled = false; | 
 | 676 | 	rtc_set_alarm(rtc, &alm); | 
| David Brownell | 77437fd | 2008-07-23 21:28:33 -0700 | [diff] [blame] | 677 | } | 
 | 678 |  | 
 | 679 | static int __init has_wakealarm(struct device *dev, void *name_ptr) | 
 | 680 | { | 
 | 681 | 	struct rtc_device *candidate = to_rtc_device(dev); | 
 | 682 |  | 
 | 683 | 	if (!candidate->ops->set_alarm) | 
 | 684 | 		return 0; | 
 | 685 | 	if (!device_may_wakeup(candidate->dev.parent)) | 
 | 686 | 		return 0; | 
 | 687 |  | 
| Kay Sievers | 81ff86a | 2009-01-06 10:44:39 -0800 | [diff] [blame] | 688 | 	*(const char **)name_ptr = dev_name(dev); | 
| David Brownell | 77437fd | 2008-07-23 21:28:33 -0700 | [diff] [blame] | 689 | 	return 1; | 
 | 690 | } | 
 | 691 |  | 
 | 692 | /* | 
 | 693 |  * Kernel options like "test_suspend=mem" force suspend/resume sanity tests | 
 | 694 |  * at startup time.  They're normally disabled, for faster boot and because | 
 | 695 |  * we can't know which states really work on this particular system. | 
 | 696 |  */ | 
 | 697 | static suspend_state_t test_state __initdata = PM_SUSPEND_ON; | 
 | 698 |  | 
 | 699 | static char warn_bad_state[] __initdata = | 
 | 700 | 	KERN_WARNING "PM: can't test '%s' suspend state\n"; | 
 | 701 |  | 
 | 702 | static int __init setup_test_suspend(char *value) | 
 | 703 | { | 
 | 704 | 	unsigned i; | 
 | 705 |  | 
 | 706 | 	/* "=mem" ==> "mem" */ | 
 | 707 | 	value++; | 
 | 708 | 	for (i = 0; i < PM_SUSPEND_MAX; i++) { | 
 | 709 | 		if (!pm_states[i]) | 
 | 710 | 			continue; | 
 | 711 | 		if (strcmp(pm_states[i], value) != 0) | 
 | 712 | 			continue; | 
 | 713 | 		test_state = (__force suspend_state_t) i; | 
 | 714 | 		return 0; | 
 | 715 | 	} | 
 | 716 | 	printk(warn_bad_state, value); | 
 | 717 | 	return 0; | 
 | 718 | } | 
 | 719 | __setup("test_suspend", setup_test_suspend); | 
 | 720 |  | 
 | 721 | static int __init test_suspend(void) | 
 | 722 | { | 
 | 723 | 	static char		warn_no_rtc[] __initdata = | 
 | 724 | 		KERN_WARNING "PM: no wakealarm-capable RTC driver is ready\n"; | 
 | 725 |  | 
 | 726 | 	char			*pony = NULL; | 
 | 727 | 	struct rtc_device	*rtc = NULL; | 
 | 728 |  | 
 | 729 | 	/* PM is initialized by now; is that state testable? */ | 
 | 730 | 	if (test_state == PM_SUSPEND_ON) | 
 | 731 | 		goto done; | 
 | 732 | 	if (!valid_state(test_state)) { | 
 | 733 | 		printk(warn_bad_state, pm_states[test_state]); | 
 | 734 | 		goto done; | 
 | 735 | 	} | 
 | 736 |  | 
 | 737 | 	/* RTCs have initialized by now too ... can we use one? */ | 
 | 738 | 	class_find_device(rtc_class, NULL, &pony, has_wakealarm); | 
 | 739 | 	if (pony) | 
 | 740 | 		rtc = rtc_class_open(pony); | 
 | 741 | 	if (!rtc) { | 
 | 742 | 		printk(warn_no_rtc); | 
 | 743 | 		goto done; | 
 | 744 | 	} | 
 | 745 |  | 
 | 746 | 	/* go for it */ | 
 | 747 | 	test_wakealarm(rtc, test_state); | 
 | 748 | 	rtc_class_close(rtc); | 
 | 749 | done: | 
 | 750 | 	return 0; | 
 | 751 | } | 
 | 752 | late_initcall(test_suspend); | 
 | 753 |  | 
 | 754 | #endif /* CONFIG_PM_TEST_SUSPEND */ |