dmaengine.h 21 KB

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