[U-Boot] [PATCH] 85xx: Fix memory test range on MPC8536DS

Felix Radensky felix at embedded-sol.com
Sat Aug 15 14:08:37 CEST 2009


With current values of CONFIG_SYS_MEMTEST_START
and CONFIG_SYS_MEMTEST_END memory test hangs if
run without arguments. Set them to sane values,
so that all available 512MB of RAM excluding
exception vectors at the bottom and u-boot code
and stack at the top can be tested.

Signed-off-by: Felix Radensky <felix at embedded-sol.com>
---
 include/configs/MPC8536DS.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/configs/MPC8536DS.h b/include/configs/MPC8536DS.h
index 9d2b860..93dd61e 100644
--- a/include/configs/MPC8536DS.h
+++ b/include/configs/MPC8536DS.h
@@ -77,8 +77,8 @@ extern unsigned long get_board_ddr_clk(unsigned long dummy);
 
 #define CONFIG_ENABLE_36BIT_PHYS	1
 
-#define CONFIG_SYS_MEMTEST_START	0x00000000	/* memtest works on */
-#define CONFIG_SYS_MEMTEST_END		0x7fffffff
+#define CONFIG_SYS_MEMTEST_START	0x00010000	/* skip exception vectors */
+#define CONFIG_SYS_MEMTEST_END		0x1f000000      /* skip u-boot at top of RAM  */
 #define CONFIG_PANIC_HANG	/* do not reset board on panic */
 
 /*
-- 
1.5.4.3



More information about the U-Boot mailing list