blob: 00cfb637ddf2229f0cbf41c76fc6023a4dbae262 [file] [log] [blame]
Dan Williams9bc89cd2007-01-02 11:10:44 -07001/*
2 * Copyright © 2006, Intel Corporation.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
16 *
17 */
18#ifndef _ASYNC_TX_H_
19#define _ASYNC_TX_H_
20#include <linux/dmaengine.h>
21#include <linux/spinlock.h>
22#include <linux/interrupt.h>
23
Dan Williams06164f32009-03-25 09:13:25 -070024/* on architectures without dma-mapping capabilities we need to ensure
25 * that the asynchronous path compiles away
26 */
27#ifdef CONFIG_HAS_DMA
28#define __async_inline
29#else
30#define __async_inline __always_inline
31#endif
32
Dan Williams9bc89cd2007-01-02 11:10:44 -070033/**
34 * dma_chan_ref - object used to manage dma channels received from the
35 * dmaengine core.
36 * @chan - the channel being tracked
37 * @node - node for the channel to be placed on async_tx_master_list
38 * @rcu - for list_del_rcu
39 * @count - number of times this channel is listed in the pool
40 * (for channels with multiple capabiities)
41 */
42struct dma_chan_ref {
43 struct dma_chan *chan;
44 struct list_head node;
45 struct rcu_head rcu;
46 atomic_t count;
47};
48
49/**
50 * async_tx_flags - modifiers for the async_* calls
51 * @ASYNC_TX_XOR_ZERO_DST: this flag must be used for xor operations where the
52 * the destination address is not a source. The asynchronous case handles this
53 * implicitly, the synchronous case needs to zero the destination block.
54 * @ASYNC_TX_XOR_DROP_DST: this flag must be used if the destination address is
55 * also one of the source addresses. In the synchronous case the destination
56 * address is an implied source, whereas the asynchronous case it must be listed
57 * as a source. The destination address must be the first address in the source
58 * array.
Dan Williams9bc89cd2007-01-02 11:10:44 -070059 * @ASYNC_TX_ACK: immediately ack the descriptor, precludes setting up a
60 * dependency chain
Dan Williams9bc89cd2007-01-02 11:10:44 -070061 */
62enum async_tx_flags {
63 ASYNC_TX_XOR_ZERO_DST = (1 << 0),
64 ASYNC_TX_XOR_DROP_DST = (1 << 1),
Dan Williams88ba2aa2009-04-09 16:16:18 -070065 ASYNC_TX_ACK = (1 << 2),
Dan Williams9bc89cd2007-01-02 11:10:44 -070066};
67
Dan Williamsa08abd82009-06-03 11:43:59 -070068/**
69 * struct async_submit_ctl - async_tx submission/completion modifiers
70 * @flags: submission modifiers
71 * @depend_tx: parent dependency of the current operation being submitted
72 * @cb_fn: callback routine to run at operation completion
73 * @cb_param: parameter for the callback routine
74 * @scribble: caller provided space for dma/page address conversions
75 */
76struct async_submit_ctl {
77 enum async_tx_flags flags;
78 struct dma_async_tx_descriptor *depend_tx;
79 dma_async_tx_callback cb_fn;
80 void *cb_param;
81 void *scribble;
82};
83
Dan Williams9bc89cd2007-01-02 11:10:44 -070084#ifdef CONFIG_DMA_ENGINE
Dan Williams2ba05622009-01-06 11:38:14 -070085#define async_tx_issue_pending_all dma_issue_pending_all
Dan Williams47437b22008-02-02 19:49:59 -070086#ifdef CONFIG_ARCH_HAS_ASYNC_TX_FIND_CHANNEL
87#include <asm/async_tx.h>
88#else
89#define async_tx_find_channel(dep, type, dst, dst_count, src, src_count, len) \
90 __async_tx_find_channel(dep, type)
Dan Williams9bc89cd2007-01-02 11:10:44 -070091struct dma_chan *
Dan Williamsa08abd82009-06-03 11:43:59 -070092__async_tx_find_channel(struct async_submit_ctl *submit,
93 enum dma_transaction_type tx_type);
Dan Williams47437b22008-02-02 19:49:59 -070094#endif /* CONFIG_ARCH_HAS_ASYNC_TX_FIND_CHANNEL */
Dan Williams9bc89cd2007-01-02 11:10:44 -070095#else
96static inline void async_tx_issue_pending_all(void)
97{
98 do { } while (0);
99}
100
Dan Williams9bc89cd2007-01-02 11:10:44 -0700101static inline struct dma_chan *
Dan Williamsa08abd82009-06-03 11:43:59 -0700102async_tx_find_channel(struct async_submit_ctl *submit,
103 enum dma_transaction_type tx_type, struct page **dst,
104 int dst_count, struct page **src, int src_count,
105 size_t len)
Dan Williams9bc89cd2007-01-02 11:10:44 -0700106{
107 return NULL;
108}
109#endif
110
111/**
112 * async_tx_sync_epilog - actions to take if an operation is run synchronously
Dan Williams9bc89cd2007-01-02 11:10:44 -0700113 * @cb_fn: function to call when the transaction completes
114 * @cb_fn_param: parameter to pass to the callback routine
115 */
116static inline void
Dan Williamsa08abd82009-06-03 11:43:59 -0700117async_tx_sync_epilog(struct async_submit_ctl *submit)
Dan Williams9bc89cd2007-01-02 11:10:44 -0700118{
Dan Williamsa08abd82009-06-03 11:43:59 -0700119 if (submit->cb_fn)
120 submit->cb_fn(submit->cb_param);
Dan Williams9bc89cd2007-01-02 11:10:44 -0700121}
122
Dan Williamsa08abd82009-06-03 11:43:59 -0700123typedef union {
124 unsigned long addr;
125 struct page *page;
126 dma_addr_t dma;
127} addr_conv_t;
128
129static inline void
130init_async_submit(struct async_submit_ctl *args, enum async_tx_flags flags,
131 struct dma_async_tx_descriptor *tx,
132 dma_async_tx_callback cb_fn, void *cb_param,
133 addr_conv_t *scribble)
134{
135 args->flags = flags;
136 args->depend_tx = tx;
137 args->cb_fn = cb_fn;
138 args->cb_param = cb_param;
139 args->scribble = scribble;
140}
141
142void async_tx_submit(struct dma_chan *chan, struct dma_async_tx_descriptor *tx,
143 struct async_submit_ctl *submit);
Dan Williams9bc89cd2007-01-02 11:10:44 -0700144
145struct dma_async_tx_descriptor *
146async_xor(struct page *dest, struct page **src_list, unsigned int offset,
Dan Williamsa08abd82009-06-03 11:43:59 -0700147 int src_cnt, size_t len, struct async_submit_ctl *submit);
Dan Williams9bc89cd2007-01-02 11:10:44 -0700148
149struct dma_async_tx_descriptor *
Dan Williamsa08abd82009-06-03 11:43:59 -0700150async_xor_val(struct page *dest, struct page **src_list, unsigned int offset,
151 int src_cnt, size_t len, u32 *result,
152 struct async_submit_ctl *submit);
Dan Williams9bc89cd2007-01-02 11:10:44 -0700153
154struct dma_async_tx_descriptor *
155async_memcpy(struct page *dest, struct page *src, unsigned int dest_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -0700156 unsigned int src_offset, size_t len,
157 struct async_submit_ctl *submit);
Dan Williams9bc89cd2007-01-02 11:10:44 -0700158
159struct dma_async_tx_descriptor *
160async_memset(struct page *dest, int val, unsigned int offset,
Dan Williamsa08abd82009-06-03 11:43:59 -0700161 size_t len, struct async_submit_ctl *submit);
Dan Williams9bc89cd2007-01-02 11:10:44 -0700162
Dan Williamsa08abd82009-06-03 11:43:59 -0700163struct dma_async_tx_descriptor *async_trigger_callback(struct async_submit_ctl *submit);
Dan Williamsd2c52b72008-07-17 17:59:55 -0700164
165void async_tx_quiesce(struct dma_async_tx_descriptor **tx);
Dan Williams9bc89cd2007-01-02 11:10:44 -0700166#endif /* _ASYNC_TX_H_ */