cputime: Clean up cputime_to_usecs and usecs_to_cputime macros
[linux-2.6/libata-dev.git] / arch / arm / mach-omap1 / pm_bus.c
blob943072d5a1d555106f3e1432721cbb5bb958e1f8
1 /*
2 * Runtime PM support code for OMAP1
4 * Author: Kevin Hilman, Deep Root Systems, LLC
6 * Copyright (C) 2010 Texas Instruments, Inc.
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.
12 #include <linux/init.h>
13 #include <linux/kernel.h>
14 #include <linux/io.h>
15 #include <linux/pm_runtime.h>
16 #include <linux/platform_device.h>
17 #include <linux/mutex.h>
18 #include <linux/clk.h>
19 #include <linux/err.h>
21 #include <plat/omap_device.h>
22 #include <plat/omap-pm.h>
24 #ifdef CONFIG_PM_RUNTIME
25 static int omap1_pm_runtime_suspend(struct device *dev)
27 int ret;
29 dev_dbg(dev, "%s\n", __func__);
31 ret = pm_generic_runtime_suspend(dev);
32 if (ret)
33 return ret;
35 ret = pm_clk_suspend(dev);
36 if (ret) {
37 pm_generic_runtime_resume(dev);
38 return ret;
41 return 0;
44 static int omap1_pm_runtime_resume(struct device *dev)
46 dev_dbg(dev, "%s\n", __func__);
48 pm_clk_resume(dev);
49 return pm_generic_runtime_resume(dev);
52 static struct dev_pm_domain default_pm_domain = {
53 .ops = {
54 .runtime_suspend = omap1_pm_runtime_suspend,
55 .runtime_resume = omap1_pm_runtime_resume,
56 USE_PLATFORM_PM_SLEEP_OPS
59 #define OMAP1_PM_DOMAIN (&default_pm_domain)
60 #else
61 #define OMAP1_PM_DOMAIN NULL
62 #endif /* CONFIG_PM_RUNTIME */
64 static struct pm_clk_notifier_block platform_bus_notifier = {
65 .pm_domain = OMAP1_PM_DOMAIN,
66 .con_ids = { "ick", "fck", NULL, },
69 static int __init omap1_pm_runtime_init(void)
71 if (!cpu_class_is_omap1())
72 return -ENODEV;
74 pm_clk_add_notifier(&platform_bus_type, &platform_bus_notifier);
76 return 0;
78 core_initcall(omap1_pm_runtime_init);