tuntap: switch to use rtnl_dereference()
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / dma / dmaengine.h
blob17f983a4e9bac55ba4c32fff728b3e908d8b123f
1 /*
2 * The contents of this file are private to DMA engine drivers, and is not
3 * part of the API to be used by DMA engine users.
4 */
5 #ifndef DMAENGINE_H
6 #define DMAENGINE_H
8 #include <linux/bug.h>
9 #include <linux/dmaengine.h>
11 /**
12 * dma_cookie_init - initialize the cookies for a DMA channel
13 * @chan: dma channel to initialize
15 static inline void dma_cookie_init(struct dma_chan *chan)
17 chan->cookie = DMA_MIN_COOKIE;
18 chan->completed_cookie = DMA_MIN_COOKIE;
21 /**
22 * dma_cookie_assign - assign a DMA engine cookie to the descriptor
23 * @tx: descriptor needing cookie
25 * Assign a unique non-zero per-channel cookie to the descriptor.
26 * Note: caller is expected to hold a lock to prevent concurrency.
28 static inline dma_cookie_t dma_cookie_assign(struct dma_async_tx_descriptor *tx)
30 struct dma_chan *chan = tx->chan;
31 dma_cookie_t cookie;
33 cookie = chan->cookie + 1;
34 if (cookie < DMA_MIN_COOKIE)
35 cookie = DMA_MIN_COOKIE;
36 tx->cookie = chan->cookie = cookie;
38 return cookie;
41 /**
42 * dma_cookie_complete - complete a descriptor
43 * @tx: descriptor to complete
45 * Mark this descriptor complete by updating the channels completed
46 * cookie marker. Zero the descriptors cookie to prevent accidental
47 * repeated completions.
49 * Note: caller is expected to hold a lock to prevent concurrency.
51 static inline void dma_cookie_complete(struct dma_async_tx_descriptor *tx)
53 BUG_ON(tx->cookie < DMA_MIN_COOKIE);
54 tx->chan->completed_cookie = tx->cookie;
55 tx->cookie = 0;
58 /**
59 * dma_cookie_status - report cookie status
60 * @chan: dma channel
61 * @cookie: cookie we are interested in
62 * @state: dma_tx_state structure to return last/used cookies
64 * Report the status of the cookie, filling in the state structure if
65 * non-NULL. No locking is required.
67 static inline enum dma_status dma_cookie_status(struct dma_chan *chan,
68 dma_cookie_t cookie, struct dma_tx_state *state)
70 dma_cookie_t used, complete;
72 used = chan->cookie;
73 complete = chan->completed_cookie;
74 barrier();
75 if (state) {
76 state->last = complete;
77 state->used = used;
78 state->residue = 0;
80 return dma_async_is_complete(cookie, complete, used);
83 static inline void dma_set_residue(struct dma_tx_state *state, u32 residue)
85 if (state)
86 state->residue = residue;
89 #endif