driver.h 19.1 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 gpio_desc;
23
struct regmap;
24
struct regulator_dev;
25
struct regulator_config;
26
struct regulator_init_data;
27
struct regulator_enable_gpio;
28

D
David Brownell 已提交
29 30 31 32 33 34 35 36 37
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,
38 39
	/* The regulator is enabled but not regulating */
	REGULATOR_STATUS_BYPASS,
40 41
	/* in case that any other status doesn't apply */
	REGULATOR_STATUS_UNDEFINED,
D
David Brownell 已提交
42 43
};

44
/**
45 46
 * struct regulator_linear_range - specify linear voltage ranges
 *
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
 * Specify a range of voltages for regulator_map_linar_range() and
 * regulator_list_linear_range().
 *
 * @min_uV:  Lowest voltage in range
 * @min_sel: Lowest selector for range
 * @max_sel: Highest selector for range
 * @uV_step: Step size
 */
struct regulator_linear_range {
	unsigned int min_uV;
	unsigned int min_sel;
	unsigned int max_sel;
	unsigned int uV_step;
};

62 63 64 65 66 67 68 69 70
/* Initialize struct regulator_linear_range */
#define REGULATOR_LINEAR_RANGE(_min_uV, _min_sel, _max_sel, _step_uV)	\
{									\
	.min_uV		= _min_uV,					\
	.min_sel	= _min_sel,					\
	.max_sel	= _max_sel,					\
	.uV_step	= _step_uV,					\
}

71 72 73
/**
 * struct regulator_ops - regulator operations.
 *
74 75
 * @enable: Configure the regulator as enabled.
 * @disable: Configure the regulator as disabled.
76 77
 * @is_enabled: Return 1 if the regulator is enabled, 0 if not.
 *		May also return negative errno.
M
Mark Brown 已提交
78 79 80
 *
 * @set_voltage: Set the voltage for the regulator within the range specified.
 *               The driver should select the voltage closest to min_uV.
81 82
 * @set_voltage_sel: Set the voltage for the regulator using the specified
 *                   selector.
83
 * @map_voltage: Convert a voltage into a selector
M
Mark Brown 已提交
84
 * @get_voltage: Return the currently configured voltage for the regulator.
85 86
 * @get_voltage_sel: Return the currently configured voltage selector for the
 *                   regulator.
87 88 89 90
 * @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 已提交
91 92
 *
 * @set_current_limit: Configure a limit for a current-limited regulator.
93
 *                     The driver should select the current closest to max_uA.
94
 * @get_current_limit: Get the configured limit for a current-limited regulator.
95
 * @set_input_current_limit: Configure an input limit.
M
Mark Brown 已提交
96
 *
97 98 99
 * @set_over_current_protection: Support capability of automatically shutting
 *                               down when detecting an over current event.
 *
100 101
 * @set_active_discharge: Set active discharge enable/disable of regulators.
 *
102
 * @set_mode: Set the configured operating mode for the regulator.
103
 * @get_mode: Get the configured operating mode for the regulator.
104
 * @get_error_flags: Get the current error(s) for the regulator.
105 106
 * @get_status: Return actual (not as-configured) status of regulator, as a
 *	REGULATOR_STATUS value (or negative errno)
M
Mark Brown 已提交
107 108
 * @get_optimum_mode: Get the most efficient operating mode for the regulator
 *                    when running with the specified parameters.
109
 * @set_load: Set the load for the regulator.
M
Mark Brown 已提交
110
 *
111 112 113
 * @set_bypass: Set the regulator in bypass mode.
 * @get_bypass: Get the regulator bypass mode state.
 *
114
 * @enable_time: Time taken for the regulator voltage output voltage to
115
 *               stabilise after being enabled, in microseconds.
116 117
 * @set_ramp_delay: Set the ramp delay for the regulator. The driver should
 *		select ramp delay equal to or less than(closest) ramp_delay.
118 119 120 121
 * @set_voltage_time: Time taken for the regulator voltage output voltage
 *               to stabilise after being set to a new value, in microseconds.
 *               The function receives the from and to voltage as input, it
 *               should return the worst case.
122 123
 * @set_voltage_time_sel: Time taken for the regulator voltage output voltage
 *               to stabilise after being set to a new value, in microseconds.
124 125
 *               The function receives the from and to voltage selector as
 *               input, it should return the worst case.
126
 * @set_soft_start: Enable soft start for the regulator.
127
 *
M
Mark Brown 已提交
128 129 130 131 132 133 134 135
 * @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.
136
 *
S
Stephen Boyd 已提交
137 138 139
 * @set_pull_down: Configure the regulator to pull down when the regulator
 *		   is disabled.
 *
140 141
 * This struct describes regulator operations which can be implemented by
 * regulator chip drivers.
142 143 144
 */
struct regulator_ops {

145 146 147
	/* enumerate supported voltages */
	int (*list_voltage) (struct regulator_dev *, unsigned selector);

148
	/* get/set regulator voltage */
149 150
	int (*set_voltage) (struct regulator_dev *, int min_uV, int max_uV,
			    unsigned *selector);
151
	int (*map_voltage)(struct regulator_dev *, int min_uV, int max_uV);
152
	int (*set_voltage_sel) (struct regulator_dev *, unsigned selector);
153
	int (*get_voltage) (struct regulator_dev *);
154
	int (*get_voltage_sel) (struct regulator_dev *);
155 156 157 158 159 160

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

161
	int (*set_input_current_limit) (struct regulator_dev *, int lim_uA);
162
	int (*set_over_current_protection) (struct regulator_dev *);
163
	int (*set_active_discharge) (struct regulator_dev *, bool enable);
164

165 166 167 168 169
	/* enable/disable regulator */
	int (*enable) (struct regulator_dev *);
	int (*disable) (struct regulator_dev *);
	int (*is_enabled) (struct regulator_dev *);

170
	/* get/set regulator operating mode (defined in consumer.h) */
171 172 173
	int (*set_mode) (struct regulator_dev *, unsigned int mode);
	unsigned int (*get_mode) (struct regulator_dev *);

174 175 176
	/* retrieve current error flags on the regulator */
	int (*get_error_flags)(struct regulator_dev *, unsigned int *flags);

177
	/* Time taken to enable or set voltage on the regulator */
178
	int (*enable_time) (struct regulator_dev *);
179
	int (*set_ramp_delay) (struct regulator_dev *, int ramp_delay);
180 181
	int (*set_voltage_time) (struct regulator_dev *, int old_uV,
				 int new_uV);
182 183 184
	int (*set_voltage_time_sel) (struct regulator_dev *,
				     unsigned int old_selector,
				     unsigned int new_selector);
185

S
Stephen Boyd 已提交
186 187
	int (*set_soft_start) (struct regulator_dev *);

D
David Brownell 已提交
188 189 190
	/* report regulator status ... most other accessors report
	 * control inputs, this reports results of combining inputs
	 * from Linux (and other sources) with the actual load.
191
	 * returns REGULATOR_STATUS_* or negative errno.
D
David Brownell 已提交
192 193 194
	 */
	int (*get_status)(struct regulator_dev *);

195 196 197
	/* 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);
198 199
	/* set the load on the regulator */
	int (*set_load)(struct regulator_dev *, int load_uA);
200

201 202 203 204
	/* control and report on bypass mode */
	int (*set_bypass)(struct regulator_dev *dev, bool enable);
	int (*get_bypass)(struct regulator_dev *dev, bool *enable);

205
	/* the operations below are for configuration of regulator state when
M
Mark Brown 已提交
206
	 * its parent PMIC enters a global STANDBY/HIBERNATE state */
207 208 209 210 211 212 213 214

	/* 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 *);

215
	/* set regulator suspend operating mode (defined in consumer.h) */
216
	int (*set_suspend_mode) (struct regulator_dev *, unsigned int mode);
S
Stephen Boyd 已提交
217

218 219
	int (*resume_early)(struct regulator_dev *rdev);

S
Stephen Boyd 已提交
220
	int (*set_pull_down) (struct regulator_dev *);
221 222 223 224 225 226 227 228 229 230 231
};

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

/**
232
 * struct regulator_desc - Static regulator descriptor
233
 *
234 235 236 237
 * 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 已提交
238 239
 *
 * @name: Identifying name for the regulator.
240
 * @supply_name: Identifying the regulator supply
241 242
 * @of_match: Name used to identify regulator in DT.
 * @regulators_node: Name of node containing regulator definitions in DT.
243 244 245 246 247 248 249 250 251
 * @of_parse_cb: Optional callback called only if of_match is present.
 *               Will be called for each regulator parsed from DT, during
 *               init_data parsing.
 *               The regulator_config passed as argument to the callback will
 *               be a copy of config passed to regulator_register, valid only
 *               for this particular call. Callback may freely change the
 *               config but it cannot store it for later usage.
 *               Callback should return 0 on success or negative ERRNO
 *               indicating failure.
M
Mark Brown 已提交
252 253
 * @id: Numerical identifier for the regulator.
 * @ops: Regulator operations table.
254
 * @irq: Interrupt number for the regulator.
M
Mark Brown 已提交
255 256
 * @type: Indicates if the regulator is a voltage or current regulator.
 * @owner: Module providing the regulator, used for refcounting.
257
 *
258 259
 * @continuous_voltage_range: Indicates if the regulator can set any
 *                            voltage within constrains range.
260 261 262 263
 * @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)
264
 * @linear_min_sel: Minimal selector for starting linear mapping
265
 * @fixed_uV: Fixed voltage of rails.
266
 * @ramp_delay: Time to settle down after voltage change (unit: uV/us)
S
Sascha Hauer 已提交
267
 * @min_dropout_uV: The minimum dropout voltage this regulator can handle
268 269
 * @linear_ranges: A constant table of possible voltage ranges.
 * @n_linear_ranges: Number of entries in the @linear_ranges table.
270
 * @volt_table: Voltage mapping table (if table based mapping)
271
 *
272 273
 * @vsel_reg: Register for selector when using regulator_regmap_X_voltage_
 * @vsel_mask: Mask for register bitfield used for selector
274 275
 * @csel_reg: Register for TPS65218 LS3 current regulator
 * @csel_mask: Mask for TPS65218 LS3 current regulator
276 277 278 279
 * @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
280 281
 * @enable_reg: Register for control when using regmap enable/disable ops
 * @enable_mask: Mask for control when using regmap enable/disable ops
282 283
 * @enable_val: Enabling value for control when using regmap enable/disable ops
 * @disable_val: Disabling value for control when using regmap enable/disable ops
284 285
 * @enable_is_inverted: A flag to indicate set enable_mask bits to disable
 *                      when using regulator_enable_regmap and friends APIs.
286 287
 * @bypass_reg: Register for control when using regmap set_bypass
 * @bypass_mask: Mask for control when using regmap set_bypass
288 289
 * @bypass_val_on: Enabling value for control when using regmap set_bypass
 * @bypass_val_off: Disabling value for control when using regmap set_bypass
290 291 292 293 294 295 296 297
 * @active_discharge_off: Enabling value for control when using regmap
 *			  set_active_discharge
 * @active_discharge_on: Disabling value for control when using regmap
 *			 set_active_discharge
 * @active_discharge_mask: Mask for control when using regmap
 *			   set_active_discharge
 * @active_discharge_reg: Register for control when using regmap
 *			  set_active_discharge
298 299 300 301
 * @soft_start_reg: Register for control when using regmap set_soft_start
 * @soft_start_mask: Mask for control when using regmap set_soft_start
 * @soft_start_val_on: Enabling value for control when using regmap
 *                     set_soft_start
302 303 304 305
 * @pull_down_reg: Register for control when using regmap set_pull_down
 * @pull_down_mask: Mask for control when using regmap set_pull_down
 * @pull_down_val_on: Enabling value for control when using regmap
 *                     set_pull_down
306 307
 *
 * @enable_time: Time taken for initial enable of regulator (in uS).
308
 * @off_on_delay: guard time (in uS), before re-enabling a regulator
309 310
 *
 * @of_map_mode: Maps a hardware mode defined in a DeviceTree to a standard mode
311 312 313
 */
struct regulator_desc {
	const char *name;
314
	const char *supply_name;
315 316
	const char *of_match;
	const char *regulators_node;
317 318 319
	int (*of_parse_cb)(struct device_node *,
			    const struct regulator_desc *,
			    struct regulator_config *);
320
	int id;
321
	unsigned int continuous_voltage_range:1;
322
	unsigned n_voltages;
323
	const struct regulator_ops *ops;
324 325 326
	int irq;
	enum regulator_type type;
	struct module *owner;
327

328 329
	unsigned int min_uV;
	unsigned int uV_step;
330
	unsigned int linear_min_sel;
331
	int fixed_uV;
332
	unsigned int ramp_delay;
S
Sascha Hauer 已提交
333
	int min_dropout_uV;
334

335 336 337
	const struct regulator_linear_range *linear_ranges;
	int n_linear_ranges;

338 339
	const unsigned int *volt_table;

340 341
	unsigned int vsel_reg;
	unsigned int vsel_mask;
342 343
	unsigned int csel_reg;
	unsigned int csel_mask;
344 345
	unsigned int apply_reg;
	unsigned int apply_bit;
346 347
	unsigned int enable_reg;
	unsigned int enable_mask;
348 349
	unsigned int enable_val;
	unsigned int disable_val;
350
	bool enable_is_inverted;
351 352
	unsigned int bypass_reg;
	unsigned int bypass_mask;
353 354
	unsigned int bypass_val_on;
	unsigned int bypass_val_off;
355 356 357 358
	unsigned int active_discharge_on;
	unsigned int active_discharge_off;
	unsigned int active_discharge_mask;
	unsigned int active_discharge_reg;
359 360 361
	unsigned int soft_start_reg;
	unsigned int soft_start_mask;
	unsigned int soft_start_val_on;
362 363 364
	unsigned int pull_down_reg;
	unsigned int pull_down_mask;
	unsigned int pull_down_val_on;
365 366

	unsigned int enable_time;
367 368

	unsigned int off_on_delay;
369 370

	unsigned int (*of_map_mode)(unsigned int mode);
371 372
};

373 374 375 376 377 378 379 380 381 382 383 384
/**
 * 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).
385
 * @regmap: regmap to use for core regmap helpers if dev_get_regmap() is
386
 *          insufficient.
387 388 389
 * @ena_gpio_initialized: GPIO controlling regulator enable was properly
 *                        initialized, meaning that >= 0 is a valid gpio
 *                        identifier and < 0 is a non existent gpio.
390
 * @ena_gpio: GPIO controlling regulator enable.
391
 * @ena_gpiod: GPIO descriptor controlling regulator enable.
392 393
 * @ena_gpio_invert: Sense for GPIO enable control.
 * @ena_gpio_flags: Flags to use when calling gpio_request_one()
394 395 396 397 398 399
 */
struct regulator_config {
	struct device *dev;
	const struct regulator_init_data *init_data;
	void *driver_data;
	struct device_node *of_node;
400
	struct regmap *regmap;
401

402
	bool ena_gpio_initialized;
403
	int ena_gpio;
404
	struct gpio_desc *ena_gpiod;
405 406
	unsigned int ena_gpio_invert:1;
	unsigned int ena_gpio_flags;
407 408
};

409 410 411 412 413 414 415 416 417 418 419
/*
 * 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 {
420
	const struct regulator_desc *desc;
421
	int exclusive;
422 423
	u32 use_count;
	u32 open_count;
424
	u32 bypass_count;
425 426 427 428 429 430 431 432 433 434 435 436

	/* 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;
437
	struct regulator *supply;	/* for tree */
438
	const char *supply_name;
439
	struct regmap *regmap;
440

441 442 443
	struct delayed_work disable_work;
	int deferred_disables;

444
	void *reg_data;		/* regulator_dev data */
445 446

	struct dentry *debugfs;
447

448
	struct regulator_enable_gpio *ena_pin;
449
	unsigned int ena_gpio_state:1;
450

451 452
	unsigned int is_switch:1;

453 454
	/* time when this regulator was disabled last time */
	unsigned long last_off_jiffy;
455 456
};

457 458
struct regulator_dev *
regulator_register(const struct regulator_desc *regulator_desc,
459
		   const struct regulator_config *config);
460 461 462 463
struct regulator_dev *
devm_regulator_register(struct device *dev,
			const struct regulator_desc *regulator_desc,
			const struct regulator_config *config);
464
void regulator_unregister(struct regulator_dev *rdev);
465
void devm_regulator_unregister(struct device *dev, struct regulator_dev *rdev);
466 467 468 469 470

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

void *rdev_get_drvdata(struct regulator_dev *rdev);
471
struct device *rdev_get_dev(struct regulator_dev *rdev);
472 473
int rdev_get_id(struct regulator_dev *rdev);

474 475
int regulator_mode_to_status(unsigned int);

476 477
int regulator_list_voltage_linear(struct regulator_dev *rdev,
				  unsigned int selector);
478 479
int regulator_list_voltage_linear_range(struct regulator_dev *rdev,
					unsigned int selector);
480 481
int regulator_list_voltage_table(struct regulator_dev *rdev,
				  unsigned int selector);
482 483
int regulator_map_voltage_linear(struct regulator_dev *rdev,
				  int min_uV, int max_uV);
484 485
int regulator_map_voltage_linear_range(struct regulator_dev *rdev,
				       int min_uV, int max_uV);
486 487
int regulator_map_voltage_iterate(struct regulator_dev *rdev,
				  int min_uV, int max_uV);
488 489
int regulator_map_voltage_ascend(struct regulator_dev *rdev,
				  int min_uV, int max_uV);
490 491
int regulator_get_voltage_sel_regmap(struct regulator_dev *rdev);
int regulator_set_voltage_sel_regmap(struct regulator_dev *rdev, unsigned sel);
492 493 494
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);
495 496 497
int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
				   unsigned int old_selector,
				   unsigned int new_selector);
498 499
int regulator_set_bypass_regmap(struct regulator_dev *rdev, bool enable);
int regulator_get_bypass_regmap(struct regulator_dev *rdev, bool *enable);
500
int regulator_set_soft_start_regmap(struct regulator_dev *rdev);
501
int regulator_set_pull_down_regmap(struct regulator_dev *rdev);
502

503 504
int regulator_set_active_discharge_regmap(struct regulator_dev *rdev,
					  bool enable);
505 506
void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data);

507
#endif