aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/dmaengine.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/dma/dmaengine.h')
-rw-r--r--drivers/dma/dmaengine.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/drivers/dma/dmaengine.h b/drivers/dma/dmaengine.h
index 47e099772b8e..1ca5e0e633f4 100644
--- a/drivers/dma/dmaengine.h
+++ b/drivers/dma/dmaengine.h
@@ -45,4 +45,35 @@ static inline void dma_cookie_complete(struct dma_async_tx_descriptor *tx)
45 tx->cookie = 0; 45 tx->cookie = 0;
46} 46}
47 47
48/**
49 * dma_cookie_status - report cookie status
50 * @chan: dma channel
51 * @cookie: cookie we are interested in
52 * @state: dma_tx_state structure to return last/used cookies
53 *
54 * Report the status of the cookie, filling in the state structure if
55 * non-NULL. No locking is required.
56 */
57static inline enum dma_status dma_cookie_status(struct dma_chan *chan,
58 dma_cookie_t cookie, struct dma_tx_state *state)
59{
60 dma_cookie_t used, complete;
61
62 used = chan->cookie;
63 complete = chan->completed_cookie;
64 barrier();
65 if (state) {
66 state->last = complete;
67 state->used = used;
68 state->residue = 0;
69 }
70 return dma_async_is_complete(cookie, complete, used);
71}
72
73static inline void dma_set_residue(struct dma_tx_state *state, u32 residue)
74{
75 if (state)
76 state->residue = residue;
77}
78
48#endif 79#endif