blob: c9869cfbf2615426f1916968f4205b7c25e39f2c [file] [log] [blame]
Liam Girdwood571a3542008-04-30 15:42:28 +01001/*
2 * driver.h -- SoC Regulator driver support.
3 *
4 * Copyright (C) 2007, 2008 Wolfson Microelectronics PLC.
5 *
Liam Girdwood1dd68f02009-02-02 21:43:31 +00006 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Liam Girdwood571a3542008-04-30 15:42:28 +01007 *
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>
Paul Gortmakerced55d42011-07-17 16:24:35 -040019#include <linux/notifier.h>
Liam Girdwood571a3542008-04-30 15:42:28 +010020#include <linux/regulator/consumer.h>
21
Mark Brown65b19ce2012-04-15 11:16:05 +010022struct regmap;
Liam Girdwood571a3542008-04-30 15:42:28 +010023struct regulator_dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +010024struct regulator_init_data;
Liam Girdwood571a3542008-04-30 15:42:28 +010025
David Brownell853116a2009-01-14 23:03:17 -080026enum 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,
Mark Brownf59c8f92012-08-31 10:36:37 -070035 /* The regulator is enabled but not regulating */
36 REGULATOR_STATUS_BYPASS,
Krystian Garbaciak1beaf762012-07-12 13:53:35 +010037 /* in case that any other status doesn't apply */
38 REGULATOR_STATUS_UNDEFINED,
David Brownell853116a2009-01-14 23:03:17 -080039};
40
Liam Girdwood571a3542008-04-30 15:42:28 +010041/**
42 * struct regulator_ops - regulator operations.
43 *
David Brownell3b2a6062009-02-26 13:28:41 -080044 * @enable: Configure the regulator as enabled.
45 * @disable: Configure the regulator as disabled.
Wolfram Sangd87b9692009-09-18 22:44:46 +020046 * @is_enabled: Return 1 if the regulator is enabled, 0 if not.
47 * May also return negative errno.
Mark Brownc8e7e462008-12-31 12:52:42 +000048 *
49 * @set_voltage: Set the voltage for the regulator within the range specified.
50 * The driver should select the voltage closest to min_uV.
Mark Browne8eef822010-12-12 14:36:17 +000051 * @set_voltage_sel: Set the voltage for the regulator using the specified
52 * selector.
Mark Browne843fc42012-05-09 21:16:06 +010053 * @map_voltage: Convert a voltage into a selector
Mark Brownc8e7e462008-12-31 12:52:42 +000054 * @get_voltage: Return the currently configured voltage for the regulator.
Mark Brown476c2d82010-12-10 17:28:07 +000055 * @get_voltage_sel: Return the currently configured voltage selector for the
56 * regulator.
David Brownell4367cfd2009-02-26 11:48:36 -080057 * @list_voltage: Return one of the supported voltages, in microvolts; zero
58 * if the selector indicates a voltage that is unusable on this system;
59 * or negative errno. Selectors range from zero to one less than
60 * regulator_desc.n_voltages. Voltages may be reported in any order.
Mark Brownc8e7e462008-12-31 12:52:42 +000061 *
Mark Brownc8e7e462008-12-31 12:52:42 +000062 * @set_current_limit: Configure a limit for a current-limited regulator.
David Brownell3b2a6062009-02-26 13:28:41 -080063 * @get_current_limit: Get the configured limit for a current-limited regulator.
Mark Brownc8e7e462008-12-31 12:52:42 +000064 *
Randy Dunlap9f6532512009-04-03 21:31:30 -070065 * @set_mode: Set the configured operating mode for the regulator.
David Brownell3b2a6062009-02-26 13:28:41 -080066 * @get_mode: Get the configured operating mode for the regulator.
67 * @get_status: Return actual (not as-configured) status of regulator, as a
68 * REGULATOR_STATUS value (or negative errno)
Mark Brownc8e7e462008-12-31 12:52:42 +000069 * @get_optimum_mode: Get the most efficient operating mode for the regulator
70 * when running with the specified parameters.
71 *
Mark Brownf59c8f92012-08-31 10:36:37 -070072 * @set_bypass: Set the regulator in bypass mode.
73 * @get_bypass: Get the regulator bypass mode state.
74 *
Mark Brown31aae2b2009-12-21 12:21:52 +000075 * @enable_time: Time taken for the regulator voltage output voltage to
Linus Walleij77af1b22011-03-17 13:24:36 +010076 * stabilise after being enabled, in microseconds.
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +053077 * @set_ramp_delay: Set the ramp delay for the regulator. The driver should
78 * select ramp delay equal to or less than(closest) ramp_delay.
Linus Walleij77af1b22011-03-17 13:24:36 +010079 * @set_voltage_time_sel: Time taken for the regulator voltage output voltage
80 * to stabilise after being set to a new value, in microseconds.
81 * The function provides the from and to voltage selector, the
82 * function should return the worst case.
Mark Brown31aae2b2009-12-21 12:21:52 +000083 *
Mark Brownc8e7e462008-12-31 12:52:42 +000084 * @set_suspend_voltage: Set the voltage for the regulator when the system
85 * is suspended.
86 * @set_suspend_enable: Mark the regulator as enabled when the system is
87 * suspended.
88 * @set_suspend_disable: Mark the regulator as disabled when the system is
89 * suspended.
90 * @set_suspend_mode: Set the operating mode for the regulator when the
91 * system is suspended.
David Brownell3b2a6062009-02-26 13:28:41 -080092 *
93 * This struct describes regulator operations which can be implemented by
94 * regulator chip drivers.
Liam Girdwood571a3542008-04-30 15:42:28 +010095 */
96struct regulator_ops {
97
David Brownell4367cfd2009-02-26 11:48:36 -080098 /* enumerate supported voltages */
99 int (*list_voltage) (struct regulator_dev *, unsigned selector);
100
Liam Girdwood571a3542008-04-30 15:42:28 +0100101 /* get/set regulator voltage */
Mark Brown3a93f2a2010-11-10 14:38:29 +0000102 int (*set_voltage) (struct regulator_dev *, int min_uV, int max_uV,
103 unsigned *selector);
Mark Browne843fc42012-05-09 21:16:06 +0100104 int (*map_voltage)(struct regulator_dev *, int min_uV, int max_uV);
Mark Browne8eef822010-12-12 14:36:17 +0000105 int (*set_voltage_sel) (struct regulator_dev *, unsigned selector);
Liam Girdwood571a3542008-04-30 15:42:28 +0100106 int (*get_voltage) (struct regulator_dev *);
Mark Brown476c2d82010-12-10 17:28:07 +0000107 int (*get_voltage_sel) (struct regulator_dev *);
Liam Girdwood571a3542008-04-30 15:42:28 +0100108
109 /* get/set regulator current */
110 int (*set_current_limit) (struct regulator_dev *,
111 int min_uA, int max_uA);
112 int (*get_current_limit) (struct regulator_dev *);
113
114 /* enable/disable regulator */
115 int (*enable) (struct regulator_dev *);
116 int (*disable) (struct regulator_dev *);
117 int (*is_enabled) (struct regulator_dev *);
118
Kim, Milofde297bb2012-02-16 22:41:32 -0800119 /* get/set regulator operating mode (defined in consumer.h) */
Liam Girdwood571a3542008-04-30 15:42:28 +0100120 int (*set_mode) (struct regulator_dev *, unsigned int mode);
121 unsigned int (*get_mode) (struct regulator_dev *);
122
Linus Walleij77af1b22011-03-17 13:24:36 +0100123 /* Time taken to enable or set voltage on the regulator */
Mark Brown31aae2b2009-12-21 12:21:52 +0000124 int (*enable_time) (struct regulator_dev *);
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +0530125 int (*set_ramp_delay) (struct regulator_dev *, int ramp_delay);
Linus Walleij77af1b22011-03-17 13:24:36 +0100126 int (*set_voltage_time_sel) (struct regulator_dev *,
127 unsigned int old_selector,
128 unsigned int new_selector);
Mark Brown31aae2b2009-12-21 12:21:52 +0000129
David Brownell853116a2009-01-14 23:03:17 -0800130 /* report regulator status ... most other accessors report
131 * control inputs, this reports results of combining inputs
132 * from Linux (and other sources) with the actual load.
David Brownell3b2a6062009-02-26 13:28:41 -0800133 * returns REGULATOR_STATUS_* or negative errno.
David Brownell853116a2009-01-14 23:03:17 -0800134 */
135 int (*get_status)(struct regulator_dev *);
136
Liam Girdwood571a3542008-04-30 15:42:28 +0100137 /* get most efficient regulator operating mode for load */
138 unsigned int (*get_optimum_mode) (struct regulator_dev *, int input_uV,
139 int output_uV, int load_uA);
140
Mark Brownf59c8f92012-08-31 10:36:37 -0700141 /* control and report on bypass mode */
142 int (*set_bypass)(struct regulator_dev *dev, bool enable);
143 int (*get_bypass)(struct regulator_dev *dev, bool *enable);
144
Liam Girdwood571a3542008-04-30 15:42:28 +0100145 /* the operations below are for configuration of regulator state when
Mark Brown3de89602008-09-09 16:21:17 +0100146 * its parent PMIC enters a global STANDBY/HIBERNATE state */
Liam Girdwood571a3542008-04-30 15:42:28 +0100147
148 /* set regulator suspend voltage */
149 int (*set_suspend_voltage) (struct regulator_dev *, int uV);
150
151 /* enable/disable regulator in suspend state */
152 int (*set_suspend_enable) (struct regulator_dev *);
153 int (*set_suspend_disable) (struct regulator_dev *);
154
Kim, Milofde297bb2012-02-16 22:41:32 -0800155 /* set regulator suspend operating mode (defined in consumer.h) */
Liam Girdwood571a3542008-04-30 15:42:28 +0100156 int (*set_suspend_mode) (struct regulator_dev *, unsigned int mode);
157};
158
159/*
160 * Regulators can either control voltage or current.
161 */
162enum regulator_type {
163 REGULATOR_VOLTAGE,
164 REGULATOR_CURRENT,
165};
166
167/**
Mark Brownc1727082012-04-04 00:50:22 +0100168 * struct regulator_desc - Static regulator descriptor
Liam Girdwood571a3542008-04-30 15:42:28 +0100169 *
Mark Brownc1727082012-04-04 00:50:22 +0100170 * Each regulator registered with the core is described with a
171 * structure of this type and a struct regulator_config. This
172 * structure contains the non-varying parts of the regulator
173 * description.
Mark Brownc8e7e462008-12-31 12:52:42 +0000174 *
175 * @name: Identifying name for the regulator.
Rajendra Nayak69511a42011-11-18 16:47:20 +0530176 * @supply_name: Identifying the regulator supply
Mark Brownc8e7e462008-12-31 12:52:42 +0000177 * @id: Numerical identifier for the regulator.
178 * @ops: Regulator operations table.
Randy Dunlap0ba48872009-01-08 11:50:23 -0800179 * @irq: Interrupt number for the regulator.
Mark Brownc8e7e462008-12-31 12:52:42 +0000180 * @type: Indicates if the regulator is a voltage or current regulator.
181 * @owner: Module providing the regulator, used for refcounting.
Mark Brownbca7bbf2012-05-09 21:38:33 +0100182 *
183 * @n_voltages: Number of selectors available for ops.list_voltage().
184 *
185 * @min_uV: Voltage given by the lowest selector (if linear mapping)
186 * @uV_step: Voltage increase with each selector (if linear mapping)
Axel Linea38d132012-06-18 14:03:16 +0800187 * @ramp_delay: Time to settle down after voltage change (unit: uV/us)
Axel Lincffc9592012-05-20 10:30:21 +0800188 * @volt_table: Voltage mapping table (if table based mapping)
Mark Brownbca7bbf2012-05-09 21:38:33 +0100189 *
Mark Brown4ab5b3d2012-04-15 11:23:30 +0100190 * @vsel_reg: Register for selector when using regulator_regmap_X_voltage_
191 * @vsel_mask: Mask for register bitfield used for selector
Mark Browncd6dffb2012-04-15 12:37:47 +0100192 * @enable_reg: Register for control when using regmap enable/disable ops
193 * @enable_mask: Mask for control when using regmap enable/disable ops
Mark Brown79511ed2012-06-27 14:23:10 +0100194 *
195 * @enable_time: Time taken for initial enable of regulator (in uS).
Liam Girdwood571a3542008-04-30 15:42:28 +0100196 */
197struct regulator_desc {
198 const char *name;
Rajendra Nayak69511a42011-11-18 16:47:20 +0530199 const char *supply_name;
Liam Girdwood571a3542008-04-30 15:42:28 +0100200 int id;
David Brownell4367cfd2009-02-26 11:48:36 -0800201 unsigned n_voltages;
Liam Girdwood571a3542008-04-30 15:42:28 +0100202 struct regulator_ops *ops;
203 int irq;
204 enum regulator_type type;
205 struct module *owner;
Mark Brown4ab5b3d2012-04-15 11:23:30 +0100206
Mark Brownbca7bbf2012-05-09 21:38:33 +0100207 unsigned int min_uV;
208 unsigned int uV_step;
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +0530209 unsigned int ramp_delay;
Mark Brownbca7bbf2012-05-09 21:38:33 +0100210
Axel Lincffc9592012-05-20 10:30:21 +0800211 const unsigned int *volt_table;
212
Mark Brown4ab5b3d2012-04-15 11:23:30 +0100213 unsigned int vsel_reg;
214 unsigned int vsel_mask;
Mark Browncd6dffb2012-04-15 12:37:47 +0100215 unsigned int enable_reg;
216 unsigned int enable_mask;
Mark Brown79511ed2012-06-27 14:23:10 +0100217
218 unsigned int enable_time;
Liam Girdwood571a3542008-04-30 15:42:28 +0100219};
220
Mark Brownc1727082012-04-04 00:50:22 +0100221/**
222 * struct regulator_config - Dynamic regulator descriptor
223 *
224 * Each regulator registered with the core is described with a
225 * structure of this type and a struct regulator_desc. This structure
226 * contains the runtime variable parts of the regulator description.
227 *
228 * @dev: struct device for the regulator
229 * @init_data: platform provided init data, passed through by driver
230 * @driver_data: private regulator data
231 * @of_node: OpenFirmware node to parse for device tree bindings (may be
232 * NULL).
Mark Brown65b19ce2012-04-15 11:16:05 +0100233 * @regmap: regmap to use for core regmap helpers
Mark Brown65f73502012-06-27 14:14:38 +0100234 * @ena_gpio: GPIO controlling regulator enable.
235 * @ena_gpio_invert: Sense for GPIO enable control.
236 * @ena_gpio_flags: Flags to use when calling gpio_request_one()
Mark Brownc1727082012-04-04 00:50:22 +0100237 */
238struct regulator_config {
239 struct device *dev;
240 const struct regulator_init_data *init_data;
241 void *driver_data;
242 struct device_node *of_node;
Mark Brown65b19ce2012-04-15 11:16:05 +0100243 struct regmap *regmap;
Mark Brown65f73502012-06-27 14:14:38 +0100244
245 int ena_gpio;
246 unsigned int ena_gpio_invert:1;
247 unsigned int ena_gpio_flags;
Mark Brownc1727082012-04-04 00:50:22 +0100248};
249
Mark Brown1fa9ad52009-01-21 14:08:40 +0000250/*
251 * struct regulator_dev
252 *
253 * Voltage / Current regulator class device. One for each
254 * regulator.
255 *
256 * This should *not* be used directly by anything except the regulator
257 * core and notification injection (which should take the mutex and do
258 * no other direct access).
259 */
260struct regulator_dev {
Mark Brown65f26842012-04-03 20:46:53 +0100261 const struct regulator_desc *desc;
Mark Brown5ffbd132009-07-21 16:00:23 +0100262 int exclusive;
Mark Brown1130e5b2010-12-21 23:49:31 +0000263 u32 use_count;
264 u32 open_count;
Mark Brownf59c8f92012-08-31 10:36:37 -0700265 u32 bypass_count;
Mark Brown1fa9ad52009-01-21 14:08:40 +0000266
267 /* lists we belong to */
268 struct list_head list; /* list of all regulators */
Mark Brown1fa9ad52009-01-21 14:08:40 +0000269
270 /* lists we own */
271 struct list_head consumer_list; /* consumers we supply */
Mark Brown1fa9ad52009-01-21 14:08:40 +0000272
273 struct blocking_notifier_head notifier;
274 struct mutex mutex; /* consumer lock */
275 struct module *owner;
276 struct device dev;
277 struct regulation_constraints *constraints;
Mark Brown3801b862011-06-09 16:22:22 +0100278 struct regulator *supply; /* for tree */
Mark Brown65b19ce2012-04-15 11:16:05 +0100279 struct regmap *regmap;
Mark Brown1fa9ad52009-01-21 14:08:40 +0000280
Mark Brownda07ecd2011-09-11 09:53:50 +0100281 struct delayed_work disable_work;
282 int deferred_disables;
283
Mark Brown1fa9ad52009-01-21 14:08:40 +0000284 void *reg_data; /* regulator_dev data */
Mark Brown1130e5b2010-12-21 23:49:31 +0000285
Mark Brown1130e5b2010-12-21 23:49:31 +0000286 struct dentry *debugfs;
Mark Brown65f73502012-06-27 14:14:38 +0100287
288 int ena_gpio;
289 unsigned int ena_gpio_invert:1;
290 unsigned int ena_gpio_state:1;
Mark Brown1fa9ad52009-01-21 14:08:40 +0000291};
292
Mark Brown65f26842012-04-03 20:46:53 +0100293struct regulator_dev *
294regulator_register(const struct regulator_desc *regulator_desc,
Mark Brownc1727082012-04-04 00:50:22 +0100295 const struct regulator_config *config);
Liam Girdwood571a3542008-04-30 15:42:28 +0100296void regulator_unregister(struct regulator_dev *rdev);
297
298int regulator_notifier_call_chain(struct regulator_dev *rdev,
299 unsigned long event, void *data);
300
301void *rdev_get_drvdata(struct regulator_dev *rdev);
Liam Girdwooda5766f12008-10-10 13:22:20 +0100302struct device *rdev_get_dev(struct regulator_dev *rdev);
Liam Girdwood571a3542008-04-30 15:42:28 +0100303int rdev_get_id(struct regulator_dev *rdev);
304
Mark Brownbe721972009-08-04 20:09:52 +0200305int regulator_mode_to_status(unsigned int);
306
Mark Brownbca7bbf2012-05-09 21:38:33 +0100307int regulator_list_voltage_linear(struct regulator_dev *rdev,
308 unsigned int selector);
Axel Lincffc9592012-05-20 10:30:21 +0800309int regulator_list_voltage_table(struct regulator_dev *rdev,
310 unsigned int selector);
Mark Brownbca7bbf2012-05-09 21:38:33 +0100311int regulator_map_voltage_linear(struct regulator_dev *rdev,
312 int min_uV, int max_uV);
Mark Browne843fc42012-05-09 21:16:06 +0100313int regulator_map_voltage_iterate(struct regulator_dev *rdev,
314 int min_uV, int max_uV);
Mark Brown4ab5b3d2012-04-15 11:23:30 +0100315int regulator_get_voltage_sel_regmap(struct regulator_dev *rdev);
316int regulator_set_voltage_sel_regmap(struct regulator_dev *rdev, unsigned sel);
Mark Browncd6dffb2012-04-15 12:37:47 +0100317int regulator_is_enabled_regmap(struct regulator_dev *rdev);
318int regulator_enable_regmap(struct regulator_dev *rdev);
319int regulator_disable_regmap(struct regulator_dev *rdev);
Yadwinder Singh Brar98a175b2012-06-09 16:40:38 +0530320int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
321 unsigned int old_selector,
322 unsigned int new_selector);
Mark Brown4ab5b3d2012-04-15 11:23:30 +0100323
Liam Girdwooda5766f12008-10-10 13:22:20 +0100324void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data);
325
Liam Girdwood571a3542008-04-30 15:42:28 +0100326#endif