summaryrefslogtreecommitdiff
path: root/board/freescale/mpc8560ads
diff options
context:
space:
mode:
authorKumar Gala <galak@kernel.crashing.org>2008-06-09 18:37:24 (GMT)
committerAndrew Fleming-AFLEMING <afleming@freescale.com>2008-06-11 05:35:52 (GMT)
commit978e81604c1b28526ed580df0fbe64eb8384e94f (patch)
tree4eaa59326e6756fa53f55d678cdf66fc6ee96467 /board/freescale/mpc8560ads
parenta23cddde1a95f987e3fe2a720a7ec9375b7264d7 (diff)
downloadu-boot-978e81604c1b28526ed580df0fbe64eb8384e94f.tar.xz
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/mpc8560ads')
-rw-r--r--board/freescale/mpc8560ads/mpc8560ads.c36
1 files changed, 0 insertions, 36 deletions
diff --git a/board/freescale/mpc8560ads/mpc8560ads.c b/board/freescale/mpc8560ads/mpc8560ads.c
index 8d4b8a8..6f65499 100644
--- a/board/freescale/mpc8560ads/mpc8560ads.c
+++ b/board/freescale/mpc8560ads/mpc8560ads.c
@@ -433,42 +433,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.