Commit d6bb69cfa88b8ac9f952de4fada5b216d5ba8830
Committed by
Liam Girdwood
1 parent
ca7255614e
Exists in
master
and in
7 other branches
regulator: twl4030 VAUX3 supports 3.0V
TWL4030 and TWL5030 support 3.0V on VAUX3. Signed-off-by: Adrian Hunter <adrian.hunter@nokia.com>
Showing 1 changed file with 4 additions and 1 deletions Side-by-side Diff
drivers/regulator/twl4030-regulator.c
... | ... | @@ -193,6 +193,9 @@ |
193 | 193 | * |
194 | 194 | * VSEL values documented as "TI cannot support these values" are flagged |
195 | 195 | * in these tables as UNSUP() values; we normally won't assign them. |
196 | + * | |
197 | + * VAUX3 at 3V is incorrectly listed in some TI manuals as unsupported. | |
198 | + * TI are revising the twl5030/tps659x0 specs to support that 3.0V setting. | |
196 | 199 | */ |
197 | 200 | #ifdef CONFIG_TWL4030_ALLOW_UNSUPPORTED |
198 | 201 | #define UNSUP_MASK 0x0000 |
... | ... | @@ -223,7 +226,7 @@ |
223 | 226 | }; |
224 | 227 | static const u16 VAUX3_VSEL_table[] = { |
225 | 228 | 1500, 1800, 2500, 2800, |
226 | - UNSUP(3000), UNSUP(3000), UNSUP(3000), UNSUP(3000), | |
229 | + 3000, 3000, 3000, 3000, | |
227 | 230 | }; |
228 | 231 | static const u16 VAUX4_VSEL_table[] = { |
229 | 232 | 700, 1000, 1200, UNSUP(1300), |