Kevin Hilman | e933ec7 | 2010-06-17 15:48:43 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Runtime PM support code for OMAP1 |
| 3 | * |
| 4 | * Author: Kevin Hilman, Deep Root Systems, LLC |
| 5 | * |
| 6 | * Copyright (C) 2010 Texas Instruments, Inc. |
| 7 | * |
| 8 | * This file is licensed under the terms of the GNU General Public |
| 9 | * License version 2. This program is licensed "as is" without any |
| 10 | * warranty of any kind, whether express or implied. |
| 11 | */ |
| 12 | #include <linux/init.h> |
| 13 | #include <linux/kernel.h> |
| 14 | #include <linux/io.h> |
| 15 | #include <linux/pm_runtime.h> |
Rafael J. Wysocki | b5e8d26 | 2011-08-25 15:34:19 +0200 | [diff] [blame] | 16 | #include <linux/pm_clock.h> |
Kevin Hilman | e933ec7 | 2010-06-17 15:48:43 -0700 | [diff] [blame] | 17 | #include <linux/platform_device.h> |
| 18 | #include <linux/mutex.h> |
| 19 | #include <linux/clk.h> |
| 20 | #include <linux/err.h> |
| 21 | |
| 22 | #include <plat/omap_device.h> |
| 23 | #include <plat/omap-pm.h> |
| 24 | |
| 25 | #ifdef CONFIG_PM_RUNTIME |
| 26 | static int omap1_pm_runtime_suspend(struct device *dev) |
| 27 | { |
Rafael J. Wysocki | 600b776 | 2011-05-16 20:15:36 +0200 | [diff] [blame] | 28 | int ret; |
Kevin Hilman | e933ec7 | 2010-06-17 15:48:43 -0700 | [diff] [blame] | 29 | |
| 30 | dev_dbg(dev, "%s\n", __func__); |
| 31 | |
| 32 | ret = pm_generic_runtime_suspend(dev); |
Rafael J. Wysocki | 600b776 | 2011-05-16 20:15:36 +0200 | [diff] [blame] | 33 | if (ret) |
| 34 | return ret; |
Kevin Hilman | e933ec7 | 2010-06-17 15:48:43 -0700 | [diff] [blame] | 35 | |
Rafael J. Wysocki | 3d5c303 | 2011-07-01 22:13:44 +0200 | [diff] [blame] | 36 | ret = pm_clk_suspend(dev); |
Rafael J. Wysocki | 600b776 | 2011-05-16 20:15:36 +0200 | [diff] [blame] | 37 | if (ret) { |
| 38 | pm_generic_runtime_resume(dev); |
| 39 | return ret; |
Kevin Hilman | e933ec7 | 2010-06-17 15:48:43 -0700 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | return 0; |
Rafael J. Wysocki | 600b776 | 2011-05-16 20:15:36 +0200 | [diff] [blame] | 43 | } |
Kevin Hilman | e933ec7 | 2010-06-17 15:48:43 -0700 | [diff] [blame] | 44 | |
| 45 | static int omap1_pm_runtime_resume(struct device *dev) |
| 46 | { |
Kevin Hilman | e933ec7 | 2010-06-17 15:48:43 -0700 | [diff] [blame] | 47 | dev_dbg(dev, "%s\n", __func__); |
| 48 | |
Rafael J. Wysocki | 3d5c303 | 2011-07-01 22:13:44 +0200 | [diff] [blame] | 49 | pm_clk_resume(dev); |
Kevin Hilman | e933ec7 | 2010-06-17 15:48:43 -0700 | [diff] [blame] | 50 | return pm_generic_runtime_resume(dev); |
Rafael J. Wysocki | 600b776 | 2011-05-16 20:15:36 +0200 | [diff] [blame] | 51 | } |
| 52 | |
Rafael J. Wysocki | 564b905 | 2011-06-23 01:52:55 +0200 | [diff] [blame] | 53 | static struct dev_pm_domain default_pm_domain = { |
Rafael J. Wysocki | 600b776 | 2011-05-16 20:15:36 +0200 | [diff] [blame] | 54 | .ops = { |
| 55 | .runtime_suspend = omap1_pm_runtime_suspend, |
| 56 | .runtime_resume = omap1_pm_runtime_resume, |
| 57 | USE_PLATFORM_PM_SLEEP_OPS |
| 58 | }, |
| 59 | }; |
Rafael J. Wysocki | 564b905 | 2011-06-23 01:52:55 +0200 | [diff] [blame] | 60 | #define OMAP1_PM_DOMAIN (&default_pm_domain) |
Kevin Hilman | e9e35c5 | 2011-06-14 05:53:18 -0700 | [diff] [blame] | 61 | #else |
Rafael J. Wysocki | 564b905 | 2011-06-23 01:52:55 +0200 | [diff] [blame] | 62 | #define OMAP1_PM_DOMAIN NULL |
Kevin Hilman | e9e35c5 | 2011-06-14 05:53:18 -0700 | [diff] [blame] | 63 | #endif /* CONFIG_PM_RUNTIME */ |
Rafael J. Wysocki | 600b776 | 2011-05-16 20:15:36 +0200 | [diff] [blame] | 64 | |
| 65 | static struct pm_clk_notifier_block platform_bus_notifier = { |
Rafael J. Wysocki | 564b905 | 2011-06-23 01:52:55 +0200 | [diff] [blame] | 66 | .pm_domain = OMAP1_PM_DOMAIN, |
Rafael J. Wysocki | 600b776 | 2011-05-16 20:15:36 +0200 | [diff] [blame] | 67 | .con_ids = { "ick", "fck", NULL, }, |
Kevin Hilman | e933ec7 | 2010-06-17 15:48:43 -0700 | [diff] [blame] | 68 | }; |
| 69 | |
| 70 | static int __init omap1_pm_runtime_init(void) |
| 71 | { |
Tony Lindgren | 7f9187c | 2010-12-10 09:46:24 -0800 | [diff] [blame] | 72 | if (!cpu_class_is_omap1()) |
| 73 | return -ENODEV; |
| 74 | |
Rafael J. Wysocki | 3d5c303 | 2011-07-01 22:13:44 +0200 | [diff] [blame] | 75 | pm_clk_add_notifier(&platform_bus_type, &platform_bus_notifier); |
Kevin Hilman | e933ec7 | 2010-06-17 15:48:43 -0700 | [diff] [blame] | 76 | |
| 77 | return 0; |
| 78 | } |
| 79 | core_initcall(omap1_pm_runtime_init); |
Kevin Hilman | e9e35c5 | 2011-06-14 05:53:18 -0700 | [diff] [blame] | 80 | |