blob: 12a1aa04b720cdb3491a2d35f32cb85a9bdcc6ff [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>
19#include <linux/regulator/consumer.h>
20
Liam Girdwood571a3542008-04-30 15:42:28 +010021struct regulator_dev;
Liam Girdwooda5766f12008-10-10 13:22:20 +010022struct regulator_init_data;
Liam Girdwood571a3542008-04-30 15:42:28 +010023
David Brownell853116a2009-01-14 23:03:17 -080024enum regulator_status {
25 REGULATOR_STATUS_OFF,
26 REGULATOR_STATUS_ON,
27 REGULATOR_STATUS_ERROR,
28 /* fast/normal/idle/standby are flavors of "on" */
29 REGULATOR_STATUS_FAST,
30 REGULATOR_STATUS_NORMAL,
31 REGULATOR_STATUS_IDLE,
32 REGULATOR_STATUS_STANDBY,
33};
34
Liam Girdwood571a3542008-04-30 15:42:28 +010035/**
36 * struct regulator_ops - regulator operations.
37 *
David Brownell3b2a6062009-02-26 13:28:41 -080038 * @enable: Configure the regulator as enabled.
39 * @disable: Configure the regulator as disabled.
Wolfram Sangd87b9692009-09-18 22:44:46 +020040 * @is_enabled: Return 1 if the regulator is enabled, 0 if not.
41 * May also return negative errno.
Mark Brownc8e7e462008-12-31 12:52:42 +000042 *
43 * @set_voltage: Set the voltage for the regulator within the range specified.
44 * The driver should select the voltage closest to min_uV.
Mark Browne8eef822010-12-12 14:36:17 +000045 * @set_voltage_sel: Set the voltage for the regulator using the specified
46 * selector.
Mark Brownc8e7e462008-12-31 12:52:42 +000047 * @get_voltage: Return the currently configured voltage for the regulator.
Mark Brown476c2d82010-12-10 17:28:07 +000048 * @get_voltage_sel: Return the currently configured voltage selector for the
49 * regulator.
David Brownell4367cfd2009-02-26 11:48:36 -080050 * @list_voltage: Return one of the supported voltages, in microvolts; zero
51 * if the selector indicates a voltage that is unusable on this system;
52 * or negative errno. Selectors range from zero to one less than
53 * regulator_desc.n_voltages. Voltages may be reported in any order.
Mark Brownc8e7e462008-12-31 12:52:42 +000054 *
Mark Brownc8e7e462008-12-31 12:52:42 +000055 * @set_current_limit: Configure a limit for a current-limited regulator.
David Brownell3b2a6062009-02-26 13:28:41 -080056 * @get_current_limit: Get the configured limit for a current-limited regulator.
Mark Brownc8e7e462008-12-31 12:52:42 +000057 *
Randy Dunlap9f6532512009-04-03 21:31:30 -070058 * @set_mode: Set the configured operating mode for the regulator.
David Brownell3b2a6062009-02-26 13:28:41 -080059 * @get_mode: Get the configured operating mode for the regulator.
60 * @get_status: Return actual (not as-configured) status of regulator, as a
61 * REGULATOR_STATUS value (or negative errno)
Mark Brownc8e7e462008-12-31 12:52:42 +000062 * @get_optimum_mode: Get the most efficient operating mode for the regulator
63 * when running with the specified parameters.
64 *
Mark Brown31aae2b2009-12-21 12:21:52 +000065 * @enable_time: Time taken for the regulator voltage output voltage to
Linus Walleij77af1b2642011-03-17 13:24:36 +010066 * stabilise after being enabled, in microseconds.
67 * @set_voltage_time_sel: Time taken for the regulator voltage output voltage
68 * to stabilise after being set to a new value, in microseconds.
69 * The function provides the from and to voltage selector, the
70 * function should return the worst case.
Mark Brown31aae2b2009-12-21 12:21:52 +000071 *
Mark Brownc8e7e462008-12-31 12:52:42 +000072 * @set_suspend_voltage: Set the voltage for the regulator when the system
73 * is suspended.
74 * @set_suspend_enable: Mark the regulator as enabled when the system is
75 * suspended.
76 * @set_suspend_disable: Mark the regulator as disabled when the system is
77 * suspended.
78 * @set_suspend_mode: Set the operating mode for the regulator when the
79 * system is suspended.
David Brownell3b2a6062009-02-26 13:28:41 -080080 *
81 * This struct describes regulator operations which can be implemented by
82 * regulator chip drivers.
Liam Girdwood571a3542008-04-30 15:42:28 +010083 */
84struct regulator_ops {
85
David Brownell4367cfd2009-02-26 11:48:36 -080086 /* enumerate supported voltages */
87 int (*list_voltage) (struct regulator_dev *, unsigned selector);
88
Liam Girdwood571a3542008-04-30 15:42:28 +010089 /* get/set regulator voltage */
Mark Brown3a93f2a2010-11-10 14:38:29 +000090 int (*set_voltage) (struct regulator_dev *, int min_uV, int max_uV,
91 unsigned *selector);
Mark Browne8eef822010-12-12 14:36:17 +000092 int (*set_voltage_sel) (struct regulator_dev *, unsigned selector);
Liam Girdwood571a3542008-04-30 15:42:28 +010093 int (*get_voltage) (struct regulator_dev *);
Mark Brown476c2d82010-12-10 17:28:07 +000094 int (*get_voltage_sel) (struct regulator_dev *);
Liam Girdwood571a3542008-04-30 15:42:28 +010095
96 /* get/set regulator current */
97 int (*set_current_limit) (struct regulator_dev *,
98 int min_uA, int max_uA);
99 int (*get_current_limit) (struct regulator_dev *);
100
101 /* enable/disable regulator */
102 int (*enable) (struct regulator_dev *);
103 int (*disable) (struct regulator_dev *);
104 int (*is_enabled) (struct regulator_dev *);
105
106 /* get/set regulator operating mode (defined in regulator.h) */
107 int (*set_mode) (struct regulator_dev *, unsigned int mode);
108 unsigned int (*get_mode) (struct regulator_dev *);
109
Linus Walleij77af1b2642011-03-17 13:24:36 +0100110 /* Time taken to enable or set voltage on the regulator */
Mark Brown31aae2b2009-12-21 12:21:52 +0000111 int (*enable_time) (struct regulator_dev *);
Linus Walleij77af1b2642011-03-17 13:24:36 +0100112 int (*set_voltage_time_sel) (struct regulator_dev *,
113 unsigned int old_selector,
114 unsigned int new_selector);
Mark Brown31aae2b2009-12-21 12:21:52 +0000115
David Brownell853116a2009-01-14 23:03:17 -0800116 /* report regulator status ... most other accessors report
117 * control inputs, this reports results of combining inputs
118 * from Linux (and other sources) with the actual load.
David Brownell3b2a6062009-02-26 13:28:41 -0800119 * returns REGULATOR_STATUS_* or negative errno.
David Brownell853116a2009-01-14 23:03:17 -0800120 */
121 int (*get_status)(struct regulator_dev *);
122
Liam Girdwood571a3542008-04-30 15:42:28 +0100123 /* get most efficient regulator operating mode for load */
124 unsigned int (*get_optimum_mode) (struct regulator_dev *, int input_uV,
125 int output_uV, int load_uA);
126
127 /* the operations below are for configuration of regulator state when
Mark Brown3de89602008-09-09 16:21:17 +0100128 * its parent PMIC enters a global STANDBY/HIBERNATE state */
Liam Girdwood571a3542008-04-30 15:42:28 +0100129
130 /* set regulator suspend voltage */
131 int (*set_suspend_voltage) (struct regulator_dev *, int uV);
132
133 /* enable/disable regulator in suspend state */
134 int (*set_suspend_enable) (struct regulator_dev *);
135 int (*set_suspend_disable) (struct regulator_dev *);
136
137 /* set regulator suspend operating mode (defined in regulator.h) */
138 int (*set_suspend_mode) (struct regulator_dev *, unsigned int mode);
139};
140
141/*
142 * Regulators can either control voltage or current.
143 */
144enum regulator_type {
145 REGULATOR_VOLTAGE,
146 REGULATOR_CURRENT,
147};
148
149/**
150 * struct regulator_desc - Regulator descriptor
151 *
Mark Brownc8e7e462008-12-31 12:52:42 +0000152 * Each regulator registered with the core is described with a structure of
153 * this type.
154 *
155 * @name: Identifying name for the regulator.
156 * @id: Numerical identifier for the regulator.
David Brownell4367cfd2009-02-26 11:48:36 -0800157 * @n_voltages: Number of selectors available for ops.list_voltage().
Mark Brownc8e7e462008-12-31 12:52:42 +0000158 * @ops: Regulator operations table.
Randy Dunlap0ba48872009-01-08 11:50:23 -0800159 * @irq: Interrupt number for the regulator.
Mark Brownc8e7e462008-12-31 12:52:42 +0000160 * @type: Indicates if the regulator is a voltage or current regulator.
161 * @owner: Module providing the regulator, used for refcounting.
Liam Girdwood571a3542008-04-30 15:42:28 +0100162 */
163struct regulator_desc {
164 const char *name;
165 int id;
David Brownell4367cfd2009-02-26 11:48:36 -0800166 unsigned n_voltages;
Liam Girdwood571a3542008-04-30 15:42:28 +0100167 struct regulator_ops *ops;
168 int irq;
169 enum regulator_type type;
170 struct module *owner;
171};
172
Mark Brown1fa9ad52009-01-21 14:08:40 +0000173/*
174 * struct regulator_dev
175 *
176 * Voltage / Current regulator class device. One for each
177 * regulator.
178 *
179 * This should *not* be used directly by anything except the regulator
180 * core and notification injection (which should take the mutex and do
181 * no other direct access).
182 */
183struct regulator_dev {
184 struct regulator_desc *desc;
Mark Brown5ffbd132009-07-21 16:00:23 +0100185 int exclusive;
Mark Brown1130e5b2010-12-21 23:49:31 +0000186 u32 use_count;
187 u32 open_count;
Mark Brown1fa9ad52009-01-21 14:08:40 +0000188
189 /* lists we belong to */
190 struct list_head list; /* list of all regulators */
Mark Brown1fa9ad52009-01-21 14:08:40 +0000191
192 /* lists we own */
193 struct list_head consumer_list; /* consumers we supply */
Mark Brown1fa9ad52009-01-21 14:08:40 +0000194
195 struct blocking_notifier_head notifier;
196 struct mutex mutex; /* consumer lock */
197 struct module *owner;
198 struct device dev;
199 struct regulation_constraints *constraints;
Mark Brown3801b862011-06-09 16:22:22 +0100200 struct regulator *supply; /* for tree */
Mark Brown1fa9ad52009-01-21 14:08:40 +0000201
Mark Brownda07ecd2011-09-11 09:53:50 +0100202 struct delayed_work disable_work;
203 int deferred_disables;
204
Mark Brown1fa9ad52009-01-21 14:08:40 +0000205 void *reg_data; /* regulator_dev data */
Mark Brown1130e5b2010-12-21 23:49:31 +0000206
207#ifdef CONFIG_DEBUG_FS
208 struct dentry *debugfs;
209#endif
Mark Brown1fa9ad52009-01-21 14:08:40 +0000210};
211
Liam Girdwood571a3542008-04-30 15:42:28 +0100212struct regulator_dev *regulator_register(struct regulator_desc *regulator_desc,
Mark Brownf8c12fe2010-11-29 15:55:17 +0000213 struct device *dev, const struct regulator_init_data *init_data,
Mark Brown05271002009-01-19 13:37:02 +0000214 void *driver_data);
Liam Girdwood571a3542008-04-30 15:42:28 +0100215void regulator_unregister(struct regulator_dev *rdev);
216
217int regulator_notifier_call_chain(struct regulator_dev *rdev,
218 unsigned long event, void *data);
219
220void *rdev_get_drvdata(struct regulator_dev *rdev);
Liam Girdwooda5766f12008-10-10 13:22:20 +0100221struct device *rdev_get_dev(struct regulator_dev *rdev);
Liam Girdwood571a3542008-04-30 15:42:28 +0100222int rdev_get_id(struct regulator_dev *rdev);
223
Mark Brownbe721972009-08-04 20:09:52 +0200224int regulator_mode_to_status(unsigned int);
225
Liam Girdwooda5766f12008-10-10 13:22:20 +0100226void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data);
227
Liam Girdwood571a3542008-04-30 15:42:28 +0100228#endif