dmaengine.h 32 KB

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