summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/freescale-mx23-evk/lowlevel.c
blob: 62560bbff7338f336341c13e3b7597d402949d13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: GPL-2.0-only

#include <common.h>
#include <linux/sizes.h>
#include <generated/mach-types.h>
#include <asm/barebox-arm-head.h>
#include <asm/barebox-arm.h>
#include <mach/imx23-regs.h>

ENTRY_FUNCTION(start_imx23_evk, r0, r1, r2)
{
	arm_cpu_lowlevel_init();
	barebox_arm_entry(IMX_MEMORY_BASE, SZ_32M, (void *)MACH_TYPE_MX23EVK);
}