sh: merge sh7722 and sh7724 DMA register definitions
[deliverable/linux.git] / drivers / dma / shdma.c
CommitLineData
d8902adc
NI
1/*
2 * Renesas SuperH DMA Engine support
3 *
4 * base is drivers/dma/flsdma.c
5 *
6 * Copyright (C) 2009 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
7 * Copyright (C) 2009 Renesas Solutions, Inc. All rights reserved.
8 * Copyright (C) 2007 Freescale Semiconductor, Inc. All rights reserved.
9 *
10 * This is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * - DMA of SuperH does not have Hardware DMA chain mode.
16 * - MAX DMA size is 16MB.
17 *
18 */
19
20#include <linux/init.h>
21#include <linux/module.h>
22#include <linux/interrupt.h>
23#include <linux/dmaengine.h>
24#include <linux/delay.h>
25#include <linux/dma-mapping.h>
d8902adc 26#include <linux/platform_device.h>
20f2a3b5
GL
27#include <linux/pm_runtime.h>
28
8b1935e6 29#include <asm/dmaengine.h>
20f2a3b5 30
d8902adc
NI
31#include "shdma.h"
32
33/* DMA descriptor control */
3542a113
GL
34enum sh_dmae_desc_status {
35 DESC_IDLE,
36 DESC_PREPARED,
37 DESC_SUBMITTED,
38 DESC_COMPLETED, /* completed, have to call callback */
39 DESC_WAITING, /* callback called, waiting for ack / re-submit */
40};
d8902adc
NI
41
42#define NR_DESCS_PER_CHANNEL 32
8b1935e6
GL
43/* Default MEMCPY transfer size = 2^2 = 4 bytes */
44#define LOG2_DEFAULT_XFER_SIZE 2
d8902adc 45
cfefe997
GL
46/* A bitmask with bits enough for enum sh_dmae_slave_chan_id */
47static unsigned long sh_dmae_slave_used[BITS_TO_LONGS(SHDMA_SLAVE_NUMBER)];
48
3542a113
GL
49static void sh_dmae_chan_ld_cleanup(struct sh_dmae_chan *sh_chan, bool all);
50
d8902adc
NI
51static void sh_dmae_writel(struct sh_dmae_chan *sh_dc, u32 data, u32 reg)
52{
027811b9 53 __raw_writel(data, sh_dc->base + reg / sizeof(u32));
d8902adc
NI
54}
55
56static u32 sh_dmae_readl(struct sh_dmae_chan *sh_dc, u32 reg)
57{
027811b9
GL
58 return __raw_readl(sh_dc->base + reg / sizeof(u32));
59}
60
61static u16 dmaor_read(struct sh_dmae_device *shdev)
62{
63 return __raw_readw(shdev->chan_reg + DMAOR / sizeof(u32));
64}
65
66static void dmaor_write(struct sh_dmae_device *shdev, u16 data)
67{
68 __raw_writew(data, shdev->chan_reg + DMAOR / sizeof(u32));
d8902adc
NI
69}
70
d8902adc
NI
71/*
72 * Reset DMA controller
73 *
74 * SH7780 has two DMAOR register
75 */
027811b9 76static void sh_dmae_ctl_stop(struct sh_dmae_device *shdev)
d8902adc 77{
027811b9 78 unsigned short dmaor = dmaor_read(shdev);
d8902adc 79
027811b9 80 dmaor_write(shdev, dmaor & ~(DMAOR_NMIF | DMAOR_AE | DMAOR_DME));
d8902adc
NI
81}
82
027811b9 83static int sh_dmae_rst(struct sh_dmae_device *shdev)
d8902adc
NI
84{
85 unsigned short dmaor;
86
027811b9 87 sh_dmae_ctl_stop(shdev);
8b1935e6 88 dmaor = dmaor_read(shdev) | shdev->pdata->dmaor_init;
d8902adc 89
027811b9
GL
90 dmaor_write(shdev, dmaor);
91 if (dmaor_read(shdev) & (DMAOR_AE | DMAOR_NMIF)) {
47a4dc26 92 pr_warning("dma-sh: Can't initialize DMAOR.\n");
d8902adc
NI
93 return -EINVAL;
94 }
95 return 0;
96}
97
fc461857 98static bool dmae_is_busy(struct sh_dmae_chan *sh_chan)
d8902adc
NI
99{
100 u32 chcr = sh_dmae_readl(sh_chan, CHCR);
fc461857
GL
101
102 if ((chcr & (CHCR_DE | CHCR_TE)) == CHCR_DE)
103 return true; /* working */
104
105 return false; /* waiting */
d8902adc
NI
106}
107
8b1935e6 108static unsigned int calc_xmit_shift(struct sh_dmae_chan *sh_chan, u32 chcr)
d8902adc 109{
8b1935e6
GL
110 struct sh_dmae_device *shdev = container_of(sh_chan->common.device,
111 struct sh_dmae_device, common);
112 struct sh_dmae_pdata *pdata = shdev->pdata;
113 int cnt = ((chcr & pdata->ts_low_mask) >> pdata->ts_low_shift) |
114 ((chcr & pdata->ts_high_mask) >> pdata->ts_high_shift);
115
116 if (cnt >= pdata->ts_shift_num)
117 cnt = 0;
623b4ac4 118
8b1935e6
GL
119 return pdata->ts_shift[cnt];
120}
121
122static u32 log2size_to_chcr(struct sh_dmae_chan *sh_chan, int l2size)
123{
124 struct sh_dmae_device *shdev = container_of(sh_chan->common.device,
125 struct sh_dmae_device, common);
126 struct sh_dmae_pdata *pdata = shdev->pdata;
127 int i;
128
129 for (i = 0; i < pdata->ts_shift_num; i++)
130 if (pdata->ts_shift[i] == l2size)
131 break;
132
133 if (i == pdata->ts_shift_num)
134 i = 0;
135
136 return ((i << pdata->ts_low_shift) & pdata->ts_low_mask) |
137 ((i << pdata->ts_high_shift) & pdata->ts_high_mask);
d8902adc
NI
138}
139
3542a113 140static void dmae_set_reg(struct sh_dmae_chan *sh_chan, struct sh_dmae_regs *hw)
d8902adc 141{
3542a113
GL
142 sh_dmae_writel(sh_chan, hw->sar, SAR);
143 sh_dmae_writel(sh_chan, hw->dar, DAR);
cfefe997 144 sh_dmae_writel(sh_chan, hw->tcr >> sh_chan->xmit_shift, TCR);
d8902adc
NI
145}
146
147static void dmae_start(struct sh_dmae_chan *sh_chan)
148{
149 u32 chcr = sh_dmae_readl(sh_chan, CHCR);
150
86d61b33 151 chcr |= CHCR_DE | CHCR_IE;
cfefe997 152 sh_dmae_writel(sh_chan, chcr & ~CHCR_TE, CHCR);
d8902adc
NI
153}
154
155static void dmae_halt(struct sh_dmae_chan *sh_chan)
156{
157 u32 chcr = sh_dmae_readl(sh_chan, CHCR);
158
159 chcr &= ~(CHCR_DE | CHCR_TE | CHCR_IE);
160 sh_dmae_writel(sh_chan, chcr, CHCR);
161}
162
cfefe997
GL
163static void dmae_init(struct sh_dmae_chan *sh_chan)
164{
8b1935e6
GL
165 /*
166 * Default configuration for dual address memory-memory transfer.
167 * 0x400 represents auto-request.
168 */
169 u32 chcr = DM_INC | SM_INC | 0x400 | log2size_to_chcr(sh_chan,
170 LOG2_DEFAULT_XFER_SIZE);
171 sh_chan->xmit_shift = calc_xmit_shift(sh_chan, chcr);
cfefe997
GL
172 sh_dmae_writel(sh_chan, chcr, CHCR);
173}
174
d8902adc
NI
175static int dmae_set_chcr(struct sh_dmae_chan *sh_chan, u32 val)
176{
d8902adc 177 /* When DMA was working, can not set data to CHCR */
fc461857
GL
178 if (dmae_is_busy(sh_chan))
179 return -EBUSY;
d8902adc 180
8b1935e6 181 sh_chan->xmit_shift = calc_xmit_shift(sh_chan, val);
d8902adc 182 sh_dmae_writel(sh_chan, val, CHCR);
cfefe997 183
d8902adc
NI
184 return 0;
185}
186
d8902adc
NI
187static int dmae_set_dmars(struct sh_dmae_chan *sh_chan, u16 val)
188{
027811b9
GL
189 struct sh_dmae_device *shdev = container_of(sh_chan->common.device,
190 struct sh_dmae_device, common);
191 struct sh_dmae_pdata *pdata = shdev->pdata;
192 struct sh_dmae_channel *chan_pdata = &pdata->channel[sh_chan->id];
193 u16 __iomem *addr = shdev->dmars + chan_pdata->dmars / sizeof(u16);
194 int shift = chan_pdata->dmars_bit;
fc461857
GL
195
196 if (dmae_is_busy(sh_chan))
197 return -EBUSY;
d8902adc 198
027811b9
GL
199 __raw_writew((__raw_readw(addr) & (0xff00 >> shift)) | (val << shift),
200 addr);
d8902adc
NI
201
202 return 0;
203}
204
205static dma_cookie_t sh_dmae_tx_submit(struct dma_async_tx_descriptor *tx)
206{
3542a113 207 struct sh_desc *desc = tx_to_sh_desc(tx), *chunk, *last = desc, *c;
d8902adc 208 struct sh_dmae_chan *sh_chan = to_sh_chan(tx->chan);
3542a113 209 dma_async_tx_callback callback = tx->callback;
d8902adc
NI
210 dma_cookie_t cookie;
211
212 spin_lock_bh(&sh_chan->desc_lock);
213
214 cookie = sh_chan->common.cookie;
215 cookie++;
216 if (cookie < 0)
217 cookie = 1;
218
3542a113
GL
219 sh_chan->common.cookie = cookie;
220 tx->cookie = cookie;
221
222 /* Mark all chunks of this descriptor as submitted, move to the queue */
223 list_for_each_entry_safe(chunk, c, desc->node.prev, node) {
224 /*
225 * All chunks are on the global ld_free, so, we have to find
226 * the end of the chain ourselves
227 */
228 if (chunk != desc && (chunk->mark == DESC_IDLE ||
229 chunk->async_tx.cookie > 0 ||
230 chunk->async_tx.cookie == -EBUSY ||
231 &chunk->node == &sh_chan->ld_free))
232 break;
233 chunk->mark = DESC_SUBMITTED;
234 /* Callback goes to the last chunk */
235 chunk->async_tx.callback = NULL;
236 chunk->cookie = cookie;
237 list_move_tail(&chunk->node, &sh_chan->ld_queue);
238 last = chunk;
239 }
d8902adc 240
3542a113
GL
241 last->async_tx.callback = callback;
242 last->async_tx.callback_param = tx->callback_param;
243
244 dev_dbg(sh_chan->dev, "submit #%d@%p on %d: %x[%d] -> %x\n",
245 tx->cookie, &last->async_tx, sh_chan->id,
246 desc->hw.sar, desc->hw.tcr, desc->hw.dar);
d8902adc
NI
247
248 spin_unlock_bh(&sh_chan->desc_lock);
249
250 return cookie;
251}
252
3542a113 253/* Called with desc_lock held */
d8902adc
NI
254static struct sh_desc *sh_dmae_get_desc(struct sh_dmae_chan *sh_chan)
255{
3542a113 256 struct sh_desc *desc;
d8902adc 257
3542a113
GL
258 list_for_each_entry(desc, &sh_chan->ld_free, node)
259 if (desc->mark != DESC_PREPARED) {
260 BUG_ON(desc->mark != DESC_IDLE);
d8902adc 261 list_del(&desc->node);
3542a113 262 return desc;
d8902adc 263 }
d8902adc 264
3542a113 265 return NULL;
d8902adc
NI
266}
267
cfefe997
GL
268static struct sh_dmae_slave_config *sh_dmae_find_slave(
269 struct sh_dmae_chan *sh_chan, enum sh_dmae_slave_chan_id slave_id)
270{
271 struct dma_device *dma_dev = sh_chan->common.device;
272 struct sh_dmae_device *shdev = container_of(dma_dev,
273 struct sh_dmae_device, common);
027811b9 274 struct sh_dmae_pdata *pdata = shdev->pdata;
cfefe997
GL
275 int i;
276
277 if ((unsigned)slave_id >= SHDMA_SLAVE_NUMBER)
278 return NULL;
279
027811b9
GL
280 for (i = 0; i < pdata->slave_num; i++)
281 if (pdata->slave[i].slave_id == slave_id)
282 return pdata->slave + i;
cfefe997
GL
283
284 return NULL;
285}
286
d8902adc
NI
287static int sh_dmae_alloc_chan_resources(struct dma_chan *chan)
288{
289 struct sh_dmae_chan *sh_chan = to_sh_chan(chan);
290 struct sh_desc *desc;
cfefe997
GL
291 struct sh_dmae_slave *param = chan->private;
292
20f2a3b5
GL
293 pm_runtime_get_sync(sh_chan->dev);
294
cfefe997
GL
295 /*
296 * This relies on the guarantee from dmaengine that alloc_chan_resources
297 * never runs concurrently with itself or free_chan_resources.
298 */
299 if (param) {
300 struct sh_dmae_slave_config *cfg;
301
302 cfg = sh_dmae_find_slave(sh_chan, param->slave_id);
303 if (!cfg)
304 return -EINVAL;
305
306 if (test_and_set_bit(param->slave_id, sh_dmae_slave_used))
307 return -EBUSY;
308
309 param->config = cfg;
310
311 dmae_set_dmars(sh_chan, cfg->mid_rid);
312 dmae_set_chcr(sh_chan, cfg->chcr);
8b1935e6
GL
313 } else if ((sh_dmae_readl(sh_chan, CHCR) & 0xf00) != 0x400) {
314 dmae_init(sh_chan);
cfefe997 315 }
d8902adc
NI
316
317 spin_lock_bh(&sh_chan->desc_lock);
318 while (sh_chan->descs_allocated < NR_DESCS_PER_CHANNEL) {
319 spin_unlock_bh(&sh_chan->desc_lock);
320 desc = kzalloc(sizeof(struct sh_desc), GFP_KERNEL);
321 if (!desc) {
322 spin_lock_bh(&sh_chan->desc_lock);
323 break;
324 }
325 dma_async_tx_descriptor_init(&desc->async_tx,
326 &sh_chan->common);
327 desc->async_tx.tx_submit = sh_dmae_tx_submit;
3542a113 328 desc->mark = DESC_IDLE;
d8902adc
NI
329
330 spin_lock_bh(&sh_chan->desc_lock);
3542a113 331 list_add(&desc->node, &sh_chan->ld_free);
d8902adc
NI
332 sh_chan->descs_allocated++;
333 }
334 spin_unlock_bh(&sh_chan->desc_lock);
335
20f2a3b5
GL
336 if (!sh_chan->descs_allocated)
337 pm_runtime_put(sh_chan->dev);
338
d8902adc
NI
339 return sh_chan->descs_allocated;
340}
341
342/*
343 * sh_dma_free_chan_resources - Free all resources of the channel.
344 */
345static void sh_dmae_free_chan_resources(struct dma_chan *chan)
346{
347 struct sh_dmae_chan *sh_chan = to_sh_chan(chan);
348 struct sh_desc *desc, *_desc;
349 LIST_HEAD(list);
20f2a3b5 350 int descs = sh_chan->descs_allocated;
d8902adc 351
cfefe997
GL
352 dmae_halt(sh_chan);
353
3542a113
GL
354 /* Prepared and not submitted descriptors can still be on the queue */
355 if (!list_empty(&sh_chan->ld_queue))
356 sh_dmae_chan_ld_cleanup(sh_chan, true);
357
cfefe997
GL
358 if (chan->private) {
359 /* The caller is holding dma_list_mutex */
360 struct sh_dmae_slave *param = chan->private;
361 clear_bit(param->slave_id, sh_dmae_slave_used);
362 }
363
d8902adc
NI
364 spin_lock_bh(&sh_chan->desc_lock);
365
366 list_splice_init(&sh_chan->ld_free, &list);
367 sh_chan->descs_allocated = 0;
368
369 spin_unlock_bh(&sh_chan->desc_lock);
370
20f2a3b5
GL
371 if (descs > 0)
372 pm_runtime_put(sh_chan->dev);
373
d8902adc
NI
374 list_for_each_entry_safe(desc, _desc, &list, node)
375 kfree(desc);
376}
377
cfefe997 378/**
fc461857
GL
379 * sh_dmae_add_desc - get, set up and return one transfer descriptor
380 * @sh_chan: DMA channel
381 * @flags: DMA transfer flags
382 * @dest: destination DMA address, incremented when direction equals
383 * DMA_FROM_DEVICE or DMA_BIDIRECTIONAL
384 * @src: source DMA address, incremented when direction equals
385 * DMA_TO_DEVICE or DMA_BIDIRECTIONAL
386 * @len: DMA transfer length
387 * @first: if NULL, set to the current descriptor and cookie set to -EBUSY
388 * @direction: needed for slave DMA to decide which address to keep constant,
389 * equals DMA_BIDIRECTIONAL for MEMCPY
390 * Returns 0 or an error
391 * Locks: called with desc_lock held
392 */
393static struct sh_desc *sh_dmae_add_desc(struct sh_dmae_chan *sh_chan,
394 unsigned long flags, dma_addr_t *dest, dma_addr_t *src, size_t *len,
395 struct sh_desc **first, enum dma_data_direction direction)
d8902adc 396{
fc461857 397 struct sh_desc *new;
d8902adc
NI
398 size_t copy_size;
399
fc461857 400 if (!*len)
d8902adc
NI
401 return NULL;
402
fc461857
GL
403 /* Allocate the link descriptor from the free list */
404 new = sh_dmae_get_desc(sh_chan);
405 if (!new) {
406 dev_err(sh_chan->dev, "No free link descriptor available\n");
d8902adc 407 return NULL;
fc461857 408 }
d8902adc 409
fc461857
GL
410 copy_size = min(*len, (size_t)SH_DMA_TCR_MAX + 1);
411
412 new->hw.sar = *src;
413 new->hw.dar = *dest;
414 new->hw.tcr = copy_size;
415
416 if (!*first) {
417 /* First desc */
418 new->async_tx.cookie = -EBUSY;
419 *first = new;
420 } else {
421 /* Other desc - invisible to the user */
422 new->async_tx.cookie = -EINVAL;
423 }
424
cfefe997
GL
425 dev_dbg(sh_chan->dev,
426 "chaining (%u/%u)@%x -> %x with %p, cookie %d, shift %d\n",
fc461857 427 copy_size, *len, *src, *dest, &new->async_tx,
cfefe997 428 new->async_tx.cookie, sh_chan->xmit_shift);
fc461857
GL
429
430 new->mark = DESC_PREPARED;
431 new->async_tx.flags = flags;
cfefe997 432 new->direction = direction;
fc461857
GL
433
434 *len -= copy_size;
435 if (direction == DMA_BIDIRECTIONAL || direction == DMA_TO_DEVICE)
436 *src += copy_size;
437 if (direction == DMA_BIDIRECTIONAL || direction == DMA_FROM_DEVICE)
438 *dest += copy_size;
439
440 return new;
441}
442
443/*
444 * sh_dmae_prep_sg - prepare transfer descriptors from an SG list
445 *
446 * Common routine for public (MEMCPY) and slave DMA. The MEMCPY case is also
447 * converted to scatter-gather to guarantee consistent locking and a correct
448 * list manipulation. For slave DMA direction carries the usual meaning, and,
449 * logically, the SG list is RAM and the addr variable contains slave address,
450 * e.g., the FIFO I/O register. For MEMCPY direction equals DMA_BIDIRECTIONAL
451 * and the SG list contains only one element and points at the source buffer.
452 */
453static struct dma_async_tx_descriptor *sh_dmae_prep_sg(struct sh_dmae_chan *sh_chan,
454 struct scatterlist *sgl, unsigned int sg_len, dma_addr_t *addr,
455 enum dma_data_direction direction, unsigned long flags)
456{
457 struct scatterlist *sg;
458 struct sh_desc *first = NULL, *new = NULL /* compiler... */;
459 LIST_HEAD(tx_list);
460 int chunks = 0;
461 int i;
462
463 if (!sg_len)
464 return NULL;
465
466 for_each_sg(sgl, sg, sg_len, i)
467 chunks += (sg_dma_len(sg) + SH_DMA_TCR_MAX) /
468 (SH_DMA_TCR_MAX + 1);
d8902adc 469
3542a113
GL
470 /* Have to lock the whole loop to protect against concurrent release */
471 spin_lock_bh(&sh_chan->desc_lock);
472
473 /*
474 * Chaining:
475 * first descriptor is what user is dealing with in all API calls, its
476 * cookie is at first set to -EBUSY, at tx-submit to a positive
477 * number
478 * if more than one chunk is needed further chunks have cookie = -EINVAL
479 * the last chunk, if not equal to the first, has cookie = -ENOSPC
480 * all chunks are linked onto the tx_list head with their .node heads
481 * only during this function, then they are immediately spliced
482 * back onto the free list in form of a chain
483 */
fc461857
GL
484 for_each_sg(sgl, sg, sg_len, i) {
485 dma_addr_t sg_addr = sg_dma_address(sg);
486 size_t len = sg_dma_len(sg);
487
488 if (!len)
489 goto err_get_desc;
490
491 do {
492 dev_dbg(sh_chan->dev, "Add SG #%d@%p[%d], dma %llx\n",
493 i, sg, len, (unsigned long long)sg_addr);
494
495 if (direction == DMA_FROM_DEVICE)
496 new = sh_dmae_add_desc(sh_chan, flags,
497 &sg_addr, addr, &len, &first,
498 direction);
499 else
500 new = sh_dmae_add_desc(sh_chan, flags,
501 addr, &sg_addr, &len, &first,
502 direction);
503 if (!new)
504 goto err_get_desc;
505
506 new->chunks = chunks--;
507 list_add_tail(&new->node, &tx_list);
508 } while (len);
509 }
d8902adc 510
3542a113
GL
511 if (new != first)
512 new->async_tx.cookie = -ENOSPC;
d8902adc 513
3542a113
GL
514 /* Put them back on the free list, so, they don't get lost */
515 list_splice_tail(&tx_list, &sh_chan->ld_free);
d8902adc 516
3542a113 517 spin_unlock_bh(&sh_chan->desc_lock);
d8902adc 518
3542a113 519 return &first->async_tx;
fc461857
GL
520
521err_get_desc:
522 list_for_each_entry(new, &tx_list, node)
523 new->mark = DESC_IDLE;
524 list_splice(&tx_list, &sh_chan->ld_free);
525
526 spin_unlock_bh(&sh_chan->desc_lock);
527
528 return NULL;
529}
530
531static struct dma_async_tx_descriptor *sh_dmae_prep_memcpy(
532 struct dma_chan *chan, dma_addr_t dma_dest, dma_addr_t dma_src,
533 size_t len, unsigned long flags)
534{
535 struct sh_dmae_chan *sh_chan;
536 struct scatterlist sg;
537
538 if (!chan || !len)
539 return NULL;
540
cfefe997
GL
541 chan->private = NULL;
542
fc461857
GL
543 sh_chan = to_sh_chan(chan);
544
545 sg_init_table(&sg, 1);
546 sg_set_page(&sg, pfn_to_page(PFN_DOWN(dma_src)), len,
547 offset_in_page(dma_src));
548 sg_dma_address(&sg) = dma_src;
549 sg_dma_len(&sg) = len;
550
551 return sh_dmae_prep_sg(sh_chan, &sg, 1, &dma_dest, DMA_BIDIRECTIONAL,
552 flags);
d8902adc
NI
553}
554
cfefe997
GL
555static struct dma_async_tx_descriptor *sh_dmae_prep_slave_sg(
556 struct dma_chan *chan, struct scatterlist *sgl, unsigned int sg_len,
557 enum dma_data_direction direction, unsigned long flags)
558{
559 struct sh_dmae_slave *param;
560 struct sh_dmae_chan *sh_chan;
561
562 if (!chan)
563 return NULL;
564
565 sh_chan = to_sh_chan(chan);
566 param = chan->private;
567
568 /* Someone calling slave DMA on a public channel? */
569 if (!param || !sg_len) {
570 dev_warn(sh_chan->dev, "%s: bad parameter: %p, %d, %d\n",
571 __func__, param, sg_len, param ? param->slave_id : -1);
572 return NULL;
573 }
574
575 /*
576 * if (param != NULL), this is a successfully requested slave channel,
577 * therefore param->config != NULL too.
578 */
579 return sh_dmae_prep_sg(sh_chan, sgl, sg_len, &param->config->addr,
580 direction, flags);
581}
582
583static void sh_dmae_terminate_all(struct dma_chan *chan)
584{
585 struct sh_dmae_chan *sh_chan = to_sh_chan(chan);
586
587 if (!chan)
588 return;
589
590 sh_dmae_chan_ld_cleanup(sh_chan, true);
591}
592
3542a113 593static dma_async_tx_callback __ld_cleanup(struct sh_dmae_chan *sh_chan, bool all)
d8902adc
NI
594{
595 struct sh_desc *desc, *_desc;
3542a113
GL
596 /* Is the "exposed" head of a chain acked? */
597 bool head_acked = false;
598 dma_cookie_t cookie = 0;
599 dma_async_tx_callback callback = NULL;
600 void *param = NULL;
d8902adc
NI
601
602 spin_lock_bh(&sh_chan->desc_lock);
603 list_for_each_entry_safe(desc, _desc, &sh_chan->ld_queue, node) {
3542a113
GL
604 struct dma_async_tx_descriptor *tx = &desc->async_tx;
605
606 BUG_ON(tx->cookie > 0 && tx->cookie != desc->cookie);
607 BUG_ON(desc->mark != DESC_SUBMITTED &&
608 desc->mark != DESC_COMPLETED &&
609 desc->mark != DESC_WAITING);
610
611 /*
612 * queue is ordered, and we use this loop to (1) clean up all
613 * completed descriptors, and to (2) update descriptor flags of
614 * any chunks in a (partially) completed chain
615 */
616 if (!all && desc->mark == DESC_SUBMITTED &&
617 desc->cookie != cookie)
d8902adc
NI
618 break;
619
3542a113
GL
620 if (tx->cookie > 0)
621 cookie = tx->cookie;
d8902adc 622
3542a113 623 if (desc->mark == DESC_COMPLETED && desc->chunks == 1) {
cfefe997
GL
624 if (sh_chan->completed_cookie != desc->cookie - 1)
625 dev_dbg(sh_chan->dev,
626 "Completing cookie %d, expected %d\n",
627 desc->cookie,
628 sh_chan->completed_cookie + 1);
3542a113
GL
629 sh_chan->completed_cookie = desc->cookie;
630 }
d8902adc 631
3542a113
GL
632 /* Call callback on the last chunk */
633 if (desc->mark == DESC_COMPLETED && tx->callback) {
634 desc->mark = DESC_WAITING;
635 callback = tx->callback;
636 param = tx->callback_param;
637 dev_dbg(sh_chan->dev, "descriptor #%d@%p on %d callback\n",
638 tx->cookie, tx, sh_chan->id);
639 BUG_ON(desc->chunks != 1);
640 break;
641 }
d8902adc 642
3542a113
GL
643 if (tx->cookie > 0 || tx->cookie == -EBUSY) {
644 if (desc->mark == DESC_COMPLETED) {
645 BUG_ON(tx->cookie < 0);
646 desc->mark = DESC_WAITING;
647 }
648 head_acked = async_tx_test_ack(tx);
649 } else {
650 switch (desc->mark) {
651 case DESC_COMPLETED:
652 desc->mark = DESC_WAITING;
653 /* Fall through */
654 case DESC_WAITING:
655 if (head_acked)
656 async_tx_ack(&desc->async_tx);
657 }
658 }
659
660 dev_dbg(sh_chan->dev, "descriptor %p #%d completed.\n",
661 tx, tx->cookie);
662
663 if (((desc->mark == DESC_COMPLETED ||
664 desc->mark == DESC_WAITING) &&
665 async_tx_test_ack(&desc->async_tx)) || all) {
666 /* Remove from ld_queue list */
667 desc->mark = DESC_IDLE;
668 list_move(&desc->node, &sh_chan->ld_free);
d8902adc
NI
669 }
670 }
671 spin_unlock_bh(&sh_chan->desc_lock);
3542a113
GL
672
673 if (callback)
674 callback(param);
675
676 return callback;
677}
678
679/*
680 * sh_chan_ld_cleanup - Clean up link descriptors
681 *
682 * This function cleans up the ld_queue of DMA channel.
683 */
684static void sh_dmae_chan_ld_cleanup(struct sh_dmae_chan *sh_chan, bool all)
685{
686 while (__ld_cleanup(sh_chan, all))
687 ;
d8902adc
NI
688}
689
690static void sh_chan_xfer_ld_queue(struct sh_dmae_chan *sh_chan)
691{
47a4dc26 692 struct sh_desc *desc;
d8902adc 693
3542a113 694 spin_lock_bh(&sh_chan->desc_lock);
d8902adc 695 /* DMA work check */
3542a113
GL
696 if (dmae_is_busy(sh_chan)) {
697 spin_unlock_bh(&sh_chan->desc_lock);
d8902adc 698 return;
3542a113 699 }
d8902adc 700
cfefe997 701 /* Find the first not transferred desciptor */
47a4dc26
GL
702 list_for_each_entry(desc, &sh_chan->ld_queue, node)
703 if (desc->mark == DESC_SUBMITTED) {
3542a113 704 /* Get the ld start address from ld_queue */
47a4dc26 705 dmae_set_reg(sh_chan, &desc->hw);
3542a113
GL
706 dmae_start(sh_chan);
707 break;
708 }
709
710 spin_unlock_bh(&sh_chan->desc_lock);
d8902adc
NI
711}
712
713static void sh_dmae_memcpy_issue_pending(struct dma_chan *chan)
714{
715 struct sh_dmae_chan *sh_chan = to_sh_chan(chan);
716 sh_chan_xfer_ld_queue(sh_chan);
717}
718
719static enum dma_status sh_dmae_is_complete(struct dma_chan *chan,
720 dma_cookie_t cookie,
721 dma_cookie_t *done,
722 dma_cookie_t *used)
723{
724 struct sh_dmae_chan *sh_chan = to_sh_chan(chan);
725 dma_cookie_t last_used;
726 dma_cookie_t last_complete;
47a4dc26 727 enum dma_status status;
d8902adc 728
3542a113 729 sh_dmae_chan_ld_cleanup(sh_chan, false);
d8902adc
NI
730
731 last_used = chan->cookie;
732 last_complete = sh_chan->completed_cookie;
3542a113 733 BUG_ON(last_complete < 0);
d8902adc
NI
734
735 if (done)
736 *done = last_complete;
737
738 if (used)
739 *used = last_used;
740
47a4dc26
GL
741 spin_lock_bh(&sh_chan->desc_lock);
742
743 status = dma_async_is_complete(cookie, last_complete, last_used);
744
745 /*
746 * If we don't find cookie on the queue, it has been aborted and we have
747 * to report error
748 */
749 if (status != DMA_SUCCESS) {
750 struct sh_desc *desc;
751 status = DMA_ERROR;
752 list_for_each_entry(desc, &sh_chan->ld_queue, node)
753 if (desc->cookie == cookie) {
754 status = DMA_IN_PROGRESS;
755 break;
756 }
757 }
758
759 spin_unlock_bh(&sh_chan->desc_lock);
760
761 return status;
d8902adc
NI
762}
763
764static irqreturn_t sh_dmae_interrupt(int irq, void *data)
765{
766 irqreturn_t ret = IRQ_NONE;
767 struct sh_dmae_chan *sh_chan = (struct sh_dmae_chan *)data;
768 u32 chcr = sh_dmae_readl(sh_chan, CHCR);
769
770 if (chcr & CHCR_TE) {
771 /* DMA stop */
772 dmae_halt(sh_chan);
773
774 ret = IRQ_HANDLED;
775 tasklet_schedule(&sh_chan->tasklet);
776 }
777
778 return ret;
779}
780
781#if defined(CONFIG_CPU_SH4)
782static irqreturn_t sh_dmae_err(int irq, void *data)
783{
d8902adc 784 struct sh_dmae_device *shdev = (struct sh_dmae_device *)data;
47a4dc26 785 int i;
d8902adc 786
47a4dc26 787 /* halt the dma controller */
027811b9 788 sh_dmae_ctl_stop(shdev);
47a4dc26
GL
789
790 /* We cannot detect, which channel caused the error, have to reset all */
8b1935e6 791 for (i = 0; i < SH_DMAC_MAX_CHANNELS; i++) {
47a4dc26
GL
792 struct sh_dmae_chan *sh_chan = shdev->chan[i];
793 if (sh_chan) {
794 struct sh_desc *desc;
795 /* Stop the channel */
796 dmae_halt(sh_chan);
797 /* Complete all */
798 list_for_each_entry(desc, &sh_chan->ld_queue, node) {
799 struct dma_async_tx_descriptor *tx = &desc->async_tx;
800 desc->mark = DESC_IDLE;
801 if (tx->callback)
802 tx->callback(tx->callback_param);
d8902adc 803 }
47a4dc26 804 list_splice_init(&sh_chan->ld_queue, &sh_chan->ld_free);
d8902adc 805 }
d8902adc 806 }
027811b9 807 sh_dmae_rst(shdev);
47a4dc26
GL
808
809 return IRQ_HANDLED;
d8902adc
NI
810}
811#endif
812
813static void dmae_do_tasklet(unsigned long data)
814{
815 struct sh_dmae_chan *sh_chan = (struct sh_dmae_chan *)data;
3542a113 816 struct sh_desc *desc;
d8902adc 817 u32 sar_buf = sh_dmae_readl(sh_chan, SAR);
cfefe997 818 u32 dar_buf = sh_dmae_readl(sh_chan, DAR);
86d61b33 819
3542a113
GL
820 spin_lock(&sh_chan->desc_lock);
821 list_for_each_entry(desc, &sh_chan->ld_queue, node) {
cfefe997
GL
822 if (desc->mark == DESC_SUBMITTED &&
823 ((desc->direction == DMA_FROM_DEVICE &&
824 (desc->hw.dar + desc->hw.tcr) == dar_buf) ||
825 (desc->hw.sar + desc->hw.tcr) == sar_buf)) {
3542a113
GL
826 dev_dbg(sh_chan->dev, "done #%d@%p dst %u\n",
827 desc->async_tx.cookie, &desc->async_tx,
828 desc->hw.dar);
829 desc->mark = DESC_COMPLETED;
d8902adc
NI
830 break;
831 }
832 }
3542a113 833 spin_unlock(&sh_chan->desc_lock);
d8902adc 834
d8902adc
NI
835 /* Next desc */
836 sh_chan_xfer_ld_queue(sh_chan);
3542a113 837 sh_dmae_chan_ld_cleanup(sh_chan, false);
d8902adc
NI
838}
839
027811b9
GL
840static int __devinit sh_dmae_chan_probe(struct sh_dmae_device *shdev, int id,
841 int irq, unsigned long flags)
d8902adc
NI
842{
843 int err;
027811b9
GL
844 struct sh_dmae_channel *chan_pdata = &shdev->pdata->channel[id];
845 struct platform_device *pdev = to_platform_device(shdev->common.dev);
d8902adc
NI
846 struct sh_dmae_chan *new_sh_chan;
847
848 /* alloc channel */
849 new_sh_chan = kzalloc(sizeof(struct sh_dmae_chan), GFP_KERNEL);
850 if (!new_sh_chan) {
86d61b33
GL
851 dev_err(shdev->common.dev,
852 "No free memory for allocating dma channels!\n");
d8902adc
NI
853 return -ENOMEM;
854 }
855
8b1935e6
GL
856 /* copy struct dma_device */
857 new_sh_chan->common.device = &shdev->common;
858
d8902adc
NI
859 new_sh_chan->dev = shdev->common.dev;
860 new_sh_chan->id = id;
027811b9
GL
861 new_sh_chan->irq = irq;
862 new_sh_chan->base = shdev->chan_reg + chan_pdata->offset / sizeof(u32);
d8902adc
NI
863
864 /* Init DMA tasklet */
865 tasklet_init(&new_sh_chan->tasklet, dmae_do_tasklet,
866 (unsigned long)new_sh_chan);
867
868 /* Init the channel */
869 dmae_init(new_sh_chan);
870
871 spin_lock_init(&new_sh_chan->desc_lock);
872
873 /* Init descripter manage list */
874 INIT_LIST_HEAD(&new_sh_chan->ld_queue);
875 INIT_LIST_HEAD(&new_sh_chan->ld_free);
876
d8902adc
NI
877 /* Add the channel to DMA device channel list */
878 list_add_tail(&new_sh_chan->common.device_node,
879 &shdev->common.channels);
880 shdev->common.chancnt++;
881
027811b9
GL
882 if (pdev->id >= 0)
883 snprintf(new_sh_chan->dev_id, sizeof(new_sh_chan->dev_id),
884 "sh-dmae%d.%d", pdev->id, new_sh_chan->id);
885 else
886 snprintf(new_sh_chan->dev_id, sizeof(new_sh_chan->dev_id),
887 "sh-dma%d", new_sh_chan->id);
d8902adc
NI
888
889 /* set up channel irq */
027811b9 890 err = request_irq(irq, &sh_dmae_interrupt, flags,
86d61b33 891 new_sh_chan->dev_id, new_sh_chan);
d8902adc
NI
892 if (err) {
893 dev_err(shdev->common.dev, "DMA channel %d request_irq error "
894 "with return %d\n", id, err);
895 goto err_no_irq;
896 }
897
d8902adc
NI
898 shdev->chan[id] = new_sh_chan;
899 return 0;
900
901err_no_irq:
902 /* remove from dmaengine device node */
903 list_del(&new_sh_chan->common.device_node);
904 kfree(new_sh_chan);
905 return err;
906}
907
908static void sh_dmae_chan_remove(struct sh_dmae_device *shdev)
909{
910 int i;
911
912 for (i = shdev->common.chancnt - 1 ; i >= 0 ; i--) {
913 if (shdev->chan[i]) {
027811b9
GL
914 struct sh_dmae_chan *sh_chan = shdev->chan[i];
915
916 free_irq(sh_chan->irq, sh_chan);
d8902adc 917
027811b9
GL
918 list_del(&sh_chan->common.device_node);
919 kfree(sh_chan);
d8902adc
NI
920 shdev->chan[i] = NULL;
921 }
922 }
923 shdev->common.chancnt = 0;
924}
925
926static int __init sh_dmae_probe(struct platform_device *pdev)
927{
027811b9
GL
928 struct sh_dmae_pdata *pdata = pdev->dev.platform_data;
929 unsigned long irqflags = IRQF_DISABLED,
8b1935e6
GL
930 chan_flag[SH_DMAC_MAX_CHANNELS] = {};
931 int errirq, chan_irq[SH_DMAC_MAX_CHANNELS];
027811b9 932 int err, i, irq_cnt = 0, irqres = 0;
d8902adc 933 struct sh_dmae_device *shdev;
027811b9 934 struct resource *chan, *dmars, *errirq_res, *chanirq_res;
d8902adc 935
56adf7e8 936 /* get platform data */
027811b9 937 if (!pdata || !pdata->channel_num)
56adf7e8
DW
938 return -ENODEV;
939
027811b9
GL
940 chan = platform_get_resource(pdev, IORESOURCE_MEM, 0);
941 /* DMARS area is optional, if absent, this controller cannot do slave DMA */
942 dmars = platform_get_resource(pdev, IORESOURCE_MEM, 1);
943 /*
944 * IRQ resources:
945 * 1. there always must be at least one IRQ IO-resource. On SH4 it is
946 * the error IRQ, in which case it is the only IRQ in this resource:
947 * start == end. If it is the only IRQ resource, all channels also
948 * use the same IRQ.
949 * 2. DMA channel IRQ resources can be specified one per resource or in
950 * ranges (start != end)
951 * 3. iff all events (channels and, optionally, error) on this
952 * controller use the same IRQ, only one IRQ resource can be
953 * specified, otherwise there must be one IRQ per channel, even if
954 * some of them are equal
955 * 4. if all IRQs on this controller are equal or if some specific IRQs
956 * specify IORESOURCE_IRQ_SHAREABLE in their resources, they will be
957 * requested with the IRQF_SHARED flag
958 */
959 errirq_res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
960 if (!chan || !errirq_res)
961 return -ENODEV;
962
963 if (!request_mem_region(chan->start, resource_size(chan), pdev->name)) {
964 dev_err(&pdev->dev, "DMAC register region already claimed\n");
965 return -EBUSY;
966 }
967
968 if (dmars && !request_mem_region(dmars->start, resource_size(dmars), pdev->name)) {
969 dev_err(&pdev->dev, "DMAC DMARS region already claimed\n");
970 err = -EBUSY;
971 goto ermrdmars;
972 }
973
974 err = -ENOMEM;
d8902adc
NI
975 shdev = kzalloc(sizeof(struct sh_dmae_device), GFP_KERNEL);
976 if (!shdev) {
027811b9
GL
977 dev_err(&pdev->dev, "Not enough memory\n");
978 goto ealloc;
979 }
980
981 shdev->chan_reg = ioremap(chan->start, resource_size(chan));
982 if (!shdev->chan_reg)
983 goto emapchan;
984 if (dmars) {
985 shdev->dmars = ioremap(dmars->start, resource_size(dmars));
986 if (!shdev->dmars)
987 goto emapdmars;
d8902adc
NI
988 }
989
d8902adc 990 /* platform data */
027811b9 991 shdev->pdata = pdata;
d8902adc 992
20f2a3b5
GL
993 pm_runtime_enable(&pdev->dev);
994 pm_runtime_get_sync(&pdev->dev);
995
d8902adc 996 /* reset dma controller */
027811b9 997 err = sh_dmae_rst(shdev);
d8902adc
NI
998 if (err)
999 goto rst_err;
1000
d8902adc
NI
1001 INIT_LIST_HEAD(&shdev->common.channels);
1002
1003 dma_cap_set(DMA_MEMCPY, shdev->common.cap_mask);
027811b9
GL
1004 if (dmars)
1005 dma_cap_set(DMA_SLAVE, shdev->common.cap_mask);
cfefe997 1006
d8902adc
NI
1007 shdev->common.device_alloc_chan_resources
1008 = sh_dmae_alloc_chan_resources;
1009 shdev->common.device_free_chan_resources = sh_dmae_free_chan_resources;
1010 shdev->common.device_prep_dma_memcpy = sh_dmae_prep_memcpy;
1011 shdev->common.device_is_tx_complete = sh_dmae_is_complete;
1012 shdev->common.device_issue_pending = sh_dmae_memcpy_issue_pending;
cfefe997
GL
1013
1014 /* Compulsory for DMA_SLAVE fields */
1015 shdev->common.device_prep_slave_sg = sh_dmae_prep_slave_sg;
1016 shdev->common.device_terminate_all = sh_dmae_terminate_all;
1017
d8902adc 1018 shdev->common.dev = &pdev->dev;
ddb4f0f0 1019 /* Default transfer size of 32 bytes requires 32-byte alignment */
8b1935e6 1020 shdev->common.copy_align = LOG2_DEFAULT_XFER_SIZE;
d8902adc
NI
1021
1022#if defined(CONFIG_CPU_SH4)
027811b9
GL
1023 chanirq_res = platform_get_resource(pdev, IORESOURCE_IRQ, 1);
1024
1025 if (!chanirq_res)
1026 chanirq_res = errirq_res;
1027 else
1028 irqres++;
1029
1030 if (chanirq_res == errirq_res ||
1031 (errirq_res->flags & IORESOURCE_BITS) == IORESOURCE_IRQ_SHAREABLE)
d8902adc 1032 irqflags = IRQF_SHARED;
027811b9
GL
1033
1034 errirq = errirq_res->start;
1035
1036 err = request_irq(errirq, sh_dmae_err, irqflags,
1037 "DMAC Address Error", shdev);
1038 if (err) {
1039 dev_err(&pdev->dev,
1040 "DMA failed requesting irq #%d, error %d\n",
1041 errirq, err);
1042 goto eirq_err;
d8902adc
NI
1043 }
1044
027811b9
GL
1045#else
1046 chanirq_res = errirq_res;
1047#endif /* CONFIG_CPU_SH4 */
1048
1049 if (chanirq_res->start == chanirq_res->end &&
1050 !platform_get_resource(pdev, IORESOURCE_IRQ, 1)) {
1051 /* Special case - all multiplexed */
1052 for (; irq_cnt < pdata->channel_num; irq_cnt++) {
1053 chan_irq[irq_cnt] = chanirq_res->start;
1054 chan_flag[irq_cnt] = IRQF_SHARED;
d8902adc 1055 }
027811b9
GL
1056 } else {
1057 do {
1058 for (i = chanirq_res->start; i <= chanirq_res->end; i++) {
1059 if ((errirq_res->flags & IORESOURCE_BITS) ==
1060 IORESOURCE_IRQ_SHAREABLE)
1061 chan_flag[irq_cnt] = IRQF_SHARED;
1062 else
1063 chan_flag[irq_cnt] = IRQF_DISABLED;
1064 dev_dbg(&pdev->dev,
1065 "Found IRQ %d for channel %d\n",
1066 i, irq_cnt);
1067 chan_irq[irq_cnt++] = i;
1068 }
1069 chanirq_res = platform_get_resource(pdev,
1070 IORESOURCE_IRQ, ++irqres);
1071 } while (irq_cnt < pdata->channel_num && chanirq_res);
d8902adc 1072 }
027811b9
GL
1073
1074 if (irq_cnt < pdata->channel_num)
1075 goto eirqres;
d8902adc
NI
1076
1077 /* Create DMA Channel */
027811b9
GL
1078 for (i = 0; i < pdata->channel_num; i++) {
1079 err = sh_dmae_chan_probe(shdev, i, chan_irq[i], chan_flag[i]);
d8902adc
NI
1080 if (err)
1081 goto chan_probe_err;
1082 }
1083
20f2a3b5
GL
1084 pm_runtime_put(&pdev->dev);
1085
d8902adc
NI
1086 platform_set_drvdata(pdev, shdev);
1087 dma_async_device_register(&shdev->common);
1088
1089 return err;
1090
1091chan_probe_err:
1092 sh_dmae_chan_remove(shdev);
027811b9
GL
1093eirqres:
1094#if defined(CONFIG_CPU_SH4)
1095 free_irq(errirq, shdev);
d8902adc 1096eirq_err:
027811b9 1097#endif
d8902adc 1098rst_err:
20f2a3b5 1099 pm_runtime_put(&pdev->dev);
027811b9
GL
1100 if (dmars)
1101 iounmap(shdev->dmars);
1102emapdmars:
1103 iounmap(shdev->chan_reg);
1104emapchan:
d8902adc 1105 kfree(shdev);
027811b9
GL
1106ealloc:
1107 if (dmars)
1108 release_mem_region(dmars->start, resource_size(dmars));
1109ermrdmars:
1110 release_mem_region(chan->start, resource_size(chan));
d8902adc 1111
d8902adc
NI
1112 return err;
1113}
1114
1115static int __exit sh_dmae_remove(struct platform_device *pdev)
1116{
1117 struct sh_dmae_device *shdev = platform_get_drvdata(pdev);
027811b9
GL
1118 struct resource *res;
1119 int errirq = platform_get_irq(pdev, 0);
d8902adc
NI
1120
1121 dma_async_device_unregister(&shdev->common);
1122
027811b9
GL
1123 if (errirq > 0)
1124 free_irq(errirq, shdev);
d8902adc
NI
1125
1126 /* channel data remove */
1127 sh_dmae_chan_remove(shdev);
1128
20f2a3b5
GL
1129 pm_runtime_disable(&pdev->dev);
1130
027811b9
GL
1131 if (shdev->dmars)
1132 iounmap(shdev->dmars);
1133 iounmap(shdev->chan_reg);
1134
d8902adc
NI
1135 kfree(shdev);
1136
027811b9
GL
1137 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1138 if (res)
1139 release_mem_region(res->start, resource_size(res));
1140 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1141 if (res)
1142 release_mem_region(res->start, resource_size(res));
1143
d8902adc
NI
1144 return 0;
1145}
1146
1147static void sh_dmae_shutdown(struct platform_device *pdev)
1148{
1149 struct sh_dmae_device *shdev = platform_get_drvdata(pdev);
027811b9 1150 sh_dmae_ctl_stop(shdev);
d8902adc
NI
1151}
1152
1153static struct platform_driver sh_dmae_driver = {
1154 .remove = __exit_p(sh_dmae_remove),
1155 .shutdown = sh_dmae_shutdown,
1156 .driver = {
1157 .name = "sh-dma-engine",
1158 },
1159};
1160
1161static int __init sh_dmae_init(void)
1162{
1163 return platform_driver_probe(&sh_dmae_driver, sh_dmae_probe);
1164}
1165module_init(sh_dmae_init);
1166
1167static void __exit sh_dmae_exit(void)
1168{
1169 platform_driver_unregister(&sh_dmae_driver);
1170}
1171module_exit(sh_dmae_exit);
1172
1173MODULE_AUTHOR("Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>");
1174MODULE_DESCRIPTION("Renesas SH DMA Engine driver");
1175MODULE_LICENSE("GPL");
This page took 0.095105 seconds and 5 git commands to generate.