]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - include/linux/pm_opp.h
PM / OPP: Manage device clk
[mirror_ubuntu-zesty-kernel.git] / include / linux / pm_opp.h
CommitLineData
e1f60b29
NM
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>
03ca370f 18#include <linux/notifier.h>
e1f60b29 19
47d43ba7 20struct dev_pm_opp;
313162d0 21struct device;
e1f60b29 22
47d43ba7 23enum dev_pm_opp_event {
129eec55 24 OPP_EVENT_ADD, OPP_EVENT_REMOVE, OPP_EVENT_ENABLE, OPP_EVENT_DISABLE,
03ca370f
MH
25};
26
e1f60b29
NM
27#if defined(CONFIG_PM_OPP)
28
47d43ba7 29unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp);
e1f60b29 30
47d43ba7 31unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp);
e1f60b29 32
19445b25
BZ
33bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp);
34
5d4879cd 35int dev_pm_opp_get_opp_count(struct device *dev);
3ca9bb33 36unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev);
655c9df9 37unsigned long dev_pm_opp_get_max_volt_latency(struct device *dev);
21743447 38unsigned long dev_pm_opp_get_max_transition_latency(struct device *dev);
4eafbd15 39struct dev_pm_opp *dev_pm_opp_get_suspend_opp(struct device *dev);
e1f60b29 40
47d43ba7
NM
41struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
42 unsigned long freq,
43 bool available);
e1f60b29 44
47d43ba7
NM
45struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
46 unsigned long *freq);
e1f60b29 47
47d43ba7
NM
48struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
49 unsigned long *freq);
e1f60b29 50
5d4879cd
NM
51int dev_pm_opp_add(struct device *dev, unsigned long freq,
52 unsigned long u_volt);
129eec55 53void dev_pm_opp_remove(struct device *dev, unsigned long freq);
e1f60b29 54
5d4879cd 55int dev_pm_opp_enable(struct device *dev, unsigned long freq);
e1f60b29 56
5d4879cd 57int dev_pm_opp_disable(struct device *dev, unsigned long freq);
e1f60b29 58
5d4879cd 59struct srcu_notifier_head *dev_pm_opp_get_notifier(struct device *dev);
7de36b0a
VK
60int dev_pm_opp_set_supported_hw(struct device *dev, const u32 *versions,
61 unsigned int count);
62void dev_pm_opp_put_supported_hw(struct device *dev);
01fb4d3c
VK
63int dev_pm_opp_set_prop_name(struct device *dev, const char *name);
64void dev_pm_opp_put_prop_name(struct device *dev);
9f8ea969
VK
65int dev_pm_opp_set_regulator(struct device *dev, const char *name);
66void dev_pm_opp_put_regulator(struct device *dev);
e1f60b29 67#else
47d43ba7 68static inline unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp)
e1f60b29
NM
69{
70 return 0;
71}
72
47d43ba7 73static inline unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp)
e1f60b29
NM
74{
75 return 0;
76}
77
19445b25
BZ
78static inline bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp)
79{
80 return false;
81}
82
5d4879cd 83static inline int dev_pm_opp_get_opp_count(struct device *dev)
e1f60b29
NM
84{
85 return 0;
86}
87
3ca9bb33
VK
88static inline unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev)
89{
90 return 0;
91}
92
655c9df9
VK
93static inline unsigned long dev_pm_opp_get_max_volt_latency(struct device *dev)
94{
95 return 0;
96}
97
21743447
VK
98static inline unsigned long dev_pm_opp_get_max_transition_latency(struct device *dev)
99{
100 return 0;
101}
102
4eafbd15
BZ
103static inline struct dev_pm_opp *dev_pm_opp_get_suspend_opp(struct device *dev)
104{
105 return NULL;
106}
107
47d43ba7 108static inline struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
e1f60b29
NM
109 unsigned long freq, bool available)
110{
111 return ERR_PTR(-EINVAL);
112}
113
47d43ba7 114static inline struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
e1f60b29
NM
115 unsigned long *freq)
116{
117 return ERR_PTR(-EINVAL);
118}
119
47d43ba7 120static inline struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
e1f60b29
NM
121 unsigned long *freq)
122{
123 return ERR_PTR(-EINVAL);
124}
125
5d4879cd 126static inline int dev_pm_opp_add(struct device *dev, unsigned long freq,
e1f60b29
NM
127 unsigned long u_volt)
128{
129 return -EINVAL;
130}
131
129eec55
VK
132static inline void dev_pm_opp_remove(struct device *dev, unsigned long freq)
133{
134}
135
5d4879cd 136static inline int dev_pm_opp_enable(struct device *dev, unsigned long freq)
e1f60b29
NM
137{
138 return 0;
139}
140
5d4879cd 141static inline int dev_pm_opp_disable(struct device *dev, unsigned long freq)
e1f60b29
NM
142{
143 return 0;
144}
03ca370f 145
5d4879cd
NM
146static inline struct srcu_notifier_head *dev_pm_opp_get_notifier(
147 struct device *dev)
03ca370f
MH
148{
149 return ERR_PTR(-EINVAL);
150}
7de36b0a
VK
151
152static 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
159static inline void dev_pm_opp_put_supported_hw(struct device *dev) {}
160
01fb4d3c
VK
161static inline int dev_pm_opp_set_prop_name(struct device *dev, const char *name)
162{
163 return -EINVAL;
164}
165
166static inline void dev_pm_opp_put_prop_name(struct device *dev) {}
167
9f8ea969
VK
168static inline int dev_pm_opp_set_regulator(struct device *dev, const char *name)
169{
170 return -EINVAL;
171}
172
173static inline void dev_pm_opp_put_regulator(struct device *dev) {}
174
a96d69d1 175#endif /* CONFIG_PM_OPP */
e1f60b29 176
d6561bb2 177#if defined(CONFIG_PM_OPP) && defined(CONFIG_OF)
8f8d37b2
VK
178int dev_pm_opp_of_add_table(struct device *dev);
179void dev_pm_opp_of_remove_table(struct device *dev);
180int dev_pm_opp_of_cpumask_add_table(cpumask_var_t cpumask);
181void dev_pm_opp_of_cpumask_remove_table(cpumask_var_t cpumask);
182int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask);
183int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask);
d6561bb2 184#else
8f8d37b2 185static inline int dev_pm_opp_of_add_table(struct device *dev)
d6561bb2
SG
186{
187 return -EINVAL;
188}
129eec55 189
8f8d37b2 190static inline void dev_pm_opp_of_remove_table(struct device *dev)
129eec55
VK
191{
192}
8d4d4e98 193
8f8d37b2 194static inline int dev_pm_opp_of_cpumask_add_table(cpumask_var_t cpumask)
8d4d4e98
VK
195{
196 return -ENOSYS;
197}
198
8f8d37b2 199static inline void dev_pm_opp_of_cpumask_remove_table(cpumask_var_t cpumask)
8d4d4e98
VK
200{
201}
202
8f8d37b2 203static inline int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask)
8d4d4e98
VK
204{
205 return -ENOSYS;
206}
207
8f8d37b2 208static inline int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask)
8d4d4e98
VK
209{
210 return -ENOSYS;
211}
d6561bb2
SG
212#endif
213
e1f60b29 214#endif /* __LINUX_OPP_H__ */