acpi_pad: build only on X86
[linux-2.6/linux-acpi-2.6.git] / include / linux / regulator / driver.h
blob225f733e7533f40f149185b8f17ecce3e75ff8c9
1 /*
2 * driver.h -- SoC Regulator driver support.
4 * Copyright (C) 2007, 2008 Wolfson Microelectronics PLC.
6 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
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.
12 * Regulator Driver Interface.
15 #ifndef __LINUX_REGULATOR_DRIVER_H_
16 #define __LINUX_REGULATOR_DRIVER_H_
18 #include <linux/device.h>
19 #include <linux/regulator/consumer.h>
21 struct regulator_dev;
22 struct regulator_init_data;
24 enum 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,
35 /**
36 * struct regulator_ops - regulator operations.
38 * @enable: Configure the regulator as enabled.
39 * @disable: Configure the regulator as disabled.
40 * @is_enabled: Return 1 if the regulator is enabled, 0 otherwise.
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.
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.
50 * @set_current_limit: Configure a limit for a current-limited regulator.
51 * @get_current_limit: Get the configured limit for a current-limited regulator.
53 * @set_mode: Set the configured operating mode for the regulator.
54 * @get_mode: Get the configured operating mode for the regulator.
55 * @get_status: Return actual (not as-configured) status of regulator, as a
56 * REGULATOR_STATUS value (or negative errno)
57 * @get_optimum_mode: Get the most efficient operating mode for the regulator
58 * when running with the specified parameters.
60 * @set_suspend_voltage: Set the voltage for the regulator when the system
61 * is suspended.
62 * @set_suspend_enable: Mark the regulator as enabled when the system is
63 * suspended.
64 * @set_suspend_disable: Mark the regulator as disabled when the system is
65 * suspended.
66 * @set_suspend_mode: Set the operating mode for the regulator when the
67 * system is suspended.
69 * This struct describes regulator operations which can be implemented by
70 * regulator chip drivers.
72 struct regulator_ops {
74 /* enumerate supported voltages */
75 int (*list_voltage) (struct regulator_dev *, unsigned selector);
77 /* get/set regulator voltage */
78 int (*set_voltage) (struct regulator_dev *, int min_uV, int max_uV);
79 int (*get_voltage) (struct regulator_dev *);
81 /* get/set regulator current */
82 int (*set_current_limit) (struct regulator_dev *,
83 int min_uA, int max_uA);
84 int (*get_current_limit) (struct regulator_dev *);
86 /* enable/disable regulator */
87 int (*enable) (struct regulator_dev *);
88 int (*disable) (struct regulator_dev *);
89 int (*is_enabled) (struct regulator_dev *);
91 /* get/set regulator operating mode (defined in regulator.h) */
92 int (*set_mode) (struct regulator_dev *, unsigned int mode);
93 unsigned int (*get_mode) (struct regulator_dev *);
95 /* report regulator status ... most other accessors report
96 * control inputs, this reports results of combining inputs
97 * from Linux (and other sources) with the actual load.
98 * returns REGULATOR_STATUS_* or negative errno.
100 int (*get_status)(struct regulator_dev *);
102 /* get most efficient regulator operating mode for load */
103 unsigned int (*get_optimum_mode) (struct regulator_dev *, int input_uV,
104 int output_uV, int load_uA);
106 /* the operations below are for configuration of regulator state when
107 * its parent PMIC enters a global STANDBY/HIBERNATE state */
109 /* set regulator suspend voltage */
110 int (*set_suspend_voltage) (struct regulator_dev *, int uV);
112 /* enable/disable regulator in suspend state */
113 int (*set_suspend_enable) (struct regulator_dev *);
114 int (*set_suspend_disable) (struct regulator_dev *);
116 /* set regulator suspend operating mode (defined in regulator.h) */
117 int (*set_suspend_mode) (struct regulator_dev *, unsigned int mode);
121 * Regulators can either control voltage or current.
123 enum regulator_type {
124 REGULATOR_VOLTAGE,
125 REGULATOR_CURRENT,
129 * struct regulator_desc - Regulator descriptor
131 * Each regulator registered with the core is described with a structure of
132 * this type.
134 * @name: Identifying name for the regulator.
135 * @id: Numerical identifier for the regulator.
136 * @n_voltages: Number of selectors available for ops.list_voltage().
137 * @ops: Regulator operations table.
138 * @irq: Interrupt number for the regulator.
139 * @type: Indicates if the regulator is a voltage or current regulator.
140 * @owner: Module providing the regulator, used for refcounting.
142 struct regulator_desc {
143 const char *name;
144 int id;
145 unsigned n_voltages;
146 struct regulator_ops *ops;
147 int irq;
148 enum regulator_type type;
149 struct module *owner;
153 * struct regulator_dev
155 * Voltage / Current regulator class device. One for each
156 * regulator.
158 * This should *not* be used directly by anything except the regulator
159 * core and notification injection (which should take the mutex and do
160 * no other direct access).
162 struct regulator_dev {
163 struct regulator_desc *desc;
164 int use_count;
166 /* lists we belong to */
167 struct list_head list; /* list of all regulators */
168 struct list_head slist; /* list of supplied regulators */
170 /* lists we own */
171 struct list_head consumer_list; /* consumers we supply */
172 struct list_head supply_list; /* regulators we supply */
174 struct blocking_notifier_head notifier;
175 struct mutex mutex; /* consumer lock */
176 struct module *owner;
177 struct device dev;
178 struct regulation_constraints *constraints;
179 struct regulator_dev *supply; /* for tree */
181 void *reg_data; /* regulator_dev data */
184 struct regulator_dev *regulator_register(struct regulator_desc *regulator_desc,
185 struct device *dev, struct regulator_init_data *init_data,
186 void *driver_data);
187 void regulator_unregister(struct regulator_dev *rdev);
189 int regulator_notifier_call_chain(struct regulator_dev *rdev,
190 unsigned long event, void *data);
192 void *rdev_get_drvdata(struct regulator_dev *rdev);
193 struct device *rdev_get_dev(struct regulator_dev *rdev);
194 int rdev_get_id(struct regulator_dev *rdev);
196 void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data);
198 #endif