blob: d946ef7f5e67410c98dfd420f98d7cefd5d12124 [file] [log] [blame]
Chris Leechc13c8262006-05-23 17:18:44 -07001/*
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
David Woodhouse1c0f16e2006-06-27 02:53:56 -070023
Chris Leechc13c8262006-05-23 17:18:44 -070024#include <linux/device.h>
25#include <linux/uio.h>
Vinod Koul90b44f82011-07-25 19:57:52 +053026#include <linux/scatterlist.h>
Alexey Dobriyanb7f080c2011-06-16 11:01:34 +000027
Chris Leechc13c8262006-05-23 17:18:44 -070028/**
Randy Dunlapfe4ada22006-07-03 19:44:51 -070029 * typedef dma_cookie_t - an opaque DMA cookie
Chris Leechc13c8262006-05-23 17:18:44 -070030 *
31 * if dma_cookie_t is >0 it's a DMA request cookie, <0 it's an error code
32 */
33typedef s32 dma_cookie_t;
Steven J. Magnani76bd0612010-02-28 22:18:16 -070034#define DMA_MIN_COOKIE 1
35#define DMA_MAX_COOKIE INT_MAX
Chris Leechc13c8262006-05-23 17:18:44 -070036
37#define dma_submit_error(cookie) ((cookie) < 0 ? 1 : 0)
38
39/**
40 * enum dma_status - DMA transaction status
41 * @DMA_SUCCESS: transaction completed successfully
42 * @DMA_IN_PROGRESS: transaction not yet processed
Linus Walleij07934482010-03-26 16:50:49 -070043 * @DMA_PAUSED: transaction is paused
Chris Leechc13c8262006-05-23 17:18:44 -070044 * @DMA_ERROR: transaction failed
45 */
46enum dma_status {
47 DMA_SUCCESS,
48 DMA_IN_PROGRESS,
Linus Walleij07934482010-03-26 16:50:49 -070049 DMA_PAUSED,
Chris Leechc13c8262006-05-23 17:18:44 -070050 DMA_ERROR,
51};
52
53/**
Dan Williams7405f742007-01-02 11:10:43 -070054 * enum dma_transaction_type - DMA transaction types/indexes
Dan Williams138f4c32009-09-08 17:42:51 -070055 *
56 * Note: The DMA_ASYNC_TX capability is not to be set by drivers. It is
57 * automatically set as dma devices are registered.
Dan Williams7405f742007-01-02 11:10:43 -070058 */
59enum dma_transaction_type {
60 DMA_MEMCPY,
61 DMA_XOR,
Dan Williamsb2f46fd2009-07-14 12:20:36 -070062 DMA_PQ,
Dan Williams099f53c2009-04-08 14:28:37 -070063 DMA_XOR_VAL,
64 DMA_PQ_VAL,
Dan Williams7405f742007-01-02 11:10:43 -070065 DMA_MEMSET,
Dan Williams7405f742007-01-02 11:10:43 -070066 DMA_INTERRUPT,
Ira Snydera86ee032010-09-30 11:46:44 +000067 DMA_SG,
Dan Williams59b5ec22009-01-06 11:38:15 -070068 DMA_PRIVATE,
Dan Williams138f4c32009-09-08 17:42:51 -070069 DMA_ASYNC_TX,
Haavard Skinnemoendc0ee642008-07-08 11:59:35 -070070 DMA_SLAVE,
Sascha Hauer782bc952010-09-30 13:56:32 +000071 DMA_CYCLIC,
Dan Williams7405f742007-01-02 11:10:43 -070072};
73
74/* last transaction type for creation of the capabilities mask */
Sascha Hauer782bc952010-09-30 13:56:32 +000075#define DMA_TX_TYPE_END (DMA_CYCLIC + 1)
Haavard Skinnemoendc0ee642008-07-08 11:59:35 -070076
Vinod Koul49920bc2011-10-13 15:15:27 +053077/**
78 * enum dma_transfer_direction - dma transfer mode and direction indicator
79 * @DMA_MEM_TO_MEM: Async/Memcpy mode
80 * @DMA_MEM_TO_DEV: Slave mode & From Memory to Device
81 * @DMA_DEV_TO_MEM: Slave mode & From Device to Memory
82 * @DMA_DEV_TO_DEV: Slave mode & From Device to Device
83 */
84enum dma_transfer_direction {
85 DMA_MEM_TO_MEM,
86 DMA_MEM_TO_DEV,
87 DMA_DEV_TO_MEM,
88 DMA_DEV_TO_DEV,
89};
Dan Williams7405f742007-01-02 11:10:43 -070090
91/**
Dan Williams636bdea2008-04-17 20:17:26 -070092 * enum dma_ctrl_flags - DMA flags to augment operation preparation,
Dan Williamsb2f46fd2009-07-14 12:20:36 -070093 * control completion, and communicate status.
Dan Williamsd4c56f92008-02-02 19:49:58 -070094 * @DMA_PREP_INTERRUPT - trigger an interrupt (callback) upon completion of
Dan Williamsb2f46fd2009-07-14 12:20:36 -070095 * this transaction
Guennadi Liakhovetskia88f6662009-12-10 18:35:15 +010096 * @DMA_CTRL_ACK - if clear, the descriptor cannot be reused until the client
Dan Williamsb2f46fd2009-07-14 12:20:36 -070097 * acknowledges receipt, i.e. has has a chance to establish any dependency
98 * chains
Dan Williamse1d181e2008-07-04 00:13:40 -070099 * @DMA_COMPL_SKIP_SRC_UNMAP - set to disable dma-unmapping the source buffer(s)
100 * @DMA_COMPL_SKIP_DEST_UNMAP - set to disable dma-unmapping the destination(s)
Maciej Sosnowski4f005db2009-04-23 12:31:51 +0200101 * @DMA_COMPL_SRC_UNMAP_SINGLE - set to do the source dma-unmapping as single
102 * (if not set, do the source dma-unmapping as page)
103 * @DMA_COMPL_DEST_UNMAP_SINGLE - set to do the destination dma-unmapping as single
104 * (if not set, do the destination dma-unmapping as page)
Dan Williamsb2f46fd2009-07-14 12:20:36 -0700105 * @DMA_PREP_PQ_DISABLE_P - prevent generation of P while generating Q
106 * @DMA_PREP_PQ_DISABLE_Q - prevent generation of Q while generating P
107 * @DMA_PREP_CONTINUE - indicate to a driver that it is reusing buffers as
108 * sources that were the result of a previous operation, in the case of a PQ
109 * operation it continues the calculation with new sources
Dan Williams0403e382009-09-08 17:42:50 -0700110 * @DMA_PREP_FENCE - tell the driver that subsequent operations depend
111 * on the result of this operation
Dan Williamsd4c56f92008-02-02 19:49:58 -0700112 */
Dan Williams636bdea2008-04-17 20:17:26 -0700113enum dma_ctrl_flags {
Dan Williamsd4c56f92008-02-02 19:49:58 -0700114 DMA_PREP_INTERRUPT = (1 << 0),
Dan Williams636bdea2008-04-17 20:17:26 -0700115 DMA_CTRL_ACK = (1 << 1),
Dan Williamse1d181e2008-07-04 00:13:40 -0700116 DMA_COMPL_SKIP_SRC_UNMAP = (1 << 2),
117 DMA_COMPL_SKIP_DEST_UNMAP = (1 << 3),
Maciej Sosnowski4f005db2009-04-23 12:31:51 +0200118 DMA_COMPL_SRC_UNMAP_SINGLE = (1 << 4),
119 DMA_COMPL_DEST_UNMAP_SINGLE = (1 << 5),
Dan Williamsf9dd2132009-09-08 17:42:29 -0700120 DMA_PREP_PQ_DISABLE_P = (1 << 6),
121 DMA_PREP_PQ_DISABLE_Q = (1 << 7),
122 DMA_PREP_CONTINUE = (1 << 8),
Dan Williams0403e382009-09-08 17:42:50 -0700123 DMA_PREP_FENCE = (1 << 9),
Dan Williamsd4c56f92008-02-02 19:49:58 -0700124};
125
126/**
Linus Walleijc3635c72010-03-26 16:44:01 -0700127 * enum dma_ctrl_cmd - DMA operations that can optionally be exercised
128 * on a running channel.
129 * @DMA_TERMINATE_ALL: terminate all ongoing transfers
130 * @DMA_PAUSE: pause ongoing transfers
131 * @DMA_RESUME: resume paused transfer
Linus Walleijc156d0a2010-08-04 13:37:33 +0200132 * @DMA_SLAVE_CONFIG: this command is only implemented by DMA controllers
133 * that need to runtime reconfigure the slave channels (as opposed to passing
134 * configuration data in statically from the platform). An additional
135 * argument of struct dma_slave_config must be passed in with this
136 * command.
Ira Snyder968f19a2010-09-30 11:46:46 +0000137 * @FSLDMA_EXTERNAL_START: this command will put the Freescale DMA controller
138 * into external start mode.
Linus Walleijc3635c72010-03-26 16:44:01 -0700139 */
140enum dma_ctrl_cmd {
141 DMA_TERMINATE_ALL,
142 DMA_PAUSE,
143 DMA_RESUME,
Linus Walleijc156d0a2010-08-04 13:37:33 +0200144 DMA_SLAVE_CONFIG,
Ira Snyder968f19a2010-09-30 11:46:46 +0000145 FSLDMA_EXTERNAL_START,
Linus Walleijc3635c72010-03-26 16:44:01 -0700146};
147
148/**
Dan Williamsad283ea2009-08-29 19:09:26 -0700149 * enum sum_check_bits - bit position of pq_check_flags
150 */
151enum sum_check_bits {
152 SUM_CHECK_P = 0,
153 SUM_CHECK_Q = 1,
154};
155
156/**
157 * enum pq_check_flags - result of async_{xor,pq}_zero_sum operations
158 * @SUM_CHECK_P_RESULT - 1 if xor zero sum error, 0 otherwise
159 * @SUM_CHECK_Q_RESULT - 1 if reed-solomon zero sum error, 0 otherwise
160 */
161enum sum_check_flags {
162 SUM_CHECK_P_RESULT = (1 << SUM_CHECK_P),
163 SUM_CHECK_Q_RESULT = (1 << SUM_CHECK_Q),
164};
165
166
167/**
Dan Williams7405f742007-01-02 11:10:43 -0700168 * dma_cap_mask_t - capabilities bitmap modeled after cpumask_t.
169 * See linux/cpumask.h
170 */
171typedef struct { DECLARE_BITMAP(bits, DMA_TX_TYPE_END); } dma_cap_mask_t;
172
173/**
Chris Leechc13c8262006-05-23 17:18:44 -0700174 * struct dma_chan_percpu - the per-CPU part of struct dma_chan
Chris Leechc13c8262006-05-23 17:18:44 -0700175 * @memcpy_count: transaction counter
176 * @bytes_transferred: byte counter
177 */
178
179struct dma_chan_percpu {
Chris Leechc13c8262006-05-23 17:18:44 -0700180 /* stats */
181 unsigned long memcpy_count;
182 unsigned long bytes_transferred;
183};
184
185/**
186 * struct dma_chan - devices supply DMA channels, clients use them
Randy Dunlapfe4ada22006-07-03 19:44:51 -0700187 * @device: ptr to the dma device who supplies this channel, always !%NULL
Chris Leechc13c8262006-05-23 17:18:44 -0700188 * @cookie: last cookie value returned to client
Randy Dunlapfe4ada22006-07-03 19:44:51 -0700189 * @chan_id: channel ID for sysfs
Dan Williams41d5e592009-01-06 11:38:21 -0700190 * @dev: class device for sysfs
Chris Leechc13c8262006-05-23 17:18:44 -0700191 * @device_node: used to add this to the device chan list
192 * @local: per-cpu pointer to a struct dma_chan_percpu
Dan Williams7cc5bf92008-07-08 11:58:21 -0700193 * @client-count: how many clients are using this channel
Dan Williamsbec08512009-01-06 11:38:14 -0700194 * @table_count: number of appearances in the mem-to-mem allocation table
Dan Williams287d8592009-02-18 14:48:26 -0800195 * @private: private data for certain client-channel associations
Chris Leechc13c8262006-05-23 17:18:44 -0700196 */
197struct dma_chan {
Chris Leechc13c8262006-05-23 17:18:44 -0700198 struct dma_device *device;
199 dma_cookie_t cookie;
200
201 /* sysfs */
202 int chan_id;
Dan Williams41d5e592009-01-06 11:38:21 -0700203 struct dma_chan_dev *dev;
Chris Leechc13c8262006-05-23 17:18:44 -0700204
Chris Leechc13c8262006-05-23 17:18:44 -0700205 struct list_head device_node;
Tejun Heoa29d8b82010-02-02 14:39:15 +0900206 struct dma_chan_percpu __percpu *local;
Dan Williams7cc5bf92008-07-08 11:58:21 -0700207 int client_count;
Dan Williamsbec08512009-01-06 11:38:14 -0700208 int table_count;
Dan Williams287d8592009-02-18 14:48:26 -0800209 void *private;
Chris Leechc13c8262006-05-23 17:18:44 -0700210};
211
Dan Williams41d5e592009-01-06 11:38:21 -0700212/**
213 * struct dma_chan_dev - relate sysfs device node to backing channel device
214 * @chan - driver channel device
215 * @device - sysfs device
Dan Williams864498a2009-01-06 11:38:21 -0700216 * @dev_id - parent dma_device dev_id
217 * @idr_ref - reference count to gate release of dma_device dev_id
Dan Williams41d5e592009-01-06 11:38:21 -0700218 */
219struct dma_chan_dev {
220 struct dma_chan *chan;
221 struct device device;
Dan Williams864498a2009-01-06 11:38:21 -0700222 int dev_id;
223 atomic_t *idr_ref;
Dan Williams41d5e592009-01-06 11:38:21 -0700224};
225
Linus Walleijc156d0a2010-08-04 13:37:33 +0200226/**
227 * enum dma_slave_buswidth - defines bus with of the DMA slave
228 * device, source or target buses
229 */
230enum dma_slave_buswidth {
231 DMA_SLAVE_BUSWIDTH_UNDEFINED = 0,
232 DMA_SLAVE_BUSWIDTH_1_BYTE = 1,
233 DMA_SLAVE_BUSWIDTH_2_BYTES = 2,
234 DMA_SLAVE_BUSWIDTH_4_BYTES = 4,
235 DMA_SLAVE_BUSWIDTH_8_BYTES = 8,
236};
237
238/**
239 * struct dma_slave_config - dma slave channel runtime config
240 * @direction: whether the data shall go in or out on this slave
241 * channel, right now. DMA_TO_DEVICE and DMA_FROM_DEVICE are
242 * legal values, DMA_BIDIRECTIONAL is not acceptable since we
243 * need to differentiate source and target addresses.
244 * @src_addr: this is the physical address where DMA slave data
245 * should be read (RX), if the source is memory this argument is
246 * ignored.
247 * @dst_addr: this is the physical address where DMA slave data
248 * should be written (TX), if the source is memory this argument
249 * is ignored.
250 * @src_addr_width: this is the width in bytes of the source (RX)
251 * register where DMA data shall be read. If the source
252 * is memory this may be ignored depending on architecture.
253 * Legal values: 1, 2, 4, 8.
254 * @dst_addr_width: same as src_addr_width but for destination
255 * target (TX) mutatis mutandis.
256 * @src_maxburst: the maximum number of words (note: words, as in
257 * units of the src_addr_width member, not bytes) that can be sent
258 * in one burst to the device. Typically something like half the
259 * FIFO depth on I/O peripherals so you don't overflow it. This
260 * may or may not be applicable on memory sources.
261 * @dst_maxburst: same as src_maxburst but for destination target
262 * mutatis mutandis.
263 *
264 * This struct is passed in as configuration data to a DMA engine
265 * in order to set up a certain channel for DMA transport at runtime.
266 * The DMA device/engine has to provide support for an additional
267 * command in the channel config interface, DMA_SLAVE_CONFIG
268 * and this struct will then be passed in as an argument to the
269 * DMA engine device_control() function.
270 *
271 * The rationale for adding configuration information to this struct
272 * is as follows: if it is likely that most DMA slave controllers in
273 * the world will support the configuration option, then make it
274 * generic. If not: if it is fixed so that it be sent in static from
275 * the platform data, then prefer to do that. Else, if it is neither
276 * fixed at runtime, nor generic enough (such as bus mastership on
277 * some CPU family and whatnot) then create a custom slave config
278 * struct and pass that, then make this config a member of that
279 * struct, if applicable.
280 */
281struct dma_slave_config {
Vinod Koul49920bc2011-10-13 15:15:27 +0530282 enum dma_transfer_direction direction;
Linus Walleijc156d0a2010-08-04 13:37:33 +0200283 dma_addr_t src_addr;
284 dma_addr_t dst_addr;
285 enum dma_slave_buswidth src_addr_width;
286 enum dma_slave_buswidth dst_addr_width;
287 u32 src_maxburst;
288 u32 dst_maxburst;
289};
290
Dan Williams41d5e592009-01-06 11:38:21 -0700291static inline const char *dma_chan_name(struct dma_chan *chan)
292{
293 return dev_name(&chan->dev->device);
294}
Dan Williamsd379b012007-07-09 11:56:42 -0700295
Chris Leechc13c8262006-05-23 17:18:44 -0700296void dma_chan_cleanup(struct kref *kref);
297
Chris Leechc13c8262006-05-23 17:18:44 -0700298/**
Dan Williams59b5ec22009-01-06 11:38:15 -0700299 * typedef dma_filter_fn - callback filter for dma_request_channel
300 * @chan: channel to be reviewed
301 * @filter_param: opaque parameter passed through dma_request_channel
302 *
303 * When this optional parameter is specified in a call to dma_request_channel a
304 * suitable channel is passed to this routine for further dispositioning before
305 * being returned. Where 'suitable' indicates a non-busy channel that
Dan Williams7dd60252009-01-06 11:38:19 -0700306 * satisfies the given capability mask. It returns 'true' to indicate that the
307 * channel is suitable.
Dan Williams59b5ec22009-01-06 11:38:15 -0700308 */
Dan Williams7dd60252009-01-06 11:38:19 -0700309typedef bool (*dma_filter_fn)(struct dma_chan *chan, void *filter_param);
Dan Williams59b5ec22009-01-06 11:38:15 -0700310
Dan Williams7405f742007-01-02 11:10:43 -0700311typedef void (*dma_async_tx_callback)(void *dma_async_param);
312/**
313 * struct dma_async_tx_descriptor - async transaction descriptor
314 * ---dma generic offload fields---
315 * @cookie: tracking cookie for this transaction, set to -EBUSY if
316 * this tx is sitting on a dependency list
Dan Williams636bdea2008-04-17 20:17:26 -0700317 * @flags: flags to augment operation preparation, control completion, and
318 * communicate status
Dan Williams7405f742007-01-02 11:10:43 -0700319 * @phys: physical address of the descriptor
Dan Williams7405f742007-01-02 11:10:43 -0700320 * @chan: target channel for this operation
321 * @tx_submit: set the prepared descriptor(s) to be executed by the engine
Dan Williams7405f742007-01-02 11:10:43 -0700322 * @callback: routine to call after this operation is complete
323 * @callback_param: general parameter to pass to the callback routine
324 * ---async_tx api specific fields---
Dan Williams19242d72008-04-17 20:17:25 -0700325 * @next: at completion submit this descriptor
Dan Williams7405f742007-01-02 11:10:43 -0700326 * @parent: pointer to the next level up in the dependency chain
Dan Williams19242d72008-04-17 20:17:25 -0700327 * @lock: protect the parent and next pointers
Dan Williams7405f742007-01-02 11:10:43 -0700328 */
329struct dma_async_tx_descriptor {
330 dma_cookie_t cookie;
Dan Williams636bdea2008-04-17 20:17:26 -0700331 enum dma_ctrl_flags flags; /* not a 'long' to pack with cookie */
Dan Williams7405f742007-01-02 11:10:43 -0700332 dma_addr_t phys;
Dan Williams7405f742007-01-02 11:10:43 -0700333 struct dma_chan *chan;
334 dma_cookie_t (*tx_submit)(struct dma_async_tx_descriptor *tx);
Dan Williams7405f742007-01-02 11:10:43 -0700335 dma_async_tx_callback callback;
336 void *callback_param;
Dan Williams5fc6d892010-10-07 16:44:50 -0700337#ifdef CONFIG_ASYNC_TX_ENABLE_CHANNEL_SWITCH
Dan Williams19242d72008-04-17 20:17:25 -0700338 struct dma_async_tx_descriptor *next;
Dan Williams7405f742007-01-02 11:10:43 -0700339 struct dma_async_tx_descriptor *parent;
340 spinlock_t lock;
Dan Williamscaa20d972010-05-17 16:24:16 -0700341#endif
Dan Williams7405f742007-01-02 11:10:43 -0700342};
343
Dan Williams5fc6d892010-10-07 16:44:50 -0700344#ifndef CONFIG_ASYNC_TX_ENABLE_CHANNEL_SWITCH
Dan Williamscaa20d972010-05-17 16:24:16 -0700345static inline void txd_lock(struct dma_async_tx_descriptor *txd)
346{
347}
348static inline void txd_unlock(struct dma_async_tx_descriptor *txd)
349{
350}
351static inline void txd_chain(struct dma_async_tx_descriptor *txd, struct dma_async_tx_descriptor *next)
352{
353 BUG();
354}
355static inline void txd_clear_parent(struct dma_async_tx_descriptor *txd)
356{
357}
358static inline void txd_clear_next(struct dma_async_tx_descriptor *txd)
359{
360}
361static inline struct dma_async_tx_descriptor *txd_next(struct dma_async_tx_descriptor *txd)
362{
363 return NULL;
364}
365static inline struct dma_async_tx_descriptor *txd_parent(struct dma_async_tx_descriptor *txd)
366{
367 return NULL;
368}
369
370#else
371static inline void txd_lock(struct dma_async_tx_descriptor *txd)
372{
373 spin_lock_bh(&txd->lock);
374}
375static inline void txd_unlock(struct dma_async_tx_descriptor *txd)
376{
377 spin_unlock_bh(&txd->lock);
378}
379static inline void txd_chain(struct dma_async_tx_descriptor *txd, struct dma_async_tx_descriptor *next)
380{
381 txd->next = next;
382 next->parent = txd;
383}
384static inline void txd_clear_parent(struct dma_async_tx_descriptor *txd)
385{
386 txd->parent = NULL;
387}
388static inline void txd_clear_next(struct dma_async_tx_descriptor *txd)
389{
390 txd->next = NULL;
391}
392static inline struct dma_async_tx_descriptor *txd_parent(struct dma_async_tx_descriptor *txd)
393{
394 return txd->parent;
395}
396static inline struct dma_async_tx_descriptor *txd_next(struct dma_async_tx_descriptor *txd)
397{
398 return txd->next;
399}
400#endif
401
Chris Leechc13c8262006-05-23 17:18:44 -0700402/**
Linus Walleij07934482010-03-26 16:50:49 -0700403 * struct dma_tx_state - filled in to report the status of
404 * a transfer.
405 * @last: last completed DMA cookie
406 * @used: last issued DMA cookie (i.e. the one in progress)
407 * @residue: the remaining number of bytes left to transmit
408 * on the selected transfer for states DMA_IN_PROGRESS and
409 * DMA_PAUSED if this is implemented in the driver, else 0
410 */
411struct dma_tx_state {
412 dma_cookie_t last;
413 dma_cookie_t used;
414 u32 residue;
415};
416
417/**
Chris Leechc13c8262006-05-23 17:18:44 -0700418 * struct dma_device - info on the entity supplying DMA services
419 * @chancnt: how many DMA channels are supported
Atsushi Nemoto0f571512009-03-06 20:07:14 +0900420 * @privatecnt: how many DMA channels are requested by dma_request_channel
Chris Leechc13c8262006-05-23 17:18:44 -0700421 * @channels: the list of struct dma_chan
422 * @global_node: list_head for global dma_device_list
Dan Williams7405f742007-01-02 11:10:43 -0700423 * @cap_mask: one or more dma_capability flags
424 * @max_xor: maximum number of xor sources, 0 if no capability
Dan Williamsb2f46fd2009-07-14 12:20:36 -0700425 * @max_pq: maximum number of PQ sources and PQ-continue capability
Dan Williams83544ae2009-09-08 17:42:53 -0700426 * @copy_align: alignment shift for memcpy operations
427 * @xor_align: alignment shift for xor operations
428 * @pq_align: alignment shift for pq operations
429 * @fill_align: alignment shift for memset operations
Randy Dunlapfe4ada22006-07-03 19:44:51 -0700430 * @dev_id: unique device ID
Dan Williams7405f742007-01-02 11:10:43 -0700431 * @dev: struct device reference for dma mapping api
Randy Dunlapfe4ada22006-07-03 19:44:51 -0700432 * @device_alloc_chan_resources: allocate resources and return the
433 * number of allocated descriptors
434 * @device_free_chan_resources: release DMA channel's resources
Dan Williams7405f742007-01-02 11:10:43 -0700435 * @device_prep_dma_memcpy: prepares a memcpy operation
436 * @device_prep_dma_xor: prepares a xor operation
Dan Williams099f53c2009-04-08 14:28:37 -0700437 * @device_prep_dma_xor_val: prepares a xor validation operation
Dan Williamsb2f46fd2009-07-14 12:20:36 -0700438 * @device_prep_dma_pq: prepares a pq operation
439 * @device_prep_dma_pq_val: prepares a pqzero_sum operation
Dan Williams7405f742007-01-02 11:10:43 -0700440 * @device_prep_dma_memset: prepares a memset operation
441 * @device_prep_dma_interrupt: prepares an end of chain interrupt operation
Haavard Skinnemoendc0ee642008-07-08 11:59:35 -0700442 * @device_prep_slave_sg: prepares a slave dma operation
Sascha Hauer782bc952010-09-30 13:56:32 +0000443 * @device_prep_dma_cyclic: prepare a cyclic dma operation suitable for audio.
444 * The function takes a buffer of size buf_len. The callback function will
445 * be called after period_len bytes have been transferred.
Linus Walleijc3635c72010-03-26 16:44:01 -0700446 * @device_control: manipulate all pending operations on a channel, returns
447 * zero or error code
Linus Walleij07934482010-03-26 16:50:49 -0700448 * @device_tx_status: poll for transaction completion, the optional
449 * txstate parameter can be supplied with a pointer to get a
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300450 * struct with auxiliary transfer status information, otherwise the call
Linus Walleij07934482010-03-26 16:50:49 -0700451 * will just return a simple status code
Dan Williams7405f742007-01-02 11:10:43 -0700452 * @device_issue_pending: push pending transactions to hardware
Chris Leechc13c8262006-05-23 17:18:44 -0700453 */
454struct dma_device {
455
456 unsigned int chancnt;
Atsushi Nemoto0f571512009-03-06 20:07:14 +0900457 unsigned int privatecnt;
Chris Leechc13c8262006-05-23 17:18:44 -0700458 struct list_head channels;
459 struct list_head global_node;
Dan Williams7405f742007-01-02 11:10:43 -0700460 dma_cap_mask_t cap_mask;
Dan Williamsb2f46fd2009-07-14 12:20:36 -0700461 unsigned short max_xor;
462 unsigned short max_pq;
Dan Williams83544ae2009-09-08 17:42:53 -0700463 u8 copy_align;
464 u8 xor_align;
465 u8 pq_align;
466 u8 fill_align;
Dan Williamsb2f46fd2009-07-14 12:20:36 -0700467 #define DMA_HAS_PQ_CONTINUE (1 << 15)
Chris Leechc13c8262006-05-23 17:18:44 -0700468
Chris Leechc13c8262006-05-23 17:18:44 -0700469 int dev_id;
Dan Williams7405f742007-01-02 11:10:43 -0700470 struct device *dev;
Chris Leechc13c8262006-05-23 17:18:44 -0700471
Dan Williamsaa1e6f12009-01-06 11:38:17 -0700472 int (*device_alloc_chan_resources)(struct dma_chan *chan);
Chris Leechc13c8262006-05-23 17:18:44 -0700473 void (*device_free_chan_resources)(struct dma_chan *chan);
Dan Williams7405f742007-01-02 11:10:43 -0700474
475 struct dma_async_tx_descriptor *(*device_prep_dma_memcpy)(
Dan Williams00367312008-02-02 19:49:57 -0700476 struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
Dan Williamsd4c56f92008-02-02 19:49:58 -0700477 size_t len, unsigned long flags);
Dan Williams7405f742007-01-02 11:10:43 -0700478 struct dma_async_tx_descriptor *(*device_prep_dma_xor)(
Dan Williams00367312008-02-02 19:49:57 -0700479 struct dma_chan *chan, dma_addr_t dest, dma_addr_t *src,
Dan Williamsd4c56f92008-02-02 19:49:58 -0700480 unsigned int src_cnt, size_t len, unsigned long flags);
Dan Williams099f53c2009-04-08 14:28:37 -0700481 struct dma_async_tx_descriptor *(*device_prep_dma_xor_val)(
Dan Williams00367312008-02-02 19:49:57 -0700482 struct dma_chan *chan, dma_addr_t *src, unsigned int src_cnt,
Dan Williamsad283ea2009-08-29 19:09:26 -0700483 size_t len, enum sum_check_flags *result, unsigned long flags);
Dan Williamsb2f46fd2009-07-14 12:20:36 -0700484 struct dma_async_tx_descriptor *(*device_prep_dma_pq)(
485 struct dma_chan *chan, dma_addr_t *dst, dma_addr_t *src,
486 unsigned int src_cnt, const unsigned char *scf,
487 size_t len, unsigned long flags);
488 struct dma_async_tx_descriptor *(*device_prep_dma_pq_val)(
489 struct dma_chan *chan, dma_addr_t *pq, dma_addr_t *src,
490 unsigned int src_cnt, const unsigned char *scf, size_t len,
491 enum sum_check_flags *pqres, unsigned long flags);
Dan Williams7405f742007-01-02 11:10:43 -0700492 struct dma_async_tx_descriptor *(*device_prep_dma_memset)(
Dan Williams00367312008-02-02 19:49:57 -0700493 struct dma_chan *chan, dma_addr_t dest, int value, size_t len,
Dan Williamsd4c56f92008-02-02 19:49:58 -0700494 unsigned long flags);
Dan Williams7405f742007-01-02 11:10:43 -0700495 struct dma_async_tx_descriptor *(*device_prep_dma_interrupt)(
Dan Williams636bdea2008-04-17 20:17:26 -0700496 struct dma_chan *chan, unsigned long flags);
Ira Snydera86ee032010-09-30 11:46:44 +0000497 struct dma_async_tx_descriptor *(*device_prep_dma_sg)(
498 struct dma_chan *chan,
499 struct scatterlist *dst_sg, unsigned int dst_nents,
500 struct scatterlist *src_sg, unsigned int src_nents,
501 unsigned long flags);
Dan Williams7405f742007-01-02 11:10:43 -0700502
Haavard Skinnemoendc0ee642008-07-08 11:59:35 -0700503 struct dma_async_tx_descriptor *(*device_prep_slave_sg)(
504 struct dma_chan *chan, struct scatterlist *sgl,
Vinod Koul49920bc2011-10-13 15:15:27 +0530505 unsigned int sg_len, enum dma_transfer_direction direction,
Haavard Skinnemoendc0ee642008-07-08 11:59:35 -0700506 unsigned long flags);
Sascha Hauer782bc952010-09-30 13:56:32 +0000507 struct dma_async_tx_descriptor *(*device_prep_dma_cyclic)(
508 struct dma_chan *chan, dma_addr_t buf_addr, size_t buf_len,
Vinod Koul49920bc2011-10-13 15:15:27 +0530509 size_t period_len, enum dma_transfer_direction direction);
Linus Walleij05827632010-05-17 16:30:42 -0700510 int (*device_control)(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
511 unsigned long arg);
Haavard Skinnemoendc0ee642008-07-08 11:59:35 -0700512
Linus Walleij07934482010-03-26 16:50:49 -0700513 enum dma_status (*device_tx_status)(struct dma_chan *chan,
514 dma_cookie_t cookie,
515 struct dma_tx_state *txstate);
Dan Williams7405f742007-01-02 11:10:43 -0700516 void (*device_issue_pending)(struct dma_chan *chan);
Chris Leechc13c8262006-05-23 17:18:44 -0700517};
518
Sascha Hauer6e3ecaf2010-09-30 13:56:33 +0000519static inline int dmaengine_device_control(struct dma_chan *chan,
520 enum dma_ctrl_cmd cmd,
521 unsigned long arg)
522{
523 return chan->device->device_control(chan, cmd, arg);
524}
525
526static inline int dmaengine_slave_config(struct dma_chan *chan,
527 struct dma_slave_config *config)
528{
529 return dmaengine_device_control(chan, DMA_SLAVE_CONFIG,
530 (unsigned long)config);
531}
532
Vinod Koul90b44f82011-07-25 19:57:52 +0530533static inline struct dma_async_tx_descriptor *dmaengine_prep_slave_single(
534 struct dma_chan *chan, void *buf, size_t len,
Vinod Koul49920bc2011-10-13 15:15:27 +0530535 enum dma_transfer_direction dir, unsigned long flags)
Vinod Koul90b44f82011-07-25 19:57:52 +0530536{
537 struct scatterlist sg;
538 sg_init_one(&sg, buf, len);
539
540 return chan->device->device_prep_slave_sg(chan, &sg, 1, dir, flags);
541}
542
Sascha Hauer6e3ecaf2010-09-30 13:56:33 +0000543static inline int dmaengine_terminate_all(struct dma_chan *chan)
544{
545 return dmaengine_device_control(chan, DMA_TERMINATE_ALL, 0);
546}
547
548static inline int dmaengine_pause(struct dma_chan *chan)
549{
550 return dmaengine_device_control(chan, DMA_PAUSE, 0);
551}
552
553static inline int dmaengine_resume(struct dma_chan *chan)
554{
555 return dmaengine_device_control(chan, DMA_RESUME, 0);
556}
557
Russell King - ARM Linux98d530f2011-01-01 23:00:23 +0000558static inline dma_cookie_t dmaengine_submit(struct dma_async_tx_descriptor *desc)
Sascha Hauer6e3ecaf2010-09-30 13:56:33 +0000559{
560 return desc->tx_submit(desc);
561}
562
Dan Williams83544ae2009-09-08 17:42:53 -0700563static inline bool dmaengine_check_align(u8 align, size_t off1, size_t off2, size_t len)
564{
565 size_t mask;
566
567 if (!align)
568 return true;
569 mask = (1 << align) - 1;
570 if (mask & (off1 | off2 | len))
571 return false;
572 return true;
573}
574
575static inline bool is_dma_copy_aligned(struct dma_device *dev, size_t off1,
576 size_t off2, size_t len)
577{
578 return dmaengine_check_align(dev->copy_align, off1, off2, len);
579}
580
581static inline bool is_dma_xor_aligned(struct dma_device *dev, size_t off1,
582 size_t off2, size_t len)
583{
584 return dmaengine_check_align(dev->xor_align, off1, off2, len);
585}
586
587static inline bool is_dma_pq_aligned(struct dma_device *dev, size_t off1,
588 size_t off2, size_t len)
589{
590 return dmaengine_check_align(dev->pq_align, off1, off2, len);
591}
592
593static inline bool is_dma_fill_aligned(struct dma_device *dev, size_t off1,
594 size_t off2, size_t len)
595{
596 return dmaengine_check_align(dev->fill_align, off1, off2, len);
597}
598
Dan Williamsb2f46fd2009-07-14 12:20:36 -0700599static inline void
600dma_set_maxpq(struct dma_device *dma, int maxpq, int has_pq_continue)
601{
602 dma->max_pq = maxpq;
603 if (has_pq_continue)
604 dma->max_pq |= DMA_HAS_PQ_CONTINUE;
605}
606
607static inline bool dmaf_continue(enum dma_ctrl_flags flags)
608{
609 return (flags & DMA_PREP_CONTINUE) == DMA_PREP_CONTINUE;
610}
611
612static inline bool dmaf_p_disabled_continue(enum dma_ctrl_flags flags)
613{
614 enum dma_ctrl_flags mask = DMA_PREP_CONTINUE | DMA_PREP_PQ_DISABLE_P;
615
616 return (flags & mask) == mask;
617}
618
619static inline bool dma_dev_has_pq_continue(struct dma_device *dma)
620{
621 return (dma->max_pq & DMA_HAS_PQ_CONTINUE) == DMA_HAS_PQ_CONTINUE;
622}
623
Mathieu Lacaged3f3cf82010-08-14 15:02:44 +0200624static inline unsigned short dma_dev_to_maxpq(struct dma_device *dma)
Dan Williamsb2f46fd2009-07-14 12:20:36 -0700625{
626 return dma->max_pq & ~DMA_HAS_PQ_CONTINUE;
627}
628
629/* dma_maxpq - reduce maxpq in the face of continued operations
630 * @dma - dma device with PQ capability
631 * @flags - to check if DMA_PREP_CONTINUE and DMA_PREP_PQ_DISABLE_P are set
632 *
633 * When an engine does not support native continuation we need 3 extra
634 * source slots to reuse P and Q with the following coefficients:
635 * 1/ {00} * P : remove P from Q', but use it as a source for P'
636 * 2/ {01} * Q : use Q to continue Q' calculation
637 * 3/ {00} * Q : subtract Q from P' to cancel (2)
638 *
639 * In the case where P is disabled we only need 1 extra source:
640 * 1/ {01} * Q : use Q to continue Q' calculation
641 */
642static inline int dma_maxpq(struct dma_device *dma, enum dma_ctrl_flags flags)
643{
644 if (dma_dev_has_pq_continue(dma) || !dmaf_continue(flags))
645 return dma_dev_to_maxpq(dma);
646 else if (dmaf_p_disabled_continue(flags))
647 return dma_dev_to_maxpq(dma) - 1;
648 else if (dmaf_continue(flags))
649 return dma_dev_to_maxpq(dma) - 3;
650 BUG();
651}
652
Chris Leechc13c8262006-05-23 17:18:44 -0700653/* --- public DMA engine API --- */
654
Dan Williams649274d2009-01-11 00:20:39 -0800655#ifdef CONFIG_DMA_ENGINE
Dan Williams209b84a2009-01-06 11:38:17 -0700656void dmaengine_get(void);
657void dmaengine_put(void);
Dan Williams649274d2009-01-11 00:20:39 -0800658#else
659static inline void dmaengine_get(void)
660{
661}
662static inline void dmaengine_put(void)
663{
664}
665#endif
666
David S. Millerb4bd07c2009-02-06 22:06:43 -0800667#ifdef CONFIG_NET_DMA
668#define net_dmaengine_get() dmaengine_get()
669#define net_dmaengine_put() dmaengine_put()
670#else
671static inline void net_dmaengine_get(void)
672{
673}
674static inline void net_dmaengine_put(void)
675{
676}
677#endif
678
Dan Williams729b5d12009-03-25 09:13:25 -0700679#ifdef CONFIG_ASYNC_TX_DMA
680#define async_dmaengine_get() dmaengine_get()
681#define async_dmaengine_put() dmaengine_put()
Dan Williams5fc6d892010-10-07 16:44:50 -0700682#ifndef CONFIG_ASYNC_TX_ENABLE_CHANNEL_SWITCH
Dan Williams138f4c32009-09-08 17:42:51 -0700683#define async_dma_find_channel(type) dma_find_channel(DMA_ASYNC_TX)
684#else
Dan Williams729b5d12009-03-25 09:13:25 -0700685#define async_dma_find_channel(type) dma_find_channel(type)
Dan Williams5fc6d892010-10-07 16:44:50 -0700686#endif /* CONFIG_ASYNC_TX_ENABLE_CHANNEL_SWITCH */
Dan Williams729b5d12009-03-25 09:13:25 -0700687#else
688static inline void async_dmaengine_get(void)
689{
690}
691static inline void async_dmaengine_put(void)
692{
693}
694static inline struct dma_chan *
695async_dma_find_channel(enum dma_transaction_type type)
696{
697 return NULL;
698}
Dan Williams138f4c32009-09-08 17:42:51 -0700699#endif /* CONFIG_ASYNC_TX_DMA */
Dan Williams729b5d12009-03-25 09:13:25 -0700700
Dan Williams7405f742007-01-02 11:10:43 -0700701dma_cookie_t dma_async_memcpy_buf_to_buf(struct dma_chan *chan,
702 void *dest, void *src, size_t len);
703dma_cookie_t dma_async_memcpy_buf_to_pg(struct dma_chan *chan,
704 struct page *page, unsigned int offset, void *kdata, size_t len);
705dma_cookie_t dma_async_memcpy_pg_to_pg(struct dma_chan *chan,
Chris Leechc13c8262006-05-23 17:18:44 -0700706 struct page *dest_pg, unsigned int dest_off, struct page *src_pg,
Dan Williams7405f742007-01-02 11:10:43 -0700707 unsigned int src_off, size_t len);
708void dma_async_tx_descriptor_init(struct dma_async_tx_descriptor *tx,
709 struct dma_chan *chan);
Chris Leechc13c8262006-05-23 17:18:44 -0700710
Dan Williams08398752008-07-17 17:59:56 -0700711static inline void async_tx_ack(struct dma_async_tx_descriptor *tx)
Dan Williams7405f742007-01-02 11:10:43 -0700712{
Dan Williams636bdea2008-04-17 20:17:26 -0700713 tx->flags |= DMA_CTRL_ACK;
714}
715
Guennadi Liakhovetskief560682009-01-19 15:36:21 -0700716static inline void async_tx_clear_ack(struct dma_async_tx_descriptor *tx)
717{
718 tx->flags &= ~DMA_CTRL_ACK;
719}
720
Dan Williams08398752008-07-17 17:59:56 -0700721static inline bool async_tx_test_ack(struct dma_async_tx_descriptor *tx)
Dan Williams636bdea2008-04-17 20:17:26 -0700722{
Dan Williams08398752008-07-17 17:59:56 -0700723 return (tx->flags & DMA_CTRL_ACK) == DMA_CTRL_ACK;
Chris Leechc13c8262006-05-23 17:18:44 -0700724}
725
Dan Williams7405f742007-01-02 11:10:43 -0700726#define first_dma_cap(mask) __first_dma_cap(&(mask))
727static inline int __first_dma_cap(const dma_cap_mask_t *srcp)
728{
729 return min_t(int, DMA_TX_TYPE_END,
730 find_first_bit(srcp->bits, DMA_TX_TYPE_END));
731}
732
733#define next_dma_cap(n, mask) __next_dma_cap((n), &(mask))
734static inline int __next_dma_cap(int n, const dma_cap_mask_t *srcp)
735{
736 return min_t(int, DMA_TX_TYPE_END,
737 find_next_bit(srcp->bits, DMA_TX_TYPE_END, n+1));
738}
739
740#define dma_cap_set(tx, mask) __dma_cap_set((tx), &(mask))
741static inline void
742__dma_cap_set(enum dma_transaction_type tx_type, dma_cap_mask_t *dstp)
743{
744 set_bit(tx_type, dstp->bits);
745}
746
Atsushi Nemoto0f571512009-03-06 20:07:14 +0900747#define dma_cap_clear(tx, mask) __dma_cap_clear((tx), &(mask))
748static inline void
749__dma_cap_clear(enum dma_transaction_type tx_type, dma_cap_mask_t *dstp)
750{
751 clear_bit(tx_type, dstp->bits);
752}
753
Dan Williams33df8ca2009-01-06 11:38:15 -0700754#define dma_cap_zero(mask) __dma_cap_zero(&(mask))
755static inline void __dma_cap_zero(dma_cap_mask_t *dstp)
756{
757 bitmap_zero(dstp->bits, DMA_TX_TYPE_END);
758}
759
Dan Williams7405f742007-01-02 11:10:43 -0700760#define dma_has_cap(tx, mask) __dma_has_cap((tx), &(mask))
761static inline int
762__dma_has_cap(enum dma_transaction_type tx_type, dma_cap_mask_t *srcp)
763{
764 return test_bit(tx_type, srcp->bits);
765}
766
767#define for_each_dma_cap_mask(cap, mask) \
768 for ((cap) = first_dma_cap(mask); \
769 (cap) < DMA_TX_TYPE_END; \
770 (cap) = next_dma_cap((cap), (mask)))
771
Chris Leechc13c8262006-05-23 17:18:44 -0700772/**
Dan Williams7405f742007-01-02 11:10:43 -0700773 * dma_async_issue_pending - flush pending transactions to HW
Randy Dunlapfe4ada22006-07-03 19:44:51 -0700774 * @chan: target DMA channel
Chris Leechc13c8262006-05-23 17:18:44 -0700775 *
776 * This allows drivers to push copies to HW in batches,
777 * reducing MMIO writes where possible.
778 */
Dan Williams7405f742007-01-02 11:10:43 -0700779static inline void dma_async_issue_pending(struct dma_chan *chan)
Chris Leechc13c8262006-05-23 17:18:44 -0700780{
Dan Williamsec8670f2008-03-01 07:51:29 -0700781 chan->device->device_issue_pending(chan);
Chris Leechc13c8262006-05-23 17:18:44 -0700782}
783
Dan Williams7405f742007-01-02 11:10:43 -0700784#define dma_async_memcpy_issue_pending(chan) dma_async_issue_pending(chan)
785
Chris Leechc13c8262006-05-23 17:18:44 -0700786/**
Dan Williams7405f742007-01-02 11:10:43 -0700787 * dma_async_is_tx_complete - poll for transaction completion
Chris Leechc13c8262006-05-23 17:18:44 -0700788 * @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 */
Dan Williams7405f742007-01-02 11:10:43 -0700797static inline enum dma_status dma_async_is_tx_complete(struct dma_chan *chan,
Chris Leechc13c8262006-05-23 17:18:44 -0700798 dma_cookie_t cookie, dma_cookie_t *last, dma_cookie_t *used)
799{
Linus Walleij07934482010-03-26 16:50:49 -0700800 struct dma_tx_state state;
801 enum dma_status status;
802
803 status = chan->device->device_tx_status(chan, cookie, &state);
804 if (last)
805 *last = state.last;
806 if (used)
807 *used = state.used;
808 return status;
Chris Leechc13c8262006-05-23 17:18:44 -0700809}
810
Dan Williams7405f742007-01-02 11:10:43 -0700811#define dma_async_memcpy_complete(chan, cookie, last, used)\
812 dma_async_is_tx_complete(chan, cookie, last, used)
813
Chris Leechc13c8262006-05-23 17:18:44 -0700814/**
815 * dma_async_is_complete - test a cookie against chan state
816 * @cookie: transaction identifier to test status of
817 * @last_complete: last know completed transaction
818 * @last_used: last cookie value handed out
819 *
820 * dma_async_is_complete() is used in dma_async_memcpy_complete()
Sebastian Siewior8a5703f2008-04-21 22:38:45 +0000821 * the test logic is separated for lightweight testing of multiple cookies
Chris Leechc13c8262006-05-23 17:18:44 -0700822 */
823static inline enum dma_status dma_async_is_complete(dma_cookie_t cookie,
824 dma_cookie_t last_complete, dma_cookie_t last_used)
825{
826 if (last_complete <= last_used) {
827 if ((cookie <= last_complete) || (cookie > last_used))
828 return DMA_SUCCESS;
829 } else {
830 if ((cookie <= last_complete) && (cookie > last_used))
831 return DMA_SUCCESS;
832 }
833 return DMA_IN_PROGRESS;
834}
835
Dan Williamsbca34692010-03-26 16:52:10 -0700836static inline void
837dma_set_tx_state(struct dma_tx_state *st, dma_cookie_t last, dma_cookie_t used, u32 residue)
838{
839 if (st) {
840 st->last = last;
841 st->used = used;
842 st->residue = residue;
843 }
844}
845
Dan Williams7405f742007-01-02 11:10:43 -0700846enum dma_status dma_sync_wait(struct dma_chan *chan, dma_cookie_t cookie);
Dan Williams07f22112009-01-05 17:14:31 -0700847#ifdef CONFIG_DMA_ENGINE
848enum dma_status dma_wait_for_async_tx(struct dma_async_tx_descriptor *tx);
Dan Williamsc50331e2009-01-19 15:33:14 -0700849void dma_issue_pending_all(void);
Guennadi Liakhovetski8f33d522010-12-22 14:46:46 +0100850struct dma_chan *__dma_request_channel(dma_cap_mask_t *mask, dma_filter_fn fn, void *fn_param);
851void dma_release_channel(struct dma_chan *chan);
Dan Williams07f22112009-01-05 17:14:31 -0700852#else
853static inline enum dma_status dma_wait_for_async_tx(struct dma_async_tx_descriptor *tx)
854{
855 return DMA_SUCCESS;
856}
Dan Williamsc50331e2009-01-19 15:33:14 -0700857static inline void dma_issue_pending_all(void)
858{
Guennadi Liakhovetski8f33d522010-12-22 14:46:46 +0100859}
860static inline struct dma_chan *__dma_request_channel(dma_cap_mask_t *mask,
861 dma_filter_fn fn, void *fn_param)
862{
863 return NULL;
864}
865static inline void dma_release_channel(struct dma_chan *chan)
866{
Dan Williamsc50331e2009-01-19 15:33:14 -0700867}
Dan Williams07f22112009-01-05 17:14:31 -0700868#endif
Chris Leechc13c8262006-05-23 17:18:44 -0700869
870/* --- DMA device --- */
871
872int dma_async_device_register(struct dma_device *device);
873void dma_async_device_unregister(struct dma_device *device);
Dan Williams07f22112009-01-05 17:14:31 -0700874void dma_run_dependencies(struct dma_async_tx_descriptor *tx);
Dan Williamsbec08512009-01-06 11:38:14 -0700875struct dma_chan *dma_find_channel(enum dma_transaction_type tx_type);
Dan Williams59b5ec22009-01-06 11:38:15 -0700876#define dma_request_channel(mask, x, y) __dma_request_channel(&(mask), x, y)
Chris Leechc13c8262006-05-23 17:18:44 -0700877
Chris Leechde5506e2006-05-23 17:50:37 -0700878/* --- Helper iov-locking functions --- */
879
880struct dma_page_list {
Al Virob2ddb902008-03-29 03:09:38 +0000881 char __user *base_address;
Chris Leechde5506e2006-05-23 17:50:37 -0700882 int nr_pages;
883 struct page **pages;
884};
885
886struct dma_pinned_list {
887 int nr_iovecs;
888 struct dma_page_list page_list[0];
889};
890
891struct dma_pinned_list *dma_pin_iovec_pages(struct iovec *iov, size_t len);
892void dma_unpin_iovec_pages(struct dma_pinned_list* pinned_list);
893
894dma_cookie_t dma_memcpy_to_iovec(struct dma_chan *chan, struct iovec *iov,
895 struct dma_pinned_list *pinned_list, unsigned char *kdata, size_t len);
896dma_cookie_t dma_memcpy_pg_to_iovec(struct dma_chan *chan, struct iovec *iov,
897 struct dma_pinned_list *pinned_list, struct page *page,
898 unsigned int offset, size_t len);
899
Chris Leechc13c8262006-05-23 17:18:44 -0700900#endif /* DMAENGINE_H */