dmaengine.h 37 KB

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