Merge tag 'timer' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
[deliverable/linux.git] / include / linux / regulator / driver.h
CommitLineData
571a354b
LG
1/*
2 * driver.h -- SoC Regulator driver support.
3 *
4 * Copyright (C) 2007, 2008 Wolfson Microelectronics PLC.
5 *
1dd68f01 6 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
571a354b
LG
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 * Regulator Driver Interface.
13 */
14
15#ifndef __LINUX_REGULATOR_DRIVER_H_
16#define __LINUX_REGULATOR_DRIVER_H_
17
18#include <linux/device.h>
ced55d4e 19#include <linux/notifier.h>
571a354b
LG
20#include <linux/regulator/consumer.h>
21
65b19ce6 22struct regmap;
571a354b 23struct regulator_dev;
a5766f11 24struct regulator_init_data;
571a354b 25
853116a1
DB
26enum regulator_status {
27 REGULATOR_STATUS_OFF,
28 REGULATOR_STATUS_ON,
29 REGULATOR_STATUS_ERROR,
30 /* fast/normal/idle/standby are flavors of "on" */
31 REGULATOR_STATUS_FAST,
32 REGULATOR_STATUS_NORMAL,
33 REGULATOR_STATUS_IDLE,
34 REGULATOR_STATUS_STANDBY,
1beaf762
KG
35 /* in case that any other status doesn't apply */
36 REGULATOR_STATUS_UNDEFINED,
853116a1
DB
37};
38
571a354b
LG
39/**
40 * struct regulator_ops - regulator operations.
41 *
3b2a6061
DB
42 * @enable: Configure the regulator as enabled.
43 * @disable: Configure the regulator as disabled.
d87b969d
WS
44 * @is_enabled: Return 1 if the regulator is enabled, 0 if not.
45 * May also return negative errno.
c8e7e464
MB
46 *
47 * @set_voltage: Set the voltage for the regulator within the range specified.
48 * The driver should select the voltage closest to min_uV.
e8eef82b
MB
49 * @set_voltage_sel: Set the voltage for the regulator using the specified
50 * selector.
e843fc46 51 * @map_voltage: Convert a voltage into a selector
c8e7e464 52 * @get_voltage: Return the currently configured voltage for the regulator.
476c2d83
MB
53 * @get_voltage_sel: Return the currently configured voltage selector for the
54 * regulator.
4367cfdc
DB
55 * @list_voltage: Return one of the supported voltages, in microvolts; zero
56 * if the selector indicates a voltage that is unusable on this system;
57 * or negative errno. Selectors range from zero to one less than
58 * regulator_desc.n_voltages. Voltages may be reported in any order.
c8e7e464 59 *
c8e7e464 60 * @set_current_limit: Configure a limit for a current-limited regulator.
3b2a6061 61 * @get_current_limit: Get the configured limit for a current-limited regulator.
c8e7e464 62 *
9f653251 63 * @set_mode: Set the configured operating mode for the regulator.
3b2a6061
DB
64 * @get_mode: Get the configured operating mode for the regulator.
65 * @get_status: Return actual (not as-configured) status of regulator, as a
66 * REGULATOR_STATUS value (or negative errno)
c8e7e464
MB
67 * @get_optimum_mode: Get the most efficient operating mode for the regulator
68 * when running with the specified parameters.
69 *
31aae2be 70 * @enable_time: Time taken for the regulator voltage output voltage to
77af1b26 71 * stabilise after being enabled, in microseconds.
6f0b2c69
YSB
72 * @set_ramp_delay: Set the ramp delay for the regulator. The driver should
73 * select ramp delay equal to or less than(closest) ramp_delay.
77af1b26
LW
74 * @set_voltage_time_sel: Time taken for the regulator voltage output voltage
75 * to stabilise after being set to a new value, in microseconds.
76 * The function provides the from and to voltage selector, the
77 * function should return the worst case.
31aae2be 78 *
c8e7e464
MB
79 * @set_suspend_voltage: Set the voltage for the regulator when the system
80 * is suspended.
81 * @set_suspend_enable: Mark the regulator as enabled when the system is
82 * suspended.
83 * @set_suspend_disable: Mark the regulator as disabled when the system is
84 * suspended.
85 * @set_suspend_mode: Set the operating mode for the regulator when the
86 * system is suspended.
3b2a6061
DB
87 *
88 * This struct describes regulator operations which can be implemented by
89 * regulator chip drivers.
571a354b
LG
90 */
91struct regulator_ops {
92
4367cfdc
DB
93 /* enumerate supported voltages */
94 int (*list_voltage) (struct regulator_dev *, unsigned selector);
95
571a354b 96 /* get/set regulator voltage */
3a93f2a9
MB
97 int (*set_voltage) (struct regulator_dev *, int min_uV, int max_uV,
98 unsigned *selector);
e843fc46 99 int (*map_voltage)(struct regulator_dev *, int min_uV, int max_uV);
e8eef82b 100 int (*set_voltage_sel) (struct regulator_dev *, unsigned selector);
571a354b 101 int (*get_voltage) (struct regulator_dev *);
476c2d83 102 int (*get_voltage_sel) (struct regulator_dev *);
571a354b
LG
103
104 /* get/set regulator current */
105 int (*set_current_limit) (struct regulator_dev *,
106 int min_uA, int max_uA);
107 int (*get_current_limit) (struct regulator_dev *);
108
109 /* enable/disable regulator */
110 int (*enable) (struct regulator_dev *);
111 int (*disable) (struct regulator_dev *);
112 int (*is_enabled) (struct regulator_dev *);
113
fde297bb 114 /* get/set regulator operating mode (defined in consumer.h) */
571a354b
LG
115 int (*set_mode) (struct regulator_dev *, unsigned int mode);
116 unsigned int (*get_mode) (struct regulator_dev *);
117
77af1b26 118 /* Time taken to enable or set voltage on the regulator */
31aae2be 119 int (*enable_time) (struct regulator_dev *);
6f0b2c69 120 int (*set_ramp_delay) (struct regulator_dev *, int ramp_delay);
77af1b26
LW
121 int (*set_voltage_time_sel) (struct regulator_dev *,
122 unsigned int old_selector,
123 unsigned int new_selector);
31aae2be 124
853116a1
DB
125 /* report regulator status ... most other accessors report
126 * control inputs, this reports results of combining inputs
127 * from Linux (and other sources) with the actual load.
3b2a6061 128 * returns REGULATOR_STATUS_* or negative errno.
853116a1
DB
129 */
130 int (*get_status)(struct regulator_dev *);
131
571a354b
LG
132 /* get most efficient regulator operating mode for load */
133 unsigned int (*get_optimum_mode) (struct regulator_dev *, int input_uV,
134 int output_uV, int load_uA);
135
136 /* the operations below are for configuration of regulator state when
3de89609 137 * its parent PMIC enters a global STANDBY/HIBERNATE state */
571a354b
LG
138
139 /* set regulator suspend voltage */
140 int (*set_suspend_voltage) (struct regulator_dev *, int uV);
141
142 /* enable/disable regulator in suspend state */
143 int (*set_suspend_enable) (struct regulator_dev *);
144 int (*set_suspend_disable) (struct regulator_dev *);
145
fde297bb 146 /* set regulator suspend operating mode (defined in consumer.h) */
571a354b
LG
147 int (*set_suspend_mode) (struct regulator_dev *, unsigned int mode);
148};
149
150/*
151 * Regulators can either control voltage or current.
152 */
153enum regulator_type {
154 REGULATOR_VOLTAGE,
155 REGULATOR_CURRENT,
156};
157
158/**
c172708d 159 * struct regulator_desc - Static regulator descriptor
571a354b 160 *
c172708d
MB
161 * Each regulator registered with the core is described with a
162 * structure of this type and a struct regulator_config. This
163 * structure contains the non-varying parts of the regulator
164 * description.
c8e7e464
MB
165 *
166 * @name: Identifying name for the regulator.
69511a45 167 * @supply_name: Identifying the regulator supply
c8e7e464
MB
168 * @id: Numerical identifier for the regulator.
169 * @ops: Regulator operations table.
0ba4887c 170 * @irq: Interrupt number for the regulator.
c8e7e464
MB
171 * @type: Indicates if the regulator is a voltage or current regulator.
172 * @owner: Module providing the regulator, used for refcounting.
bca7bbff
MB
173 *
174 * @n_voltages: Number of selectors available for ops.list_voltage().
175 *
176 * @min_uV: Voltage given by the lowest selector (if linear mapping)
177 * @uV_step: Voltage increase with each selector (if linear mapping)
ea38d13f 178 * @ramp_delay: Time to settle down after voltage change (unit: uV/us)
cffc9592 179 * @volt_table: Voltage mapping table (if table based mapping)
bca7bbff 180 *
4ab5b3d9
MB
181 * @vsel_reg: Register for selector when using regulator_regmap_X_voltage_
182 * @vsel_mask: Mask for register bitfield used for selector
cd6dffb4
MB
183 * @enable_reg: Register for control when using regmap enable/disable ops
184 * @enable_mask: Mask for control when using regmap enable/disable ops
79511ed3
MB
185 *
186 * @enable_time: Time taken for initial enable of regulator (in uS).
571a354b
LG
187 */
188struct regulator_desc {
189 const char *name;
69511a45 190 const char *supply_name;
571a354b 191 int id;
4367cfdc 192 unsigned n_voltages;
571a354b
LG
193 struct regulator_ops *ops;
194 int irq;
195 enum regulator_type type;
196 struct module *owner;
4ab5b3d9 197
bca7bbff
MB
198 unsigned int min_uV;
199 unsigned int uV_step;
98a175b6 200 unsigned int ramp_delay;
bca7bbff 201
cffc9592
AL
202 const unsigned int *volt_table;
203
4ab5b3d9
MB
204 unsigned int vsel_reg;
205 unsigned int vsel_mask;
cd6dffb4
MB
206 unsigned int enable_reg;
207 unsigned int enable_mask;
79511ed3
MB
208
209 unsigned int enable_time;
571a354b
LG
210};
211
c172708d
MB
212/**
213 * struct regulator_config - Dynamic regulator descriptor
214 *
215 * Each regulator registered with the core is described with a
216 * structure of this type and a struct regulator_desc. This structure
217 * contains the runtime variable parts of the regulator description.
218 *
219 * @dev: struct device for the regulator
220 * @init_data: platform provided init data, passed through by driver
221 * @driver_data: private regulator data
222 * @of_node: OpenFirmware node to parse for device tree bindings (may be
223 * NULL).
65b19ce6 224 * @regmap: regmap to use for core regmap helpers
65f73508
MB
225 * @ena_gpio: GPIO controlling regulator enable.
226 * @ena_gpio_invert: Sense for GPIO enable control.
227 * @ena_gpio_flags: Flags to use when calling gpio_request_one()
c172708d
MB
228 */
229struct regulator_config {
230 struct device *dev;
231 const struct regulator_init_data *init_data;
232 void *driver_data;
233 struct device_node *of_node;
65b19ce6 234 struct regmap *regmap;
65f73508
MB
235
236 int ena_gpio;
237 unsigned int ena_gpio_invert:1;
238 unsigned int ena_gpio_flags;
c172708d
MB
239};
240
1fa9ad52
MB
241/*
242 * struct regulator_dev
243 *
244 * Voltage / Current regulator class device. One for each
245 * regulator.
246 *
247 * This should *not* be used directly by anything except the regulator
248 * core and notification injection (which should take the mutex and do
249 * no other direct access).
250 */
251struct regulator_dev {
65f26846 252 const struct regulator_desc *desc;
5ffbd136 253 int exclusive;
1130e5b3
MB
254 u32 use_count;
255 u32 open_count;
1fa9ad52
MB
256
257 /* lists we belong to */
258 struct list_head list; /* list of all regulators */
1fa9ad52
MB
259
260 /* lists we own */
261 struct list_head consumer_list; /* consumers we supply */
1fa9ad52
MB
262
263 struct blocking_notifier_head notifier;
264 struct mutex mutex; /* consumer lock */
265 struct module *owner;
266 struct device dev;
267 struct regulation_constraints *constraints;
3801b86a 268 struct regulator *supply; /* for tree */
65b19ce6 269 struct regmap *regmap;
1fa9ad52 270
da07ecd9
MB
271 struct delayed_work disable_work;
272 int deferred_disables;
273
1fa9ad52 274 void *reg_data; /* regulator_dev data */
1130e5b3 275
1130e5b3 276 struct dentry *debugfs;
65f73508
MB
277
278 int ena_gpio;
279 unsigned int ena_gpio_invert:1;
280 unsigned int ena_gpio_state:1;
1fa9ad52
MB
281};
282
65f26846
MB
283struct regulator_dev *
284regulator_register(const struct regulator_desc *regulator_desc,
c172708d 285 const struct regulator_config *config);
571a354b
LG
286void regulator_unregister(struct regulator_dev *rdev);
287
288int regulator_notifier_call_chain(struct regulator_dev *rdev,
289 unsigned long event, void *data);
290
291void *rdev_get_drvdata(struct regulator_dev *rdev);
a5766f11 292struct device *rdev_get_dev(struct regulator_dev *rdev);
571a354b
LG
293int rdev_get_id(struct regulator_dev *rdev);
294
be721979
MB
295int regulator_mode_to_status(unsigned int);
296
bca7bbff
MB
297int regulator_list_voltage_linear(struct regulator_dev *rdev,
298 unsigned int selector);
cffc9592
AL
299int regulator_list_voltage_table(struct regulator_dev *rdev,
300 unsigned int selector);
bca7bbff
MB
301int regulator_map_voltage_linear(struct regulator_dev *rdev,
302 int min_uV, int max_uV);
e843fc46
MB
303int regulator_map_voltage_iterate(struct regulator_dev *rdev,
304 int min_uV, int max_uV);
4ab5b3d9
MB
305int regulator_get_voltage_sel_regmap(struct regulator_dev *rdev);
306int regulator_set_voltage_sel_regmap(struct regulator_dev *rdev, unsigned sel);
cd6dffb4
MB
307int regulator_is_enabled_regmap(struct regulator_dev *rdev);
308int regulator_enable_regmap(struct regulator_dev *rdev);
309int regulator_disable_regmap(struct regulator_dev *rdev);
98a175b6
YSB
310int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
311 unsigned int old_selector,
312 unsigned int new_selector);
4ab5b3d9 313
a5766f11
LG
314void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data);
315
571a354b 316#endif
This page took 0.412713 seconds and 5 git commands to generate.