blob: 2513a54ca2e813014a9ae83fc75012d9e0a8cfd1 [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,
Krystian Garbaciak1beaf762012-07-12 13:53:35 +010035 /* in case that any other status doesn't apply */
36 REGULATOR_STATUS_UNDEFINED,
David Brownell853116a2009-01-14 23:03:17 -080037};
38
Liam Girdwood571a3542008-04-30 15:42:28 +010039/**
40 * struct regulator_ops - regulator operations.
41 *
David Brownell3b2a6062009-02-26 13:28:41 -080042 * @enable: Configure the regulator as enabled.
43 * @disable: Configure the regulator as disabled.
Wolfram Sangd87b9692009-09-18 22:44:46 +020044 * @is_enabled: Return 1 if the regulator is enabled, 0 if not.
45 * May also return negative errno.
Mark Brownc8e7e462008-12-31 12:52:42 +000046 *
47 * @set_voltage: Set the voltage for the regulator within the range specified.
48 * The driver should select the voltage closest to min_uV.
Mark Browne8eef822010-12-12 14:36:17 +000049 * @set_voltage_sel: Set the voltage for the regulator using the specified
50 * selector.
Mark Browne843fc42012-05-09 21:16:06 +010051 * @map_voltage: Convert a voltage into a selector
Mark Brownc8e7e462008-12-31 12:52:42 +000052 * @get_voltage: Return the currently configured voltage for the regulator.
Mark Brown476c2d82010-12-10 17:28:07 +000053 * @get_voltage_sel: Return the currently configured voltage selector for the
54 * regulator.
David Brownell4367cfd2009-02-26 11:48:36 -080055 * @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.
Mark Brownc8e7e462008-12-31 12:52:42 +000059 *
Mark Brownc8e7e462008-12-31 12:52:42 +000060 * @set_current_limit: Configure a limit for a current-limited regulator.
David Brownell3b2a6062009-02-26 13:28:41 -080061 * @get_current_limit: Get the configured limit for a current-limited regulator.
Mark Brownc8e7e462008-12-31 12:52:42 +000062 *
Randy Dunlap9f6532512009-04-03 21:31:30 -070063 * @set_mode: Set the configured operating mode for the regulator.
David Brownell3b2a6062009-02-26 13:28:41 -080064 * @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)
Mark Brownc8e7e462008-12-31 12:52:42 +000067 * @get_optimum_mode: Get the most efficient operating mode for the regulator
68 * when running with the specified parameters.
69 *
Mark Brown31aae2b2009-12-21 12:21:52 +000070 * @enable_time: Time taken for the regulator voltage output voltage to
Linus Walleij77af1b22011-03-17 13:24:36 +010071 * stabilise after being enabled, in microseconds.
72 * @set_voltage_time_sel: Time taken for the regulator voltage output voltage
73 * to stabilise after being set to a new value, in microseconds.
74 * The function provides the from and to voltage selector, the
75 * function should return the worst case.
Mark Brown31aae2b2009-12-21 12:21:52 +000076 *
Mark Brownc8e7e462008-12-31 12:52:42 +000077 * @set_suspend_voltage: Set the voltage for the regulator when the system
78 * is suspended.
79 * @set_suspend_enable: Mark the regulator as enabled when the system is
80 * suspended.
81 * @set_suspend_disable: Mark the regulator as disabled when the system is
82 * suspended.
83 * @set_suspend_mode: Set the operating mode for the regulator when the
84 * system is suspended.
David Brownell3b2a6062009-02-26 13:28:41 -080085 *
86 * This struct describes regulator operations which can be implemented by
87 * regulator chip drivers.
Liam Girdwood571a3542008-04-30 15:42:28 +010088 */
89struct regulator_ops {
90
David Brownell4367cfd2009-02-26 11:48:36 -080091 /* enumerate supported voltages */
92 int (*list_voltage) (struct regulator_dev *, unsigned selector);
93
Liam Girdwood571a3542008-04-30 15:42:28 +010094 /* get/set regulator voltage */
Mark Brown3a93f2a2010-11-10 14:38:29 +000095 int (*set_voltage) (struct regulator_dev *, int min_uV, int max_uV,
96 unsigned *selector);
Mark Browne843fc42012-05-09 21:16:06 +010097 int (*map_voltage)(struct regulator_dev *, int min_uV, int max_uV);
Mark Browne8eef822010-12-12 14:36:17 +000098 int (*set_voltage_sel) (struct regulator_dev *, unsigned selector);
Liam Girdwood571a3542008-04-30 15:42:28 +010099 int (*get_voltage) (struct regulator_dev *);
Mark Brown476c2d82010-12-10 17:28:07 +0000100 int (*get_voltage_sel) (struct regulator_dev *);
Liam Girdwood571a3542008-04-30 15:42:28 +0100101
102 /* get/set regulator current */
103 int (*set_current_limit) (struct regulator_dev *,
104 int min_uA, int max_uA);
105 int (*get_current_limit) (struct regulator_dev *);
106
107 /* enable/disable regulator */
108 int (*enable) (struct regulator_dev *);
109 int (*disable) (struct regulator_dev *);
110 int (*is_enabled) (struct regulator_dev *);
111
Kim, Milofde297bb2012-02-16 22:41:32 -0800112 /* get/set regulator operating mode (defined in consumer.h) */
Liam Girdwood571a3542008-04-30 15:42:28 +0100113 int (*set_mode) (struct regulator_dev *, unsigned int mode);
114 unsigned int (*get_mode) (struct regulator_dev *);
115
Linus Walleij77af1b22011-03-17 13:24:36 +0100116 /* Time taken to enable or set voltage on the regulator */
Mark Brown31aae2b2009-12-21 12:21:52 +0000117 int (*enable_time) (struct regulator_dev *);
Linus Walleij77af1b22011-03-17 13:24:36 +0100118 int (*set_voltage_time_sel) (struct regulator_dev *,
119 unsigned int old_selector,
120 unsigned int new_selector);
Mark Brown31aae2b2009-12-21 12:21:52 +0000121
David Brownell853116a2009-01-14 23:03:17 -0800122 /* report regulator status ... most other accessors report
123 * control inputs, this reports results of combining inputs
124 * from Linux (and other sources) with the actual load.
David Brownell3b2a6062009-02-26 13:28:41 -0800125 * returns REGULATOR_STATUS_* or negative errno.
David Brownell853116a2009-01-14 23:03:17 -0800126 */
127 int (*get_status)(struct regulator_dev *);
128
Liam Girdwood571a3542008-04-30 15:42:28 +0100129 /* get most efficient regulator operating mode for load */
130 unsigned int (*get_optimum_mode) (struct regulator_dev *, int input_uV,
131 int output_uV, int load_uA);
132
133 /* the operations below are for configuration of regulator state when
Mark Brown3de89602008-09-09 16:21:17 +0100134 * its parent PMIC enters a global STANDBY/HIBERNATE state */
Liam Girdwood571a3542008-04-30 15:42:28 +0100135
136 /* set regulator suspend voltage */
137 int (*set_suspend_voltage) (struct regulator_dev *, int uV);
138
139 /* enable/disable regulator in suspend state */
140 int (*set_suspend_enable) (struct regulator_dev *);
141 int (*set_suspend_disable) (struct regulator_dev *);
142
Kim, Milofde297bb2012-02-16 22:41:32 -0800143 /* set regulator suspend operating mode (defined in consumer.h) */
Liam Girdwood571a3542008-04-30 15:42:28 +0100144 int (*set_suspend_mode) (struct regulator_dev *, unsigned int mode);
145};
146
147/*
148 * Regulators can either control voltage or current.
149 */
150enum regulator_type {
151 REGULATOR_VOLTAGE,
152 REGULATOR_CURRENT,
153};
154
155/**
Mark Brownc1727082012-04-04 00:50:22 +0100156 * struct regulator_desc - Static regulator descriptor
Liam Girdwood571a3542008-04-30 15:42:28 +0100157 *
Mark Brownc1727082012-04-04 00:50:22 +0100158 * Each regulator registered with the core is described with a
159 * structure of this type and a struct regulator_config. This
160 * structure contains the non-varying parts of the regulator
161 * description.
Mark Brownc8e7e462008-12-31 12:52:42 +0000162 *
163 * @name: Identifying name for the regulator.
Rajendra Nayak69511a42011-11-18 16:47:20 +0530164 * @supply_name: Identifying the regulator supply
Mark Brownc8e7e462008-12-31 12:52:42 +0000165 * @id: Numerical identifier for the regulator.
166 * @ops: Regulator operations table.
Randy Dunlap0ba48872009-01-08 11:50:23 -0800167 * @irq: Interrupt number for the regulator.
Mark Brownc8e7e462008-12-31 12:52:42 +0000168 * @type: Indicates if the regulator is a voltage or current regulator.
169 * @owner: Module providing the regulator, used for refcounting.
Mark Brownbca7bbf2012-05-09 21:38:33 +0100170 *
171 * @n_voltages: Number of selectors available for ops.list_voltage().
172 *
173 * @min_uV: Voltage given by the lowest selector (if linear mapping)
174 * @uV_step: Voltage increase with each selector (if linear mapping)
Axel Lincffc9592012-05-20 10:30:21 +0800175 * @volt_table: Voltage mapping table (if table based mapping)
Mark Brownbca7bbf2012-05-09 21:38:33 +0100176 *
Mark Brown4ab5b3d2012-04-15 11:23:30 +0100177 * @vsel_reg: Register for selector when using regulator_regmap_X_voltage_
178 * @vsel_mask: Mask for register bitfield used for selector
Mark Browncd6dffb2012-04-15 12:37:47 +0100179 * @enable_reg: Register for control when using regmap enable/disable ops
180 * @enable_mask: Mask for control when using regmap enable/disable ops
Liam Girdwood571a3542008-04-30 15:42:28 +0100181 */
182struct regulator_desc {
183 const char *name;
Rajendra Nayak69511a42011-11-18 16:47:20 +0530184 const char *supply_name;
Liam Girdwood571a3542008-04-30 15:42:28 +0100185 int id;
David Brownell4367cfd2009-02-26 11:48:36 -0800186 unsigned n_voltages;
Liam Girdwood571a3542008-04-30 15:42:28 +0100187 struct regulator_ops *ops;
188 int irq;
189 enum regulator_type type;
190 struct module *owner;
Mark Brown4ab5b3d2012-04-15 11:23:30 +0100191
Mark Brownbca7bbf2012-05-09 21:38:33 +0100192 unsigned int min_uV;
193 unsigned int uV_step;
194
Axel Lincffc9592012-05-20 10:30:21 +0800195 const unsigned int *volt_table;
196
Mark Brown4ab5b3d2012-04-15 11:23:30 +0100197 unsigned int vsel_reg;
198 unsigned int vsel_mask;
Mark Browncd6dffb2012-04-15 12:37:47 +0100199 unsigned int enable_reg;
200 unsigned int enable_mask;
Liam Girdwood571a3542008-04-30 15:42:28 +0100201};
202
Mark Brownc1727082012-04-04 00:50:22 +0100203/**
204 * struct regulator_config - Dynamic regulator descriptor
205 *
206 * Each regulator registered with the core is described with a
207 * structure of this type and a struct regulator_desc. This structure
208 * contains the runtime variable parts of the regulator description.
209 *
210 * @dev: struct device for the regulator
211 * @init_data: platform provided init data, passed through by driver
212 * @driver_data: private regulator data
213 * @of_node: OpenFirmware node to parse for device tree bindings (may be
214 * NULL).
Mark Brown65b19ce2012-04-15 11:16:05 +0100215 * @regmap: regmap to use for core regmap helpers
Mark Brownc1727082012-04-04 00:50:22 +0100216 */
217struct regulator_config {
218 struct device *dev;
219 const struct regulator_init_data *init_data;
220 void *driver_data;
221 struct device_node *of_node;
Mark Brown65b19ce2012-04-15 11:16:05 +0100222 struct regmap *regmap;
Mark Brownc1727082012-04-04 00:50:22 +0100223};
224
Mark Brown1fa9ad52009-01-21 14:08:40 +0000225/*
226 * struct regulator_dev
227 *
228 * Voltage / Current regulator class device. One for each
229 * regulator.
230 *
231 * This should *not* be used directly by anything except the regulator
232 * core and notification injection (which should take the mutex and do
233 * no other direct access).
234 */
235struct regulator_dev {
Mark Brown65f26842012-04-03 20:46:53 +0100236 const struct regulator_desc *desc;
Mark Brown5ffbd132009-07-21 16:00:23 +0100237 int exclusive;
Mark Brown1130e5b2010-12-21 23:49:31 +0000238 u32 use_count;
239 u32 open_count;
Mark Brown1fa9ad52009-01-21 14:08:40 +0000240
241 /* lists we belong to */
242 struct list_head list; /* list of all regulators */
Mark Brown1fa9ad52009-01-21 14:08:40 +0000243
244 /* lists we own */
245 struct list_head consumer_list; /* consumers we supply */
Mark Brown1fa9ad52009-01-21 14:08:40 +0000246
247 struct blocking_notifier_head notifier;
248 struct mutex mutex; /* consumer lock */
249 struct module *owner;
250 struct device dev;
251 struct regulation_constraints *constraints;
Mark Brown3801b862011-06-09 16:22:22 +0100252 struct regulator *supply; /* for tree */
Mark Brown65b19ce2012-04-15 11:16:05 +0100253 struct regmap *regmap;
Mark Brown1fa9ad52009-01-21 14:08:40 +0000254
Mark Brownda07ecd2011-09-11 09:53:50 +0100255 struct delayed_work disable_work;
256 int deferred_disables;
257
Mark Brown1fa9ad52009-01-21 14:08:40 +0000258 void *reg_data; /* regulator_dev data */
Mark Brown1130e5b2010-12-21 23:49:31 +0000259
Mark Brown1130e5b2010-12-21 23:49:31 +0000260 struct dentry *debugfs;
Mark Brown1fa9ad52009-01-21 14:08:40 +0000261};
262
Mark Brown65f26842012-04-03 20:46:53 +0100263struct regulator_dev *
264regulator_register(const struct regulator_desc *regulator_desc,
Mark Brownc1727082012-04-04 00:50:22 +0100265 const struct regulator_config *config);
Liam Girdwood571a3542008-04-30 15:42:28 +0100266void regulator_unregister(struct regulator_dev *rdev);
267
268int regulator_notifier_call_chain(struct regulator_dev *rdev,
269 unsigned long event, void *data);
270
271void *rdev_get_drvdata(struct regulator_dev *rdev);
Liam Girdwooda5766f12008-10-10 13:22:20 +0100272struct device *rdev_get_dev(struct regulator_dev *rdev);
Liam Girdwood571a3542008-04-30 15:42:28 +0100273int rdev_get_id(struct regulator_dev *rdev);
274
Mark Brownbe721972009-08-04 20:09:52 +0200275int regulator_mode_to_status(unsigned int);
276
Mark Brownbca7bbf2012-05-09 21:38:33 +0100277int regulator_list_voltage_linear(struct regulator_dev *rdev,
278 unsigned int selector);
Axel Lincffc9592012-05-20 10:30:21 +0800279int regulator_list_voltage_table(struct regulator_dev *rdev,
280 unsigned int selector);
Mark Brownbca7bbf2012-05-09 21:38:33 +0100281int regulator_map_voltage_linear(struct regulator_dev *rdev,
282 int min_uV, int max_uV);
Mark Browne843fc42012-05-09 21:16:06 +0100283int regulator_map_voltage_iterate(struct regulator_dev *rdev,
284 int min_uV, int max_uV);
Mark Brown4ab5b3d2012-04-15 11:23:30 +0100285int regulator_get_voltage_sel_regmap(struct regulator_dev *rdev);
286int regulator_set_voltage_sel_regmap(struct regulator_dev *rdev, unsigned sel);
Mark Browncd6dffb2012-04-15 12:37:47 +0100287int regulator_is_enabled_regmap(struct regulator_dev *rdev);
288int regulator_enable_regmap(struct regulator_dev *rdev);
289int regulator_disable_regmap(struct regulator_dev *rdev);
Mark Brown4ab5b3d2012-04-15 11:23:30 +0100290
Liam Girdwooda5766f12008-10-10 13:22:20 +0100291void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data);
292
Liam Girdwood571a3542008-04-30 15:42:28 +0100293#endif