summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYe Li <[email protected]>2016-01-30 11:53:42 +0800
committerStefano Babic <[email protected]>2016-02-02 21:22:04 +0100
commit214c3f0f9921250eb336c7effadcc16158ea9df5 (patch)
treef0792ca1c40f3ad31f370e0cddd1a59216383c28
parent755a116e8e09e6b6459b1e968cc21bbfcc0b4b7b (diff)
imx: 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. Signed-off-by: Ye Li <[email protected]> Signed-off-by: Peng Fan <[email protected]> Reviewed-by: Stefano Babic <[email protected]> Cc: Fabio Estevam <[email protected]> Acked-by: Fabio Estevam <[email protected]>
-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 d20953d2ca4..42f89ab2ab0 100644
--- a/board/freescale/mx6sabresd/mx6sabresd.c
+++ b/board/freescale/mx6sabresd/mx6sabresd.c
@@ -638,7 +638,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