blob: 4275cd475eac2b0c25214274bb23caa281a27994 [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.
45 * @get_voltage: Return the currently configured voltage for the regulator.
David Brownell4367cfd2009-02-26 11:48:36 -080046 * @list_voltage: Return one of the supported voltages, in microvolts; zero
47 * if the selector indicates a voltage that is unusable on this system;
48 * or negative errno. Selectors range from zero to one less than
49 * regulator_desc.n_voltages. Voltages may be reported in any order.
Mark Brownc8e7e462008-12-31 12:52:42 +000050 *
Mark Brownc8e7e462008-12-31 12:52:42 +000051 * @set_current_limit: Configure a limit for a current-limited regulator.
David Brownell3b2a6062009-02-26 13:28:41 -080052 * @get_current_limit: Get the configured limit for a current-limited regulator.
Mark Brownc8e7e462008-12-31 12:52:42 +000053 *
Randy Dunlap9f653252009-04-03 21:31:30 -070054 * @set_mode: Set the configured operating mode for the regulator.
David Brownell3b2a6062009-02-26 13:28:41 -080055 * @get_mode: Get the configured operating mode for the regulator.
56 * @get_status: Return actual (not as-configured) status of regulator, as a
57 * REGULATOR_STATUS value (or negative errno)
Mark Brownc8e7e462008-12-31 12:52:42 +000058 * @get_optimum_mode: Get the most efficient operating mode for the regulator
59 * when running with the specified parameters.
60 *
Mark Brown31aae2b2009-12-21 12:21:52 +000061 * @enable_time: Time taken for the regulator voltage output voltage to
62 * stabalise after being enabled, in microseconds.
63 *
Mark Brownc8e7e462008-12-31 12:52:42 +000064 * @set_suspend_voltage: Set the voltage for the regulator when the system
65 * is suspended.
66 * @set_suspend_enable: Mark the regulator as enabled when the system is
67 * suspended.
68 * @set_suspend_disable: Mark the regulator as disabled when the system is
69 * suspended.
70 * @set_suspend_mode: Set the operating mode for the regulator when the
71 * system is suspended.
David Brownell3b2a6062009-02-26 13:28:41 -080072 *
73 * This struct describes regulator operations which can be implemented by
74 * regulator chip drivers.
Liam Girdwood571a3542008-04-30 15:42:28 +010075 */
76struct regulator_ops {
77
David Brownell4367cfd2009-02-26 11:48:36 -080078 /* enumerate supported voltages */
79 int (*list_voltage) (struct regulator_dev *, unsigned selector);
80
Liam Girdwood571a3542008-04-30 15:42:28 +010081 /* get/set regulator voltage */
Mark Brown3a93f2a2010-11-10 14:38:29 +000082 int (*set_voltage) (struct regulator_dev *, int min_uV, int max_uV,
83 unsigned *selector);
Liam Girdwood571a3542008-04-30 15:42:28 +010084 int (*get_voltage) (struct regulator_dev *);
85
86 /* get/set regulator current */
87 int (*set_current_limit) (struct regulator_dev *,
88 int min_uA, int max_uA);
89 int (*get_current_limit) (struct regulator_dev *);
90
91 /* enable/disable regulator */
92 int (*enable) (struct regulator_dev *);
93 int (*disable) (struct regulator_dev *);
94 int (*is_enabled) (struct regulator_dev *);
95
96 /* get/set regulator operating mode (defined in regulator.h) */
97 int (*set_mode) (struct regulator_dev *, unsigned int mode);
98 unsigned int (*get_mode) (struct regulator_dev *);
99
Mark Brown31aae2b2009-12-21 12:21:52 +0000100 /* Time taken to enable the regulator */
101 int (*enable_time) (struct regulator_dev *);
102
David Brownell853116a2009-01-14 23:03:17 -0800103 /* report regulator status ... most other accessors report
104 * control inputs, this reports results of combining inputs
105 * from Linux (and other sources) with the actual load.
David Brownell3b2a6062009-02-26 13:28:41 -0800106 * returns REGULATOR_STATUS_* or negative errno.
David Brownell853116a2009-01-14 23:03:17 -0800107 */
108 int (*get_status)(struct regulator_dev *);
109
Liam Girdwood571a3542008-04-30 15:42:28 +0100110 /* get most efficient regulator operating mode for load */
111 unsigned int (*get_optimum_mode) (struct regulator_dev *, int input_uV,
112 int output_uV, int load_uA);
113
114 /* the operations below are for configuration of regulator state when
Mark Brown3de89602008-09-09 16:21:17 +0100115 * its parent PMIC enters a global STANDBY/HIBERNATE state */
Liam Girdwood571a3542008-04-30 15:42:28 +0100116
117 /* set regulator suspend voltage */
118 int (*set_suspend_voltage) (struct regulator_dev *, int uV);
119
120 /* enable/disable regulator in suspend state */
121 int (*set_suspend_enable) (struct regulator_dev *);
122 int (*set_suspend_disable) (struct regulator_dev *);
123
124 /* set regulator suspend operating mode (defined in regulator.h) */
125 int (*set_suspend_mode) (struct regulator_dev *, unsigned int mode);
126};
127
128/*
129 * Regulators can either control voltage or current.
130 */
131enum regulator_type {
132 REGULATOR_VOLTAGE,
133 REGULATOR_CURRENT,
134};
135
136/**
137 * struct regulator_desc - Regulator descriptor
138 *
Mark Brownc8e7e462008-12-31 12:52:42 +0000139 * Each regulator registered with the core is described with a structure of
140 * this type.
141 *
142 * @name: Identifying name for the regulator.
143 * @id: Numerical identifier for the regulator.
David Brownell4367cfd2009-02-26 11:48:36 -0800144 * @n_voltages: Number of selectors available for ops.list_voltage().
Mark Brownc8e7e462008-12-31 12:52:42 +0000145 * @ops: Regulator operations table.
Randy Dunlap0ba48872009-01-08 11:50:23 -0800146 * @irq: Interrupt number for the regulator.
Mark Brownc8e7e462008-12-31 12:52:42 +0000147 * @type: Indicates if the regulator is a voltage or current regulator.
148 * @owner: Module providing the regulator, used for refcounting.
Liam Girdwood571a3542008-04-30 15:42:28 +0100149 */
150struct regulator_desc {
151 const char *name;
152 int id;
David Brownell4367cfd2009-02-26 11:48:36 -0800153 unsigned n_voltages;
Liam Girdwood571a3542008-04-30 15:42:28 +0100154 struct regulator_ops *ops;
155 int irq;
156 enum regulator_type type;
157 struct module *owner;
158};
159
Mark Brown1fa9ad52009-01-21 14:08:40 +0000160/*
161 * struct regulator_dev
162 *
163 * Voltage / Current regulator class device. One for each
164 * regulator.
165 *
166 * This should *not* be used directly by anything except the regulator
167 * core and notification injection (which should take the mutex and do
168 * no other direct access).
169 */
170struct regulator_dev {
171 struct regulator_desc *desc;
172 int use_count;
Mark Brown5ffbd132009-07-21 16:00:23 +0100173 int open_count;
174 int exclusive;
Mark Brown1fa9ad52009-01-21 14:08:40 +0000175
176 /* lists we belong to */
177 struct list_head list; /* list of all regulators */
178 struct list_head slist; /* list of supplied regulators */
179
180 /* lists we own */
181 struct list_head consumer_list; /* consumers we supply */
182 struct list_head supply_list; /* regulators we supply */
183
184 struct blocking_notifier_head notifier;
185 struct mutex mutex; /* consumer lock */
186 struct module *owner;
187 struct device dev;
188 struct regulation_constraints *constraints;
189 struct regulator_dev *supply; /* for tree */
190
191 void *reg_data; /* regulator_dev data */
192};
193
Liam Girdwood571a3542008-04-30 15:42:28 +0100194struct regulator_dev *regulator_register(struct regulator_desc *regulator_desc,
Mark Brown05271002009-01-19 13:37:02 +0000195 struct device *dev, struct regulator_init_data *init_data,
196 void *driver_data);
Liam Girdwood571a3542008-04-30 15:42:28 +0100197void regulator_unregister(struct regulator_dev *rdev);
198
199int regulator_notifier_call_chain(struct regulator_dev *rdev,
200 unsigned long event, void *data);
201
202void *rdev_get_drvdata(struct regulator_dev *rdev);
Liam Girdwooda5766f12008-10-10 13:22:20 +0100203struct device *rdev_get_dev(struct regulator_dev *rdev);
Liam Girdwood571a3542008-04-30 15:42:28 +0100204int rdev_get_id(struct regulator_dev *rdev);
205
Mark Brownbe721972009-08-04 20:09:52 +0200206int regulator_mode_to_status(unsigned int);
207
Liam Girdwooda5766f12008-10-10 13:22:20 +0100208void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data);
209
Liam Girdwood571a3542008-04-30 15:42:28 +0100210#endif