diff options
author | Claudius Heine <ch@denx.de> | 2019-10-29 13:17:55 +0100 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2019-11-03 17:04:16 +0100 |
commit | 5331fadbfc19e8786e7710f1a9858ac47b4ffda8 (patch) | |
tree | 037e65fb77b918605692aa4ba22b7689bb978ebe /board | |
parent | f2929d11a6394fa815741cbdbcc5d616e7bae860 (diff) | |
download | u-boot-5331fadbfc19e8786e7710f1a9858ac47b4ffda8.zip u-boot-5331fadbfc19e8786e7710f1a9858ac47b4ffda8.tar.gz u-boot-5331fadbfc19e8786e7710f1a9858ac47b4ffda8.tar.bz2 |
ARM: imx6: DHCOM i.MX6 PDK: fix board_boot_modes emmc entry
The board_boot_modes contained the wrong values for the emmc entry.
The eMMC here is connected over a 8-bit bus.
This change allows to use the 'bmode emmc' command to boot from emmc.
Signed-off-by: Claudius Heine <ch@denx.de>
Diffstat (limited to 'board')
-rw-r--r-- | board/dhelectronics/dh_imx6/dh_imx6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/dhelectronics/dh_imx6/dh_imx6.c b/board/dhelectronics/dh_imx6/dh_imx6.c index 2d0f78d..8dc4b80 100644 --- a/board/dhelectronics/dh_imx6/dh_imx6.c +++ b/board/dhelectronics/dh_imx6/dh_imx6.c @@ -197,7 +197,7 @@ static const struct boot_mode board_boot_modes[] = { {"sd2", MAKE_CFGVAL(0x40, 0x28, 0x00, 0x00)}, {"sd3", MAKE_CFGVAL(0x40, 0x30, 0x00, 0x00)}, /* 8 bit bus width */ - {"emmc", MAKE_CFGVAL(0x40, 0x38, 0x00, 0x00)}, + {"emmc", MAKE_CFGVAL(0x60, 0x58, 0x00, 0x00)}, {NULL, 0}, }; #endif |