]> git.baikalelectronics.ru Git - uboot.git/commit
imx: spl: return boot mode for asked MMC device in spl_mmc_boot_mode()
authorAnatolij Gustschin <agust@denx.de>
Thu, 23 Apr 2020 11:07:49 +0000 (13:07 +0200)
committerStefano Babic <sbabic@denx.de>
Fri, 1 May 2020 16:46:55 +0000 (18:46 +0200)
commitee222b0da14fd1770b1762ac9734943f07ae0e7e
tree6c7a8e7c5c8a2d78e07c549a7843a1cf450e5832
parente37ea0e1c1e732916402bc066353e1b401e36dd6
imx: spl: return boot mode for asked MMC device in spl_mmc_boot_mode()

Boards may extend or re-define the boot list in their board_boot_order()
function by modifying spl_boot_list. E.g. a board might boot SPL from a
slow SPI NOR flash and then load the U-Boot from an eMMC or SD-card.
Or it might use additional MMC boot device in spl_boot_list for cases
when the image in SPI NOR flash is not found, so it could fall back to
eMMC, SD-card or another boot device.

Getting the MMC boot mode in spl_mmc will fail when we are trying to
boot from an MMC device in the spl_boot_list and the original board
boot mode (as returned by spl_boot_device()) is not an MMC boot mode.
Fix it by checking the asked MMC boot device from the spl_mmc_boot_mode()
argument.

Signed-off-by: Anatolij Gustschin <agust@denx.de>
arch/arm/mach-imx/spl.c