cb234979fc6bd4dc14a48398e7cc5d7f01311554
[safe/jmp/linux-2.6] / include / linux / dmaengine.h
1 /*
2  * Copyright(c) 2004 - 2006 Intel Corporation. All rights reserved.
3  *
4  * This program is free software; you can redistribute it and/or modify it
5  * under the terms of the GNU General Public License as published by the Free
6  * Software Foundation; either version 2 of the License, or (at your option)
7  * any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
12  * more details.
13  *
14  * You should have received a copy of the GNU General Public License along with
15  * this program; if not, write to the Free Software Foundation, Inc., 59
16  * Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17  *
18  * The full GNU General Public License is included in this distribution in the
19  * file called COPYING.
20  */
21 #ifndef DMAENGINE_H
22 #define DMAENGINE_H
23
24 #include <linux/device.h>
25 #include <linux/uio.h>
26 #include <linux/dma-mapping.h>
27
28 /**
29  * typedef dma_cookie_t - an opaque DMA cookie
30  *
31  * if dma_cookie_t is >0 it's a DMA request cookie, <0 it's an error code
32  */
33 typedef s32 dma_cookie_t;
34 #define DMA_MIN_COOKIE  1
35 #define DMA_MAX_COOKIE  INT_MAX
36
37 #define dma_submit_error(cookie) ((cookie) < 0 ? 1 : 0)
38
39 /**
40  * enum dma_status - DMA transaction status
41  * @DMA_SUCCESS: transaction completed successfully
42  * @DMA_IN_PROGRESS: transaction not yet processed
43  * @DMA_ERROR: transaction failed
44  */
45 enum dma_status {
46         DMA_SUCCESS,
47         DMA_IN_PROGRESS,
48         DMA_ERROR,
49 };
50
51 /**
52  * enum dma_transaction_type - DMA transaction types/indexes
53  *
54  * Note: The DMA_ASYNC_TX capability is not to be set by drivers.  It is
55  * automatically set as dma devices are registered.
56  */
57 enum dma_transaction_type {
58         DMA_MEMCPY,
59         DMA_XOR,
60         DMA_PQ,
61         DMA_XOR_VAL,
62         DMA_PQ_VAL,
63         DMA_MEMSET,
64         DMA_INTERRUPT,
65         DMA_PRIVATE,
66         DMA_ASYNC_TX,
67         DMA_SLAVE,
68 };
69
70 /* last transaction type for creation of the capabilities mask */
71 #define DMA_TX_TYPE_END (DMA_SLAVE + 1)
72
73
74 /**
75  * enum dma_ctrl_flags - DMA flags to augment operation preparation,
76  *  control completion, and communicate status.
77  * @DMA_PREP_INTERRUPT - trigger an interrupt (callback) upon completion of
78  *  this transaction
79  * @DMA_CTRL_ACK - if clear, the descriptor cannot be reused until the client
80  *  acknowledges receipt, i.e. has has a chance to establish any dependency
81  *  chains
82  * @DMA_COMPL_SKIP_SRC_UNMAP - set to disable dma-unmapping the source buffer(s)
83  * @DMA_COMPL_SKIP_DEST_UNMAP - set to disable dma-unmapping the destination(s)
84  * @DMA_COMPL_SRC_UNMAP_SINGLE - set to do the source dma-unmapping as single
85  *      (if not set, do the source dma-unmapping as page)
86  * @DMA_COMPL_DEST_UNMAP_SINGLE - set to do the destination dma-unmapping as single
87  *      (if not set, do the destination dma-unmapping as page)
88  * @DMA_PREP_PQ_DISABLE_P - prevent generation of P while generating Q
89  * @DMA_PREP_PQ_DISABLE_Q - prevent generation of Q while generating P
90  * @DMA_PREP_CONTINUE - indicate to a driver that it is reusing buffers as
91  *  sources that were the result of a previous operation, in the case of a PQ
92  *  operation it continues the calculation with new sources
93  * @DMA_PREP_FENCE - tell the driver that subsequent operations depend
94  *  on the result of this operation
95  */
96 enum dma_ctrl_flags {
97         DMA_PREP_INTERRUPT = (1 << 0),
98         DMA_CTRL_ACK = (1 << 1),
99         DMA_COMPL_SKIP_SRC_UNMAP = (1 << 2),
100         DMA_COMPL_SKIP_DEST_UNMAP = (1 << 3),
101         DMA_COMPL_SRC_UNMAP_SINGLE = (1 << 4),
102         DMA_COMPL_DEST_UNMAP_SINGLE = (1 << 5),
103         DMA_PREP_PQ_DISABLE_P = (1 << 6),
104         DMA_PREP_PQ_DISABLE_Q = (1 << 7),
105         DMA_PREP_CONTINUE = (1 << 8),
106         DMA_PREP_FENCE = (1 << 9),
107 };
108
109 /**
110  * enum sum_check_bits - bit position of pq_check_flags
111  */
112 enum sum_check_bits {
113         SUM_CHECK_P = 0,
114         SUM_CHECK_Q = 1,
115 };
116
117 /**
118  * enum pq_check_flags - result of async_{xor,pq}_zero_sum operations
119  * @SUM_CHECK_P_RESULT - 1 if xor zero sum error, 0 otherwise
120  * @SUM_CHECK_Q_RESULT - 1 if reed-solomon zero sum error, 0 otherwise
121  */
122 enum sum_check_flags {
123         SUM_CHECK_P_RESULT = (1 << SUM_CHECK_P),
124         SUM_CHECK_Q_RESULT = (1 << SUM_CHECK_Q),
125 };
126
127
128 /**
129  * dma_cap_mask_t - capabilities bitmap modeled after cpumask_t.
130  * See linux/cpumask.h
131  */
132 typedef struct { DECLARE_BITMAP(bits, DMA_TX_TYPE_END); } dma_cap_mask_t;
133
134 /**
135  * struct dma_chan_percpu - the per-CPU part of struct dma_chan
136  * @memcpy_count: transaction counter
137  * @bytes_transferred: byte counter
138  */
139
140 struct dma_chan_percpu {
141         /* stats */
142         unsigned long memcpy_count;
143         unsigned long bytes_transferred;
144 };
145
146 /**
147  * struct dma_chan - devices supply DMA channels, clients use them
148  * @device: ptr to the dma device who supplies this channel, always !%NULL
149  * @cookie: last cookie value returned to client
150  * @chan_id: channel ID for sysfs
151  * @dev: class device for sysfs
152  * @device_node: used to add this to the device chan list
153  * @local: per-cpu pointer to a struct dma_chan_percpu
154  * @client-count: how many clients are using this channel
155  * @table_count: number of appearances in the mem-to-mem allocation table
156  * @private: private data for certain client-channel associations
157  */
158 struct dma_chan {
159         struct dma_device *device;
160         dma_cookie_t cookie;
161
162         /* sysfs */
163         int chan_id;
164         struct dma_chan_dev *dev;
165
166         struct list_head device_node;
167         struct dma_chan_percpu __percpu *local;
168         int client_count;
169         int table_count;
170         void *private;
171 };
172
173 /**
174  * struct dma_chan_dev - relate sysfs device node to backing channel device
175  * @chan - driver channel device
176  * @device - sysfs device
177  * @dev_id - parent dma_device dev_id
178  * @idr_ref - reference count to gate release of dma_device dev_id
179  */
180 struct dma_chan_dev {
181         struct dma_chan *chan;
182         struct device device;
183         int dev_id;
184         atomic_t *idr_ref;
185 };
186
187 static inline const char *dma_chan_name(struct dma_chan *chan)
188 {
189         return dev_name(&chan->dev->device);
190 }
191
192 void dma_chan_cleanup(struct kref *kref);
193
194 /**
195  * typedef dma_filter_fn - callback filter for dma_request_channel
196  * @chan: channel to be reviewed
197  * @filter_param: opaque parameter passed through dma_request_channel
198  *
199  * When this optional parameter is specified in a call to dma_request_channel a
200  * suitable channel is passed to this routine for further dispositioning before
201  * being returned.  Where 'suitable' indicates a non-busy channel that
202  * satisfies the given capability mask.  It returns 'true' to indicate that the
203  * channel is suitable.
204  */
205 typedef bool (*dma_filter_fn)(struct dma_chan *chan, void *filter_param);
206
207 typedef void (*dma_async_tx_callback)(void *dma_async_param);
208 /**
209  * struct dma_async_tx_descriptor - async transaction descriptor
210  * ---dma generic offload fields---
211  * @cookie: tracking cookie for this transaction, set to -EBUSY if
212  *      this tx is sitting on a dependency list
213  * @flags: flags to augment operation preparation, control completion, and
214  *      communicate status
215  * @phys: physical address of the descriptor
216  * @chan: target channel for this operation
217  * @tx_submit: set the prepared descriptor(s) to be executed by the engine
218  * @callback: routine to call after this operation is complete
219  * @callback_param: general parameter to pass to the callback routine
220  * ---async_tx api specific fields---
221  * @next: at completion submit this descriptor
222  * @parent: pointer to the next level up in the dependency chain
223  * @lock: protect the parent and next pointers
224  */
225 struct dma_async_tx_descriptor {
226         dma_cookie_t cookie;
227         enum dma_ctrl_flags flags; /* not a 'long' to pack with cookie */
228         dma_addr_t phys;
229         struct dma_chan *chan;
230         dma_cookie_t (*tx_submit)(struct dma_async_tx_descriptor *tx);
231         dma_async_tx_callback callback;
232         void *callback_param;
233 #ifndef CONFIG_ASYNC_TX_DISABLE_CHANNEL_SWITCH
234         struct dma_async_tx_descriptor *next;
235         struct dma_async_tx_descriptor *parent;
236         spinlock_t lock;
237 #endif
238 };
239
240 #ifdef CONFIG_ASYNC_TX_DISABLE_CHANNEL_SWITCH
241 static inline void txd_lock(struct dma_async_tx_descriptor *txd)
242 {
243 }
244 static inline void txd_unlock(struct dma_async_tx_descriptor *txd)
245 {
246 }
247 static inline void txd_chain(struct dma_async_tx_descriptor *txd, struct dma_async_tx_descriptor *next)
248 {
249         BUG();
250 }
251 static inline void txd_clear_parent(struct dma_async_tx_descriptor *txd)
252 {
253 }
254 static inline void txd_clear_next(struct dma_async_tx_descriptor *txd)
255 {
256 }
257 static inline struct dma_async_tx_descriptor *txd_next(struct dma_async_tx_descriptor *txd)
258 {
259         return NULL;
260 }
261 static inline struct dma_async_tx_descriptor *txd_parent(struct dma_async_tx_descriptor *txd)
262 {
263         return NULL;
264 }
265
266 #else
267 static inline void txd_lock(struct dma_async_tx_descriptor *txd)
268 {
269         spin_lock_bh(&txd->lock);
270 }
271 static inline void txd_unlock(struct dma_async_tx_descriptor *txd)
272 {
273         spin_unlock_bh(&txd->lock);
274 }
275 static inline void txd_chain(struct dma_async_tx_descriptor *txd, struct dma_async_tx_descriptor *next)
276 {
277         txd->next = next;
278         next->parent = txd;
279 }
280 static inline void txd_clear_parent(struct dma_async_tx_descriptor *txd)
281 {
282         txd->parent = NULL;
283 }
284 static inline void txd_clear_next(struct dma_async_tx_descriptor *txd)
285 {
286         txd->next = NULL;
287 }
288 static inline struct dma_async_tx_descriptor *txd_parent(struct dma_async_tx_descriptor *txd)
289 {
290         return txd->parent;
291 }
292 static inline struct dma_async_tx_descriptor *txd_next(struct dma_async_tx_descriptor *txd)
293 {
294         return txd->next;
295 }
296 #endif
297
298 /**
299  * struct dma_device - info on the entity supplying DMA services
300  * @chancnt: how many DMA channels are supported
301  * @privatecnt: how many DMA channels are requested by dma_request_channel
302  * @channels: the list of struct dma_chan
303  * @global_node: list_head for global dma_device_list
304  * @cap_mask: one or more dma_capability flags
305  * @max_xor: maximum number of xor sources, 0 if no capability
306  * @max_pq: maximum number of PQ sources and PQ-continue capability
307  * @copy_align: alignment shift for memcpy operations
308  * @xor_align: alignment shift for xor operations
309  * @pq_align: alignment shift for pq operations
310  * @fill_align: alignment shift for memset operations
311  * @dev_id: unique device ID
312  * @dev: struct device reference for dma mapping api
313  * @device_alloc_chan_resources: allocate resources and return the
314  *      number of allocated descriptors
315  * @device_free_chan_resources: release DMA channel's resources
316  * @device_prep_dma_memcpy: prepares a memcpy operation
317  * @device_prep_dma_xor: prepares a xor operation
318  * @device_prep_dma_xor_val: prepares a xor validation operation
319  * @device_prep_dma_pq: prepares a pq operation
320  * @device_prep_dma_pq_val: prepares a pqzero_sum operation
321  * @device_prep_dma_memset: prepares a memset operation
322  * @device_prep_dma_interrupt: prepares an end of chain interrupt operation
323  * @device_prep_slave_sg: prepares a slave dma operation
324  * @device_terminate_all: terminate all pending operations
325  * @device_is_tx_complete: poll for transaction completion
326  * @device_issue_pending: push pending transactions to hardware
327  */
328 struct dma_device {
329
330         unsigned int chancnt;
331         unsigned int privatecnt;
332         struct list_head channels;
333         struct list_head global_node;
334         dma_cap_mask_t  cap_mask;
335         unsigned short max_xor;
336         unsigned short max_pq;
337         u8 copy_align;
338         u8 xor_align;
339         u8 pq_align;
340         u8 fill_align;
341         #define DMA_HAS_PQ_CONTINUE (1 << 15)
342
343         int dev_id;
344         struct device *dev;
345
346         int (*device_alloc_chan_resources)(struct dma_chan *chan);
347         void (*device_free_chan_resources)(struct dma_chan *chan);
348
349         struct dma_async_tx_descriptor *(*device_prep_dma_memcpy)(
350                 struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
351                 size_t len, unsigned long flags);
352         struct dma_async_tx_descriptor *(*device_prep_dma_xor)(
353                 struct dma_chan *chan, dma_addr_t dest, dma_addr_t *src,
354                 unsigned int src_cnt, size_t len, unsigned long flags);
355         struct dma_async_tx_descriptor *(*device_prep_dma_xor_val)(
356                 struct dma_chan *chan, dma_addr_t *src, unsigned int src_cnt,
357                 size_t len, enum sum_check_flags *result, unsigned long flags);
358         struct dma_async_tx_descriptor *(*device_prep_dma_pq)(
359                 struct dma_chan *chan, dma_addr_t *dst, dma_addr_t *src,
360                 unsigned int src_cnt, const unsigned char *scf,
361                 size_t len, unsigned long flags);
362         struct dma_async_tx_descriptor *(*device_prep_dma_pq_val)(
363                 struct dma_chan *chan, dma_addr_t *pq, dma_addr_t *src,
364                 unsigned int src_cnt, const unsigned char *scf, size_t len,
365                 enum sum_check_flags *pqres, unsigned long flags);
366         struct dma_async_tx_descriptor *(*device_prep_dma_memset)(
367                 struct dma_chan *chan, dma_addr_t dest, int value, size_t len,
368                 unsigned long flags);
369         struct dma_async_tx_descriptor *(*device_prep_dma_interrupt)(
370                 struct dma_chan *chan, unsigned long flags);
371
372         struct dma_async_tx_descriptor *(*device_prep_slave_sg)(
373                 struct dma_chan *chan, struct scatterlist *sgl,
374                 unsigned int sg_len, enum dma_data_direction direction,
375                 unsigned long flags);
376         void (*device_terminate_all)(struct dma_chan *chan);
377
378         enum dma_status (*device_is_tx_complete)(struct dma_chan *chan,
379                         dma_cookie_t cookie, dma_cookie_t *last,
380                         dma_cookie_t *used);
381         void (*device_issue_pending)(struct dma_chan *chan);
382 };
383
384 static inline bool dmaengine_check_align(u8 align, size_t off1, size_t off2, size_t len)
385 {
386         size_t mask;
387
388         if (!align)
389                 return true;
390         mask = (1 << align) - 1;
391         if (mask & (off1 | off2 | len))
392                 return false;
393         return true;
394 }
395
396 static inline bool is_dma_copy_aligned(struct dma_device *dev, size_t off1,
397                                        size_t off2, size_t len)
398 {
399         return dmaengine_check_align(dev->copy_align, off1, off2, len);
400 }
401
402 static inline bool is_dma_xor_aligned(struct dma_device *dev, size_t off1,
403                                       size_t off2, size_t len)
404 {
405         return dmaengine_check_align(dev->xor_align, off1, off2, len);
406 }
407
408 static inline bool is_dma_pq_aligned(struct dma_device *dev, size_t off1,
409                                      size_t off2, size_t len)
410 {
411         return dmaengine_check_align(dev->pq_align, off1, off2, len);
412 }
413
414 static inline bool is_dma_fill_aligned(struct dma_device *dev, size_t off1,
415                                        size_t off2, size_t len)
416 {
417         return dmaengine_check_align(dev->fill_align, off1, off2, len);
418 }
419
420 static inline void
421 dma_set_maxpq(struct dma_device *dma, int maxpq, int has_pq_continue)
422 {
423         dma->max_pq = maxpq;
424         if (has_pq_continue)
425                 dma->max_pq |= DMA_HAS_PQ_CONTINUE;
426 }
427
428 static inline bool dmaf_continue(enum dma_ctrl_flags flags)
429 {
430         return (flags & DMA_PREP_CONTINUE) == DMA_PREP_CONTINUE;
431 }
432
433 static inline bool dmaf_p_disabled_continue(enum dma_ctrl_flags flags)
434 {
435         enum dma_ctrl_flags mask = DMA_PREP_CONTINUE | DMA_PREP_PQ_DISABLE_P;
436
437         return (flags & mask) == mask;
438 }
439
440 static inline bool dma_dev_has_pq_continue(struct dma_device *dma)
441 {
442         return (dma->max_pq & DMA_HAS_PQ_CONTINUE) == DMA_HAS_PQ_CONTINUE;
443 }
444
445 static unsigned short dma_dev_to_maxpq(struct dma_device *dma)
446 {
447         return dma->max_pq & ~DMA_HAS_PQ_CONTINUE;
448 }
449
450 /* dma_maxpq - reduce maxpq in the face of continued operations
451  * @dma - dma device with PQ capability
452  * @flags - to check if DMA_PREP_CONTINUE and DMA_PREP_PQ_DISABLE_P are set
453  *
454  * When an engine does not support native continuation we need 3 extra
455  * source slots to reuse P and Q with the following coefficients:
456  * 1/ {00} * P : remove P from Q', but use it as a source for P'
457  * 2/ {01} * Q : use Q to continue Q' calculation
458  * 3/ {00} * Q : subtract Q from P' to cancel (2)
459  *
460  * In the case where P is disabled we only need 1 extra source:
461  * 1/ {01} * Q : use Q to continue Q' calculation
462  */
463 static inline int dma_maxpq(struct dma_device *dma, enum dma_ctrl_flags flags)
464 {
465         if (dma_dev_has_pq_continue(dma) || !dmaf_continue(flags))
466                 return dma_dev_to_maxpq(dma);
467         else if (dmaf_p_disabled_continue(flags))
468                 return dma_dev_to_maxpq(dma) - 1;
469         else if (dmaf_continue(flags))
470                 return dma_dev_to_maxpq(dma) - 3;
471         BUG();
472 }
473
474 /* --- public DMA engine API --- */
475
476 #ifdef CONFIG_DMA_ENGINE
477 void dmaengine_get(void);
478 void dmaengine_put(void);
479 #else
480 static inline void dmaengine_get(void)
481 {
482 }
483 static inline void dmaengine_put(void)
484 {
485 }
486 #endif
487
488 #ifdef CONFIG_NET_DMA
489 #define net_dmaengine_get()     dmaengine_get()
490 #define net_dmaengine_put()     dmaengine_put()
491 #else
492 static inline void net_dmaengine_get(void)
493 {
494 }
495 static inline void net_dmaengine_put(void)
496 {
497 }
498 #endif
499
500 #ifdef CONFIG_ASYNC_TX_DMA
501 #define async_dmaengine_get()   dmaengine_get()
502 #define async_dmaengine_put()   dmaengine_put()
503 #ifdef CONFIG_ASYNC_TX_DISABLE_CHANNEL_SWITCH
504 #define async_dma_find_channel(type) dma_find_channel(DMA_ASYNC_TX)
505 #else
506 #define async_dma_find_channel(type) dma_find_channel(type)
507 #endif /* CONFIG_ASYNC_TX_DISABLE_CHANNEL_SWITCH */
508 #else
509 static inline void async_dmaengine_get(void)
510 {
511 }
512 static inline void async_dmaengine_put(void)
513 {
514 }
515 static inline struct dma_chan *
516 async_dma_find_channel(enum dma_transaction_type type)
517 {
518         return NULL;
519 }
520 #endif /* CONFIG_ASYNC_TX_DMA */
521
522 dma_cookie_t dma_async_memcpy_buf_to_buf(struct dma_chan *chan,
523         void *dest, void *src, size_t len);
524 dma_cookie_t dma_async_memcpy_buf_to_pg(struct dma_chan *chan,
525         struct page *page, unsigned int offset, void *kdata, size_t len);
526 dma_cookie_t dma_async_memcpy_pg_to_pg(struct dma_chan *chan,
527         struct page *dest_pg, unsigned int dest_off, struct page *src_pg,
528         unsigned int src_off, size_t len);
529 void dma_async_tx_descriptor_init(struct dma_async_tx_descriptor *tx,
530         struct dma_chan *chan);
531
532 static inline void async_tx_ack(struct dma_async_tx_descriptor *tx)
533 {
534         tx->flags |= DMA_CTRL_ACK;
535 }
536
537 static inline void async_tx_clear_ack(struct dma_async_tx_descriptor *tx)
538 {
539         tx->flags &= ~DMA_CTRL_ACK;
540 }
541
542 static inline bool async_tx_test_ack(struct dma_async_tx_descriptor *tx)
543 {
544         return (tx->flags & DMA_CTRL_ACK) == DMA_CTRL_ACK;
545 }
546
547 #define first_dma_cap(mask) __first_dma_cap(&(mask))
548 static inline int __first_dma_cap(const dma_cap_mask_t *srcp)
549 {
550         return min_t(int, DMA_TX_TYPE_END,
551                 find_first_bit(srcp->bits, DMA_TX_TYPE_END));
552 }
553
554 #define next_dma_cap(n, mask) __next_dma_cap((n), &(mask))
555 static inline int __next_dma_cap(int n, const dma_cap_mask_t *srcp)
556 {
557         return min_t(int, DMA_TX_TYPE_END,
558                 find_next_bit(srcp->bits, DMA_TX_TYPE_END, n+1));
559 }
560
561 #define dma_cap_set(tx, mask) __dma_cap_set((tx), &(mask))
562 static inline void
563 __dma_cap_set(enum dma_transaction_type tx_type, dma_cap_mask_t *dstp)
564 {
565         set_bit(tx_type, dstp->bits);
566 }
567
568 #define dma_cap_clear(tx, mask) __dma_cap_clear((tx), &(mask))
569 static inline void
570 __dma_cap_clear(enum dma_transaction_type tx_type, dma_cap_mask_t *dstp)
571 {
572         clear_bit(tx_type, dstp->bits);
573 }
574
575 #define dma_cap_zero(mask) __dma_cap_zero(&(mask))
576 static inline void __dma_cap_zero(dma_cap_mask_t *dstp)
577 {
578         bitmap_zero(dstp->bits, DMA_TX_TYPE_END);
579 }
580
581 #define dma_has_cap(tx, mask) __dma_has_cap((tx), &(mask))
582 static inline int
583 __dma_has_cap(enum dma_transaction_type tx_type, dma_cap_mask_t *srcp)
584 {
585         return test_bit(tx_type, srcp->bits);
586 }
587
588 #define for_each_dma_cap_mask(cap, mask) \
589         for ((cap) = first_dma_cap(mask);       \
590                 (cap) < DMA_TX_TYPE_END;        \
591                 (cap) = next_dma_cap((cap), (mask)))
592
593 /**
594  * dma_async_issue_pending - flush pending transactions to HW
595  * @chan: target DMA channel
596  *
597  * This allows drivers to push copies to HW in batches,
598  * reducing MMIO writes where possible.
599  */
600 static inline void dma_async_issue_pending(struct dma_chan *chan)
601 {
602         chan->device->device_issue_pending(chan);
603 }
604
605 #define dma_async_memcpy_issue_pending(chan) dma_async_issue_pending(chan)
606
607 /**
608  * dma_async_is_tx_complete - poll for transaction completion
609  * @chan: DMA channel
610  * @cookie: transaction identifier to check status of
611  * @last: returns last completed cookie, can be NULL
612  * @used: returns last issued cookie, can be NULL
613  *
614  * If @last and @used are passed in, upon return they reflect the driver
615  * internal state and can be used with dma_async_is_complete() to check
616  * the status of multiple cookies without re-checking hardware state.
617  */
618 static inline enum dma_status dma_async_is_tx_complete(struct dma_chan *chan,
619         dma_cookie_t cookie, dma_cookie_t *last, dma_cookie_t *used)
620 {
621         return chan->device->device_is_tx_complete(chan, cookie, last, used);
622 }
623
624 #define dma_async_memcpy_complete(chan, cookie, last, used)\
625         dma_async_is_tx_complete(chan, cookie, last, used)
626
627 /**
628  * dma_async_is_complete - test a cookie against chan state
629  * @cookie: transaction identifier to test status of
630  * @last_complete: last know completed transaction
631  * @last_used: last cookie value handed out
632  *
633  * dma_async_is_complete() is used in dma_async_memcpy_complete()
634  * the test logic is separated for lightweight testing of multiple cookies
635  */
636 static inline enum dma_status dma_async_is_complete(dma_cookie_t cookie,
637                         dma_cookie_t last_complete, dma_cookie_t last_used)
638 {
639         if (last_complete <= last_used) {
640                 if ((cookie <= last_complete) || (cookie > last_used))
641                         return DMA_SUCCESS;
642         } else {
643                 if ((cookie <= last_complete) && (cookie > last_used))
644                         return DMA_SUCCESS;
645         }
646         return DMA_IN_PROGRESS;
647 }
648
649 enum dma_status dma_sync_wait(struct dma_chan *chan, dma_cookie_t cookie);
650 #ifdef CONFIG_DMA_ENGINE
651 enum dma_status dma_wait_for_async_tx(struct dma_async_tx_descriptor *tx);
652 void dma_issue_pending_all(void);
653 #else
654 static inline enum dma_status dma_wait_for_async_tx(struct dma_async_tx_descriptor *tx)
655 {
656         return DMA_SUCCESS;
657 }
658 static inline void dma_issue_pending_all(void)
659 {
660         do { } while (0);
661 }
662 #endif
663
664 /* --- DMA device --- */
665
666 int dma_async_device_register(struct dma_device *device);
667 void dma_async_device_unregister(struct dma_device *device);
668 void dma_run_dependencies(struct dma_async_tx_descriptor *tx);
669 struct dma_chan *dma_find_channel(enum dma_transaction_type tx_type);
670 #define dma_request_channel(mask, x, y) __dma_request_channel(&(mask), x, y)
671 struct dma_chan *__dma_request_channel(dma_cap_mask_t *mask, dma_filter_fn fn, void *fn_param);
672 void dma_release_channel(struct dma_chan *chan);
673
674 /* --- Helper iov-locking functions --- */
675
676 struct dma_page_list {
677         char __user *base_address;
678         int nr_pages;
679         struct page **pages;
680 };
681
682 struct dma_pinned_list {
683         int nr_iovecs;
684         struct dma_page_list page_list[0];
685 };
686
687 struct dma_pinned_list *dma_pin_iovec_pages(struct iovec *iov, size_t len);
688 void dma_unpin_iovec_pages(struct dma_pinned_list* pinned_list);
689
690 dma_cookie_t dma_memcpy_to_iovec(struct dma_chan *chan, struct iovec *iov,
691         struct dma_pinned_list *pinned_list, unsigned char *kdata, size_t len);
692 dma_cookie_t dma_memcpy_pg_to_iovec(struct dma_chan *chan, struct iovec *iov,
693         struct dma_pinned_list *pinned_list, struct page *page,
694         unsigned int offset, size_t len);
695
696 #endif /* DMAENGINE_H */