diff options
author | Peng Fan <van.freenix@gmail.com> | 2016-08-11 06:02:50 (GMT) |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2016-10-04 13:41:01 (GMT) |
commit | 5b66482d44b4e9571c64285254a43bdfe9ed1262 (patch) | |
tree | 1d5071044b0bff227ffcfb6d81ef9ac6e8dd7883 /arch/arm/cpu/armv7/mx6 | |
parent | 2d4bbd01a1c2d74bef645296bf72aa33dc5eb7d3 (diff) | |
download | u-boot-5b66482d44b4e9571c64285254a43bdfe9ed1262.tar.xz |
imx: imx6ull: adjust the ldo 1.2v bandgap voltage
Per to design team, on i.MX6UL, the LDO 1.2V bandgap voltage
is 30mV higher, so we need to adjust the REFTOP_VBGADJ(anatop
MISC0 bit[6:4]) setting to 2b'110.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Signed-off-by: Bai Ping <ping.bai@nxp.com>
Cc: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'arch/arm/cpu/armv7/mx6')
-rw-r--r-- | arch/arm/cpu/armv7/mx6/soc.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/mx6/soc.c b/arch/arm/cpu/armv7/mx6/soc.c index ff1c4f4..bc3e634 100644 --- a/arch/arm/cpu/armv7/mx6/soc.c +++ b/arch/arm/cpu/armv7/mx6/soc.c @@ -314,6 +314,12 @@ static void init_bandgap(void) * be set. */ writel(BM_ANADIG_ANA_MISC0_REFTOP_SELBIASOFF, &anatop->ana_misc0_set); + /* + * On i.MX6ULL, the LDO 1.2V bandgap voltage is 30mV higher. so set + * VBGADJ bits to 2b'110 to adjust it. + */ + if (is_mx6ull()) + writel(BM_ANADIG_ANA_MISC0_REFTOP_VBGADJ, &anatop->ana_misc0_set); } |