[PATCH] sh: DMA updates
[linux-2.6/x86.git] / include / asm-sh / cpu-sh4 / dma.h
blob0dfe61f14802168b3a6526f821447d0955dc7336
1 #ifndef __ASM_CPU_SH4_DMA_H
2 #define __ASM_CPU_SH4_DMA_H
4 #ifdef CONFIG_CPU_SH4A
5 #define SH_DMAC_BASE 0xfc808020
6 #else
7 #define SH_DMAC_BASE 0xffa00000
8 #endif
10 /* Definitions for the SuperH DMAC */
11 #define TM_BURST 0x0000080
12 #define TS_8 0x00000010
13 #define TS_16 0x00000020
14 #define TS_32 0x00000030
15 #define TS_64 0x00000000
17 #define CHCR_TS_MASK 0x30
18 #define CHCR_TS_SHIFT 4
20 #define DMAOR_COD 0x00000008
22 #define DMAOR_INIT ( 0x8000 | DMAOR_DME )
25 * The SuperH DMAC supports a number of transmit sizes, we list them here,
26 * with their respective values as they appear in the CHCR registers.
28 * Defaults to a 64-bit transfer size.
30 enum {
31 XMIT_SZ_64BIT,
32 XMIT_SZ_8BIT,
33 XMIT_SZ_16BIT,
34 XMIT_SZ_32BIT,
35 XMIT_SZ_256BIT,
39 * The DMA count is defined as the number of bytes to transfer.
41 static unsigned int ts_shift[] __attribute__ ((used)) = {
42 [XMIT_SZ_64BIT] = 3,
43 [XMIT_SZ_8BIT] = 0,
44 [XMIT_SZ_16BIT] = 1,
45 [XMIT_SZ_32BIT] = 2,
46 [XMIT_SZ_256BIT] = 5,
49 #endif /* __ASM_CPU_SH4_DMA_H */