dmaengine: imx-dma: remove data member from internal structure.
[deliverable/linux.git] / drivers / dma / imx-dma.c
CommitLineData
1f1846c6
SH
1/*
2 * drivers/dma/imx-dma.c
3 *
4 * This file contains a driver for the Freescale i.MX DMA engine
5 * found on i.MX1/21/27
6 *
7 * Copyright 2010 Sascha Hauer, Pengutronix <s.hauer@pengutronix.de>
9e15db7c 8 * Copyright 2012 Javier Martin, Vista Silicon <javier.martin@vista-silicon.com>
1f1846c6
SH
9 *
10 * The code contained herein is licensed under the GNU General Public
11 * License. You may obtain a copy of the GNU General Public License
12 * Version 2 or later at the following locations:
13 *
14 * http://www.opensource.org/licenses/gpl-license.html
15 * http://www.gnu.org/copyleft/gpl.html
16 */
17#include <linux/init.h>
f8de8f4c 18#include <linux/module.h>
1f1846c6
SH
19#include <linux/types.h>
20#include <linux/mm.h>
21#include <linux/interrupt.h>
22#include <linux/spinlock.h>
23#include <linux/device.h>
24#include <linux/dma-mapping.h>
25#include <linux/slab.h>
26#include <linux/platform_device.h>
6bd08127 27#include <linux/clk.h>
1f1846c6 28#include <linux/dmaengine.h>
5170c051 29#include <linux/module.h>
1f1846c6
SH
30
31#include <asm/irq.h>
6bd08127 32#include <mach/dma.h>
1f1846c6
SH
33#include <mach/hardware.h>
34
d2ebfb33 35#include "dmaengine.h"
9e15db7c 36#define IMXDMA_MAX_CHAN_DESCRIPTORS 16
6bd08127
JM
37#define IMX_DMA_CHANNELS 16
38
39#define DMA_MODE_READ 0
40#define DMA_MODE_WRITE 1
41#define DMA_MODE_MASK 1
42
43#define IMX_DMA_LENGTH_LOOP ((unsigned int)-1)
44#define IMX_DMA_MEMSIZE_32 (0 << 4)
45#define IMX_DMA_MEMSIZE_8 (1 << 4)
46#define IMX_DMA_MEMSIZE_16 (2 << 4)
47#define IMX_DMA_TYPE_LINEAR (0 << 10)
48#define IMX_DMA_TYPE_2D (1 << 10)
49#define IMX_DMA_TYPE_FIFO (2 << 10)
50
51#define IMX_DMA_ERR_BURST (1 << 0)
52#define IMX_DMA_ERR_REQUEST (1 << 1)
53#define IMX_DMA_ERR_TRANSFER (1 << 2)
54#define IMX_DMA_ERR_BUFFER (1 << 3)
55#define IMX_DMA_ERR_TIMEOUT (1 << 4)
56
57#define DMA_DCR 0x00 /* Control Register */
58#define DMA_DISR 0x04 /* Interrupt status Register */
59#define DMA_DIMR 0x08 /* Interrupt mask Register */
60#define DMA_DBTOSR 0x0c /* Burst timeout status Register */
61#define DMA_DRTOSR 0x10 /* Request timeout Register */
62#define DMA_DSESR 0x14 /* Transfer Error Status Register */
63#define DMA_DBOSR 0x18 /* Buffer overflow status Register */
64#define DMA_DBTOCR 0x1c /* Burst timeout control Register */
65#define DMA_WSRA 0x40 /* W-Size Register A */
66#define DMA_XSRA 0x44 /* X-Size Register A */
67#define DMA_YSRA 0x48 /* Y-Size Register A */
68#define DMA_WSRB 0x4c /* W-Size Register B */
69#define DMA_XSRB 0x50 /* X-Size Register B */
70#define DMA_YSRB 0x54 /* Y-Size Register B */
71#define DMA_SAR(x) (0x80 + ((x) << 6)) /* Source Address Registers */
72#define DMA_DAR(x) (0x84 + ((x) << 6)) /* Destination Address Registers */
73#define DMA_CNTR(x) (0x88 + ((x) << 6)) /* Count Registers */
74#define DMA_CCR(x) (0x8c + ((x) << 6)) /* Control Registers */
75#define DMA_RSSR(x) (0x90 + ((x) << 6)) /* Request source select Registers */
76#define DMA_BLR(x) (0x94 + ((x) << 6)) /* Burst length Registers */
77#define DMA_RTOR(x) (0x98 + ((x) << 6)) /* Request timeout Registers */
78#define DMA_BUCR(x) (0x98 + ((x) << 6)) /* Bus Utilization Registers */
79#define DMA_CCNR(x) (0x9C + ((x) << 6)) /* Channel counter Registers */
80
81#define DCR_DRST (1<<1)
82#define DCR_DEN (1<<0)
83#define DBTOCR_EN (1<<15)
84#define DBTOCR_CNT(x) ((x) & 0x7fff)
85#define CNTR_CNT(x) ((x) & 0xffffff)
86#define CCR_ACRPT (1<<14)
87#define CCR_DMOD_LINEAR (0x0 << 12)
88#define CCR_DMOD_2D (0x1 << 12)
89#define CCR_DMOD_FIFO (0x2 << 12)
90#define CCR_DMOD_EOBFIFO (0x3 << 12)
91#define CCR_SMOD_LINEAR (0x0 << 10)
92#define CCR_SMOD_2D (0x1 << 10)
93#define CCR_SMOD_FIFO (0x2 << 10)
94#define CCR_SMOD_EOBFIFO (0x3 << 10)
95#define CCR_MDIR_DEC (1<<9)
96#define CCR_MSEL_B (1<<8)
97#define CCR_DSIZ_32 (0x0 << 6)
98#define CCR_DSIZ_8 (0x1 << 6)
99#define CCR_DSIZ_16 (0x2 << 6)
100#define CCR_SSIZ_32 (0x0 << 4)
101#define CCR_SSIZ_8 (0x1 << 4)
102#define CCR_SSIZ_16 (0x2 << 4)
103#define CCR_REN (1<<3)
104#define CCR_RPT (1<<2)
105#define CCR_FRC (1<<1)
106#define CCR_CEN (1<<0)
107#define RTOR_EN (1<<15)
108#define RTOR_CLK (1<<14)
109#define RTOR_PSC (1<<13)
9e15db7c
JM
110
111enum imxdma_prep_type {
112 IMXDMA_DESC_MEMCPY,
113 IMXDMA_DESC_INTERLEAVED,
114 IMXDMA_DESC_SLAVE_SG,
115 IMXDMA_DESC_CYCLIC,
116};
117
6bd08127
JM
118/*
119 * struct imxdma_channel_internal - i.MX specific DMA extension
120 * @name: name specified by DMA client
121 * @irq_handler: client callback for end of transfer
122 * @err_handler: client callback for error condition
123 * @data: clients context data for callbacks
124 * @dma_mode: direction of the transfer %DMA_MODE_READ or %DMA_MODE_WRITE
125 * @sg: pointer to the actual read/written chunk for scatter-gather emulation
126 * @resbytes: total residual number of bytes to transfer
127 * (it can be lower or same as sum of SG mapped chunk sizes)
128 * @sgcount: number of chunks to be read/written
129 *
130 * Structure is used for IMX DMA processing. It would be probably good
131 * @struct dma_struct in the future for external interfacing and use
132 * @struct imxdma_channel_internal only as extension to it.
133 */
134
135struct imxdma_channel_internal {
6bd08127
JM
136 unsigned int dma_mode;
137 struct scatterlist *sg;
138 unsigned int resbytes;
139
140 int in_use;
141
142 u32 ccr_from_device;
143 u32 ccr_to_device;
144
145 struct timer_list watchdog;
146
147 int hw_chaining;
148};
149
9e15db7c
JM
150struct imxdma_desc {
151 struct list_head node;
152 struct dma_async_tx_descriptor desc;
153 enum dma_status status;
154 dma_addr_t src;
155 dma_addr_t dest;
156 size_t len;
157 unsigned int dmamode;
158 enum imxdma_prep_type type;
159 /* For memcpy and interleaved */
160 unsigned int config_port;
161 unsigned int config_mem;
162 /* For interleaved transfers */
163 unsigned int x;
164 unsigned int y;
165 unsigned int w;
166 /* For slave sg and cyclic */
167 struct scatterlist *sg;
168 unsigned int sgcount;
169};
170
1f1846c6 171struct imxdma_channel {
6bd08127 172 struct imxdma_channel_internal internal;
1f1846c6
SH
173 struct imxdma_engine *imxdma;
174 unsigned int channel;
1f1846c6 175
9e15db7c
JM
176 struct tasklet_struct dma_tasklet;
177 struct list_head ld_free;
178 struct list_head ld_queue;
179 struct list_head ld_active;
180 int descs_allocated;
1f1846c6
SH
181 enum dma_slave_buswidth word_size;
182 dma_addr_t per_address;
183 u32 watermark_level;
184 struct dma_chan chan;
185 spinlock_t lock;
186 struct dma_async_tx_descriptor desc;
1f1846c6
SH
187 enum dma_status status;
188 int dma_request;
189 struct scatterlist *sg_list;
190};
191
1f1846c6
SH
192struct imxdma_engine {
193 struct device *dev;
1e070a60 194 struct device_dma_parameters dma_parms;
1f1846c6 195 struct dma_device dma_device;
6bd08127 196 struct imxdma_channel channel[IMX_DMA_CHANNELS];
1f1846c6
SH
197};
198
199static struct imxdma_channel *to_imxdma_chan(struct dma_chan *chan)
200{
201 return container_of(chan, struct imxdma_channel, chan);
202}
203
9e15db7c 204static inline bool imxdma_chan_is_doing_cyclic(struct imxdma_channel *imxdmac)
1f1846c6 205{
9e15db7c
JM
206 struct imxdma_desc *desc;
207
208 if (!list_empty(&imxdmac->ld_active)) {
209 desc = list_first_entry(&imxdmac->ld_active, struct imxdma_desc,
210 node);
211 if (desc->type == IMXDMA_DESC_CYCLIC)
212 return true;
213 }
214 return false;
1f1846c6
SH
215}
216
6bd08127
JM
217/* TODO: put this inside any struct */
218static void __iomem *imx_dmav1_baseaddr;
219static struct clk *dma_clk;
220
221static void imx_dmav1_writel(unsigned val, unsigned offset)
222{
223 __raw_writel(val, imx_dmav1_baseaddr + offset);
224}
225
226static unsigned imx_dmav1_readl(unsigned offset)
1f1846c6 227{
6bd08127
JM
228 return __raw_readl(imx_dmav1_baseaddr + offset);
229}
1f1846c6 230
6bd08127
JM
231static int imxdma_hw_chain(struct imxdma_channel_internal *imxdma)
232{
233 if (cpu_is_mx27())
234 return imxdma->hw_chaining;
235 else
236 return 0;
237}
238
239/*
240 * imxdma_sg_next - prepare next chunk for scatter-gather DMA emulation
241 */
242static inline int imxdma_sg_next(struct imxdma_channel *imxdmac, struct scatterlist *sg)
243{
244 struct imxdma_channel_internal *imxdma = &imxdmac->internal;
245 unsigned long now;
246
247 now = min(imxdma->resbytes, sg->length);
248 if (imxdma->resbytes != IMX_DMA_LENGTH_LOOP)
249 imxdma->resbytes -= now;
250
251 if ((imxdma->dma_mode & DMA_MODE_MASK) == DMA_MODE_READ)
252 imx_dmav1_writel(sg->dma_address, DMA_DAR(imxdmac->channel));
253 else
254 imx_dmav1_writel(sg->dma_address, DMA_SAR(imxdmac->channel));
255
256 imx_dmav1_writel(now, DMA_CNTR(imxdmac->channel));
257
258 pr_debug("imxdma%d: next sg chunk dst 0x%08x, src 0x%08x, "
259 "size 0x%08x\n", imxdmac->channel,
260 imx_dmav1_readl(DMA_DAR(imxdmac->channel)),
261 imx_dmav1_readl(DMA_SAR(imxdmac->channel)),
262 imx_dmav1_readl(DMA_CNTR(imxdmac->channel)));
263
264 return now;
265}
266
267static int
268imxdma_setup_single_hw(struct imxdma_channel *imxdmac, dma_addr_t dma_address,
269 unsigned int dma_length, unsigned int dev_addr,
270 unsigned int dmamode)
271{
272 int channel = imxdmac->channel;
273
274 imxdmac->internal.sg = NULL;
275 imxdmac->internal.dma_mode = dmamode;
276
277 if (!dma_address) {
278 printk(KERN_ERR "imxdma%d: imx_dma_setup_single null address\n",
279 channel);
280 return -EINVAL;
281 }
282
283 if (!dma_length) {
284 printk(KERN_ERR "imxdma%d: imx_dma_setup_single zero length\n",
285 channel);
286 return -EINVAL;
287 }
288
289 if ((dmamode & DMA_MODE_MASK) == DMA_MODE_READ) {
290 pr_debug("imxdma%d: %s dma_addressg=0x%08x dma_length=%d "
291 "dev_addr=0x%08x for read\n",
292 channel, __func__, (unsigned int)dma_address,
293 dma_length, dev_addr);
294
295 imx_dmav1_writel(dev_addr, DMA_SAR(channel));
296 imx_dmav1_writel(dma_address, DMA_DAR(channel));
297 imx_dmav1_writel(imxdmac->internal.ccr_from_device, DMA_CCR(channel));
298 } else if ((dmamode & DMA_MODE_MASK) == DMA_MODE_WRITE) {
299 pr_debug("imxdma%d: %s dma_addressg=0x%08x dma_length=%d "
300 "dev_addr=0x%08x for write\n",
301 channel, __func__, (unsigned int)dma_address,
302 dma_length, dev_addr);
303
304 imx_dmav1_writel(dma_address, DMA_SAR(channel));
305 imx_dmav1_writel(dev_addr, DMA_DAR(channel));
306 imx_dmav1_writel(imxdmac->internal.ccr_to_device,
307 DMA_CCR(channel));
308 } else {
309 printk(KERN_ERR "imxdma%d: imx_dma_setup_single bad dmamode\n",
310 channel);
311 return -EINVAL;
312 }
313
314 imx_dmav1_writel(dma_length, DMA_CNTR(channel));
315
316 return 0;
317}
318
319static void imxdma_enable_hw(struct imxdma_channel *imxdmac)
320{
321 int channel = imxdmac->channel;
322 unsigned long flags;
323
324 pr_debug("imxdma%d: imx_dma_enable\n", channel);
325
326 if (imxdmac->internal.in_use)
327 return;
328
329 local_irq_save(flags);
330
331 imx_dmav1_writel(1 << channel, DMA_DISR);
332 imx_dmav1_writel(imx_dmav1_readl(DMA_DIMR) & ~(1 << channel), DMA_DIMR);
333 imx_dmav1_writel(imx_dmav1_readl(DMA_CCR(channel)) | CCR_CEN |
334 CCR_ACRPT, DMA_CCR(channel));
335
336 if ((cpu_is_mx21() || cpu_is_mx27()) &&
337 imxdmac->internal.sg && imxdma_hw_chain(&imxdmac->internal)) {
338 imxdmac->internal.sg = sg_next(imxdmac->internal.sg);
339 if (imxdmac->internal.sg) {
340 u32 tmp;
341 imxdma_sg_next(imxdmac, imxdmac->internal.sg);
342 tmp = imx_dmav1_readl(DMA_CCR(channel));
343 imx_dmav1_writel(tmp | CCR_RPT | CCR_ACRPT,
344 DMA_CCR(channel));
345 }
346 }
347 imxdmac->internal.in_use = 1;
348
349 local_irq_restore(flags);
350}
351
352static void imxdma_disable_hw(struct imxdma_channel *imxdmac)
353{
354 int channel = imxdmac->channel;
355 unsigned long flags;
356
357 pr_debug("imxdma%d: imx_dma_disable\n", channel);
358
359 if (imxdma_hw_chain(&imxdmac->internal))
360 del_timer(&imxdmac->internal.watchdog);
361
362 local_irq_save(flags);
363 imx_dmav1_writel(imx_dmav1_readl(DMA_DIMR) | (1 << channel), DMA_DIMR);
364 imx_dmav1_writel(imx_dmav1_readl(DMA_CCR(channel)) & ~CCR_CEN,
365 DMA_CCR(channel));
366 imx_dmav1_writel(1 << channel, DMA_DISR);
367 imxdmac->internal.in_use = 0;
368 local_irq_restore(flags);
369}
370
371static int
372imxdma_config_channel_hw(struct imxdma_channel *imxdmac, unsigned int config_port,
373 unsigned int config_mem, unsigned int dmareq, int hw_chaining)
374{
375 int channel = imxdmac->channel;
376 u32 dreq = 0;
377
378 imxdmac->internal.hw_chaining = 0;
379
380 if (hw_chaining) {
381 imxdmac->internal.hw_chaining = 1;
382 if (!imxdma_hw_chain(&imxdmac->internal))
383 return -EINVAL;
384 }
385
386 if (dmareq)
387 dreq = CCR_REN;
388
389 imxdmac->internal.ccr_from_device = config_port | (config_mem << 2) | dreq;
390 imxdmac->internal.ccr_to_device = config_mem | (config_port << 2) | dreq;
391
392 imx_dmav1_writel(dmareq, DMA_RSSR(channel));
393
394 return 0;
395}
396
397static int
398imxdma_setup_sg_hw(struct imxdma_channel *imxdmac,
399 struct scatterlist *sg, unsigned int sgcount,
400 unsigned int dma_length, unsigned int dev_addr,
401 unsigned int dmamode)
402{
403 int channel = imxdmac->channel;
404
405 if (imxdmac->internal.in_use)
406 return -EBUSY;
407
408 imxdmac->internal.sg = sg;
409 imxdmac->internal.dma_mode = dmamode;
410 imxdmac->internal.resbytes = dma_length;
411
412 if (!sg || !sgcount) {
413 printk(KERN_ERR "imxdma%d: imx_dma_setup_sg empty sg list\n",
414 channel);
415 return -EINVAL;
416 }
417
418 if (!sg->length) {
419 printk(KERN_ERR "imxdma%d: imx_dma_setup_sg zero length\n",
420 channel);
421 return -EINVAL;
422 }
423
424 if ((dmamode & DMA_MODE_MASK) == DMA_MODE_READ) {
425 pr_debug("imxdma%d: %s sg=%p sgcount=%d total length=%d "
426 "dev_addr=0x%08x for read\n",
427 channel, __func__, sg, sgcount, dma_length, dev_addr);
428
429 imx_dmav1_writel(dev_addr, DMA_SAR(channel));
430 imx_dmav1_writel(imxdmac->internal.ccr_from_device, DMA_CCR(channel));
431 } else if ((dmamode & DMA_MODE_MASK) == DMA_MODE_WRITE) {
432 pr_debug("imxdma%d: %s sg=%p sgcount=%d total length=%d "
433 "dev_addr=0x%08x for write\n",
434 channel, __func__, sg, sgcount, dma_length, dev_addr);
435
436 imx_dmav1_writel(dev_addr, DMA_DAR(channel));
437 imx_dmav1_writel(imxdmac->internal.ccr_to_device, DMA_CCR(channel));
438 } else {
439 printk(KERN_ERR "imxdma%d: imx_dma_setup_sg bad dmamode\n",
440 channel);
441 return -EINVAL;
442 }
443
444 imxdma_sg_next(imxdmac, sg);
445
446 return 0;
1f1846c6
SH
447}
448
6bd08127 449static void imxdma_watchdog(unsigned long data)
1f1846c6 450{
6bd08127
JM
451 struct imxdma_channel *imxdmac = (struct imxdma_channel *)data;
452 int channel = imxdmac->channel;
1f1846c6 453
6bd08127
JM
454 imx_dmav1_writel(0, DMA_CCR(channel));
455 imxdmac->internal.in_use = 0;
456 imxdmac->internal.sg = NULL;
457
458 /* Tasklet watchdog error handler */
9e15db7c 459 tasklet_schedule(&imxdmac->dma_tasklet);
6bd08127
JM
460 pr_debug("imxdma%d: watchdog timeout!\n", imxdmac->channel);
461}
462
463static irqreturn_t imxdma_err_handler(int irq, void *dev_id)
464{
465 struct imxdma_engine *imxdma = dev_id;
466 struct imxdma_channel_internal *internal;
467 unsigned int err_mask;
468 int i, disr;
469 int errcode;
470
471 disr = imx_dmav1_readl(DMA_DISR);
472
473 err_mask = imx_dmav1_readl(DMA_DBTOSR) |
474 imx_dmav1_readl(DMA_DRTOSR) |
475 imx_dmav1_readl(DMA_DSESR) |
476 imx_dmav1_readl(DMA_DBOSR);
477
478 if (!err_mask)
479 return IRQ_HANDLED;
480
481 imx_dmav1_writel(disr & err_mask, DMA_DISR);
482
483 for (i = 0; i < IMX_DMA_CHANNELS; i++) {
484 if (!(err_mask & (1 << i)))
485 continue;
486 internal = &imxdma->channel[i].internal;
487 errcode = 0;
488
489 if (imx_dmav1_readl(DMA_DBTOSR) & (1 << i)) {
490 imx_dmav1_writel(1 << i, DMA_DBTOSR);
491 errcode |= IMX_DMA_ERR_BURST;
492 }
493 if (imx_dmav1_readl(DMA_DRTOSR) & (1 << i)) {
494 imx_dmav1_writel(1 << i, DMA_DRTOSR);
495 errcode |= IMX_DMA_ERR_REQUEST;
496 }
497 if (imx_dmav1_readl(DMA_DSESR) & (1 << i)) {
498 imx_dmav1_writel(1 << i, DMA_DSESR);
499 errcode |= IMX_DMA_ERR_TRANSFER;
500 }
501 if (imx_dmav1_readl(DMA_DBOSR) & (1 << i)) {
502 imx_dmav1_writel(1 << i, DMA_DBOSR);
503 errcode |= IMX_DMA_ERR_BUFFER;
504 }
505 /* Tasklet error handler */
506 tasklet_schedule(&imxdma->channel[i].dma_tasklet);
507
508 printk(KERN_WARNING
509 "DMA timeout on channel %d -%s%s%s%s\n", i,
510 errcode & IMX_DMA_ERR_BURST ? " burst" : "",
511 errcode & IMX_DMA_ERR_REQUEST ? " request" : "",
512 errcode & IMX_DMA_ERR_TRANSFER ? " transfer" : "",
513 errcode & IMX_DMA_ERR_BUFFER ? " buffer" : "");
514 }
515 return IRQ_HANDLED;
1f1846c6
SH
516}
517
6bd08127 518static void dma_irq_handle_channel(struct imxdma_channel *imxdmac)
1f1846c6 519{
6bd08127
JM
520 struct imxdma_channel_internal *imxdma = &imxdmac->internal;
521 int chno = imxdmac->channel;
522
523 if (imxdma->sg) {
524 u32 tmp;
525 imxdma->sg = sg_next(imxdma->sg);
526
527 if (imxdma->sg) {
528 imxdma_sg_next(imxdmac, imxdma->sg);
529
530 tmp = imx_dmav1_readl(DMA_CCR(chno));
531
532 if (imxdma_hw_chain(imxdma)) {
533 /* FIXME: The timeout should probably be
534 * configurable
535 */
536 mod_timer(&imxdma->watchdog,
537 jiffies + msecs_to_jiffies(500));
538
539 tmp |= CCR_CEN | CCR_RPT | CCR_ACRPT;
540 imx_dmav1_writel(tmp, DMA_CCR(chno));
541 } else {
542 imx_dmav1_writel(tmp & ~CCR_CEN, DMA_CCR(chno));
543 tmp |= CCR_CEN;
544 }
545
546 imx_dmav1_writel(tmp, DMA_CCR(chno));
547
548 if (imxdma_chan_is_doing_cyclic(imxdmac))
549 /* Tasklet progression */
550 tasklet_schedule(&imxdmac->dma_tasklet);
1f1846c6 551
6bd08127
JM
552 return;
553 }
554
555 if (imxdma_hw_chain(imxdma)) {
556 del_timer(&imxdma->watchdog);
557 return;
558 }
559 }
560
561 imx_dmav1_writel(0, DMA_CCR(chno));
562 imxdma->in_use = 0;
563 /* Tasklet irq */
9e15db7c
JM
564 tasklet_schedule(&imxdmac->dma_tasklet);
565}
566
6bd08127
JM
567static irqreturn_t dma_irq_handler(int irq, void *dev_id)
568{
569 struct imxdma_engine *imxdma = dev_id;
570 struct imxdma_channel_internal *internal;
571 int i, disr;
572
573 if (cpu_is_mx21() || cpu_is_mx27())
574 imxdma_err_handler(irq, dev_id);
575
576 disr = imx_dmav1_readl(DMA_DISR);
577
578 pr_debug("imxdma: dma_irq_handler called, disr=0x%08x\n",
579 disr);
580
581 imx_dmav1_writel(disr, DMA_DISR);
582 for (i = 0; i < IMX_DMA_CHANNELS; i++) {
583 if (disr & (1 << i)) {
584 internal = &imxdma->channel[i].internal;
585 dma_irq_handle_channel(&imxdma->channel[i]);
586 }
587 }
588
589 return IRQ_HANDLED;
590}
591
9e15db7c
JM
592static int imxdma_xfer_desc(struct imxdma_desc *d)
593{
594 struct imxdma_channel *imxdmac = to_imxdma_chan(d->desc.chan);
595 int ret;
596
597 /* Configure and enable */
598 switch (d->type) {
599 case IMXDMA_DESC_MEMCPY:
6bd08127 600 ret = imxdma_config_channel_hw(imxdmac,
9e15db7c
JM
601 d->config_port, d->config_mem, 0, 0);
602 if (ret < 0)
603 return ret;
6bd08127 604 ret = imxdma_setup_single_hw(imxdmac, d->src,
9e15db7c
JM
605 d->len, d->dest, d->dmamode);
606 if (ret < 0)
607 return ret;
608 break;
6bd08127
JM
609
610 /* Cyclic transfer is the same as slave_sg with special sg configuration. */
9e15db7c 611 case IMXDMA_DESC_CYCLIC:
9e15db7c
JM
612 case IMXDMA_DESC_SLAVE_SG:
613 if (d->dmamode == DMA_MODE_READ)
6bd08127 614 ret = imxdma_setup_sg_hw(imxdmac, d->sg,
9e15db7c
JM
615 d->sgcount, d->len, d->src, d->dmamode);
616 else
6bd08127 617 ret = imxdma_setup_sg_hw(imxdmac, d->sg,
9e15db7c
JM
618 d->sgcount, d->len, d->dest, d->dmamode);
619 if (ret < 0)
620 return ret;
621 break;
622 default:
623 return -EINVAL;
624 }
6bd08127 625 imxdma_enable_hw(imxdmac);
9e15db7c
JM
626 return 0;
627}
628
629static void imxdma_tasklet(unsigned long data)
630{
631 struct imxdma_channel *imxdmac = (void *)data;
632 struct imxdma_engine *imxdma = imxdmac->imxdma;
633 struct imxdma_desc *desc;
634
635 spin_lock(&imxdmac->lock);
636
637 if (list_empty(&imxdmac->ld_active)) {
638 /* Someone might have called terminate all */
639 goto out;
640 }
641 desc = list_first_entry(&imxdmac->ld_active, struct imxdma_desc, node);
642
643 if (desc->desc.callback)
644 desc->desc.callback(desc->desc.callback_param);
645
1f3d6dc0 646 dma_cookie_complete(&desc->desc);
9e15db7c
JM
647
648 /* If we are dealing with a cyclic descriptor keep it on ld_active */
649 if (imxdma_chan_is_doing_cyclic(imxdmac))
650 goto out;
651
652 list_move_tail(imxdmac->ld_active.next, &imxdmac->ld_free);
653
654 if (!list_empty(&imxdmac->ld_queue)) {
655 desc = list_first_entry(&imxdmac->ld_queue, struct imxdma_desc,
656 node);
657 list_move_tail(imxdmac->ld_queue.next, &imxdmac->ld_active);
658 if (imxdma_xfer_desc(desc) < 0)
659 dev_warn(imxdma->dev, "%s: channel: %d couldn't xfer desc\n",
660 __func__, imxdmac->channel);
661 }
662out:
663 spin_unlock(&imxdmac->lock);
1f1846c6
SH
664}
665
666static int imxdma_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
667 unsigned long arg)
668{
669 struct imxdma_channel *imxdmac = to_imxdma_chan(chan);
670 struct dma_slave_config *dmaengine_cfg = (void *)arg;
671 int ret;
9e15db7c 672 unsigned long flags;
1f1846c6
SH
673 unsigned int mode = 0;
674
675 switch (cmd) {
676 case DMA_TERMINATE_ALL:
6bd08127 677 imxdma_disable_hw(imxdmac);
9e15db7c
JM
678
679 spin_lock_irqsave(&imxdmac->lock, flags);
680 list_splice_tail_init(&imxdmac->ld_active, &imxdmac->ld_free);
681 list_splice_tail_init(&imxdmac->ld_queue, &imxdmac->ld_free);
682 spin_unlock_irqrestore(&imxdmac->lock, flags);
1f1846c6
SH
683 return 0;
684 case DMA_SLAVE_CONFIG:
db8196df 685 if (dmaengine_cfg->direction == DMA_DEV_TO_MEM) {
1f1846c6
SH
686 imxdmac->per_address = dmaengine_cfg->src_addr;
687 imxdmac->watermark_level = dmaengine_cfg->src_maxburst;
688 imxdmac->word_size = dmaengine_cfg->src_addr_width;
689 } else {
690 imxdmac->per_address = dmaengine_cfg->dst_addr;
691 imxdmac->watermark_level = dmaengine_cfg->dst_maxburst;
692 imxdmac->word_size = dmaengine_cfg->dst_addr_width;
693 }
694
695 switch (imxdmac->word_size) {
696 case DMA_SLAVE_BUSWIDTH_1_BYTE:
697 mode = IMX_DMA_MEMSIZE_8;
698 break;
699 case DMA_SLAVE_BUSWIDTH_2_BYTES:
700 mode = IMX_DMA_MEMSIZE_16;
701 break;
702 default:
703 case DMA_SLAVE_BUSWIDTH_4_BYTES:
704 mode = IMX_DMA_MEMSIZE_32;
705 break;
706 }
6bd08127 707 ret = imxdma_config_channel_hw(imxdmac,
1f1846c6
SH
708 mode | IMX_DMA_TYPE_FIFO,
709 IMX_DMA_MEMSIZE_32 | IMX_DMA_TYPE_LINEAR,
710 imxdmac->dma_request, 1);
711
712 if (ret)
713 return ret;
6bd08127
JM
714 /* Set burst length */
715 imx_dmav1_writel(imxdmac->watermark_level * imxdmac->word_size,
716 DMA_BLR(imxdmac->channel));
1f1846c6
SH
717
718 return 0;
719 default:
720 return -ENOSYS;
721 }
722
723 return -EINVAL;
724}
725
726static enum dma_status imxdma_tx_status(struct dma_chan *chan,
727 dma_cookie_t cookie,
728 struct dma_tx_state *txstate)
729{
96a2af41 730 return dma_cookie_status(chan, cookie, txstate);
1f1846c6
SH
731}
732
733static dma_cookie_t imxdma_tx_submit(struct dma_async_tx_descriptor *tx)
734{
735 struct imxdma_channel *imxdmac = to_imxdma_chan(tx->chan);
736 dma_cookie_t cookie;
9e15db7c 737 unsigned long flags;
1f1846c6 738
9e15db7c 739 spin_lock_irqsave(&imxdmac->lock, flags);
884485e1 740 cookie = dma_cookie_assign(tx);
9e15db7c 741 spin_unlock_irqrestore(&imxdmac->lock, flags);
1f1846c6
SH
742
743 return cookie;
744}
745
746static int imxdma_alloc_chan_resources(struct dma_chan *chan)
747{
748 struct imxdma_channel *imxdmac = to_imxdma_chan(chan);
749 struct imx_dma_data *data = chan->private;
750
6c05f091
JM
751 if (data != NULL)
752 imxdmac->dma_request = data->dma_request;
1f1846c6 753
9e15db7c
JM
754 while (imxdmac->descs_allocated < IMXDMA_MAX_CHAN_DESCRIPTORS) {
755 struct imxdma_desc *desc;
1f1846c6 756
9e15db7c
JM
757 desc = kzalloc(sizeof(*desc), GFP_KERNEL);
758 if (!desc)
759 break;
760 __memzero(&desc->desc, sizeof(struct dma_async_tx_descriptor));
761 dma_async_tx_descriptor_init(&desc->desc, chan);
762 desc->desc.tx_submit = imxdma_tx_submit;
763 /* txd.flags will be overwritten in prep funcs */
764 desc->desc.flags = DMA_CTRL_ACK;
765 desc->status = DMA_SUCCESS;
766
767 list_add_tail(&desc->node, &imxdmac->ld_free);
768 imxdmac->descs_allocated++;
769 }
1f1846c6 770
9e15db7c
JM
771 if (!imxdmac->descs_allocated)
772 return -ENOMEM;
773
774 return imxdmac->descs_allocated;
1f1846c6
SH
775}
776
777static void imxdma_free_chan_resources(struct dma_chan *chan)
778{
779 struct imxdma_channel *imxdmac = to_imxdma_chan(chan);
9e15db7c
JM
780 struct imxdma_desc *desc, *_desc;
781 unsigned long flags;
782
783 spin_lock_irqsave(&imxdmac->lock, flags);
1f1846c6 784
6bd08127 785 imxdma_disable_hw(imxdmac);
9e15db7c
JM
786 list_splice_tail_init(&imxdmac->ld_active, &imxdmac->ld_free);
787 list_splice_tail_init(&imxdmac->ld_queue, &imxdmac->ld_free);
788
789 spin_unlock_irqrestore(&imxdmac->lock, flags);
790
791 list_for_each_entry_safe(desc, _desc, &imxdmac->ld_free, node) {
792 kfree(desc);
793 imxdmac->descs_allocated--;
794 }
795 INIT_LIST_HEAD(&imxdmac->ld_free);
1f1846c6
SH
796
797 if (imxdmac->sg_list) {
798 kfree(imxdmac->sg_list);
799 imxdmac->sg_list = NULL;
800 }
801}
802
803static struct dma_async_tx_descriptor *imxdma_prep_slave_sg(
804 struct dma_chan *chan, struct scatterlist *sgl,
db8196df 805 unsigned int sg_len, enum dma_transfer_direction direction,
185ecb5f 806 unsigned long flags, void *context)
1f1846c6
SH
807{
808 struct imxdma_channel *imxdmac = to_imxdma_chan(chan);
809 struct scatterlist *sg;
9e15db7c
JM
810 int i, dma_length = 0;
811 struct imxdma_desc *desc;
1f1846c6 812
9e15db7c
JM
813 if (list_empty(&imxdmac->ld_free) ||
814 imxdma_chan_is_doing_cyclic(imxdmac))
1f1846c6
SH
815 return NULL;
816
9e15db7c 817 desc = list_first_entry(&imxdmac->ld_free, struct imxdma_desc, node);
1f1846c6
SH
818
819 for_each_sg(sgl, sg, sg_len, i) {
820 dma_length += sg->length;
821 }
822
d07102a1
SH
823 switch (imxdmac->word_size) {
824 case DMA_SLAVE_BUSWIDTH_4_BYTES:
825 if (sgl->length & 3 || sgl->dma_address & 3)
826 return NULL;
827 break;
828 case DMA_SLAVE_BUSWIDTH_2_BYTES:
829 if (sgl->length & 1 || sgl->dma_address & 1)
830 return NULL;
831 break;
832 case DMA_SLAVE_BUSWIDTH_1_BYTE:
833 break;
834 default:
835 return NULL;
836 }
837
9e15db7c
JM
838 desc->type = IMXDMA_DESC_SLAVE_SG;
839 desc->sg = sgl;
840 desc->sgcount = sg_len;
841 desc->len = dma_length;
842 if (direction == DMA_DEV_TO_MEM) {
843 desc->dmamode = DMA_MODE_READ;
844 desc->src = imxdmac->per_address;
845 } else {
846 desc->dmamode = DMA_MODE_WRITE;
847 desc->dest = imxdmac->per_address;
848 }
849 desc->desc.callback = NULL;
850 desc->desc.callback_param = NULL;
1f1846c6 851
9e15db7c 852 return &desc->desc;
1f1846c6
SH
853}
854
855static struct dma_async_tx_descriptor *imxdma_prep_dma_cyclic(
856 struct dma_chan *chan, dma_addr_t dma_addr, size_t buf_len,
185ecb5f
AB
857 size_t period_len, enum dma_transfer_direction direction,
858 void *context)
1f1846c6
SH
859{
860 struct imxdma_channel *imxdmac = to_imxdma_chan(chan);
861 struct imxdma_engine *imxdma = imxdmac->imxdma;
9e15db7c
JM
862 struct imxdma_desc *desc;
863 int i;
1f1846c6 864 unsigned int periods = buf_len / period_len;
1f1846c6
SH
865
866 dev_dbg(imxdma->dev, "%s channel: %d buf_len=%d period_len=%d\n",
867 __func__, imxdmac->channel, buf_len, period_len);
868
9e15db7c
JM
869 if (list_empty(&imxdmac->ld_free) ||
870 imxdma_chan_is_doing_cyclic(imxdmac))
1f1846c6 871 return NULL;
1f1846c6 872
9e15db7c 873 desc = list_first_entry(&imxdmac->ld_free, struct imxdma_desc, node);
1f1846c6
SH
874
875 if (imxdmac->sg_list)
876 kfree(imxdmac->sg_list);
877
878 imxdmac->sg_list = kcalloc(periods + 1,
879 sizeof(struct scatterlist), GFP_KERNEL);
880 if (!imxdmac->sg_list)
881 return NULL;
882
883 sg_init_table(imxdmac->sg_list, periods);
884
885 for (i = 0; i < periods; i++) {
886 imxdmac->sg_list[i].page_link = 0;
887 imxdmac->sg_list[i].offset = 0;
888 imxdmac->sg_list[i].dma_address = dma_addr;
889 imxdmac->sg_list[i].length = period_len;
890 dma_addr += period_len;
891 }
892
893 /* close the loop */
894 imxdmac->sg_list[periods].offset = 0;
895 imxdmac->sg_list[periods].length = 0;
896 imxdmac->sg_list[periods].page_link =
897 ((unsigned long)imxdmac->sg_list | 0x01) & ~0x02;
898
9e15db7c
JM
899 desc->type = IMXDMA_DESC_CYCLIC;
900 desc->sg = imxdmac->sg_list;
901 desc->sgcount = periods;
902 desc->len = IMX_DMA_LENGTH_LOOP;
903 if (direction == DMA_DEV_TO_MEM) {
904 desc->dmamode = DMA_MODE_READ;
905 desc->src = imxdmac->per_address;
906 } else {
907 desc->dmamode = DMA_MODE_WRITE;
908 desc->dest = imxdmac->per_address;
909 }
910 desc->desc.callback = NULL;
911 desc->desc.callback_param = NULL;
1f1846c6 912
9e15db7c 913 return &desc->desc;
1f1846c6
SH
914}
915
6c05f091
JM
916static struct dma_async_tx_descriptor *imxdma_prep_dma_memcpy(
917 struct dma_chan *chan, dma_addr_t dest,
918 dma_addr_t src, size_t len, unsigned long flags)
919{
920 struct imxdma_channel *imxdmac = to_imxdma_chan(chan);
921 struct imxdma_engine *imxdma = imxdmac->imxdma;
9e15db7c 922 struct imxdma_desc *desc;
6c05f091
JM
923
924 dev_dbg(imxdma->dev, "%s channel: %d src=0x%x dst=0x%x len=%d\n",
925 __func__, imxdmac->channel, src, dest, len);
926
9e15db7c
JM
927 if (list_empty(&imxdmac->ld_free) ||
928 imxdma_chan_is_doing_cyclic(imxdmac))
6c05f091 929 return NULL;
6c05f091 930
9e15db7c 931 desc = list_first_entry(&imxdmac->ld_free, struct imxdma_desc, node);
6c05f091 932
9e15db7c
JM
933 desc->type = IMXDMA_DESC_MEMCPY;
934 desc->src = src;
935 desc->dest = dest;
936 desc->len = len;
937 desc->dmamode = DMA_MODE_WRITE;
938 desc->config_port = IMX_DMA_MEMSIZE_32 | IMX_DMA_TYPE_LINEAR;
939 desc->config_mem = IMX_DMA_MEMSIZE_32 | IMX_DMA_TYPE_LINEAR;
940 desc->desc.callback = NULL;
941 desc->desc.callback_param = NULL;
6c05f091 942
9e15db7c 943 return &desc->desc;
6c05f091
JM
944}
945
1f1846c6
SH
946static void imxdma_issue_pending(struct dma_chan *chan)
947{
5b316876 948 struct imxdma_channel *imxdmac = to_imxdma_chan(chan);
9e15db7c
JM
949 struct imxdma_engine *imxdma = imxdmac->imxdma;
950 struct imxdma_desc *desc;
951 unsigned long flags;
952
953 spin_lock_irqsave(&imxdmac->lock, flags);
954 if (list_empty(&imxdmac->ld_active) &&
955 !list_empty(&imxdmac->ld_queue)) {
956 desc = list_first_entry(&imxdmac->ld_queue,
957 struct imxdma_desc, node);
958
959 if (imxdma_xfer_desc(desc) < 0) {
960 dev_warn(imxdma->dev,
961 "%s: channel: %d couldn't issue DMA xfer\n",
962 __func__, imxdmac->channel);
963 } else {
964 list_move_tail(imxdmac->ld_queue.next,
965 &imxdmac->ld_active);
966 }
967 }
968 spin_unlock_irqrestore(&imxdmac->lock, flags);
1f1846c6
SH
969}
970
971static int __init imxdma_probe(struct platform_device *pdev)
6bd08127 972 {
1f1846c6
SH
973 struct imxdma_engine *imxdma;
974 int ret, i;
975
6bd08127
JM
976 if (cpu_is_mx1())
977 imx_dmav1_baseaddr = MX1_IO_ADDRESS(MX1_DMA_BASE_ADDR);
978 else if (cpu_is_mx21())
979 imx_dmav1_baseaddr = MX21_IO_ADDRESS(MX21_DMA_BASE_ADDR);
980 else if (cpu_is_mx27())
981 imx_dmav1_baseaddr = MX27_IO_ADDRESS(MX27_DMA_BASE_ADDR);
982 else
983 return 0;
984
985 dma_clk = clk_get(NULL, "dma");
986 if (IS_ERR(dma_clk))
987 return PTR_ERR(dma_clk);
988 clk_enable(dma_clk);
989
990 /* reset DMA module */
991 imx_dmav1_writel(DCR_DRST, DMA_DCR);
992
993 if (cpu_is_mx1()) {
994 ret = request_irq(MX1_DMA_INT, dma_irq_handler, 0, "DMA", imxdma);
995 if (ret) {
996 pr_crit("Can't register IRQ for DMA\n");
997 return ret;
998 }
999
1000 ret = request_irq(MX1_DMA_ERR, imxdma_err_handler, 0, "DMA", imxdma);
1001 if (ret) {
1002 pr_crit("Can't register ERRIRQ for DMA\n");
1003 free_irq(MX1_DMA_INT, NULL);
1004 return ret;
1005 }
1006 }
1007
1008 /* enable DMA module */
1009 imx_dmav1_writel(DCR_DEN, DMA_DCR);
1010
1011 /* clear all interrupts */
1012 imx_dmav1_writel((1 << IMX_DMA_CHANNELS) - 1, DMA_DISR);
1013
1014 /* disable interrupts */
1015 imx_dmav1_writel((1 << IMX_DMA_CHANNELS) - 1, DMA_DIMR);
1016
1f1846c6
SH
1017 imxdma = kzalloc(sizeof(*imxdma), GFP_KERNEL);
1018 if (!imxdma)
1019 return -ENOMEM;
1020
1021 INIT_LIST_HEAD(&imxdma->dma_device.channels);
1022
f8a356ff
SH
1023 dma_cap_set(DMA_SLAVE, imxdma->dma_device.cap_mask);
1024 dma_cap_set(DMA_CYCLIC, imxdma->dma_device.cap_mask);
6c05f091 1025 dma_cap_set(DMA_MEMCPY, imxdma->dma_device.cap_mask);
f8a356ff 1026
1f1846c6 1027 /* Initialize channel parameters */
6bd08127 1028 for (i = 0; i < IMX_DMA_CHANNELS; i++) {
1f1846c6 1029 struct imxdma_channel *imxdmac = &imxdma->channel[i];
6bd08127
JM
1030 memset(&imxdmac->internal, 0, sizeof(imxdmac->internal));
1031 if (cpu_is_mx21() || cpu_is_mx27()) {
1032 ret = request_irq(MX2x_INT_DMACH0 + i,
1033 dma_irq_handler, 0, "DMA", imxdma);
1034 if (ret) {
1035 pr_crit("Can't register IRQ %d for DMA channel %d\n",
1036 MX2x_INT_DMACH0 + i, i);
1037 goto err_init;
1038 }
1039 init_timer(&imxdmac->internal.watchdog);
1040 imxdmac->internal.watchdog.function = &imxdma_watchdog;
1041 imxdmac->internal.watchdog.data = (unsigned long)imxdmac;
8267f16e 1042 }
1f1846c6 1043
1f1846c6
SH
1044 imxdmac->imxdma = imxdma;
1045 spin_lock_init(&imxdmac->lock);
1046
9e15db7c
JM
1047 INIT_LIST_HEAD(&imxdmac->ld_queue);
1048 INIT_LIST_HEAD(&imxdmac->ld_free);
1049 INIT_LIST_HEAD(&imxdmac->ld_active);
1050
1051 tasklet_init(&imxdmac->dma_tasklet, imxdma_tasklet,
1052 (unsigned long)imxdmac);
1f1846c6 1053 imxdmac->chan.device = &imxdma->dma_device;
8ac69546 1054 dma_cookie_init(&imxdmac->chan);
1f1846c6
SH
1055 imxdmac->channel = i;
1056
1057 /* Add the channel to the DMAC list */
9e15db7c
JM
1058 list_add_tail(&imxdmac->chan.device_node,
1059 &imxdma->dma_device.channels);
1f1846c6
SH
1060 }
1061
1062 imxdma->dev = &pdev->dev;
1063 imxdma->dma_device.dev = &pdev->dev;
1064
1065 imxdma->dma_device.device_alloc_chan_resources = imxdma_alloc_chan_resources;
1066 imxdma->dma_device.device_free_chan_resources = imxdma_free_chan_resources;
1067 imxdma->dma_device.device_tx_status = imxdma_tx_status;
1068 imxdma->dma_device.device_prep_slave_sg = imxdma_prep_slave_sg;
1069 imxdma->dma_device.device_prep_dma_cyclic = imxdma_prep_dma_cyclic;
6c05f091 1070 imxdma->dma_device.device_prep_dma_memcpy = imxdma_prep_dma_memcpy;
1f1846c6
SH
1071 imxdma->dma_device.device_control = imxdma_control;
1072 imxdma->dma_device.device_issue_pending = imxdma_issue_pending;
1073
1074 platform_set_drvdata(pdev, imxdma);
1075
6c05f091 1076 imxdma->dma_device.copy_align = 2; /* 2^2 = 4 bytes alignment */
1e070a60
SH
1077 imxdma->dma_device.dev->dma_parms = &imxdma->dma_parms;
1078 dma_set_max_seg_size(imxdma->dma_device.dev, 0xffffff);
1079
1f1846c6
SH
1080 ret = dma_async_device_register(&imxdma->dma_device);
1081 if (ret) {
1082 dev_err(&pdev->dev, "unable to register\n");
1083 goto err_init;
1084 }
1085
1086 return 0;
1087
1088err_init:
6bd08127
JM
1089
1090 if (cpu_is_mx21() || cpu_is_mx27()) {
1091 while (--i >= 0)
1092 free_irq(MX2x_INT_DMACH0 + i, NULL);
1093 } else if cpu_is_mx1() {
1094 free_irq(MX1_DMA_INT, NULL);
1095 free_irq(MX1_DMA_ERR, NULL);
1f1846c6
SH
1096 }
1097
1098 kfree(imxdma);
1099 return ret;
1100}
1101
1102static int __exit imxdma_remove(struct platform_device *pdev)
1103{
1104 struct imxdma_engine *imxdma = platform_get_drvdata(pdev);
1105 int i;
1106
1107 dma_async_device_unregister(&imxdma->dma_device);
1108
6bd08127
JM
1109 if (cpu_is_mx21() || cpu_is_mx27()) {
1110 for (i = 0; i < IMX_DMA_CHANNELS; i++)
1111 free_irq(MX2x_INT_DMACH0 + i, NULL);
1112 } else if cpu_is_mx1() {
1113 free_irq(MX1_DMA_INT, NULL);
1114 free_irq(MX1_DMA_ERR, NULL);
1f1846c6
SH
1115 }
1116
1117 kfree(imxdma);
1118
1119 return 0;
1120}
1121
1122static struct platform_driver imxdma_driver = {
1123 .driver = {
1124 .name = "imx-dma",
1125 },
1126 .remove = __exit_p(imxdma_remove),
1127};
1128
1129static int __init imxdma_module_init(void)
1130{
1131 return platform_driver_probe(&imxdma_driver, imxdma_probe);
1132}
1133subsys_initcall(imxdma_module_init);
1134
1135MODULE_AUTHOR("Sascha Hauer, Pengutronix <s.hauer@pengutronix.de>");
1136MODULE_DESCRIPTION("i.MX dma driver");
1137MODULE_LICENSE("GPL");
This page took 0.129672 seconds and 5 git commands to generate.