diff options
| author | Evan Wilson <evan@oliodevices.com> | 2016-03-12 17:14:04 -0800 |
|---|---|---|
| committer | Evan Wilson <evan@oliodevices.com> | 2016-03-24 01:09:58 -0700 |
| commit | f42f33f394d8dc600053a578fbc529cd167edb1d (patch) | |
| tree | 031db8af1ff10dcde38a36f96218db9e15e26cf6 /include/linux/mfd/tps65910.h | |
| parent | 29ea916b91c9736d3aefdf035e0996c6117c909b (diff) | |
| download | olio-linux-3.10-f42f33f394d8dc600053a578fbc529cd167edb1d.tar.xz olio-linux-3.10-f42f33f394d8dc600053a578fbc529cd167edb1d.zip | |
Adding a new EXT_SLEEP flag
This flag ensures the regulator is in full ACTIVE mode during sleep
Normally the tps65910 regulators go into an IDLE mode during sleep
Change-Id: I30c0025ee1904ac20fec3ced66041f006658b92c
Diffstat (limited to 'include/linux/mfd/tps65910.h')
| -rw-r--r-- | include/linux/mfd/tps65910.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/mfd/tps65910.h b/include/linux/mfd/tps65910.h index 7f0ec4340a3..e4d5b2b8ce8 100644 --- a/include/linux/mfd/tps65910.h +++ b/include/linux/mfd/tps65910.h @@ -851,7 +851,9 @@ #define TPS65910_SLEEP_CONTROL_EXT_INPUT_EN1 0x1 #define TPS65910_SLEEP_CONTROL_EXT_INPUT_EN2 0x2 #define TPS65910_SLEEP_CONTROL_EXT_INPUT_EN3 0x4 -#define TPS65911_SLEEP_CONTROL_EXT_INPUT_SLEEP 0x8 +#define TPS65910_SLEEP_CONTROL_EXT_INPUT_SLEEP 0x8 +/* Keep the regulator fully active during sleep. Normally the regulator will go into an idle mode. */ +#define TPS65910_SLEEP_CONTROL_EXT_INPUT_ACTIVE 0x10 /* * Sleep keepon data: Maintains the state in sleep mode |