driver.h 12.3 KB
Newer Older
1 2 3 4 5
/*
 * driver.h -- SoC Regulator driver support.
 *
 * Copyright (C) 2007, 2008 Wolfson Microelectronics PLC.
 *
6
 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
7 8 9 10 11 12 13 14 15 16 17 18
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 * Regulator Driver Interface.
 */

#ifndef __LINUX_REGULATOR_DRIVER_H_
#define __LINUX_REGULATOR_DRIVER_H_

#include <linux/device.h>
19
#include <linux/notifier.h>
20 21
#include <linux/regulator/consumer.h>

22
struct regmap;
23
struct regulator_dev;
24
struct regulator_init_data;
25

D
David Brownell 已提交
26 27 28 29 30 31 32 33 34
enum regulator_status {
	REGULATOR_STATUS_OFF,
	REGULATOR_STATUS_ON,
	REGULATOR_STATUS_ERROR,
	/* fast/normal/idle/standby are flavors of "on" */
	REGULATOR_STATUS_FAST,
	REGULATOR_STATUS_NORMAL,
	REGULATOR_STATUS_IDLE,
	REGULATOR_STATUS_STANDBY,
35 36
	/* The regulator is enabled but not regulating */
	REGULATOR_STATUS_BYPASS,
37 38
	/* in case that any other status doesn't apply */
	REGULATOR_STATUS_UNDEFINED,
D
David Brownell 已提交
39 40
};

41 42 43
/**
 * struct regulator_ops - regulator operations.
 *
44 45
 * @enable: Configure the regulator as enabled.
 * @disable: Configure the regulator as disabled.
46 47
 * @is_enabled: Return 1 if the regulator is enabled, 0 if not.
 *		May also return negative errno.
M
Mark Brown 已提交
48 49 50
 *
 * @set_voltage: Set the voltage for the regulator within the range specified.
 *               The driver should select the voltage closest to min_uV.
51 52
 * @set_voltage_sel: Set the voltage for the regulator using the specified
 *                   selector.
53
 * @map_voltage: Convert a voltage into a selector
M
Mark Brown 已提交
54
 * @get_voltage: Return the currently configured voltage for the regulator.
55 56
 * @get_voltage_sel: Return the currently configured voltage selector for the
 *                   regulator.
57 58 59 60
 * @list_voltage: Return one of the supported voltages, in microvolts; zero
 *	if the selector indicates a voltage that is unusable on this system;
 *	or negative errno.  Selectors range from zero to one less than
 *	regulator_desc.n_voltages.  Voltages may be reported in any order.
M
Mark Brown 已提交
61 62
 *
 * @set_current_limit: Configure a limit for a current-limited regulator.
63
 *                     The driver should select the current closest to max_uA.
64
 * @get_current_limit: Get the configured limit for a current-limited regulator.
M
Mark Brown 已提交
65
 *
66
 * @set_mode: Set the configured operating mode for the regulator.
67 68 69
 * @get_mode: Get the configured operating mode for the regulator.
 * @get_status: Return actual (not as-configured) status of regulator, as a
 *	REGULATOR_STATUS value (or negative errno)
M
Mark Brown 已提交
70 71 72
 * @get_optimum_mode: Get the most efficient operating mode for the regulator
 *                    when running with the specified parameters.
 *
73 74 75
 * @set_bypass: Set the regulator in bypass mode.
 * @get_bypass: Get the regulator bypass mode state.
 *
76
 * @enable_time: Time taken for the regulator voltage output voltage to
77
 *               stabilise after being enabled, in microseconds.
78 79
 * @set_ramp_delay: Set the ramp delay for the regulator. The driver should
 *		select ramp delay equal to or less than(closest) ramp_delay.
80 81 82 83
 * @set_voltage_time_sel: Time taken for the regulator voltage output voltage
 *               to stabilise after being set to a new value, in microseconds.
 *               The function provides the from and to voltage selector, the
 *               function should return the worst case.
84
 *
M
Mark Brown 已提交
85 86 87 88 89 90 91 92
 * @set_suspend_voltage: Set the voltage for the regulator when the system
 *                       is suspended.
 * @set_suspend_enable: Mark the regulator as enabled when the system is
 *                      suspended.
 * @set_suspend_disable: Mark the regulator as disabled when the system is
 *                       suspended.
 * @set_suspend_mode: Set the operating mode for the regulator when the
 *                    system is suspended.
93 94 95
 *
 * This struct describes regulator operations which can be implemented by
 * regulator chip drivers.
96 97 98
 */
struct regulator_ops {

99 100 101
	/* enumerate supported voltages */
	int (*list_voltage) (struct regulator_dev *, unsigned selector);

102
	/* get/set regulator voltage */
103 104
	int (*set_voltage) (struct regulator_dev *, int min_uV, int max_uV,
			    unsigned *selector);
105
	int (*map_voltage)(struct regulator_dev *, int min_uV, int max_uV);
106
	int (*set_voltage_sel) (struct regulator_dev *, unsigned selector);
107
	int (*get_voltage) (struct regulator_dev *);
108
	int (*get_voltage_sel) (struct regulator_dev *);
109 110 111 112 113 114 115 116 117 118 119

	/* get/set regulator current  */
	int (*set_current_limit) (struct regulator_dev *,
				 int min_uA, int max_uA);
	int (*get_current_limit) (struct regulator_dev *);

	/* enable/disable regulator */
	int (*enable) (struct regulator_dev *);
	int (*disable) (struct regulator_dev *);
	int (*is_enabled) (struct regulator_dev *);

120
	/* get/set regulator operating mode (defined in consumer.h) */
121 122 123
	int (*set_mode) (struct regulator_dev *, unsigned int mode);
	unsigned int (*get_mode) (struct regulator_dev *);

124
	/* Time taken to enable or set voltage on the regulator */
125
	int (*enable_time) (struct regulator_dev *);
126
	int (*set_ramp_delay) (struct regulator_dev *, int ramp_delay);
127 128 129
	int (*set_voltage_time_sel) (struct regulator_dev *,
				     unsigned int old_selector,
				     unsigned int new_selector);
130

D
David Brownell 已提交
131 132 133
	/* report regulator status ... most other accessors report
	 * control inputs, this reports results of combining inputs
	 * from Linux (and other sources) with the actual load.
134
	 * returns REGULATOR_STATUS_* or negative errno.
D
David Brownell 已提交
135 136 137
	 */
	int (*get_status)(struct regulator_dev *);

138 139 140 141
	/* get most efficient regulator operating mode for load */
	unsigned int (*get_optimum_mode) (struct regulator_dev *, int input_uV,
					  int output_uV, int load_uA);

142 143 144 145
	/* control and report on bypass mode */
	int (*set_bypass)(struct regulator_dev *dev, bool enable);
	int (*get_bypass)(struct regulator_dev *dev, bool *enable);

146
	/* the operations below are for configuration of regulator state when
M
Mark Brown 已提交
147
	 * its parent PMIC enters a global STANDBY/HIBERNATE state */
148 149 150 151 152 153 154 155

	/* set regulator suspend voltage */
	int (*set_suspend_voltage) (struct regulator_dev *, int uV);

	/* enable/disable regulator in suspend state */
	int (*set_suspend_enable) (struct regulator_dev *);
	int (*set_suspend_disable) (struct regulator_dev *);

156
	/* set regulator suspend operating mode (defined in consumer.h) */
157 158 159 160 161 162 163 164 165 166 167 168
	int (*set_suspend_mode) (struct regulator_dev *, unsigned int mode);
};

/*
 * Regulators can either control voltage or current.
 */
enum regulator_type {
	REGULATOR_VOLTAGE,
	REGULATOR_CURRENT,
};

/**
169
 * struct regulator_desc - Static regulator descriptor
170
 *
171 172 173 174
 * Each regulator registered with the core is described with a
 * structure of this type and a struct regulator_config.  This
 * structure contains the non-varying parts of the regulator
 * description.
M
Mark Brown 已提交
175 176
 *
 * @name: Identifying name for the regulator.
177
 * @supply_name: Identifying the regulator supply
M
Mark Brown 已提交
178 179
 * @id: Numerical identifier for the regulator.
 * @ops: Regulator operations table.
180
 * @irq: Interrupt number for the regulator.
M
Mark Brown 已提交
181 182
 * @type: Indicates if the regulator is a voltage or current regulator.
 * @owner: Module providing the regulator, used for refcounting.
183
 *
184 185
 * @continuous_voltage_range: Indicates if the regulator can set any
 *                            voltage within constrains range.
186 187 188 189
 * @n_voltages: Number of selectors available for ops.list_voltage().
 *
 * @min_uV: Voltage given by the lowest selector (if linear mapping)
 * @uV_step: Voltage increase with each selector (if linear mapping)
190
 * @linear_min_sel: Minimal selector for starting linear mapping
191
 * @ramp_delay: Time to settle down after voltage change (unit: uV/us)
192
 * @volt_table: Voltage mapping table (if table based mapping)
193
 *
194 195
 * @vsel_reg: Register for selector when using regulator_regmap_X_voltage_
 * @vsel_mask: Mask for register bitfield used for selector
196 197 198 199
 * @apply_reg: Register for initiate voltage change on the output when
 *                using regulator_set_voltage_sel_regmap
 * @apply_bit: Register bitfield used for initiate voltage change on the
 *                output when using regulator_set_voltage_sel_regmap
200 201
 * @enable_reg: Register for control when using regmap enable/disable ops
 * @enable_mask: Mask for control when using regmap enable/disable ops
202 203
 * @bypass_reg: Register for control when using regmap set_bypass
 * @bypass_mask: Mask for control when using regmap set_bypass
204 205
 *
 * @enable_time: Time taken for initial enable of regulator (in uS).
206 207 208
 */
struct regulator_desc {
	const char *name;
209
	const char *supply_name;
210
	int id;
211
	bool continuous_voltage_range;
212
	unsigned n_voltages;
213 214 215 216
	struct regulator_ops *ops;
	int irq;
	enum regulator_type type;
	struct module *owner;
217

218 219
	unsigned int min_uV;
	unsigned int uV_step;
220
	unsigned int linear_min_sel;
221
	unsigned int ramp_delay;
222

223 224
	const unsigned int *volt_table;

225 226
	unsigned int vsel_reg;
	unsigned int vsel_mask;
227 228
	unsigned int apply_reg;
	unsigned int apply_bit;
229 230
	unsigned int enable_reg;
	unsigned int enable_mask;
231 232
	unsigned int bypass_reg;
	unsigned int bypass_mask;
233 234

	unsigned int enable_time;
235 236
};

237 238 239 240 241 242 243 244 245 246 247 248
/**
 * struct regulator_config - Dynamic regulator descriptor
 *
 * Each regulator registered with the core is described with a
 * structure of this type and a struct regulator_desc.  This structure
 * contains the runtime variable parts of the regulator description.
 *
 * @dev: struct device for the regulator
 * @init_data: platform provided init data, passed through by driver
 * @driver_data: private regulator data
 * @of_node: OpenFirmware node to parse for device tree bindings (may be
 *           NULL).
249 250
 * @regmap: regmap to use for core regmap helpers if dev_get_regulator() is
 *          insufficient.
251 252 253
 * @ena_gpio: GPIO controlling regulator enable.
 * @ena_gpio_invert: Sense for GPIO enable control.
 * @ena_gpio_flags: Flags to use when calling gpio_request_one()
254 255 256 257 258 259
 */
struct regulator_config {
	struct device *dev;
	const struct regulator_init_data *init_data;
	void *driver_data;
	struct device_node *of_node;
260
	struct regmap *regmap;
261 262 263 264

	int ena_gpio;
	unsigned int ena_gpio_invert:1;
	unsigned int ena_gpio_flags;
265 266
};

267 268 269 270 271 272 273 274 275 276 277
/*
 * struct regulator_dev
 *
 * Voltage / Current regulator class device. One for each
 * regulator.
 *
 * This should *not* be used directly by anything except the regulator
 * core and notification injection (which should take the mutex and do
 * no other direct access).
 */
struct regulator_dev {
278
	const struct regulator_desc *desc;
279
	int exclusive;
280 281
	u32 use_count;
	u32 open_count;
282
	u32 bypass_count;
283 284 285 286 287 288 289 290 291 292 293 294

	/* lists we belong to */
	struct list_head list; /* list of all regulators */

	/* lists we own */
	struct list_head consumer_list; /* consumers we supply */

	struct blocking_notifier_head notifier;
	struct mutex mutex; /* consumer lock */
	struct module *owner;
	struct device dev;
	struct regulation_constraints *constraints;
295
	struct regulator *supply;	/* for tree */
296
	struct regmap *regmap;
297

298 299 300
	struct delayed_work disable_work;
	int deferred_disables;

301
	void *reg_data;		/* regulator_dev data */
302 303

	struct dentry *debugfs;
304 305 306 307

	int ena_gpio;
	unsigned int ena_gpio_invert:1;
	unsigned int ena_gpio_state:1;
308 309
};

310 311
struct regulator_dev *
regulator_register(const struct regulator_desc *regulator_desc,
312
		   const struct regulator_config *config);
313 314 315 316 317 318
void regulator_unregister(struct regulator_dev *rdev);

int regulator_notifier_call_chain(struct regulator_dev *rdev,
				  unsigned long event, void *data);

void *rdev_get_drvdata(struct regulator_dev *rdev);
319
struct device *rdev_get_dev(struct regulator_dev *rdev);
320 321
int rdev_get_id(struct regulator_dev *rdev);

322 323
int regulator_mode_to_status(unsigned int);

324 325
int regulator_list_voltage_linear(struct regulator_dev *rdev,
				  unsigned int selector);
326 327
int regulator_list_voltage_table(struct regulator_dev *rdev,
				  unsigned int selector);
328 329
int regulator_map_voltage_linear(struct regulator_dev *rdev,
				  int min_uV, int max_uV);
330 331
int regulator_map_voltage_iterate(struct regulator_dev *rdev,
				  int min_uV, int max_uV);
332 333
int regulator_get_voltage_sel_regmap(struct regulator_dev *rdev);
int regulator_set_voltage_sel_regmap(struct regulator_dev *rdev, unsigned sel);
334 335 336
int regulator_is_enabled_regmap(struct regulator_dev *rdev);
int regulator_enable_regmap(struct regulator_dev *rdev);
int regulator_disable_regmap(struct regulator_dev *rdev);
337 338 339
int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
				   unsigned int old_selector,
				   unsigned int new_selector);
340 341
int regulator_set_bypass_regmap(struct regulator_dev *rdev, bool enable);
int regulator_get_bypass_regmap(struct regulator_dev *rdev, bool *enable);
342

343 344
void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data);

345
#endif