From: Adam Ford Date: Fri, 14 Jul 2017 13:53:20 +0000 (-0500) Subject: arm: omap3: Detect boot mode very early X-Git-Tag: v2017.09-rc1~142 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c3bec5478f604c88191bd29309abe47df0be53cb;p=oweals%2Fu-boot.git arm: omap3: Detect boot mode very early Fixes 4bd754d8abef ("arm: omap: Detect boot mode very early") where the intent was to store the boot params information in a known location and pass it to SPL very early. Unfortunately it didn't account for OMAP3 boards. This patch adds adds this functionality back into OMAP3 boards. Reviewed-by: Lokesh Vutla Signed-off-by: Adam Ford --- diff --git a/arch/arm/mach-omap2/omap3/board.c b/arch/arm/mach-omap2/omap3/board.c index cd8e302272..a61b933145 100644 --- a/arch/arm/mach-omap2/omap3/board.c +++ b/arch/arm/mach-omap2/omap3/board.c @@ -212,6 +212,12 @@ void board_init_f(ulong dummy) { early_system_init(); mem_init(); + /* + * Save the boot parameters passed from romcode. + * We cannot delay the saving further than this, + * to prevent overwrites. + */ + save_omap_boot_params(); } #endif