]> git.baikalelectronics.ru Git - kernel.git/commit
regulator: lm363x: Fix n_voltages setting for lm36274
authorAxel Lin <axel.lin@ingics.com>
Wed, 26 Jun 2019 13:26:32 +0000 (21:26 +0800)
committerMark Brown <broonie@kernel.org>
Mon, 22 Jul 2019 12:18:13 +0000 (13:18 +0100)
commit96e9327717872eb7a7a36beffc5deabcee89841a
tree39bc81e727832d91c1416ef9562ed8cb089887f7
parentc43467abf6ed2a0f191bd1585d9fb04b07a94530
regulator: lm363x: Fix n_voltages setting for lm36274

According to the datasheet http://www.ti.com/lit/ds/symlink/lm36274.pdf:
Table 23. VPOS Bias Register Field Descriptions VPOS[5:0]:
VPOS voltage (50-mV steps): VPOS = 4 V + (Code × 50 mV), 6.5 V max
000000 = 4 V
000001 = 4.05 V
:
011110 = 5.5 V (Default)
:
110010 = 6.5 V
110011 to 111111 map to 6.5 V

So the LM36274_LDO_VSEL_MAX should be 0b110010 (0x32).
The valid selectors are 0 ... LM36274_LDO_VSEL_MAX, n_voltages should be
LM36274_LDO_VSEL_MAX + 1. Similarly, the n_voltages should be
LM36274_BOOST_VSEL_MAX + 1 for LM36274_BOOST.

Fixes: 4d5bb2734910 ("regulator: lm363x: Add support for LM36274")
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Link: https://lore.kernel.org/r/20190626132632.32629-2-axel.lin@ingics.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/regulator/lm363x-regulator.c