2 * Copyright 2004,2007,2008 Freescale Semiconductor, Inc.
3 * (C) Copyright 2002, 2003 Motorola Inc.
4 * Xianghua Xiao (X.Xiao@motorola.com)
7 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
9 * See file CREDITS for list of people who contributed to this
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
30 #include <asm/fsl_dma.h>
32 #if defined(CONFIG_MPC85xx)
33 volatile ccsr_dma_t *dma_base = (void *)(CONFIG_SYS_MPC85xx_DMA_ADDR);
34 #elif defined(CONFIG_MPC86xx)
35 volatile ccsr_dma_t *dma_base = (void *)(CONFIG_SYS_MPC86xx_DMA_ADDR);
37 #error "Freescale DMA engine not supported on your processor"
40 static void dma_sync(void)
42 #if defined(CONFIG_MPC85xx)
43 asm("sync; isync; msync");
44 #elif defined(CONFIG_MPC86xx)
49 static uint dma_check(void) {
50 volatile fsl_dma_t *dma = &dma_base->dma[0];
51 volatile uint status = dma->sr;
53 /* While the channel is busy, spin */
54 while (status & FSL_DMA_SR_CB)
57 /* clear MR[CS] channel start bit */
58 dma->mr &= FSL_DMA_MR_CS;
62 printf ("DMA Error: status = %x\n", status);
68 volatile fsl_dma_t *dma = &dma_base->dma[0];
70 dma->satr = FSL_DMA_SATR_SREAD_NO_SNOOP;
71 dma->datr = FSL_DMA_DATR_DWRITE_NO_SNOOP;
72 dma->sr = 0xffffffff; /* clear any errors */
76 int dma_xfer(void *dest, uint count, void *src) {
77 volatile fsl_dma_t *dma = &dma_base->dma[0];
79 dma->dar = (uint) dest;
80 dma->sar = (uint) src;
83 /* Disable bandwidth control, use direct transfer mode */
84 dma->mr = FSL_DMA_MR_BWC_DIS | FSL_DMA_MR_CTM_DIRECT;
87 /* Start the transfer */
88 dma->mr = FSL_DMA_MR_BWC_DIS | FSL_DMA_MR_CTM_DIRECT | FSL_DMA_MR_CS;