summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/solidrun-cubox
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-07-21 15:56:04 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2013-08-16 08:45:37 +0200
commitdbd47524f4f3facaf8269ae001c6d3efd76fea4b (patch)
tree7d1536d40d61d53a734c6ff40a77bc90418af32c /arch/arm/boards/solidrun-cubox
parentf8761636f23a989ae877b446866ef289420b10f4 (diff)
downloadbarebox-dbd47524f4f3facaf8269ae001c6d3efd76fea4b.tar.gz
barebox-dbd47524f4f3facaf8269ae001c6d3efd76fea4b.tar.xz
ARM: mvebu: introduce multi image support
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/boards/solidrun-cubox')
-rw-r--r--arch/arm/boards/solidrun-cubox/Makefile1
-rw-r--r--arch/arm/boards/solidrun-cubox/lowlevel.c37
2 files changed, 38 insertions, 0 deletions
diff --git a/arch/arm/boards/solidrun-cubox/Makefile b/arch/arm/boards/solidrun-cubox/Makefile
index dcfc2937d3..01c7a259e9 100644
--- a/arch/arm/boards/solidrun-cubox/Makefile
+++ b/arch/arm/boards/solidrun-cubox/Makefile
@@ -1 +1,2 @@
obj-y += board.o
+lwl-y += lowlevel.o
diff --git a/arch/arm/boards/solidrun-cubox/lowlevel.c b/arch/arm/boards/solidrun-cubox/lowlevel.c
new file mode 100644
index 0000000000..fdf5a7e1c8
--- /dev/null
+++ b/arch/arm/boards/solidrun-cubox/lowlevel.c
@@ -0,0 +1,37 @@
+/*
+ * Copyright (C) 2013
+ * Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
+ * Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ */
+
+#include <common.h>
+#include <sizes.h>
+#include <asm/barebox-arm.h>
+#include <asm/barebox-arm-head.h>
+#include <mach/lowlevel.h>
+
+extern char __dtb_dove_cubox_start[];
+
+ENTRY_FUNCTION(start_solidrun_cubox)(void)
+{
+ uint32_t fdt;
+
+ __barebox_arm_head();
+
+ arm_cpu_lowlevel_init();
+
+ fdt = (uint32_t)__dtb_dove_cubox_start - get_runtime_offset();
+
+ mvebu_barebox_entry(fdt);
+}