| 
									
										
										
										
											2010-06-17 15:48:43 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Runtime PM support code for OMAP1 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Author: Kevin Hilman, Deep Root Systems, LLC | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2010 Texas Instruments, Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file is licensed under the terms of the GNU General Public | 
					
						
							|  |  |  |  * License version 2. This program is licensed "as is" without any | 
					
						
							|  |  |  |  * warranty of any kind, whether express or implied. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/io.h>
 | 
					
						
							|  |  |  | #include <linux/pm_runtime.h>
 | 
					
						
							| 
									
										
										
										
											2011-08-25 15:34:19 +02:00
										 |  |  | #include <linux/pm_clock.h>
 | 
					
						
							| 
									
										
										
										
											2010-06-17 15:48:43 -07:00
										 |  |  | #include <linux/platform_device.h>
 | 
					
						
							|  |  |  | #include <linux/mutex.h>
 | 
					
						
							|  |  |  | #include <linux/clk.h>
 | 
					
						
							|  |  |  | #include <linux/err.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-25 19:01:11 -06:00
										 |  |  | #include "soc.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-17 15:48:43 -07:00
										 |  |  | #ifdef CONFIG_PM_RUNTIME
 | 
					
						
							|  |  |  | static int omap1_pm_runtime_suspend(struct device *dev) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-05-16 20:15:36 +02:00
										 |  |  | 	int ret; | 
					
						
							| 
									
										
										
										
											2010-06-17 15:48:43 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	dev_dbg(dev, "%s\n", __func__); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ret = pm_generic_runtime_suspend(dev); | 
					
						
							| 
									
										
										
										
											2011-05-16 20:15:36 +02:00
										 |  |  | 	if (ret) | 
					
						
							|  |  |  | 		return ret; | 
					
						
							| 
									
										
										
										
											2010-06-17 15:48:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-01 22:13:44 +02:00
										 |  |  | 	ret = pm_clk_suspend(dev); | 
					
						
							| 
									
										
										
										
											2011-05-16 20:15:36 +02:00
										 |  |  | 	if (ret) { | 
					
						
							|  |  |  | 		pm_generic_runtime_resume(dev); | 
					
						
							|  |  |  | 		return ret; | 
					
						
							| 
									
										
										
										
											2010-06-17 15:48:43 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2011-05-16 20:15:36 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2010-06-17 15:48:43 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | static int omap1_pm_runtime_resume(struct device *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	dev_dbg(dev, "%s\n", __func__); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-01 22:13:44 +02:00
										 |  |  | 	pm_clk_resume(dev); | 
					
						
							| 
									
										
										
										
											2011-05-16 20:15:36 +02:00
										 |  |  | 	return pm_generic_runtime_resume(dev); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-06-17 15:48:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-23 01:52:55 +02:00
										 |  |  | static struct dev_pm_domain default_pm_domain = { | 
					
						
							| 
									
										
										
										
											2011-05-16 20:15:36 +02:00
										 |  |  | 	.ops = { | 
					
						
							|  |  |  | 		.runtime_suspend = omap1_pm_runtime_suspend, | 
					
						
							|  |  |  | 		.runtime_resume = omap1_pm_runtime_resume, | 
					
						
							|  |  |  | 		USE_PLATFORM_PM_SLEEP_OPS | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2011-06-23 01:52:55 +02:00
										 |  |  | #define OMAP1_PM_DOMAIN (&default_pm_domain)
 | 
					
						
							| 
									
										
										
										
											2011-06-14 05:53:18 -07:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2011-06-23 01:52:55 +02:00
										 |  |  | #define OMAP1_PM_DOMAIN NULL
 | 
					
						
							| 
									
										
										
										
											2011-06-14 05:53:18 -07:00
										 |  |  | #endif /* CONFIG_PM_RUNTIME */
 | 
					
						
							| 
									
										
										
										
											2010-06-17 15:48:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-16 20:15:36 +02:00
										 |  |  | static struct pm_clk_notifier_block platform_bus_notifier = { | 
					
						
							| 
									
										
										
										
											2011-06-23 01:52:55 +02:00
										 |  |  | 	.pm_domain = OMAP1_PM_DOMAIN, | 
					
						
							| 
									
										
										
										
											2011-05-16 20:15:36 +02:00
										 |  |  | 	.con_ids = { "ick", "fck", NULL, }, | 
					
						
							| 
									
										
										
										
											2010-06-17 15:48:43 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __init omap1_pm_runtime_init(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-12-10 09:46:24 -08:00
										 |  |  | 	if (!cpu_class_is_omap1()) | 
					
						
							|  |  |  | 		return -ENODEV; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-01 22:13:44 +02:00
										 |  |  | 	pm_clk_add_notifier(&platform_bus_type, &platform_bus_notifier); | 
					
						
							| 
									
										
										
										
											2010-06-17 15:48:43 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | core_initcall(omap1_pm_runtime_init); | 
					
						
							| 
									
										
										
										
											2011-06-14 05:53:18 -07:00
										 |  |  | 
 |