diff options
author | Jon Loeliger <jdl@freescale.com> | 2008-05-19 09:47:25 -0500 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2008-05-19 09:47:25 -0500 |
commit | 2c289e320dcfb3760e99cf1d765cb067194a1202 (patch) | |
tree | cf5e6e980f78dbcca99a00b740eface3af80dc74 /board/freescale/mpc8641hpcn | |
parent | 180a90abdae72587c0f679edf8991455e559440d (diff) | |
download | u-boot-imx-2c289e320dcfb3760e99cf1d765cb067194a1202.zip u-boot-imx-2c289e320dcfb3760e99cf1d765cb067194a1202.tar.gz u-boot-imx-2c289e320dcfb3760e99cf1d765cb067194a1202.tar.bz2 |
mpc86xx: Removed unused and unconfigured memory test code.
Besides, other common code exists.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'board/freescale/mpc8641hpcn')
-rw-r--r-- | board/freescale/mpc8641hpcn/mpc8641hpcn.c | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/board/freescale/mpc8641hpcn/mpc8641hpcn.c b/board/freescale/mpc8641hpcn/mpc8641hpcn.c index bb1f927..915fb58 100644 --- a/board/freescale/mpc8641hpcn/mpc8641hpcn.c +++ b/board/freescale/mpc8641hpcn/mpc8641hpcn.c @@ -81,42 +81,6 @@ initdram(int board_type) } -#if defined(CFG_DRAM_TEST) -int -testdram(void) -{ - uint *pstart = (uint *) CFG_MEMTEST_START; - uint *pend = (uint *) CFG_MEMTEST_END; - uint *p; - - puts("SDRAM test phase 1:\n"); - for (p = pstart; p < pend; p++) - *p = 0xaaaaaaaa; - - for (p = pstart; p < pend; p++) { - if (*p != 0xaaaaaaaa) { - printf("SDRAM test fails at: %08x\n", (uint) p); - return 1; - } - } - - puts("SDRAM test phase 2:\n"); - for (p = pstart; p < pend; p++) - *p = 0x55555555; - - for (p = pstart; p < pend; p++) { - if (*p != 0x55555555) { - printf("SDRAM test fails at: %08x\n", (uint) p); - return 1; - } - } - - puts("SDRAM test passed.\n"); - return 0; -} -#endif - - #if !defined(CONFIG_SPD_EEPROM) /* * Fixed sdram init -- doesn't use serial presence detect. |