From: Claudius Heine Date: Tue, 29 Oct 2019 12:17:55 +0000 (+0100) Subject: ARM: imx6: DHCOM i.MX6 PDK: fix board_boot_modes emmc entry X-Git-Tag: v2020.01-rc2~19^2~35 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5331fadbfc19e8786e7710f1a9858ac47b4ffda8;p=oweals%2Fu-boot.git ARM: imx6: DHCOM i.MX6 PDK: fix board_boot_modes emmc entry The board_boot_modes contained the wrong values for the emmc entry. The eMMC here is connected over a 8-bit bus. This change allows to use the 'bmode emmc' command to boot from emmc. Signed-off-by: Claudius Heine --- diff --git a/board/dhelectronics/dh_imx6/dh_imx6.c b/board/dhelectronics/dh_imx6/dh_imx6.c index 2d0f78da11..8dc4b80872 100644 --- a/board/dhelectronics/dh_imx6/dh_imx6.c +++ b/board/dhelectronics/dh_imx6/dh_imx6.c @@ -197,7 +197,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