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

extern char __dtb_imx6q_gw54xx_start[];

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

	imx6_cpu_lowlevel_init();

	fdt = __dtb_imx6q_gw54xx_start + get_runtime_offset();

	barebox_arm_entry(0x10000000, SZ_1G, fdt);
}