dmaengine.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  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/kref.h>
  26. #include <linux/completion.h>
  27. #include <linux/rcupdate.h>
  28. #include <linux/dma-mapping.h>
  29. /**
  30. * typedef dma_cookie_t - an opaque DMA cookie
  31. *
  32. * if dma_cookie_t is >0 it's a DMA request cookie, <0 it's an error code
  33. */
  34. typedef s32 dma_cookie_t;
  35. #define dma_submit_error(cookie) ((cookie) < 0 ? 1 : 0)
  36. /**
  37. * enum dma_status - DMA transaction status
  38. * @DMA_SUCCESS: transaction completed successfully
  39. * @DMA_IN_PROGRESS: transaction not yet processed
  40. * @DMA_ERROR: transaction failed
  41. */
  42. enum dma_status {
  43. DMA_SUCCESS,
  44. DMA_IN_PROGRESS,
  45. DMA_ERROR,
  46. };
  47. /**
  48. * enum dma_transaction_type - DMA transaction types/indexes
  49. */
  50. enum dma_transaction_type {
  51. DMA_MEMCPY,
  52. DMA_XOR,
  53. DMA_PQ_XOR,
  54. DMA_DUAL_XOR,
  55. DMA_PQ_UPDATE,
  56. DMA_ZERO_SUM,
  57. DMA_PQ_ZERO_SUM,
  58. DMA_MEMSET,
  59. DMA_MEMCPY_CRC32C,
  60. DMA_INTERRUPT,
  61. DMA_PRIVATE,
  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 - the descriptor cannot be reused until the client
  72. * acknowledges receipt, i.e. has has a chance to establish any
  73. * dependency 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. */
  77. enum dma_ctrl_flags {
  78. DMA_PREP_INTERRUPT = (1 << 0),
  79. DMA_CTRL_ACK = (1 << 1),
  80. DMA_COMPL_SKIP_SRC_UNMAP = (1 << 2),
  81. DMA_COMPL_SKIP_DEST_UNMAP = (1 << 3),
  82. };
  83. /**
  84. * dma_cap_mask_t - capabilities bitmap modeled after cpumask_t.
  85. * See linux/cpumask.h
  86. */
  87. typedef struct { DECLARE_BITMAP(bits, DMA_TX_TYPE_END); } dma_cap_mask_t;
  88. /**
  89. * struct dma_chan_percpu - the per-CPU part of struct dma_chan
  90. * @memcpy_count: transaction counter
  91. * @bytes_transferred: byte counter
  92. */
  93. struct dma_chan_percpu {
  94. /* stats */
  95. unsigned long memcpy_count;
  96. unsigned long bytes_transferred;
  97. };
  98. /**
  99. * struct dma_chan - devices supply DMA channels, clients use them
  100. * @device: ptr to the dma device who supplies this channel, always !%NULL
  101. * @cookie: last cookie value returned to client
  102. * @chan_id: channel ID for sysfs
  103. * @dev: class device for sysfs
  104. * @device_node: used to add this to the device chan list
  105. * @local: per-cpu pointer to a struct dma_chan_percpu
  106. * @client-count: how many clients are using this channel
  107. * @table_count: number of appearances in the mem-to-mem allocation table
  108. * @private: private data for certain client-channel associations
  109. */
  110. struct dma_chan {
  111. struct dma_device *device;
  112. dma_cookie_t cookie;
  113. /* sysfs */
  114. int chan_id;
  115. struct dma_chan_dev *dev;
  116. struct list_head device_node;
  117. struct dma_chan_percpu *local;
  118. int client_count;
  119. int table_count;
  120. void *private;
  121. };
  122. /**
  123. * struct dma_chan_dev - relate sysfs device node to backing channel device
  124. * @chan - driver channel device
  125. * @device - sysfs device
  126. * @dev_id - parent dma_device dev_id
  127. * @idr_ref - reference count to gate release of dma_device dev_id
  128. */
  129. struct dma_chan_dev {
  130. struct dma_chan *chan;
  131. struct device device;
  132. int dev_id;
  133. atomic_t *idr_ref;
  134. };
  135. static inline const char *dma_chan_name(struct dma_chan *chan)
  136. {
  137. return dev_name(&chan->dev->device);
  138. }
  139. void dma_chan_cleanup(struct kref *kref);
  140. /**
  141. * typedef dma_filter_fn - callback filter for dma_request_channel
  142. * @chan: channel to be reviewed
  143. * @filter_param: opaque parameter passed through dma_request_channel
  144. *
  145. * When this optional parameter is specified in a call to dma_request_channel a
  146. * suitable channel is passed to this routine for further dispositioning before
  147. * being returned. Where 'suitable' indicates a non-busy channel that
  148. * satisfies the given capability mask. It returns 'true' to indicate that the
  149. * channel is suitable.
  150. */
  151. typedef bool (*dma_filter_fn)(struct dma_chan *chan, void *filter_param);
  152. typedef void (*dma_async_tx_callback)(void *dma_async_param);
  153. /**
  154. * struct dma_async_tx_descriptor - async transaction descriptor
  155. * ---dma generic offload fields---
  156. * @cookie: tracking cookie for this transaction, set to -EBUSY if
  157. * this tx is sitting on a dependency list
  158. * @flags: flags to augment operation preparation, control completion, and
  159. * communicate status
  160. * @phys: physical address of the descriptor
  161. * @tx_list: driver common field for operations that require multiple
  162. * descriptors
  163. * @chan: target channel for this operation
  164. * @tx_submit: set the prepared descriptor(s) to be executed by the engine
  165. * @callback: routine to call after this operation is complete
  166. * @callback_param: general parameter to pass to the callback routine
  167. * ---async_tx api specific fields---
  168. * @next: at completion submit this descriptor
  169. * @parent: pointer to the next level up in the dependency chain
  170. * @lock: protect the parent and next pointers
  171. */
  172. struct dma_async_tx_descriptor {
  173. dma_cookie_t cookie;
  174. enum dma_ctrl_flags flags; /* not a 'long' to pack with cookie */
  175. dma_addr_t phys;
  176. struct list_head tx_list;
  177. struct dma_chan *chan;
  178. dma_cookie_t (*tx_submit)(struct dma_async_tx_descriptor *tx);
  179. dma_async_tx_callback callback;
  180. void *callback_param;
  181. struct dma_async_tx_descriptor *next;
  182. struct dma_async_tx_descriptor *parent;
  183. spinlock_t lock;
  184. };
  185. /**
  186. * struct dma_device - info on the entity supplying DMA services
  187. * @chancnt: how many DMA channels are supported
  188. * @channels: the list of struct dma_chan
  189. * @global_node: list_head for global dma_device_list
  190. * @cap_mask: one or more dma_capability flags
  191. * @max_xor: maximum number of xor sources, 0 if no capability
  192. * @dev_id: unique device ID
  193. * @dev: struct device reference for dma mapping api
  194. * @device_alloc_chan_resources: allocate resources and return the
  195. * number of allocated descriptors
  196. * @device_free_chan_resources: release DMA channel's resources
  197. * @device_prep_dma_memcpy: prepares a memcpy operation
  198. * @device_prep_dma_xor: prepares a xor operation
  199. * @device_prep_dma_zero_sum: prepares a zero_sum operation
  200. * @device_prep_dma_memset: prepares a memset operation
  201. * @device_prep_dma_interrupt: prepares an end of chain interrupt operation
  202. * @device_prep_slave_sg: prepares a slave dma operation
  203. * @device_terminate_all: terminate all pending operations
  204. * @device_is_tx_complete: poll for transaction completion
  205. * @device_issue_pending: push pending transactions to hardware
  206. */
  207. struct dma_device {
  208. unsigned int chancnt;
  209. struct list_head channels;
  210. struct list_head global_node;
  211. dma_cap_mask_t cap_mask;
  212. int max_xor;
  213. int dev_id;
  214. struct device *dev;
  215. int (*device_alloc_chan_resources)(struct dma_chan *chan);
  216. void (*device_free_chan_resources)(struct dma_chan *chan);
  217. struct dma_async_tx_descriptor *(*device_prep_dma_memcpy)(
  218. struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
  219. size_t len, unsigned long flags);
  220. struct dma_async_tx_descriptor *(*device_prep_dma_xor)(
  221. struct dma_chan *chan, dma_addr_t dest, dma_addr_t *src,
  222. unsigned int src_cnt, size_t len, unsigned long flags);
  223. struct dma_async_tx_descriptor *(*device_prep_dma_zero_sum)(
  224. struct dma_chan *chan, dma_addr_t *src, unsigned int src_cnt,
  225. size_t len, u32 *result, unsigned long flags);
  226. struct dma_async_tx_descriptor *(*device_prep_dma_memset)(
  227. struct dma_chan *chan, dma_addr_t dest, int value, size_t len,
  228. unsigned long flags);
  229. struct dma_async_tx_descriptor *(*device_prep_dma_interrupt)(
  230. struct dma_chan *chan, unsigned long flags);
  231. struct dma_async_tx_descriptor *(*device_prep_slave_sg)(
  232. struct dma_chan *chan, struct scatterlist *sgl,
  233. unsigned int sg_len, enum dma_data_direction direction,
  234. unsigned long flags);
  235. void (*device_terminate_all)(struct dma_chan *chan);
  236. enum dma_status (*device_is_tx_complete)(struct dma_chan *chan,
  237. dma_cookie_t cookie, dma_cookie_t *last,
  238. dma_cookie_t *used);
  239. void (*device_issue_pending)(struct dma_chan *chan);
  240. };
  241. /* --- public DMA engine API --- */
  242. #ifdef CONFIG_DMA_ENGINE
  243. void dmaengine_get(void);
  244. void dmaengine_put(void);
  245. #else
  246. static inline void dmaengine_get(void)
  247. {
  248. }
  249. static inline void dmaengine_put(void)
  250. {
  251. }
  252. #endif
  253. #ifdef CONFIG_NET_DMA
  254. #define net_dmaengine_get() dmaengine_get()
  255. #define net_dmaengine_put() dmaengine_put()
  256. #else
  257. static inline void net_dmaengine_get(void)
  258. {
  259. }
  260. static inline void net_dmaengine_put(void)
  261. {
  262. }
  263. #endif
  264. dma_cookie_t dma_async_memcpy_buf_to_buf(struct dma_chan *chan,
  265. void *dest, void *src, size_t len);
  266. dma_cookie_t dma_async_memcpy_buf_to_pg(struct dma_chan *chan,
  267. struct page *page, unsigned int offset, void *kdata, size_t len);
  268. dma_cookie_t dma_async_memcpy_pg_to_pg(struct dma_chan *chan,
  269. struct page *dest_pg, unsigned int dest_off, struct page *src_pg,
  270. unsigned int src_off, size_t len);
  271. void dma_async_tx_descriptor_init(struct dma_async_tx_descriptor *tx,
  272. struct dma_chan *chan);
  273. static inline void async_tx_ack(struct dma_async_tx_descriptor *tx)
  274. {
  275. tx->flags |= DMA_CTRL_ACK;
  276. }
  277. static inline void async_tx_clear_ack(struct dma_async_tx_descriptor *tx)
  278. {
  279. tx->flags &= ~DMA_CTRL_ACK;
  280. }
  281. static inline bool async_tx_test_ack(struct dma_async_tx_descriptor *tx)
  282. {
  283. return (tx->flags & DMA_CTRL_ACK) == DMA_CTRL_ACK;
  284. }
  285. #define first_dma_cap(mask) __first_dma_cap(&(mask))
  286. static inline int __first_dma_cap(const dma_cap_mask_t *srcp)
  287. {
  288. return min_t(int, DMA_TX_TYPE_END,
  289. find_first_bit(srcp->bits, DMA_TX_TYPE_END));
  290. }
  291. #define next_dma_cap(n, mask) __next_dma_cap((n), &(mask))
  292. static inline int __next_dma_cap(int n, const dma_cap_mask_t *srcp)
  293. {
  294. return min_t(int, DMA_TX_TYPE_END,
  295. find_next_bit(srcp->bits, DMA_TX_TYPE_END, n+1));
  296. }
  297. #define dma_cap_set(tx, mask) __dma_cap_set((tx), &(mask))
  298. static inline void
  299. __dma_cap_set(enum dma_transaction_type tx_type, dma_cap_mask_t *dstp)
  300. {
  301. set_bit(tx_type, dstp->bits);
  302. }
  303. #define dma_cap_zero(mask) __dma_cap_zero(&(mask))
  304. static inline void __dma_cap_zero(dma_cap_mask_t *dstp)
  305. {
  306. bitmap_zero(dstp->bits, DMA_TX_TYPE_END);
  307. }
  308. #define dma_has_cap(tx, mask) __dma_has_cap((tx), &(mask))
  309. static inline int
  310. __dma_has_cap(enum dma_transaction_type tx_type, dma_cap_mask_t *srcp)
  311. {
  312. return test_bit(tx_type, srcp->bits);
  313. }
  314. #define for_each_dma_cap_mask(cap, mask) \
  315. for ((cap) = first_dma_cap(mask); \
  316. (cap) < DMA_TX_TYPE_END; \
  317. (cap) = next_dma_cap((cap), (mask)))
  318. /**
  319. * dma_async_issue_pending - flush pending transactions to HW
  320. * @chan: target DMA channel
  321. *
  322. * This allows drivers to push copies to HW in batches,
  323. * reducing MMIO writes where possible.
  324. */
  325. static inline void dma_async_issue_pending(struct dma_chan *chan)
  326. {
  327. chan->device->device_issue_pending(chan);
  328. }
  329. #define dma_async_memcpy_issue_pending(chan) dma_async_issue_pending(chan)
  330. /**
  331. * dma_async_is_tx_complete - poll for transaction completion
  332. * @chan: DMA channel
  333. * @cookie: transaction identifier to check status of
  334. * @last: returns last completed cookie, can be NULL
  335. * @used: returns last issued cookie, can be NULL
  336. *
  337. * If @last and @used are passed in, upon return they reflect the driver
  338. * internal state and can be used with dma_async_is_complete() to check
  339. * the status of multiple cookies without re-checking hardware state.
  340. */
  341. static inline enum dma_status dma_async_is_tx_complete(struct dma_chan *chan,
  342. dma_cookie_t cookie, dma_cookie_t *last, dma_cookie_t *used)
  343. {
  344. return chan->device->device_is_tx_complete(chan, cookie, last, used);
  345. }
  346. #define dma_async_memcpy_complete(chan, cookie, last, used)\
  347. dma_async_is_tx_complete(chan, cookie, last, used)
  348. /**
  349. * dma_async_is_complete - test a cookie against chan state
  350. * @cookie: transaction identifier to test status of
  351. * @last_complete: last know completed transaction
  352. * @last_used: last cookie value handed out
  353. *
  354. * dma_async_is_complete() is used in dma_async_memcpy_complete()
  355. * the test logic is separated for lightweight testing of multiple cookies
  356. */
  357. static inline enum dma_status dma_async_is_complete(dma_cookie_t cookie,
  358. dma_cookie_t last_complete, dma_cookie_t last_used)
  359. {
  360. if (last_complete <= last_used) {
  361. if ((cookie <= last_complete) || (cookie > last_used))
  362. return DMA_SUCCESS;
  363. } else {
  364. if ((cookie <= last_complete) && (cookie > last_used))
  365. return DMA_SUCCESS;
  366. }
  367. return DMA_IN_PROGRESS;
  368. }
  369. enum dma_status dma_sync_wait(struct dma_chan *chan, dma_cookie_t cookie);
  370. #ifdef CONFIG_DMA_ENGINE
  371. enum dma_status dma_wait_for_async_tx(struct dma_async_tx_descriptor *tx);
  372. void dma_issue_pending_all(void);
  373. #else
  374. static inline enum dma_status dma_wait_for_async_tx(struct dma_async_tx_descriptor *tx)
  375. {
  376. return DMA_SUCCESS;
  377. }
  378. static inline void dma_issue_pending_all(void)
  379. {
  380. do { } while (0);
  381. }
  382. #endif
  383. /* --- DMA device --- */
  384. int dma_async_device_register(struct dma_device *device);
  385. void dma_async_device_unregister(struct dma_device *device);
  386. void dma_run_dependencies(struct dma_async_tx_descriptor *tx);
  387. struct dma_chan *dma_find_channel(enum dma_transaction_type tx_type);
  388. #define dma_request_channel(mask, x, y) __dma_request_channel(&(mask), x, y)
  389. struct dma_chan *__dma_request_channel(dma_cap_mask_t *mask, dma_filter_fn fn, void *fn_param);
  390. void dma_release_channel(struct dma_chan *chan);
  391. /* --- Helper iov-locking functions --- */
  392. struct dma_page_list {
  393. char __user *base_address;
  394. int nr_pages;
  395. struct page **pages;
  396. };
  397. struct dma_pinned_list {
  398. int nr_iovecs;
  399. struct dma_page_list page_list[0];
  400. };
  401. struct dma_pinned_list *dma_pin_iovec_pages(struct iovec *iov, size_t len);
  402. void dma_unpin_iovec_pages(struct dma_pinned_list* pinned_list);
  403. dma_cookie_t dma_memcpy_to_iovec(struct dma_chan *chan, struct iovec *iov,
  404. struct dma_pinned_list *pinned_list, unsigned char *kdata, size_t len);
  405. dma_cookie_t dma_memcpy_pg_to_iovec(struct dma_chan *chan, struct iovec *iov,
  406. struct dma_pinned_list *pinned_list, struct page *page,
  407. unsigned int offset, size_t len);
  408. #endif /* DMAENGINE_H */