dmaengine.h 28 KB

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