]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
imx6: Add imx6_src_get_boot_mode
authorJagan Teki <jagan@openedev.com>
Fri, 24 Feb 2017 10:15:12 +0000 (15:45 +0530)
committerStefano Babic <sbabic@denx.de>
Fri, 17 Mar 2017 08:27:08 +0000 (09:27 +0100)
For i.MX6, the bootmode determine code is part of spl_boot_device,
but there is might be a possibility for other part the code need to
check the desired boot mode for adding new functionalities like
modeboot env variable, or changing boot order etc.

So introduced imx6_src_get_boot_mode which actually reading the
boot mode register for desired modes.

More cleanup will be add in future patches.

Cc: Stefano Babic <sbabic@denx.de>
Cc: Tim Harvey <tharvey@gateworks.com>
Cc: Matteo Lisi <matteo.lisi@engicam.com>
Cc: Michael Trimarchi <michael@amarulasolutions.com>
Signed-off-by: Jagan Teki <jagan@openedev.com>
Reviewed-by: Stefano Babic <sbabic@denx.de>
arch/arm/imx-common/init.c
arch/arm/imx-common/spl.c
arch/arm/include/asm/imx-common/sys_proto.h

index e5dbd93c3b8bc6ed279842723b38930986fb0e84..036ebb2f17ee77db269071c838edb8811bf55467 100644 (file)
@@ -115,3 +115,15 @@ void boot_mode_apply(unsigned cfg_val)
        writel(reg, &psrc->gpr10);
 }
 #endif
+
+#if defined(CONFIG_MX6)
+u32 imx6_src_get_boot_mode(void)
+{
+       struct src *psrc = (struct src *)SRC_BASE_ADDR;
+
+       if (imx6_is_bmode_from_gpr9())
+               return readl(&psrc->gpr9);
+       else
+               return readl(&psrc->sbmr1);
+}
+#endif
index 46325ec344b2189a61ce266fef29ed73aa67372e..6c20f28e10020a3189cfb14f54c78f0112fd963a 100644 (file)
@@ -10,6 +10,7 @@
 #include <common.h>
 #include <asm/io.h>
 #include <asm/arch/imx-regs.h>
+#include <asm/arch/sys_proto.h>
 #include <asm/spl.h>
 #include <spl.h>
 #include <asm/imx-common/hab.h>
@@ -19,9 +20,8 @@
 u32 spl_boot_device(void)
 {
        struct src *psrc = (struct src *)SRC_BASE_ADDR;
-       unsigned int gpr10_boot = readl(&psrc->gpr10) & (1 << 28);
-       unsigned reg = gpr10_boot ? readl(&psrc->gpr9) : readl(&psrc->sbmr1);
        unsigned int bmode = readl(&psrc->sbmr2);
+       u32 reg = imx6_src_get_boot_mode();
 
        /*
         * Check for BMODE if serial downloader is enabled
index 732b6922deef496b5dbba0367e6471e22e751d34..631ccc50ae3748a8ec7c2f9c5b1f6c6084f4cf3d 100644 (file)
@@ -8,6 +8,7 @@
 #ifndef _SYS_PROTO_H_
 #define _SYS_PROTO_H_
 
+#include <asm/io.h>
 #include <asm/imx-common/regs-common.h>
 #include <common.h>
 #include "../arch-imx/cpu.h"
 
 #define is_mx7ulp() (is_cpu_type(MXC_CPU_MX7ULP))
 
+#ifdef CONFIG_MX6
+#define IMX6_SRC_GPR10_BMODE           BIT(28)
+
+static inline u8 imx6_is_bmode_from_gpr9(void)
+{
+       struct src *psrc = (struct src *)SRC_BASE_ADDR;
+
+       return readl(&psrc->gpr10) & IMX6_SRC_GPR10_BMODE;
+}
+
+u32 imx6_src_get_boot_mode(void);
+#endif /* CONFIG_MX6 */
+
 u32 get_nr_cpus(void);
 u32 get_cpu_rev(void);
 u32 get_cpu_speed_grade_hz(void);