summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/omap3evm/lowlevel.c
diff options
context:
space:
mode:
authorTeresa Gámez <t.gamez@phytec.de>2013-07-09 11:23:20 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2013-07-10 23:30:42 +0200
commitc5c875ab7f442365a0c4c453238ef0a8a4ebb2d0 (patch)
tree81181793c30c35bf9bb169df7965b4a3f586204d /arch/arm/boards/omap3evm/lowlevel.c
parentf0c0d46f6465fc348591258935f573aab4014c7a (diff)
downloadbarebox-c5c875ab7f442365a0c4c453238ef0a8a4ebb2d0.tar.gz
barebox-c5c875ab7f442365a0c4c453238ef0a8a4ebb2d0.tar.xz
arm: omap: store boot source info from ROM loader
The ROM loader passes the address of a buffer to the MLO in register 0. Store this data so we can find the boot source later. On the same way the bootinformation are passed to the barebox, then. It has to be enshured that r0 contains always the buffer or the boot source detection will not work. Applied this on all OMAPs. This patch is based on work of Jan Luebbe <jlu@pengutronix.de>. Compile tested on all OMAP boards. Tested on pcm049, phyCARD-A-L1 and pcm051. Signed-off-by: Teresa Gámez <t.gamez@phytec.de> Tested-by: Christoph Fritz <chf.fritz@googlemail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/boards/omap3evm/lowlevel.c')
-rw-r--r--arch/arm/boards/omap3evm/lowlevel.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/arm/boards/omap3evm/lowlevel.c b/arch/arm/boards/omap3evm/lowlevel.c
index 2d9e1301dd..ea928357b4 100644
--- a/arch/arm/boards/omap3evm/lowlevel.c
+++ b/arch/arm/boards/omap3evm/lowlevel.c
@@ -3,6 +3,7 @@
#include <sizes.h>
#include <asm/barebox-arm-head.h>
#include <asm/barebox-arm.h>
+#include <mach/generic.h>
#include <mach/omap3-mux.h>
#include <mach/sdrc.h>
#include <mach/control.h>
@@ -159,8 +160,10 @@ static int omap3_evm_board_init(void)
return 0;
}
-void __naked barebox_arm_reset_vector(void)
+void __naked __bare_init barebox_arm_reset_vector(uint32_t *data)
{
+ omap_save_bootinfo();
+
arm_cpu_lowlevel_init();
omap3_evm_board_init();