diff options
Diffstat (limited to 'board/freescale/mpc8541cds/mpc8541cds.c')
| -rw-r--r-- | board/freescale/mpc8541cds/mpc8541cds.c | 44 | 
1 files changed, 0 insertions, 44 deletions
| diff --git a/board/freescale/mpc8541cds/mpc8541cds.c b/board/freescale/mpc8541cds/mpc8541cds.c index 62c8d63cd..420a89ab1 100644 --- a/board/freescale/mpc8541cds/mpc8541cds.c +++ b/board/freescale/mpc8541cds/mpc8541cds.c @@ -196,11 +196,6 @@ const iop_conf_t iop_conf_tab[4][32] = {      }  }; -int board_early_init_f (void) -{ -	return 0; -} -  int checkboard (void)  {  	volatile ccsr_gur_t *gur = (void *)(CFG_MPC85xx_GUTS_ADDR); @@ -425,45 +420,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 -  #if defined(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. |