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