diff options
author | Tom Rini <trini@ti.com> | 2014-11-14 13:53:49 -0500 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-11-14 13:53:49 -0500 |
commit | 45043cf804763d4cf93fec93d8294e385f87622a (patch) | |
tree | 6f8153477648689f4143c317449891818b78b5e6 /board/freescale/mx53loco | |
parent | 0d485b9095328cdc81b2ee94ff59b988c69b9127 (diff) | |
parent | 05d492a3235df397da6200294ea2a802749372a8 (diff) | |
download | u-boot-imx-45043cf804763d4cf93fec93d8294e385f87622a.zip u-boot-imx-45043cf804763d4cf93fec93d8294e385f87622a.tar.gz u-boot-imx-45043cf804763d4cf93fec93d8294e385f87622a.tar.bz2 |
Merge branch 'master' of git://www.denx.de/git/u-boot-imx
Diffstat (limited to 'board/freescale/mx53loco')
-rw-r--r-- | board/freescale/mx53loco/mx53loco.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/board/freescale/mx53loco/mx53loco.c b/board/freescale/mx53loco/mx53loco.c index b32a97f..7569ded 100644 --- a/board/freescale/mx53loco/mx53loco.c +++ b/board/freescale/mx53loco/mx53loco.c @@ -242,6 +242,8 @@ static int power_init(void) if (!p) return -ENODEV; + setenv("fdt_file", "imx53-qsb.dtb"); + /* Set VDDA to 1.25V */ val = DA9052_BUCKCORE_BCOREEN | DA_BUCKCORE_VBCORE_1_250V; ret = pmic_reg_write(p, DA9053_BUCKCORE_REG, val); @@ -283,6 +285,8 @@ static int power_init(void) if (!p) return -ENODEV; + setenv("fdt_file", "imx53-qsrb.dtb"); + /* Set VDDGP to 1.25V for 1GHz on SW1 */ pmic_reg_read(p, REG_SW_0, &val); val = (val & ~SWx_VOLT_MASK_MC34708) | SWx_1_250V_MC34708; |