summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/seeed-odyssey/lowlevel.c
blob: 5ab1639dfe06d14623ca07f0e0242b99e70c1487 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// SPDX-License-Identifier: GPL-2.0+
#include <common.h>
#include <mach/entry.h>
#include <debug_ll.h>

extern char __dtb_z_stm32mp157c_odyssey_start[];

ENTRY_FUNCTION(start_stm32mp157c_seeed_odyssey, r0, r1, r2)
{
	void *fdt;

	stm32mp_cpu_lowlevel_init();

	putc_ll('>');

	fdt = __dtb_z_stm32mp157c_odyssey_start + get_runtime_offset();

	stm32mp1_barebox_entry(fdt);
}