summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/friendlyarm-tiny6410/lowlevel.c
blob: dfb69d2272f2e4fc8e8e3b20048869be5fa1bc2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: GPL-2.0-only

#include <common.h>
#include <linux/sizes.h>
#include <asm/barebox-arm.h>
#include <asm/barebox-arm-head.h>
#include <mach/s3c-iomap.h>

void __naked barebox_arm_reset_vector(uint32_t r0, uint32_t r1, uint32_t r2)
{
	arm_cpu_lowlevel_init();
	barebox_arm_entry(S3C_SDRAM_BASE, SZ_128M, NULL);
}