dmaengine.h 31 KB

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