pm_opp.h 5.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * Generic OPP Interface
 *
 * Copyright (C) 2009-2010 Texas Instruments Incorporated.
 *	Nishanth Menon
 *	Romit Dasgupta
 *	Kevin Hilman
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#ifndef __LINUX_OPP_H__
#define __LINUX_OPP_H__

#include <linux/err.h>
18
#include <linux/notifier.h>
19

20
struct dev_pm_opp;
21
struct device;
22

23
enum dev_pm_opp_event {
24
	OPP_EVENT_ADD, OPP_EVENT_REMOVE, OPP_EVENT_ENABLE, OPP_EVENT_DISABLE,
25 26
};

27 28
#if defined(CONFIG_PM_OPP)

29
unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp);
30

31
unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp);
32

33 34
bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp);

35
int dev_pm_opp_get_opp_count(struct device *dev);
36
unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev);
37
struct dev_pm_opp *dev_pm_opp_get_suspend_opp(struct device *dev);
38

39 40 41
struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
					      unsigned long freq,
					      bool available);
42

43 44
struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
					      unsigned long *freq);
45

46 47
struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
					     unsigned long *freq);
48

49 50
int dev_pm_opp_add(struct device *dev, unsigned long freq,
		   unsigned long u_volt);
51
void dev_pm_opp_remove(struct device *dev, unsigned long freq);
52

53
int dev_pm_opp_enable(struct device *dev, unsigned long freq);
54

55
int dev_pm_opp_disable(struct device *dev, unsigned long freq);
56

57
struct srcu_notifier_head *dev_pm_opp_get_notifier(struct device *dev);
58 59 60
int dev_pm_opp_set_supported_hw(struct device *dev, const u32 *versions,
				unsigned int count);
void dev_pm_opp_put_supported_hw(struct device *dev);
61 62
int dev_pm_opp_set_prop_name(struct device *dev, const char *name);
void dev_pm_opp_put_prop_name(struct device *dev);
63 64
int dev_pm_opp_set_regulator(struct device *dev, const char *name);
void dev_pm_opp_put_regulator(struct device *dev);
65
#else
66
static inline unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp)
67 68 69 70
{
	return 0;
}

71
static inline unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp)
72 73 74 75
{
	return 0;
}

76 77 78 79 80
static inline bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp)
{
	return false;
}

81
static inline int dev_pm_opp_get_opp_count(struct device *dev)
82 83 84 85
{
	return 0;
}

86 87 88 89 90
static inline unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev)
{
	return 0;
}

91 92 93 94 95
static inline struct dev_pm_opp *dev_pm_opp_get_suspend_opp(struct device *dev)
{
	return NULL;
}

96
static inline struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
97 98 99 100 101
					unsigned long freq, bool available)
{
	return ERR_PTR(-EINVAL);
}

102
static inline struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
103 104 105 106 107
					unsigned long *freq)
{
	return ERR_PTR(-EINVAL);
}

108
static inline struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
109 110 111 112 113
					unsigned long *freq)
{
	return ERR_PTR(-EINVAL);
}

114
static inline int dev_pm_opp_add(struct device *dev, unsigned long freq,
115 116 117 118 119
					unsigned long u_volt)
{
	return -EINVAL;
}

120 121 122 123
static inline void dev_pm_opp_remove(struct device *dev, unsigned long freq)
{
}

124
static inline int dev_pm_opp_enable(struct device *dev, unsigned long freq)
125 126 127 128
{
	return 0;
}

129
static inline int dev_pm_opp_disable(struct device *dev, unsigned long freq)
130 131 132
{
	return 0;
}
133

134 135
static inline struct srcu_notifier_head *dev_pm_opp_get_notifier(
							struct device *dev)
136 137 138
{
	return ERR_PTR(-EINVAL);
}
139 140 141 142 143 144 145 146 147 148

static inline int dev_pm_opp_set_supported_hw(struct device *dev,
					      const u32 *versions,
					      unsigned int count)
{
	return -EINVAL;
}

static inline void dev_pm_opp_put_supported_hw(struct device *dev) {}

149 150 151 152 153 154 155
static inline int dev_pm_opp_set_prop_name(struct device *dev, const char *name)
{
	return -EINVAL;
}

static inline void dev_pm_opp_put_prop_name(struct device *dev) {}

156 157 158 159 160 161 162
static inline int dev_pm_opp_set_regulator(struct device *dev, const char *name)
{
	return -EINVAL;
}

static inline void dev_pm_opp_put_regulator(struct device *dev) {}

163
#endif		/* CONFIG_PM_OPP */
164

165
#if defined(CONFIG_PM_OPP) && defined(CONFIG_OF)
166 167 168 169 170 171
int dev_pm_opp_of_add_table(struct device *dev);
void dev_pm_opp_of_remove_table(struct device *dev);
int dev_pm_opp_of_cpumask_add_table(cpumask_var_t cpumask);
void dev_pm_opp_of_cpumask_remove_table(cpumask_var_t cpumask);
int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask);
int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask);
172
#else
173
static inline int dev_pm_opp_of_add_table(struct device *dev)
174 175 176
{
	return -EINVAL;
}
177

178
static inline void dev_pm_opp_of_remove_table(struct device *dev)
179 180
{
}
181

182
static inline int dev_pm_opp_of_cpumask_add_table(cpumask_var_t cpumask)
183 184 185 186
{
	return -ENOSYS;
}

187
static inline void dev_pm_opp_of_cpumask_remove_table(cpumask_var_t cpumask)
188 189 190
{
}

191
static inline int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask)
192 193 194 195
{
	return -ENOSYS;
}

196
static inline int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask)
197 198 199
{
	return -ENOSYS;
}
200 201
#endif

202
#endif		/* __LINUX_OPP_H__ */