2 * Virtual DMA channel support for DMAengine
4 * Copyright (C) 2012 Russell King
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
13 #include <linux/dmaengine.h>
14 #include <linux/interrupt.h>
16 #include "dmaengine.h"
18 struct virt_dma_desc
{
19 struct dma_async_tx_descriptor tx
;
20 /* protected by vc.lock */
21 struct list_head node
;
24 struct virt_dma_chan
{
26 struct tasklet_struct task
;
27 void (*desc_free
)(struct virt_dma_desc
*);
31 /* protected by vc.lock */
32 struct list_head desc_submitted
;
33 struct list_head desc_issued
;
34 struct list_head desc_completed
;
36 struct virt_dma_desc
*cyclic
;
39 static inline struct virt_dma_chan
*to_virt_chan(struct dma_chan
*chan
)
41 return container_of(chan
, struct virt_dma_chan
, chan
);
44 void vchan_dma_desc_free_list(struct virt_dma_chan
*vc
, struct list_head
*head
);
45 void vchan_init(struct virt_dma_chan
*vc
, struct dma_device
*dmadev
);
46 struct virt_dma_desc
*vchan_find_desc(struct virt_dma_chan
*, dma_cookie_t
);
49 * vchan_tx_prep - prepare a descriptor
50 * vc: virtual channel allocating this descriptor
51 * vd: virtual descriptor to prepare
52 * tx_flags: flags argument passed in to prepare function
54 static inline struct dma_async_tx_descriptor
*vchan_tx_prep(struct virt_dma_chan
*vc
,
55 struct virt_dma_desc
*vd
, unsigned long tx_flags
)
57 extern dma_cookie_t
vchan_tx_submit(struct dma_async_tx_descriptor
*);
59 dma_async_tx_descriptor_init(&vd
->tx
, &vc
->chan
);
60 vd
->tx
.flags
= tx_flags
;
61 vd
->tx
.tx_submit
= vchan_tx_submit
;
67 * vchan_issue_pending - move submitted descriptors to issued list
68 * vc: virtual channel to update
70 * vc.lock must be held by caller
72 static inline bool vchan_issue_pending(struct virt_dma_chan
*vc
)
74 list_splice_tail_init(&vc
->desc_submitted
, &vc
->desc_issued
);
75 return !list_empty(&vc
->desc_issued
);
79 * vchan_cookie_complete - report completion of a descriptor
80 * vd: virtual descriptor to update
82 * vc.lock must be held by caller
84 static inline void vchan_cookie_complete(struct virt_dma_desc
*vd
)
86 struct virt_dma_chan
*vc
= to_virt_chan(vd
->tx
.chan
);
88 dma_cookie_complete(&vd
->tx
);
89 dev_vdbg(vc
->chan
.device
->dev
, "txd %p[%x]: marked complete\n",
91 list_add_tail(&vd
->node
, &vc
->desc_completed
);
93 tasklet_schedule(&vc
->task
);
97 * vchan_cyclic_callback - report the completion of a period
98 * vd: virtual descriptor
100 static inline void vchan_cyclic_callback(struct virt_dma_desc
*vd
)
102 struct virt_dma_chan
*vc
= to_virt_chan(vd
->tx
.chan
);
105 tasklet_schedule(&vc
->task
);
109 * vchan_next_desc - peek at the next descriptor to be processed
110 * vc: virtual channel to obtain descriptor from
112 * vc.lock must be held by caller
114 static inline struct virt_dma_desc
*vchan_next_desc(struct virt_dma_chan
*vc
)
116 if (list_empty(&vc
->desc_issued
))
119 return list_first_entry(&vc
->desc_issued
, struct virt_dma_desc
, node
);
123 * vchan_get_all_descriptors - obtain all submitted and issued descriptors
124 * vc: virtual channel to get descriptors from
125 * head: list of descriptors found
127 * vc.lock must be held by caller
129 * Removes all submitted and issued descriptors from internal lists, and
130 * provides a list of all descriptors found
132 static inline void vchan_get_all_descriptors(struct virt_dma_chan
*vc
,
133 struct list_head
*head
)
135 list_splice_tail_init(&vc
->desc_submitted
, head
);
136 list_splice_tail_init(&vc
->desc_issued
, head
);
137 list_splice_tail_init(&vc
->desc_completed
, head
);
140 static inline void vchan_free_chan_resources(struct virt_dma_chan
*vc
)
145 spin_lock_irqsave(&vc
->lock
, flags
);
146 vchan_get_all_descriptors(vc
, &head
);
147 spin_unlock_irqrestore(&vc
->lock
, flags
);
149 vchan_dma_desc_free_list(vc
, &head
);