]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
tegra124: Implement spl_was_boot_source()
authorSimon Glass <sjg@chromium.org>
Wed, 13 May 2015 13:02:29 +0000 (07:02 -0600)
committerTom Warren <twarren@nvidia.com>
Mon, 27 Jul 2015 21:03:06 +0000 (14:03 -0700)
Add an implementation of this function for Tegra.

Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Warren <twarren@nvidia.com>
arch/arm/mach-tegra/board.c

index 222de6a7352d4420bcf38f5cdeb8cbef406cb66d..a880a87849bfcc24290c62557d577eb854a842e4 100644 (file)
@@ -6,6 +6,7 @@
  */
 
 #include <common.h>
+#include <spl.h>
 #include <asm/io.h>
 #include <asm/arch/clock.h>
 #include <asm/arch/funcmux.h>
@@ -29,6 +30,21 @@ enum {
        UART_COUNT = 5,
 };
 
+static bool from_spl __attribute__ ((section(".data")));
+
+#ifndef CONFIG_SPL_BUILD
+void save_boot_params(u32 r0, u32 r1, u32 r2, u32 r3)
+{
+       from_spl = r0 != UBOOT_NOT_LOADED_FROM_SPL;
+       save_boot_params_ret();
+}
+#endif
+
+bool spl_was_boot_source(void)
+{
+       return from_spl;
+}
+
 #if defined(CONFIG_TEGRA_SUPPORT_NON_SECURE)
 #if !defined(CONFIG_TEGRA124)
 #error tegra_cpu_is_non_secure has only been validated on Tegra124