2 * Driver for the Atmel AHB DMA Controller (aka HDMA or DMAC on AT91 systems)
4 * Copyright (C) 2008 Atmel Corporation
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
12 * This supports the Atmel AHB DMA Controller,
14 * The driver has currently been tested with the Atmel AT91SAM9RL
15 * and AT91SAM9G45 series.
18 #include <linux/clk.h>
19 #include <linux/dmaengine.h>
20 #include <linux/dma-mapping.h>
21 #include <linux/dmapool.h>
22 #include <linux/interrupt.h>
23 #include <linux/module.h>
24 #include <linux/platform_device.h>
26 #include "at_hdmac_regs.h"
32 * at_hdmac : Name of the ATmel AHB DMA Controller
33 * at_dma_ / atdma : ATmel DMA controller entity related
34 * atc_ / atchan : ATmel DMA Channel entity related
37 #define ATC_DEFAULT_CFG (ATC_FIFOCFG_HALFFIFO)
38 #define ATC_DEFAULT_CTRLA (0)
39 #define ATC_DEFAULT_CTRLB (ATC_SIF(0) \
43 * Initial number of descriptors to allocate for each channel. This could
44 * be increased during dma usage.
46 static unsigned int init_nr_desc_per_channel
= 64;
47 module_param(init_nr_desc_per_channel
, uint
, 0644);
48 MODULE_PARM_DESC(init_nr_desc_per_channel
,
49 "initial descriptors per channel (default: 64)");
53 static dma_cookie_t
atc_tx_submit(struct dma_async_tx_descriptor
*tx
);
56 /*----------------------------------------------------------------------*/
58 static struct at_desc
*atc_first_active(struct at_dma_chan
*atchan
)
60 return list_first_entry(&atchan
->active_list
,
61 struct at_desc
, desc_node
);
64 static struct at_desc
*atc_first_queued(struct at_dma_chan
*atchan
)
66 return list_first_entry(&atchan
->queue
,
67 struct at_desc
, desc_node
);
71 * atc_alloc_descriptor - allocate and return an initilized descriptor
72 * @chan: the channel to allocate descriptors for
73 * @gfp_flags: GFP allocation flags
75 * Note: The ack-bit is positioned in the descriptor flag at creation time
76 * to make initial allocation more convenient. This bit will be cleared
77 * and control will be given to client at usage time (during
78 * preparation functions).
80 static struct at_desc
*atc_alloc_descriptor(struct dma_chan
*chan
,
83 struct at_desc
*desc
= NULL
;
84 struct at_dma
*atdma
= to_at_dma(chan
->device
);
87 desc
= dma_pool_alloc(atdma
->dma_desc_pool
, gfp_flags
, &phys
);
89 memset(desc
, 0, sizeof(struct at_desc
));
90 INIT_LIST_HEAD(&desc
->tx_list
);
91 dma_async_tx_descriptor_init(&desc
->txd
, chan
);
92 /* txd.flags will be overwritten in prep functions */
93 desc
->txd
.flags
= DMA_CTRL_ACK
;
94 desc
->txd
.tx_submit
= atc_tx_submit
;
95 desc
->txd
.phys
= phys
;
102 * atc_desc_get - get a unsused descriptor from free_list
103 * @atchan: channel we want a new descriptor for
105 static struct at_desc
*atc_desc_get(struct at_dma_chan
*atchan
)
107 struct at_desc
*desc
, *_desc
;
108 struct at_desc
*ret
= NULL
;
112 spin_lock_bh(&atchan
->lock
);
113 list_for_each_entry_safe(desc
, _desc
, &atchan
->free_list
, desc_node
) {
115 if (async_tx_test_ack(&desc
->txd
)) {
116 list_del(&desc
->desc_node
);
120 dev_dbg(chan2dev(&atchan
->chan_common
),
121 "desc %p not ACKed\n", desc
);
123 spin_unlock_bh(&atchan
->lock
);
124 dev_vdbg(chan2dev(&atchan
->chan_common
),
125 "scanned %u descriptors on freelist\n", i
);
127 /* no more descriptor available in initial pool: create one more */
129 ret
= atc_alloc_descriptor(&atchan
->chan_common
, GFP_ATOMIC
);
131 spin_lock_bh(&atchan
->lock
);
132 atchan
->descs_allocated
++;
133 spin_unlock_bh(&atchan
->lock
);
135 dev_err(chan2dev(&atchan
->chan_common
),
136 "not enough descriptors available\n");
144 * atc_desc_put - move a descriptor, including any children, to the free list
145 * @atchan: channel we work on
146 * @desc: descriptor, at the head of a chain, to move to free list
148 static void atc_desc_put(struct at_dma_chan
*atchan
, struct at_desc
*desc
)
151 struct at_desc
*child
;
153 spin_lock_bh(&atchan
->lock
);
154 list_for_each_entry(child
, &desc
->tx_list
, desc_node
)
155 dev_vdbg(chan2dev(&atchan
->chan_common
),
156 "moving child desc %p to freelist\n",
158 list_splice_init(&desc
->tx_list
, &atchan
->free_list
);
159 dev_vdbg(chan2dev(&atchan
->chan_common
),
160 "moving desc %p to freelist\n", desc
);
161 list_add(&desc
->desc_node
, &atchan
->free_list
);
162 spin_unlock_bh(&atchan
->lock
);
167 * atc_assign_cookie - compute and assign new cookie
168 * @atchan: channel we work on
169 * @desc: descriptor to asign cookie for
171 * Called with atchan->lock held and bh disabled
174 atc_assign_cookie(struct at_dma_chan
*atchan
, struct at_desc
*desc
)
176 dma_cookie_t cookie
= atchan
->chan_common
.cookie
;
181 atchan
->chan_common
.cookie
= cookie
;
182 desc
->txd
.cookie
= cookie
;
188 * atc_dostart - starts the DMA engine for real
189 * @atchan: the channel we want to start
190 * @first: first descriptor in the list we want to begin with
192 * Called with atchan->lock held and bh disabled
194 static void atc_dostart(struct at_dma_chan
*atchan
, struct at_desc
*first
)
196 struct at_dma
*atdma
= to_at_dma(atchan
->chan_common
.device
);
198 /* ASSERT: channel is idle */
199 if (atc_chan_is_enabled(atchan
)) {
200 dev_err(chan2dev(&atchan
->chan_common
),
201 "BUG: Attempted to start non-idle channel\n");
202 dev_err(chan2dev(&atchan
->chan_common
),
203 " channel: s0x%x d0x%x ctrl0x%x:0x%x l0x%x\n",
204 channel_readl(atchan
, SADDR
),
205 channel_readl(atchan
, DADDR
),
206 channel_readl(atchan
, CTRLA
),
207 channel_readl(atchan
, CTRLB
),
208 channel_readl(atchan
, DSCR
));
210 /* The tasklet will hopefully advance the queue... */
214 vdbg_dump_regs(atchan
);
216 /* clear any pending interrupt */
217 while (dma_readl(atdma
, EBCISR
))
220 channel_writel(atchan
, SADDR
, 0);
221 channel_writel(atchan
, DADDR
, 0);
222 channel_writel(atchan
, CTRLA
, 0);
223 channel_writel(atchan
, CTRLB
, 0);
224 channel_writel(atchan
, DSCR
, first
->txd
.phys
);
225 dma_writel(atdma
, CHER
, atchan
->mask
);
227 vdbg_dump_regs(atchan
);
231 * atc_chain_complete - finish work for one transaction chain
232 * @atchan: channel we work on
233 * @desc: descriptor at the head of the chain we want do complete
235 * Called with atchan->lock held and bh disabled */
237 atc_chain_complete(struct at_dma_chan
*atchan
, struct at_desc
*desc
)
239 dma_async_tx_callback callback
;
241 struct dma_async_tx_descriptor
*txd
= &desc
->txd
;
243 dev_vdbg(chan2dev(&atchan
->chan_common
),
244 "descriptor %u complete\n", txd
->cookie
);
246 atchan
->completed_cookie
= txd
->cookie
;
247 callback
= txd
->callback
;
248 param
= txd
->callback_param
;
250 /* move children to free_list */
251 list_splice_init(&desc
->tx_list
, &atchan
->free_list
);
252 /* move myself to free_list */
253 list_move(&desc
->desc_node
, &atchan
->free_list
);
255 /* unmap dma addresses */
256 if (!atchan
->chan_common
.private) {
257 struct device
*parent
= chan2parent(&atchan
->chan_common
);
258 if (!(txd
->flags
& DMA_COMPL_SKIP_DEST_UNMAP
)) {
259 if (txd
->flags
& DMA_COMPL_DEST_UNMAP_SINGLE
)
260 dma_unmap_single(parent
,
262 desc
->len
, DMA_FROM_DEVICE
);
264 dma_unmap_page(parent
,
266 desc
->len
, DMA_FROM_DEVICE
);
268 if (!(txd
->flags
& DMA_COMPL_SKIP_SRC_UNMAP
)) {
269 if (txd
->flags
& DMA_COMPL_SRC_UNMAP_SINGLE
)
270 dma_unmap_single(parent
,
272 desc
->len
, DMA_TO_DEVICE
);
274 dma_unmap_page(parent
,
276 desc
->len
, DMA_TO_DEVICE
);
281 * The API requires that no submissions are done from a
282 * callback, so we don't need to drop the lock here
287 dma_run_dependencies(txd
);
291 * atc_complete_all - finish work for all transactions
292 * @atchan: channel to complete transactions for
294 * Eventually submit queued descriptors if any
296 * Assume channel is idle while calling this function
297 * Called with atchan->lock held and bh disabled
299 static void atc_complete_all(struct at_dma_chan
*atchan
)
301 struct at_desc
*desc
, *_desc
;
304 dev_vdbg(chan2dev(&atchan
->chan_common
), "complete all\n");
306 BUG_ON(atc_chan_is_enabled(atchan
));
309 * Submit queued descriptors ASAP, i.e. before we go through
310 * the completed ones.
312 if (!list_empty(&atchan
->queue
))
313 atc_dostart(atchan
, atc_first_queued(atchan
));
314 /* empty active_list now it is completed */
315 list_splice_init(&atchan
->active_list
, &list
);
316 /* empty queue list by moving descriptors (if any) to active_list */
317 list_splice_init(&atchan
->queue
, &atchan
->active_list
);
319 list_for_each_entry_safe(desc
, _desc
, &list
, desc_node
)
320 atc_chain_complete(atchan
, desc
);
324 * atc_cleanup_descriptors - cleanup up finished descriptors in active_list
325 * @atchan: channel to be cleaned up
327 * Called with atchan->lock held and bh disabled
329 static void atc_cleanup_descriptors(struct at_dma_chan
*atchan
)
331 struct at_desc
*desc
, *_desc
;
332 struct at_desc
*child
;
334 dev_vdbg(chan2dev(&atchan
->chan_common
), "cleanup descriptors\n");
336 list_for_each_entry_safe(desc
, _desc
, &atchan
->active_list
, desc_node
) {
337 if (!(desc
->lli
.ctrla
& ATC_DONE
))
338 /* This one is currently in progress */
341 list_for_each_entry(child
, &desc
->tx_list
, desc_node
)
342 if (!(child
->lli
.ctrla
& ATC_DONE
))
343 /* Currently in progress */
347 * No descriptors so far seem to be in progress, i.e.
348 * this chain must be done.
350 atc_chain_complete(atchan
, desc
);
355 * atc_advance_work - at the end of a transaction, move forward
356 * @atchan: channel where the transaction ended
358 * Called with atchan->lock held and bh disabled
360 static void atc_advance_work(struct at_dma_chan
*atchan
)
362 dev_vdbg(chan2dev(&atchan
->chan_common
), "advance_work\n");
364 if (list_empty(&atchan
->active_list
) ||
365 list_is_singular(&atchan
->active_list
)) {
366 atc_complete_all(atchan
);
368 atc_chain_complete(atchan
, atc_first_active(atchan
));
370 atc_dostart(atchan
, atc_first_active(atchan
));
376 * atc_handle_error - handle errors reported by DMA controller
377 * @atchan: channel where error occurs
379 * Called with atchan->lock held and bh disabled
381 static void atc_handle_error(struct at_dma_chan
*atchan
)
383 struct at_desc
*bad_desc
;
384 struct at_desc
*child
;
387 * The descriptor currently at the head of the active list is
388 * broked. Since we don't have any way to report errors, we'll
389 * just have to scream loudly and try to carry on.
391 bad_desc
= atc_first_active(atchan
);
392 list_del_init(&bad_desc
->desc_node
);
394 /* As we are stopped, take advantage to push queued descriptors
396 list_splice_init(&atchan
->queue
, atchan
->active_list
.prev
);
398 /* Try to restart the controller */
399 if (!list_empty(&atchan
->active_list
))
400 atc_dostart(atchan
, atc_first_active(atchan
));
403 * KERN_CRITICAL may seem harsh, but since this only happens
404 * when someone submits a bad physical address in a
405 * descriptor, we should consider ourselves lucky that the
406 * controller flagged an error instead of scribbling over
407 * random memory locations.
409 dev_crit(chan2dev(&atchan
->chan_common
),
410 "Bad descriptor submitted for DMA!\n");
411 dev_crit(chan2dev(&atchan
->chan_common
),
412 " cookie: %d\n", bad_desc
->txd
.cookie
);
413 atc_dump_lli(atchan
, &bad_desc
->lli
);
414 list_for_each_entry(child
, &bad_desc
->tx_list
, desc_node
)
415 atc_dump_lli(atchan
, &child
->lli
);
417 /* Pretend the descriptor completed successfully */
418 atc_chain_complete(atchan
, bad_desc
);
422 /*-- IRQ & Tasklet ---------------------------------------------------*/
424 static void atc_tasklet(unsigned long data
)
426 struct at_dma_chan
*atchan
= (struct at_dma_chan
*)data
;
428 /* Channel cannot be enabled here */
429 if (atc_chan_is_enabled(atchan
)) {
430 dev_err(chan2dev(&atchan
->chan_common
),
431 "BUG: channel enabled in tasklet\n");
435 spin_lock(&atchan
->lock
);
436 if (test_and_clear_bit(0, &atchan
->error_status
))
437 atc_handle_error(atchan
);
439 atc_advance_work(atchan
);
441 spin_unlock(&atchan
->lock
);
444 static irqreturn_t
at_dma_interrupt(int irq
, void *dev_id
)
446 struct at_dma
*atdma
= (struct at_dma
*)dev_id
;
447 struct at_dma_chan
*atchan
;
449 u32 status
, pending
, imr
;
453 imr
= dma_readl(atdma
, EBCIMR
);
454 status
= dma_readl(atdma
, EBCISR
);
455 pending
= status
& imr
;
460 dev_vdbg(atdma
->dma_common
.dev
,
461 "interrupt: status = 0x%08x, 0x%08x, 0x%08x\n",
462 status
, imr
, pending
);
464 for (i
= 0; i
< atdma
->dma_common
.chancnt
; i
++) {
465 atchan
= &atdma
->chan
[i
];
466 if (pending
& (AT_DMA_CBTC(i
) | AT_DMA_ERR(i
))) {
467 if (pending
& AT_DMA_ERR(i
)) {
468 /* Disable channel on AHB error */
469 dma_writel(atdma
, CHDR
, atchan
->mask
);
470 /* Give information to tasklet */
471 set_bit(0, &atchan
->error_status
);
473 tasklet_schedule(&atchan
->tasklet
);
484 /*-- DMA Engine API --------------------------------------------------*/
487 * atc_tx_submit - set the prepared descriptor(s) to be executed by the engine
488 * @desc: descriptor at the head of the transaction chain
490 * Queue chain if DMA engine is working already
492 * Cookie increment and adding to active_list or queue must be atomic
494 static dma_cookie_t
atc_tx_submit(struct dma_async_tx_descriptor
*tx
)
496 struct at_desc
*desc
= txd_to_at_desc(tx
);
497 struct at_dma_chan
*atchan
= to_at_dma_chan(tx
->chan
);
500 spin_lock_bh(&atchan
->lock
);
501 cookie
= atc_assign_cookie(atchan
, desc
);
503 if (list_empty(&atchan
->active_list
)) {
504 dev_vdbg(chan2dev(tx
->chan
), "tx_submit: started %u\n",
506 atc_dostart(atchan
, desc
);
507 list_add_tail(&desc
->desc_node
, &atchan
->active_list
);
509 dev_vdbg(chan2dev(tx
->chan
), "tx_submit: queued %u\n",
511 list_add_tail(&desc
->desc_node
, &atchan
->queue
);
514 spin_unlock_bh(&atchan
->lock
);
520 * atc_prep_dma_memcpy - prepare a memcpy operation
521 * @chan: the channel to prepare operation on
522 * @dest: operation virtual destination address
523 * @src: operation virtual source address
524 * @len: operation length
525 * @flags: tx descriptor status flags
527 static struct dma_async_tx_descriptor
*
528 atc_prep_dma_memcpy(struct dma_chan
*chan
, dma_addr_t dest
, dma_addr_t src
,
529 size_t len
, unsigned long flags
)
531 struct at_dma_chan
*atchan
= to_at_dma_chan(chan
);
532 struct at_desc
*desc
= NULL
;
533 struct at_desc
*first
= NULL
;
534 struct at_desc
*prev
= NULL
;
537 unsigned int src_width
;
538 unsigned int dst_width
;
542 dev_vdbg(chan2dev(chan
), "prep_dma_memcpy: d0x%x s0x%x l0x%zx f0x%lx\n",
543 dest
, src
, len
, flags
);
545 if (unlikely(!len
)) {
546 dev_dbg(chan2dev(chan
), "prep_dma_memcpy: length is zero!\n");
550 ctrla
= ATC_DEFAULT_CTRLA
;
551 ctrlb
= ATC_DEFAULT_CTRLB
552 | ATC_SRC_ADDR_MODE_INCR
553 | ATC_DST_ADDR_MODE_INCR
557 * We can be a lot more clever here, but this should take care
558 * of the most common optimization.
560 if (!((src
| dest
| len
) & 3)) {
561 ctrla
|= ATC_SRC_WIDTH_WORD
| ATC_DST_WIDTH_WORD
;
562 src_width
= dst_width
= 2;
563 } else if (!((src
| dest
| len
) & 1)) {
564 ctrla
|= ATC_SRC_WIDTH_HALFWORD
| ATC_DST_WIDTH_HALFWORD
;
565 src_width
= dst_width
= 1;
567 ctrla
|= ATC_SRC_WIDTH_BYTE
| ATC_DST_WIDTH_BYTE
;
568 src_width
= dst_width
= 0;
571 for (offset
= 0; offset
< len
; offset
+= xfer_count
<< src_width
) {
572 xfer_count
= min_t(size_t, (len
- offset
) >> src_width
,
575 desc
= atc_desc_get(atchan
);
579 desc
->lli
.saddr
= src
+ offset
;
580 desc
->lli
.daddr
= dest
+ offset
;
581 desc
->lli
.ctrla
= ctrla
| xfer_count
;
582 desc
->lli
.ctrlb
= ctrlb
;
584 desc
->txd
.cookie
= 0;
585 async_tx_ack(&desc
->txd
);
590 /* inform the HW lli about chaining */
591 prev
->lli
.dscr
= desc
->txd
.phys
;
592 /* insert the link descriptor to the LD ring */
593 list_add_tail(&desc
->desc_node
,
599 /* First descriptor of the chain embedds additional information */
600 first
->txd
.cookie
= -EBUSY
;
603 /* set end-of-link to the last link descriptor of list*/
606 desc
->txd
.flags
= flags
; /* client is in control of this ack */
611 atc_desc_put(atchan
, first
);
617 * atc_prep_slave_sg - prepare descriptors for a DMA_SLAVE transaction
619 * @sgl: scatterlist to transfer to/from
620 * @sg_len: number of entries in @scatterlist
621 * @direction: DMA direction
622 * @flags: tx descriptor status flags
624 static struct dma_async_tx_descriptor
*
625 atc_prep_slave_sg(struct dma_chan
*chan
, struct scatterlist
*sgl
,
626 unsigned int sg_len
, enum dma_data_direction direction
,
629 struct at_dma_chan
*atchan
= to_at_dma_chan(chan
);
630 struct at_dma_slave
*atslave
= chan
->private;
631 struct at_desc
*first
= NULL
;
632 struct at_desc
*prev
= NULL
;
636 unsigned int reg_width
;
637 unsigned int mem_width
;
639 struct scatterlist
*sg
;
640 size_t total_len
= 0;
642 dev_vdbg(chan2dev(chan
), "prep_slave_sg: %s f0x%lx\n",
643 direction
== DMA_TO_DEVICE
? "TO DEVICE" : "FROM DEVICE",
646 if (unlikely(!atslave
|| !sg_len
)) {
647 dev_dbg(chan2dev(chan
), "prep_dma_memcpy: length is zero!\n");
651 reg_width
= atslave
->reg_width
;
653 ctrla
= ATC_DEFAULT_CTRLA
| atslave
->ctrla
;
654 ctrlb
= ATC_DEFAULT_CTRLB
| ATC_IEN
;
658 ctrla
|= ATC_DST_WIDTH(reg_width
);
659 ctrlb
|= ATC_DST_ADDR_MODE_FIXED
660 | ATC_SRC_ADDR_MODE_INCR
662 reg
= atslave
->tx_reg
;
663 for_each_sg(sgl
, sg
, sg_len
, i
) {
664 struct at_desc
*desc
;
668 desc
= atc_desc_get(atchan
);
673 len
= sg_dma_len(sg
);
675 if (unlikely(mem
& 3 || len
& 3))
678 desc
->lli
.saddr
= mem
;
679 desc
->lli
.daddr
= reg
;
680 desc
->lli
.ctrla
= ctrla
681 | ATC_SRC_WIDTH(mem_width
)
683 desc
->lli
.ctrlb
= ctrlb
;
688 /* inform the HW lli about chaining */
689 prev
->lli
.dscr
= desc
->txd
.phys
;
690 /* insert the link descriptor to the LD ring */
691 list_add_tail(&desc
->desc_node
,
698 case DMA_FROM_DEVICE
:
699 ctrla
|= ATC_SRC_WIDTH(reg_width
);
700 ctrlb
|= ATC_DST_ADDR_MODE_INCR
701 | ATC_SRC_ADDR_MODE_FIXED
704 reg
= atslave
->rx_reg
;
705 for_each_sg(sgl
, sg
, sg_len
, i
) {
706 struct at_desc
*desc
;
710 desc
= atc_desc_get(atchan
);
715 len
= sg_dma_len(sg
);
717 if (unlikely(mem
& 3 || len
& 3))
720 desc
->lli
.saddr
= reg
;
721 desc
->lli
.daddr
= mem
;
722 desc
->lli
.ctrla
= ctrla
723 | ATC_DST_WIDTH(mem_width
)
725 desc
->lli
.ctrlb
= ctrlb
;
730 /* inform the HW lli about chaining */
731 prev
->lli
.dscr
= desc
->txd
.phys
;
732 /* insert the link descriptor to the LD ring */
733 list_add_tail(&desc
->desc_node
,
744 /* set end-of-link to the last link descriptor of list*/
747 /* First descriptor of the chain embedds additional information */
748 first
->txd
.cookie
= -EBUSY
;
749 first
->len
= total_len
;
751 /* last link descriptor of list is responsible of flags */
752 prev
->txd
.flags
= flags
; /* client is in control of this ack */
757 dev_err(chan2dev(chan
), "not enough descriptors available\n");
758 atc_desc_put(atchan
, first
);
762 static void atc_terminate_all(struct dma_chan
*chan
)
764 struct at_dma_chan
*atchan
= to_at_dma_chan(chan
);
765 struct at_dma
*atdma
= to_at_dma(chan
->device
);
766 struct at_desc
*desc
, *_desc
;
770 * This is only called when something went wrong elsewhere, so
771 * we don't really care about the data. Just disable the
772 * channel. We still have to poll the channel enable bit due
773 * to AHB/HSB limitations.
775 spin_lock_bh(&atchan
->lock
);
777 dma_writel(atdma
, CHDR
, atchan
->mask
);
779 /* confirm that this channel is disabled */
780 while (dma_readl(atdma
, CHSR
) & atchan
->mask
)
783 /* active_list entries will end up before queued entries */
784 list_splice_init(&atchan
->queue
, &list
);
785 list_splice_init(&atchan
->active_list
, &list
);
787 spin_unlock_bh(&atchan
->lock
);
789 /* Flush all pending and queued descriptors */
790 list_for_each_entry_safe(desc
, _desc
, &list
, desc_node
)
791 atc_chain_complete(atchan
, desc
);
795 * atc_is_tx_complete - poll for transaction completion
797 * @cookie: transaction identifier to check status of
798 * @done: if not %NULL, updated with last completed transaction
799 * @used: if not %NULL, updated with last used transaction
801 * If @done and @used are passed in, upon return they reflect the driver
802 * internal state and can be used with dma_async_is_complete() to check
803 * the status of multiple cookies without re-checking hardware state.
805 static enum dma_status
806 atc_is_tx_complete(struct dma_chan
*chan
,
808 dma_cookie_t
*done
, dma_cookie_t
*used
)
810 struct at_dma_chan
*atchan
= to_at_dma_chan(chan
);
811 dma_cookie_t last_used
;
812 dma_cookie_t last_complete
;
815 dev_vdbg(chan2dev(chan
), "is_tx_complete: %d (d%d, u%d)\n",
816 cookie
, done
? *done
: 0, used
? *used
: 0);
818 spin_lock_bh(atchan
->lock
);
820 last_complete
= atchan
->completed_cookie
;
821 last_used
= chan
->cookie
;
823 ret
= dma_async_is_complete(cookie
, last_complete
, last_used
);
824 if (ret
!= DMA_SUCCESS
) {
825 atc_cleanup_descriptors(atchan
);
827 last_complete
= atchan
->completed_cookie
;
828 last_used
= chan
->cookie
;
830 ret
= dma_async_is_complete(cookie
, last_complete
, last_used
);
833 spin_unlock_bh(atchan
->lock
);
836 *done
= last_complete
;
844 * atc_issue_pending - try to finish work
845 * @chan: target DMA channel
847 static void atc_issue_pending(struct dma_chan
*chan
)
849 struct at_dma_chan
*atchan
= to_at_dma_chan(chan
);
851 dev_vdbg(chan2dev(chan
), "issue_pending\n");
853 if (!atc_chan_is_enabled(atchan
)) {
854 spin_lock_bh(&atchan
->lock
);
855 atc_advance_work(atchan
);
856 spin_unlock_bh(&atchan
->lock
);
861 * atc_alloc_chan_resources - allocate resources for DMA channel
862 * @chan: allocate descriptor resources for this channel
863 * @client: current client requesting the channel be ready for requests
865 * return - the number of allocated descriptors
867 static int atc_alloc_chan_resources(struct dma_chan
*chan
)
869 struct at_dma_chan
*atchan
= to_at_dma_chan(chan
);
870 struct at_dma
*atdma
= to_at_dma(chan
->device
);
871 struct at_desc
*desc
;
872 struct at_dma_slave
*atslave
;
877 dev_vdbg(chan2dev(chan
), "alloc_chan_resources\n");
879 /* ASSERT: channel is idle */
880 if (atc_chan_is_enabled(atchan
)) {
881 dev_dbg(chan2dev(chan
), "DMA channel not idle ?\n");
885 cfg
= ATC_DEFAULT_CFG
;
887 atslave
= chan
->private;
890 * We need controller-specific data to set up slave
893 BUG_ON(!atslave
->dma_dev
|| atslave
->dma_dev
!= atdma
->dma_common
.dev
);
895 /* if cfg configuration specified take it instad of default */
900 /* have we already been set up?
901 * reconfigure channel but no need to reallocate descriptors */
902 if (!list_empty(&atchan
->free_list
))
903 return atchan
->descs_allocated
;
905 /* Allocate initial pool of descriptors */
906 for (i
= 0; i
< init_nr_desc_per_channel
; i
++) {
907 desc
= atc_alloc_descriptor(chan
, GFP_KERNEL
);
909 dev_err(atdma
->dma_common
.dev
,
910 "Only %d initial descriptors\n", i
);
913 list_add_tail(&desc
->desc_node
, &tmp_list
);
916 spin_lock_bh(&atchan
->lock
);
917 atchan
->descs_allocated
= i
;
918 list_splice(&tmp_list
, &atchan
->free_list
);
919 atchan
->completed_cookie
= chan
->cookie
= 1;
920 spin_unlock_bh(&atchan
->lock
);
922 /* channel parameters */
923 channel_writel(atchan
, CFG
, cfg
);
925 dev_dbg(chan2dev(chan
),
926 "alloc_chan_resources: allocated %d descriptors\n",
927 atchan
->descs_allocated
);
929 return atchan
->descs_allocated
;
933 * atc_free_chan_resources - free all channel resources
936 static void atc_free_chan_resources(struct dma_chan
*chan
)
938 struct at_dma_chan
*atchan
= to_at_dma_chan(chan
);
939 struct at_dma
*atdma
= to_at_dma(chan
->device
);
940 struct at_desc
*desc
, *_desc
;
943 dev_dbg(chan2dev(chan
), "free_chan_resources: (descs allocated=%u)\n",
944 atchan
->descs_allocated
);
946 /* ASSERT: channel is idle */
947 BUG_ON(!list_empty(&atchan
->active_list
));
948 BUG_ON(!list_empty(&atchan
->queue
));
949 BUG_ON(atc_chan_is_enabled(atchan
));
951 list_for_each_entry_safe(desc
, _desc
, &atchan
->free_list
, desc_node
) {
952 dev_vdbg(chan2dev(chan
), " freeing descriptor %p\n", desc
);
953 list_del(&desc
->desc_node
);
954 /* free link descriptor */
955 dma_pool_free(atdma
->dma_desc_pool
, desc
, desc
->txd
.phys
);
957 list_splice_init(&atchan
->free_list
, &list
);
958 atchan
->descs_allocated
= 0;
960 dev_vdbg(chan2dev(chan
), "free_chan_resources: done\n");
964 /*-- Module Management -----------------------------------------------*/
967 * at_dma_off - disable DMA controller
968 * @atdma: the Atmel HDAMC device
970 static void at_dma_off(struct at_dma
*atdma
)
972 dma_writel(atdma
, EN
, 0);
974 /* disable all interrupts */
975 dma_writel(atdma
, EBCIDR
, -1L);
977 /* confirm that all channels are disabled */
978 while (dma_readl(atdma
, CHSR
) & atdma
->all_chan_mask
)
982 static int __init
at_dma_probe(struct platform_device
*pdev
)
984 struct at_dma_platform_data
*pdata
;
986 struct at_dma
*atdma
;
992 /* get DMA Controller parameters from platform */
993 pdata
= pdev
->dev
.platform_data
;
994 if (!pdata
|| pdata
->nr_channels
> AT_DMA_MAX_NR_CHANNELS
)
997 io
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1001 irq
= platform_get_irq(pdev
, 0);
1005 size
= sizeof(struct at_dma
);
1006 size
+= pdata
->nr_channels
* sizeof(struct at_dma_chan
);
1007 atdma
= kzalloc(size
, GFP_KERNEL
);
1011 /* discover transaction capabilites from the platform data */
1012 atdma
->dma_common
.cap_mask
= pdata
->cap_mask
;
1013 atdma
->all_chan_mask
= (1 << pdata
->nr_channels
) - 1;
1015 size
= io
->end
- io
->start
+ 1;
1016 if (!request_mem_region(io
->start
, size
, pdev
->dev
.driver
->name
)) {
1021 atdma
->regs
= ioremap(io
->start
, size
);
1027 atdma
->clk
= clk_get(&pdev
->dev
, "dma_clk");
1028 if (IS_ERR(atdma
->clk
)) {
1029 err
= PTR_ERR(atdma
->clk
);
1032 clk_enable(atdma
->clk
);
1034 /* force dma off, just in case */
1037 err
= request_irq(irq
, at_dma_interrupt
, 0, "at_hdmac", atdma
);
1041 platform_set_drvdata(pdev
, atdma
);
1043 /* create a pool of consistent memory blocks for hardware descriptors */
1044 atdma
->dma_desc_pool
= dma_pool_create("at_hdmac_desc_pool",
1045 &pdev
->dev
, sizeof(struct at_desc
),
1046 4 /* word alignment */, 0);
1047 if (!atdma
->dma_desc_pool
) {
1048 dev_err(&pdev
->dev
, "No memory for descriptors dma pool\n");
1050 goto err_pool_create
;
1053 /* clear any pending interrupt */
1054 while (dma_readl(atdma
, EBCISR
))
1057 /* initialize channels related values */
1058 INIT_LIST_HEAD(&atdma
->dma_common
.channels
);
1059 for (i
= 0; i
< pdata
->nr_channels
; i
++, atdma
->dma_common
.chancnt
++) {
1060 struct at_dma_chan
*atchan
= &atdma
->chan
[i
];
1062 atchan
->chan_common
.device
= &atdma
->dma_common
;
1063 atchan
->chan_common
.cookie
= atchan
->completed_cookie
= 1;
1064 atchan
->chan_common
.chan_id
= i
;
1065 list_add_tail(&atchan
->chan_common
.device_node
,
1066 &atdma
->dma_common
.channels
);
1068 atchan
->ch_regs
= atdma
->regs
+ ch_regs(i
);
1069 spin_lock_init(&atchan
->lock
);
1070 atchan
->mask
= 1 << i
;
1072 INIT_LIST_HEAD(&atchan
->active_list
);
1073 INIT_LIST_HEAD(&atchan
->queue
);
1074 INIT_LIST_HEAD(&atchan
->free_list
);
1076 tasklet_init(&atchan
->tasklet
, atc_tasklet
,
1077 (unsigned long)atchan
);
1078 atc_enable_irq(atchan
);
1081 /* set base routines */
1082 atdma
->dma_common
.device_alloc_chan_resources
= atc_alloc_chan_resources
;
1083 atdma
->dma_common
.device_free_chan_resources
= atc_free_chan_resources
;
1084 atdma
->dma_common
.device_is_tx_complete
= atc_is_tx_complete
;
1085 atdma
->dma_common
.device_issue_pending
= atc_issue_pending
;
1086 atdma
->dma_common
.dev
= &pdev
->dev
;
1088 /* set prep routines based on capability */
1089 if (dma_has_cap(DMA_MEMCPY
, atdma
->dma_common
.cap_mask
))
1090 atdma
->dma_common
.device_prep_dma_memcpy
= atc_prep_dma_memcpy
;
1092 if (dma_has_cap(DMA_SLAVE
, atdma
->dma_common
.cap_mask
)) {
1093 atdma
->dma_common
.device_prep_slave_sg
= atc_prep_slave_sg
;
1094 atdma
->dma_common
.device_terminate_all
= atc_terminate_all
;
1097 dma_writel(atdma
, EN
, AT_DMA_ENABLE
);
1099 dev_info(&pdev
->dev
, "Atmel AHB DMA Controller ( %s%s), %d channels\n",
1100 dma_has_cap(DMA_MEMCPY
, atdma
->dma_common
.cap_mask
) ? "cpy " : "",
1101 dma_has_cap(DMA_SLAVE
, atdma
->dma_common
.cap_mask
) ? "slave " : "",
1102 atdma
->dma_common
.chancnt
);
1104 dma_async_device_register(&atdma
->dma_common
);
1109 platform_set_drvdata(pdev
, NULL
);
1110 free_irq(platform_get_irq(pdev
, 0), atdma
);
1112 clk_disable(atdma
->clk
);
1113 clk_put(atdma
->clk
);
1115 iounmap(atdma
->regs
);
1118 release_mem_region(io
->start
, size
);
1124 static int __exit
at_dma_remove(struct platform_device
*pdev
)
1126 struct at_dma
*atdma
= platform_get_drvdata(pdev
);
1127 struct dma_chan
*chan
, *_chan
;
1128 struct resource
*io
;
1131 dma_async_device_unregister(&atdma
->dma_common
);
1133 dma_pool_destroy(atdma
->dma_desc_pool
);
1134 platform_set_drvdata(pdev
, NULL
);
1135 free_irq(platform_get_irq(pdev
, 0), atdma
);
1137 list_for_each_entry_safe(chan
, _chan
, &atdma
->dma_common
.channels
,
1139 struct at_dma_chan
*atchan
= to_at_dma_chan(chan
);
1141 /* Disable interrupts */
1142 atc_disable_irq(atchan
);
1143 tasklet_disable(&atchan
->tasklet
);
1145 tasklet_kill(&atchan
->tasklet
);
1146 list_del(&chan
->device_node
);
1149 clk_disable(atdma
->clk
);
1150 clk_put(atdma
->clk
);
1152 iounmap(atdma
->regs
);
1155 io
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1156 release_mem_region(io
->start
, io
->end
- io
->start
+ 1);
1163 static void at_dma_shutdown(struct platform_device
*pdev
)
1165 struct at_dma
*atdma
= platform_get_drvdata(pdev
);
1167 at_dma_off(platform_get_drvdata(pdev
));
1168 clk_disable(atdma
->clk
);
1171 static int at_dma_suspend_noirq(struct device
*dev
)
1173 struct platform_device
*pdev
= to_platform_device(dev
);
1174 struct at_dma
*atdma
= platform_get_drvdata(pdev
);
1176 at_dma_off(platform_get_drvdata(pdev
));
1177 clk_disable(atdma
->clk
);
1181 static int at_dma_resume_noirq(struct device
*dev
)
1183 struct platform_device
*pdev
= to_platform_device(dev
);
1184 struct at_dma
*atdma
= platform_get_drvdata(pdev
);
1186 clk_enable(atdma
->clk
);
1187 dma_writel(atdma
, EN
, AT_DMA_ENABLE
);
1191 static struct dev_pm_ops at_dma_dev_pm_ops
= {
1192 .suspend_noirq
= at_dma_suspend_noirq
,
1193 .resume_noirq
= at_dma_resume_noirq
,
1196 static struct platform_driver at_dma_driver
= {
1197 .remove
= __exit_p(at_dma_remove
),
1198 .shutdown
= at_dma_shutdown
,
1201 .pm
= &at_dma_dev_pm_ops
,
1205 static int __init
at_dma_init(void)
1207 return platform_driver_probe(&at_dma_driver
, at_dma_probe
);
1209 module_init(at_dma_init
);
1211 static void __exit
at_dma_exit(void)
1213 platform_driver_unregister(&at_dma_driver
);
1215 module_exit(at_dma_exit
);
1217 MODULE_DESCRIPTION("Atmel AHB DMA Controller driver");
1218 MODULE_AUTHOR("Nicolas Ferre <nicolas.ferre@atmel.com>");
1219 MODULE_LICENSE("GPL");
1220 MODULE_ALIAS("platform:at_hdmac");