2 * Driver for the Synopsys DesignWare DMA Controller (aka DMACA on
5 * Copyright (C) 2007-2008 Atmel Corporation
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 #include <linux/clk.h>
12 #include <linux/delay.h>
13 #include <linux/dmaengine.h>
14 #include <linux/dma-mapping.h>
15 #include <linux/init.h>
16 #include <linux/interrupt.h>
19 #include <linux/module.h>
20 #include <linux/platform_device.h>
21 #include <linux/slab.h>
23 #include "dw_dmac_regs.h"
26 * This supports the Synopsys "DesignWare AHB Central DMA Controller",
27 * (DW_ahb_dmac) which is used with various AMBA 2.0 systems (not all
28 * of which use ARM any more). See the "Databook" from Synopsys for
29 * information beyond what licensees probably provide.
31 * The driver has currently been tested only with the Atmel AT32AP7000,
32 * which does not support descriptor writeback.
35 #define DWC_DEFAULT_CTLLO(private) ({ \
36 struct dw_dma_slave *__slave = (private); \
37 int dms = __slave ? __slave->dst_master : 0; \
38 int sms = __slave ? __slave->src_master : 1; \
39 u8 smsize = __slave ? __slave->src_msize : DW_DMA_MSIZE_16; \
40 u8 dmsize = __slave ? __slave->dst_msize : DW_DMA_MSIZE_16; \
42 (DWC_CTLL_DST_MSIZE(dmsize) \
43 | DWC_CTLL_SRC_MSIZE(smsize) \
47 | DWC_CTLL_SMS(sms)); \
51 * This is configuration-dependent and usually a funny size like 4095.
53 * Note that this is a transfer count, i.e. if we transfer 32-bit
54 * words, we can do 16380 bytes per descriptor.
56 * This parameter is also system-specific.
58 #define DWC_MAX_COUNT 4095U
61 * Number of descriptors to allocate for each channel. This should be
62 * made configurable somehow; preferably, the clients (at least the
63 * ones using slave transfers) should be able to give us a hint.
65 #define NR_DESCS_PER_CHANNEL 64
67 /*----------------------------------------------------------------------*/
70 * Because we're not relying on writeback from the controller (it may not
71 * even be configured into the core!) we don't need to use dma_pool. These
72 * descriptors -- and associated data -- are cacheable. We do need to make
73 * sure their dcache entries are written back before handing them off to
74 * the controller, though.
77 static struct device
*chan2dev(struct dma_chan
*chan
)
79 return &chan
->dev
->device
;
81 static struct device
*chan2parent(struct dma_chan
*chan
)
83 return chan
->dev
->device
.parent
;
86 static struct dw_desc
*dwc_first_active(struct dw_dma_chan
*dwc
)
88 return list_entry(dwc
->active_list
.next
, struct dw_desc
, desc_node
);
91 static struct dw_desc
*dwc_desc_get(struct dw_dma_chan
*dwc
)
93 struct dw_desc
*desc
, *_desc
;
94 struct dw_desc
*ret
= NULL
;
98 spin_lock_irqsave(&dwc
->lock
, flags
);
99 list_for_each_entry_safe(desc
, _desc
, &dwc
->free_list
, desc_node
) {
100 if (async_tx_test_ack(&desc
->txd
)) {
101 list_del(&desc
->desc_node
);
105 dev_dbg(chan2dev(&dwc
->chan
), "desc %p not ACKed\n", desc
);
108 spin_unlock_irqrestore(&dwc
->lock
, flags
);
110 dev_vdbg(chan2dev(&dwc
->chan
), "scanned %u descriptors on freelist\n", i
);
115 static void dwc_sync_desc_for_cpu(struct dw_dma_chan
*dwc
, struct dw_desc
*desc
)
117 struct dw_desc
*child
;
119 list_for_each_entry(child
, &desc
->tx_list
, desc_node
)
120 dma_sync_single_for_cpu(chan2parent(&dwc
->chan
),
121 child
->txd
.phys
, sizeof(child
->lli
),
123 dma_sync_single_for_cpu(chan2parent(&dwc
->chan
),
124 desc
->txd
.phys
, sizeof(desc
->lli
),
129 * Move a descriptor, including any children, to the free list.
130 * `desc' must not be on any lists.
132 static void dwc_desc_put(struct dw_dma_chan
*dwc
, struct dw_desc
*desc
)
137 struct dw_desc
*child
;
139 dwc_sync_desc_for_cpu(dwc
, desc
);
141 spin_lock_irqsave(&dwc
->lock
, flags
);
142 list_for_each_entry(child
, &desc
->tx_list
, desc_node
)
143 dev_vdbg(chan2dev(&dwc
->chan
),
144 "moving child desc %p to freelist\n",
146 list_splice_init(&desc
->tx_list
, &dwc
->free_list
);
147 dev_vdbg(chan2dev(&dwc
->chan
), "moving desc %p to freelist\n", desc
);
148 list_add(&desc
->desc_node
, &dwc
->free_list
);
149 spin_unlock_irqrestore(&dwc
->lock
, flags
);
153 /* Called with dwc->lock held and bh disabled */
155 dwc_assign_cookie(struct dw_dma_chan
*dwc
, struct dw_desc
*desc
)
157 dma_cookie_t cookie
= dwc
->chan
.cookie
;
162 dwc
->chan
.cookie
= cookie
;
163 desc
->txd
.cookie
= cookie
;
168 /*----------------------------------------------------------------------*/
170 /* Called with dwc->lock held and bh disabled */
171 static void dwc_dostart(struct dw_dma_chan
*dwc
, struct dw_desc
*first
)
173 struct dw_dma
*dw
= to_dw_dma(dwc
->chan
.device
);
175 /* ASSERT: channel is idle */
176 if (dma_readl(dw
, CH_EN
) & dwc
->mask
) {
177 dev_err(chan2dev(&dwc
->chan
),
178 "BUG: Attempted to start non-idle channel\n");
179 dev_err(chan2dev(&dwc
->chan
),
180 " SAR: 0x%x DAR: 0x%x LLP: 0x%x CTL: 0x%x:%08x\n",
181 channel_readl(dwc
, SAR
),
182 channel_readl(dwc
, DAR
),
183 channel_readl(dwc
, LLP
),
184 channel_readl(dwc
, CTL_HI
),
185 channel_readl(dwc
, CTL_LO
));
187 /* The tasklet will hopefully advance the queue... */
191 channel_writel(dwc
, LLP
, first
->txd
.phys
);
192 channel_writel(dwc
, CTL_LO
,
193 DWC_CTLL_LLP_D_EN
| DWC_CTLL_LLP_S_EN
);
194 channel_writel(dwc
, CTL_HI
, 0);
195 channel_set_bit(dw
, CH_EN
, dwc
->mask
);
198 /*----------------------------------------------------------------------*/
201 dwc_descriptor_complete(struct dw_dma_chan
*dwc
, struct dw_desc
*desc
,
202 bool callback_required
)
204 dma_async_tx_callback callback
= NULL
;
206 struct dma_async_tx_descriptor
*txd
= &desc
->txd
;
207 struct dw_desc
*child
;
210 dev_vdbg(chan2dev(&dwc
->chan
), "descriptor %u complete\n", txd
->cookie
);
212 spin_lock_irqsave(&dwc
->lock
, flags
);
213 dwc
->completed
= txd
->cookie
;
214 if (callback_required
) {
215 callback
= txd
->callback
;
216 param
= txd
->callback_param
;
219 dwc_sync_desc_for_cpu(dwc
, desc
);
222 list_for_each_entry(child
, &desc
->tx_list
, desc_node
)
223 async_tx_ack(&child
->txd
);
224 async_tx_ack(&desc
->txd
);
226 list_splice_init(&desc
->tx_list
, &dwc
->free_list
);
227 list_move(&desc
->desc_node
, &dwc
->free_list
);
229 if (!dwc
->chan
.private) {
230 struct device
*parent
= chan2parent(&dwc
->chan
);
231 if (!(txd
->flags
& DMA_COMPL_SKIP_DEST_UNMAP
)) {
232 if (txd
->flags
& DMA_COMPL_DEST_UNMAP_SINGLE
)
233 dma_unmap_single(parent
, desc
->lli
.dar
,
234 desc
->len
, DMA_FROM_DEVICE
);
236 dma_unmap_page(parent
, desc
->lli
.dar
,
237 desc
->len
, DMA_FROM_DEVICE
);
239 if (!(txd
->flags
& DMA_COMPL_SKIP_SRC_UNMAP
)) {
240 if (txd
->flags
& DMA_COMPL_SRC_UNMAP_SINGLE
)
241 dma_unmap_single(parent
, desc
->lli
.sar
,
242 desc
->len
, DMA_TO_DEVICE
);
244 dma_unmap_page(parent
, desc
->lli
.sar
,
245 desc
->len
, DMA_TO_DEVICE
);
249 spin_unlock_irqrestore(&dwc
->lock
, flags
);
251 if (callback_required
&& callback
)
255 static void dwc_complete_all(struct dw_dma
*dw
, struct dw_dma_chan
*dwc
)
257 struct dw_desc
*desc
, *_desc
;
261 spin_lock_irqsave(&dwc
->lock
, flags
);
262 if (dma_readl(dw
, CH_EN
) & dwc
->mask
) {
263 dev_err(chan2dev(&dwc
->chan
),
264 "BUG: XFER bit set, but channel not idle!\n");
266 /* Try to continue after resetting the channel... */
267 channel_clear_bit(dw
, CH_EN
, dwc
->mask
);
268 while (dma_readl(dw
, CH_EN
) & dwc
->mask
)
273 * Submit queued descriptors ASAP, i.e. before we go through
274 * the completed ones.
276 list_splice_init(&dwc
->active_list
, &list
);
277 if (!list_empty(&dwc
->queue
)) {
278 list_move(dwc
->queue
.next
, &dwc
->active_list
);
279 dwc_dostart(dwc
, dwc_first_active(dwc
));
282 spin_unlock_irqrestore(&dwc
->lock
, flags
);
284 list_for_each_entry_safe(desc
, _desc
, &list
, desc_node
)
285 dwc_descriptor_complete(dwc
, desc
, true);
288 static void dwc_scan_descriptors(struct dw_dma
*dw
, struct dw_dma_chan
*dwc
)
291 struct dw_desc
*desc
, *_desc
;
292 struct dw_desc
*child
;
296 spin_lock_irqsave(&dwc
->lock
, flags
);
298 * Clear block interrupt flag before scanning so that we don't
299 * miss any, and read LLP before RAW_XFER to ensure it is
300 * valid if we decide to scan the list.
302 dma_writel(dw
, CLEAR
.BLOCK
, dwc
->mask
);
303 llp
= channel_readl(dwc
, LLP
);
304 status_xfer
= dma_readl(dw
, RAW
.XFER
);
306 if (status_xfer
& dwc
->mask
) {
307 /* Everything we've submitted is done */
308 dma_writel(dw
, CLEAR
.XFER
, dwc
->mask
);
309 spin_unlock_irqrestore(&dwc
->lock
, flags
);
311 dwc_complete_all(dw
, dwc
);
315 if (list_empty(&dwc
->active_list
)) {
316 spin_unlock_irqrestore(&dwc
->lock
, flags
);
320 dev_vdbg(chan2dev(&dwc
->chan
), "scan_descriptors: llp=0x%x\n", llp
);
322 list_for_each_entry_safe(desc
, _desc
, &dwc
->active_list
, desc_node
) {
323 /* check first descriptors addr */
324 if (desc
->txd
.phys
== llp
) {
325 spin_unlock_irqrestore(&dwc
->lock
, flags
);
329 /* check first descriptors llp */
330 if (desc
->lli
.llp
== llp
) {
331 /* This one is currently in progress */
332 spin_unlock_irqrestore(&dwc
->lock
, flags
);
336 list_for_each_entry(child
, &desc
->tx_list
, desc_node
)
337 if (child
->lli
.llp
== llp
) {
338 /* Currently in progress */
339 spin_unlock_irqrestore(&dwc
->lock
, flags
);
344 * No descriptors so far seem to be in progress, i.e.
345 * this one must be done.
347 spin_unlock_irqrestore(&dwc
->lock
, flags
);
348 dwc_descriptor_complete(dwc
, desc
, true);
349 spin_lock_irqsave(&dwc
->lock
, flags
);
352 dev_err(chan2dev(&dwc
->chan
),
353 "BUG: All descriptors done, but channel not idle!\n");
355 /* Try to continue after resetting the channel... */
356 channel_clear_bit(dw
, CH_EN
, dwc
->mask
);
357 while (dma_readl(dw
, CH_EN
) & dwc
->mask
)
360 if (!list_empty(&dwc
->queue
)) {
361 list_move(dwc
->queue
.next
, &dwc
->active_list
);
362 dwc_dostart(dwc
, dwc_first_active(dwc
));
364 spin_unlock_irqrestore(&dwc
->lock
, flags
);
367 static void dwc_dump_lli(struct dw_dma_chan
*dwc
, struct dw_lli
*lli
)
369 dev_printk(KERN_CRIT
, chan2dev(&dwc
->chan
),
370 " desc: s0x%x d0x%x l0x%x c0x%x:%x\n",
371 lli
->sar
, lli
->dar
, lli
->llp
,
372 lli
->ctlhi
, lli
->ctllo
);
375 static void dwc_handle_error(struct dw_dma
*dw
, struct dw_dma_chan
*dwc
)
377 struct dw_desc
*bad_desc
;
378 struct dw_desc
*child
;
381 dwc_scan_descriptors(dw
, dwc
);
383 spin_lock_irqsave(&dwc
->lock
, flags
);
386 * The descriptor currently at the head of the active list is
387 * borked. Since we don't have any way to report errors, we'll
388 * just have to scream loudly and try to carry on.
390 bad_desc
= dwc_first_active(dwc
);
391 list_del_init(&bad_desc
->desc_node
);
392 list_move(dwc
->queue
.next
, dwc
->active_list
.prev
);
394 /* Clear the error flag and try to restart the controller */
395 dma_writel(dw
, CLEAR
.ERROR
, dwc
->mask
);
396 if (!list_empty(&dwc
->active_list
))
397 dwc_dostart(dwc
, dwc_first_active(dwc
));
400 * KERN_CRITICAL may seem harsh, but since this only happens
401 * when someone submits a bad physical address in a
402 * descriptor, we should consider ourselves lucky that the
403 * controller flagged an error instead of scribbling over
404 * random memory locations.
406 dev_printk(KERN_CRIT
, chan2dev(&dwc
->chan
),
407 "Bad descriptor submitted for DMA!\n");
408 dev_printk(KERN_CRIT
, chan2dev(&dwc
->chan
),
409 " cookie: %d\n", bad_desc
->txd
.cookie
);
410 dwc_dump_lli(dwc
, &bad_desc
->lli
);
411 list_for_each_entry(child
, &bad_desc
->tx_list
, desc_node
)
412 dwc_dump_lli(dwc
, &child
->lli
);
414 spin_unlock_irqrestore(&dwc
->lock
, flags
);
416 /* Pretend the descriptor completed successfully */
417 dwc_descriptor_complete(dwc
, bad_desc
, true);
420 /* --------------------- Cyclic DMA API extensions -------------------- */
422 inline dma_addr_t
dw_dma_get_src_addr(struct dma_chan
*chan
)
424 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
425 return channel_readl(dwc
, SAR
);
427 EXPORT_SYMBOL(dw_dma_get_src_addr
);
429 inline dma_addr_t
dw_dma_get_dst_addr(struct dma_chan
*chan
)
431 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
432 return channel_readl(dwc
, DAR
);
434 EXPORT_SYMBOL(dw_dma_get_dst_addr
);
436 /* called with dwc->lock held and all DMAC interrupts disabled */
437 static void dwc_handle_cyclic(struct dw_dma
*dw
, struct dw_dma_chan
*dwc
,
438 u32 status_block
, u32 status_err
, u32 status_xfer
)
442 if (status_block
& dwc
->mask
) {
443 void (*callback
)(void *param
);
444 void *callback_param
;
446 dev_vdbg(chan2dev(&dwc
->chan
), "new cyclic period llp 0x%08x\n",
447 channel_readl(dwc
, LLP
));
448 dma_writel(dw
, CLEAR
.BLOCK
, dwc
->mask
);
450 callback
= dwc
->cdesc
->period_callback
;
451 callback_param
= dwc
->cdesc
->period_callback_param
;
454 callback(callback_param
);
458 * Error and transfer complete are highly unlikely, and will most
459 * likely be due to a configuration error by the user.
461 if (unlikely(status_err
& dwc
->mask
) ||
462 unlikely(status_xfer
& dwc
->mask
)) {
465 dev_err(chan2dev(&dwc
->chan
), "cyclic DMA unexpected %s "
466 "interrupt, stopping DMA transfer\n",
467 status_xfer
? "xfer" : "error");
469 spin_lock_irqsave(&dwc
->lock
, flags
);
471 dev_err(chan2dev(&dwc
->chan
),
472 " SAR: 0x%x DAR: 0x%x LLP: 0x%x CTL: 0x%x:%08x\n",
473 channel_readl(dwc
, SAR
),
474 channel_readl(dwc
, DAR
),
475 channel_readl(dwc
, LLP
),
476 channel_readl(dwc
, CTL_HI
),
477 channel_readl(dwc
, CTL_LO
));
479 channel_clear_bit(dw
, CH_EN
, dwc
->mask
);
480 while (dma_readl(dw
, CH_EN
) & dwc
->mask
)
483 /* make sure DMA does not restart by loading a new list */
484 channel_writel(dwc
, LLP
, 0);
485 channel_writel(dwc
, CTL_LO
, 0);
486 channel_writel(dwc
, CTL_HI
, 0);
488 dma_writel(dw
, CLEAR
.BLOCK
, dwc
->mask
);
489 dma_writel(dw
, CLEAR
.ERROR
, dwc
->mask
);
490 dma_writel(dw
, CLEAR
.XFER
, dwc
->mask
);
492 for (i
= 0; i
< dwc
->cdesc
->periods
; i
++)
493 dwc_dump_lli(dwc
, &dwc
->cdesc
->desc
[i
]->lli
);
495 spin_unlock_irqrestore(&dwc
->lock
, flags
);
499 /* ------------------------------------------------------------------------- */
501 static void dw_dma_tasklet(unsigned long data
)
503 struct dw_dma
*dw
= (struct dw_dma
*)data
;
504 struct dw_dma_chan
*dwc
;
510 status_block
= dma_readl(dw
, RAW
.BLOCK
);
511 status_xfer
= dma_readl(dw
, RAW
.XFER
);
512 status_err
= dma_readl(dw
, RAW
.ERROR
);
514 dev_vdbg(dw
->dma
.dev
, "tasklet: status_block=%x status_err=%x\n",
515 status_block
, status_err
);
517 for (i
= 0; i
< dw
->dma
.chancnt
; i
++) {
519 if (test_bit(DW_DMA_IS_CYCLIC
, &dwc
->flags
))
520 dwc_handle_cyclic(dw
, dwc
, status_block
, status_err
,
522 else if (status_err
& (1 << i
))
523 dwc_handle_error(dw
, dwc
);
524 else if ((status_block
| status_xfer
) & (1 << i
))
525 dwc_scan_descriptors(dw
, dwc
);
529 * Re-enable interrupts. Block Complete interrupts are only
530 * enabled if the INT_EN bit in the descriptor is set. This
531 * will trigger a scan before the whole list is done.
533 channel_set_bit(dw
, MASK
.XFER
, dw
->all_chan_mask
);
534 channel_set_bit(dw
, MASK
.BLOCK
, dw
->all_chan_mask
);
535 channel_set_bit(dw
, MASK
.ERROR
, dw
->all_chan_mask
);
538 static irqreturn_t
dw_dma_interrupt(int irq
, void *dev_id
)
540 struct dw_dma
*dw
= dev_id
;
543 dev_vdbg(dw
->dma
.dev
, "interrupt: status=0x%x\n",
544 dma_readl(dw
, STATUS_INT
));
547 * Just disable the interrupts. We'll turn them back on in the
550 channel_clear_bit(dw
, MASK
.XFER
, dw
->all_chan_mask
);
551 channel_clear_bit(dw
, MASK
.BLOCK
, dw
->all_chan_mask
);
552 channel_clear_bit(dw
, MASK
.ERROR
, dw
->all_chan_mask
);
554 status
= dma_readl(dw
, STATUS_INT
);
557 "BUG: Unexpected interrupts pending: 0x%x\n",
561 channel_clear_bit(dw
, MASK
.XFER
, (1 << 8) - 1);
562 channel_clear_bit(dw
, MASK
.BLOCK
, (1 << 8) - 1);
563 channel_clear_bit(dw
, MASK
.SRC_TRAN
, (1 << 8) - 1);
564 channel_clear_bit(dw
, MASK
.DST_TRAN
, (1 << 8) - 1);
565 channel_clear_bit(dw
, MASK
.ERROR
, (1 << 8) - 1);
568 tasklet_schedule(&dw
->tasklet
);
573 /*----------------------------------------------------------------------*/
575 static dma_cookie_t
dwc_tx_submit(struct dma_async_tx_descriptor
*tx
)
577 struct dw_desc
*desc
= txd_to_dw_desc(tx
);
578 struct dw_dma_chan
*dwc
= to_dw_dma_chan(tx
->chan
);
582 spin_lock_irqsave(&dwc
->lock
, flags
);
583 cookie
= dwc_assign_cookie(dwc
, desc
);
586 * REVISIT: We should attempt to chain as many descriptors as
587 * possible, perhaps even appending to those already submitted
588 * for DMA. But this is hard to do in a race-free manner.
590 if (list_empty(&dwc
->active_list
)) {
591 dev_vdbg(chan2dev(tx
->chan
), "tx_submit: started %u\n",
593 list_add_tail(&desc
->desc_node
, &dwc
->active_list
);
594 dwc_dostart(dwc
, dwc_first_active(dwc
));
596 dev_vdbg(chan2dev(tx
->chan
), "tx_submit: queued %u\n",
599 list_add_tail(&desc
->desc_node
, &dwc
->queue
);
602 spin_unlock_irqrestore(&dwc
->lock
, flags
);
607 static struct dma_async_tx_descriptor
*
608 dwc_prep_dma_memcpy(struct dma_chan
*chan
, dma_addr_t dest
, dma_addr_t src
,
609 size_t len
, unsigned long flags
)
611 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
612 struct dw_desc
*desc
;
613 struct dw_desc
*first
;
614 struct dw_desc
*prev
;
617 unsigned int src_width
;
618 unsigned int dst_width
;
621 dev_vdbg(chan2dev(chan
), "prep_dma_memcpy d0x%x s0x%x l0x%zx f0x%lx\n",
622 dest
, src
, len
, flags
);
624 if (unlikely(!len
)) {
625 dev_dbg(chan2dev(chan
), "prep_dma_memcpy: length is zero!\n");
630 * We can be a lot more clever here, but this should take care
631 * of the most common optimization.
633 if (!((src
| dest
| len
) & 7))
634 src_width
= dst_width
= 3;
635 else if (!((src
| dest
| len
) & 3))
636 src_width
= dst_width
= 2;
637 else if (!((src
| dest
| len
) & 1))
638 src_width
= dst_width
= 1;
640 src_width
= dst_width
= 0;
642 ctllo
= DWC_DEFAULT_CTLLO(chan
->private)
643 | DWC_CTLL_DST_WIDTH(dst_width
)
644 | DWC_CTLL_SRC_WIDTH(src_width
)
650 for (offset
= 0; offset
< len
; offset
+= xfer_count
<< src_width
) {
651 xfer_count
= min_t(size_t, (len
- offset
) >> src_width
,
654 desc
= dwc_desc_get(dwc
);
658 desc
->lli
.sar
= src
+ offset
;
659 desc
->lli
.dar
= dest
+ offset
;
660 desc
->lli
.ctllo
= ctllo
;
661 desc
->lli
.ctlhi
= xfer_count
;
666 prev
->lli
.llp
= desc
->txd
.phys
;
667 dma_sync_single_for_device(chan2parent(chan
),
668 prev
->txd
.phys
, sizeof(prev
->lli
),
670 list_add_tail(&desc
->desc_node
,
677 if (flags
& DMA_PREP_INTERRUPT
)
678 /* Trigger interrupt after last block */
679 prev
->lli
.ctllo
|= DWC_CTLL_INT_EN
;
682 dma_sync_single_for_device(chan2parent(chan
),
683 prev
->txd
.phys
, sizeof(prev
->lli
),
686 first
->txd
.flags
= flags
;
692 dwc_desc_put(dwc
, first
);
696 static struct dma_async_tx_descriptor
*
697 dwc_prep_slave_sg(struct dma_chan
*chan
, struct scatterlist
*sgl
,
698 unsigned int sg_len
, enum dma_data_direction direction
,
701 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
702 struct dw_dma_slave
*dws
= chan
->private;
703 struct dw_desc
*prev
;
704 struct dw_desc
*first
;
707 unsigned int reg_width
;
708 unsigned int mem_width
;
710 struct scatterlist
*sg
;
711 size_t total_len
= 0;
713 dev_vdbg(chan2dev(chan
), "prep_dma_slave\n");
715 if (unlikely(!dws
|| !sg_len
))
718 reg_width
= dws
->reg_width
;
723 ctllo
= (DWC_DEFAULT_CTLLO(chan
->private)
724 | DWC_CTLL_DST_WIDTH(reg_width
)
727 | DWC_CTLL_FC(dws
->fc
));
729 for_each_sg(sgl
, sg
, sg_len
, i
) {
730 struct dw_desc
*desc
;
734 len
= sg_dma_len(sg
);
736 if (unlikely(mem
& 3 || len
& 3))
739 slave_sg_todev_fill_desc
:
740 desc
= dwc_desc_get(dwc
);
742 dev_err(chan2dev(chan
),
743 "not enough descriptors available\n");
749 desc
->lli
.ctllo
= ctllo
| DWC_CTLL_SRC_WIDTH(mem_width
);
750 if ((len
>> mem_width
) > DWC_MAX_COUNT
) {
751 dlen
= DWC_MAX_COUNT
<< mem_width
;
759 desc
->lli
.ctlhi
= dlen
>> mem_width
;
764 prev
->lli
.llp
= desc
->txd
.phys
;
765 dma_sync_single_for_device(chan2parent(chan
),
769 list_add_tail(&desc
->desc_node
,
776 goto slave_sg_todev_fill_desc
;
779 case DMA_FROM_DEVICE
:
780 ctllo
= (DWC_DEFAULT_CTLLO(chan
->private)
781 | DWC_CTLL_SRC_WIDTH(reg_width
)
784 | DWC_CTLL_FC(dws
->fc
));
787 for_each_sg(sgl
, sg
, sg_len
, i
) {
788 struct dw_desc
*desc
;
792 len
= sg_dma_len(sg
);
794 if (unlikely(mem
& 3 || len
& 3))
797 slave_sg_fromdev_fill_desc
:
798 desc
= dwc_desc_get(dwc
);
800 dev_err(chan2dev(chan
),
801 "not enough descriptors available\n");
807 desc
->lli
.ctllo
= ctllo
| DWC_CTLL_DST_WIDTH(mem_width
);
808 if ((len
>> reg_width
) > DWC_MAX_COUNT
) {
809 dlen
= DWC_MAX_COUNT
<< reg_width
;
816 desc
->lli
.ctlhi
= dlen
>> reg_width
;
821 prev
->lli
.llp
= desc
->txd
.phys
;
822 dma_sync_single_for_device(chan2parent(chan
),
826 list_add_tail(&desc
->desc_node
,
833 goto slave_sg_fromdev_fill_desc
;
840 if (flags
& DMA_PREP_INTERRUPT
)
841 /* Trigger interrupt after last block */
842 prev
->lli
.ctllo
|= DWC_CTLL_INT_EN
;
845 dma_sync_single_for_device(chan2parent(chan
),
846 prev
->txd
.phys
, sizeof(prev
->lli
),
849 first
->len
= total_len
;
854 dwc_desc_put(dwc
, first
);
858 static int dwc_control(struct dma_chan
*chan
, enum dma_ctrl_cmd cmd
,
861 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
862 struct dw_dma
*dw
= to_dw_dma(chan
->device
);
863 struct dw_desc
*desc
, *_desc
;
867 /* Only supports DMA_TERMINATE_ALL */
868 if (cmd
!= DMA_TERMINATE_ALL
)
872 * This is only called when something went wrong elsewhere, so
873 * we don't really care about the data. Just disable the
874 * channel. We still have to poll the channel enable bit due
875 * to AHB/HSB limitations.
877 spin_lock_irqsave(&dwc
->lock
, flags
);
879 channel_clear_bit(dw
, CH_EN
, dwc
->mask
);
881 while (dma_readl(dw
, CH_EN
) & dwc
->mask
)
884 /* active_list entries will end up before queued entries */
885 list_splice_init(&dwc
->queue
, &list
);
886 list_splice_init(&dwc
->active_list
, &list
);
888 spin_unlock_irqrestore(&dwc
->lock
, flags
);
890 /* Flush all pending and queued descriptors */
891 list_for_each_entry_safe(desc
, _desc
, &list
, desc_node
)
892 dwc_descriptor_complete(dwc
, desc
, false);
897 static enum dma_status
898 dwc_tx_status(struct dma_chan
*chan
,
900 struct dma_tx_state
*txstate
)
902 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
903 dma_cookie_t last_used
;
904 dma_cookie_t last_complete
;
907 last_complete
= dwc
->completed
;
908 last_used
= chan
->cookie
;
910 ret
= dma_async_is_complete(cookie
, last_complete
, last_used
);
911 if (ret
!= DMA_SUCCESS
) {
912 dwc_scan_descriptors(to_dw_dma(chan
->device
), dwc
);
914 last_complete
= dwc
->completed
;
915 last_used
= chan
->cookie
;
917 ret
= dma_async_is_complete(cookie
, last_complete
, last_used
);
920 if (ret
!= DMA_SUCCESS
)
921 dma_set_tx_state(txstate
, last_complete
, last_used
,
922 dwc_first_active(dwc
)->len
);
924 dma_set_tx_state(txstate
, last_complete
, last_used
, 0);
929 static void dwc_issue_pending(struct dma_chan
*chan
)
931 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
933 if (!list_empty(&dwc
->queue
))
934 dwc_scan_descriptors(to_dw_dma(chan
->device
), dwc
);
937 static int dwc_alloc_chan_resources(struct dma_chan
*chan
)
939 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
940 struct dw_dma
*dw
= to_dw_dma(chan
->device
);
941 struct dw_desc
*desc
;
942 struct dw_dma_slave
*dws
;
948 dev_vdbg(chan2dev(chan
), "alloc_chan_resources\n");
950 /* ASSERT: channel is idle */
951 if (dma_readl(dw
, CH_EN
) & dwc
->mask
) {
952 dev_dbg(chan2dev(chan
), "DMA channel not idle?\n");
956 dwc
->completed
= chan
->cookie
= 1;
958 cfghi
= DWC_CFGH_FIFO_MODE
;
964 * We need controller-specific data to set up slave
967 BUG_ON(!dws
->dma_dev
|| dws
->dma_dev
!= dw
->dma
.dev
);
970 cfglo
= dws
->cfg_lo
& ~DWC_CFGL_CH_PRIOR_MASK
;
973 cfglo
|= DWC_CFGL_CH_PRIOR(dwc
->priority
);
975 channel_writel(dwc
, CFG_LO
, cfglo
);
976 channel_writel(dwc
, CFG_HI
, cfghi
);
979 * NOTE: some controllers may have additional features that we
980 * need to initialize here, like "scatter-gather" (which
981 * doesn't mean what you think it means), and status writeback.
984 spin_lock_irqsave(&dwc
->lock
, flags
);
985 i
= dwc
->descs_allocated
;
986 while (dwc
->descs_allocated
< NR_DESCS_PER_CHANNEL
) {
987 spin_unlock_irqrestore(&dwc
->lock
, flags
);
989 desc
= kzalloc(sizeof(struct dw_desc
), GFP_KERNEL
);
991 dev_info(chan2dev(chan
),
992 "only allocated %d descriptors\n", i
);
993 spin_lock_irqsave(&dwc
->lock
, flags
);
997 INIT_LIST_HEAD(&desc
->tx_list
);
998 dma_async_tx_descriptor_init(&desc
->txd
, chan
);
999 desc
->txd
.tx_submit
= dwc_tx_submit
;
1000 desc
->txd
.flags
= DMA_CTRL_ACK
;
1001 desc
->txd
.phys
= dma_map_single(chan2parent(chan
), &desc
->lli
,
1002 sizeof(desc
->lli
), DMA_TO_DEVICE
);
1003 dwc_desc_put(dwc
, desc
);
1005 spin_lock_irqsave(&dwc
->lock
, flags
);
1006 i
= ++dwc
->descs_allocated
;
1009 /* Enable interrupts */
1010 channel_set_bit(dw
, MASK
.XFER
, dwc
->mask
);
1011 channel_set_bit(dw
, MASK
.BLOCK
, dwc
->mask
);
1012 channel_set_bit(dw
, MASK
.ERROR
, dwc
->mask
);
1014 spin_unlock_irqrestore(&dwc
->lock
, flags
);
1016 dev_dbg(chan2dev(chan
),
1017 "alloc_chan_resources allocated %d descriptors\n", i
);
1022 static void dwc_free_chan_resources(struct dma_chan
*chan
)
1024 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
1025 struct dw_dma
*dw
= to_dw_dma(chan
->device
);
1026 struct dw_desc
*desc
, *_desc
;
1027 unsigned long flags
;
1030 dev_dbg(chan2dev(chan
), "free_chan_resources (descs allocated=%u)\n",
1031 dwc
->descs_allocated
);
1033 /* ASSERT: channel is idle */
1034 BUG_ON(!list_empty(&dwc
->active_list
));
1035 BUG_ON(!list_empty(&dwc
->queue
));
1036 BUG_ON(dma_readl(to_dw_dma(chan
->device
), CH_EN
) & dwc
->mask
);
1038 spin_lock_irqsave(&dwc
->lock
, flags
);
1039 list_splice_init(&dwc
->free_list
, &list
);
1040 dwc
->descs_allocated
= 0;
1042 /* Disable interrupts */
1043 channel_clear_bit(dw
, MASK
.XFER
, dwc
->mask
);
1044 channel_clear_bit(dw
, MASK
.BLOCK
, dwc
->mask
);
1045 channel_clear_bit(dw
, MASK
.ERROR
, dwc
->mask
);
1047 spin_unlock_irqrestore(&dwc
->lock
, flags
);
1049 list_for_each_entry_safe(desc
, _desc
, &list
, desc_node
) {
1050 dev_vdbg(chan2dev(chan
), " freeing descriptor %p\n", desc
);
1051 dma_unmap_single(chan2parent(chan
), desc
->txd
.phys
,
1052 sizeof(desc
->lli
), DMA_TO_DEVICE
);
1056 dev_vdbg(chan2dev(chan
), "free_chan_resources done\n");
1059 /* --------------------- Cyclic DMA API extensions -------------------- */
1062 * dw_dma_cyclic_start - start the cyclic DMA transfer
1063 * @chan: the DMA channel to start
1065 * Must be called with soft interrupts disabled. Returns zero on success or
1066 * -errno on failure.
1068 int dw_dma_cyclic_start(struct dma_chan
*chan
)
1070 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
1071 struct dw_dma
*dw
= to_dw_dma(dwc
->chan
.device
);
1072 unsigned long flags
;
1074 if (!test_bit(DW_DMA_IS_CYCLIC
, &dwc
->flags
)) {
1075 dev_err(chan2dev(&dwc
->chan
), "missing prep for cyclic DMA\n");
1079 spin_lock_irqsave(&dwc
->lock
, flags
);
1081 /* assert channel is idle */
1082 if (dma_readl(dw
, CH_EN
) & dwc
->mask
) {
1083 dev_err(chan2dev(&dwc
->chan
),
1084 "BUG: Attempted to start non-idle channel\n");
1085 dev_err(chan2dev(&dwc
->chan
),
1086 " SAR: 0x%x DAR: 0x%x LLP: 0x%x CTL: 0x%x:%08x\n",
1087 channel_readl(dwc
, SAR
),
1088 channel_readl(dwc
, DAR
),
1089 channel_readl(dwc
, LLP
),
1090 channel_readl(dwc
, CTL_HI
),
1091 channel_readl(dwc
, CTL_LO
));
1092 spin_unlock_irqrestore(&dwc
->lock
, flags
);
1096 dma_writel(dw
, CLEAR
.BLOCK
, dwc
->mask
);
1097 dma_writel(dw
, CLEAR
.ERROR
, dwc
->mask
);
1098 dma_writel(dw
, CLEAR
.XFER
, dwc
->mask
);
1100 /* setup DMAC channel registers */
1101 channel_writel(dwc
, LLP
, dwc
->cdesc
->desc
[0]->txd
.phys
);
1102 channel_writel(dwc
, CTL_LO
, DWC_CTLL_LLP_D_EN
| DWC_CTLL_LLP_S_EN
);
1103 channel_writel(dwc
, CTL_HI
, 0);
1105 channel_set_bit(dw
, CH_EN
, dwc
->mask
);
1107 spin_unlock_irqrestore(&dwc
->lock
, flags
);
1111 EXPORT_SYMBOL(dw_dma_cyclic_start
);
1114 * dw_dma_cyclic_stop - stop the cyclic DMA transfer
1115 * @chan: the DMA channel to stop
1117 * Must be called with soft interrupts disabled.
1119 void dw_dma_cyclic_stop(struct dma_chan
*chan
)
1121 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
1122 struct dw_dma
*dw
= to_dw_dma(dwc
->chan
.device
);
1123 unsigned long flags
;
1125 spin_lock_irqsave(&dwc
->lock
, flags
);
1127 channel_clear_bit(dw
, CH_EN
, dwc
->mask
);
1128 while (dma_readl(dw
, CH_EN
) & dwc
->mask
)
1131 spin_unlock_irqrestore(&dwc
->lock
, flags
);
1133 EXPORT_SYMBOL(dw_dma_cyclic_stop
);
1136 * dw_dma_cyclic_prep - prepare the cyclic DMA transfer
1137 * @chan: the DMA channel to prepare
1138 * @buf_addr: physical DMA address where the buffer starts
1139 * @buf_len: total number of bytes for the entire buffer
1140 * @period_len: number of bytes for each period
1141 * @direction: transfer direction, to or from device
1143 * Must be called before trying to start the transfer. Returns a valid struct
1144 * dw_cyclic_desc if successful or an ERR_PTR(-errno) if not successful.
1146 struct dw_cyclic_desc
*dw_dma_cyclic_prep(struct dma_chan
*chan
,
1147 dma_addr_t buf_addr
, size_t buf_len
, size_t period_len
,
1148 enum dma_data_direction direction
)
1150 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
1151 struct dw_cyclic_desc
*cdesc
;
1152 struct dw_cyclic_desc
*retval
= NULL
;
1153 struct dw_desc
*desc
;
1154 struct dw_desc
*last
= NULL
;
1155 struct dw_dma_slave
*dws
= chan
->private;
1156 unsigned long was_cyclic
;
1157 unsigned int reg_width
;
1158 unsigned int periods
;
1160 unsigned long flags
;
1162 spin_lock_irqsave(&dwc
->lock
, flags
);
1163 if (!list_empty(&dwc
->queue
) || !list_empty(&dwc
->active_list
)) {
1164 spin_unlock_irqrestore(&dwc
->lock
, flags
);
1165 dev_dbg(chan2dev(&dwc
->chan
),
1166 "queue and/or active list are not empty\n");
1167 return ERR_PTR(-EBUSY
);
1170 was_cyclic
= test_and_set_bit(DW_DMA_IS_CYCLIC
, &dwc
->flags
);
1171 spin_unlock_irqrestore(&dwc
->lock
, flags
);
1173 dev_dbg(chan2dev(&dwc
->chan
),
1174 "channel already prepared for cyclic DMA\n");
1175 return ERR_PTR(-EBUSY
);
1178 retval
= ERR_PTR(-EINVAL
);
1179 reg_width
= dws
->reg_width
;
1180 periods
= buf_len
/ period_len
;
1182 /* Check for too big/unaligned periods and unaligned DMA buffer. */
1183 if (period_len
> (DWC_MAX_COUNT
<< reg_width
))
1185 if (unlikely(period_len
& ((1 << reg_width
) - 1)))
1187 if (unlikely(buf_addr
& ((1 << reg_width
) - 1)))
1189 if (unlikely(!(direction
& (DMA_TO_DEVICE
| DMA_FROM_DEVICE
))))
1192 retval
= ERR_PTR(-ENOMEM
);
1194 if (periods
> NR_DESCS_PER_CHANNEL
)
1197 cdesc
= kzalloc(sizeof(struct dw_cyclic_desc
), GFP_KERNEL
);
1201 cdesc
->desc
= kzalloc(sizeof(struct dw_desc
*) * periods
, GFP_KERNEL
);
1205 for (i
= 0; i
< periods
; i
++) {
1206 desc
= dwc_desc_get(dwc
);
1208 goto out_err_desc_get
;
1210 switch (direction
) {
1212 desc
->lli
.dar
= dws
->tx_reg
;
1213 desc
->lli
.sar
= buf_addr
+ (period_len
* i
);
1214 desc
->lli
.ctllo
= (DWC_DEFAULT_CTLLO(chan
->private)
1215 | DWC_CTLL_DST_WIDTH(reg_width
)
1216 | DWC_CTLL_SRC_WIDTH(reg_width
)
1219 | DWC_CTLL_FC(dws
->fc
)
1222 case DMA_FROM_DEVICE
:
1223 desc
->lli
.dar
= buf_addr
+ (period_len
* i
);
1224 desc
->lli
.sar
= dws
->rx_reg
;
1225 desc
->lli
.ctllo
= (DWC_DEFAULT_CTLLO(chan
->private)
1226 | DWC_CTLL_SRC_WIDTH(reg_width
)
1227 | DWC_CTLL_DST_WIDTH(reg_width
)
1230 | DWC_CTLL_FC(dws
->fc
)
1237 desc
->lli
.ctlhi
= (period_len
>> reg_width
);
1238 cdesc
->desc
[i
] = desc
;
1241 last
->lli
.llp
= desc
->txd
.phys
;
1242 dma_sync_single_for_device(chan2parent(chan
),
1243 last
->txd
.phys
, sizeof(last
->lli
),
1250 /* lets make a cyclic list */
1251 last
->lli
.llp
= cdesc
->desc
[0]->txd
.phys
;
1252 dma_sync_single_for_device(chan2parent(chan
), last
->txd
.phys
,
1253 sizeof(last
->lli
), DMA_TO_DEVICE
);
1255 dev_dbg(chan2dev(&dwc
->chan
), "cyclic prepared buf 0x%08x len %zu "
1256 "period %zu periods %d\n", buf_addr
, buf_len
,
1257 period_len
, periods
);
1259 cdesc
->periods
= periods
;
1266 dwc_desc_put(dwc
, cdesc
->desc
[i
]);
1270 clear_bit(DW_DMA_IS_CYCLIC
, &dwc
->flags
);
1271 return (struct dw_cyclic_desc
*)retval
;
1273 EXPORT_SYMBOL(dw_dma_cyclic_prep
);
1276 * dw_dma_cyclic_free - free a prepared cyclic DMA transfer
1277 * @chan: the DMA channel to free
1279 void dw_dma_cyclic_free(struct dma_chan
*chan
)
1281 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
1282 struct dw_dma
*dw
= to_dw_dma(dwc
->chan
.device
);
1283 struct dw_cyclic_desc
*cdesc
= dwc
->cdesc
;
1285 unsigned long flags
;
1287 dev_dbg(chan2dev(&dwc
->chan
), "cyclic free\n");
1292 spin_lock_irqsave(&dwc
->lock
, flags
);
1294 channel_clear_bit(dw
, CH_EN
, dwc
->mask
);
1295 while (dma_readl(dw
, CH_EN
) & dwc
->mask
)
1298 dma_writel(dw
, CLEAR
.BLOCK
, dwc
->mask
);
1299 dma_writel(dw
, CLEAR
.ERROR
, dwc
->mask
);
1300 dma_writel(dw
, CLEAR
.XFER
, dwc
->mask
);
1302 spin_unlock_irqrestore(&dwc
->lock
, flags
);
1304 for (i
= 0; i
< cdesc
->periods
; i
++)
1305 dwc_desc_put(dwc
, cdesc
->desc
[i
]);
1310 clear_bit(DW_DMA_IS_CYCLIC
, &dwc
->flags
);
1312 EXPORT_SYMBOL(dw_dma_cyclic_free
);
1314 /*----------------------------------------------------------------------*/
1316 static void dw_dma_off(struct dw_dma
*dw
)
1318 dma_writel(dw
, CFG
, 0);
1320 channel_clear_bit(dw
, MASK
.XFER
, dw
->all_chan_mask
);
1321 channel_clear_bit(dw
, MASK
.BLOCK
, dw
->all_chan_mask
);
1322 channel_clear_bit(dw
, MASK
.SRC_TRAN
, dw
->all_chan_mask
);
1323 channel_clear_bit(dw
, MASK
.DST_TRAN
, dw
->all_chan_mask
);
1324 channel_clear_bit(dw
, MASK
.ERROR
, dw
->all_chan_mask
);
1326 while (dma_readl(dw
, CFG
) & DW_CFG_DMA_EN
)
1330 static int __init
dw_probe(struct platform_device
*pdev
)
1332 struct dw_dma_platform_data
*pdata
;
1333 struct resource
*io
;
1340 pdata
= pdev
->dev
.platform_data
;
1341 if (!pdata
|| pdata
->nr_channels
> DW_DMA_MAX_NR_CHANNELS
)
1344 io
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1348 irq
= platform_get_irq(pdev
, 0);
1352 size
= sizeof(struct dw_dma
);
1353 size
+= pdata
->nr_channels
* sizeof(struct dw_dma_chan
);
1354 dw
= kzalloc(size
, GFP_KERNEL
);
1358 if (!request_mem_region(io
->start
, DW_REGLEN
, pdev
->dev
.driver
->name
)) {
1363 dw
->regs
= ioremap(io
->start
, DW_REGLEN
);
1369 dw
->clk
= clk_get(&pdev
->dev
, "hclk");
1370 if (IS_ERR(dw
->clk
)) {
1371 err
= PTR_ERR(dw
->clk
);
1374 clk_enable(dw
->clk
);
1376 /* force dma off, just in case */
1379 err
= request_irq(irq
, dw_dma_interrupt
, 0, "dw_dmac", dw
);
1383 platform_set_drvdata(pdev
, dw
);
1385 tasklet_init(&dw
->tasklet
, dw_dma_tasklet
, (unsigned long)dw
);
1387 dw
->all_chan_mask
= (1 << pdata
->nr_channels
) - 1;
1389 INIT_LIST_HEAD(&dw
->dma
.channels
);
1390 for (i
= 0; i
< pdata
->nr_channels
; i
++, dw
->dma
.chancnt
++) {
1391 struct dw_dma_chan
*dwc
= &dw
->chan
[i
];
1393 dwc
->chan
.device
= &dw
->dma
;
1394 dwc
->chan
.cookie
= dwc
->completed
= 1;
1395 dwc
->chan
.chan_id
= i
;
1396 if (pdata
->chan_allocation_order
== CHAN_ALLOCATION_ASCENDING
)
1397 list_add_tail(&dwc
->chan
.device_node
,
1400 list_add(&dwc
->chan
.device_node
, &dw
->dma
.channels
);
1402 /* 7 is highest priority & 0 is lowest. */
1403 if (pdata
->chan_priority
== CHAN_PRIORITY_ASCENDING
)
1404 dwc
->priority
= 7 - i
;
1408 dwc
->ch_regs
= &__dw_regs(dw
)->CHAN
[i
];
1409 spin_lock_init(&dwc
->lock
);
1412 INIT_LIST_HEAD(&dwc
->active_list
);
1413 INIT_LIST_HEAD(&dwc
->queue
);
1414 INIT_LIST_HEAD(&dwc
->free_list
);
1416 channel_clear_bit(dw
, CH_EN
, dwc
->mask
);
1419 /* Clear/disable all interrupts on all channels. */
1420 dma_writel(dw
, CLEAR
.XFER
, dw
->all_chan_mask
);
1421 dma_writel(dw
, CLEAR
.BLOCK
, dw
->all_chan_mask
);
1422 dma_writel(dw
, CLEAR
.SRC_TRAN
, dw
->all_chan_mask
);
1423 dma_writel(dw
, CLEAR
.DST_TRAN
, dw
->all_chan_mask
);
1424 dma_writel(dw
, CLEAR
.ERROR
, dw
->all_chan_mask
);
1426 channel_clear_bit(dw
, MASK
.XFER
, dw
->all_chan_mask
);
1427 channel_clear_bit(dw
, MASK
.BLOCK
, dw
->all_chan_mask
);
1428 channel_clear_bit(dw
, MASK
.SRC_TRAN
, dw
->all_chan_mask
);
1429 channel_clear_bit(dw
, MASK
.DST_TRAN
, dw
->all_chan_mask
);
1430 channel_clear_bit(dw
, MASK
.ERROR
, dw
->all_chan_mask
);
1432 dma_cap_set(DMA_MEMCPY
, dw
->dma
.cap_mask
);
1433 dma_cap_set(DMA_SLAVE
, dw
->dma
.cap_mask
);
1434 if (pdata
->is_private
)
1435 dma_cap_set(DMA_PRIVATE
, dw
->dma
.cap_mask
);
1436 dw
->dma
.dev
= &pdev
->dev
;
1437 dw
->dma
.device_alloc_chan_resources
= dwc_alloc_chan_resources
;
1438 dw
->dma
.device_free_chan_resources
= dwc_free_chan_resources
;
1440 dw
->dma
.device_prep_dma_memcpy
= dwc_prep_dma_memcpy
;
1442 dw
->dma
.device_prep_slave_sg
= dwc_prep_slave_sg
;
1443 dw
->dma
.device_control
= dwc_control
;
1445 dw
->dma
.device_tx_status
= dwc_tx_status
;
1446 dw
->dma
.device_issue_pending
= dwc_issue_pending
;
1448 dma_writel(dw
, CFG
, DW_CFG_DMA_EN
);
1450 printk(KERN_INFO
"%s: DesignWare DMA Controller, %d channels\n",
1451 dev_name(&pdev
->dev
), dw
->dma
.chancnt
);
1453 dma_async_device_register(&dw
->dma
);
1458 clk_disable(dw
->clk
);
1464 release_resource(io
);
1470 static int __exit
dw_remove(struct platform_device
*pdev
)
1472 struct dw_dma
*dw
= platform_get_drvdata(pdev
);
1473 struct dw_dma_chan
*dwc
, *_dwc
;
1474 struct resource
*io
;
1477 dma_async_device_unregister(&dw
->dma
);
1479 free_irq(platform_get_irq(pdev
, 0), dw
);
1480 tasklet_kill(&dw
->tasklet
);
1482 list_for_each_entry_safe(dwc
, _dwc
, &dw
->dma
.channels
,
1484 list_del(&dwc
->chan
.device_node
);
1485 channel_clear_bit(dw
, CH_EN
, dwc
->mask
);
1488 clk_disable(dw
->clk
);
1494 io
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1495 release_mem_region(io
->start
, DW_REGLEN
);
1502 static void dw_shutdown(struct platform_device
*pdev
)
1504 struct dw_dma
*dw
= platform_get_drvdata(pdev
);
1506 dw_dma_off(platform_get_drvdata(pdev
));
1507 clk_disable(dw
->clk
);
1510 static int dw_suspend_noirq(struct device
*dev
)
1512 struct platform_device
*pdev
= to_platform_device(dev
);
1513 struct dw_dma
*dw
= platform_get_drvdata(pdev
);
1515 dw_dma_off(platform_get_drvdata(pdev
));
1516 clk_disable(dw
->clk
);
1520 static int dw_resume_noirq(struct device
*dev
)
1522 struct platform_device
*pdev
= to_platform_device(dev
);
1523 struct dw_dma
*dw
= platform_get_drvdata(pdev
);
1525 clk_enable(dw
->clk
);
1526 dma_writel(dw
, CFG
, DW_CFG_DMA_EN
);
1530 static const struct dev_pm_ops dw_dev_pm_ops
= {
1531 .suspend_noirq
= dw_suspend_noirq
,
1532 .resume_noirq
= dw_resume_noirq
,
1535 static struct platform_driver dw_driver
= {
1536 .remove
= __exit_p(dw_remove
),
1537 .shutdown
= dw_shutdown
,
1540 .pm
= &dw_dev_pm_ops
,
1544 static int __init
dw_init(void)
1546 return platform_driver_probe(&dw_driver
, dw_probe
);
1548 subsys_initcall(dw_init
);
1550 static void __exit
dw_exit(void)
1552 platform_driver_unregister(&dw_driver
);
1554 module_exit(dw_exit
);
1556 MODULE_LICENSE("GPL v2");
1557 MODULE_DESCRIPTION("Synopsys DesignWare DMA Controller driver");
1558 MODULE_AUTHOR("Haavard Skinnemoen <haavard.skinnemoen@atmel.com>");