driver.h 7.7 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 22
#include <linux/regulator/consumer.h>

struct regulator_dev;
23
struct regulator_init_data;
24

D
David Brownell 已提交
25 26 27 28 29 30 31 32 33 34 35
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,
};

36 37 38
/**
 * struct regulator_ops - regulator operations.
 *
39 40
 * @enable: Configure the regulator as enabled.
 * @disable: Configure the regulator as disabled.
41 42
 * @is_enabled: Return 1 if the regulator is enabled, 0 if not.
 *		May also return negative errno.
M
Mark Brown 已提交
43 44 45
 *
 * @set_voltage: Set the voltage for the regulator within the range specified.
 *               The driver should select the voltage closest to min_uV.
46 47
 * @set_voltage_sel: Set the voltage for the regulator using the specified
 *                   selector.
M
Mark Brown 已提交
48
 * @get_voltage: Return the currently configured voltage for the regulator.
49 50
 * @get_voltage_sel: Return the currently configured voltage selector for the
 *                   regulator.
51 52 53 54
 * @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 已提交
55 56
 *
 * @set_current_limit: Configure a limit for a current-limited regulator.
57
 * @get_current_limit: Get the configured limit for a current-limited regulator.
M
Mark Brown 已提交
58
 *
59
 * @set_mode: Set the configured operating mode for the regulator.
60 61 62
 * @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 已提交
63 64 65
 * @get_optimum_mode: Get the most efficient operating mode for the regulator
 *                    when running with the specified parameters.
 *
66
 * @enable_time: Time taken for the regulator voltage output voltage to
67 68 69 70 71
 *               stabilise after being enabled, in microseconds.
 * @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.
72
 *
M
Mark Brown 已提交
73 74 75 76 77 78 79 80
 * @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.
81 82 83
 *
 * This struct describes regulator operations which can be implemented by
 * regulator chip drivers.
84 85 86
 */
struct regulator_ops {

87 88 89
	/* enumerate supported voltages */
	int (*list_voltage) (struct regulator_dev *, unsigned selector);

90
	/* get/set regulator voltage */
91 92
	int (*set_voltage) (struct regulator_dev *, int min_uV, int max_uV,
			    unsigned *selector);
93
	int (*set_voltage_sel) (struct regulator_dev *, unsigned selector);
94
	int (*get_voltage) (struct regulator_dev *);
95
	int (*get_voltage_sel) (struct regulator_dev *);
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110

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

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

111
	/* Time taken to enable or set voltage on the regulator */
112
	int (*enable_time) (struct regulator_dev *);
113 114 115
	int (*set_voltage_time_sel) (struct regulator_dev *,
				     unsigned int old_selector,
				     unsigned int new_selector);
116

D
David Brownell 已提交
117 118 119
	/* report regulator status ... most other accessors report
	 * control inputs, this reports results of combining inputs
	 * from Linux (and other sources) with the actual load.
120
	 * returns REGULATOR_STATUS_* or negative errno.
D
David Brownell 已提交
121 122 123
	 */
	int (*get_status)(struct regulator_dev *);

124 125 126 127 128
	/* 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);

	/* the operations below are for configuration of regulator state when
M
Mark Brown 已提交
129
	 * its parent PMIC enters a global STANDBY/HIBERNATE state */
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152

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

	/* set regulator suspend operating mode (defined in regulator.h) */
	int (*set_suspend_mode) (struct regulator_dev *, unsigned int mode);
};

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

/**
 * struct regulator_desc - Regulator descriptor
 *
M
Mark Brown 已提交
153 154 155 156 157
 * Each regulator registered with the core is described with a structure of
 * this type.
 *
 * @name: Identifying name for the regulator.
 * @id: Numerical identifier for the regulator.
158
 * @n_voltages: Number of selectors available for ops.list_voltage().
M
Mark Brown 已提交
159
 * @ops: Regulator operations table.
160
 * @irq: Interrupt number for the regulator.
M
Mark Brown 已提交
161 162
 * @type: Indicates if the regulator is a voltage or current regulator.
 * @owner: Module providing the regulator, used for refcounting.
163 164 165 166
 */
struct regulator_desc {
	const char *name;
	int id;
167
	unsigned n_voltages;
168 169 170 171 172 173
	struct regulator_ops *ops;
	int irq;
	enum regulator_type type;
	struct module *owner;
};

174 175 176 177 178 179 180 181 182 183 184 185
/*
 * 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 {
	struct regulator_desc *desc;
186
	int exclusive;
187 188
	u32 use_count;
	u32 open_count;
189 190 191 192 193 194 195 196 197 198 199 200

	/* 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;
201
	struct regulator *supply;	/* for tree */
202

203 204 205
	struct delayed_work disable_work;
	int deferred_disables;

206
	void *reg_data;		/* regulator_dev data */
207 208 209 210

#ifdef CONFIG_DEBUG_FS
	struct dentry *debugfs;
#endif
211 212
};

213
struct regulator_dev *regulator_register(struct regulator_desc *regulator_desc,
214
	struct device *dev, const struct regulator_init_data *init_data,
215
	void *driver_data);
216 217 218 219 220 221
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);
222
struct device *rdev_get_dev(struct regulator_dev *rdev);
223 224
int rdev_get_id(struct regulator_dev *rdev);

225 226
int regulator_mode_to_status(unsigned int);

227 228
void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data);

229
#endif