summaryrefslogtreecommitdiffstats
path: root/board/sbc8560
diff options
context:
space:
mode:
authorPeter Tyser <ptyser@xes-inc.com>2009-06-30 17:15:45 -0500
committerKumar Gala <galak@kernel.crashing.org>2009-07-01 23:07:47 -0500
commit7892f619d40f4196e41e7114c5dfee9fad0f572f (patch)
tree9d8a0e475dc86e8ce331bb4213fb6b3ba42552db /board/sbc8560
parent484919cf3351212ebf748b9b13ece1ddaf7e7d1c (diff)
downloadtalos-obmc-uboot-7892f619d40f4196e41e7114c5dfee9fad0f572f.tar.gz
talos-obmc-uboot-7892f619d40f4196e41e7114c5dfee9fad0f572f.zip
8xxx: Rename dma_xfer() to dmacpy()
Also update dmacpy()'s argument order to match memcpy's and use phys_addr_t/phy_size_t for address/size arguments Signed-off-by: Peter Tyser <ptyser@xes-inc.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'board/sbc8560')
-rw-r--r--board/sbc8560/sbc8560.c25
1 files changed, 12 insertions, 13 deletions
diff --git a/board/sbc8560/sbc8560.c b/board/sbc8560/sbc8560.c
index 7f032c8fad..f8527f9ccc 100644
--- a/board/sbc8560/sbc8560.c
+++ b/board/sbc8560/sbc8560.c
@@ -349,29 +349,28 @@ phys_size_t initdram (int board_type)
}
/* 8K */
- dma_xfer((uint *)0x2000,0x2000,(uint *)0);
+ dmacpy(0x2000, 0, 0x2000);
/* 16K */
- dma_xfer((uint *)0x4000,0x4000,(uint *)0);
+ dmacpy(0x4000, 0, 0x4000);
/* 32K */
- dma_xfer((uint *)0x8000,0x8000,(uint *)0);
+ dmacpy(0x8000, 0, 0x8000);
/* 64K */
- dma_xfer((uint *)0x10000,0x10000,(uint *)0);
+ dmacpy(0x10000, 0, 0x10000);
/* 128k */
- dma_xfer((uint *)0x20000,0x20000,(uint *)0);
+ dmacpy(0x20000, 0, 0x20000);
/* 256k */
- dma_xfer((uint *)0x40000,0x40000,(uint *)0);
+ dmacpy(0x40000, 0, 0x40000);
/* 512k */
- dma_xfer((uint *)0x80000,0x80000,(uint *)0);
+ dmacpy(0x80000, 0, 0x80000);
/* 1M */
- dma_xfer((uint *)0x100000,0x100000,(uint *)0);
+ dmacpy(0x100000, 0, 0x100000);
/* 2M */
- dma_xfer((uint *)0x200000,0x200000,(uint *)0);
+ dmacpy(0x200000, 0, 0x200000);
/* 4M */
- dma_xfer((uint *)0x400000,0x400000,(uint *)0);
+ dmacpy(0x400000, 0, 0x400000);
- for (i = 1; i < dram_size / 0x800000; i++) {
- dma_xfer((uint *)(0x800000*i),0x800000,(uint *)0);
- }
+ for (i = 1; i < dram_size / 0x800000; i++)
+ dmacpy(0x800000 * i, 0, 0x800000);
/* Enable errors for ECC */
ddr->err_disable = 0x00000000;
OpenPOWER on IntegriCloud