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/mpc8610hpcd | |
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/mpc8610hpcd')
-rw-r--r-- | board/freescale/mpc8610hpcd/mpc8610hpcd.c | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/board/freescale/mpc8610hpcd/mpc8610hpcd.c b/board/freescale/mpc8610hpcd/mpc8610hpcd.c index 3a855b5..ce563dc 100644 --- a/board/freescale/mpc8610hpcd/mpc8610hpcd.c +++ b/board/freescale/mpc8610hpcd/mpc8610hpcd.c @@ -141,42 +141,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. |