1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Virtual DMA channel support for DMAengine
5 * Copyright (C) 2012 Russell King
10 #include <linux/dmaengine.h>
11 #include <linux/interrupt.h>
13 #include "dmaengine.h"
15 struct virt_dma_desc
{
16 struct dma_async_tx_descriptor tx
;
17 struct dmaengine_result tx_result
;
18 /* protected by vc.lock */
19 struct list_head node
;
22 struct virt_dma_chan
{
24 struct tasklet_struct task
;
25 void (*desc_free
)(struct virt_dma_desc
*);
29 /* protected by vc.lock */
30 struct list_head desc_allocated
;
31 struct list_head desc_submitted
;
32 struct list_head desc_issued
;
33 struct list_head desc_completed
;
35 struct virt_dma_desc
*cyclic
;
36 struct virt_dma_desc
*vd_terminated
;
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
);
47 extern dma_cookie_t
vchan_tx_submit(struct dma_async_tx_descriptor
*);
48 extern int vchan_tx_desc_free(struct dma_async_tx_descriptor
*);
51 * vchan_tx_prep - prepare a descriptor
52 * @vc: virtual channel allocating this descriptor
53 * @vd: virtual descriptor to prepare
54 * @tx_flags: flags argument passed in to prepare function
56 static inline struct dma_async_tx_descriptor
*vchan_tx_prep(struct virt_dma_chan
*vc
,
57 struct virt_dma_desc
*vd
, unsigned long tx_flags
)
61 dma_async_tx_descriptor_init(&vd
->tx
, &vc
->chan
);
62 vd
->tx
.flags
= tx_flags
;
63 vd
->tx
.tx_submit
= vchan_tx_submit
;
64 vd
->tx
.desc_free
= vchan_tx_desc_free
;
66 vd
->tx_result
.result
= DMA_TRANS_NOERROR
;
67 vd
->tx_result
.residue
= 0;
69 spin_lock_irqsave(&vc
->lock
, flags
);
70 list_add_tail(&vd
->node
, &vc
->desc_allocated
);
71 spin_unlock_irqrestore(&vc
->lock
, flags
);
77 * vchan_issue_pending - move submitted descriptors to issued list
78 * @vc: virtual channel to update
80 * vc.lock must be held by caller
82 static inline bool vchan_issue_pending(struct virt_dma_chan
*vc
)
84 list_splice_tail_init(&vc
->desc_submitted
, &vc
->desc_issued
);
85 return !list_empty(&vc
->desc_issued
);
89 * vchan_cookie_complete - report completion of a descriptor
90 * @vd: virtual descriptor to update
92 * vc.lock must be held by caller
94 static inline void vchan_cookie_complete(struct virt_dma_desc
*vd
)
96 struct virt_dma_chan
*vc
= to_virt_chan(vd
->tx
.chan
);
99 cookie
= vd
->tx
.cookie
;
100 dma_cookie_complete(&vd
->tx
);
101 dev_vdbg(vc
->chan
.device
->dev
, "txd %p[%x]: marked complete\n",
103 list_add_tail(&vd
->node
, &vc
->desc_completed
);
105 tasklet_schedule(&vc
->task
);
109 * vchan_vdesc_fini - Free or reuse a descriptor
110 * @vd: virtual descriptor to free/reuse
112 static inline void vchan_vdesc_fini(struct virt_dma_desc
*vd
)
114 struct virt_dma_chan
*vc
= to_virt_chan(vd
->tx
.chan
);
116 if (dmaengine_desc_test_reuse(&vd
->tx
))
117 list_add(&vd
->node
, &vc
->desc_allocated
);
123 * vchan_cyclic_callback - report the completion of a period
124 * @vd: virtual descriptor
126 static inline void vchan_cyclic_callback(struct virt_dma_desc
*vd
)
128 struct virt_dma_chan
*vc
= to_virt_chan(vd
->tx
.chan
);
131 tasklet_schedule(&vc
->task
);
135 * vchan_terminate_vdesc - Disable pending cyclic callback
136 * @vd: virtual descriptor to be terminated
138 * vc.lock must be held by caller
140 static inline void vchan_terminate_vdesc(struct virt_dma_desc
*vd
)
142 struct virt_dma_chan
*vc
= to_virt_chan(vd
->tx
.chan
);
144 /* free up stuck descriptor */
145 if (vc
->vd_terminated
)
146 vchan_vdesc_fini(vc
->vd_terminated
);
148 vc
->vd_terminated
= vd
;
149 if (vc
->cyclic
== vd
)
154 * vchan_next_desc - peek at the next descriptor to be processed
155 * @vc: virtual channel to obtain descriptor from
157 * vc.lock must be held by caller
159 static inline struct virt_dma_desc
*vchan_next_desc(struct virt_dma_chan
*vc
)
161 return list_first_entry_or_null(&vc
->desc_issued
,
162 struct virt_dma_desc
, node
);
166 * vchan_get_all_descriptors - obtain all submitted and issued descriptors
167 * @vc: virtual channel to get descriptors from
168 * @head: list of descriptors found
170 * vc.lock must be held by caller
172 * Removes all submitted and issued descriptors from internal lists, and
173 * provides a list of all descriptors found
175 static inline void vchan_get_all_descriptors(struct virt_dma_chan
*vc
,
176 struct list_head
*head
)
178 list_splice_tail_init(&vc
->desc_allocated
, head
);
179 list_splice_tail_init(&vc
->desc_submitted
, head
);
180 list_splice_tail_init(&vc
->desc_issued
, head
);
181 list_splice_tail_init(&vc
->desc_completed
, head
);
184 static inline void vchan_free_chan_resources(struct virt_dma_chan
*vc
)
186 struct virt_dma_desc
*vd
;
190 spin_lock_irqsave(&vc
->lock
, flags
);
191 vchan_get_all_descriptors(vc
, &head
);
192 list_for_each_entry(vd
, &head
, node
)
193 dmaengine_desc_clear_reuse(&vd
->tx
);
194 spin_unlock_irqrestore(&vc
->lock
, flags
);
196 vchan_dma_desc_free_list(vc
, &head
);
200 * vchan_synchronize() - synchronize callback execution to the current context
201 * @vc: virtual channel to synchronize
203 * Makes sure that all scheduled or active callbacks have finished running. For
204 * proper operation the caller has to ensure that no new callbacks are scheduled
205 * after the invocation of this function started.
206 * Free up the terminated cyclic descriptor to prevent memory leakage.
208 static inline void vchan_synchronize(struct virt_dma_chan
*vc
)
212 tasklet_kill(&vc
->task
);
214 spin_lock_irqsave(&vc
->lock
, flags
);
215 if (vc
->vd_terminated
) {
216 vchan_vdesc_fini(vc
->vd_terminated
);
217 vc
->vd_terminated
= NULL
;
219 spin_unlock_irqrestore(&vc
->lock
, flags
);