blob: 2e753731217b3be0e9926bf30360686225a664cf [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,
35};
36
Liam Girdwood571a3542008-04-30 15:42:28 +010037/**
38 * struct regulator_ops - regulator operations.
39 *
David Brownell3b2a6062009-02-26 13:28:41 -080040 * @enable: Configure the regulator as enabled.
41 * @disable: Configure the regulator as disabled.
Wolfram Sangd87b9692009-09-18 22:44:46 +020042 * @is_enabled: Return 1 if the regulator is enabled, 0 if not.
43 * May also return negative errno.
Mark Brownc8e7e462008-12-31 12:52:42 +000044 *
45 * @set_voltage: Set the voltage for the regulator within the range specified.
46 * The driver should select the voltage closest to min_uV.
Mark Browne8eef822010-12-12 14:36:17 +000047 * @set_voltage_sel: Set the voltage for the regulator using the specified
48 * selector.
Mark Brownc8e7e462008-12-31 12:52:42 +000049 * @get_voltage: Return the currently configured voltage for the regulator.
Mark Brown476c2d82010-12-10 17:28:07 +000050 * @get_voltage_sel: Return the currently configured voltage selector for the
51 * regulator.
David Brownell4367cfd2009-02-26 11:48:36 -080052 * @list_voltage: Return one of the supported voltages, in microvolts; zero
53 * if the selector indicates a voltage that is unusable on this system;
54 * or negative errno. Selectors range from zero to one less than
55 * regulator_desc.n_voltages. Voltages may be reported in any order.
Mark Brownc8e7e462008-12-31 12:52:42 +000056 *
Mark Brownc8e7e462008-12-31 12:52:42 +000057 * @set_current_limit: Configure a limit for a current-limited regulator.
David Brownell3b2a6062009-02-26 13:28:41 -080058 * @get_current_limit: Get the configured limit for a current-limited regulator.
Mark Brownc8e7e462008-12-31 12:52:42 +000059 *
Randy Dunlap9f653252009-04-03 21:31:30 -070060 * @set_mode: Set the configured operating mode for the regulator.
David Brownell3b2a6062009-02-26 13:28:41 -080061 * @get_mode: Get the configured operating mode for the regulator.
62 * @get_status: Return actual (not as-configured) status of regulator, as a
63 * REGULATOR_STATUS value (or negative errno)
Mark Brownc8e7e462008-12-31 12:52:42 +000064 * @get_optimum_mode: Get the most efficient operating mode for the regulator
65 * when running with the specified parameters.
66 *
Mark Brown31aae2b2009-12-21 12:21:52 +000067 * @enable_time: Time taken for the regulator voltage output voltage to
Linus Walleij77af1b22011-03-17 13:24:36 +010068 * stabilise after being enabled, in microseconds.
69 * @set_voltage_time_sel: Time taken for the regulator voltage output voltage
70 * to stabilise after being set to a new value, in microseconds.
71 * The function provides the from and to voltage selector, the
72 * function should return the worst case.
Mark Brown31aae2b2009-12-21 12:21:52 +000073 *
Mark Brownc8e7e462008-12-31 12:52:42 +000074 * @set_suspend_voltage: Set the voltage for the regulator when the system
75 * is suspended.
76 * @set_suspend_enable: Mark the regulator as enabled when the system is
77 * suspended.
78 * @set_suspend_disable: Mark the regulator as disabled when the system is
79 * suspended.
80 * @set_suspend_mode: Set the operating mode for the regulator when the
81 * system is suspended.
David Brownell3b2a6062009-02-26 13:28:41 -080082 *
83 * This struct describes regulator operations which can be implemented by
84 * regulator chip drivers.
Liam Girdwood571a3542008-04-30 15:42:28 +010085 */
86struct regulator_ops {
87
David Brownell4367cfd2009-02-26 11:48:36 -080088 /* enumerate supported voltages */
89 int (*list_voltage) (struct regulator_dev *, unsigned selector);
90
Liam Girdwood571a3542008-04-30 15:42:28 +010091 /* get/set regulator voltage */
Mark Brown3a93f2a2010-11-10 14:38:29 +000092 int (*set_voltage) (struct regulator_dev *, int min_uV, int max_uV,
93 unsigned *selector);
Mark Browne8eef822010-12-12 14:36:17 +000094 int (*set_voltage_sel) (struct regulator_dev *, unsigned selector);
Liam Girdwood571a3542008-04-30 15:42:28 +010095 int (*get_voltage) (struct regulator_dev *);
Mark Brown476c2d82010-12-10 17:28:07 +000096 int (*get_voltage_sel) (struct regulator_dev *);
Liam Girdwood571a3542008-04-30 15:42:28 +010097
98 /* get/set regulator current */
99 int (*set_current_limit) (struct regulator_dev *,
100 int min_uA, int max_uA);
101 int (*get_current_limit) (struct regulator_dev *);
102
103 /* enable/disable regulator */
104 int (*enable) (struct regulator_dev *);
105 int (*disable) (struct regulator_dev *);
106 int (*is_enabled) (struct regulator_dev *);
107
Kim, Milofde297bb2012-02-16 22:41:32 -0800108 /* get/set regulator operating mode (defined in consumer.h) */
Liam Girdwood571a3542008-04-30 15:42:28 +0100109 int (*set_mode) (struct regulator_dev *, unsigned int mode);
110 unsigned int (*get_mode) (struct regulator_dev *);
111
Linus Walleij77af1b22011-03-17 13:24:36 +0100112 /* Time taken to enable or set voltage on the regulator */
Mark Brown31aae2b2009-12-21 12:21:52 +0000113 int (*enable_time) (struct regulator_dev *);
Linus Walleij77af1b22011-03-17 13:24:36 +0100114 int (*set_voltage_time_sel) (struct regulator_dev *,
115 unsigned int old_selector,
116 unsigned int new_selector);
Mark Brown31aae2b2009-12-21 12:21:52 +0000117
David Brownell853116a2009-01-14 23:03:17 -0800118 /* report regulator status ... most other accessors report
119 * control inputs, this reports results of combining inputs
120 * from Linux (and other sources) with the actual load.
David Brownell3b2a6062009-02-26 13:28:41 -0800121 * returns REGULATOR_STATUS_* or negative errno.
David Brownell853116a2009-01-14 23:03:17 -0800122 */
123 int (*get_status)(struct regulator_dev *);
124
Liam Girdwood571a3542008-04-30 15:42:28 +0100125 /* get most efficient regulator operating mode for load */
126 unsigned int (*get_optimum_mode) (struct regulator_dev *, int input_uV,
127 int output_uV, int load_uA);
128
129 /* the operations below are for configuration of regulator state when
Mark Brown3de89602008-09-09 16:21:17 +0100130 * its parent PMIC enters a global STANDBY/HIBERNATE state */
Liam Girdwood571a3542008-04-30 15:42:28 +0100131
132 /* set regulator suspend voltage */
133 int (*set_suspend_voltage) (struct regulator_dev *, int uV);
134
135 /* enable/disable regulator in suspend state */
136 int (*set_suspend_enable) (struct regulator_dev *);
137 int (*set_suspend_disable) (struct regulator_dev *);
138
Kim, Milofde297bb2012-02-16 22:41:32 -0800139 /* set regulator suspend operating mode (defined in consumer.h) */
Liam Girdwood571a3542008-04-30 15:42:28 +0100140 int (*set_suspend_mode) (struct regulator_dev *, unsigned int mode);
141};
142
143/*
144 * Regulators can either control voltage or current.
145 */
146enum regulator_type {
147 REGULATOR_VOLTAGE,
148 REGULATOR_CURRENT,
149};
150
151/**
Mark Brownc1727082012-04-04 00:50:22 +0100152 * struct regulator_desc - Static regulator descriptor
Liam Girdwood571a3542008-04-30 15:42:28 +0100153 *
Mark Brownc1727082012-04-04 00:50:22 +0100154 * Each regulator registered with the core is described with a
155 * structure of this type and a struct regulator_config. This
156 * structure contains the non-varying parts of the regulator
157 * description.
Mark Brownc8e7e462008-12-31 12:52:42 +0000158 *
159 * @name: Identifying name for the regulator.
Rajendra Nayak69511a42011-11-18 16:47:20 +0530160 * @supply_name: Identifying the regulator supply
Mark Brownc8e7e462008-12-31 12:52:42 +0000161 * @id: Numerical identifier for the regulator.
David Brownell4367cfd2009-02-26 11:48:36 -0800162 * @n_voltages: Number of selectors available for ops.list_voltage().
Mark Brownc8e7e462008-12-31 12:52:42 +0000163 * @ops: Regulator operations table.
Randy Dunlap0ba48872009-01-08 11:50:23 -0800164 * @irq: Interrupt number for the regulator.
Mark Brownc8e7e462008-12-31 12:52:42 +0000165 * @type: Indicates if the regulator is a voltage or current regulator.
166 * @owner: Module providing the regulator, used for refcounting.
Liam Girdwood571a3542008-04-30 15:42:28 +0100167 */
168struct regulator_desc {
169 const char *name;
Rajendra Nayak69511a42011-11-18 16:47:20 +0530170 const char *supply_name;
Liam Girdwood571a3542008-04-30 15:42:28 +0100171 int id;
David Brownell4367cfd2009-02-26 11:48:36 -0800172 unsigned n_voltages;
Liam Girdwood571a3542008-04-30 15:42:28 +0100173 struct regulator_ops *ops;
174 int irq;
175 enum regulator_type type;
176 struct module *owner;
177};
178
Mark Brownc1727082012-04-04 00:50:22 +0100179/**
180 * struct regulator_config - Dynamic regulator descriptor
181 *
182 * Each regulator registered with the core is described with a
183 * structure of this type and a struct regulator_desc. This structure
184 * contains the runtime variable parts of the regulator description.
185 *
186 * @dev: struct device for the regulator
187 * @init_data: platform provided init data, passed through by driver
188 * @driver_data: private regulator data
189 * @of_node: OpenFirmware node to parse for device tree bindings (may be
190 * NULL).
Mark Brown65b19ce2012-04-15 11:16:05 +0100191 * @regmap: regmap to use for core regmap helpers
Mark Brownc1727082012-04-04 00:50:22 +0100192 */
193struct regulator_config {
194 struct device *dev;
195 const struct regulator_init_data *init_data;
196 void *driver_data;
197 struct device_node *of_node;
Mark Brown65b19ce2012-04-15 11:16:05 +0100198 struct regmap *regmap;
Mark Brownc1727082012-04-04 00:50:22 +0100199};
200
Mark Brown1fa9ad52009-01-21 14:08:40 +0000201/*
202 * struct regulator_dev
203 *
204 * Voltage / Current regulator class device. One for each
205 * regulator.
206 *
207 * This should *not* be used directly by anything except the regulator
208 * core and notification injection (which should take the mutex and do
209 * no other direct access).
210 */
211struct regulator_dev {
Mark Brown65f26842012-04-03 20:46:53 +0100212 const struct regulator_desc *desc;
Mark Brown5ffbd132009-07-21 16:00:23 +0100213 int exclusive;
Mark Brown1130e5b2010-12-21 23:49:31 +0000214 u32 use_count;
215 u32 open_count;
Mark Brown1fa9ad52009-01-21 14:08:40 +0000216
217 /* lists we belong to */
218 struct list_head list; /* list of all regulators */
Mark Brown1fa9ad52009-01-21 14:08:40 +0000219
220 /* lists we own */
221 struct list_head consumer_list; /* consumers we supply */
Mark Brown1fa9ad52009-01-21 14:08:40 +0000222
223 struct blocking_notifier_head notifier;
224 struct mutex mutex; /* consumer lock */
225 struct module *owner;
226 struct device dev;
227 struct regulation_constraints *constraints;
Mark Brown3801b862011-06-09 16:22:22 +0100228 struct regulator *supply; /* for tree */
Mark Brown65b19ce2012-04-15 11:16:05 +0100229 struct regmap *regmap;
Mark Brown1fa9ad52009-01-21 14:08:40 +0000230
Mark Brownda07ecd2011-09-11 09:53:50 +0100231 struct delayed_work disable_work;
232 int deferred_disables;
233
Mark Brown1fa9ad52009-01-21 14:08:40 +0000234 void *reg_data; /* regulator_dev data */
Mark Brown1130e5b2010-12-21 23:49:31 +0000235
Mark Brown1130e5b2010-12-21 23:49:31 +0000236 struct dentry *debugfs;
Mark Brown1fa9ad52009-01-21 14:08:40 +0000237};
238
Mark Brown65f26842012-04-03 20:46:53 +0100239struct regulator_dev *
240regulator_register(const struct regulator_desc *regulator_desc,
Mark Brownc1727082012-04-04 00:50:22 +0100241 const struct regulator_config *config);
Liam Girdwood571a3542008-04-30 15:42:28 +0100242void regulator_unregister(struct regulator_dev *rdev);
243
244int regulator_notifier_call_chain(struct regulator_dev *rdev,
245 unsigned long event, void *data);
246
247void *rdev_get_drvdata(struct regulator_dev *rdev);
Liam Girdwooda5766f12008-10-10 13:22:20 +0100248struct device *rdev_get_dev(struct regulator_dev *rdev);
Liam Girdwood571a3542008-04-30 15:42:28 +0100249int rdev_get_id(struct regulator_dev *rdev);
250
Mark Brownbe721972009-08-04 20:09:52 +0200251int regulator_mode_to_status(unsigned int);
252
Liam Girdwooda5766f12008-10-10 13:22:20 +0100253void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data);
254
Liam Girdwood571a3542008-04-30 15:42:28 +0100255#endif