| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * kernel/power/main.c - PM subsystem core functionality. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2003 Patrick Mochel | 
					
						
							|  |  |  |  * Copyright (c) 2003 Open Source Development Lab | 
					
						
							|  |  |  |  *  | 
					
						
							|  |  |  |  * This file is released under the GPLv2 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-06 20:36:06 -08:00
										 |  |  | #include <linux/module.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <linux/suspend.h>
 | 
					
						
							|  |  |  | #include <linux/kobject.h>
 | 
					
						
							|  |  |  | #include <linux/string.h>
 | 
					
						
							|  |  |  | #include <linux/delay.h>
 | 
					
						
							|  |  |  | #include <linux/errno.h>
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							| 
									
										
										
										
											2006-06-22 14:47:18 -07:00
										 |  |  | #include <linux/console.h>
 | 
					
						
							| 
									
										
										
										
											2006-09-25 23:32:48 -07:00
										 |  |  | #include <linux/cpu.h>
 | 
					
						
							| 
									
										
										
										
											2006-09-25 23:32:58 -07:00
										 |  |  | #include <linux/resume-trace.h>
 | 
					
						
							| 
									
										
										
										
											2006-12-06 20:34:23 -08:00
										 |  |  | #include <linux/freezer.h>
 | 
					
						
							| 
									
										
										
										
											2007-02-10 01:43:03 -08:00
										 |  |  | #include <linux/vmstat.h>
 | 
					
						
							| 
									
										
										
										
											2007-10-18 03:04:44 -07:00
										 |  |  | #include <linux/syscalls.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "power.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-19 01:47:36 -07:00
										 |  |  | BLOCKING_NOTIFIER_HEAD(pm_chain_head); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-06 20:34:35 -08:00
										 |  |  | DEFINE_MUTEX(pm_mutex); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-13 17:38:03 -05:00
										 |  |  | unsigned int pm_flags; | 
					
						
							|  |  |  | EXPORT_SYMBOL(pm_flags); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-29 23:27:18 +02:00
										 |  |  | #ifdef CONFIG_SUSPEND
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* This is just an arbitrary number */ | 
					
						
							|  |  |  | #define FREE_PAGE_NUMBER (100)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 03:04:41 -07:00
										 |  |  | static struct platform_suspend_ops *suspend_ops; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2007-10-18 03:04:40 -07:00
										 |  |  |  *	suspend_set_ops - Set the global suspend method table. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  *	@ops:	Pointer to ops structure. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 03:04:40 -07:00
										 |  |  | void suspend_set_ops(struct platform_suspend_ops *ops) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-12-06 20:34:35 -08:00
										 |  |  | 	mutex_lock(&pm_mutex); | 
					
						
							| 
									
										
										
										
											2007-10-18 03:04:40 -07:00
										 |  |  | 	suspend_ops = ops; | 
					
						
							| 
									
										
										
										
											2006-12-06 20:34:35 -08:00
										 |  |  | 	mutex_unlock(&pm_mutex); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-30 15:09:54 -07:00
										 |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2007-10-18 03:04:40 -07:00
										 |  |  |  * suspend_valid_only_mem - generic memory-only valid callback | 
					
						
							| 
									
										
										
										
											2007-04-30 15:09:54 -07:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-10-18 03:04:40 -07:00
										 |  |  |  * Platform drivers that implement mem suspend only and only need | 
					
						
							| 
									
										
										
										
											2007-04-30 15:09:54 -07:00
										 |  |  |  * to check for that in their .valid callback can use this instead | 
					
						
							|  |  |  |  * of rolling their own .valid callback. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-10-18 03:04:40 -07:00
										 |  |  | int suspend_valid_only_mem(suspend_state_t state) | 
					
						
							| 
									
										
										
										
											2007-04-30 15:09:54 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	return state == PM_SUSPEND_MEM; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  *	suspend_prepare - Do prep work before entering low-power state. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-07-19 01:47:38 -07:00
										 |  |  |  *	This is common code that is called for each state that we're entering. | 
					
						
							|  |  |  |  *	Run suspend notifiers, allocate a console and stop all processes. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-07-19 01:47:38 -07:00
										 |  |  | static int suspend_prepare(void) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-09-25 23:32:48 -07:00
										 |  |  | 	int error; | 
					
						
							| 
									
										
										
										
											2005-03-18 16:27:13 -05:00
										 |  |  | 	unsigned int free_pages; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 03:04:40 -07:00
										 |  |  | 	if (!suspend_ops || !suspend_ops->enter) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return -EPERM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-19 01:47:36 -07:00
										 |  |  | 	error = pm_notifier_call_chain(PM_SUSPEND_PREPARE); | 
					
						
							|  |  |  | 	if (error) | 
					
						
							|  |  |  | 		goto Finish; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	pm_prepare_console(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (freeze_processes()) { | 
					
						
							|  |  |  | 		error = -EAGAIN; | 
					
						
							|  |  |  | 		goto Thaw; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-19 01:47:38 -07:00
										 |  |  | 	free_pages = global_page_state(NR_FREE_PAGES); | 
					
						
							|  |  |  | 	if (free_pages < FREE_PAGE_NUMBER) { | 
					
						
							| 
									
										
										
										
											2005-03-18 16:27:13 -05:00
										 |  |  | 		pr_debug("PM: free some memory\n"); | 
					
						
							|  |  |  | 		shrink_all_memory(FREE_PAGE_NUMBER - free_pages); | 
					
						
							|  |  |  | 		if (nr_free_pages() < FREE_PAGE_NUMBER) { | 
					
						
							|  |  |  | 			error = -ENOMEM; | 
					
						
							|  |  |  | 			printk(KERN_ERR "PM: No enough memory\n"); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-02-10 01:43:31 -08:00
										 |  |  | 	if (!error) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  Thaw: | 
					
						
							|  |  |  | 	thaw_processes(); | 
					
						
							|  |  |  | 	pm_restore_console(); | 
					
						
							| 
									
										
										
										
											2007-07-19 01:47:36 -07:00
										 |  |  |  Finish: | 
					
						
							|  |  |  | 	pm_notifier_call_chain(PM_POST_SUSPEND); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return error; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-26 11:43:58 +02:00
										 |  |  | /* default implementation */ | 
					
						
							|  |  |  | void __attribute__ ((weak)) arch_suspend_disable_irqs(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	local_irq_disable(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* default implementation */ | 
					
						
							|  |  |  | void __attribute__ ((weak)) arch_suspend_enable_irqs(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	local_irq_enable(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-19 01:47:38 -07:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  *	suspend_enter - enter the desired system sleep state. | 
					
						
							|  |  |  |  *	@state:		state to enter | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	This function should be called after devices have been suspended. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-10-18 03:04:37 -07:00
										 |  |  | static int suspend_enter(suspend_state_t state) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	int error = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-26 11:43:58 +02:00
										 |  |  | 	arch_suspend_disable_irqs(); | 
					
						
							|  |  |  | 	BUG_ON(!irqs_disabled()); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if ((error = device_power_down(PMSG_SUSPEND))) { | 
					
						
							|  |  |  | 		printk(KERN_ERR "Some devices failed to power down\n"); | 
					
						
							|  |  |  | 		goto Done; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-10-18 03:04:40 -07:00
										 |  |  | 	error = suspend_ops->enter(state); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	device_power_up(); | 
					
						
							|  |  |  |  Done: | 
					
						
							| 
									
										
										
										
											2007-04-26 11:43:58 +02:00
										 |  |  | 	arch_suspend_enable_irqs(); | 
					
						
							|  |  |  | 	BUG_ON(irqs_disabled()); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return error; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-19 01:47:38 -07:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  *	suspend_devices_and_enter - suspend devices and enter the desired system sleep | 
					
						
							|  |  |  |  *			  state. | 
					
						
							|  |  |  |  *	@state:		  state to enter | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | int suspend_devices_and_enter(suspend_state_t state) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int error; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 03:04:40 -07:00
										 |  |  | 	if (!suspend_ops) | 
					
						
							| 
									
										
										
										
											2007-07-19 01:47:38 -07:00
										 |  |  | 		return -ENOSYS; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 03:04:40 -07:00
										 |  |  | 	if (suspend_ops->set_target) { | 
					
						
							|  |  |  | 		error = suspend_ops->set_target(state); | 
					
						
							| 
									
										
										
										
											2007-07-19 01:47:38 -07:00
										 |  |  | 		if (error) | 
					
						
							|  |  |  | 			return error; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	suspend_console(); | 
					
						
							|  |  |  | 	error = device_suspend(PMSG_SUSPEND); | 
					
						
							|  |  |  | 	if (error) { | 
					
						
							|  |  |  | 		printk(KERN_ERR "Some devices failed to suspend\n"); | 
					
						
							|  |  |  | 		goto Resume_console; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-10-18 03:04:40 -07:00
										 |  |  | 	if (suspend_ops->prepare) { | 
					
						
							| 
									
										
										
										
											2007-10-18 03:04:41 -07:00
										 |  |  | 		error = suspend_ops->prepare(); | 
					
						
							| 
									
										
										
										
											2007-07-19 01:47:38 -07:00
										 |  |  | 		if (error) | 
					
						
							|  |  |  | 			goto Resume_devices; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	error = disable_nonboot_cpus(); | 
					
						
							|  |  |  | 	if (!error) | 
					
						
							|  |  |  | 		suspend_enter(state); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	enable_nonboot_cpus(); | 
					
						
							| 
									
										
										
										
											2007-10-18 03:04:41 -07:00
										 |  |  | 	if (suspend_ops->finish) | 
					
						
							|  |  |  | 		suspend_ops->finish(); | 
					
						
							| 
									
										
										
										
											2007-07-19 01:47:38 -07:00
										 |  |  |  Resume_devices: | 
					
						
							|  |  |  | 	device_resume(); | 
					
						
							|  |  |  |  Resume_console: | 
					
						
							|  |  |  | 	resume_console(); | 
					
						
							|  |  |  | 	return error; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  *	suspend_finish - Do final work before exiting suspend sequence. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	Call platform code to clean up, restart processes, and free the  | 
					
						
							|  |  |  |  *	console that we've allocated. This is not called for suspend-to-disk. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-07-19 01:47:38 -07:00
										 |  |  | static void suspend_finish(void) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	thaw_processes(); | 
					
						
							|  |  |  | 	pm_restore_console(); | 
					
						
							| 
									
										
										
										
											2007-07-19 01:47:36 -07:00
										 |  |  | 	pm_notifier_call_chain(PM_POST_SUSPEND); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-25 05:47:56 -07:00
										 |  |  | static const char * const pm_states[PM_SUSPEND_MAX] = { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	[PM_SUSPEND_STANDBY]	= "standby", | 
					
						
							|  |  |  | 	[PM_SUSPEND_MEM]	= "mem", | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-29 19:34:37 -08:00
										 |  |  | static inline int valid_state(suspend_state_t state) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-05-09 02:33:18 -07:00
										 |  |  | 	/* All states need lowlevel support and need to be valid
 | 
					
						
							|  |  |  | 	 * to the lowlevel implementation, no valid callback | 
					
						
							| 
									
										
										
										
											2007-04-30 15:09:55 -07:00
										 |  |  | 	 * implies that none are valid. */ | 
					
						
							| 
									
										
										
										
											2007-10-18 03:04:40 -07:00
										 |  |  | 	if (!suspend_ops || !suspend_ops->valid || !suspend_ops->valid(state)) | 
					
						
							| 
									
										
										
										
											2005-11-29 19:34:37 -08:00
										 |  |  | 		return 0; | 
					
						
							|  |  |  | 	return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  *	enter_state - Do common work of entering low-power state. | 
					
						
							|  |  |  |  *	@state:		pm_state structure for state we're entering. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	Make sure we're the only ones trying to enter a sleep state. Fail | 
					
						
							|  |  |  |  *	if someone has beat us to it, since we don't want anything weird to | 
					
						
							|  |  |  |  *	happen when we wake up. | 
					
						
							|  |  |  |  *	Then, do the setup for suspend, enter the state, and cleaup (after | 
					
						
							|  |  |  |  *	we've woken up). | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int enter_state(suspend_state_t state) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int error; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-29 19:34:37 -08:00
										 |  |  | 	if (!valid_state(state)) | 
					
						
							| 
									
										
										
										
											2005-10-30 15:00:01 -08:00
										 |  |  | 		return -ENODEV; | 
					
						
							| 
									
										
										
										
											2007-10-18 03:04:44 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-06 20:34:35 -08:00
										 |  |  | 	if (!mutex_trylock(&pm_mutex)) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return -EBUSY; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-18 03:04:44 -07:00
										 |  |  | 	printk("Syncing filesystems ... "); | 
					
						
							|  |  |  | 	sys_sync(); | 
					
						
							|  |  |  | 	printk("done.\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-05-09 08:07:00 -07:00
										 |  |  | 	pr_debug("PM: Preparing system for %s sleep\n", pm_states[state]); | 
					
						
							| 
									
										
										
										
											2007-07-19 01:47:38 -07:00
										 |  |  | 	if ((error = suspend_prepare())) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		goto Unlock; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-05-09 08:07:00 -07:00
										 |  |  | 	pr_debug("PM: Entering %s sleep\n", pm_states[state]); | 
					
						
							| 
									
										
										
										
											2007-07-19 01:47:38 -07:00
										 |  |  | 	error = suspend_devices_and_enter(state); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-05-09 08:07:00 -07:00
										 |  |  | 	pr_debug("PM: Finishing wakeup.\n"); | 
					
						
							| 
									
										
										
										
											2007-07-19 01:47:38 -07:00
										 |  |  | 	suspend_finish(); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  Unlock: | 
					
						
							| 
									
										
										
										
											2006-12-06 20:34:35 -08:00
										 |  |  | 	mutex_unlock(&pm_mutex); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return error; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  *	pm_suspend - Externally visible function for suspending system. | 
					
						
							| 
									
										
										
										
											2007-05-09 02:33:18 -07:00
										 |  |  |  *	@state:		Enumerated value of state to enter. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  *	Determine whether or not value is within range, get state  | 
					
						
							|  |  |  |  *	structure, and enter (above). | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int pm_suspend(suspend_state_t state) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2005-03-18 16:20:46 -05:00
										 |  |  | 	if (state > PM_SUSPEND_ON && state <= PM_SUSPEND_MAX) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return enter_state(state); | 
					
						
							|  |  |  | 	return -EINVAL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-06 20:36:06 -08:00
										 |  |  | EXPORT_SYMBOL(pm_suspend); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-29 23:27:18 +02:00
										 |  |  | #endif /* CONFIG_SUSPEND */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-27 11:28:26 -08:00
										 |  |  | struct kobject *power_kobj; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  *	state - control system power state. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	show() returns what states are supported, which is hard-coded to | 
					
						
							|  |  |  |  *	'standby' (Power-On Suspend), 'mem' (Suspend-to-RAM), and | 
					
						
							|  |  |  |  *	'disk' (Suspend-to-Disk). | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	store() accepts one of those strings, translates it into the  | 
					
						
							|  |  |  |  *	proper enumerated value, and initiates a suspend transition. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-02 13:47:53 +01:00
										 |  |  | static ssize_t state_show(struct kobject *kobj, struct kobj_attribute *attr, | 
					
						
							|  |  |  | 			  char *buf) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-07-29 23:27:18 +02:00
										 |  |  | 	char *s = buf; | 
					
						
							|  |  |  | #ifdef CONFIG_SUSPEND
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < PM_SUSPEND_MAX; i++) { | 
					
						
							| 
									
										
										
										
											2005-11-29 19:34:37 -08:00
										 |  |  | 		if (pm_states[i] && valid_state(i)) | 
					
						
							|  |  |  | 			s += sprintf(s,"%s ", pm_states[i]); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-07-29 23:27:18 +02:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-07-29 23:24:36 +02:00
										 |  |  | #ifdef CONFIG_HIBERNATION
 | 
					
						
							| 
									
										
										
										
											2007-05-09 02:33:18 -07:00
										 |  |  | 	s += sprintf(s, "%s\n", "disk"); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	if (s != buf) | 
					
						
							|  |  |  | 		/* convert the last space to a newline */ | 
					
						
							|  |  |  | 		*(s-1) = '\n'; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return (s - buf); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-02 13:47:53 +01:00
										 |  |  | static ssize_t state_store(struct kobject *kobj, struct kobj_attribute *attr, | 
					
						
							|  |  |  | 			   const char *buf, size_t n) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-07-29 23:27:18 +02:00
										 |  |  | #ifdef CONFIG_SUSPEND
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	suspend_state_t state = PM_SUSPEND_STANDBY; | 
					
						
							| 
									
										
										
										
											2006-06-25 05:47:56 -07:00
										 |  |  | 	const char * const *s; | 
					
						
							| 
									
										
										
										
											2007-07-29 23:27:18 +02:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	char *p; | 
					
						
							|  |  |  | 	int len; | 
					
						
							| 
									
										
										
										
											2007-07-29 23:27:18 +02:00
										 |  |  | 	int error = -EINVAL; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	p = memchr(buf, '\n', n); | 
					
						
							|  |  |  | 	len = p ? p - buf : n; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-09 02:33:18 -07:00
										 |  |  | 	/* First, check if we are requested to hibernate */ | 
					
						
							| 
									
										
										
										
											2007-05-16 22:11:19 -07:00
										 |  |  | 	if (len == 4 && !strncmp(buf, "disk", len)) { | 
					
						
							| 
									
										
										
										
											2007-05-09 02:33:18 -07:00
										 |  |  | 		error = hibernate(); | 
					
						
							| 
									
										
										
										
											2007-07-29 23:27:18 +02:00
										 |  |  |   goto Exit; | 
					
						
							| 
									
										
										
										
											2007-05-09 02:33:18 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-29 23:27:18 +02:00
										 |  |  | #ifdef CONFIG_SUSPEND
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	for (s = &pm_states[state]; state < PM_SUSPEND_MAX; s++, state++) { | 
					
						
							| 
									
										
										
										
											2007-05-16 22:11:19 -07:00
										 |  |  | 		if (*s && len == strlen(*s) && !strncmp(buf, *s, len)) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-04-27 18:39:17 -07:00
										 |  |  | 	if (state < PM_SUSPEND_MAX && *s) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		error = enter_state(state); | 
					
						
							| 
									
										
										
										
											2007-07-29 23:27:18 +02:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  Exit: | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return error ? error : n; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | power_attr(state); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-25 23:32:58 -07:00
										 |  |  | #ifdef CONFIG_PM_TRACE
 | 
					
						
							|  |  |  | int pm_trace_enabled; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-02 13:47:53 +01:00
										 |  |  | static ssize_t pm_trace_show(struct kobject *kobj, struct kobj_attribute *attr, | 
					
						
							|  |  |  | 			     char *buf) | 
					
						
							| 
									
										
										
										
											2006-09-25 23:32:58 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	return sprintf(buf, "%d\n", pm_trace_enabled); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static ssize_t | 
					
						
							| 
									
										
										
										
											2007-11-02 13:47:53 +01:00
										 |  |  | pm_trace_store(struct kobject *kobj, struct kobj_attribute *attr, | 
					
						
							|  |  |  | 	       const char *buf, size_t n) | 
					
						
							| 
									
										
										
										
											2006-09-25 23:32:58 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	int val; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (sscanf(buf, "%d", &val) == 1) { | 
					
						
							|  |  |  | 		pm_trace_enabled = !!val; | 
					
						
							|  |  |  | 		return n; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return -EINVAL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | power_attr(pm_trace); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct attribute * g[] = { | 
					
						
							|  |  |  | 	&state_attr.attr, | 
					
						
							|  |  |  | 	&pm_trace_attr.attr, | 
					
						
							|  |  |  | 	NULL, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | static struct attribute * g[] = { | 
					
						
							|  |  |  | 	&state_attr.attr, | 
					
						
							|  |  |  | 	NULL, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2006-09-25 23:32:58 -07:00
										 |  |  | #endif /* CONFIG_PM_TRACE */
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | static struct attribute_group attr_group = { | 
					
						
							|  |  |  | 	.attrs = g, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __init pm_init(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-11-27 11:28:26 -08:00
										 |  |  | 	power_kobj = kobject_create_and_add("power", NULL); | 
					
						
							|  |  |  | 	if (!power_kobj) | 
					
						
							| 
									
										
										
										
											2007-11-01 10:39:50 -07:00
										 |  |  | 		return -ENOMEM; | 
					
						
							| 
									
										
										
										
											2007-11-27 11:28:26 -08:00
										 |  |  | 	return sysfs_create_group(power_kobj, &attr_group); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | core_initcall(pm_init); |