2 * linux/include/asm-arm/arch-pxa/dma.h
4 * Author: Nicolas Pitre
5 * Created: Jun 15, 2001
6 * Copyright: MontaVista Software, Inc.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 #ifndef __ASM_ARCH_DMA_H
13 #define __ASM_ARCH_DMA_H
15 #define MAX_DMA_ADDRESS 0xffffffff
17 /* No DMA as the rest of the world see it */
18 #define MAX_DMA_CHANNELS 0
21 * Descriptor structure for PXA's DMA engine
22 * Note: this structure must always be aligned to a 16-byte boundary.
25 typedef struct pxa_dma_desc
{
26 volatile u32 ddadr
; /* Points to the next descriptor + flags */
27 volatile u32 dsadr
; /* DSADR value for the current transfer */
28 volatile u32 dtadr
; /* DTADR value for the current transfer */
29 volatile u32 dcmd
; /* DCMD value for the current transfer */
32 #if defined(CONFIG_PXA27x)
34 #define PXA_DMA_CHANNELS 32
35 #define PXA_DMA_NBCH(prio) ((prio == DMA_PRIO_LOW) ? 16 : 8)
43 #elif defined(CONFIG_PXA25x)
45 #define PXA_DMA_CHANNELS 16
46 #define PXA_DMA_NBCH(prio) ((prio == DMA_PRIO_LOW) ? 8 : 4)
60 int pxa_request_dma (char *name
,
62 void (*irq_handler
)(int, void *, struct pt_regs
*),
65 void pxa_free_dma (int dma_ch
);
67 #endif /* _ASM_ARCH_DMA_H */