2 * Copyright (C) 2010 Samsung Electronics Co. Ltd.
3 * Jaswinder Singh <jassi.brar@samsung.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #include <linux/platform_device.h>
21 #include <linux/dma-mapping.h>
23 #include <plat/devs.h>
26 #include <mach/irqs.h>
28 #include <plat/s3c-pl330-pdata.h>
30 static u64 dma_dmamask
= DMA_BIT_MASK(32);
32 static struct resource s5pc100_pdma0_resource
[] = {
34 .start
= S5PC100_PA_PDMA0
,
35 .end
= S5PC100_PA_PDMA0
+ SZ_4K
,
36 .flags
= IORESOURCE_MEM
,
41 .flags
= IORESOURCE_IRQ
,
45 static struct s3c_pl330_platdata s5pc100_pdma0_pdata
= {
58 [11] = DMACH_I2S0S_TX
,
69 [22] = DMACH_AC97_MICIN
,
70 [23] = DMACH_AC97_PCMIN
,
71 [24] = DMACH_AC97_PCMOUT
,
72 [25] = DMACH_EXTERNAL
,
82 static struct platform_device s5pc100_device_pdma0
= {
85 .num_resources
= ARRAY_SIZE(s5pc100_pdma0_resource
),
86 .resource
= s5pc100_pdma0_resource
,
88 .dma_mask
= &dma_dmamask
,
89 .coherent_dma_mask
= DMA_BIT_MASK(32),
90 .platform_data
= &s5pc100_pdma0_pdata
,
94 static struct resource s5pc100_pdma1_resource
[] = {
96 .start
= S5PC100_PA_PDMA1
,
97 .end
= S5PC100_PA_PDMA1
+ SZ_4K
,
98 .flags
= IORESOURCE_MEM
,
103 .flags
= IORESOURCE_IRQ
,
107 static struct s3c_pl330_platdata s5pc100_pdma1_pdata
= {
109 [0] = DMACH_UART0_RX
,
110 [1] = DMACH_UART0_TX
,
111 [2] = DMACH_UART1_RX
,
112 [3] = DMACH_UART1_TX
,
113 [4] = DMACH_UART2_RX
,
114 [5] = DMACH_UART2_TX
,
115 [6] = DMACH_UART3_RX
,
116 [7] = DMACH_UART3_TX
,
119 [10] = DMACH_I2S0_TX
,
120 [11] = DMACH_I2S0S_TX
,
121 [12] = DMACH_I2S1_RX
,
122 [13] = DMACH_I2S1_TX
,
123 [14] = DMACH_I2S2_RX
,
124 [15] = DMACH_I2S2_TX
,
125 [16] = DMACH_SPI0_RX
,
126 [17] = DMACH_SPI0_TX
,
127 [18] = DMACH_SPI1_RX
,
128 [19] = DMACH_SPI1_TX
,
129 [20] = DMACH_SPI2_RX
,
130 [21] = DMACH_SPI2_TX
,
131 [22] = DMACH_PCM0_RX
,
132 [23] = DMACH_PCM0_TX
,
133 [24] = DMACH_PCM1_RX
,
134 [25] = DMACH_PCM1_TX
,
135 [26] = DMACH_MSM_REQ0
,
136 [27] = DMACH_MSM_REQ1
,
137 [28] = DMACH_MSM_REQ2
,
138 [29] = DMACH_MSM_REQ3
,
144 static struct platform_device s5pc100_device_pdma1
= {
147 .num_resources
= ARRAY_SIZE(s5pc100_pdma1_resource
),
148 .resource
= s5pc100_pdma1_resource
,
150 .dma_mask
= &dma_dmamask
,
151 .coherent_dma_mask
= DMA_BIT_MASK(32),
152 .platform_data
= &s5pc100_pdma1_pdata
,
156 static struct platform_device
*s5pc100_dmacs
[] __initdata
= {
157 &s5pc100_device_pdma0
,
158 &s5pc100_device_pdma1
,
161 static int __init
s5pc100_dma_init(void)
163 platform_add_devices(s5pc100_dmacs
, ARRAY_SIZE(s5pc100_dmacs
));
167 arch_initcall(s5pc100_dma_init
);