summaryrefslogtreecommitdiffstats
path: root/board/freescale/mpc8540ads/mpc8540ads.c
diff options
context:
space:
mode:
authorKumar Gala <galak@kernel.crashing.org>2008-06-09 13:37:24 -0500
committerAndrew Fleming-AFLEMING <afleming@freescale.com>2008-06-11 00:35:52 -0500
commit978e81604c1b28526ed580df0fbe64eb8384e94f (patch)
tree4eaa59326e6756fa53f55d678cdf66fc6ee96467 /board/freescale/mpc8540ads/mpc8540ads.c
parenta23cddde1a95f987e3fe2a720a7ec9375b7264d7 (diff)
downloadblackbird-obmc-uboot-978e81604c1b28526ed580df0fbe64eb8384e94f.tar.gz
blackbird-obmc-uboot-978e81604c1b28526ed580df0fbe64eb8384e94f.zip
85xx: Remove unused and unconfigured memory test code.
Remove unused and unconfigured DDR test code from FSL 85xx boards. Besides, other common code exists. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'board/freescale/mpc8540ads/mpc8540ads.c')
-rw-r--r--board/freescale/mpc8540ads/mpc8540ads.c36
1 files changed, 0 insertions, 36 deletions
diff --git a/board/freescale/mpc8540ads/mpc8540ads.c b/board/freescale/mpc8540ads/mpc8540ads.c
index a951b9e9a3..ea1fbd1fbf 100644
--- a/board/freescale/mpc8540ads/mpc8540ads.c
+++ b/board/freescale/mpc8540ads/mpc8540ads.c
@@ -230,42 +230,6 @@ sdram_init(void)
udelay(100);
}
-
-#if defined(CFG_DRAM_TEST)
-int testdram (void)
-{
- uint *pstart = (uint *) CFG_MEMTEST_START;
- uint *pend = (uint *) CFG_MEMTEST_END;
- uint *p;
-
- printf("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;
- }
- }
-
- printf("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;
- }
- }
-
- printf("SDRAM test passed.\n");
- return 0;
-}
-#endif
-
-
#if !defined(CONFIG_SPD_EEPROM)
/*************************************************************************
* fixed sdram init -- doesn't use serial presence detect.
OpenPOWER on IntegriCloud