PM / OPP: Introduce dev_pm_opp_get_max_transition_latency()
[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 unsigned long dev_pm_opp_get_max_volt_latency(struct device *dev);
38 unsigned long dev_pm_opp_get_max_transition_latency(struct device *dev);
39 struct dev_pm_opp *dev_pm_opp_get_suspend_opp(struct device *dev);
40
41 struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
42                                               unsigned long freq,
43                                               bool available);
44
45 struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
46                                               unsigned long *freq);
47
48 struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
49                                              unsigned long *freq);
50
51 int dev_pm_opp_add(struct device *dev, unsigned long freq,
52                    unsigned long u_volt);
53 void dev_pm_opp_remove(struct device *dev, unsigned long freq);
54
55 int dev_pm_opp_enable(struct device *dev, unsigned long freq);
56
57 int dev_pm_opp_disable(struct device *dev, unsigned long freq);
58
59 struct srcu_notifier_head *dev_pm_opp_get_notifier(struct device *dev);
60 int dev_pm_opp_set_supported_hw(struct device *dev, const u32 *versions,
61                                 unsigned int count);
62 void dev_pm_opp_put_supported_hw(struct device *dev);
63 int dev_pm_opp_set_prop_name(struct device *dev, const char *name);
64 void dev_pm_opp_put_prop_name(struct device *dev);
65 int dev_pm_opp_set_regulator(struct device *dev, const char *name);
66 void dev_pm_opp_put_regulator(struct device *dev);
67 #else
68 static inline unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp)
69 {
70         return 0;
71 }
72
73 static inline unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp)
74 {
75         return 0;
76 }
77
78 static inline bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp)
79 {
80         return false;
81 }
82
83 static inline int dev_pm_opp_get_opp_count(struct device *dev)
84 {
85         return 0;
86 }
87
88 static inline unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev)
89 {
90         return 0;
91 }
92
93 static inline unsigned long dev_pm_opp_get_max_volt_latency(struct device *dev)
94 {
95         return 0;
96 }
97
98 static inline unsigned long dev_pm_opp_get_max_transition_latency(struct device *dev)
99 {
100         return 0;
101 }
102
103 static inline struct dev_pm_opp *dev_pm_opp_get_suspend_opp(struct device *dev)
104 {
105         return NULL;
106 }
107
108 static inline struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
109                                         unsigned long freq, bool available)
110 {
111         return ERR_PTR(-EINVAL);
112 }
113
114 static inline struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
115                                         unsigned long *freq)
116 {
117         return ERR_PTR(-EINVAL);
118 }
119
120 static inline struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
121                                         unsigned long *freq)
122 {
123         return ERR_PTR(-EINVAL);
124 }
125
126 static inline int dev_pm_opp_add(struct device *dev, unsigned long freq,
127                                         unsigned long u_volt)
128 {
129         return -EINVAL;
130 }
131
132 static inline void dev_pm_opp_remove(struct device *dev, unsigned long freq)
133 {
134 }
135
136 static inline int dev_pm_opp_enable(struct device *dev, unsigned long freq)
137 {
138         return 0;
139 }
140
141 static inline int dev_pm_opp_disable(struct device *dev, unsigned long freq)
142 {
143         return 0;
144 }
145
146 static inline struct srcu_notifier_head *dev_pm_opp_get_notifier(
147                                                         struct device *dev)
148 {
149         return ERR_PTR(-EINVAL);
150 }
151
152 static inline int dev_pm_opp_set_supported_hw(struct device *dev,
153                                               const u32 *versions,
154                                               unsigned int count)
155 {
156         return -EINVAL;
157 }
158
159 static inline void dev_pm_opp_put_supported_hw(struct device *dev) {}
160
161 static inline int dev_pm_opp_set_prop_name(struct device *dev, const char *name)
162 {
163         return -EINVAL;
164 }
165
166 static inline void dev_pm_opp_put_prop_name(struct device *dev) {}
167
168 static inline int dev_pm_opp_set_regulator(struct device *dev, const char *name)
169 {
170         return -EINVAL;
171 }
172
173 static inline void dev_pm_opp_put_regulator(struct device *dev) {}
174
175 #endif          /* CONFIG_PM_OPP */
176
177 #if defined(CONFIG_PM_OPP) && defined(CONFIG_OF)
178 int dev_pm_opp_of_add_table(struct device *dev);
179 void dev_pm_opp_of_remove_table(struct device *dev);
180 int dev_pm_opp_of_cpumask_add_table(cpumask_var_t cpumask);
181 void dev_pm_opp_of_cpumask_remove_table(cpumask_var_t cpumask);
182 int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask);
183 int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask);
184 #else
185 static inline int dev_pm_opp_of_add_table(struct device *dev)
186 {
187         return -EINVAL;
188 }
189
190 static inline void dev_pm_opp_of_remove_table(struct device *dev)
191 {
192 }
193
194 static inline int dev_pm_opp_of_cpumask_add_table(cpumask_var_t cpumask)
195 {
196         return -ENOSYS;
197 }
198
199 static inline void dev_pm_opp_of_cpumask_remove_table(cpumask_var_t cpumask)
200 {
201 }
202
203 static inline int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask)
204 {
205         return -ENOSYS;
206 }
207
208 static inline int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask)
209 {
210         return -ENOSYS;
211 }
212 #endif
213
214 #endif          /* __LINUX_OPP_H__ */