2 * arch/sh/include/asm/dma-sh.h
4 * Copyright (C) 2000 Takashi YOSHII
5 * Copyright (C) 2003 Paul Mundt
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file "COPYING" in the main directory of this archive
17 /* DMAOR contorl: The DMAOR access size is different by CPU.*/
18 #if defined(CONFIG_CPU_SUBTYPE_SH7723) || \
19 defined(CONFIG_CPU_SUBTYPE_SH7724) || \
20 defined(CONFIG_CPU_SUBTYPE_SH7780) || \
21 defined(CONFIG_CPU_SUBTYPE_SH7785)
22 #define dmaor_read_reg(n) \
23 (n ? ctrl_inw(SH_DMAC_BASE1 + DMAOR) \
24 : ctrl_inw(SH_DMAC_BASE0 + DMAOR))
25 #define dmaor_write_reg(n, data) \
26 (n ? ctrl_outw(data, SH_DMAC_BASE1 + DMAOR) \
27 : ctrl_outw(data, SH_DMAC_BASE0 + DMAOR))
29 #define dmaor_read_reg(n) ctrl_inw(SH_DMAC_BASE0 + DMAOR)
30 #define dmaor_write_reg(n, data) ctrl_outw(data, SH_DMAC_BASE0 + DMAOR)
33 static int dmte_irq_map
[] __maybe_unused
= {
34 #if (MAX_DMA_CHANNELS >= 4)
40 #if (MAX_DMA_CHANNELS >= 6)
44 #if (MAX_DMA_CHANNELS >= 8)
48 #if (MAX_DMA_CHANNELS >= 12)
56 /* Definitions for the SuperH DMAC */
57 #define REQ_L 0x00000000
58 #define REQ_E 0x00080000
59 #define RACK_H 0x00000000
60 #define RACK_L 0x00040000
61 #define ACK_R 0x00000000
62 #define ACK_W 0x00020000
63 #define ACK_H 0x00000000
64 #define ACK_L 0x00010000
65 #define DM_INC 0x00004000
66 #define DM_DEC 0x00008000
67 #define SM_INC 0x00001000
68 #define SM_DEC 0x00002000
69 #define RS_IN 0x00000200
70 #define RS_OUT 0x00000300
71 #define TS_BLK 0x00000040
72 #define TM_BUR 0x00000020
73 #define CHCR_DE 0x00000001
74 #define CHCR_TE 0x00000002
75 #define CHCR_IE 0x00000004
77 /* DMAOR definitions */
78 #define DMAOR_AE 0x00000004
79 #define DMAOR_NMIF 0x00000002
80 #define DMAOR_DME 0x00000001
83 * Define the default configuration for dual address memory-memory transfer.
84 * The 0x400 value represents auto-request, external->external.
86 #define RS_DUAL (DM_INC | SM_INC | 0x400 | TS_32)
88 /* DMA base address */
89 static u32 dma_base_addr
[] __maybe_unused
= {
90 #if (MAX_DMA_CHANNELS >= 4)
91 SH_DMAC_BASE0
+ 0x00, /* channel 0 */
96 #if (MAX_DMA_CHANNELS >= 6)
100 #if (MAX_DMA_CHANNELS >= 8)
101 SH_DMAC_BASE1
+ 0x00,
102 SH_DMAC_BASE1
+ 0x10,
104 #if (MAX_DMA_CHANNELS >= 12)
105 SH_DMAC_BASE1
+ 0x20,
106 SH_DMAC_BASE1
+ 0x30,
107 SH_DMAC_BASE1
+ 0x50,
108 SH_DMAC_BASE1
+ 0x60, /* channel 11 */
124 #define SHDMA_MIX_IRQ (1 << 1)
125 #define SHDMA_DMAOR1 (1 << 2)
126 #define SHDMA_DMAE1 (1 << 3)
128 struct sh_dmae_pdata
{
132 #endif /* __DMA_SH_H */