blob: 52c89ae32f64c8829dd68162d65b3dc2ae135afd [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 Walleij77af1b2642011-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
107 /* get/set regulator operating mode (defined in regulator.h) */
108 int (*set_mode) (struct regulator_dev *, unsigned int mode);
109 unsigned int (*get_mode) (struct regulator_dev *);
110
Linus Walleij77af1b2642011-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 Walleij77af1b2642011-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
138 /* set regulator suspend operating mode (defined in regulator.h) */
139 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/**
151 * struct regulator_desc - Regulator descriptor
152 *
Mark Brownc8e7e462008-12-31 12:52:42 +0000153 * Each regulator registered with the core is described with a structure of
154 * this type.
155 *
156 * @name: Identifying name for the regulator.
157 * @id: Numerical identifier for the regulator.
David Brownell4367cfd2009-02-26 11:48:36 -0800158 * @n_voltages: Number of selectors available for ops.list_voltage().
Mark Brownc8e7e462008-12-31 12:52:42 +0000159 * @ops: Regulator operations table.
Randy Dunlap0ba48872009-01-08 11:50:23 -0800160 * @irq: Interrupt number for the regulator.
Mark Brownc8e7e462008-12-31 12:52:42 +0000161 * @type: Indicates if the regulator is a voltage or current regulator.
162 * @owner: Module providing the regulator, used for refcounting.
Liam Girdwood571a3542008-04-30 15:42:28 +0100163 */
164struct regulator_desc {
165 const char *name;
166 int id;
David Brownell4367cfd2009-02-26 11:48:36 -0800167 unsigned n_voltages;
Liam Girdwood571a3542008-04-30 15:42:28 +0100168 struct regulator_ops *ops;
169 int irq;
170 enum regulator_type type;
171 struct module *owner;
172};
173
Mark Brown1fa9ad52009-01-21 14:08:40 +0000174/*
175 * struct regulator_dev
176 *
177 * Voltage / Current regulator class device. One for each
178 * regulator.
179 *
180 * This should *not* be used directly by anything except the regulator
181 * core and notification injection (which should take the mutex and do
182 * no other direct access).
183 */
184struct regulator_dev {
185 struct regulator_desc *desc;
Mark Brown5ffbd132009-07-21 16:00:23 +0100186 int exclusive;
Mark Brown1130e5b2010-12-21 23:49:31 +0000187 u32 use_count;
188 u32 open_count;
Mark Brown1fa9ad52009-01-21 14:08:40 +0000189
190 /* lists we belong to */
191 struct list_head list; /* list of all regulators */
Mark Brown1fa9ad52009-01-21 14:08:40 +0000192
193 /* lists we own */
194 struct list_head consumer_list; /* consumers we supply */
Mark Brown1fa9ad52009-01-21 14:08:40 +0000195
196 struct blocking_notifier_head notifier;
197 struct mutex mutex; /* consumer lock */
198 struct module *owner;
199 struct device dev;
200 struct regulation_constraints *constraints;
Mark Brown3801b862011-06-09 16:22:22 +0100201 struct regulator *supply; /* for tree */
Mark Brown1fa9ad52009-01-21 14:08:40 +0000202
Mark Brownda07ecd2011-09-11 09:53:50 +0100203 struct delayed_work disable_work;
204 int deferred_disables;
205
Mark Brown1fa9ad52009-01-21 14:08:40 +0000206 void *reg_data; /* regulator_dev data */
Mark Brown1130e5b2010-12-21 23:49:31 +0000207
208#ifdef CONFIG_DEBUG_FS
209 struct dentry *debugfs;
210#endif
Mark Brown1fa9ad52009-01-21 14:08:40 +0000211};
212
Liam Girdwood571a3542008-04-30 15:42:28 +0100213struct regulator_dev *regulator_register(struct regulator_desc *regulator_desc,
Mark Brownf8c12fe2010-11-29 15:55:17 +0000214 struct device *dev, const struct regulator_init_data *init_data,
Mark Brown05271002009-01-19 13:37:02 +0000215 void *driver_data);
Liam Girdwood571a3542008-04-30 15:42:28 +0100216void regulator_unregister(struct regulator_dev *rdev);
217
218int regulator_notifier_call_chain(struct regulator_dev *rdev,
219 unsigned long event, void *data);
220
221void *rdev_get_drvdata(struct regulator_dev *rdev);
Liam Girdwooda5766f12008-10-10 13:22:20 +0100222struct device *rdev_get_dev(struct regulator_dev *rdev);
Liam Girdwood571a3542008-04-30 15:42:28 +0100223int rdev_get_id(struct regulator_dev *rdev);
224
Mark Brownbe721972009-08-04 20:09:52 +0200225int regulator_mode_to_status(unsigned int);
226
Liam Girdwooda5766f12008-10-10 13:22:20 +0100227void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data);
228
Liam Girdwood571a3542008-04-30 15:42:28 +0100229#endif