summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/raspberry-pi/lowlevel.c
blob: 022b11d29fc0e9e4bfbb105bfbdfb660c742447b (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <common.h>
#include <sizes.h>
#include <asm/barebox-arm.h>
#include <asm/barebox-arm-head.h>
#include <mach/platform.h>

void __naked barebox_arm_reset_vector(void)
{
        arm_cpu_lowlevel_init();
	barebox_arm_entry(BCM2835_SDRAM_BASE, SZ_128M, NULL);
}