dmaengine.h 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826
  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_PAUSED: transaction is paused
  40. * @DMA_ERROR: transaction failed
  41. */
  42. enum dma_status {
  43. DMA_SUCCESS,
  44. DMA_IN_PROGRESS,
  45. DMA_PAUSED,
  46. DMA_ERROR,
  47. };
  48. /**
  49. * enum dma_transaction_type - DMA transaction types/indexes
  50. *
  51. * Note: The DMA_ASYNC_TX capability is not to be set by drivers. It is
  52. * automatically set as dma devices are registered.
  53. */
  54. enum dma_transaction_type {
  55. DMA_MEMCPY,
  56. DMA_XOR,
  57. DMA_PQ,
  58. DMA_XOR_VAL,
  59. DMA_PQ_VAL,
  60. DMA_MEMSET,
  61. DMA_INTERRUPT,
  62. DMA_SG,
  63. DMA_PRIVATE,
  64. DMA_ASYNC_TX,
  65. DMA_SLAVE,
  66. };
  67. /* last transaction type for creation of the capabilities mask */
  68. #define DMA_TX_TYPE_END (DMA_SLAVE + 1)
  69. /**
  70. * enum dma_ctrl_flags - DMA flags to augment operation preparation,
  71. * control completion, and communicate status.
  72. * @DMA_PREP_INTERRUPT - trigger an interrupt (callback) upon completion of
  73. * this transaction
  74. * @DMA_CTRL_ACK - if clear, the descriptor cannot be reused until the client
  75. * acknowledges receipt, i.e. has has a chance to establish any dependency
  76. * chains
  77. * @DMA_COMPL_SKIP_SRC_UNMAP - set to disable dma-unmapping the source buffer(s)
  78. * @DMA_COMPL_SKIP_DEST_UNMAP - set to disable dma-unmapping the destination(s)
  79. * @DMA_COMPL_SRC_UNMAP_SINGLE - set to do the source dma-unmapping as single
  80. * (if not set, do the source dma-unmapping as page)
  81. * @DMA_COMPL_DEST_UNMAP_SINGLE - set to do the destination dma-unmapping as single
  82. * (if not set, do the destination dma-unmapping as page)
  83. * @DMA_PREP_PQ_DISABLE_P - prevent generation of P while generating Q
  84. * @DMA_PREP_PQ_DISABLE_Q - prevent generation of Q while generating P
  85. * @DMA_PREP_CONTINUE - indicate to a driver that it is reusing buffers as
  86. * sources that were the result of a previous operation, in the case of a PQ
  87. * operation it continues the calculation with new sources
  88. * @DMA_PREP_FENCE - tell the driver that subsequent operations depend
  89. * on the result of this operation
  90. */
  91. enum dma_ctrl_flags {
  92. DMA_PREP_INTERRUPT = (1 << 0),
  93. DMA_CTRL_ACK = (1 << 1),
  94. DMA_COMPL_SKIP_SRC_UNMAP = (1 << 2),
  95. DMA_COMPL_SKIP_DEST_UNMAP = (1 << 3),
  96. DMA_COMPL_SRC_UNMAP_SINGLE = (1 << 4),
  97. DMA_COMPL_DEST_UNMAP_SINGLE = (1 << 5),
  98. DMA_PREP_PQ_DISABLE_P = (1 << 6),
  99. DMA_PREP_PQ_DISABLE_Q = (1 << 7),
  100. DMA_PREP_CONTINUE = (1 << 8),
  101. DMA_PREP_FENCE = (1 << 9),
  102. };
  103. /**
  104. * enum dma_ctrl_cmd - DMA operations that can optionally be exercised
  105. * on a running channel.
  106. * @DMA_TERMINATE_ALL: terminate all ongoing transfers
  107. * @DMA_PAUSE: pause ongoing transfers
  108. * @DMA_RESUME: resume paused transfer
  109. * @DMA_SLAVE_CONFIG: this command is only implemented by DMA controllers
  110. * that need to runtime reconfigure the slave channels (as opposed to passing
  111. * configuration data in statically from the platform). An additional
  112. * argument of struct dma_slave_config must be passed in with this
  113. * command.
  114. */
  115. enum dma_ctrl_cmd {
  116. DMA_TERMINATE_ALL,
  117. DMA_PAUSE,
  118. DMA_RESUME,
  119. DMA_SLAVE_CONFIG,
  120. };
  121. /**
  122. * enum sum_check_bits - bit position of pq_check_flags
  123. */
  124. enum sum_check_bits {
  125. SUM_CHECK_P = 0,
  126. SUM_CHECK_Q = 1,
  127. };
  128. /**
  129. * enum pq_check_flags - result of async_{xor,pq}_zero_sum operations
  130. * @SUM_CHECK_P_RESULT - 1 if xor zero sum error, 0 otherwise
  131. * @SUM_CHECK_Q_RESULT - 1 if reed-solomon zero sum error, 0 otherwise
  132. */
  133. enum sum_check_flags {
  134. SUM_CHECK_P_RESULT = (1 << SUM_CHECK_P),
  135. SUM_CHECK_Q_RESULT = (1 << SUM_CHECK_Q),
  136. };
  137. /**
  138. * dma_cap_mask_t - capabilities bitmap modeled after cpumask_t.
  139. * See linux/cpumask.h
  140. */
  141. typedef struct { DECLARE_BITMAP(bits, DMA_TX_TYPE_END); } dma_cap_mask_t;
  142. /**
  143. * struct dma_chan_percpu - the per-CPU part of struct dma_chan
  144. * @memcpy_count: transaction counter
  145. * @bytes_transferred: byte counter
  146. */
  147. struct dma_chan_percpu {
  148. /* stats */
  149. unsigned long memcpy_count;
  150. unsigned long bytes_transferred;
  151. };
  152. /**
  153. * struct dma_chan - devices supply DMA channels, clients use them
  154. * @device: ptr to the dma device who supplies this channel, always !%NULL
  155. * @cookie: last cookie value returned to client
  156. * @chan_id: channel ID for sysfs
  157. * @dev: class device for sysfs
  158. * @device_node: used to add this to the device chan list
  159. * @local: per-cpu pointer to a struct dma_chan_percpu
  160. * @client-count: how many clients are using this channel
  161. * @table_count: number of appearances in the mem-to-mem allocation table
  162. * @private: private data for certain client-channel associations
  163. */
  164. struct dma_chan {
  165. struct dma_device *device;
  166. dma_cookie_t cookie;
  167. /* sysfs */
  168. int chan_id;
  169. struct dma_chan_dev *dev;
  170. struct list_head device_node;
  171. struct dma_chan_percpu __percpu *local;
  172. int client_count;
  173. int table_count;
  174. void *private;
  175. };
  176. /**
  177. * struct dma_chan_dev - relate sysfs device node to backing channel device
  178. * @chan - driver channel device
  179. * @device - sysfs device
  180. * @dev_id - parent dma_device dev_id
  181. * @idr_ref - reference count to gate release of dma_device dev_id
  182. */
  183. struct dma_chan_dev {
  184. struct dma_chan *chan;
  185. struct device device;
  186. int dev_id;
  187. atomic_t *idr_ref;
  188. };
  189. /**
  190. * enum dma_slave_buswidth - defines bus with of the DMA slave
  191. * device, source or target buses
  192. */
  193. enum dma_slave_buswidth {
  194. DMA_SLAVE_BUSWIDTH_UNDEFINED = 0,
  195. DMA_SLAVE_BUSWIDTH_1_BYTE = 1,
  196. DMA_SLAVE_BUSWIDTH_2_BYTES = 2,
  197. DMA_SLAVE_BUSWIDTH_4_BYTES = 4,
  198. DMA_SLAVE_BUSWIDTH_8_BYTES = 8,
  199. };
  200. /**
  201. * struct dma_slave_config - dma slave channel runtime config
  202. * @direction: whether the data shall go in or out on this slave
  203. * channel, right now. DMA_TO_DEVICE and DMA_FROM_DEVICE are
  204. * legal values, DMA_BIDIRECTIONAL is not acceptable since we
  205. * need to differentiate source and target addresses.
  206. * @src_addr: this is the physical address where DMA slave data
  207. * should be read (RX), if the source is memory this argument is
  208. * ignored.
  209. * @dst_addr: this is the physical address where DMA slave data
  210. * should be written (TX), if the source is memory this argument
  211. * is ignored.
  212. * @src_addr_width: this is the width in bytes of the source (RX)
  213. * register where DMA data shall be read. If the source
  214. * is memory this may be ignored depending on architecture.
  215. * Legal values: 1, 2, 4, 8.
  216. * @dst_addr_width: same as src_addr_width but for destination
  217. * target (TX) mutatis mutandis.
  218. * @src_maxburst: the maximum number of words (note: words, as in
  219. * units of the src_addr_width member, not bytes) that can be sent
  220. * in one burst to the device. Typically something like half the
  221. * FIFO depth on I/O peripherals so you don't overflow it. This
  222. * may or may not be applicable on memory sources.
  223. * @dst_maxburst: same as src_maxburst but for destination target
  224. * mutatis mutandis.
  225. *
  226. * This struct is passed in as configuration data to a DMA engine
  227. * in order to set up a certain channel for DMA transport at runtime.
  228. * The DMA device/engine has to provide support for an additional
  229. * command in the channel config interface, DMA_SLAVE_CONFIG
  230. * and this struct will then be passed in as an argument to the
  231. * DMA engine device_control() function.
  232. *
  233. * The rationale for adding configuration information to this struct
  234. * is as follows: if it is likely that most DMA slave controllers in
  235. * the world will support the configuration option, then make it
  236. * generic. If not: if it is fixed so that it be sent in static from
  237. * the platform data, then prefer to do that. Else, if it is neither
  238. * fixed at runtime, nor generic enough (such as bus mastership on
  239. * some CPU family and whatnot) then create a custom slave config
  240. * struct and pass that, then make this config a member of that
  241. * struct, if applicable.
  242. */
  243. struct dma_slave_config {
  244. enum dma_data_direction direction;
  245. dma_addr_t src_addr;
  246. dma_addr_t dst_addr;
  247. enum dma_slave_buswidth src_addr_width;
  248. enum dma_slave_buswidth dst_addr_width;
  249. u32 src_maxburst;
  250. u32 dst_maxburst;
  251. };
  252. static inline const char *dma_chan_name(struct dma_chan *chan)
  253. {
  254. return dev_name(&chan->dev->device);
  255. }
  256. void dma_chan_cleanup(struct kref *kref);
  257. /**
  258. * typedef dma_filter_fn - callback filter for dma_request_channel
  259. * @chan: channel to be reviewed
  260. * @filter_param: opaque parameter passed through dma_request_channel
  261. *
  262. * When this optional parameter is specified in a call to dma_request_channel a
  263. * suitable channel is passed to this routine for further dispositioning before
  264. * being returned. Where 'suitable' indicates a non-busy channel that
  265. * satisfies the given capability mask. It returns 'true' to indicate that the
  266. * channel is suitable.
  267. */
  268. typedef bool (*dma_filter_fn)(struct dma_chan *chan, void *filter_param);
  269. typedef void (*dma_async_tx_callback)(void *dma_async_param);
  270. /**
  271. * struct dma_async_tx_descriptor - async transaction descriptor
  272. * ---dma generic offload fields---
  273. * @cookie: tracking cookie for this transaction, set to -EBUSY if
  274. * this tx is sitting on a dependency list
  275. * @flags: flags to augment operation preparation, control completion, and
  276. * communicate status
  277. * @phys: physical address of the descriptor
  278. * @chan: target channel for this operation
  279. * @tx_submit: set the prepared descriptor(s) to be executed by the engine
  280. * @callback: routine to call after this operation is complete
  281. * @callback_param: general parameter to pass to the callback routine
  282. * ---async_tx api specific fields---
  283. * @next: at completion submit this descriptor
  284. * @parent: pointer to the next level up in the dependency chain
  285. * @lock: protect the parent and next pointers
  286. */
  287. struct dma_async_tx_descriptor {
  288. dma_cookie_t cookie;
  289. enum dma_ctrl_flags flags; /* not a 'long' to pack with cookie */
  290. dma_addr_t phys;
  291. struct dma_chan *chan;
  292. dma_cookie_t (*tx_submit)(struct dma_async_tx_descriptor *tx);
  293. dma_async_tx_callback callback;
  294. void *callback_param;
  295. #ifndef CONFIG_ASYNC_TX_DISABLE_CHANNEL_SWITCH
  296. struct dma_async_tx_descriptor *next;
  297. struct dma_async_tx_descriptor *parent;
  298. spinlock_t lock;
  299. #endif
  300. };
  301. #ifdef CONFIG_ASYNC_TX_DISABLE_CHANNEL_SWITCH
  302. static inline void txd_lock(struct dma_async_tx_descriptor *txd)
  303. {
  304. }
  305. static inline void txd_unlock(struct dma_async_tx_descriptor *txd)
  306. {
  307. }
  308. static inline void txd_chain(struct dma_async_tx_descriptor *txd, struct dma_async_tx_descriptor *next)
  309. {
  310. BUG();
  311. }
  312. static inline void txd_clear_parent(struct dma_async_tx_descriptor *txd)
  313. {
  314. }
  315. static inline void txd_clear_next(struct dma_async_tx_descriptor *txd)
  316. {
  317. }
  318. static inline struct dma_async_tx_descriptor *txd_next(struct dma_async_tx_descriptor *txd)
  319. {
  320. return NULL;
  321. }
  322. static inline struct dma_async_tx_descriptor *txd_parent(struct dma_async_tx_descriptor *txd)
  323. {
  324. return NULL;
  325. }
  326. #else
  327. static inline void txd_lock(struct dma_async_tx_descriptor *txd)
  328. {
  329. spin_lock_bh(&txd->lock);
  330. }
  331. static inline void txd_unlock(struct dma_async_tx_descriptor *txd)
  332. {
  333. spin_unlock_bh(&txd->lock);
  334. }
  335. static inline void txd_chain(struct dma_async_tx_descriptor *txd, struct dma_async_tx_descriptor *next)
  336. {
  337. txd->next = next;
  338. next->parent = txd;
  339. }
  340. static inline void txd_clear_parent(struct dma_async_tx_descriptor *txd)
  341. {
  342. txd->parent = NULL;
  343. }
  344. static inline void txd_clear_next(struct dma_async_tx_descriptor *txd)
  345. {
  346. txd->next = NULL;
  347. }
  348. static inline struct dma_async_tx_descriptor *txd_parent(struct dma_async_tx_descriptor *txd)
  349. {
  350. return txd->parent;
  351. }
  352. static inline struct dma_async_tx_descriptor *txd_next(struct dma_async_tx_descriptor *txd)
  353. {
  354. return txd->next;
  355. }
  356. #endif
  357. /**
  358. * struct dma_tx_state - filled in to report the status of
  359. * a transfer.
  360. * @last: last completed DMA cookie
  361. * @used: last issued DMA cookie (i.e. the one in progress)
  362. * @residue: the remaining number of bytes left to transmit
  363. * on the selected transfer for states DMA_IN_PROGRESS and
  364. * DMA_PAUSED if this is implemented in the driver, else 0
  365. */
  366. struct dma_tx_state {
  367. dma_cookie_t last;
  368. dma_cookie_t used;
  369. u32 residue;
  370. };
  371. /**
  372. * struct dma_device - info on the entity supplying DMA services
  373. * @chancnt: how many DMA channels are supported
  374. * @privatecnt: how many DMA channels are requested by dma_request_channel
  375. * @channels: the list of struct dma_chan
  376. * @global_node: list_head for global dma_device_list
  377. * @cap_mask: one or more dma_capability flags
  378. * @max_xor: maximum number of xor sources, 0 if no capability
  379. * @max_pq: maximum number of PQ sources and PQ-continue capability
  380. * @copy_align: alignment shift for memcpy operations
  381. * @xor_align: alignment shift for xor operations
  382. * @pq_align: alignment shift for pq operations
  383. * @fill_align: alignment shift for memset operations
  384. * @dev_id: unique device ID
  385. * @dev: struct device reference for dma mapping api
  386. * @device_alloc_chan_resources: allocate resources and return the
  387. * number of allocated descriptors
  388. * @device_free_chan_resources: release DMA channel's resources
  389. * @device_prep_dma_memcpy: prepares a memcpy operation
  390. * @device_prep_dma_xor: prepares a xor operation
  391. * @device_prep_dma_xor_val: prepares a xor validation operation
  392. * @device_prep_dma_pq: prepares a pq operation
  393. * @device_prep_dma_pq_val: prepares a pqzero_sum operation
  394. * @device_prep_dma_memset: prepares a memset operation
  395. * @device_prep_dma_interrupt: prepares an end of chain interrupt operation
  396. * @device_prep_slave_sg: prepares a slave dma operation
  397. * @device_control: manipulate all pending operations on a channel, returns
  398. * zero or error code
  399. * @device_tx_status: poll for transaction completion, the optional
  400. * txstate parameter can be supplied with a pointer to get a
  401. * struct with auxilary transfer status information, otherwise the call
  402. * will just return a simple status code
  403. * @device_issue_pending: push pending transactions to hardware
  404. */
  405. struct dma_device {
  406. unsigned int chancnt;
  407. unsigned int privatecnt;
  408. struct list_head channels;
  409. struct list_head global_node;
  410. dma_cap_mask_t cap_mask;
  411. unsigned short max_xor;
  412. unsigned short max_pq;
  413. u8 copy_align;
  414. u8 xor_align;
  415. u8 pq_align;
  416. u8 fill_align;
  417. #define DMA_HAS_PQ_CONTINUE (1 << 15)
  418. int dev_id;
  419. struct device *dev;
  420. int (*device_alloc_chan_resources)(struct dma_chan *chan);
  421. void (*device_free_chan_resources)(struct dma_chan *chan);
  422. struct dma_async_tx_descriptor *(*device_prep_dma_memcpy)(
  423. struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
  424. size_t len, unsigned long flags);
  425. struct dma_async_tx_descriptor *(*device_prep_dma_xor)(
  426. struct dma_chan *chan, dma_addr_t dest, dma_addr_t *src,
  427. unsigned int src_cnt, size_t len, unsigned long flags);
  428. struct dma_async_tx_descriptor *(*device_prep_dma_xor_val)(
  429. struct dma_chan *chan, dma_addr_t *src, unsigned int src_cnt,
  430. size_t len, enum sum_check_flags *result, unsigned long flags);
  431. struct dma_async_tx_descriptor *(*device_prep_dma_pq)(
  432. struct dma_chan *chan, dma_addr_t *dst, dma_addr_t *src,
  433. unsigned int src_cnt, const unsigned char *scf,
  434. size_t len, unsigned long flags);
  435. struct dma_async_tx_descriptor *(*device_prep_dma_pq_val)(
  436. struct dma_chan *chan, dma_addr_t *pq, dma_addr_t *src,
  437. unsigned int src_cnt, const unsigned char *scf, size_t len,
  438. enum sum_check_flags *pqres, unsigned long flags);
  439. struct dma_async_tx_descriptor *(*device_prep_dma_memset)(
  440. struct dma_chan *chan, dma_addr_t dest, int value, size_t len,
  441. unsigned long flags);
  442. struct dma_async_tx_descriptor *(*device_prep_dma_interrupt)(
  443. struct dma_chan *chan, unsigned long flags);
  444. struct dma_async_tx_descriptor *(*device_prep_dma_sg)(
  445. struct dma_chan *chan,
  446. struct scatterlist *dst_sg, unsigned int dst_nents,
  447. struct scatterlist *src_sg, unsigned int src_nents,
  448. unsigned long flags);
  449. struct dma_async_tx_descriptor *(*device_prep_slave_sg)(
  450. struct dma_chan *chan, struct scatterlist *sgl,
  451. unsigned int sg_len, enum dma_data_direction direction,
  452. unsigned long flags);
  453. int (*device_control)(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
  454. unsigned long arg);
  455. enum dma_status (*device_tx_status)(struct dma_chan *chan,
  456. dma_cookie_t cookie,
  457. struct dma_tx_state *txstate);
  458. void (*device_issue_pending)(struct dma_chan *chan);
  459. };
  460. static inline bool dmaengine_check_align(u8 align, size_t off1, size_t off2, size_t len)
  461. {
  462. size_t mask;
  463. if (!align)
  464. return true;
  465. mask = (1 << align) - 1;
  466. if (mask & (off1 | off2 | len))
  467. return false;
  468. return true;
  469. }
  470. static inline bool is_dma_copy_aligned(struct dma_device *dev, size_t off1,
  471. size_t off2, size_t len)
  472. {
  473. return dmaengine_check_align(dev->copy_align, off1, off2, len);
  474. }
  475. static inline bool is_dma_xor_aligned(struct dma_device *dev, size_t off1,
  476. size_t off2, size_t len)
  477. {
  478. return dmaengine_check_align(dev->xor_align, off1, off2, len);
  479. }
  480. static inline bool is_dma_pq_aligned(struct dma_device *dev, size_t off1,
  481. size_t off2, size_t len)
  482. {
  483. return dmaengine_check_align(dev->pq_align, off1, off2, len);
  484. }
  485. static inline bool is_dma_fill_aligned(struct dma_device *dev, size_t off1,
  486. size_t off2, size_t len)
  487. {
  488. return dmaengine_check_align(dev->fill_align, off1, off2, len);
  489. }
  490. static inline void
  491. dma_set_maxpq(struct dma_device *dma, int maxpq, int has_pq_continue)
  492. {
  493. dma->max_pq = maxpq;
  494. if (has_pq_continue)
  495. dma->max_pq |= DMA_HAS_PQ_CONTINUE;
  496. }
  497. static inline bool dmaf_continue(enum dma_ctrl_flags flags)
  498. {
  499. return (flags & DMA_PREP_CONTINUE) == DMA_PREP_CONTINUE;
  500. }
  501. static inline bool dmaf_p_disabled_continue(enum dma_ctrl_flags flags)
  502. {
  503. enum dma_ctrl_flags mask = DMA_PREP_CONTINUE | DMA_PREP_PQ_DISABLE_P;
  504. return (flags & mask) == mask;
  505. }
  506. static inline bool dma_dev_has_pq_continue(struct dma_device *dma)
  507. {
  508. return (dma->max_pq & DMA_HAS_PQ_CONTINUE) == DMA_HAS_PQ_CONTINUE;
  509. }
  510. static inline unsigned short dma_dev_to_maxpq(struct dma_device *dma)
  511. {
  512. return dma->max_pq & ~DMA_HAS_PQ_CONTINUE;
  513. }
  514. /* dma_maxpq - reduce maxpq in the face of continued operations
  515. * @dma - dma device with PQ capability
  516. * @flags - to check if DMA_PREP_CONTINUE and DMA_PREP_PQ_DISABLE_P are set
  517. *
  518. * When an engine does not support native continuation we need 3 extra
  519. * source slots to reuse P and Q with the following coefficients:
  520. * 1/ {00} * P : remove P from Q', but use it as a source for P'
  521. * 2/ {01} * Q : use Q to continue Q' calculation
  522. * 3/ {00} * Q : subtract Q from P' to cancel (2)
  523. *
  524. * In the case where P is disabled we only need 1 extra source:
  525. * 1/ {01} * Q : use Q to continue Q' calculation
  526. */
  527. static inline int dma_maxpq(struct dma_device *dma, enum dma_ctrl_flags flags)
  528. {
  529. if (dma_dev_has_pq_continue(dma) || !dmaf_continue(flags))
  530. return dma_dev_to_maxpq(dma);
  531. else if (dmaf_p_disabled_continue(flags))
  532. return dma_dev_to_maxpq(dma) - 1;
  533. else if (dmaf_continue(flags))
  534. return dma_dev_to_maxpq(dma) - 3;
  535. BUG();
  536. }
  537. /* --- public DMA engine API --- */
  538. #ifdef CONFIG_DMA_ENGINE
  539. void dmaengine_get(void);
  540. void dmaengine_put(void);
  541. #else
  542. static inline void dmaengine_get(void)
  543. {
  544. }
  545. static inline void dmaengine_put(void)
  546. {
  547. }
  548. #endif
  549. #ifdef CONFIG_NET_DMA
  550. #define net_dmaengine_get() dmaengine_get()
  551. #define net_dmaengine_put() dmaengine_put()
  552. #else
  553. static inline void net_dmaengine_get(void)
  554. {
  555. }
  556. static inline void net_dmaengine_put(void)
  557. {
  558. }
  559. #endif
  560. #ifdef CONFIG_ASYNC_TX_DMA
  561. #define async_dmaengine_get() dmaengine_get()
  562. #define async_dmaengine_put() dmaengine_put()
  563. #ifdef CONFIG_ASYNC_TX_DISABLE_CHANNEL_SWITCH
  564. #define async_dma_find_channel(type) dma_find_channel(DMA_ASYNC_TX)
  565. #else
  566. #define async_dma_find_channel(type) dma_find_channel(type)
  567. #endif /* CONFIG_ASYNC_TX_DISABLE_CHANNEL_SWITCH */
  568. #else
  569. static inline void async_dmaengine_get(void)
  570. {
  571. }
  572. static inline void async_dmaengine_put(void)
  573. {
  574. }
  575. static inline struct dma_chan *
  576. async_dma_find_channel(enum dma_transaction_type type)
  577. {
  578. return NULL;
  579. }
  580. #endif /* CONFIG_ASYNC_TX_DMA */
  581. dma_cookie_t dma_async_memcpy_buf_to_buf(struct dma_chan *chan,
  582. void *dest, void *src, size_t len);
  583. dma_cookie_t dma_async_memcpy_buf_to_pg(struct dma_chan *chan,
  584. struct page *page, unsigned int offset, void *kdata, size_t len);
  585. dma_cookie_t dma_async_memcpy_pg_to_pg(struct dma_chan *chan,
  586. struct page *dest_pg, unsigned int dest_off, struct page *src_pg,
  587. unsigned int src_off, size_t len);
  588. void dma_async_tx_descriptor_init(struct dma_async_tx_descriptor *tx,
  589. struct dma_chan *chan);
  590. static inline void async_tx_ack(struct dma_async_tx_descriptor *tx)
  591. {
  592. tx->flags |= DMA_CTRL_ACK;
  593. }
  594. static inline void async_tx_clear_ack(struct dma_async_tx_descriptor *tx)
  595. {
  596. tx->flags &= ~DMA_CTRL_ACK;
  597. }
  598. static inline bool async_tx_test_ack(struct dma_async_tx_descriptor *tx)
  599. {
  600. return (tx->flags & DMA_CTRL_ACK) == DMA_CTRL_ACK;
  601. }
  602. #define first_dma_cap(mask) __first_dma_cap(&(mask))
  603. static inline int __first_dma_cap(const dma_cap_mask_t *srcp)
  604. {
  605. return min_t(int, DMA_TX_TYPE_END,
  606. find_first_bit(srcp->bits, DMA_TX_TYPE_END));
  607. }
  608. #define next_dma_cap(n, mask) __next_dma_cap((n), &(mask))
  609. static inline int __next_dma_cap(int n, const dma_cap_mask_t *srcp)
  610. {
  611. return min_t(int, DMA_TX_TYPE_END,
  612. find_next_bit(srcp->bits, DMA_TX_TYPE_END, n+1));
  613. }
  614. #define dma_cap_set(tx, mask) __dma_cap_set((tx), &(mask))
  615. static inline void
  616. __dma_cap_set(enum dma_transaction_type tx_type, dma_cap_mask_t *dstp)
  617. {
  618. set_bit(tx_type, dstp->bits);
  619. }
  620. #define dma_cap_clear(tx, mask) __dma_cap_clear((tx), &(mask))
  621. static inline void
  622. __dma_cap_clear(enum dma_transaction_type tx_type, dma_cap_mask_t *dstp)
  623. {
  624. clear_bit(tx_type, dstp->bits);
  625. }
  626. #define dma_cap_zero(mask) __dma_cap_zero(&(mask))
  627. static inline void __dma_cap_zero(dma_cap_mask_t *dstp)
  628. {
  629. bitmap_zero(dstp->bits, DMA_TX_TYPE_END);
  630. }
  631. #define dma_has_cap(tx, mask) __dma_has_cap((tx), &(mask))
  632. static inline int
  633. __dma_has_cap(enum dma_transaction_type tx_type, dma_cap_mask_t *srcp)
  634. {
  635. return test_bit(tx_type, srcp->bits);
  636. }
  637. #define for_each_dma_cap_mask(cap, mask) \
  638. for ((cap) = first_dma_cap(mask); \
  639. (cap) < DMA_TX_TYPE_END; \
  640. (cap) = next_dma_cap((cap), (mask)))
  641. /**
  642. * dma_async_issue_pending - flush pending transactions to HW
  643. * @chan: target DMA channel
  644. *
  645. * This allows drivers to push copies to HW in batches,
  646. * reducing MMIO writes where possible.
  647. */
  648. static inline void dma_async_issue_pending(struct dma_chan *chan)
  649. {
  650. chan->device->device_issue_pending(chan);
  651. }
  652. #define dma_async_memcpy_issue_pending(chan) dma_async_issue_pending(chan)
  653. /**
  654. * dma_async_is_tx_complete - poll for transaction completion
  655. * @chan: DMA channel
  656. * @cookie: transaction identifier to check status of
  657. * @last: returns last completed cookie, can be NULL
  658. * @used: returns last issued cookie, can be NULL
  659. *
  660. * If @last and @used are passed in, upon return they reflect the driver
  661. * internal state and can be used with dma_async_is_complete() to check
  662. * the status of multiple cookies without re-checking hardware state.
  663. */
  664. static inline enum dma_status dma_async_is_tx_complete(struct dma_chan *chan,
  665. dma_cookie_t cookie, dma_cookie_t *last, dma_cookie_t *used)
  666. {
  667. struct dma_tx_state state;
  668. enum dma_status status;
  669. status = chan->device->device_tx_status(chan, cookie, &state);
  670. if (last)
  671. *last = state.last;
  672. if (used)
  673. *used = state.used;
  674. return status;
  675. }
  676. #define dma_async_memcpy_complete(chan, cookie, last, used)\
  677. dma_async_is_tx_complete(chan, cookie, last, used)
  678. /**
  679. * dma_async_is_complete - test a cookie against chan state
  680. * @cookie: transaction identifier to test status of
  681. * @last_complete: last know completed transaction
  682. * @last_used: last cookie value handed out
  683. *
  684. * dma_async_is_complete() is used in dma_async_memcpy_complete()
  685. * the test logic is separated for lightweight testing of multiple cookies
  686. */
  687. static inline enum dma_status dma_async_is_complete(dma_cookie_t cookie,
  688. dma_cookie_t last_complete, dma_cookie_t last_used)
  689. {
  690. if (last_complete <= last_used) {
  691. if ((cookie <= last_complete) || (cookie > last_used))
  692. return DMA_SUCCESS;
  693. } else {
  694. if ((cookie <= last_complete) && (cookie > last_used))
  695. return DMA_SUCCESS;
  696. }
  697. return DMA_IN_PROGRESS;
  698. }
  699. static inline void
  700. dma_set_tx_state(struct dma_tx_state *st, dma_cookie_t last, dma_cookie_t used, u32 residue)
  701. {
  702. if (st) {
  703. st->last = last;
  704. st->used = used;
  705. st->residue = residue;
  706. }
  707. }
  708. enum dma_status dma_sync_wait(struct dma_chan *chan, dma_cookie_t cookie);
  709. #ifdef CONFIG_DMA_ENGINE
  710. enum dma_status dma_wait_for_async_tx(struct dma_async_tx_descriptor *tx);
  711. void dma_issue_pending_all(void);
  712. #else
  713. static inline enum dma_status dma_wait_for_async_tx(struct dma_async_tx_descriptor *tx)
  714. {
  715. return DMA_SUCCESS;
  716. }
  717. static inline void dma_issue_pending_all(void)
  718. {
  719. do { } while (0);
  720. }
  721. #endif
  722. /* --- DMA device --- */
  723. int dma_async_device_register(struct dma_device *device);
  724. void dma_async_device_unregister(struct dma_device *device);
  725. void dma_run_dependencies(struct dma_async_tx_descriptor *tx);
  726. struct dma_chan *dma_find_channel(enum dma_transaction_type tx_type);
  727. #define dma_request_channel(mask, x, y) __dma_request_channel(&(mask), x, y)
  728. struct dma_chan *__dma_request_channel(dma_cap_mask_t *mask, dma_filter_fn fn, void *fn_param);
  729. void dma_release_channel(struct dma_chan *chan);
  730. /* --- Helper iov-locking functions --- */
  731. struct dma_page_list {
  732. char __user *base_address;
  733. int nr_pages;
  734. struct page **pages;
  735. };
  736. struct dma_pinned_list {
  737. int nr_iovecs;
  738. struct dma_page_list page_list[0];
  739. };
  740. struct dma_pinned_list *dma_pin_iovec_pages(struct iovec *iov, size_t len);
  741. void dma_unpin_iovec_pages(struct dma_pinned_list* pinned_list);
  742. dma_cookie_t dma_memcpy_to_iovec(struct dma_chan *chan, struct iovec *iov,
  743. struct dma_pinned_list *pinned_list, unsigned char *kdata, size_t len);
  744. dma_cookie_t dma_memcpy_pg_to_iovec(struct dma_chan *chan, struct iovec *iov,
  745. struct dma_pinned_list *pinned_list, struct page *page,
  746. unsigned int offset, size_t len);
  747. #endif /* DMAENGINE_H */