diff options
| author | Peter Tyser <ptyser@xes-inc.com> | 2009-06-30 17:15:51 -0500 | 
|---|---|---|
| committer | Kumar Gala <galak@kernel.crashing.org> | 2009-07-02 11:15:57 -0500 | 
| commit | e94e460c6e8741f42dab6d8dd4b596ba5d9d79ae (patch) | |
| tree | 35d8c3f5a8070fe16cffb4d4212fe469a2d8a69b /cpu/mpc83xx/spd_sdram.c | |
| parent | 9adda5459ca62120c0c50b82b766fe1cf6925bbf (diff) | |
| download | olio-uboot-2014.01-e94e460c6e8741f42dab6d8dd4b596ba5d9d79ae.tar.xz olio-uboot-2014.01-e94e460c6e8741f42dab6d8dd4b596ba5d9d79ae.zip | |
83xx: Add support for fsl_dma driver
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Reviewed-by: Ira W. Snyder <iws@ovro.caltech.edu>
Tested-by: Ira W. Snyder <iws@ovro.caltech.edu>
Acked-by: Kim Phillips <kim.phillips@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'cpu/mpc83xx/spd_sdram.c')
| -rw-r--r-- | cpu/mpc83xx/spd_sdram.c | 40 | 
1 files changed, 4 insertions, 36 deletions
| diff --git a/cpu/mpc83xx/spd_sdram.c b/cpu/mpc83xx/spd_sdram.c index 824396835..0f611804a 100644 --- a/cpu/mpc83xx/spd_sdram.c +++ b/cpu/mpc83xx/spd_sdram.c @@ -64,13 +64,6 @@ void board_add_ram_info(int use_default)  }  #ifdef CONFIG_SPD_EEPROM - -#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRC) -extern void dma_init(void); -extern uint dma_check(void); -extern int dmacpy(phys_addr_t dest, phys_addr_t src, phys_size_t n); -#endif -  #ifndef	CONFIG_SYS_READ_SPD  #define CONFIG_SYS_READ_SPD	i2c_read  #endif @@ -863,7 +856,6 @@ static __inline__ unsigned long get_tbms (void)  /*   * Initialize all of memory for ECC, then enable errors.   */ -/* #define CONFIG_DDR_ECC_INIT_VIA_DMA */  void ddr_enable_ecc(unsigned int dram_size)  {  	volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR; @@ -872,45 +864,21 @@ void ddr_enable_ecc(unsigned int dram_size)  	register u64 *p;  	register uint size;  	unsigned int pattern[2]; -#if defined(CONFIG_DDR_ECC_INIT_VIA_DMA) -	uint i; -#endif +  	icache_enable();  	t_start = get_tbms();  	pattern[0] = 0xdeadbeef;  	pattern[1] = 0xdeadbeef; -#if !defined(CONFIG_DDR_ECC_INIT_VIA_DMA) +#if defined(CONFIG_DDR_ECC_INIT_VIA_DMA) +	dma_meminit(pattern[0], dram_size); +#else  	debug("ddr init: CPU FP write method\n");  	size = dram_size;  	for (p = 0; p < (u64*)(size); p++) {  		ppcDWstore((u32*)p, pattern);  	}  	__asm__ __volatile__ ("sync"); -#else -	debug("ddr init: DMA method\n"); -	size = 0x2000; -	for (p = 0; p < (u64*)(size); p++) { -		ppcDWstore((u32*)p, pattern); -	} -	__asm__ __volatile__ ("sync"); - -	/* Initialise DMA for direct transfer */ -	dma_init(); -	/* Start DMA to transfer */ -	dmacpy(0x2000, 0, 0x2000); /* 8K */ -	dmacpy(0x4000, 0, 0x4000); /* 16K */ -	dmacpy(0x8000, 0, 0x8000); /* 32K */ -	dmacpy(0x10000, 0, 0x10000); /* 64K */ -	dmacpy(0x20000, 0, 0x20000); /* 128K */ -	dmacpy(0x40000, 0, 0x40000); /* 256K */ -	dmacpy(0x80000, 0, 0x80000); /* 512K */ -	dmacpy(0x100000, 0, 0x100000); /* 1M */ -	dmacpy(0x200000, 0, 0x200000); /* 2M */ -	dmacpy(0x400000, 0, 0x400000); /* 4M */ - -	for (i = 1; i < dram_size / 0x800000; i++) -		dmacpy(0x800000 * i, 0, 0x800000);  #endif  	t_end = get_tbms(); |