opp.h 8.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * 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 __DRIVER_OPP_H__
#define __DRIVER_OPP_H__

#include <linux/device.h>
#include <linux/kernel.h>
19
#include <linux/kref.h>
20
#include <linux/list.h>
V
Viresh Kumar 已提交
21
#include <linux/limits.h>
22
#include <linux/pm_opp.h>
23
#include <linux/notifier.h>
24

V
Viresh Kumar 已提交
25
struct clk;
26 27
struct regulator;

28
/* Lock to allow exclusive modification to the device and opp lists */
29
extern struct mutex opp_table_lock;
30

31 32
extern struct list_head opp_tables;

33 34 35
/*
 * Internal data structure organization with the OPP layer library is as
 * follows:
36
 * opp_tables (root)
37 38 39 40 41 42 43 44
 *	|- device 1 (represents voltage domain 1)
 *	|	|- opp 1 (availability, freq, voltage)
 *	|	|- opp 2 ..
 *	...	...
 *	|	`- opp n ..
 *	|- device 2 (represents the next voltage domain)
 *	...
 *	`- device m (represents mth voltage domain)
45
 * device 1, 2.. are represented by opp_table structure while each opp
46 47 48 49 50
 * is represented by the opp structure.
 */

/**
 * struct dev_pm_opp - Generic OPP description structure
51
 * @node:	opp table node. The nodes are maintained throughout the lifetime
52 53 54 55
 *		of boot. It is expected only an optimal set of OPPs are
 *		added to the library by the SoC framework.
 *		IMPORTANT: the opp nodes should be maintained in increasing
 *		order.
56
 * @kref:	for reference count of the OPP.
57
 * @available:	true/false - marks if this OPP as available or not
V
Viresh Kumar 已提交
58
 * @dynamic:	not-created from static DT entries.
59
 * @turbo:	true if turbo (boost) OPP
V
Viresh Kumar 已提交
60
 * @suspend:	true if suspend OPP
61
 * @pstate: Device's power domain's performance state.
62
 * @rate:	Frequency in hertz
63
 * @supplies:	Power supplies voltage/current values
64 65
 * @clock_latency_ns: Latency (in nanoseconds) of switching to this OPP's
 *		frequency from any other OPP's frequency.
66
 * @opp_table:	points back to the opp_table struct this opp belongs to
67
 * @np:		OPP's device node.
V
Viresh Kumar 已提交
68
 * @dentry:	debugfs dentry pointer (per opp)
69 70 71 72 73
 *
 * This structure stores the OPP information for a given device.
 */
struct dev_pm_opp {
	struct list_head node;
74
	struct kref kref;
75 76 77 78

	bool available;
	bool dynamic;
	bool turbo;
V
Viresh Kumar 已提交
79
	bool suspend;
80
	unsigned int pstate;
81 82
	unsigned long rate;

83
	struct dev_pm_opp_supply *supplies;
84

85 86
	unsigned long clock_latency_ns;

87
	struct opp_table *opp_table;
88 89

	struct device_node *np;
V
Viresh Kumar 已提交
90 91 92 93

#ifdef CONFIG_DEBUG_FS
	struct dentry *dentry;
#endif
94 95 96
};

/**
97
 * struct opp_device - devices managed by 'struct opp_table'
98 99
 * @node:	list node
 * @dev:	device to which the struct object belongs
V
Viresh Kumar 已提交
100
 * @dentry:	debugfs dentry pointer (per device)
101
 *
102 103
 * This is an internal data structure maintaining the devices that are managed
 * by 'struct opp_table'.
104
 */
105
struct opp_device {
106 107
	struct list_head node;
	const struct device *dev;
V
Viresh Kumar 已提交
108 109 110 111

#ifdef CONFIG_DEBUG_FS
	struct dentry *dentry;
#endif
112 113
};

114 115 116 117 118 119
enum opp_table_access {
	OPP_TABLE_ACCESS_UNKNOWN = 0,
	OPP_TABLE_ACCESS_EXCLUSIVE = 1,
	OPP_TABLE_ACCESS_SHARED = 2,
};

120
/**
121 122
 * struct opp_table - Device opp structure
 * @node:	table node - contains the devices with OPPs that
123
 *		have been registered. Nodes once added are not modified in this
124
 *		table.
125
 * @head:	notifier head to notify the OPP availability changes.
126
 * @dev_list:	list of devices that share these OPPs
127
 * @opp_list:	table of opps
128
 * @kref:	for reference count of the table.
129
 * @list_kref:	for reference count of the OPP list.
130
 * @lock:	mutex protecting the opp_list and dev_list.
131
 * @np:		struct device_node pointer for opp's DT node.
V
Viresh Kumar 已提交
132
 * @clock_latency_ns_max: Max clock latency in nanoseconds.
133
 * @parsed_static_opps: True if OPPs are initialized from DT.
134
 * @shared_opp: OPP is shared between multiple devices.
V
Viresh Kumar 已提交
135
 * @suspend_opp: Pointer to OPP to be used during device suspend.
136 137 138
 * @required_opp_tables: List of device OPP tables that are required by OPPs in
 *		this table.
 * @required_opp_count: Number of required devices.
139 140
 * @supported_hw: Array of version number to support.
 * @supported_hw_count: Number of elements in supported_hw array.
141
 * @prop_name: A name to postfix to many DT properties, while parsing them.
V
Viresh Kumar 已提交
142
 * @clk: Device's clock handle
143 144
 * @regulators: Supply regulators
 * @regulator_count: Number of power supply regulators
145
 * @genpd_performance_state: Device's power domain support performance state.
146
 * @is_genpd: Marks if the OPP table belongs to a genpd.
147
 * @set_opp: Platform specific set_opp callback
148
 * @set_opp_data: Data to be passed to set_opp callback
V
Viresh Kumar 已提交
149 150
 * @dentry:	debugfs dentry pointer of the real device directory (not links).
 * @dentry_name: Name of the real dentry.
151
 *
152 153
 * @voltage_tolerance_v1: In percentage, for v1 bindings only.
 *
154 155 156 157
 * This is an internal data structure maintaining the link to opps attached to
 * a device. This structure is not meant to be shared to users as it is
 * meant for book keeping and private to OPP library.
 */
158
struct opp_table {
159 160
	struct list_head node;

161
	struct blocking_notifier_head head;
162 163
	struct list_head dev_list;
	struct list_head opp_list;
164
	struct kref kref;
165
	struct kref list_kref;
V
Viresh Kumar 已提交
166
	struct mutex lock;
167 168 169

	struct device_node *np;
	unsigned long clock_latency_ns_max;
170 171 172 173

	/* For backward compatibility with v1 bindings */
	unsigned int voltage_tolerance_v1;

174
	bool parsed_static_opps;
175
	enum opp_table_access shared_opp;
176
	struct dev_pm_opp *suspend_opp;
V
Viresh Kumar 已提交
177

178 179 180
	struct opp_table **required_opp_tables;
	unsigned int required_opp_count;

181 182
	unsigned int *supported_hw;
	unsigned int supported_hw_count;
183
	const char *prop_name;
V
Viresh Kumar 已提交
184
	struct clk *clk;
185 186
	struct regulator **regulators;
	unsigned int regulator_count;
187
	bool genpd_performance_state;
188
	bool is_genpd;
189

190
	int (*set_opp)(struct dev_pm_set_opp_data *data);
191 192
	struct dev_pm_set_opp_data *set_opp_data;

V
Viresh Kumar 已提交
193 194 195 196
#ifdef CONFIG_DEBUG_FS
	struct dentry *dentry;
	char dentry_name[NAME_MAX];
#endif
197 198 199
};

/* Routines internal to opp core */
200
void dev_pm_opp_get(struct dev_pm_opp *opp);
201
void _opp_remove_all_static(struct opp_table *opp_table);
202
void _get_opp_table_kref(struct opp_table *opp_table);
203
int _get_opp_count(struct opp_table *opp_table);
204 205
struct opp_table *_find_opp_table(struct device *dev);
struct opp_device *_add_opp_dev(const struct device *dev, struct opp_table *opp_table);
206
void _dev_pm_opp_find_and_remove_table(struct device *dev);
207 208
struct dev_pm_opp *_opp_allocate(struct opp_table *opp_table);
void _opp_free(struct dev_pm_opp *opp);
209
int _opp_add(struct device *dev, struct dev_pm_opp *new_opp, struct opp_table *opp_table, bool rate_not_available);
210
int _opp_add_v1(struct opp_table *opp_table, struct device *dev, unsigned long freq, long u_volt, bool dynamic);
211
void _dev_pm_opp_cpumask_remove_table(const struct cpumask *cpumask, int last_cpu);
212
struct opp_table *_add_opp_table(struct device *dev);
213
void _put_opp_list_kref(struct opp_table *opp_table);
214 215

#ifdef CONFIG_OF
216
void _of_init_opp_table(struct opp_table *opp_table, struct device *dev, int index);
217
void _of_clear_opp_table(struct opp_table *opp_table);
218
struct opp_table *_managed_opp(struct device *dev, int index);
219
#else
220
static inline void _of_init_opp_table(struct opp_table *opp_table, struct device *dev, int index) {}
221
static inline void _of_clear_opp_table(struct opp_table *opp_table) {}
222
static inline struct opp_table *_managed_opp(struct device *dev, int index) { return NULL; }
223
#endif
224

V
Viresh Kumar 已提交
225 226
#ifdef CONFIG_DEBUG_FS
void opp_debug_remove_one(struct dev_pm_opp *opp);
227 228 229
int opp_debug_create_one(struct dev_pm_opp *opp, struct opp_table *opp_table);
int opp_debug_register(struct opp_device *opp_dev, struct opp_table *opp_table);
void opp_debug_unregister(struct opp_device *opp_dev, struct opp_table *opp_table);
V
Viresh Kumar 已提交
230 231 232 233
#else
static inline void opp_debug_remove_one(struct dev_pm_opp *opp) {}

static inline int opp_debug_create_one(struct dev_pm_opp *opp,
234
				       struct opp_table *opp_table)
V
Viresh Kumar 已提交
235
{ return 0; }
236 237
static inline int opp_debug_register(struct opp_device *opp_dev,
				     struct opp_table *opp_table)
V
Viresh Kumar 已提交
238 239
{ return 0; }

240 241
static inline void opp_debug_unregister(struct opp_device *opp_dev,
					struct opp_table *opp_table)
V
Viresh Kumar 已提交
242 243 244
{ }
#endif		/* DEBUG_FS */

245
#endif		/* __DRIVER_OPP_H__ */