PM / OPP: Parse 'opp-supported-hw' binding
[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 #else
62 static inline unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp)
63 {
64         return 0;
65 }
66
67 static inline unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp)
68 {
69         return 0;
70 }
71
72 static inline bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp)
73 {
74         return false;
75 }
76
77 static inline int dev_pm_opp_get_opp_count(struct device *dev)
78 {
79         return 0;
80 }
81
82 static inline unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev)
83 {
84         return 0;
85 }
86
87 static inline struct dev_pm_opp *dev_pm_opp_get_suspend_opp(struct device *dev)
88 {
89         return NULL;
90 }
91
92 static inline struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
93                                         unsigned long freq, bool available)
94 {
95         return ERR_PTR(-EINVAL);
96 }
97
98 static inline struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
99                                         unsigned long *freq)
100 {
101         return ERR_PTR(-EINVAL);
102 }
103
104 static inline struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
105                                         unsigned long *freq)
106 {
107         return ERR_PTR(-EINVAL);
108 }
109
110 static inline int dev_pm_opp_add(struct device *dev, unsigned long freq,
111                                         unsigned long u_volt)
112 {
113         return -EINVAL;
114 }
115
116 static inline void dev_pm_opp_remove(struct device *dev, unsigned long freq)
117 {
118 }
119
120 static inline int dev_pm_opp_enable(struct device *dev, unsigned long freq)
121 {
122         return 0;
123 }
124
125 static inline int dev_pm_opp_disable(struct device *dev, unsigned long freq)
126 {
127         return 0;
128 }
129
130 static inline struct srcu_notifier_head *dev_pm_opp_get_notifier(
131                                                         struct device *dev)
132 {
133         return ERR_PTR(-EINVAL);
134 }
135
136 static inline int dev_pm_opp_set_supported_hw(struct device *dev,
137                                               const u32 *versions,
138                                               unsigned int count)
139 {
140         return -EINVAL;
141 }
142
143 static inline void dev_pm_opp_put_supported_hw(struct device *dev) {}
144
145 #endif          /* CONFIG_PM_OPP */
146
147 #if defined(CONFIG_PM_OPP) && defined(CONFIG_OF)
148 int dev_pm_opp_of_add_table(struct device *dev);
149 void dev_pm_opp_of_remove_table(struct device *dev);
150 int dev_pm_opp_of_cpumask_add_table(cpumask_var_t cpumask);
151 void dev_pm_opp_of_cpumask_remove_table(cpumask_var_t cpumask);
152 int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask);
153 int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask);
154 #else
155 static inline int dev_pm_opp_of_add_table(struct device *dev)
156 {
157         return -EINVAL;
158 }
159
160 static inline void dev_pm_opp_of_remove_table(struct device *dev)
161 {
162 }
163
164 static inline int dev_pm_opp_of_cpumask_add_table(cpumask_var_t cpumask)
165 {
166         return -ENOSYS;
167 }
168
169 static inline void dev_pm_opp_of_cpumask_remove_table(cpumask_var_t cpumask)
170 {
171 }
172
173 static inline int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask)
174 {
175         return -ENOSYS;
176 }
177
178 static inline int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask)
179 {
180         return -ENOSYS;
181 }
182 #endif
183
184 #endif          /* __LINUX_OPP_H__ */