blob: 5daa43058ac1060c80240248ca0dacf8327e1954 [file] [log] [blame]
Nishanth Menone1f60b22010-10-13 00:13:10 +02001/*
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>
MyungJoo Ham03ca3702011-09-30 22:35:12 +020018#include <linux/notifier.h>
Nishanth Menone1f60b22010-10-13 00:13:10 +020019
Nishanth Menon47d43ba2013-09-19 16:03:51 -050020struct dev_pm_opp;
Paul Gortmaker313162d2012-01-30 11:46:54 -050021struct device;
Nishanth Menone1f60b22010-10-13 00:13:10 +020022
Nishanth Menon47d43ba2013-09-19 16:03:51 -050023enum dev_pm_opp_event {
Viresh Kumar129eec52014-11-27 08:54:06 +053024 OPP_EVENT_ADD, OPP_EVENT_REMOVE, OPP_EVENT_ENABLE, OPP_EVENT_DISABLE,
MyungJoo Ham03ca3702011-09-30 22:35:12 +020025};
26
Nishanth Menone1f60b22010-10-13 00:13:10 +020027#if defined(CONFIG_PM_OPP)
28
Nishanth Menon47d43ba2013-09-19 16:03:51 -050029unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp);
Nishanth Menone1f60b22010-10-13 00:13:10 +020030
Nishanth Menon47d43ba2013-09-19 16:03:51 -050031unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp);
Nishanth Menone1f60b22010-10-13 00:13:10 +020032
Bartlomiej Zolnierkiewicz19445b22015-07-09 17:43:35 +020033bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp);
34
Nishanth Menon5d4879c2013-09-19 16:03:50 -050035int dev_pm_opp_get_opp_count(struct device *dev);
Viresh Kumar3ca9bb32015-07-29 16:23:03 +053036unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev);
Viresh Kumar655c9df2016-02-09 10:30:35 +053037unsigned long dev_pm_opp_get_max_volt_latency(struct device *dev);
Bartlomiej Zolnierkiewicz4eafbd12015-09-08 18:41:01 +020038struct dev_pm_opp *dev_pm_opp_get_suspend_opp(struct device *dev);
Nishanth Menone1f60b22010-10-13 00:13:10 +020039
Nishanth Menon47d43ba2013-09-19 16:03:51 -050040struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
41 unsigned long freq,
42 bool available);
Nishanth Menone1f60b22010-10-13 00:13:10 +020043
Nishanth Menon47d43ba2013-09-19 16:03:51 -050044struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
45 unsigned long *freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +020046
Nishanth Menon47d43ba2013-09-19 16:03:51 -050047struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
48 unsigned long *freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +020049
Nishanth Menon5d4879c2013-09-19 16:03:50 -050050int dev_pm_opp_add(struct device *dev, unsigned long freq,
51 unsigned long u_volt);
Viresh Kumar129eec52014-11-27 08:54:06 +053052void dev_pm_opp_remove(struct device *dev, unsigned long freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +020053
Nishanth Menon5d4879c2013-09-19 16:03:50 -050054int dev_pm_opp_enable(struct device *dev, unsigned long freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +020055
Nishanth Menon5d4879c2013-09-19 16:03:50 -050056int dev_pm_opp_disable(struct device *dev, unsigned long freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +020057
Nishanth Menon5d4879c2013-09-19 16:03:50 -050058struct srcu_notifier_head *dev_pm_opp_get_notifier(struct device *dev);
Viresh Kumar7de36b02015-12-09 08:01:46 +053059int 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);
Viresh Kumar01fb4d32015-12-09 08:01:47 +053062int dev_pm_opp_set_prop_name(struct device *dev, const char *name);
63void dev_pm_opp_put_prop_name(struct device *dev);
Viresh Kumar9f8ea962016-02-09 10:30:33 +053064int dev_pm_opp_set_regulator(struct device *dev, const char *name);
65void dev_pm_opp_put_regulator(struct device *dev);
Nishanth Menone1f60b22010-10-13 00:13:10 +020066#else
Nishanth Menon47d43ba2013-09-19 16:03:51 -050067static inline unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp)
Nishanth Menone1f60b22010-10-13 00:13:10 +020068{
69 return 0;
70}
71
Nishanth Menon47d43ba2013-09-19 16:03:51 -050072static inline unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp)
Nishanth Menone1f60b22010-10-13 00:13:10 +020073{
74 return 0;
75}
76
Bartlomiej Zolnierkiewicz19445b22015-07-09 17:43:35 +020077static inline bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp)
78{
79 return false;
80}
81
Nishanth Menon5d4879c2013-09-19 16:03:50 -050082static inline int dev_pm_opp_get_opp_count(struct device *dev)
Nishanth Menone1f60b22010-10-13 00:13:10 +020083{
84 return 0;
85}
86
Viresh Kumar3ca9bb32015-07-29 16:23:03 +053087static inline unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev)
88{
89 return 0;
90}
91
Viresh Kumar655c9df2016-02-09 10:30:35 +053092static inline unsigned long dev_pm_opp_get_max_volt_latency(struct device *dev)
93{
94 return 0;
95}
96
Bartlomiej Zolnierkiewicz4eafbd12015-09-08 18:41:01 +020097static inline struct dev_pm_opp *dev_pm_opp_get_suspend_opp(struct device *dev)
98{
99 return NULL;
100}
101
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500102static inline struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
Nishanth Menone1f60b22010-10-13 00:13:10 +0200103 unsigned long freq, bool available)
104{
105 return ERR_PTR(-EINVAL);
106}
107
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500108static inline struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
Nishanth Menone1f60b22010-10-13 00:13:10 +0200109 unsigned long *freq)
110{
111 return ERR_PTR(-EINVAL);
112}
113
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500114static inline struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
Nishanth Menone1f60b22010-10-13 00:13:10 +0200115 unsigned long *freq)
116{
117 return ERR_PTR(-EINVAL);
118}
119
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500120static inline int dev_pm_opp_add(struct device *dev, unsigned long freq,
Nishanth Menone1f60b22010-10-13 00:13:10 +0200121 unsigned long u_volt)
122{
123 return -EINVAL;
124}
125
Viresh Kumar129eec52014-11-27 08:54:06 +0530126static inline void dev_pm_opp_remove(struct device *dev, unsigned long freq)
127{
128}
129
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500130static inline int dev_pm_opp_enable(struct device *dev, unsigned long freq)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200131{
132 return 0;
133}
134
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500135static inline int dev_pm_opp_disable(struct device *dev, unsigned long freq)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200136{
137 return 0;
138}
MyungJoo Ham03ca3702011-09-30 22:35:12 +0200139
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500140static inline struct srcu_notifier_head *dev_pm_opp_get_notifier(
141 struct device *dev)
MyungJoo Ham03ca3702011-09-30 22:35:12 +0200142{
143 return ERR_PTR(-EINVAL);
144}
Viresh Kumar7de36b02015-12-09 08:01:46 +0530145
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
Viresh Kumar01fb4d32015-12-09 08:01:47 +0530155static 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
Viresh Kumar9f8ea962016-02-09 10:30:33 +0530162static 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
Tony Lindgrena96d69d2011-11-03 10:12:27 +0100169#endif /* CONFIG_PM_OPP */
Nishanth Menone1f60b22010-10-13 00:13:10 +0200170
Shawn Guod6561bb2013-02-21 11:04:45 +0000171#if defined(CONFIG_PM_OPP) && defined(CONFIG_OF)
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530172int 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);
Shawn Guod6561bb2013-02-21 11:04:45 +0000178#else
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530179static inline int dev_pm_opp_of_add_table(struct device *dev)
Shawn Guod6561bb2013-02-21 11:04:45 +0000180{
181 return -EINVAL;
182}
Viresh Kumar129eec52014-11-27 08:54:06 +0530183
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530184static inline void dev_pm_opp_of_remove_table(struct device *dev)
Viresh Kumar129eec52014-11-27 08:54:06 +0530185{
186}
Viresh Kumar8d4d4e92015-06-12 17:10:38 +0530187
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530188static inline int dev_pm_opp_of_cpumask_add_table(cpumask_var_t cpumask)
Viresh Kumar8d4d4e92015-06-12 17:10:38 +0530189{
190 return -ENOSYS;
191}
192
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530193static inline void dev_pm_opp_of_cpumask_remove_table(cpumask_var_t cpumask)
Viresh Kumar8d4d4e92015-06-12 17:10:38 +0530194{
195}
196
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530197static inline int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask)
Viresh Kumar8d4d4e92015-06-12 17:10:38 +0530198{
199 return -ENOSYS;
200}
201
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530202static inline int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask)
Viresh Kumar8d4d4e92015-06-12 17:10:38 +0530203{
204 return -ENOSYS;
205}
Shawn Guod6561bb2013-02-21 11:04:45 +0000206#endif
207
Nishanth Menone1f60b22010-10-13 00:13:10 +0200208#endif /* __LINUX_OPP_H__ */