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