blob: 95403d2ccaf56b70207fa09e65c592d882fb30fd [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);
Bartlomiej Zolnierkiewicz4eafbd12015-09-08 18:41:01 +020037struct dev_pm_opp *dev_pm_opp_get_suspend_opp(struct device *dev);
Nishanth Menone1f60b22010-10-13 00:13:10 +020038
Nishanth Menon47d43ba2013-09-19 16:03:51 -050039struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
40 unsigned long freq,
41 bool available);
Nishanth Menone1f60b22010-10-13 00:13:10 +020042
Nishanth Menon47d43ba2013-09-19 16:03:51 -050043struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
44 unsigned long *freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +020045
Nishanth Menon47d43ba2013-09-19 16:03:51 -050046struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
47 unsigned long *freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +020048
Nishanth Menon5d4879c2013-09-19 16:03:50 -050049int dev_pm_opp_add(struct device *dev, unsigned long freq,
50 unsigned long u_volt);
Viresh Kumar129eec52014-11-27 08:54:06 +053051void dev_pm_opp_remove(struct device *dev, unsigned long freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +020052
Nishanth Menon5d4879c2013-09-19 16:03:50 -050053int dev_pm_opp_enable(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_disable(struct device *dev, unsigned long freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +020056
Nishanth Menon5d4879c2013-09-19 16:03:50 -050057struct srcu_notifier_head *dev_pm_opp_get_notifier(struct device *dev);
Viresh Kumar7de36b02015-12-09 08:01:46 +053058int dev_pm_opp_set_supported_hw(struct device *dev, const u32 *versions,
59 unsigned int count);
60void dev_pm_opp_put_supported_hw(struct device *dev);
Viresh Kumar01fb4d32015-12-09 08:01:47 +053061int dev_pm_opp_set_prop_name(struct device *dev, const char *name);
62void dev_pm_opp_put_prop_name(struct device *dev);
Nishanth Menone1f60b22010-10-13 00:13:10 +020063#else
Nishanth Menon47d43ba2013-09-19 16:03:51 -050064static inline unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp)
Nishanth Menone1f60b22010-10-13 00:13:10 +020065{
66 return 0;
67}
68
Nishanth Menon47d43ba2013-09-19 16:03:51 -050069static inline unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp)
Nishanth Menone1f60b22010-10-13 00:13:10 +020070{
71 return 0;
72}
73
Bartlomiej Zolnierkiewicz19445b22015-07-09 17:43:35 +020074static inline bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp)
75{
76 return false;
77}
78
Nishanth Menon5d4879c2013-09-19 16:03:50 -050079static inline int dev_pm_opp_get_opp_count(struct device *dev)
Nishanth Menone1f60b22010-10-13 00:13:10 +020080{
81 return 0;
82}
83
Viresh Kumar3ca9bb32015-07-29 16:23:03 +053084static inline unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev)
85{
86 return 0;
87}
88
Bartlomiej Zolnierkiewicz4eafbd12015-09-08 18:41:01 +020089static inline struct dev_pm_opp *dev_pm_opp_get_suspend_opp(struct device *dev)
90{
91 return NULL;
92}
93
Nishanth Menon47d43ba2013-09-19 16:03:51 -050094static inline struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
Nishanth Menone1f60b22010-10-13 00:13:10 +020095 unsigned long freq, bool available)
96{
97 return ERR_PTR(-EINVAL);
98}
99
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500100static inline struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
Nishanth Menone1f60b22010-10-13 00:13:10 +0200101 unsigned long *freq)
102{
103 return ERR_PTR(-EINVAL);
104}
105
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500106static inline struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
Nishanth Menone1f60b22010-10-13 00:13:10 +0200107 unsigned long *freq)
108{
109 return ERR_PTR(-EINVAL);
110}
111
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500112static inline int dev_pm_opp_add(struct device *dev, unsigned long freq,
Nishanth Menone1f60b22010-10-13 00:13:10 +0200113 unsigned long u_volt)
114{
115 return -EINVAL;
116}
117
Viresh Kumar129eec52014-11-27 08:54:06 +0530118static inline void dev_pm_opp_remove(struct device *dev, unsigned long freq)
119{
120}
121
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500122static inline int dev_pm_opp_enable(struct device *dev, unsigned long freq)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200123{
124 return 0;
125}
126
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500127static inline int dev_pm_opp_disable(struct device *dev, unsigned long freq)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200128{
129 return 0;
130}
MyungJoo Ham03ca3702011-09-30 22:35:12 +0200131
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500132static inline struct srcu_notifier_head *dev_pm_opp_get_notifier(
133 struct device *dev)
MyungJoo Ham03ca3702011-09-30 22:35:12 +0200134{
135 return ERR_PTR(-EINVAL);
136}
Viresh Kumar7de36b02015-12-09 08:01:46 +0530137
138static inline int dev_pm_opp_set_supported_hw(struct device *dev,
139 const u32 *versions,
140 unsigned int count)
141{
142 return -EINVAL;
143}
144
145static inline void dev_pm_opp_put_supported_hw(struct device *dev) {}
146
Viresh Kumar01fb4d32015-12-09 08:01:47 +0530147static inline int dev_pm_opp_set_prop_name(struct device *dev, const char *name)
148{
149 return -EINVAL;
150}
151
152static inline void dev_pm_opp_put_prop_name(struct device *dev) {}
153
Tony Lindgrena96d69d2011-11-03 10:12:27 +0100154#endif /* CONFIG_PM_OPP */
Nishanth Menone1f60b22010-10-13 00:13:10 +0200155
Shawn Guod6561bb2013-02-21 11:04:45 +0000156#if defined(CONFIG_PM_OPP) && defined(CONFIG_OF)
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530157int dev_pm_opp_of_add_table(struct device *dev);
158void dev_pm_opp_of_remove_table(struct device *dev);
159int dev_pm_opp_of_cpumask_add_table(cpumask_var_t cpumask);
160void dev_pm_opp_of_cpumask_remove_table(cpumask_var_t cpumask);
161int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask);
162int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask);
Shawn Guod6561bb2013-02-21 11:04:45 +0000163#else
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530164static inline int dev_pm_opp_of_add_table(struct device *dev)
Shawn Guod6561bb2013-02-21 11:04:45 +0000165{
166 return -EINVAL;
167}
Viresh Kumar129eec52014-11-27 08:54:06 +0530168
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530169static inline void dev_pm_opp_of_remove_table(struct device *dev)
Viresh Kumar129eec52014-11-27 08:54:06 +0530170{
171}
Viresh Kumar8d4d4e92015-06-12 17:10:38 +0530172
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530173static inline int dev_pm_opp_of_cpumask_add_table(cpumask_var_t cpumask)
Viresh Kumar8d4d4e92015-06-12 17:10:38 +0530174{
175 return -ENOSYS;
176}
177
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530178static inline void dev_pm_opp_of_cpumask_remove_table(cpumask_var_t cpumask)
Viresh Kumar8d4d4e92015-06-12 17:10:38 +0530179{
180}
181
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530182static inline int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask)
Viresh Kumar8d4d4e92015-06-12 17:10:38 +0530183{
184 return -ENOSYS;
185}
186
Viresh Kumar8f8d37b2015-09-04 13:47:24 +0530187static inline int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask)
Viresh Kumar8d4d4e92015-06-12 17:10:38 +0530188{
189 return -ENOSYS;
190}
Shawn Guod6561bb2013-02-21 11:04:45 +0000191#endif
192
Nishanth Menone1f60b22010-10-13 00:13:10 +0200193#endif /* __LINUX_OPP_H__ */