summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/highbank/lowlevel.c
blob: 6363ec96df2971f4eb53b0e2c47da3494d5fd9b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright (C) 2013 Jean-Christophe PLAGNIOL-VILLARD <plagnio@jcrosoft.com>
 *
 * GPLv2 only
 */

#include <common.h>
#include <linux/sizes.h>
#include <asm/barebox-arm-head.h>
#include <asm/barebox-arm.h>
#include <asm/system_info.h>

void __naked barebox_arm_reset_vector(uint32_t r0, uint32_t r1, uint32_t r2)
{
	arm_cpu_lowlevel_init();
	barebox_arm_entry(0x00000000, SZ_512M, NULL);
}