blob: 5151b005958500c75f8b81d03e5a4bf93c962998 [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>
18#include <linux/cpufreq.h>
MyungJoo Ham03ca3702011-09-30 22:35:12 +020019#include <linux/notifier.h>
Nishanth Menone1f60b22010-10-13 00:13:10 +020020
Nishanth Menon47d43ba2013-09-19 16:03:51 -050021struct dev_pm_opp;
Paul Gortmaker313162d2012-01-30 11:46:54 -050022struct device;
Nishanth Menone1f60b22010-10-13 00:13:10 +020023
Nishanth Menon47d43ba2013-09-19 16:03:51 -050024enum dev_pm_opp_event {
MyungJoo Ham03ca3702011-09-30 22:35:12 +020025 OPP_EVENT_ADD, OPP_EVENT_ENABLE, OPP_EVENT_DISABLE,
26};
27
Nishanth Menone1f60b22010-10-13 00:13:10 +020028#if defined(CONFIG_PM_OPP)
29
Nishanth Menon47d43ba2013-09-19 16:03:51 -050030unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp);
Nishanth Menone1f60b22010-10-13 00:13:10 +020031
Nishanth Menon47d43ba2013-09-19 16:03:51 -050032unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp);
Nishanth Menone1f60b22010-10-13 00:13:10 +020033
Nishanth Menon5d4879c2013-09-19 16:03:50 -050034int dev_pm_opp_get_opp_count(struct device *dev);
Nishanth Menone1f60b22010-10-13 00:13:10 +020035
Nishanth Menon47d43ba2013-09-19 16:03:51 -050036struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
37 unsigned long freq,
38 bool available);
Nishanth Menone1f60b22010-10-13 00:13:10 +020039
Nishanth Menon47d43ba2013-09-19 16:03:51 -050040struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
41 unsigned long *freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +020042
Nishanth Menon47d43ba2013-09-19 16:03:51 -050043struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
44 unsigned long *freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +020045
Nishanth Menon5d4879c2013-09-19 16:03:50 -050046int dev_pm_opp_add(struct device *dev, unsigned long freq,
47 unsigned long u_volt);
Nishanth Menone1f60b22010-10-13 00:13:10 +020048
Nishanth Menon5d4879c2013-09-19 16:03:50 -050049int dev_pm_opp_enable(struct device *dev, unsigned long freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +020050
Nishanth Menon5d4879c2013-09-19 16:03:50 -050051int dev_pm_opp_disable(struct device *dev, unsigned long freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +020052
Nishanth Menon5d4879c2013-09-19 16:03:50 -050053struct srcu_notifier_head *dev_pm_opp_get_notifier(struct device *dev);
Nishanth Menone1f60b22010-10-13 00:13:10 +020054#else
Nishanth Menon47d43ba2013-09-19 16:03:51 -050055static inline unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp)
Nishanth Menone1f60b22010-10-13 00:13:10 +020056{
57 return 0;
58}
59
Nishanth Menon47d43ba2013-09-19 16:03:51 -050060static inline unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp)
Nishanth Menone1f60b22010-10-13 00:13:10 +020061{
62 return 0;
63}
64
Nishanth Menon5d4879c2013-09-19 16:03:50 -050065static inline int dev_pm_opp_get_opp_count(struct device *dev)
Nishanth Menone1f60b22010-10-13 00:13:10 +020066{
67 return 0;
68}
69
Nishanth Menon47d43ba2013-09-19 16:03:51 -050070static inline struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
Nishanth Menone1f60b22010-10-13 00:13:10 +020071 unsigned long freq, bool available)
72{
73 return ERR_PTR(-EINVAL);
74}
75
Nishanth Menon47d43ba2013-09-19 16:03:51 -050076static inline struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
Nishanth Menone1f60b22010-10-13 00:13:10 +020077 unsigned long *freq)
78{
79 return ERR_PTR(-EINVAL);
80}
81
Nishanth Menon47d43ba2013-09-19 16:03:51 -050082static inline struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
Nishanth Menone1f60b22010-10-13 00:13:10 +020083 unsigned long *freq)
84{
85 return ERR_PTR(-EINVAL);
86}
87
Nishanth Menon5d4879c2013-09-19 16:03:50 -050088static inline int dev_pm_opp_add(struct device *dev, unsigned long freq,
Nishanth Menone1f60b22010-10-13 00:13:10 +020089 unsigned long u_volt)
90{
91 return -EINVAL;
92}
93
Nishanth Menon5d4879c2013-09-19 16:03:50 -050094static inline int dev_pm_opp_enable(struct device *dev, unsigned long freq)
Nishanth Menone1f60b22010-10-13 00:13:10 +020095{
96 return 0;
97}
98
Nishanth Menon5d4879c2013-09-19 16:03:50 -050099static inline int dev_pm_opp_disable(struct device *dev, unsigned long freq)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200100{
101 return 0;
102}
MyungJoo Ham03ca3702011-09-30 22:35:12 +0200103
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500104static inline struct srcu_notifier_head *dev_pm_opp_get_notifier(
105 struct device *dev)
MyungJoo Ham03ca3702011-09-30 22:35:12 +0200106{
107 return ERR_PTR(-EINVAL);
108}
Tony Lindgrena96d69d2011-11-03 10:12:27 +0100109#endif /* CONFIG_PM_OPP */
Nishanth Menone1f60b22010-10-13 00:13:10 +0200110
Shawn Guod6561bb2013-02-21 11:04:45 +0000111#if defined(CONFIG_PM_OPP) && defined(CONFIG_OF)
112int of_init_opp_table(struct device *dev);
113#else
114static inline int of_init_opp_table(struct device *dev)
115{
116 return -EINVAL;
117}
118#endif
119
Nishanth Menone1f60b22010-10-13 00:13:10 +0200120#if defined(CONFIG_CPU_FREQ) && defined(CONFIG_PM_OPP)
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500121int dev_pm_opp_init_cpufreq_table(struct device *dev,
Nishanth Menone1f60b22010-10-13 00:13:10 +0200122 struct cpufreq_frequency_table **table);
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500123void dev_pm_opp_free_cpufreq_table(struct device *dev,
Nishanth Menon99f381d2011-06-10 20:24:57 +0200124 struct cpufreq_frequency_table **table);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200125#else
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500126static inline int dev_pm_opp_init_cpufreq_table(struct device *dev,
Nishanth Menone1f60b22010-10-13 00:13:10 +0200127 struct cpufreq_frequency_table **table)
128{
129 return -EINVAL;
130}
Nishanth Menon99f381d2011-06-10 20:24:57 +0200131
132static inline
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500133void dev_pm_opp_free_cpufreq_table(struct device *dev,
Nishanth Menon99f381d2011-06-10 20:24:57 +0200134 struct cpufreq_frequency_table **table)
135{
136}
Nishanth Menone1f60b22010-10-13 00:13:10 +0200137#endif /* CONFIG_CPU_FREQ */
138
139#endif /* __LINUX_OPP_H__ */