PM / OPP: get/put regulators from OPP core
[firefly-linux-kernel-4.4.55.git] / include / linux / pm_opp.h
1 /*
2  * Generic OPP Interface
3  *
4  * Copyright (C) 2009-2010 Texas Instruments Incorporated.
5  *      Nishanth Menon
6  *      Romit Dasgupta
7  *      Kevin Hilman
8  *
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.
12  */
13
14 #ifndef __LINUX_OPP_H__
15 #define __LINUX_OPP_H__
16
17 #include <linux/err.h>
18 #include <linux/notifier.h>
19
20 struct dev_pm_opp;
21 struct device;
22
23 enum dev_pm_opp_event {
24         OPP_EVENT_ADD, OPP_EVENT_REMOVE, OPP_EVENT_ENABLE, OPP_EVENT_DISABLE,
25 };
26
27 #if defined(CONFIG_PM_OPP)
28
29 unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp);
30
31 unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp);
32
33 bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp);
34
35 int dev_pm_opp_get_opp_count(struct device *dev);
36 unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev);
37 struct dev_pm_opp *dev_pm_opp_get_suspend_opp(struct device *dev);
38
39 struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
40                                               unsigned long freq,
41                                               bool available);
42
43 struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
44                                               unsigned long *freq);
45
46 struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
47                                              unsigned long *freq);
48
49 int dev_pm_opp_add(struct device *dev, unsigned long freq,
50                    unsigned long u_volt);
51 void dev_pm_opp_remove(struct device *dev, unsigned long freq);
52
53 int dev_pm_opp_enable(struct device *dev, unsigned long freq);
54
55 int dev_pm_opp_disable(struct device *dev, unsigned long freq);
56
57 struct srcu_notifier_head *dev_pm_opp_get_notifier(struct device *dev);
58 int dev_pm_opp_set_supported_hw(struct device *dev, const u32 *versions,
59                                 unsigned int count);
60 void dev_pm_opp_put_supported_hw(struct device *dev);
61 int dev_pm_opp_set_prop_name(struct device *dev, const char *name);
62 void dev_pm_opp_put_prop_name(struct device *dev);
63 int dev_pm_opp_set_regulator(struct device *dev, const char *name);
64 void dev_pm_opp_put_regulator(struct device *dev);
65 #else
66 static inline unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp)
67 {
68         return 0;
69 }
70
71 static inline unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp)
72 {
73         return 0;
74 }
75
76 static inline bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp)
77 {
78         return false;
79 }
80
81 static inline int dev_pm_opp_get_opp_count(struct device *dev)
82 {
83         return 0;
84 }
85
86 static inline unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev)
87 {
88         return 0;
89 }
90
91 static inline struct dev_pm_opp *dev_pm_opp_get_suspend_opp(struct device *dev)
92 {
93         return NULL;
94 }
95
96 static inline struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
97                                         unsigned long freq, bool available)
98 {
99         return ERR_PTR(-EINVAL);
100 }
101
102 static inline struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
103                                         unsigned long *freq)
104 {
105         return ERR_PTR(-EINVAL);
106 }
107
108 static inline struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
109                                         unsigned long *freq)
110 {
111         return ERR_PTR(-EINVAL);
112 }
113
114 static inline int dev_pm_opp_add(struct device *dev, unsigned long freq,
115                                         unsigned long u_volt)
116 {
117         return -EINVAL;
118 }
119
120 static inline void dev_pm_opp_remove(struct device *dev, unsigned long freq)
121 {
122 }
123
124 static inline int dev_pm_opp_enable(struct device *dev, unsigned long freq)
125 {
126         return 0;
127 }
128
129 static inline int dev_pm_opp_disable(struct device *dev, unsigned long freq)
130 {
131         return 0;
132 }
133
134 static inline struct srcu_notifier_head *dev_pm_opp_get_notifier(
135                                                         struct device *dev)
136 {
137         return ERR_PTR(-EINVAL);
138 }
139
140 static inline int dev_pm_opp_set_supported_hw(struct device *dev,
141                                               const u32 *versions,
142                                               unsigned int count)
143 {
144         return -EINVAL;
145 }
146
147 static inline void dev_pm_opp_put_supported_hw(struct device *dev) {}
148
149 static inline int dev_pm_opp_set_prop_name(struct device *dev, const char *name)
150 {
151         return -EINVAL;
152 }
153
154 static inline void dev_pm_opp_put_prop_name(struct device *dev) {}
155
156 static inline int dev_pm_opp_set_regulator(struct device *dev, const char *name)
157 {
158         return -EINVAL;
159 }
160
161 static inline void dev_pm_opp_put_regulator(struct device *dev) {}
162
163 #endif          /* CONFIG_PM_OPP */
164
165 #if defined(CONFIG_PM_OPP) && defined(CONFIG_OF)
166 int dev_pm_opp_of_add_table(struct device *dev);
167 void dev_pm_opp_of_remove_table(struct device *dev);
168 int dev_pm_opp_of_cpumask_add_table(cpumask_var_t cpumask);
169 void dev_pm_opp_of_cpumask_remove_table(cpumask_var_t cpumask);
170 int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask);
171 int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask);
172 #else
173 static inline int dev_pm_opp_of_add_table(struct device *dev)
174 {
175         return -EINVAL;
176 }
177
178 static inline void dev_pm_opp_of_remove_table(struct device *dev)
179 {
180 }
181
182 static inline int dev_pm_opp_of_cpumask_add_table(cpumask_var_t cpumask)
183 {
184         return -ENOSYS;
185 }
186
187 static inline void dev_pm_opp_of_cpumask_remove_table(cpumask_var_t cpumask)
188 {
189 }
190
191 static inline int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask)
192 {
193         return -ENOSYS;
194 }
195
196 static inline int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask)
197 {
198         return -ENOSYS;
199 }
200 #endif
201
202 #endif          /* __LINUX_OPP_H__ */