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