summaryrefslogtreecommitdiffstats
path: root/arch/riscv/boards/erizo/lowlevel.c
blob: fc262ed61b5620954eb993f253b74c1d5857ab19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// SPDX-License-Identifier: GPL-2.0-only

#include <common.h>
#include <asm/barebox-riscv.h>
#include <debug_ll.h>

ENTRY_FUNCTION(start_erizo_generic, a0, a1, a2)
{
	extern char __dtb_z_erizo_generic_start[];
	void *fdt;

	debug_ll_init();
	putc_ll('>');

	/* On POR, we are running from read-only memory here. */

	fdt = __dtb_z_erizo_generic_start + get_runtime_offset();

	barebox_riscv_machine_entry(0x80000000, SZ_8M, fdt);
}