blob: bca26157f5b695fa1d2b6381800ad660faf972f5 [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);
Viresh Kumar21743442016-02-09 10:30:36 +053038unsigned long dev_pm_opp_get_max_transition_latency(struct device *dev);
Bartlomiej Zolnierkiewicz4eafbd12015-09-08 18:41:01 +020039struct dev_pm_opp *dev_pm_opp_get_suspend_opp(struct device *dev);
Nishanth Menone1f60b22010-10-13 00:13:10 +020040
Nishanth Menon47d43ba2013-09-19 16:03:51 -050041struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
42 unsigned long freq,
43 bool available);
Nishanth Menone1f60b22010-10-13 00:13:10 +020044
Nishanth Menon47d43ba2013-09-19 16:03:51 -050045struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
46 unsigned long *freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +020047
Nishanth Menon47d43ba2013-09-19 16:03:51 -050048struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
49 unsigned long *freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +020050
Nishanth Menon5d4879c2013-09-19 16:03:50 -050051int dev_pm_opp_add(struct device *dev, unsigned long freq,
52 unsigned long u_volt);
Viresh Kumar129eec52014-11-27 08:54:06 +053053void dev_pm_opp_remove(struct device *dev, unsigned long freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +020054
Nishanth Menon5d4879c2013-09-19 16:03:50 -050055int dev_pm_opp_enable(struct device *dev, unsigned long freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +020056
Nishanth Menon5d4879c2013-09-19 16:03:50 -050057int dev_pm_opp_disable(struct device *dev, unsigned long freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +020058
Nishanth Menon5d4879c2013-09-19 16:03:50 -050059struct srcu_notifier_head *dev_pm_opp_get_notifier(struct device *dev);
Viresh Kumar7de36b02015-12-09 08:01:46 +053060int 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);
Viresh Kumar01fb4d32015-12-09 08:01:47 +053063int dev_pm_opp_set_prop_name(struct device *dev, const char *name);
64void dev_pm_opp_put_prop_name(struct device *dev);
Viresh Kumar9f8ea962016-02-09 10:30:33 +053065int dev_pm_opp_set_regulator(struct device *dev, const char *name);
66void dev_pm_opp_put_regulator(struct device *dev);
Viresh Kumar6a0712f2016-02-09 10:30:39 +053067int dev_pm_opp_set_rate(struct device *dev, unsigned long target_freq);
Arnd Bergmannddbb74b2016-04-30 13:33:29 +020068int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev, const struct cpumask *cpumask);
69int dev_pm_opp_get_sharing_cpus(struct device *cpu_dev, struct cpumask *cpumask);
Sudeep Holla411466c2016-05-03 15:05:04 +010070void dev_pm_opp_remove_table(struct device *dev);
71void dev_pm_opp_cpumask_remove_table(const struct cpumask *cpumask);
Nishanth Menone1f60b22010-10-13 00:13:10 +020072#else
Nishanth Menon47d43ba2013-09-19 16:03:51 -050073static inline unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp)
Nishanth Menone1f60b22010-10-13 00:13:10 +020074{
75 return 0;
76}
77
Nishanth Menon47d43ba2013-09-19 16:03:51 -050078static inline unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp)
Nishanth Menone1f60b22010-10-13 00:13:10 +020079{
80 return 0;
81}
82
Bartlomiej Zolnierkiewicz19445b22015-07-09 17:43:35 +020083static inline bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp)
84{
85 return false;
86}
87
Nishanth Menon5d4879c2013-09-19 16:03:50 -050088static inline int dev_pm_opp_get_opp_count(struct device *dev)
Nishanth Menone1f60b22010-10-13 00:13:10 +020089{
90 return 0;
91}
92
Viresh Kumar3ca9bb32015-07-29 16:23:03 +053093static inline unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev)
94{
95 return 0;
96}
97
Viresh Kumar655c9df2016-02-09 10:30:35 +053098static inline unsigned long dev_pm_opp_get_max_volt_latency(struct device *dev)
99{
100 return 0;
101}
102
Viresh Kumar21743442016-02-09 10:30:36 +0530103static inline unsigned long dev_pm_opp_get_max_transition_latency(struct device *dev)
104{
105 return 0;
106}
107
Bartlomiej Zolnierkiewicz4eafbd12015-09-08 18:41:01 +0200108static inline struct dev_pm_opp *dev_pm_opp_get_suspend_opp(struct device *dev)
109{
110 return NULL;
111}
112
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500113static inline struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
Nishanth Menone1f60b22010-10-13 00:13:10 +0200114 unsigned long freq, bool available)
115{
Viresh Kumard708b382016-04-27 08:52:21 +0530116 return ERR_PTR(-ENOTSUPP);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200117}
118
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500119static inline struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
Nishanth Menone1f60b22010-10-13 00:13:10 +0200120 unsigned long *freq)
121{
Viresh Kumard708b382016-04-27 08:52:21 +0530122 return ERR_PTR(-ENOTSUPP);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200123}
124
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500125static inline struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
Nishanth Menone1f60b22010-10-13 00:13:10 +0200126 unsigned long *freq)
127{
Viresh Kumard708b382016-04-27 08:52:21 +0530128 return ERR_PTR(-ENOTSUPP);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200129}
130
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500131static inline int dev_pm_opp_add(struct device *dev, unsigned long freq,
Nishanth Menone1f60b22010-10-13 00:13:10 +0200132 unsigned long u_volt)
133{
Viresh Kumard708b382016-04-27 08:52:21 +0530134 return -ENOTSUPP;
Nishanth Menone1f60b22010-10-13 00:13:10 +0200135}
136
Viresh Kumar129eec52014-11-27 08:54:06 +0530137static inline void dev_pm_opp_remove(struct device *dev, unsigned long freq)
138{
139}
140
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500141static inline int dev_pm_opp_enable(struct device *dev, unsigned long freq)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200142{
143 return 0;
144}
145
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500146static inline int dev_pm_opp_disable(struct device *dev, unsigned long freq)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200147{
148 return 0;
149}
MyungJoo Ham03ca3702011-09-30 22:35:12 +0200150
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500151static inline struct srcu_notifier_head *dev_pm_opp_get_notifier(
152 struct device *dev)
MyungJoo Ham03ca3702011-09-30 22:35:12 +0200153{
Viresh Kumard708b382016-04-27 08:52:21 +0530154 return ERR_PTR(-ENOTSUPP);
MyungJoo Ham03ca3702011-09-30 22:35:12 +0200155}
Viresh Kumar7de36b02015-12-09 08:01:46 +0530156
157static inline int dev_pm_opp_set_supported_hw(struct device *dev,
158 const u32 *versions,
159 unsigned int count)
160{
Viresh Kumard708b382016-04-27 08:52:21 +0530161 return -ENOTSUPP;
Viresh Kumar7de36b02015-12-09 08:01:46 +0530162}
163
164static inline void dev_pm_opp_put_supported_hw(struct device *dev) {}
165
Viresh Kumar01fb4d32015-12-09 08:01:47 +0530166static inline int dev_pm_opp_set_prop_name(struct device *dev, const char *name)
167{
Viresh Kumard708b382016-04-27 08:52:21 +0530168 return -ENOTSUPP;
Viresh Kumar01fb4d32015-12-09 08:01:47 +0530169}
170
171static inline void dev_pm_opp_put_prop_name(struct device *dev) {}
172
Viresh Kumar9f8ea962016-02-09 10:30:33 +0530173static inline int dev_pm_opp_set_regulator(struct device *dev, const char *name)
174{
Viresh Kumard708b382016-04-27 08:52:21 +0530175 return -ENOTSUPP;
Viresh Kumar9f8ea962016-02-09 10:30:33 +0530176}
177
178static inline void dev_pm_opp_put_regulator(struct device *dev) {}
179
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530180static inline int dev_pm_opp_set_rate(struct device *dev, unsigned long target_freq)
181{
Viresh Kumard708b382016-04-27 08:52:21 +0530182 return -ENOTSUPP;
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530183}
184
Arnd Bergmannddbb74b2016-04-30 13:33:29 +0200185static inline int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev, const struct cpumask *cpumask)
Viresh Kumar642aa8c2016-04-21 14:28:55 +0530186{
Viresh Kumard708b382016-04-27 08:52:21 +0530187 return -ENOTSUPP;
Viresh Kumar642aa8c2016-04-21 14:28:55 +0530188}
189
Arnd Bergmannddbb74b2016-04-30 13:33:29 +0200190static inline int dev_pm_opp_get_sharing_cpus(struct device *cpu_dev, struct cpumask *cpumask)
Viresh Kumar6f707da2016-04-27 08:52:23 +0530191{
192 return -EINVAL;
193}
194
Sudeep Holla411466c2016-05-03 15:05:04 +0100195static inline void dev_pm_opp_remove_table(struct device *dev)
196{
197}
198
199static inline void dev_pm_opp_cpumask_remove_table(const struct cpumask *cpumask)
200{
201}
202
Tony Lindgrena96d69d2011-11-03 10:12:27 +0100203#endif /* CONFIG_PM_OPP */
Nishanth Menone1f60b22010-10-13 00:13:10 +0200204
Shawn Guod6561bb2013-02-21 11:04:45 +0000205#if defined(CONFIG_PM_OPP) && defined(CONFIG_OF)
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530206int dev_pm_opp_of_add_table(struct device *dev);
207void dev_pm_opp_of_remove_table(struct device *dev);
Arnd Bergmannddbb74b2016-04-30 13:33:29 +0200208int dev_pm_opp_of_cpumask_add_table(const struct cpumask *cpumask);
209void dev_pm_opp_of_cpumask_remove_table(const struct cpumask *cpumask);
210int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev, struct cpumask *cpumask);
Shawn Guod6561bb2013-02-21 11:04:45 +0000211#else
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530212static inline int dev_pm_opp_of_add_table(struct device *dev)
Shawn Guod6561bb2013-02-21 11:04:45 +0000213{
Viresh Kumard708b382016-04-27 08:52:21 +0530214 return -ENOTSUPP;
Shawn Guod6561bb2013-02-21 11:04:45 +0000215}
Viresh Kumar129eec52014-11-27 08:54:06 +0530216
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530217static inline void dev_pm_opp_of_remove_table(struct device *dev)
Viresh Kumar129eec52014-11-27 08:54:06 +0530218{
219}
Viresh Kumar8d4d4e92015-06-12 17:10:38 +0530220
Arnd Bergmannddbb74b2016-04-30 13:33:29 +0200221static inline int dev_pm_opp_of_cpumask_add_table(const struct cpumask *cpumask)
Viresh Kumar8d4d4e92015-06-12 17:10:38 +0530222{
Viresh Kumard708b382016-04-27 08:52:21 +0530223 return -ENOTSUPP;
Viresh Kumar8d4d4e92015-06-12 17:10:38 +0530224}
225
Arnd Bergmannddbb74b2016-04-30 13:33:29 +0200226static inline void dev_pm_opp_of_cpumask_remove_table(const struct cpumask *cpumask)
Viresh Kumar8d4d4e92015-06-12 17:10:38 +0530227{
228}
229
Arnd Bergmannddbb74b2016-04-30 13:33:29 +0200230static inline int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev, struct cpumask *cpumask)
Viresh Kumar8d4d4e92015-06-12 17:10:38 +0530231{
Viresh Kumard708b382016-04-27 08:52:21 +0530232 return -ENOTSUPP;
Viresh Kumar8d4d4e92015-06-12 17:10:38 +0530233}
Shawn Guod6561bb2013-02-21 11:04:45 +0000234#endif
235
Nishanth Menone1f60b22010-10-13 00:13:10 +0200236#endif /* __LINUX_OPP_H__ */