summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/karo-tx53/lowlevel.c
blob: 8adbd8d666040cfffe94d1194efe3c4d2ed8f85e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <common.h>
#include <asm/barebox-arm-head.h>
#include <asm/barebox-arm.h>
#include <mach/imx5.h>
#include <mach/esdctl.h>
#include <mach/generic.h>

void __naked barebox_arm_reset_vector(void)
{
	imx5_cpu_lowlevel_init();

	/*
	 * For the TX53 rev 8030 the SDRAM setup is not stable without
	 * the proper PLL setup. It will crash once we enable the MMU,
	 * so do the PLL setup here.
	 */
	if (IS_ENABLED(CONFIG_TX53_REV_XX30))
		imx53_init_lowlevel_early(800);

	imx53_barebox_entry(NULL);
}