summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorYe Li <ye.li@nxp.com>2016-01-14 14:42:43 +0800
committerguoyin.chen <guoyin.chen@freescale.com>2016-03-04 15:35:55 +0800
commitca98d082e45da94cc1a47833df69c4112c8c6268 (patch)
tree856802676cdedfd4b1c5679d53b6386e4ce9716c /board
parent1ba460093a7e43e87c37f09d5ea68796892f66a6 (diff)
downloadu-boot-imx-ca98d082e45da94cc1a47833df69c4112c8c6268.zip
u-boot-imx-ca98d082e45da94cc1a47833df69c4112c8c6268.tar.gz
u-boot-imx-ca98d082e45da94cc1a47833df69c4112c8c6268.tar.bz2
MLK-12261 MX6DQ{P}/DL:SABRESD Fix bmode eMMC failure
The BOOTCFG value used by bmode for SABRESD eMMC boot are actually for SD card. Fixed the value to correct one. The issue was fixed in 2014.04 u-boot, but that patch seems missed during porting to 2015.04. Signed-off-by: Ye Li <ye.li@nxp.com>
Diffstat (limited to 'board')
-rw-r--r--board/freescale/mx6sabresd/mx6sabresd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/mx6sabresd/mx6sabresd.c b/board/freescale/mx6sabresd/mx6sabresd.c
index 0e4ee2f..716e2d7 100644
--- a/board/freescale/mx6sabresd/mx6sabresd.c
+++ b/board/freescale/mx6sabresd/mx6sabresd.c
@@ -1169,7 +1169,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