summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/solidrun-microsom/lowlevel.c
blob: eb528389634eebec12449671203d9ddd54a10911 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <common.h>
#include <sizes.h>
#include <mach/generic.h>
#include <asm/barebox-arm-head.h>
#include <asm/barebox-arm.h>

extern char __dtb_imx6dl_hummingboard_start[];

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

	imx6_cpu_lowlevel_init();

	fdt = __dtb_imx6dl_hummingboard_start - get_runtime_offset();
	barebox_arm_entry(0x10000000, SZ_512M, fdt);
}