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