blob: 4f529ed48d4ca09c29faad503fbf3235a99a00ea [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
Liam Girdwood571a3542008-04-30 15:42:28 +010022struct regulator_dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +010023struct regulator_init_data;
Liam Girdwood571a3542008-04-30 15:42:28 +010024
David Brownell853116a2009-01-14 23:03:17 -080025enum regulator_status {
26 REGULATOR_STATUS_OFF,
27 REGULATOR_STATUS_ON,
28 REGULATOR_STATUS_ERROR,
29 /* fast/normal/idle/standby are flavors of "on" */
30 REGULATOR_STATUS_FAST,
31 REGULATOR_STATUS_NORMAL,
32 REGULATOR_STATUS_IDLE,
33 REGULATOR_STATUS_STANDBY,
34};
35
Liam Girdwood571a3542008-04-30 15:42:28 +010036/**
37 * struct regulator_ops - regulator operations.
38 *
David Brownell3b2a6062009-02-26 13:28:41 -080039 * @enable: Configure the regulator as enabled.
40 * @disable: Configure the regulator as disabled.
Wolfram Sangd87b9692009-09-18 22:44:46 +020041 * @is_enabled: Return 1 if the regulator is enabled, 0 if not.
42 * May also return negative errno.
Mark Brownc8e7e462008-12-31 12:52:42 +000043 *
44 * @set_voltage: Set the voltage for the regulator within the range specified.
45 * The driver should select the voltage closest to min_uV.
Mark Browne8eef822010-12-12 14:36:17 +000046 * @set_voltage_sel: Set the voltage for the regulator using the specified
47 * selector.
Mark Brownc8e7e462008-12-31 12:52:42 +000048 * @get_voltage: Return the currently configured voltage for the regulator.
Mark Brown476c2d82010-12-10 17:28:07 +000049 * @get_voltage_sel: Return the currently configured voltage selector for the
50 * regulator.
David Brownell4367cfd2009-02-26 11:48:36 -080051 * @list_voltage: Return one of the supported voltages, in microvolts; zero
52 * if the selector indicates a voltage that is unusable on this system;
53 * or negative errno. Selectors range from zero to one less than
54 * regulator_desc.n_voltages. Voltages may be reported in any order.
Mark Brownc8e7e462008-12-31 12:52:42 +000055 *
Mark Brownc8e7e462008-12-31 12:52:42 +000056 * @set_current_limit: Configure a limit for a current-limited regulator.
David Brownell3b2a6062009-02-26 13:28:41 -080057 * @get_current_limit: Get the configured limit for a current-limited regulator.
Mark Brownc8e7e462008-12-31 12:52:42 +000058 *
Randy Dunlap9f6532512009-04-03 21:31:30 -070059 * @set_mode: Set the configured operating mode for the regulator.
David Brownell3b2a6062009-02-26 13:28:41 -080060 * @get_mode: Get the configured operating mode for the regulator.
61 * @get_status: Return actual (not as-configured) status of regulator, as a
62 * REGULATOR_STATUS value (or negative errno)
Mark Brownc8e7e462008-12-31 12:52:42 +000063 * @get_optimum_mode: Get the most efficient operating mode for the regulator
64 * when running with the specified parameters.
65 *
Mark Brown31aae2b2009-12-21 12:21:52 +000066 * @enable_time: Time taken for the regulator voltage output voltage to
Linus Walleij77af1b22011-03-17 13:24:36 +010067 * stabilise after being enabled, in microseconds.
68 * @set_voltage_time_sel: Time taken for the regulator voltage output voltage
69 * to stabilise after being set to a new value, in microseconds.
70 * The function provides the from and to voltage selector, the
71 * function should return the worst case.
Mark Brown31aae2b2009-12-21 12:21:52 +000072 *
Mark Brownc8e7e462008-12-31 12:52:42 +000073 * @set_suspend_voltage: Set the voltage for the regulator when the system
74 * is suspended.
75 * @set_suspend_enable: Mark the regulator as enabled when the system is
76 * suspended.
77 * @set_suspend_disable: Mark the regulator as disabled when the system is
78 * suspended.
79 * @set_suspend_mode: Set the operating mode for the regulator when the
80 * system is suspended.
David Brownell3b2a6062009-02-26 13:28:41 -080081 *
82 * This struct describes regulator operations which can be implemented by
83 * regulator chip drivers.
Liam Girdwood571a3542008-04-30 15:42:28 +010084 */
85struct regulator_ops {
86
David Brownell4367cfd2009-02-26 11:48:36 -080087 /* enumerate supported voltages */
88 int (*list_voltage) (struct regulator_dev *, unsigned selector);
89
Liam Girdwood571a3542008-04-30 15:42:28 +010090 /* get/set regulator voltage */
Mark Brown3a93f2a2010-11-10 14:38:29 +000091 int (*set_voltage) (struct regulator_dev *, int min_uV, int max_uV,
92 unsigned *selector);
Mark Browne8eef822010-12-12 14:36:17 +000093 int (*set_voltage_sel) (struct regulator_dev *, unsigned selector);
Liam Girdwood571a3542008-04-30 15:42:28 +010094 int (*get_voltage) (struct regulator_dev *);
Mark Brown476c2d82010-12-10 17:28:07 +000095 int (*get_voltage_sel) (struct regulator_dev *);
Liam Girdwood571a3542008-04-30 15:42:28 +010096
97 /* get/set regulator current */
98 int (*set_current_limit) (struct regulator_dev *,
99 int min_uA, int max_uA);
100 int (*get_current_limit) (struct regulator_dev *);
101
102 /* enable/disable regulator */
103 int (*enable) (struct regulator_dev *);
104 int (*disable) (struct regulator_dev *);
105 int (*is_enabled) (struct regulator_dev *);
106
Kim, Milofde297bb2012-02-16 22:41:32 -0800107 /* get/set regulator operating mode (defined in consumer.h) */
Liam Girdwood571a3542008-04-30 15:42:28 +0100108 int (*set_mode) (struct regulator_dev *, unsigned int mode);
109 unsigned int (*get_mode) (struct regulator_dev *);
110
Linus Walleij77af1b22011-03-17 13:24:36 +0100111 /* Time taken to enable or set voltage on the regulator */
Mark Brown31aae2b2009-12-21 12:21:52 +0000112 int (*enable_time) (struct regulator_dev *);
Linus Walleij77af1b22011-03-17 13:24:36 +0100113 int (*set_voltage_time_sel) (struct regulator_dev *,
114 unsigned int old_selector,
115 unsigned int new_selector);
Mark Brown31aae2b2009-12-21 12:21:52 +0000116
David Brownell853116a2009-01-14 23:03:17 -0800117 /* report regulator status ... most other accessors report
118 * control inputs, this reports results of combining inputs
119 * from Linux (and other sources) with the actual load.
David Brownell3b2a6062009-02-26 13:28:41 -0800120 * returns REGULATOR_STATUS_* or negative errno.
David Brownell853116a2009-01-14 23:03:17 -0800121 */
122 int (*get_status)(struct regulator_dev *);
123
Liam Girdwood571a3542008-04-30 15:42:28 +0100124 /* get most efficient regulator operating mode for load */
125 unsigned int (*get_optimum_mode) (struct regulator_dev *, int input_uV,
126 int output_uV, int load_uA);
127
128 /* the operations below are for configuration of regulator state when
Mark Brown3de89602008-09-09 16:21:17 +0100129 * its parent PMIC enters a global STANDBY/HIBERNATE state */
Liam Girdwood571a3542008-04-30 15:42:28 +0100130
131 /* set regulator suspend voltage */
132 int (*set_suspend_voltage) (struct regulator_dev *, int uV);
133
134 /* enable/disable regulator in suspend state */
135 int (*set_suspend_enable) (struct regulator_dev *);
136 int (*set_suspend_disable) (struct regulator_dev *);
137
Kim, Milofde297bb2012-02-16 22:41:32 -0800138 /* set regulator suspend operating mode (defined in consumer.h) */
Liam Girdwood571a3542008-04-30 15:42:28 +0100139 int (*set_suspend_mode) (struct regulator_dev *, unsigned int mode);
140};
141
142/*
143 * Regulators can either control voltage or current.
144 */
145enum regulator_type {
146 REGULATOR_VOLTAGE,
147 REGULATOR_CURRENT,
148};
149
150/**
Mark Brownc172708d2012-04-04 00:50:22 +0100151 * struct regulator_desc - Static regulator descriptor
Liam Girdwood571a3542008-04-30 15:42:28 +0100152 *
Mark Brownc172708d2012-04-04 00:50:22 +0100153 * Each regulator registered with the core is described with a
154 * structure of this type and a struct regulator_config. This
155 * structure contains the non-varying parts of the regulator
156 * description.
Mark Brownc8e7e462008-12-31 12:52:42 +0000157 *
158 * @name: Identifying name for the regulator.
Rajendra Nayak69511a42011-11-18 16:47:20 +0530159 * @supply_name: Identifying the regulator supply
Mark Brownc8e7e462008-12-31 12:52:42 +0000160 * @id: Numerical identifier for the regulator.
David Brownell4367cfd2009-02-26 11:48:36 -0800161 * @n_voltages: Number of selectors available for ops.list_voltage().
Mark Brownc8e7e462008-12-31 12:52:42 +0000162 * @ops: Regulator operations table.
Randy Dunlap0ba48872009-01-08 11:50:23 -0800163 * @irq: Interrupt number for the regulator.
Mark Brownc8e7e462008-12-31 12:52:42 +0000164 * @type: Indicates if the regulator is a voltage or current regulator.
165 * @owner: Module providing the regulator, used for refcounting.
Liam Girdwood571a3542008-04-30 15:42:28 +0100166 */
167struct regulator_desc {
168 const char *name;
Rajendra Nayak69511a42011-11-18 16:47:20 +0530169 const char *supply_name;
Liam Girdwood571a3542008-04-30 15:42:28 +0100170 int id;
David Brownell4367cfd2009-02-26 11:48:36 -0800171 unsigned n_voltages;
Liam Girdwood571a3542008-04-30 15:42:28 +0100172 struct regulator_ops *ops;
173 int irq;
174 enum regulator_type type;
175 struct module *owner;
176};
177
Mark Brownc172708d2012-04-04 00:50:22 +0100178/**
179 * struct regulator_config - Dynamic regulator descriptor
180 *
181 * Each regulator registered with the core is described with a
182 * structure of this type and a struct regulator_desc. This structure
183 * contains the runtime variable parts of the regulator description.
184 *
185 * @dev: struct device for the regulator
186 * @init_data: platform provided init data, passed through by driver
187 * @driver_data: private regulator data
188 * @of_node: OpenFirmware node to parse for device tree bindings (may be
189 * NULL).
190 */
191struct regulator_config {
192 struct device *dev;
193 const struct regulator_init_data *init_data;
194 void *driver_data;
195 struct device_node *of_node;
196};
197
Mark Brown1fa9ad52009-01-21 14:08:40 +0000198/*
199 * struct regulator_dev
200 *
201 * Voltage / Current regulator class device. One for each
202 * regulator.
203 *
204 * This should *not* be used directly by anything except the regulator
205 * core and notification injection (which should take the mutex and do
206 * no other direct access).
207 */
208struct regulator_dev {
Mark Brown65f26842012-04-03 20:46:53 +0100209 const struct regulator_desc *desc;
Mark Brown5ffbd132009-07-21 16:00:23 +0100210 int exclusive;
Mark Brown1130e5b2010-12-21 23:49:31 +0000211 u32 use_count;
212 u32 open_count;
Mark Brown1fa9ad52009-01-21 14:08:40 +0000213
214 /* lists we belong to */
215 struct list_head list; /* list of all regulators */
Mark Brown1fa9ad52009-01-21 14:08:40 +0000216
217 /* lists we own */
218 struct list_head consumer_list; /* consumers we supply */
Mark Brown1fa9ad52009-01-21 14:08:40 +0000219
220 struct blocking_notifier_head notifier;
221 struct mutex mutex; /* consumer lock */
222 struct module *owner;
223 struct device dev;
224 struct regulation_constraints *constraints;
Mark Brown3801b862011-06-09 16:22:22 +0100225 struct regulator *supply; /* for tree */
Mark Brown1fa9ad52009-01-21 14:08:40 +0000226
Mark Brownda07ecd2011-09-11 09:53:50 +0100227 struct delayed_work disable_work;
228 int deferred_disables;
229
Mark Brown1fa9ad52009-01-21 14:08:40 +0000230 void *reg_data; /* regulator_dev data */
Mark Brown1130e5b2010-12-21 23:49:31 +0000231
Mark Brown1130e5b2010-12-21 23:49:31 +0000232 struct dentry *debugfs;
Mark Brown1fa9ad52009-01-21 14:08:40 +0000233};
234
Mark Brown65f26842012-04-03 20:46:53 +0100235struct regulator_dev *
236regulator_register(const struct regulator_desc *regulator_desc,
Mark Brownc172708d2012-04-04 00:50:22 +0100237 const struct regulator_config *config);
Liam Girdwood571a3542008-04-30 15:42:28 +0100238void regulator_unregister(struct regulator_dev *rdev);
239
240int regulator_notifier_call_chain(struct regulator_dev *rdev,
241 unsigned long event, void *data);
242
243void *rdev_get_drvdata(struct regulator_dev *rdev);
Liam Girdwooda5766f12008-10-10 13:22:20 +0100244struct device *rdev_get_dev(struct regulator_dev *rdev);
Liam Girdwood571a3542008-04-30 15:42:28 +0100245int rdev_get_id(struct regulator_dev *rdev);
246
Mark Brownbe721972009-08-04 20:09:52 +0200247int regulator_mode_to_status(unsigned int);
248
Liam Girdwooda5766f12008-10-10 13:22:20 +0100249void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data);
250
Liam Girdwood571a3542008-04-30 15:42:28 +0100251#endif