summaryrefslogtreecommitdiff
path: root/cpu/arm1136/cpu.c
diff options
context:
space:
mode:
authorFred Fan <r01011@freescale.com>2009-02-20 10:38:48 +0800
committerFred Fan <r01011@freescale.com>2009-09-09 15:34:06 +0800
commit7f9232a943c7cff561b3765457ac43ea21bec6f7 (patch)
tree5836e1f088ebd8413e20f48f2a15587cd02c7ace /cpu/arm1136/cpu.c
parent3d35d87d5482de23cd5dc4d7721b1086107cae50 (diff)
downloadu-boot-imx-7f9232a943c7cff561b3765457ac43ea21bec6f7.zip
u-boot-imx-7f9232a943c7cff561b3765457ac43ea21bec6f7.tar.gz
u-boot-imx-7f9232a943c7cff561b3765457ac43ea21bec6f7.tar.bz2
ENGR00081147 Support i.MX35 3stack board
Support boot from NOR flash Support Multiple ethernet:LAN9217 and FEC Support upgrade u-boot Signed-off-by: Fred Fan <r01011@freescale.com>
Diffstat (limited to 'cpu/arm1136/cpu.c')
-rw-r--r--cpu/arm1136/cpu.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/cpu/arm1136/cpu.c b/cpu/arm1136/cpu.c
index ade7f46..a4afd89 100644
--- a/cpu/arm1136/cpu.c
+++ b/cpu/arm1136/cpu.c
@@ -8,6 +8,8 @@
* (C) Copyright 2002
* Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
*
+ * (C) Copyright 2008-2009 Freescale Semiconductor, Inc.
+ *
* See file CREDITS for list of people who contributed to this
* project.
*
@@ -63,7 +65,10 @@ int cleanup_before_linux (void)
dcache_disable();
/* flush I/D-cache */
cache_flush();
-
+/*Workaround to enable L2CC during kernel decompressing*/
+#ifdef fixup_before_linux
+ fixup_before_linux;
+#endif
return 0;
}