1 /***************************************************************************/
4 * dma.c -- Freescale ColdFire DMA support
6 * Copyright (C) 2007, Greg Ungerer (gerg@snapgear.com)
9 /***************************************************************************/
11 #include <linux/kernel.h>
12 #include <linux/module.h>
14 #include <asm/coldfire.h>
15 #include <asm/mcfsim.h>
16 #include <asm/mcfdma.h>
18 /***************************************************************************/
21 * DMA channel base address table.
23 unsigned int dma_base_addr
[MAX_M68K_DMA_CHANNELS
] = {
37 EXPORT_SYMBOL(dma_base_addr
);
39 unsigned int dma_device_address
[MAX_M68K_DMA_CHANNELS
];
40 EXPORT_SYMBOL(dma_device_address
);
42 /***************************************************************************/