summaryrefslogtreecommitdiffstats
path: root/board/freescale/mpc8555cds/mpc8555cds.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/mpc8555cds/mpc8555cds.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/mpc8555cds/mpc8555cds.c')
-rw-r--r--board/freescale/mpc8555cds/mpc8555cds.c39
1 files changed, 0 insertions, 39 deletions
diff --git a/board/freescale/mpc8555cds/mpc8555cds.c b/board/freescale/mpc8555cds/mpc8555cds.c
index 8acbba4208..94589c751a 100644
--- a/board/freescale/mpc8555cds/mpc8555cds.c
+++ b/board/freescale/mpc8555cds/mpc8555cds.c
@@ -422,45 +422,6 @@ sdram_init(void)
#endif /* enable SDRAM init */
}
-#if defined(CFG_DRAM_TEST)
-int
-testdram(void)
-{
- uint *pstart = (uint *) CFG_MEMTEST_START;
- uint *pend = (uint *) CFG_MEMTEST_END;
- uint *p;
-
- printf("Testing DRAM from 0x%08x to 0x%08x\n",
- CFG_MEMTEST_START,
- CFG_MEMTEST_END);
-
- printf("DRAM test phase 1:\n");
- for (p = pstart; p < pend; p++)
- *p = 0xaaaaaaaa;
-
- for (p = pstart; p < pend; p++) {
- if (*p != 0xaaaaaaaa) {
- printf ("DRAM test fails at: %08x\n", (uint) p);
- return 1;
- }
- }
-
- printf("DRAM test phase 2:\n");
- for (p = pstart; p < pend; p++)
- *p = 0x55555555;
-
- for (p = pstart; p < pend; p++) {
- if (*p != 0x55555555) {
- printf ("DRAM test fails at: %08x\n", (uint) p);
- return 1;
- }
- }
-
- printf("DRAM test passed.\n");
- return 0;
-}
-#endif
-
#ifdef CONFIG_PCI
/* For some reason the Tundra PCI bridge shows up on itself as a
* different device. Work around that by refusing to configure it
OpenPOWER on IntegriCloud