]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
mx6: Use imx6_src_get_boot_mode() to check boot device
authorHarald Seiler <hws@denx.de>
Wed, 1 Dec 2021 09:11:47 +0000 (10:11 +0100)
committerStefano Babic <sbabic@denx.de>
Sat, 5 Feb 2022 12:38:39 +0000 (13:38 +0100)
Use imx6_src_get_boot_mode() instead of manually reading SBMR1.  The
existing function has proper handling for software overrides of the
bootdevice which can happen, for example, when booting from an alternate
source using `bmode`.

Signed-off-by: Harald Seiler <hws@denx.de>
Reviewed-by: Fabio Estevam <festevam@gmail.com>
arch/arm/mach-imx/mx6/soc.c

index aacfc854a2f873ddc8c5bc3ce6bcc5e361b9d0da..bc56ef2b0b206d187ffda2883121896d89e72060 100644 (file)
@@ -498,8 +498,7 @@ __weak int board_mmc_get_env_dev(int devno)
 
 static int mmc_get_boot_dev(void)
 {
-       struct src *src_regs = (struct src *)SRC_BASE_ADDR;
-       u32 soc_sbmr = readl(&src_regs->sbmr1);
+       u32 soc_sbmr = imx6_src_get_boot_mode();
        u32 bootsel;
        int devno;