ARM: sun7i: i12 tvbox: Convert to DT label based syntax
[linux-2.6/btrfs-unstable.git] / include / linux / pm_opp.h
blobcec2d45409142c5888142ac8e8c63a24590a21f9
1 /*
2 * Generic OPP Interface
4 * Copyright (C) 2009-2010 Texas Instruments Incorporated.
5 * Nishanth Menon
6 * Romit Dasgupta
7 * Kevin Hilman
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #ifndef __LINUX_OPP_H__
15 #define __LINUX_OPP_H__
17 #include <linux/err.h>
18 #include <linux/notifier.h>
20 struct dev_pm_opp;
21 struct device;
23 enum dev_pm_opp_event {
24 OPP_EVENT_ADD, OPP_EVENT_REMOVE, OPP_EVENT_ENABLE, OPP_EVENT_DISABLE,
27 #if defined(CONFIG_PM_OPP)
29 unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp);
31 unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp);
33 int dev_pm_opp_get_opp_count(struct device *dev);
35 struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
36 unsigned long freq,
37 bool available);
39 struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
40 unsigned long *freq);
42 struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
43 unsigned long *freq);
45 int dev_pm_opp_add(struct device *dev, unsigned long freq,
46 unsigned long u_volt);
47 void dev_pm_opp_remove(struct device *dev, unsigned long freq);
49 int dev_pm_opp_enable(struct device *dev, unsigned long freq);
51 int dev_pm_opp_disable(struct device *dev, unsigned long freq);
53 struct srcu_notifier_head *dev_pm_opp_get_notifier(struct device *dev);
54 #else
55 static inline unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp)
57 return 0;
60 static inline unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp)
62 return 0;
65 static inline int dev_pm_opp_get_opp_count(struct device *dev)
67 return 0;
70 static inline struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
71 unsigned long freq, bool available)
73 return ERR_PTR(-EINVAL);
76 static inline struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
77 unsigned long *freq)
79 return ERR_PTR(-EINVAL);
82 static inline struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
83 unsigned long *freq)
85 return ERR_PTR(-EINVAL);
88 static inline int dev_pm_opp_add(struct device *dev, unsigned long freq,
89 unsigned long u_volt)
91 return -EINVAL;
94 static inline void dev_pm_opp_remove(struct device *dev, unsigned long freq)
98 static inline int dev_pm_opp_enable(struct device *dev, unsigned long freq)
100 return 0;
103 static inline int dev_pm_opp_disable(struct device *dev, unsigned long freq)
105 return 0;
108 static inline struct srcu_notifier_head *dev_pm_opp_get_notifier(
109 struct device *dev)
111 return ERR_PTR(-EINVAL);
113 #endif /* CONFIG_PM_OPP */
115 #if defined(CONFIG_PM_OPP) && defined(CONFIG_OF)
116 int of_init_opp_table(struct device *dev);
117 void of_free_opp_table(struct device *dev);
118 #else
119 static inline int of_init_opp_table(struct device *dev)
121 return -EINVAL;
124 static inline void of_free_opp_table(struct device *dev)
127 #endif
129 #endif /* __LINUX_OPP_H__ */