dmaengine.h 20 KB

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