2 * Driver for the Synopsys DesignWare DMA Controller (aka DMACA on
5 * Copyright (C) 2007-2008 Atmel Corporation
6 * Copyright (C) 2010-2011 ST Microelectronics
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 #include <linux/clk.h>
13 #include <linux/delay.h>
14 #include <linux/dmaengine.h>
15 #include <linux/dma-mapping.h>
16 #include <linux/init.h>
17 #include <linux/interrupt.h>
20 #include <linux/module.h>
21 #include <linux/platform_device.h>
22 #include <linux/slab.h>
24 #include "dw_dmac_regs.h"
27 * This supports the Synopsys "DesignWare AHB Central DMA Controller",
28 * (DW_ahb_dmac) which is used with various AMBA 2.0 systems (not all
29 * of which use ARM any more). See the "Databook" from Synopsys for
30 * information beyond what licensees probably provide.
32 * The driver has currently been tested only with the Atmel AT32AP7000,
33 * which does not support descriptor writeback.
36 #define DWC_DEFAULT_CTLLO(private) ({ \
37 struct dw_dma_slave *__slave = (private); \
38 int dms = __slave ? __slave->dst_master : 0; \
39 int sms = __slave ? __slave->src_master : 1; \
40 u8 smsize = __slave ? __slave->src_msize : DW_DMA_MSIZE_16; \
41 u8 dmsize = __slave ? __slave->dst_msize : DW_DMA_MSIZE_16; \
43 (DWC_CTLL_DST_MSIZE(dmsize) \
44 | DWC_CTLL_SRC_MSIZE(smsize) \
48 | DWC_CTLL_SMS(sms)); \
52 * This is configuration-dependent and usually a funny size like 4095.
54 * Note that this is a transfer count, i.e. if we transfer 32-bit
55 * words, we can do 16380 bytes per descriptor.
57 * This parameter is also system-specific.
59 #define DWC_MAX_COUNT 4095U
62 * Number of descriptors to allocate for each channel. This should be
63 * made configurable somehow; preferably, the clients (at least the
64 * ones using slave transfers) should be able to give us a hint.
66 #define NR_DESCS_PER_CHANNEL 64
68 /*----------------------------------------------------------------------*/
71 * Because we're not relying on writeback from the controller (it may not
72 * even be configured into the core!) we don't need to use dma_pool. These
73 * descriptors -- and associated data -- are cacheable. We do need to make
74 * sure their dcache entries are written back before handing them off to
75 * the controller, though.
78 static struct device
*chan2dev(struct dma_chan
*chan
)
80 return &chan
->dev
->device
;
82 static struct device
*chan2parent(struct dma_chan
*chan
)
84 return chan
->dev
->device
.parent
;
87 static struct dw_desc
*dwc_first_active(struct dw_dma_chan
*dwc
)
89 return list_entry(dwc
->active_list
.next
, struct dw_desc
, desc_node
);
92 static struct dw_desc
*dwc_desc_get(struct dw_dma_chan
*dwc
)
94 struct dw_desc
*desc
, *_desc
;
95 struct dw_desc
*ret
= NULL
;
99 spin_lock_irqsave(&dwc
->lock
, flags
);
100 list_for_each_entry_safe(desc
, _desc
, &dwc
->free_list
, desc_node
) {
101 if (async_tx_test_ack(&desc
->txd
)) {
102 list_del(&desc
->desc_node
);
106 dev_dbg(chan2dev(&dwc
->chan
), "desc %p not ACKed\n", desc
);
109 spin_unlock_irqrestore(&dwc
->lock
, flags
);
111 dev_vdbg(chan2dev(&dwc
->chan
), "scanned %u descriptors on freelist\n", i
);
116 static void dwc_sync_desc_for_cpu(struct dw_dma_chan
*dwc
, struct dw_desc
*desc
)
118 struct dw_desc
*child
;
120 list_for_each_entry(child
, &desc
->tx_list
, desc_node
)
121 dma_sync_single_for_cpu(chan2parent(&dwc
->chan
),
122 child
->txd
.phys
, sizeof(child
->lli
),
124 dma_sync_single_for_cpu(chan2parent(&dwc
->chan
),
125 desc
->txd
.phys
, sizeof(desc
->lli
),
130 * Move a descriptor, including any children, to the free list.
131 * `desc' must not be on any lists.
133 static void dwc_desc_put(struct dw_dma_chan
*dwc
, struct dw_desc
*desc
)
138 struct dw_desc
*child
;
140 dwc_sync_desc_for_cpu(dwc
, desc
);
142 spin_lock_irqsave(&dwc
->lock
, flags
);
143 list_for_each_entry(child
, &desc
->tx_list
, desc_node
)
144 dev_vdbg(chan2dev(&dwc
->chan
),
145 "moving child desc %p to freelist\n",
147 list_splice_init(&desc
->tx_list
, &dwc
->free_list
);
148 dev_vdbg(chan2dev(&dwc
->chan
), "moving desc %p to freelist\n", desc
);
149 list_add(&desc
->desc_node
, &dwc
->free_list
);
150 spin_unlock_irqrestore(&dwc
->lock
, flags
);
154 /* Called with dwc->lock held and bh disabled */
156 dwc_assign_cookie(struct dw_dma_chan
*dwc
, struct dw_desc
*desc
)
158 dma_cookie_t cookie
= dwc
->chan
.cookie
;
163 dwc
->chan
.cookie
= cookie
;
164 desc
->txd
.cookie
= cookie
;
169 static void dwc_initialize(struct dw_dma_chan
*dwc
)
171 struct dw_dma
*dw
= to_dw_dma(dwc
->chan
.device
);
172 struct dw_dma_slave
*dws
= dwc
->chan
.private;
173 u32 cfghi
= DWC_CFGH_FIFO_MODE
;
174 u32 cfglo
= DWC_CFGL_CH_PRIOR(dwc
->priority
);
176 if (dwc
->initialized
== true)
181 * We need controller-specific data to set up slave
184 BUG_ON(!dws
->dma_dev
|| dws
->dma_dev
!= dw
->dma
.dev
);
187 cfglo
|= dws
->cfg_lo
& ~DWC_CFGL_CH_PRIOR_MASK
;
190 channel_writel(dwc
, CFG_LO
, cfglo
);
191 channel_writel(dwc
, CFG_HI
, cfghi
);
193 /* Enable interrupts */
194 channel_set_bit(dw
, MASK
.XFER
, dwc
->mask
);
195 channel_set_bit(dw
, MASK
.BLOCK
, dwc
->mask
);
196 channel_set_bit(dw
, MASK
.ERROR
, dwc
->mask
);
198 dwc
->initialized
= true;
201 /*----------------------------------------------------------------------*/
203 /* Called with dwc->lock held and bh disabled */
204 static void dwc_dostart(struct dw_dma_chan
*dwc
, struct dw_desc
*first
)
206 struct dw_dma
*dw
= to_dw_dma(dwc
->chan
.device
);
208 /* ASSERT: channel is idle */
209 if (dma_readl(dw
, CH_EN
) & dwc
->mask
) {
210 dev_err(chan2dev(&dwc
->chan
),
211 "BUG: Attempted to start non-idle channel\n");
212 dev_err(chan2dev(&dwc
->chan
),
213 " SAR: 0x%x DAR: 0x%x LLP: 0x%x CTL: 0x%x:%08x\n",
214 channel_readl(dwc
, SAR
),
215 channel_readl(dwc
, DAR
),
216 channel_readl(dwc
, LLP
),
217 channel_readl(dwc
, CTL_HI
),
218 channel_readl(dwc
, CTL_LO
));
220 /* The tasklet will hopefully advance the queue... */
226 channel_writel(dwc
, LLP
, first
->txd
.phys
);
227 channel_writel(dwc
, CTL_LO
,
228 DWC_CTLL_LLP_D_EN
| DWC_CTLL_LLP_S_EN
);
229 channel_writel(dwc
, CTL_HI
, 0);
230 channel_set_bit(dw
, CH_EN
, dwc
->mask
);
233 /*----------------------------------------------------------------------*/
236 dwc_descriptor_complete(struct dw_dma_chan
*dwc
, struct dw_desc
*desc
,
237 bool callback_required
)
239 dma_async_tx_callback callback
= NULL
;
241 struct dma_async_tx_descriptor
*txd
= &desc
->txd
;
242 struct dw_desc
*child
;
245 dev_vdbg(chan2dev(&dwc
->chan
), "descriptor %u complete\n", txd
->cookie
);
247 spin_lock_irqsave(&dwc
->lock
, flags
);
248 dwc
->completed
= txd
->cookie
;
249 if (callback_required
) {
250 callback
= txd
->callback
;
251 param
= txd
->callback_param
;
254 dwc_sync_desc_for_cpu(dwc
, desc
);
257 list_for_each_entry(child
, &desc
->tx_list
, desc_node
)
258 async_tx_ack(&child
->txd
);
259 async_tx_ack(&desc
->txd
);
261 list_splice_init(&desc
->tx_list
, &dwc
->free_list
);
262 list_move(&desc
->desc_node
, &dwc
->free_list
);
264 if (!dwc
->chan
.private) {
265 struct device
*parent
= chan2parent(&dwc
->chan
);
266 if (!(txd
->flags
& DMA_COMPL_SKIP_DEST_UNMAP
)) {
267 if (txd
->flags
& DMA_COMPL_DEST_UNMAP_SINGLE
)
268 dma_unmap_single(parent
, desc
->lli
.dar
,
269 desc
->len
, DMA_FROM_DEVICE
);
271 dma_unmap_page(parent
, desc
->lli
.dar
,
272 desc
->len
, DMA_FROM_DEVICE
);
274 if (!(txd
->flags
& DMA_COMPL_SKIP_SRC_UNMAP
)) {
275 if (txd
->flags
& DMA_COMPL_SRC_UNMAP_SINGLE
)
276 dma_unmap_single(parent
, desc
->lli
.sar
,
277 desc
->len
, DMA_TO_DEVICE
);
279 dma_unmap_page(parent
, desc
->lli
.sar
,
280 desc
->len
, DMA_TO_DEVICE
);
284 spin_unlock_irqrestore(&dwc
->lock
, flags
);
286 if (callback_required
&& callback
)
290 static void dwc_complete_all(struct dw_dma
*dw
, struct dw_dma_chan
*dwc
)
292 struct dw_desc
*desc
, *_desc
;
296 spin_lock_irqsave(&dwc
->lock
, flags
);
297 if (dma_readl(dw
, CH_EN
) & dwc
->mask
) {
298 dev_err(chan2dev(&dwc
->chan
),
299 "BUG: XFER bit set, but channel not idle!\n");
301 /* Try to continue after resetting the channel... */
302 channel_clear_bit(dw
, CH_EN
, dwc
->mask
);
303 while (dma_readl(dw
, CH_EN
) & dwc
->mask
)
308 * Submit queued descriptors ASAP, i.e. before we go through
309 * the completed ones.
311 list_splice_init(&dwc
->active_list
, &list
);
312 if (!list_empty(&dwc
->queue
)) {
313 list_move(dwc
->queue
.next
, &dwc
->active_list
);
314 dwc_dostart(dwc
, dwc_first_active(dwc
));
317 spin_unlock_irqrestore(&dwc
->lock
, flags
);
319 list_for_each_entry_safe(desc
, _desc
, &list
, desc_node
)
320 dwc_descriptor_complete(dwc
, desc
, true);
323 static void dwc_scan_descriptors(struct dw_dma
*dw
, struct dw_dma_chan
*dwc
)
326 struct dw_desc
*desc
, *_desc
;
327 struct dw_desc
*child
;
331 spin_lock_irqsave(&dwc
->lock
, flags
);
333 * Clear block interrupt flag before scanning so that we don't
334 * miss any, and read LLP before RAW_XFER to ensure it is
335 * valid if we decide to scan the list.
337 dma_writel(dw
, CLEAR
.BLOCK
, dwc
->mask
);
338 llp
= channel_readl(dwc
, LLP
);
339 status_xfer
= dma_readl(dw
, RAW
.XFER
);
341 if (status_xfer
& dwc
->mask
) {
342 /* Everything we've submitted is done */
343 dma_writel(dw
, CLEAR
.XFER
, dwc
->mask
);
344 spin_unlock_irqrestore(&dwc
->lock
, flags
);
346 dwc_complete_all(dw
, dwc
);
350 if (list_empty(&dwc
->active_list
)) {
351 spin_unlock_irqrestore(&dwc
->lock
, flags
);
355 dev_vdbg(chan2dev(&dwc
->chan
), "scan_descriptors: llp=0x%x\n", llp
);
357 list_for_each_entry_safe(desc
, _desc
, &dwc
->active_list
, desc_node
) {
358 /* check first descriptors addr */
359 if (desc
->txd
.phys
== llp
) {
360 spin_unlock_irqrestore(&dwc
->lock
, flags
);
364 /* check first descriptors llp */
365 if (desc
->lli
.llp
== llp
) {
366 /* This one is currently in progress */
367 spin_unlock_irqrestore(&dwc
->lock
, flags
);
371 list_for_each_entry(child
, &desc
->tx_list
, desc_node
)
372 if (child
->lli
.llp
== llp
) {
373 /* Currently in progress */
374 spin_unlock_irqrestore(&dwc
->lock
, flags
);
379 * No descriptors so far seem to be in progress, i.e.
380 * this one must be done.
382 spin_unlock_irqrestore(&dwc
->lock
, flags
);
383 dwc_descriptor_complete(dwc
, desc
, true);
384 spin_lock_irqsave(&dwc
->lock
, flags
);
387 dev_err(chan2dev(&dwc
->chan
),
388 "BUG: All descriptors done, but channel not idle!\n");
390 /* Try to continue after resetting the channel... */
391 channel_clear_bit(dw
, CH_EN
, dwc
->mask
);
392 while (dma_readl(dw
, CH_EN
) & dwc
->mask
)
395 if (!list_empty(&dwc
->queue
)) {
396 list_move(dwc
->queue
.next
, &dwc
->active_list
);
397 dwc_dostart(dwc
, dwc_first_active(dwc
));
399 spin_unlock_irqrestore(&dwc
->lock
, flags
);
402 static void dwc_dump_lli(struct dw_dma_chan
*dwc
, struct dw_lli
*lli
)
404 dev_printk(KERN_CRIT
, chan2dev(&dwc
->chan
),
405 " desc: s0x%x d0x%x l0x%x c0x%x:%x\n",
406 lli
->sar
, lli
->dar
, lli
->llp
,
407 lli
->ctlhi
, lli
->ctllo
);
410 static void dwc_handle_error(struct dw_dma
*dw
, struct dw_dma_chan
*dwc
)
412 struct dw_desc
*bad_desc
;
413 struct dw_desc
*child
;
416 dwc_scan_descriptors(dw
, dwc
);
418 spin_lock_irqsave(&dwc
->lock
, flags
);
421 * The descriptor currently at the head of the active list is
422 * borked. Since we don't have any way to report errors, we'll
423 * just have to scream loudly and try to carry on.
425 bad_desc
= dwc_first_active(dwc
);
426 list_del_init(&bad_desc
->desc_node
);
427 list_move(dwc
->queue
.next
, dwc
->active_list
.prev
);
429 /* Clear the error flag and try to restart the controller */
430 dma_writel(dw
, CLEAR
.ERROR
, dwc
->mask
);
431 if (!list_empty(&dwc
->active_list
))
432 dwc_dostart(dwc
, dwc_first_active(dwc
));
435 * KERN_CRITICAL may seem harsh, but since this only happens
436 * when someone submits a bad physical address in a
437 * descriptor, we should consider ourselves lucky that the
438 * controller flagged an error instead of scribbling over
439 * random memory locations.
441 dev_printk(KERN_CRIT
, chan2dev(&dwc
->chan
),
442 "Bad descriptor submitted for DMA!\n");
443 dev_printk(KERN_CRIT
, chan2dev(&dwc
->chan
),
444 " cookie: %d\n", bad_desc
->txd
.cookie
);
445 dwc_dump_lli(dwc
, &bad_desc
->lli
);
446 list_for_each_entry(child
, &bad_desc
->tx_list
, desc_node
)
447 dwc_dump_lli(dwc
, &child
->lli
);
449 spin_unlock_irqrestore(&dwc
->lock
, flags
);
451 /* Pretend the descriptor completed successfully */
452 dwc_descriptor_complete(dwc
, bad_desc
, true);
455 /* --------------------- Cyclic DMA API extensions -------------------- */
457 inline dma_addr_t
dw_dma_get_src_addr(struct dma_chan
*chan
)
459 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
460 return channel_readl(dwc
, SAR
);
462 EXPORT_SYMBOL(dw_dma_get_src_addr
);
464 inline dma_addr_t
dw_dma_get_dst_addr(struct dma_chan
*chan
)
466 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
467 return channel_readl(dwc
, DAR
);
469 EXPORT_SYMBOL(dw_dma_get_dst_addr
);
471 /* called with dwc->lock held and all DMAC interrupts disabled */
472 static void dwc_handle_cyclic(struct dw_dma
*dw
, struct dw_dma_chan
*dwc
,
473 u32 status_block
, u32 status_err
, u32 status_xfer
)
477 if (status_block
& dwc
->mask
) {
478 void (*callback
)(void *param
);
479 void *callback_param
;
481 dev_vdbg(chan2dev(&dwc
->chan
), "new cyclic period llp 0x%08x\n",
482 channel_readl(dwc
, LLP
));
483 dma_writel(dw
, CLEAR
.BLOCK
, dwc
->mask
);
485 callback
= dwc
->cdesc
->period_callback
;
486 callback_param
= dwc
->cdesc
->period_callback_param
;
489 callback(callback_param
);
493 * Error and transfer complete are highly unlikely, and will most
494 * likely be due to a configuration error by the user.
496 if (unlikely(status_err
& dwc
->mask
) ||
497 unlikely(status_xfer
& dwc
->mask
)) {
500 dev_err(chan2dev(&dwc
->chan
), "cyclic DMA unexpected %s "
501 "interrupt, stopping DMA transfer\n",
502 status_xfer
? "xfer" : "error");
504 spin_lock_irqsave(&dwc
->lock
, flags
);
506 dev_err(chan2dev(&dwc
->chan
),
507 " SAR: 0x%x DAR: 0x%x LLP: 0x%x CTL: 0x%x:%08x\n",
508 channel_readl(dwc
, SAR
),
509 channel_readl(dwc
, DAR
),
510 channel_readl(dwc
, LLP
),
511 channel_readl(dwc
, CTL_HI
),
512 channel_readl(dwc
, CTL_LO
));
514 channel_clear_bit(dw
, CH_EN
, dwc
->mask
);
515 while (dma_readl(dw
, CH_EN
) & dwc
->mask
)
518 /* make sure DMA does not restart by loading a new list */
519 channel_writel(dwc
, LLP
, 0);
520 channel_writel(dwc
, CTL_LO
, 0);
521 channel_writel(dwc
, CTL_HI
, 0);
523 dma_writel(dw
, CLEAR
.BLOCK
, dwc
->mask
);
524 dma_writel(dw
, CLEAR
.ERROR
, dwc
->mask
);
525 dma_writel(dw
, CLEAR
.XFER
, dwc
->mask
);
527 for (i
= 0; i
< dwc
->cdesc
->periods
; i
++)
528 dwc_dump_lli(dwc
, &dwc
->cdesc
->desc
[i
]->lli
);
530 spin_unlock_irqrestore(&dwc
->lock
, flags
);
534 /* ------------------------------------------------------------------------- */
536 static void dw_dma_tasklet(unsigned long data
)
538 struct dw_dma
*dw
= (struct dw_dma
*)data
;
539 struct dw_dma_chan
*dwc
;
545 status_block
= dma_readl(dw
, RAW
.BLOCK
);
546 status_xfer
= dma_readl(dw
, RAW
.XFER
);
547 status_err
= dma_readl(dw
, RAW
.ERROR
);
549 dev_vdbg(dw
->dma
.dev
, "tasklet: status_block=%x status_err=%x\n",
550 status_block
, status_err
);
552 for (i
= 0; i
< dw
->dma
.chancnt
; i
++) {
554 if (test_bit(DW_DMA_IS_CYCLIC
, &dwc
->flags
))
555 dwc_handle_cyclic(dw
, dwc
, status_block
, status_err
,
557 else if (status_err
& (1 << i
))
558 dwc_handle_error(dw
, dwc
);
559 else if ((status_block
| status_xfer
) & (1 << i
))
560 dwc_scan_descriptors(dw
, dwc
);
564 * Re-enable interrupts. Block Complete interrupts are only
565 * enabled if the INT_EN bit in the descriptor is set. This
566 * will trigger a scan before the whole list is done.
568 channel_set_bit(dw
, MASK
.XFER
, dw
->all_chan_mask
);
569 channel_set_bit(dw
, MASK
.BLOCK
, dw
->all_chan_mask
);
570 channel_set_bit(dw
, MASK
.ERROR
, dw
->all_chan_mask
);
573 static irqreturn_t
dw_dma_interrupt(int irq
, void *dev_id
)
575 struct dw_dma
*dw
= dev_id
;
578 dev_vdbg(dw
->dma
.dev
, "interrupt: status=0x%x\n",
579 dma_readl(dw
, STATUS_INT
));
582 * Just disable the interrupts. We'll turn them back on in the
585 channel_clear_bit(dw
, MASK
.XFER
, dw
->all_chan_mask
);
586 channel_clear_bit(dw
, MASK
.BLOCK
, dw
->all_chan_mask
);
587 channel_clear_bit(dw
, MASK
.ERROR
, dw
->all_chan_mask
);
589 status
= dma_readl(dw
, STATUS_INT
);
592 "BUG: Unexpected interrupts pending: 0x%x\n",
596 channel_clear_bit(dw
, MASK
.XFER
, (1 << 8) - 1);
597 channel_clear_bit(dw
, MASK
.BLOCK
, (1 << 8) - 1);
598 channel_clear_bit(dw
, MASK
.SRC_TRAN
, (1 << 8) - 1);
599 channel_clear_bit(dw
, MASK
.DST_TRAN
, (1 << 8) - 1);
600 channel_clear_bit(dw
, MASK
.ERROR
, (1 << 8) - 1);
603 tasklet_schedule(&dw
->tasklet
);
608 /*----------------------------------------------------------------------*/
610 static dma_cookie_t
dwc_tx_submit(struct dma_async_tx_descriptor
*tx
)
612 struct dw_desc
*desc
= txd_to_dw_desc(tx
);
613 struct dw_dma_chan
*dwc
= to_dw_dma_chan(tx
->chan
);
617 spin_lock_irqsave(&dwc
->lock
, flags
);
618 cookie
= dwc_assign_cookie(dwc
, desc
);
621 * REVISIT: We should attempt to chain as many descriptors as
622 * possible, perhaps even appending to those already submitted
623 * for DMA. But this is hard to do in a race-free manner.
625 if (list_empty(&dwc
->active_list
)) {
626 dev_vdbg(chan2dev(tx
->chan
), "tx_submit: started %u\n",
628 list_add_tail(&desc
->desc_node
, &dwc
->active_list
);
629 dwc_dostart(dwc
, dwc_first_active(dwc
));
631 dev_vdbg(chan2dev(tx
->chan
), "tx_submit: queued %u\n",
634 list_add_tail(&desc
->desc_node
, &dwc
->queue
);
637 spin_unlock_irqrestore(&dwc
->lock
, flags
);
642 static struct dma_async_tx_descriptor
*
643 dwc_prep_dma_memcpy(struct dma_chan
*chan
, dma_addr_t dest
, dma_addr_t src
,
644 size_t len
, unsigned long flags
)
646 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
647 struct dw_desc
*desc
;
648 struct dw_desc
*first
;
649 struct dw_desc
*prev
;
652 unsigned int src_width
;
653 unsigned int dst_width
;
656 dev_vdbg(chan2dev(chan
), "prep_dma_memcpy d0x%x s0x%x l0x%zx f0x%lx\n",
657 dest
, src
, len
, flags
);
659 if (unlikely(!len
)) {
660 dev_dbg(chan2dev(chan
), "prep_dma_memcpy: length is zero!\n");
665 * We can be a lot more clever here, but this should take care
666 * of the most common optimization.
668 if (!((src
| dest
| len
) & 7))
669 src_width
= dst_width
= 3;
670 else if (!((src
| dest
| len
) & 3))
671 src_width
= dst_width
= 2;
672 else if (!((src
| dest
| len
) & 1))
673 src_width
= dst_width
= 1;
675 src_width
= dst_width
= 0;
677 ctllo
= DWC_DEFAULT_CTLLO(chan
->private)
678 | DWC_CTLL_DST_WIDTH(dst_width
)
679 | DWC_CTLL_SRC_WIDTH(src_width
)
685 for (offset
= 0; offset
< len
; offset
+= xfer_count
<< src_width
) {
686 xfer_count
= min_t(size_t, (len
- offset
) >> src_width
,
689 desc
= dwc_desc_get(dwc
);
693 desc
->lli
.sar
= src
+ offset
;
694 desc
->lli
.dar
= dest
+ offset
;
695 desc
->lli
.ctllo
= ctllo
;
696 desc
->lli
.ctlhi
= xfer_count
;
701 prev
->lli
.llp
= desc
->txd
.phys
;
702 dma_sync_single_for_device(chan2parent(chan
),
703 prev
->txd
.phys
, sizeof(prev
->lli
),
705 list_add_tail(&desc
->desc_node
,
712 if (flags
& DMA_PREP_INTERRUPT
)
713 /* Trigger interrupt after last block */
714 prev
->lli
.ctllo
|= DWC_CTLL_INT_EN
;
717 dma_sync_single_for_device(chan2parent(chan
),
718 prev
->txd
.phys
, sizeof(prev
->lli
),
721 first
->txd
.flags
= flags
;
727 dwc_desc_put(dwc
, first
);
731 static struct dma_async_tx_descriptor
*
732 dwc_prep_slave_sg(struct dma_chan
*chan
, struct scatterlist
*sgl
,
733 unsigned int sg_len
, enum dma_transfer_direction direction
,
736 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
737 struct dw_dma_slave
*dws
= chan
->private;
738 struct dw_desc
*prev
;
739 struct dw_desc
*first
;
742 unsigned int reg_width
;
743 unsigned int mem_width
;
745 struct scatterlist
*sg
;
746 size_t total_len
= 0;
748 dev_vdbg(chan2dev(chan
), "prep_dma_slave\n");
750 if (unlikely(!dws
|| !sg_len
))
753 reg_width
= dws
->reg_width
;
758 ctllo
= (DWC_DEFAULT_CTLLO(chan
->private)
759 | DWC_CTLL_DST_WIDTH(reg_width
)
762 | DWC_CTLL_FC(dws
->fc
));
764 for_each_sg(sgl
, sg
, sg_len
, i
) {
765 struct dw_desc
*desc
;
769 len
= sg_dma_len(sg
);
771 if (unlikely(mem
& 3 || len
& 3))
774 slave_sg_todev_fill_desc
:
775 desc
= dwc_desc_get(dwc
);
777 dev_err(chan2dev(chan
),
778 "not enough descriptors available\n");
784 desc
->lli
.ctllo
= ctllo
| DWC_CTLL_SRC_WIDTH(mem_width
);
785 if ((len
>> mem_width
) > DWC_MAX_COUNT
) {
786 dlen
= DWC_MAX_COUNT
<< mem_width
;
794 desc
->lli
.ctlhi
= dlen
>> mem_width
;
799 prev
->lli
.llp
= desc
->txd
.phys
;
800 dma_sync_single_for_device(chan2parent(chan
),
804 list_add_tail(&desc
->desc_node
,
811 goto slave_sg_todev_fill_desc
;
815 ctllo
= (DWC_DEFAULT_CTLLO(chan
->private)
816 | DWC_CTLL_SRC_WIDTH(reg_width
)
819 | DWC_CTLL_FC(dws
->fc
));
822 for_each_sg(sgl
, sg
, sg_len
, i
) {
823 struct dw_desc
*desc
;
827 len
= sg_dma_len(sg
);
829 if (unlikely(mem
& 3 || len
& 3))
832 slave_sg_fromdev_fill_desc
:
833 desc
= dwc_desc_get(dwc
);
835 dev_err(chan2dev(chan
),
836 "not enough descriptors available\n");
842 desc
->lli
.ctllo
= ctllo
| DWC_CTLL_DST_WIDTH(mem_width
);
843 if ((len
>> reg_width
) > DWC_MAX_COUNT
) {
844 dlen
= DWC_MAX_COUNT
<< reg_width
;
851 desc
->lli
.ctlhi
= dlen
>> reg_width
;
856 prev
->lli
.llp
= desc
->txd
.phys
;
857 dma_sync_single_for_device(chan2parent(chan
),
861 list_add_tail(&desc
->desc_node
,
868 goto slave_sg_fromdev_fill_desc
;
875 if (flags
& DMA_PREP_INTERRUPT
)
876 /* Trigger interrupt after last block */
877 prev
->lli
.ctllo
|= DWC_CTLL_INT_EN
;
880 dma_sync_single_for_device(chan2parent(chan
),
881 prev
->txd
.phys
, sizeof(prev
->lli
),
884 first
->len
= total_len
;
889 dwc_desc_put(dwc
, first
);
893 static int dwc_control(struct dma_chan
*chan
, enum dma_ctrl_cmd cmd
,
896 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
897 struct dw_dma
*dw
= to_dw_dma(chan
->device
);
898 struct dw_desc
*desc
, *_desc
;
903 if (cmd
== DMA_PAUSE
) {
904 spin_lock_irqsave(&dwc
->lock
, flags
);
906 cfglo
= channel_readl(dwc
, CFG_LO
);
907 channel_writel(dwc
, CFG_LO
, cfglo
| DWC_CFGL_CH_SUSP
);
908 while (!(channel_readl(dwc
, CFG_LO
) & DWC_CFGL_FIFO_EMPTY
))
912 spin_unlock_irqrestore(&dwc
->lock
, flags
);
913 } else if (cmd
== DMA_RESUME
) {
917 spin_lock_irqsave(&dwc
->lock
, flags
);
919 cfglo
= channel_readl(dwc
, CFG_LO
);
920 channel_writel(dwc
, CFG_LO
, cfglo
& ~DWC_CFGL_CH_SUSP
);
923 spin_unlock_irqrestore(&dwc
->lock
, flags
);
924 } else if (cmd
== DMA_TERMINATE_ALL
) {
925 spin_lock_irqsave(&dwc
->lock
, flags
);
927 channel_clear_bit(dw
, CH_EN
, dwc
->mask
);
928 while (dma_readl(dw
, CH_EN
) & dwc
->mask
)
933 /* active_list entries will end up before queued entries */
934 list_splice_init(&dwc
->queue
, &list
);
935 list_splice_init(&dwc
->active_list
, &list
);
937 spin_unlock_irqrestore(&dwc
->lock
, flags
);
939 /* Flush all pending and queued descriptors */
940 list_for_each_entry_safe(desc
, _desc
, &list
, desc_node
)
941 dwc_descriptor_complete(dwc
, desc
, false);
948 static enum dma_status
949 dwc_tx_status(struct dma_chan
*chan
,
951 struct dma_tx_state
*txstate
)
953 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
954 dma_cookie_t last_used
;
955 dma_cookie_t last_complete
;
958 last_complete
= dwc
->completed
;
959 last_used
= chan
->cookie
;
961 ret
= dma_async_is_complete(cookie
, last_complete
, last_used
);
962 if (ret
!= DMA_SUCCESS
) {
963 dwc_scan_descriptors(to_dw_dma(chan
->device
), dwc
);
965 last_complete
= dwc
->completed
;
966 last_used
= chan
->cookie
;
968 ret
= dma_async_is_complete(cookie
, last_complete
, last_used
);
971 if (ret
!= DMA_SUCCESS
)
972 dma_set_tx_state(txstate
, last_complete
, last_used
,
973 dwc_first_active(dwc
)->len
);
975 dma_set_tx_state(txstate
, last_complete
, last_used
, 0);
983 static void dwc_issue_pending(struct dma_chan
*chan
)
985 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
987 if (!list_empty(&dwc
->queue
))
988 dwc_scan_descriptors(to_dw_dma(chan
->device
), dwc
);
991 static int dwc_alloc_chan_resources(struct dma_chan
*chan
)
993 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
994 struct dw_dma
*dw
= to_dw_dma(chan
->device
);
995 struct dw_desc
*desc
;
999 dev_vdbg(chan2dev(chan
), "alloc_chan_resources\n");
1001 /* ASSERT: channel is idle */
1002 if (dma_readl(dw
, CH_EN
) & dwc
->mask
) {
1003 dev_dbg(chan2dev(chan
), "DMA channel not idle?\n");
1007 dwc
->completed
= chan
->cookie
= 1;
1010 * NOTE: some controllers may have additional features that we
1011 * need to initialize here, like "scatter-gather" (which
1012 * doesn't mean what you think it means), and status writeback.
1015 spin_lock_irqsave(&dwc
->lock
, flags
);
1016 i
= dwc
->descs_allocated
;
1017 while (dwc
->descs_allocated
< NR_DESCS_PER_CHANNEL
) {
1018 spin_unlock_irqrestore(&dwc
->lock
, flags
);
1020 desc
= kzalloc(sizeof(struct dw_desc
), GFP_KERNEL
);
1022 dev_info(chan2dev(chan
),
1023 "only allocated %d descriptors\n", i
);
1024 spin_lock_irqsave(&dwc
->lock
, flags
);
1028 INIT_LIST_HEAD(&desc
->tx_list
);
1029 dma_async_tx_descriptor_init(&desc
->txd
, chan
);
1030 desc
->txd
.tx_submit
= dwc_tx_submit
;
1031 desc
->txd
.flags
= DMA_CTRL_ACK
;
1032 desc
->txd
.phys
= dma_map_single(chan2parent(chan
), &desc
->lli
,
1033 sizeof(desc
->lli
), DMA_TO_DEVICE
);
1034 dwc_desc_put(dwc
, desc
);
1036 spin_lock_irqsave(&dwc
->lock
, flags
);
1037 i
= ++dwc
->descs_allocated
;
1040 spin_unlock_irqrestore(&dwc
->lock
, flags
);
1042 dev_dbg(chan2dev(chan
),
1043 "alloc_chan_resources allocated %d descriptors\n", i
);
1048 static void dwc_free_chan_resources(struct dma_chan
*chan
)
1050 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
1051 struct dw_dma
*dw
= to_dw_dma(chan
->device
);
1052 struct dw_desc
*desc
, *_desc
;
1053 unsigned long flags
;
1056 dev_dbg(chan2dev(chan
), "free_chan_resources (descs allocated=%u)\n",
1057 dwc
->descs_allocated
);
1059 /* ASSERT: channel is idle */
1060 BUG_ON(!list_empty(&dwc
->active_list
));
1061 BUG_ON(!list_empty(&dwc
->queue
));
1062 BUG_ON(dma_readl(to_dw_dma(chan
->device
), CH_EN
) & dwc
->mask
);
1064 spin_lock_irqsave(&dwc
->lock
, flags
);
1065 list_splice_init(&dwc
->free_list
, &list
);
1066 dwc
->descs_allocated
= 0;
1067 dwc
->initialized
= false;
1069 /* Disable interrupts */
1070 channel_clear_bit(dw
, MASK
.XFER
, dwc
->mask
);
1071 channel_clear_bit(dw
, MASK
.BLOCK
, dwc
->mask
);
1072 channel_clear_bit(dw
, MASK
.ERROR
, dwc
->mask
);
1074 spin_unlock_irqrestore(&dwc
->lock
, flags
);
1076 list_for_each_entry_safe(desc
, _desc
, &list
, desc_node
) {
1077 dev_vdbg(chan2dev(chan
), " freeing descriptor %p\n", desc
);
1078 dma_unmap_single(chan2parent(chan
), desc
->txd
.phys
,
1079 sizeof(desc
->lli
), DMA_TO_DEVICE
);
1083 dev_vdbg(chan2dev(chan
), "free_chan_resources done\n");
1086 /* --------------------- Cyclic DMA API extensions -------------------- */
1089 * dw_dma_cyclic_start - start the cyclic DMA transfer
1090 * @chan: the DMA channel to start
1092 * Must be called with soft interrupts disabled. Returns zero on success or
1093 * -errno on failure.
1095 int dw_dma_cyclic_start(struct dma_chan
*chan
)
1097 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
1098 struct dw_dma
*dw
= to_dw_dma(dwc
->chan
.device
);
1099 unsigned long flags
;
1101 if (!test_bit(DW_DMA_IS_CYCLIC
, &dwc
->flags
)) {
1102 dev_err(chan2dev(&dwc
->chan
), "missing prep for cyclic DMA\n");
1106 spin_lock_irqsave(&dwc
->lock
, flags
);
1108 /* assert channel is idle */
1109 if (dma_readl(dw
, CH_EN
) & dwc
->mask
) {
1110 dev_err(chan2dev(&dwc
->chan
),
1111 "BUG: Attempted to start non-idle channel\n");
1112 dev_err(chan2dev(&dwc
->chan
),
1113 " SAR: 0x%x DAR: 0x%x LLP: 0x%x CTL: 0x%x:%08x\n",
1114 channel_readl(dwc
, SAR
),
1115 channel_readl(dwc
, DAR
),
1116 channel_readl(dwc
, LLP
),
1117 channel_readl(dwc
, CTL_HI
),
1118 channel_readl(dwc
, CTL_LO
));
1119 spin_unlock_irqrestore(&dwc
->lock
, flags
);
1123 dma_writel(dw
, CLEAR
.BLOCK
, dwc
->mask
);
1124 dma_writel(dw
, CLEAR
.ERROR
, dwc
->mask
);
1125 dma_writel(dw
, CLEAR
.XFER
, dwc
->mask
);
1127 /* setup DMAC channel registers */
1128 channel_writel(dwc
, LLP
, dwc
->cdesc
->desc
[0]->txd
.phys
);
1129 channel_writel(dwc
, CTL_LO
, DWC_CTLL_LLP_D_EN
| DWC_CTLL_LLP_S_EN
);
1130 channel_writel(dwc
, CTL_HI
, 0);
1132 channel_set_bit(dw
, CH_EN
, dwc
->mask
);
1134 spin_unlock_irqrestore(&dwc
->lock
, flags
);
1138 EXPORT_SYMBOL(dw_dma_cyclic_start
);
1141 * dw_dma_cyclic_stop - stop the cyclic DMA transfer
1142 * @chan: the DMA channel to stop
1144 * Must be called with soft interrupts disabled.
1146 void dw_dma_cyclic_stop(struct dma_chan
*chan
)
1148 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
1149 struct dw_dma
*dw
= to_dw_dma(dwc
->chan
.device
);
1150 unsigned long flags
;
1152 spin_lock_irqsave(&dwc
->lock
, flags
);
1154 channel_clear_bit(dw
, CH_EN
, dwc
->mask
);
1155 while (dma_readl(dw
, CH_EN
) & dwc
->mask
)
1158 spin_unlock_irqrestore(&dwc
->lock
, flags
);
1160 EXPORT_SYMBOL(dw_dma_cyclic_stop
);
1163 * dw_dma_cyclic_prep - prepare the cyclic DMA transfer
1164 * @chan: the DMA channel to prepare
1165 * @buf_addr: physical DMA address where the buffer starts
1166 * @buf_len: total number of bytes for the entire buffer
1167 * @period_len: number of bytes for each period
1168 * @direction: transfer direction, to or from device
1170 * Must be called before trying to start the transfer. Returns a valid struct
1171 * dw_cyclic_desc if successful or an ERR_PTR(-errno) if not successful.
1173 struct dw_cyclic_desc
*dw_dma_cyclic_prep(struct dma_chan
*chan
,
1174 dma_addr_t buf_addr
, size_t buf_len
, size_t period_len
,
1175 enum dma_transfer_direction direction
)
1177 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
1178 struct dw_cyclic_desc
*cdesc
;
1179 struct dw_cyclic_desc
*retval
= NULL
;
1180 struct dw_desc
*desc
;
1181 struct dw_desc
*last
= NULL
;
1182 struct dw_dma_slave
*dws
= chan
->private;
1183 unsigned long was_cyclic
;
1184 unsigned int reg_width
;
1185 unsigned int periods
;
1187 unsigned long flags
;
1189 spin_lock_irqsave(&dwc
->lock
, flags
);
1190 if (!list_empty(&dwc
->queue
) || !list_empty(&dwc
->active_list
)) {
1191 spin_unlock_irqrestore(&dwc
->lock
, flags
);
1192 dev_dbg(chan2dev(&dwc
->chan
),
1193 "queue and/or active list are not empty\n");
1194 return ERR_PTR(-EBUSY
);
1197 was_cyclic
= test_and_set_bit(DW_DMA_IS_CYCLIC
, &dwc
->flags
);
1198 spin_unlock_irqrestore(&dwc
->lock
, flags
);
1200 dev_dbg(chan2dev(&dwc
->chan
),
1201 "channel already prepared for cyclic DMA\n");
1202 return ERR_PTR(-EBUSY
);
1205 retval
= ERR_PTR(-EINVAL
);
1206 reg_width
= dws
->reg_width
;
1207 periods
= buf_len
/ period_len
;
1209 /* Check for too big/unaligned periods and unaligned DMA buffer. */
1210 if (period_len
> (DWC_MAX_COUNT
<< reg_width
))
1212 if (unlikely(period_len
& ((1 << reg_width
) - 1)))
1214 if (unlikely(buf_addr
& ((1 << reg_width
) - 1)))
1216 if (unlikely(!(direction
& (DMA_MEM_TO_DEV
| DMA_DEV_TO_MEM
))))
1219 retval
= ERR_PTR(-ENOMEM
);
1221 if (periods
> NR_DESCS_PER_CHANNEL
)
1224 cdesc
= kzalloc(sizeof(struct dw_cyclic_desc
), GFP_KERNEL
);
1228 cdesc
->desc
= kzalloc(sizeof(struct dw_desc
*) * periods
, GFP_KERNEL
);
1232 for (i
= 0; i
< periods
; i
++) {
1233 desc
= dwc_desc_get(dwc
);
1235 goto out_err_desc_get
;
1237 switch (direction
) {
1238 case DMA_MEM_TO_DEV
:
1239 desc
->lli
.dar
= dws
->tx_reg
;
1240 desc
->lli
.sar
= buf_addr
+ (period_len
* i
);
1241 desc
->lli
.ctllo
= (DWC_DEFAULT_CTLLO(chan
->private)
1242 | DWC_CTLL_DST_WIDTH(reg_width
)
1243 | DWC_CTLL_SRC_WIDTH(reg_width
)
1246 | DWC_CTLL_FC(dws
->fc
)
1249 case DMA_DEV_TO_MEM
:
1250 desc
->lli
.dar
= buf_addr
+ (period_len
* i
);
1251 desc
->lli
.sar
= dws
->rx_reg
;
1252 desc
->lli
.ctllo
= (DWC_DEFAULT_CTLLO(chan
->private)
1253 | DWC_CTLL_SRC_WIDTH(reg_width
)
1254 | DWC_CTLL_DST_WIDTH(reg_width
)
1257 | DWC_CTLL_FC(dws
->fc
)
1264 desc
->lli
.ctlhi
= (period_len
>> reg_width
);
1265 cdesc
->desc
[i
] = desc
;
1268 last
->lli
.llp
= desc
->txd
.phys
;
1269 dma_sync_single_for_device(chan2parent(chan
),
1270 last
->txd
.phys
, sizeof(last
->lli
),
1277 /* lets make a cyclic list */
1278 last
->lli
.llp
= cdesc
->desc
[0]->txd
.phys
;
1279 dma_sync_single_for_device(chan2parent(chan
), last
->txd
.phys
,
1280 sizeof(last
->lli
), DMA_TO_DEVICE
);
1282 dev_dbg(chan2dev(&dwc
->chan
), "cyclic prepared buf 0x%08x len %zu "
1283 "period %zu periods %d\n", buf_addr
, buf_len
,
1284 period_len
, periods
);
1286 cdesc
->periods
= periods
;
1293 dwc_desc_put(dwc
, cdesc
->desc
[i
]);
1297 clear_bit(DW_DMA_IS_CYCLIC
, &dwc
->flags
);
1298 return (struct dw_cyclic_desc
*)retval
;
1300 EXPORT_SYMBOL(dw_dma_cyclic_prep
);
1303 * dw_dma_cyclic_free - free a prepared cyclic DMA transfer
1304 * @chan: the DMA channel to free
1306 void dw_dma_cyclic_free(struct dma_chan
*chan
)
1308 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
1309 struct dw_dma
*dw
= to_dw_dma(dwc
->chan
.device
);
1310 struct dw_cyclic_desc
*cdesc
= dwc
->cdesc
;
1312 unsigned long flags
;
1314 dev_dbg(chan2dev(&dwc
->chan
), "cyclic free\n");
1319 spin_lock_irqsave(&dwc
->lock
, flags
);
1321 channel_clear_bit(dw
, CH_EN
, dwc
->mask
);
1322 while (dma_readl(dw
, CH_EN
) & dwc
->mask
)
1325 dma_writel(dw
, CLEAR
.BLOCK
, dwc
->mask
);
1326 dma_writel(dw
, CLEAR
.ERROR
, dwc
->mask
);
1327 dma_writel(dw
, CLEAR
.XFER
, dwc
->mask
);
1329 spin_unlock_irqrestore(&dwc
->lock
, flags
);
1331 for (i
= 0; i
< cdesc
->periods
; i
++)
1332 dwc_desc_put(dwc
, cdesc
->desc
[i
]);
1337 clear_bit(DW_DMA_IS_CYCLIC
, &dwc
->flags
);
1339 EXPORT_SYMBOL(dw_dma_cyclic_free
);
1341 /*----------------------------------------------------------------------*/
1343 static void dw_dma_off(struct dw_dma
*dw
)
1347 dma_writel(dw
, CFG
, 0);
1349 channel_clear_bit(dw
, MASK
.XFER
, dw
->all_chan_mask
);
1350 channel_clear_bit(dw
, MASK
.BLOCK
, dw
->all_chan_mask
);
1351 channel_clear_bit(dw
, MASK
.SRC_TRAN
, dw
->all_chan_mask
);
1352 channel_clear_bit(dw
, MASK
.DST_TRAN
, dw
->all_chan_mask
);
1353 channel_clear_bit(dw
, MASK
.ERROR
, dw
->all_chan_mask
);
1355 while (dma_readl(dw
, CFG
) & DW_CFG_DMA_EN
)
1358 for (i
= 0; i
< dw
->dma
.chancnt
; i
++)
1359 dw
->chan
[i
].initialized
= false;
1362 static int __init
dw_probe(struct platform_device
*pdev
)
1364 struct dw_dma_platform_data
*pdata
;
1365 struct resource
*io
;
1372 pdata
= pdev
->dev
.platform_data
;
1373 if (!pdata
|| pdata
->nr_channels
> DW_DMA_MAX_NR_CHANNELS
)
1376 io
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1380 irq
= platform_get_irq(pdev
, 0);
1384 size
= sizeof(struct dw_dma
);
1385 size
+= pdata
->nr_channels
* sizeof(struct dw_dma_chan
);
1386 dw
= kzalloc(size
, GFP_KERNEL
);
1390 if (!request_mem_region(io
->start
, DW_REGLEN
, pdev
->dev
.driver
->name
)) {
1395 dw
->regs
= ioremap(io
->start
, DW_REGLEN
);
1401 dw
->clk
= clk_get(&pdev
->dev
, "hclk");
1402 if (IS_ERR(dw
->clk
)) {
1403 err
= PTR_ERR(dw
->clk
);
1406 clk_enable(dw
->clk
);
1408 /* force dma off, just in case */
1411 err
= request_irq(irq
, dw_dma_interrupt
, 0, "dw_dmac", dw
);
1415 platform_set_drvdata(pdev
, dw
);
1417 tasklet_init(&dw
->tasklet
, dw_dma_tasklet
, (unsigned long)dw
);
1419 dw
->all_chan_mask
= (1 << pdata
->nr_channels
) - 1;
1421 INIT_LIST_HEAD(&dw
->dma
.channels
);
1422 for (i
= 0; i
< pdata
->nr_channels
; i
++) {
1423 struct dw_dma_chan
*dwc
= &dw
->chan
[i
];
1425 dwc
->chan
.device
= &dw
->dma
;
1426 dwc
->chan
.cookie
= dwc
->completed
= 1;
1427 if (pdata
->chan_allocation_order
== CHAN_ALLOCATION_ASCENDING
)
1428 list_add_tail(&dwc
->chan
.device_node
,
1431 list_add(&dwc
->chan
.device_node
, &dw
->dma
.channels
);
1433 /* 7 is highest priority & 0 is lowest. */
1434 if (pdata
->chan_priority
== CHAN_PRIORITY_ASCENDING
)
1435 dwc
->priority
= 7 - i
;
1439 dwc
->ch_regs
= &__dw_regs(dw
)->CHAN
[i
];
1440 spin_lock_init(&dwc
->lock
);
1443 INIT_LIST_HEAD(&dwc
->active_list
);
1444 INIT_LIST_HEAD(&dwc
->queue
);
1445 INIT_LIST_HEAD(&dwc
->free_list
);
1447 channel_clear_bit(dw
, CH_EN
, dwc
->mask
);
1450 /* Clear/disable all interrupts on all channels. */
1451 dma_writel(dw
, CLEAR
.XFER
, dw
->all_chan_mask
);
1452 dma_writel(dw
, CLEAR
.BLOCK
, dw
->all_chan_mask
);
1453 dma_writel(dw
, CLEAR
.SRC_TRAN
, dw
->all_chan_mask
);
1454 dma_writel(dw
, CLEAR
.DST_TRAN
, dw
->all_chan_mask
);
1455 dma_writel(dw
, CLEAR
.ERROR
, dw
->all_chan_mask
);
1457 channel_clear_bit(dw
, MASK
.XFER
, dw
->all_chan_mask
);
1458 channel_clear_bit(dw
, MASK
.BLOCK
, dw
->all_chan_mask
);
1459 channel_clear_bit(dw
, MASK
.SRC_TRAN
, dw
->all_chan_mask
);
1460 channel_clear_bit(dw
, MASK
.DST_TRAN
, dw
->all_chan_mask
);
1461 channel_clear_bit(dw
, MASK
.ERROR
, dw
->all_chan_mask
);
1463 dma_cap_set(DMA_MEMCPY
, dw
->dma
.cap_mask
);
1464 dma_cap_set(DMA_SLAVE
, dw
->dma
.cap_mask
);
1465 if (pdata
->is_private
)
1466 dma_cap_set(DMA_PRIVATE
, dw
->dma
.cap_mask
);
1467 dw
->dma
.dev
= &pdev
->dev
;
1468 dw
->dma
.device_alloc_chan_resources
= dwc_alloc_chan_resources
;
1469 dw
->dma
.device_free_chan_resources
= dwc_free_chan_resources
;
1471 dw
->dma
.device_prep_dma_memcpy
= dwc_prep_dma_memcpy
;
1473 dw
->dma
.device_prep_slave_sg
= dwc_prep_slave_sg
;
1474 dw
->dma
.device_control
= dwc_control
;
1476 dw
->dma
.device_tx_status
= dwc_tx_status
;
1477 dw
->dma
.device_issue_pending
= dwc_issue_pending
;
1479 dma_writel(dw
, CFG
, DW_CFG_DMA_EN
);
1481 printk(KERN_INFO
"%s: DesignWare DMA Controller, %d channels\n",
1482 dev_name(&pdev
->dev
), pdata
->nr_channels
);
1484 dma_async_device_register(&dw
->dma
);
1489 clk_disable(dw
->clk
);
1495 release_resource(io
);
1501 static int __exit
dw_remove(struct platform_device
*pdev
)
1503 struct dw_dma
*dw
= platform_get_drvdata(pdev
);
1504 struct dw_dma_chan
*dwc
, *_dwc
;
1505 struct resource
*io
;
1508 dma_async_device_unregister(&dw
->dma
);
1510 free_irq(platform_get_irq(pdev
, 0), dw
);
1511 tasklet_kill(&dw
->tasklet
);
1513 list_for_each_entry_safe(dwc
, _dwc
, &dw
->dma
.channels
,
1515 list_del(&dwc
->chan
.device_node
);
1516 channel_clear_bit(dw
, CH_EN
, dwc
->mask
);
1519 clk_disable(dw
->clk
);
1525 io
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1526 release_mem_region(io
->start
, DW_REGLEN
);
1533 static void dw_shutdown(struct platform_device
*pdev
)
1535 struct dw_dma
*dw
= platform_get_drvdata(pdev
);
1537 dw_dma_off(platform_get_drvdata(pdev
));
1538 clk_disable(dw
->clk
);
1541 static int dw_suspend_noirq(struct device
*dev
)
1543 struct platform_device
*pdev
= to_platform_device(dev
);
1544 struct dw_dma
*dw
= platform_get_drvdata(pdev
);
1546 dw_dma_off(platform_get_drvdata(pdev
));
1547 clk_disable(dw
->clk
);
1552 static int dw_resume_noirq(struct device
*dev
)
1554 struct platform_device
*pdev
= to_platform_device(dev
);
1555 struct dw_dma
*dw
= platform_get_drvdata(pdev
);
1557 clk_enable(dw
->clk
);
1558 dma_writel(dw
, CFG
, DW_CFG_DMA_EN
);
1562 static const struct dev_pm_ops dw_dev_pm_ops
= {
1563 .suspend_noirq
= dw_suspend_noirq
,
1564 .resume_noirq
= dw_resume_noirq
,
1567 static struct platform_driver dw_driver
= {
1568 .remove
= __exit_p(dw_remove
),
1569 .shutdown
= dw_shutdown
,
1572 .pm
= &dw_dev_pm_ops
,
1576 static int __init
dw_init(void)
1578 return platform_driver_probe(&dw_driver
, dw_probe
);
1580 subsys_initcall(dw_init
);
1582 static void __exit
dw_exit(void)
1584 platform_driver_unregister(&dw_driver
);
1586 module_exit(dw_exit
);
1588 MODULE_LICENSE("GPL v2");
1589 MODULE_DESCRIPTION("Synopsys DesignWare DMA Controller driver");
1590 MODULE_AUTHOR("Haavard Skinnemoen (Atmel)");
1591 MODULE_AUTHOR("Viresh Kumar <viresh.kumar@st.com>");