1 /***************************************************************************/
4 * dma.c -- Freescale ColdFire DMA support
6 * Copyright (C) 2007, Greg Ungerer (gerg@snapgear.com)
9 /***************************************************************************/
11 #include <linux/kernel.h>
13 #include <asm/coldfire.h>
14 #include <asm/mcfsim.h>
15 #include <asm/mcfdma.h>
17 /***************************************************************************/
20 * DMA channel base address table.
22 unsigned int dma_base_addr[MAX_M68K_DMA_CHANNELS] = {
24 MCF_MBAR + MCFDMA_BASE0,
27 MCF_MBAR + MCFDMA_BASE1,
30 MCF_MBAR + MCFDMA_BASE2,
33 MCF_MBAR + MCFDMA_BASE3,
37 unsigned int dma_device_address[MAX_M68K_DMA_CHANNELS];
39 /***************************************************************************/