diff options
author | Ye.Li <B37916@freescale.com> | 2014-08-07 17:14:28 +0800 |
---|---|---|
committer | Ye.Li <B37916@freescale.com> | 2014-08-07 17:19:48 +0800 |
commit | e59662a649f15f4a4c12ccc992e7b30579c6853b (patch) | |
tree | 33a4e6e66f8339fa2a92c0fcb5f6007d2702a69a | |
parent | 05070aede5fdf1f10e1c2f56be9fcfd22de06c18 (diff) | |
download | u-boot-imx-e59662a649f15f4a4c12ccc992e7b30579c6853b.zip u-boot-imx-e59662a649f15f4a4c12ccc992e7b30579c6853b.tar.gz u-boot-imx-e59662a649f15f4a4c12ccc992e7b30579c6853b.tar.bz2 |
ENGR00325634 iMX6DQ{DL}:SABRESD Fixed bmode booting failure for eMMC
The BOOTCFG value used by bmode for SABRESD eMMC are actually for SD card.
Fixed the value to correct one.
Signed-off-by: Ye.Li <B37916@freescale.com>
-rw-r--r-- | board/freescale/mx6sabresd/mx6sabresd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/mx6sabresd/mx6sabresd.c b/board/freescale/mx6sabresd/mx6sabresd.c index 2a4f425..bf0c3db 100644 --- a/board/freescale/mx6sabresd/mx6sabresd.c +++ b/board/freescale/mx6sabresd/mx6sabresd.c @@ -1108,7 +1108,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 |