dmaengine.h 29 KB

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