summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/turris-omnia/lowlevel.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2017-06-30 14:24:32 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2017-06-30 14:24:32 +0200
commit840b0e06374bfe98d1fabf7f541445d34ba22ed5 (patch)
tree98fc49604f71dc5ad9705d37ca97390d2bf97dfe /arch/arm/boards/turris-omnia/lowlevel.c
parentcfd18f7bcb0c9c93e1e97cf4671cbeb061c10c76 (diff)
parente2de305f11864a92cd1ce6ce6a7a42f098f754b6 (diff)
downloadbarebox-840b0e06374bfe98d1fabf7f541445d34ba22ed5.tar.gz
barebox-840b0e06374bfe98d1fabf7f541445d34ba22ed5.tar.xz
Merge branch 'for-next/mvebu'
Diffstat (limited to 'arch/arm/boards/turris-omnia/lowlevel.c')
-rw-r--r--arch/arm/boards/turris-omnia/lowlevel.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/arch/arm/boards/turris-omnia/lowlevel.c b/arch/arm/boards/turris-omnia/lowlevel.c
new file mode 100644
index 0000000000..3f20908ff7
--- /dev/null
+++ b/arch/arm/boards/turris-omnia/lowlevel.c
@@ -0,0 +1,33 @@
+/*
+ * Copyright (C) 2017 Pengutronix, Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * version 2, as published by the Free Software Foundation.
+ *
+ * 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 <asm/barebox-arm.h>
+#include <asm/barebox-arm-head.h>
+#include <mach/lowlevel.h>
+
+#include <asm/io.h>
+
+extern char __dtb_armada_385_turris_omnia_bb_start[];
+
+ENTRY_FUNCTION(start_turris_omnia, r0, r1, r2)
+{
+ void *fdt;
+
+ arm_cpu_lowlevel_init();
+
+ fdt = __dtb_armada_385_turris_omnia_bb_start -
+ get_runtime_offset();
+
+ armada_370_xp_barebox_entry(fdt);
+}