]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/regulator/driver.h
regulator: get_status() grows kerneldoc
[net-next-2.6.git] / include / linux / regulator / driver.h
CommitLineData
571a354b
LG
1/*
2 * driver.h -- SoC Regulator driver support.
3 *
4 * Copyright (C) 2007, 2008 Wolfson Microelectronics PLC.
5 *
1dd68f01 6 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
571a354b
LG
7 *
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
571a354b 21struct regulator_dev;
a5766f11 22struct regulator_init_data;
571a354b 23
853116a1
DB
24enum 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
571a354b
LG
35/**
36 * struct regulator_ops - regulator operations.
37 *
3b2a6061
DB
38 * @enable: Configure the regulator as enabled.
39 * @disable: Configure the regulator as disabled.
0ba4887c 40 * @is_enabled: Return 1 if the regulator is enabled, 0 otherwise.
c8e7e464
MB
41 *
42 * @set_voltage: Set the voltage for the regulator within the range specified.
43 * The driver should select the voltage closest to min_uV.
44 * @get_voltage: Return the currently configured voltage for the regulator.
4367cfdc
DB
45 * @list_voltage: Return one of the supported voltages, in microvolts; zero
46 * if the selector indicates a voltage that is unusable on this system;
47 * or negative errno. Selectors range from zero to one less than
48 * regulator_desc.n_voltages. Voltages may be reported in any order.
c8e7e464 49 *
c8e7e464 50 * @set_current_limit: Configure a limit for a current-limited regulator.
3b2a6061 51 * @get_current_limit: Get the configured limit for a current-limited regulator.
c8e7e464 52 *
3b2a6061
DB
53 * @get_mode: Get the configured operating mode for the regulator.
54 * @get_status: Return actual (not as-configured) status of regulator, as a
55 * REGULATOR_STATUS value (or negative errno)
c8e7e464
MB
56 * @get_optimum_mode: Get the most efficient operating mode for the regulator
57 * when running with the specified parameters.
58 *
59 * @set_suspend_voltage: Set the voltage for the regulator when the system
60 * is suspended.
61 * @set_suspend_enable: Mark the regulator as enabled when the system is
62 * suspended.
63 * @set_suspend_disable: Mark the regulator as disabled when the system is
64 * suspended.
65 * @set_suspend_mode: Set the operating mode for the regulator when the
66 * system is suspended.
3b2a6061
DB
67 *
68 * This struct describes regulator operations which can be implemented by
69 * regulator chip drivers.
571a354b
LG
70 */
71struct regulator_ops {
72
4367cfdc
DB
73 /* enumerate supported voltages */
74 int (*list_voltage) (struct regulator_dev *, unsigned selector);
75
571a354b
LG
76 /* get/set regulator voltage */
77 int (*set_voltage) (struct regulator_dev *, int min_uV, int max_uV);
78 int (*get_voltage) (struct regulator_dev *);
79
80 /* get/set regulator current */
81 int (*set_current_limit) (struct regulator_dev *,
82 int min_uA, int max_uA);
83 int (*get_current_limit) (struct regulator_dev *);
84
85 /* enable/disable regulator */
86 int (*enable) (struct regulator_dev *);
87 int (*disable) (struct regulator_dev *);
88 int (*is_enabled) (struct regulator_dev *);
89
90 /* get/set regulator operating mode (defined in regulator.h) */
91 int (*set_mode) (struct regulator_dev *, unsigned int mode);
92 unsigned int (*get_mode) (struct regulator_dev *);
93
853116a1
DB
94 /* report regulator status ... most other accessors report
95 * control inputs, this reports results of combining inputs
96 * from Linux (and other sources) with the actual load.
3b2a6061 97 * returns REGULATOR_STATUS_* or negative errno.
853116a1
DB
98 */
99 int (*get_status)(struct regulator_dev *);
100
571a354b
LG
101 /* get most efficient regulator operating mode for load */
102 unsigned int (*get_optimum_mode) (struct regulator_dev *, int input_uV,
103 int output_uV, int load_uA);
104
105 /* the operations below are for configuration of regulator state when
3de89609 106 * its parent PMIC enters a global STANDBY/HIBERNATE state */
571a354b
LG
107
108 /* set regulator suspend voltage */
109 int (*set_suspend_voltage) (struct regulator_dev *, int uV);
110
111 /* enable/disable regulator in suspend state */
112 int (*set_suspend_enable) (struct regulator_dev *);
113 int (*set_suspend_disable) (struct regulator_dev *);
114
115 /* set regulator suspend operating mode (defined in regulator.h) */
116 int (*set_suspend_mode) (struct regulator_dev *, unsigned int mode);
117};
118
119/*
120 * Regulators can either control voltage or current.
121 */
122enum regulator_type {
123 REGULATOR_VOLTAGE,
124 REGULATOR_CURRENT,
125};
126
127/**
128 * struct regulator_desc - Regulator descriptor
129 *
c8e7e464
MB
130 * Each regulator registered with the core is described with a structure of
131 * this type.
132 *
133 * @name: Identifying name for the regulator.
134 * @id: Numerical identifier for the regulator.
4367cfdc 135 * @n_voltages: Number of selectors available for ops.list_voltage().
c8e7e464 136 * @ops: Regulator operations table.
0ba4887c 137 * @irq: Interrupt number for the regulator.
c8e7e464
MB
138 * @type: Indicates if the regulator is a voltage or current regulator.
139 * @owner: Module providing the regulator, used for refcounting.
571a354b
LG
140 */
141struct regulator_desc {
142 const char *name;
143 int id;
4367cfdc 144 unsigned n_voltages;
571a354b
LG
145 struct regulator_ops *ops;
146 int irq;
147 enum regulator_type type;
148 struct module *owner;
149};
150
1fa9ad52
MB
151/*
152 * struct regulator_dev
153 *
154 * Voltage / Current regulator class device. One for each
155 * regulator.
156 *
157 * This should *not* be used directly by anything except the regulator
158 * core and notification injection (which should take the mutex and do
159 * no other direct access).
160 */
161struct regulator_dev {
162 struct regulator_desc *desc;
163 int use_count;
164
165 /* lists we belong to */
166 struct list_head list; /* list of all regulators */
167 struct list_head slist; /* list of supplied regulators */
168
169 /* lists we own */
170 struct list_head consumer_list; /* consumers we supply */
171 struct list_head supply_list; /* regulators we supply */
172
173 struct blocking_notifier_head notifier;
174 struct mutex mutex; /* consumer lock */
175 struct module *owner;
176 struct device dev;
177 struct regulation_constraints *constraints;
178 struct regulator_dev *supply; /* for tree */
179
180 void *reg_data; /* regulator_dev data */
181};
182
571a354b 183struct regulator_dev *regulator_register(struct regulator_desc *regulator_desc,
0527100f
MB
184 struct device *dev, struct regulator_init_data *init_data,
185 void *driver_data);
571a354b
LG
186void regulator_unregister(struct regulator_dev *rdev);
187
188int regulator_notifier_call_chain(struct regulator_dev *rdev,
189 unsigned long event, void *data);
190
191void *rdev_get_drvdata(struct regulator_dev *rdev);
a5766f11 192struct device *rdev_get_dev(struct regulator_dev *rdev);
571a354b
LG
193int rdev_get_id(struct regulator_dev *rdev);
194
a5766f11
LG
195void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data);
196
571a354b 197#endif