summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorYe.Li <B37916@freescale.com>2014-09-30 14:52:37 +0800
committerYe.Li <B37916@freescale.com>2014-10-09 13:30:08 +0800
commitc5f8a46f6ea31231346008d7642235c0b94ab0c0 (patch)
tree48ab3f386ab9d97624c86a06f6edeae4624871b5 /board
parentd6ac8b7c03d66bc9b978d5d8a35410abda35e646 (diff)
downloadu-boot-imx-c5f8a46f6ea31231346008d7642235c0b94ab0c0.zip
u-boot-imx-c5f8a46f6ea31231346008d7642235c0b94ab0c0.tar.gz
u-boot-imx-c5f8a46f6ea31231346008d7642235c0b94ab0c0.tar.bz2
MLK-9668 imx: mx6sxsabreauto: Fix bmode value
Set the correct bmode value for booting from SDA/SDB/QSPI1/NAND Signed-off-by: Ye.Li <B37916@freescale.com>
Diffstat (limited to 'board')
-rw-r--r--board/freescale/mx6sxsabreauto/mx6sxsabreauto.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/board/freescale/mx6sxsabreauto/mx6sxsabreauto.c b/board/freescale/mx6sxsabreauto/mx6sxsabreauto.c
index 5785255..2419d60 100644
--- a/board/freescale/mx6sxsabreauto/mx6sxsabreauto.c
+++ b/board/freescale/mx6sxsabreauto/mx6sxsabreauto.c
@@ -815,10 +815,10 @@ int board_init(void)
#ifdef CONFIG_CMD_BMODE
static const struct boot_mode board_boot_modes[] = {
- {"sda", MAKE_CFGVAL(0x40, 0x38, 0x00, 0x00)},
+ {"sda", MAKE_CFGVAL(0x42, 0x30, 0x00, 0x00)},
{"sdb", MAKE_CFGVAL(0x40, 0x38, 0x00, 0x00)},
- {"qspi1", MAKE_CFGVAL(0x18, 0x00, 0x00, 0x00)},
- {"nand", MAKE_CFGVAL(0x18, 0x00, 0x00, 0x00)},
+ {"qspi1", MAKE_CFGVAL(0x10, 0x00, 0x00, 0x00)},
+ {"nand", MAKE_CFGVAL(0x82, 0x00, 0x00, 0x00)},
{NULL, 0},
};
#endif