1 // SPDX-License-Identifier: GPL-2.0
2 /***************************************************************************/
5 * dma.c -- Freescale ColdFire DMA support
7 * Copyright (C) 2007, Greg Ungerer (gerg@snapgear.com)
10 /***************************************************************************/
12 #include <linux/kernel.h>
13 #include <linux/module.h>
15 #include <asm/coldfire.h>
16 #include <asm/mcfsim.h>
17 #include <asm/mcfdma.h>
19 /***************************************************************************/
22 * DMA channel base address table.
24 unsigned int dma_base_addr
[MAX_M68K_DMA_CHANNELS
] = {
38 EXPORT_SYMBOL(dma_base_addr
);
40 unsigned int dma_device_address
[MAX_M68K_DMA_CHANNELS
];
41 EXPORT_SYMBOL(dma_device_address
);
43 /***************************************************************************/