blob: cab7ba55bedb854294488a97c2bb299cde679d33 [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);
Nishanth Menone1f60b22010-10-13 00:13:10 +020037
Nishanth Menon47d43ba2013-09-19 16:03:51 -050038struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
39 unsigned long freq,
40 bool available);
Nishanth Menone1f60b22010-10-13 00:13:10 +020041
Nishanth Menon47d43ba2013-09-19 16:03:51 -050042struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
43 unsigned long *freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +020044
Nishanth Menon47d43ba2013-09-19 16:03:51 -050045struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
46 unsigned long *freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +020047
Nishanth Menon5d4879c2013-09-19 16:03:50 -050048int dev_pm_opp_add(struct device *dev, unsigned long freq,
49 unsigned long u_volt);
Viresh Kumar129eec52014-11-27 08:54:06 +053050void dev_pm_opp_remove(struct device *dev, unsigned long freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +020051
Nishanth Menon5d4879c2013-09-19 16:03:50 -050052int dev_pm_opp_enable(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_disable(struct device *dev, unsigned long freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +020055
Nishanth Menon5d4879c2013-09-19 16:03:50 -050056struct srcu_notifier_head *dev_pm_opp_get_notifier(struct device *dev);
Nishanth Menone1f60b22010-10-13 00:13:10 +020057#else
Nishanth Menon47d43ba2013-09-19 16:03:51 -050058static inline unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp)
Nishanth Menone1f60b22010-10-13 00:13:10 +020059{
60 return 0;
61}
62
Nishanth Menon47d43ba2013-09-19 16:03:51 -050063static inline unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp)
Nishanth Menone1f60b22010-10-13 00:13:10 +020064{
65 return 0;
66}
67
Bartlomiej Zolnierkiewicz19445b22015-07-09 17:43:35 +020068static inline bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp)
69{
70 return false;
71}
72
Nishanth Menon5d4879c2013-09-19 16:03:50 -050073static inline int dev_pm_opp_get_opp_count(struct device *dev)
Nishanth Menone1f60b22010-10-13 00:13:10 +020074{
75 return 0;
76}
77
Viresh Kumar3ca9bb32015-07-29 16:23:03 +053078static inline unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev)
79{
80 return 0;
81}
82
Nishanth Menon47d43ba2013-09-19 16:03:51 -050083static inline struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
Nishanth Menone1f60b22010-10-13 00:13:10 +020084 unsigned long freq, bool available)
85{
86 return ERR_PTR(-EINVAL);
87}
88
Nishanth Menon47d43ba2013-09-19 16:03:51 -050089static inline struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
Nishanth Menone1f60b22010-10-13 00:13:10 +020090 unsigned long *freq)
91{
92 return ERR_PTR(-EINVAL);
93}
94
Nishanth Menon47d43ba2013-09-19 16:03:51 -050095static inline struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
Nishanth Menone1f60b22010-10-13 00:13:10 +020096 unsigned long *freq)
97{
98 return ERR_PTR(-EINVAL);
99}
100
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500101static inline int dev_pm_opp_add(struct device *dev, unsigned long freq,
Nishanth Menone1f60b22010-10-13 00:13:10 +0200102 unsigned long u_volt)
103{
104 return -EINVAL;
105}
106
Viresh Kumar129eec52014-11-27 08:54:06 +0530107static inline void dev_pm_opp_remove(struct device *dev, unsigned long freq)
108{
109}
110
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500111static inline int dev_pm_opp_enable(struct device *dev, unsigned long freq)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200112{
113 return 0;
114}
115
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500116static inline int dev_pm_opp_disable(struct device *dev, unsigned long freq)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200117{
118 return 0;
119}
MyungJoo Ham03ca3702011-09-30 22:35:12 +0200120
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500121static inline struct srcu_notifier_head *dev_pm_opp_get_notifier(
122 struct device *dev)
MyungJoo Ham03ca3702011-09-30 22:35:12 +0200123{
124 return ERR_PTR(-EINVAL);
125}
Tony Lindgrena96d69d2011-11-03 10:12:27 +0100126#endif /* CONFIG_PM_OPP */
Nishanth Menone1f60b22010-10-13 00:13:10 +0200127
Shawn Guod6561bb2013-02-21 11:04:45 +0000128#if defined(CONFIG_PM_OPP) && defined(CONFIG_OF)
129int of_init_opp_table(struct device *dev);
Viresh Kumar129eec52014-11-27 08:54:06 +0530130void of_free_opp_table(struct device *dev);
Viresh Kumar8d4d4e92015-06-12 17:10:38 +0530131int of_cpumask_init_opp_table(cpumask_var_t cpumask);
132void of_cpumask_free_opp_table(cpumask_var_t cpumask);
133int of_get_cpus_sharing_opps(struct device *cpu_dev, cpumask_var_t cpumask);
134int set_cpus_sharing_opps(struct device *cpu_dev, cpumask_var_t cpumask);
Shawn Guod6561bb2013-02-21 11:04:45 +0000135#else
136static inline int of_init_opp_table(struct device *dev)
137{
138 return -EINVAL;
139}
Viresh Kumar129eec52014-11-27 08:54:06 +0530140
141static inline void of_free_opp_table(struct device *dev)
142{
143}
Viresh Kumar8d4d4e92015-06-12 17:10:38 +0530144
145static inline int of_cpumask_init_opp_table(cpumask_var_t cpumask)
146{
147 return -ENOSYS;
148}
149
150static inline void of_cpumask_free_opp_table(cpumask_var_t cpumask)
151{
152}
153
154static inline int of_get_cpus_sharing_opps(struct device *cpu_dev, cpumask_var_t cpumask)
155{
156 return -ENOSYS;
157}
158
159static inline int set_cpus_sharing_opps(struct device *cpu_dev, cpumask_var_t cpumask)
160{
161 return -ENOSYS;
162}
Shawn Guod6561bb2013-02-21 11:04:45 +0000163#endif
164
Nishanth Menone1f60b22010-10-13 00:13:10 +0200165#endif /* __LINUX_OPP_H__ */