]> Git Repo - u-boot.git/commitdiff
rockchip: Fix MMC boot order
authorAlex Bee <[email protected]>
Thu, 17 Jun 2021 09:01:12 +0000 (11:01 +0200)
committerKever Yang <[email protected]>
Wed, 11 Aug 2021 09:44:01 +0000 (17:44 +0800)
Basically all, i.e. rk3036.dtsi, rk3128.dtsi, rk3xxx.dtsi, rk322x.dtsi,
rk3288.dtsi, rk3308-u-boot.dtsi, rk3328-u-boot.dtsi, rk3399-u-boot.dtsi
and px30-u-boot.dtsi Rockchip SoC devicetrees which have mmc indexes
are defining eMMC as mmc0 and sdmmc as mmc1.
This means that the rule to try to boot from the SD card first is ignored,
which as per comment is what we want and is important for distros, which
rely on that.

Fix this by setting the correct mmc index, i.e. first from mmc1 (SD card),
second from mmc0 (eMMC).

Signed-off-by: Alex Bee <[email protected]>
Reviewed-by: Kever Yang <[email protected]>
include/configs/rockchip-common.h

index 0b9e24d1db44bd09899cd30893ea5e08204fd8bb..ba7061a287c3b7cd1de595788070eb480e141495 100644 (file)
 
 #ifndef CONFIG_SPL_BUILD
 
-/* First try to boot from SD (index 0), then eMMC (index 1) */
+/* First try to boot from SD (index 1), then eMMC (index 0) */
 #if CONFIG_IS_ENABLED(CMD_MMC)
        #define BOOT_TARGET_MMC(func) \
-               func(MMC, mmc, 0) \
-               func(MMC, mmc, 1)
+               func(MMC, mmc, 1) \
+               func(MMC, mmc, 0)
 #else
        #define BOOT_TARGET_MMC(func)
 #endif
This page took 0.061618 seconds and 4 git commands to generate.