summaryrefslogtreecommitdiffstats
path: root/arch/riscv/boards/litex-linux/lowlevel.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/riscv/boards/litex-linux/lowlevel.c')
-rw-r--r--arch/riscv/boards/litex-linux/lowlevel.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/arch/riscv/boards/litex-linux/lowlevel.c b/arch/riscv/boards/litex-linux/lowlevel.c
new file mode 100644
index 0000000000..da23ef5633
--- /dev/null
+++ b/arch/riscv/boards/litex-linux/lowlevel.c
@@ -0,0 +1,22 @@
+// SPDX-License-Identifier: GPL-2.0-only
+
+#include <common.h>
+#include <asm/barebox-riscv.h>
+#include <debug_ll.h>
+#include <asm/riscv_nmon.h>
+
+ENTRY_FUNCTION(start_litex_linux, a0, a1, a2)
+{
+ extern char __dtb_z_litex_linux_start[];
+ void *fdt;
+
+ barebox_nmon_entry();
+
+ putc_ll('>');
+
+ /* On POR, we are running from read-only memory here. */
+
+ fdt = __dtb_z_litex_linux_start + get_runtime_offset();
+
+ barebox_riscv_machine_entry(0x40000000, SZ_256M, fdt);
+}