summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/karo-tx53/lowlevel.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/boards/karo-tx53/lowlevel.c')
-rw-r--r--arch/arm/boards/karo-tx53/lowlevel.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/arch/arm/boards/karo-tx53/lowlevel.c b/arch/arm/boards/karo-tx53/lowlevel.c
new file mode 100644
index 0000000000..0ca164bda5
--- /dev/null
+++ b/arch/arm/boards/karo-tx53/lowlevel.c
@@ -0,0 +1,22 @@
+#include <common.h>
+#include <asm/barebox-arm-head.h>
+#include <asm/barebox-arm.h>
+#include <mach/imx5.h>
+
+#ifdef CONFIG_MACH_DO_LOWLEVEL_INIT
+
+void __naked reset(void)
+{
+ common_reset();
+
+ /*
+ * 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(800);
+
+ board_init_lowlevel_return();
+}
+#endif