|
@@ -26,10 +26,12 @@
|
|
|
#include <asm/errno.h>
|
|
|
#include <asm/gpio.h>
|
|
|
#include <asm/imx-common/iomux-v3.h>
|
|
|
+#include <asm/imx-common/boot_mode.h>
|
|
|
#include <mmc.h>
|
|
|
#include <fsl_esdhc.h>
|
|
|
#include <miiphy.h>
|
|
|
#include <netdev.h>
|
|
|
+
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
|
#define UART_PAD_CTRL (PAD_CTL_PKE | PAD_CTL_PUE | \
|
|
@@ -272,6 +274,26 @@ int board_init(void)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+#ifdef CONFIG_CMD_BMODE
|
|
|
+static const struct boot_mode board_boot_modes[] = {
|
|
|
+ /* 4 bit bus width */
|
|
|
+ {"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)},
|
|
|
+ {NULL, 0},
|
|
|
+};
|
|
|
+#endif
|
|
|
+
|
|
|
+int board_late_init(void)
|
|
|
+{
|
|
|
+#ifdef CONFIG_CMD_BMODE
|
|
|
+ add_board_boot_modes(board_boot_modes);
|
|
|
+#endif
|
|
|
+
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
int checkboard(void)
|
|
|
{
|
|
|
puts("Board: MX6Q-SabreSD\n");
|