Loading...
1/*
2 * OMAP1/OMAP7xx - specific DMA driver
3 *
4 * Copyright (C) 2003 - 2008 Nokia Corporation
5 * Author: Juha Yrjölä <juha.yrjola@nokia.com>
6 * DMA channel linking for 1610 by Samuel Ortiz <samuel.ortiz@nokia.com>
7 * Graphics DMA and LCD DMA graphics tranformations
8 * by Imre Deak <imre.deak@nokia.com>
9 * OMAP2/3 support Copyright (C) 2004-2007 Texas Instruments, Inc.
10 * Some functions based on earlier dma-omap.c Copyright (C) 2001 RidgeRun, Inc.
11 *
12 * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/
13 * Converted DMA library into platform driver
14 * - G, Manjunath Kondaiah <manjugk@ti.com>
15 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License version 2 as
18 * published by the Free Software Foundation.
19 */
20
21#include <linux/err.h>
22#include <linux/io.h>
23#include <linux/slab.h>
24#include <linux/module.h>
25#include <linux/init.h>
26#include <linux/device.h>
27
28#include <plat/dma.h>
29#include <plat/tc.h>
30#include <plat/irqs.h>
31
32#define OMAP1_DMA_BASE (0xfffed800)
33#define OMAP1_LOGICAL_DMA_CH_COUNT 17
34#define OMAP1_DMA_STRIDE 0x40
35
36static u32 errata;
37static u32 enable_1510_mode;
38static u8 dma_stride;
39static enum omap_reg_offsets dma_common_ch_start, dma_common_ch_end;
40
41static u16 reg_map[] = {
42 [GCR] = 0x400,
43 [GSCR] = 0x404,
44 [GRST1] = 0x408,
45 [HW_ID] = 0x442,
46 [PCH2_ID] = 0x444,
47 [PCH0_ID] = 0x446,
48 [PCH1_ID] = 0x448,
49 [PCHG_ID] = 0x44a,
50 [PCHD_ID] = 0x44c,
51 [CAPS_0] = 0x44e,
52 [CAPS_1] = 0x452,
53 [CAPS_2] = 0x456,
54 [CAPS_3] = 0x458,
55 [CAPS_4] = 0x45a,
56 [PCH2_SR] = 0x460,
57 [PCH0_SR] = 0x480,
58 [PCH1_SR] = 0x482,
59 [PCHD_SR] = 0x4c0,
60
61 /* Common Registers */
62 [CSDP] = 0x00,
63 [CCR] = 0x02,
64 [CICR] = 0x04,
65 [CSR] = 0x06,
66 [CEN] = 0x10,
67 [CFN] = 0x12,
68 [CSFI] = 0x14,
69 [CSEI] = 0x16,
70 [CPC] = 0x18, /* 15xx only */
71 [CSAC] = 0x18,
72 [CDAC] = 0x1a,
73 [CDEI] = 0x1c,
74 [CDFI] = 0x1e,
75 [CLNK_CTRL] = 0x28,
76
77 /* Channel specific register offsets */
78 [CSSA] = 0x08,
79 [CDSA] = 0x0c,
80 [COLOR] = 0x20,
81 [CCR2] = 0x24,
82 [LCH_CTRL] = 0x2a,
83};
84
85static struct resource res[] __initdata = {
86 [0] = {
87 .start = OMAP1_DMA_BASE,
88 .end = OMAP1_DMA_BASE + SZ_2K - 1,
89 .flags = IORESOURCE_MEM,
90 },
91 [1] = {
92 .name = "0",
93 .start = INT_DMA_CH0_6,
94 .flags = IORESOURCE_IRQ,
95 },
96 [2] = {
97 .name = "1",
98 .start = INT_DMA_CH1_7,
99 .flags = IORESOURCE_IRQ,
100 },
101 [3] = {
102 .name = "2",
103 .start = INT_DMA_CH2_8,
104 .flags = IORESOURCE_IRQ,
105 },
106 [4] = {
107 .name = "3",
108 .start = INT_DMA_CH3,
109 .flags = IORESOURCE_IRQ,
110 },
111 [5] = {
112 .name = "4",
113 .start = INT_DMA_CH4,
114 .flags = IORESOURCE_IRQ,
115 },
116 [6] = {
117 .name = "5",
118 .start = INT_DMA_CH5,
119 .flags = IORESOURCE_IRQ,
120 },
121 /* Handled in lcd_dma.c */
122 [7] = {
123 .name = "6",
124 .start = INT_1610_DMA_CH6,
125 .flags = IORESOURCE_IRQ,
126 },
127 /* irq's for omap16xx and omap7xx */
128 [8] = {
129 .name = "7",
130 .start = INT_1610_DMA_CH7,
131 .flags = IORESOURCE_IRQ,
132 },
133 [9] = {
134 .name = "8",
135 .start = INT_1610_DMA_CH8,
136 .flags = IORESOURCE_IRQ,
137 },
138 [10] = {
139 .name = "9",
140 .start = INT_1610_DMA_CH9,
141 .flags = IORESOURCE_IRQ,
142 },
143 [11] = {
144 .name = "10",
145 .start = INT_1610_DMA_CH10,
146 .flags = IORESOURCE_IRQ,
147 },
148 [12] = {
149 .name = "11",
150 .start = INT_1610_DMA_CH11,
151 .flags = IORESOURCE_IRQ,
152 },
153 [13] = {
154 .name = "12",
155 .start = INT_1610_DMA_CH12,
156 .flags = IORESOURCE_IRQ,
157 },
158 [14] = {
159 .name = "13",
160 .start = INT_1610_DMA_CH13,
161 .flags = IORESOURCE_IRQ,
162 },
163 [15] = {
164 .name = "14",
165 .start = INT_1610_DMA_CH14,
166 .flags = IORESOURCE_IRQ,
167 },
168 [16] = {
169 .name = "15",
170 .start = INT_1610_DMA_CH15,
171 .flags = IORESOURCE_IRQ,
172 },
173 [17] = {
174 .name = "16",
175 .start = INT_DMA_LCD,
176 .flags = IORESOURCE_IRQ,
177 },
178};
179
180static void __iomem *dma_base;
181static inline void dma_write(u32 val, int reg, int lch)
182{
183 u8 stride;
184 u32 offset;
185
186 stride = (reg >= dma_common_ch_start) ? dma_stride : 0;
187 offset = reg_map[reg] + (stride * lch);
188
189 __raw_writew(val, dma_base + offset);
190 if ((reg > CLNK_CTRL && reg < CCEN) ||
191 (reg > PCHD_ID && reg < CAPS_2)) {
192 u32 offset2 = reg_map[reg] + 2 + (stride * lch);
193 __raw_writew(val >> 16, dma_base + offset2);
194 }
195}
196
197static inline u32 dma_read(int reg, int lch)
198{
199 u8 stride;
200 u32 offset, val;
201
202 stride = (reg >= dma_common_ch_start) ? dma_stride : 0;
203 offset = reg_map[reg] + (stride * lch);
204
205 val = __raw_readw(dma_base + offset);
206 if ((reg > CLNK_CTRL && reg < CCEN) ||
207 (reg > PCHD_ID && reg < CAPS_2)) {
208 u16 upper;
209 u32 offset2 = reg_map[reg] + 2 + (stride * lch);
210 upper = __raw_readw(dma_base + offset2);
211 val |= (upper << 16);
212 }
213 return val;
214}
215
216static void omap1_clear_lch_regs(int lch)
217{
218 int i = dma_common_ch_start;
219
220 for (; i <= dma_common_ch_end; i += 1)
221 dma_write(0, i, lch);
222}
223
224static void omap1_clear_dma(int lch)
225{
226 u32 l;
227
228 l = dma_read(CCR, lch);
229 l &= ~OMAP_DMA_CCR_EN;
230 dma_write(l, CCR, lch);
231
232 /* Clear pending interrupts */
233 l = dma_read(CSR, lch);
234}
235
236static void omap1_show_dma_caps(void)
237{
238 if (enable_1510_mode) {
239 printk(KERN_INFO "DMA support for OMAP15xx initialized\n");
240 } else {
241 u16 w;
242 printk(KERN_INFO "OMAP DMA hardware version %d\n",
243 dma_read(HW_ID, 0));
244 printk(KERN_INFO "DMA capabilities: %08x:%08x:%04x:%04x:%04x\n",
245 dma_read(CAPS_0, 0), dma_read(CAPS_1, 0),
246 dma_read(CAPS_2, 0), dma_read(CAPS_3, 0),
247 dma_read(CAPS_4, 0));
248
249 /* Disable OMAP 3.0/3.1 compatibility mode. */
250 w = dma_read(GSCR, 0);
251 w |= 1 << 3;
252 dma_write(w, GSCR, 0);
253 }
254 return;
255}
256
257static u32 configure_dma_errata(void)
258{
259
260 /*
261 * Erratum 3.2/3.3: sometimes 0 is returned if CSAC/CDAC is
262 * read before the DMA controller finished disabling the channel.
263 */
264 if (!cpu_is_omap15xx())
265 SET_DMA_ERRATA(DMA_ERRATA_3_3);
266
267 return errata;
268}
269
270static int __init omap1_system_dma_init(void)
271{
272 struct omap_system_dma_plat_info *p;
273 struct omap_dma_dev_attr *d;
274 struct platform_device *pdev;
275 int ret;
276
277 pdev = platform_device_alloc("omap_dma_system", 0);
278 if (!pdev) {
279 pr_err("%s: Unable to device alloc for dma\n",
280 __func__);
281 return -ENOMEM;
282 }
283
284 dma_base = ioremap(res[0].start, resource_size(&res[0]));
285 if (!dma_base) {
286 pr_err("%s: Unable to ioremap\n", __func__);
287 ret = -ENODEV;
288 goto exit_device_put;
289 }
290
291 ret = platform_device_add_resources(pdev, res, ARRAY_SIZE(res));
292 if (ret) {
293 dev_err(&pdev->dev, "%s: Unable to add resources for %s%d\n",
294 __func__, pdev->name, pdev->id);
295 goto exit_device_put;
296 }
297
298 p = kzalloc(sizeof(struct omap_system_dma_plat_info), GFP_KERNEL);
299 if (!p) {
300 dev_err(&pdev->dev, "%s: Unable to allocate 'p' for %s\n",
301 __func__, pdev->name);
302 ret = -ENOMEM;
303 goto exit_device_del;
304 }
305
306 d = kzalloc(sizeof(struct omap_dma_dev_attr), GFP_KERNEL);
307 if (!d) {
308 dev_err(&pdev->dev, "%s: Unable to allocate 'd' for %s\n",
309 __func__, pdev->name);
310 ret = -ENOMEM;
311 goto exit_release_p;
312 }
313
314 d->lch_count = OMAP1_LOGICAL_DMA_CH_COUNT;
315
316 /* Valid attributes for omap1 plus processors */
317 if (cpu_is_omap15xx())
318 d->dev_caps = ENABLE_1510_MODE;
319 enable_1510_mode = d->dev_caps & ENABLE_1510_MODE;
320
321 d->dev_caps |= SRC_PORT;
322 d->dev_caps |= DST_PORT;
323 d->dev_caps |= SRC_INDEX;
324 d->dev_caps |= DST_INDEX;
325 d->dev_caps |= IS_BURST_ONLY4;
326 d->dev_caps |= CLEAR_CSR_ON_READ;
327 d->dev_caps |= IS_WORD_16;
328
329
330 d->chan = kzalloc(sizeof(struct omap_dma_lch) *
331 (d->lch_count), GFP_KERNEL);
332 if (!d->chan) {
333 dev_err(&pdev->dev, "%s: Memory allocation failed"
334 "for d->chan!!!\n", __func__);
335 goto exit_release_d;
336 }
337
338 if (cpu_is_omap15xx())
339 d->chan_count = 9;
340 else if (cpu_is_omap16xx() || cpu_is_omap7xx()) {
341 if (!(d->dev_caps & ENABLE_1510_MODE))
342 d->chan_count = 16;
343 else
344 d->chan_count = 9;
345 }
346
347 p->dma_attr = d;
348
349 p->show_dma_caps = omap1_show_dma_caps;
350 p->clear_lch_regs = omap1_clear_lch_regs;
351 p->clear_dma = omap1_clear_dma;
352 p->dma_write = dma_write;
353 p->dma_read = dma_read;
354 p->disable_irq_lch = NULL;
355
356 p->errata = configure_dma_errata();
357
358 ret = platform_device_add_data(pdev, p, sizeof(*p));
359 if (ret) {
360 dev_err(&pdev->dev, "%s: Unable to add resources for %s%d\n",
361 __func__, pdev->name, pdev->id);
362 goto exit_release_chan;
363 }
364
365 ret = platform_device_add(pdev);
366 if (ret) {
367 dev_err(&pdev->dev, "%s: Unable to add resources for %s%d\n",
368 __func__, pdev->name, pdev->id);
369 goto exit_release_chan;
370 }
371
372 dma_stride = OMAP1_DMA_STRIDE;
373 dma_common_ch_start = CPC;
374 dma_common_ch_end = COLOR;
375
376 return ret;
377
378exit_release_chan:
379 kfree(d->chan);
380exit_release_d:
381 kfree(d);
382exit_release_p:
383 kfree(p);
384exit_device_del:
385 platform_device_del(pdev);
386exit_device_put:
387 platform_device_put(pdev);
388
389 return ret;
390}
391arch_initcall(omap1_system_dma_init);
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * OMAP1/OMAP7xx - specific DMA driver
4 *
5 * Copyright (C) 2003 - 2008 Nokia Corporation
6 * Author: Juha Yrjölä <juha.yrjola@nokia.com>
7 * DMA channel linking for 1610 by Samuel Ortiz <samuel.ortiz@nokia.com>
8 * Graphics DMA and LCD DMA graphics tranformations
9 * by Imre Deak <imre.deak@nokia.com>
10 * OMAP2/3 support Copyright (C) 2004-2007 Texas Instruments, Inc.
11 * Some functions based on earlier dma-omap.c Copyright (C) 2001 RidgeRun, Inc.
12 *
13 * Copyright (C) 2010 Texas Instruments Incorporated - https://www.ti.com/
14 * Converted DMA library into platform driver
15 * - G, Manjunath Kondaiah <manjugk@ti.com>
16 */
17
18#include <linux/err.h>
19#include <linux/slab.h>
20#include <linux/module.h>
21#include <linux/init.h>
22#include <linux/device.h>
23#include <linux/io.h>
24#include <linux/dma-mapping.h>
25#include <linux/dmaengine.h>
26#include <linux/omap-dma.h>
27#include "tc.h"
28
29#include "soc.h"
30
31#define OMAP1_DMA_BASE (0xfffed800)
32
33static u32 enable_1510_mode;
34
35static const struct omap_dma_reg reg_map[] = {
36 [GCR] = { 0x0400, 0x00, OMAP_DMA_REG_16BIT },
37 [GSCR] = { 0x0404, 0x00, OMAP_DMA_REG_16BIT },
38 [GRST1] = { 0x0408, 0x00, OMAP_DMA_REG_16BIT },
39 [HW_ID] = { 0x0442, 0x00, OMAP_DMA_REG_16BIT },
40 [PCH2_ID] = { 0x0444, 0x00, OMAP_DMA_REG_16BIT },
41 [PCH0_ID] = { 0x0446, 0x00, OMAP_DMA_REG_16BIT },
42 [PCH1_ID] = { 0x0448, 0x00, OMAP_DMA_REG_16BIT },
43 [PCHG_ID] = { 0x044a, 0x00, OMAP_DMA_REG_16BIT },
44 [PCHD_ID] = { 0x044c, 0x00, OMAP_DMA_REG_16BIT },
45 [CAPS_0] = { 0x044e, 0x00, OMAP_DMA_REG_2X16BIT },
46 [CAPS_1] = { 0x0452, 0x00, OMAP_DMA_REG_2X16BIT },
47 [CAPS_2] = { 0x0456, 0x00, OMAP_DMA_REG_16BIT },
48 [CAPS_3] = { 0x0458, 0x00, OMAP_DMA_REG_16BIT },
49 [CAPS_4] = { 0x045a, 0x00, OMAP_DMA_REG_16BIT },
50 [PCH2_SR] = { 0x0460, 0x00, OMAP_DMA_REG_16BIT },
51 [PCH0_SR] = { 0x0480, 0x00, OMAP_DMA_REG_16BIT },
52 [PCH1_SR] = { 0x0482, 0x00, OMAP_DMA_REG_16BIT },
53 [PCHD_SR] = { 0x04c0, 0x00, OMAP_DMA_REG_16BIT },
54
55 /* Common Registers */
56 [CSDP] = { 0x0000, 0x40, OMAP_DMA_REG_16BIT },
57 [CCR] = { 0x0002, 0x40, OMAP_DMA_REG_16BIT },
58 [CICR] = { 0x0004, 0x40, OMAP_DMA_REG_16BIT },
59 [CSR] = { 0x0006, 0x40, OMAP_DMA_REG_16BIT },
60 [CEN] = { 0x0010, 0x40, OMAP_DMA_REG_16BIT },
61 [CFN] = { 0x0012, 0x40, OMAP_DMA_REG_16BIT },
62 [CSFI] = { 0x0014, 0x40, OMAP_DMA_REG_16BIT },
63 [CSEI] = { 0x0016, 0x40, OMAP_DMA_REG_16BIT },
64 [CPC] = { 0x0018, 0x40, OMAP_DMA_REG_16BIT }, /* 15xx only */
65 [CSAC] = { 0x0018, 0x40, OMAP_DMA_REG_16BIT },
66 [CDAC] = { 0x001a, 0x40, OMAP_DMA_REG_16BIT },
67 [CDEI] = { 0x001c, 0x40, OMAP_DMA_REG_16BIT },
68 [CDFI] = { 0x001e, 0x40, OMAP_DMA_REG_16BIT },
69 [CLNK_CTRL] = { 0x0028, 0x40, OMAP_DMA_REG_16BIT },
70
71 /* Channel specific register offsets */
72 [CSSA] = { 0x0008, 0x40, OMAP_DMA_REG_2X16BIT },
73 [CDSA] = { 0x000c, 0x40, OMAP_DMA_REG_2X16BIT },
74 [COLOR] = { 0x0020, 0x40, OMAP_DMA_REG_2X16BIT },
75 [CCR2] = { 0x0024, 0x40, OMAP_DMA_REG_16BIT },
76 [LCH_CTRL] = { 0x002a, 0x40, OMAP_DMA_REG_16BIT },
77};
78
79static struct resource res[] __initdata = {
80 [0] = {
81 .start = OMAP1_DMA_BASE,
82 .end = OMAP1_DMA_BASE + SZ_2K - 1,
83 .flags = IORESOURCE_MEM,
84 },
85 [1] = {
86 .name = "0",
87 .start = INT_DMA_CH0_6,
88 .flags = IORESOURCE_IRQ,
89 },
90 [2] = {
91 .name = "1",
92 .start = INT_DMA_CH1_7,
93 .flags = IORESOURCE_IRQ,
94 },
95 [3] = {
96 .name = "2",
97 .start = INT_DMA_CH2_8,
98 .flags = IORESOURCE_IRQ,
99 },
100 [4] = {
101 .name = "3",
102 .start = INT_DMA_CH3,
103 .flags = IORESOURCE_IRQ,
104 },
105 [5] = {
106 .name = "4",
107 .start = INT_DMA_CH4,
108 .flags = IORESOURCE_IRQ,
109 },
110 [6] = {
111 .name = "5",
112 .start = INT_DMA_CH5,
113 .flags = IORESOURCE_IRQ,
114 },
115 /* Handled in lcd_dma.c */
116 [7] = {
117 .name = "6",
118 .start = INT_1610_DMA_CH6,
119 .flags = IORESOURCE_IRQ,
120 },
121 /* irq's for omap16xx and omap7xx */
122 [8] = {
123 .name = "7",
124 .start = INT_1610_DMA_CH7,
125 .flags = IORESOURCE_IRQ,
126 },
127 [9] = {
128 .name = "8",
129 .start = INT_1610_DMA_CH8,
130 .flags = IORESOURCE_IRQ,
131 },
132 [10] = {
133 .name = "9",
134 .start = INT_1610_DMA_CH9,
135 .flags = IORESOURCE_IRQ,
136 },
137 [11] = {
138 .name = "10",
139 .start = INT_1610_DMA_CH10,
140 .flags = IORESOURCE_IRQ,
141 },
142 [12] = {
143 .name = "11",
144 .start = INT_1610_DMA_CH11,
145 .flags = IORESOURCE_IRQ,
146 },
147 [13] = {
148 .name = "12",
149 .start = INT_1610_DMA_CH12,
150 .flags = IORESOURCE_IRQ,
151 },
152 [14] = {
153 .name = "13",
154 .start = INT_1610_DMA_CH13,
155 .flags = IORESOURCE_IRQ,
156 },
157 [15] = {
158 .name = "14",
159 .start = INT_1610_DMA_CH14,
160 .flags = IORESOURCE_IRQ,
161 },
162 [16] = {
163 .name = "15",
164 .start = INT_1610_DMA_CH15,
165 .flags = IORESOURCE_IRQ,
166 },
167 [17] = {
168 .name = "16",
169 .start = INT_DMA_LCD,
170 .flags = IORESOURCE_IRQ,
171 },
172};
173
174static void __iomem *dma_base;
175static inline void dma_write(u32 val, int reg, int lch)
176{
177 void __iomem *addr = dma_base;
178
179 addr += reg_map[reg].offset;
180 addr += reg_map[reg].stride * lch;
181
182 __raw_writew(val, addr);
183 if (reg_map[reg].type == OMAP_DMA_REG_2X16BIT)
184 __raw_writew(val >> 16, addr + 2);
185}
186
187static inline u32 dma_read(int reg, int lch)
188{
189 void __iomem *addr = dma_base;
190 uint32_t val;
191
192 addr += reg_map[reg].offset;
193 addr += reg_map[reg].stride * lch;
194
195 val = __raw_readw(addr);
196 if (reg_map[reg].type == OMAP_DMA_REG_2X16BIT)
197 val |= __raw_readw(addr + 2) << 16;
198
199 return val;
200}
201
202static void omap1_clear_lch_regs(int lch)
203{
204 int i;
205
206 for (i = CPC; i <= COLOR; i += 1)
207 dma_write(0, i, lch);
208}
209
210static void omap1_clear_dma(int lch)
211{
212 u32 l;
213
214 l = dma_read(CCR, lch);
215 l &= ~OMAP_DMA_CCR_EN;
216 dma_write(l, CCR, lch);
217
218 /* Clear pending interrupts */
219 l = dma_read(CSR, lch);
220}
221
222static void omap1_show_dma_caps(void)
223{
224 if (enable_1510_mode) {
225 printk(KERN_INFO "DMA support for OMAP15xx initialized\n");
226 } else {
227 u16 w;
228 printk(KERN_INFO "OMAP DMA hardware version %d\n",
229 dma_read(HW_ID, 0));
230 printk(KERN_INFO "DMA capabilities: %08x:%08x:%04x:%04x:%04x\n",
231 dma_read(CAPS_0, 0), dma_read(CAPS_1, 0),
232 dma_read(CAPS_2, 0), dma_read(CAPS_3, 0),
233 dma_read(CAPS_4, 0));
234
235 /* Disable OMAP 3.0/3.1 compatibility mode. */
236 w = dma_read(GSCR, 0);
237 w |= 1 << 3;
238 dma_write(w, GSCR, 0);
239 }
240}
241
242static unsigned configure_dma_errata(void)
243{
244 unsigned errata = 0;
245
246 /*
247 * Erratum 3.2/3.3: sometimes 0 is returned if CSAC/CDAC is
248 * read before the DMA controller finished disabling the channel.
249 */
250 if (!cpu_is_omap15xx())
251 SET_DMA_ERRATA(DMA_ERRATA_3_3);
252
253 return errata;
254}
255
256static const struct platform_device_info omap_dma_dev_info = {
257 .name = "omap-dma-engine",
258 .id = -1,
259 .dma_mask = DMA_BIT_MASK(32),
260 .res = res,
261 .num_res = 1,
262};
263
264/* OMAP1510, OMAP1610*/
265static const struct dma_slave_map omap1xxx_sdma_map[] = {
266 { "omap-mcbsp.1", "tx", SDMA_FILTER_PARAM(8) },
267 { "omap-mcbsp.1", "rx", SDMA_FILTER_PARAM(9) },
268 { "omap-mcbsp.3", "tx", SDMA_FILTER_PARAM(10) },
269 { "omap-mcbsp.3", "rx", SDMA_FILTER_PARAM(11) },
270 { "omap-mcbsp.2", "tx", SDMA_FILTER_PARAM(16) },
271 { "omap-mcbsp.2", "rx", SDMA_FILTER_PARAM(17) },
272 { "mmci-omap.0", "tx", SDMA_FILTER_PARAM(21) },
273 { "mmci-omap.0", "rx", SDMA_FILTER_PARAM(22) },
274 { "omap_udc", "rx0", SDMA_FILTER_PARAM(26) },
275 { "omap_udc", "rx1", SDMA_FILTER_PARAM(27) },
276 { "omap_udc", "rx2", SDMA_FILTER_PARAM(28) },
277 { "omap_udc", "tx0", SDMA_FILTER_PARAM(29) },
278 { "omap_udc", "tx1", SDMA_FILTER_PARAM(30) },
279 { "omap_udc", "tx2", SDMA_FILTER_PARAM(31) },
280 { "mmci-omap.1", "tx", SDMA_FILTER_PARAM(54) },
281 { "mmci-omap.1", "rx", SDMA_FILTER_PARAM(55) },
282};
283
284static struct omap_system_dma_plat_info dma_plat_info __initdata = {
285 .reg_map = reg_map,
286 .channel_stride = 0x40,
287 .show_dma_caps = omap1_show_dma_caps,
288 .clear_lch_regs = omap1_clear_lch_regs,
289 .clear_dma = omap1_clear_dma,
290 .dma_write = dma_write,
291 .dma_read = dma_read,
292};
293
294static int __init omap1_system_dma_init(void)
295{
296 struct omap_system_dma_plat_info p;
297 struct omap_dma_dev_attr *d;
298 struct platform_device *pdev, *dma_pdev;
299 int ret;
300
301 pdev = platform_device_alloc("omap_dma_system", 0);
302 if (!pdev) {
303 pr_err("%s: Unable to device alloc for dma\n",
304 __func__);
305 return -ENOMEM;
306 }
307
308 dma_base = ioremap(res[0].start, resource_size(&res[0]));
309 if (!dma_base) {
310 pr_err("%s: Unable to ioremap\n", __func__);
311 ret = -ENODEV;
312 goto exit_device_put;
313 }
314
315 ret = platform_device_add_resources(pdev, res, ARRAY_SIZE(res));
316 if (ret) {
317 dev_err(&pdev->dev, "%s: Unable to add resources for %s%d\n",
318 __func__, pdev->name, pdev->id);
319 goto exit_iounmap;
320 }
321
322 d = kzalloc(sizeof(*d), GFP_KERNEL);
323 if (!d) {
324 ret = -ENOMEM;
325 goto exit_iounmap;
326 }
327
328 /* Valid attributes for omap1 plus processors */
329 if (cpu_is_omap15xx())
330 d->dev_caps = ENABLE_1510_MODE;
331 enable_1510_mode = d->dev_caps & ENABLE_1510_MODE;
332
333 if (cpu_is_omap16xx())
334 d->dev_caps = ENABLE_16XX_MODE;
335
336 d->dev_caps |= SRC_PORT;
337 d->dev_caps |= DST_PORT;
338 d->dev_caps |= SRC_INDEX;
339 d->dev_caps |= DST_INDEX;
340 d->dev_caps |= IS_BURST_ONLY4;
341 d->dev_caps |= CLEAR_CSR_ON_READ;
342 d->dev_caps |= IS_WORD_16;
343
344 /* available logical channels */
345 if (cpu_is_omap15xx()) {
346 d->lch_count = 9;
347 } else {
348 if (d->dev_caps & ENABLE_1510_MODE)
349 d->lch_count = 9;
350 else
351 d->lch_count = 16;
352 }
353
354 p = dma_plat_info;
355 p.dma_attr = d;
356 p.errata = configure_dma_errata();
357
358 p.slave_map = omap1xxx_sdma_map;
359 p.slavecnt = ARRAY_SIZE(omap1xxx_sdma_map);
360
361 ret = platform_device_add_data(pdev, &p, sizeof(p));
362 if (ret) {
363 dev_err(&pdev->dev, "%s: Unable to add resources for %s%d\n",
364 __func__, pdev->name, pdev->id);
365 goto exit_release_d;
366 }
367
368 ret = platform_device_add(pdev);
369 if (ret) {
370 dev_err(&pdev->dev, "%s: Unable to add resources for %s%d\n",
371 __func__, pdev->name, pdev->id);
372 goto exit_release_d;
373 }
374
375 dma_pdev = platform_device_register_full(&omap_dma_dev_info);
376 if (IS_ERR(dma_pdev)) {
377 ret = PTR_ERR(dma_pdev);
378 goto exit_release_pdev;
379 }
380
381 return ret;
382
383exit_release_pdev:
384 platform_device_del(pdev);
385exit_release_d:
386 kfree(d);
387exit_iounmap:
388 iounmap(dma_base);
389exit_device_put:
390 platform_device_put(pdev);
391
392 return ret;
393}
394arch_initcall(omap1_system_dma_init);