blob: 1fcf45ac81ecefd22ad23fe53aa333ffe2b6efa8 [file] [log] [blame]
Dan Williams9bc89cd2007-01-02 11:10:44 -07001/*
2 * xor offload engine api
3 *
4 * Copyright © 2006, Intel Corporation.
5 *
6 * Dan Williams <dan.j.williams@intel.com>
7 *
8 * with architecture considerations by:
9 * Neil Brown <neilb@suse.de>
10 * Jeff Garzik <jeff@garzik.org>
11 *
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms and conditions of the GNU General Public License,
14 * version 2, as published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope it will be useful, but WITHOUT
17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
19 * more details.
20 *
21 * You should have received a copy of the GNU General Public License along with
22 * this program; if not, write to the Free Software Foundation, Inc.,
23 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
24 *
25 */
26#include <linux/kernel.h>
27#include <linux/interrupt.h>
28#include <linux/mm.h>
29#include <linux/dma-mapping.h>
30#include <linux/raid/xor.h>
31#include <linux/async_tx.h>
32
Dan Williams1367a3d2008-02-02 18:46:43 -070033/* do_async_xor - dma map the pages and perform the xor with an engine.
34 * This routine is marked __always_inline so it can be compiled away
35 * when CONFIG_DMA_ENGINE=n
36 */
Dan Williams00367312008-02-02 19:49:57 -070037static __always_inline struct dma_async_tx_descriptor *
Dan Williams1e55db22008-07-16 19:44:56 -070038do_async_xor(struct dma_chan *chan, struct page *dest, struct page **src_list,
39 unsigned int offset, int src_cnt, size_t len,
40 enum async_tx_flags flags,
41 struct dma_async_tx_descriptor *depend_tx,
42 dma_async_tx_callback cb_fn, void *cb_param)
Dan Williams9bc89cd2007-01-02 11:10:44 -070043{
Dan Williams1e55db22008-07-16 19:44:56 -070044 struct dma_device *dma = chan->device;
Dan Williams00367312008-02-02 19:49:57 -070045 dma_addr_t *dma_src = (dma_addr_t *) src_list;
Dan Williams1e55db22008-07-16 19:44:56 -070046 struct dma_async_tx_descriptor *tx = NULL;
47 int src_off = 0;
Dan Williams9bc89cd2007-01-02 11:10:44 -070048 int i;
Dan Williams1e55db22008-07-16 19:44:56 -070049 dma_async_tx_callback _cb_fn;
50 void *_cb_param;
51 enum async_tx_flags async_flags;
52 enum dma_ctrl_flags dma_flags;
53 int xor_src_cnt;
54 dma_addr_t dma_dest;
Dan Williams9bc89cd2007-01-02 11:10:44 -070055
Dan Williams1e55db22008-07-16 19:44:56 -070056 dma_dest = dma_map_page(dma->dev, dest, offset, len, DMA_FROM_DEVICE);
Dan Williams00367312008-02-02 19:49:57 -070057 for (i = 0; i < src_cnt; i++)
Dan Williams1e55db22008-07-16 19:44:56 -070058 dma_src[i] = dma_map_page(dma->dev, src_list[i], offset,
Dan Williams00367312008-02-02 19:49:57 -070059 len, DMA_TO_DEVICE);
60
Dan Williams1e55db22008-07-16 19:44:56 -070061 while (src_cnt) {
62 async_flags = flags;
63 dma_flags = 0;
64 xor_src_cnt = min(src_cnt, dma->max_xor);
65 /* if we are submitting additional xors, leave the chain open,
66 * clear the callback parameters, and leave the destination
67 * buffer mapped
68 */
69 if (src_cnt > xor_src_cnt) {
70 async_flags &= ~ASYNC_TX_ACK;
71 dma_flags = DMA_COMPL_SKIP_DEST_UNMAP;
72 _cb_fn = NULL;
73 _cb_param = NULL;
74 } else {
75 _cb_fn = cb_fn;
76 _cb_param = cb_param;
77 }
78 if (_cb_fn)
79 dma_flags |= DMA_PREP_INTERRUPT;
80
81 /* Since we have clobbered the src_list we are committed
82 * to doing this asynchronously. Drivers force forward progress
83 * in case they can not provide a descriptor
84 */
85 tx = dma->device_prep_dma_xor(chan, dma_dest, &dma_src[src_off],
86 xor_src_cnt, len, dma_flags);
87
88 if (unlikely(!tx && depend_tx))
Dan Williams00367312008-02-02 19:49:57 -070089 dma_wait_for_async_tx(depend_tx);
90
Dan Williams1e55db22008-07-16 19:44:56 -070091 /* spin wait for the preceeding transactions to complete */
92 while (unlikely(!tx))
93 tx = dma->device_prep_dma_xor(chan, dma_dest,
94 &dma_src[src_off],
95 xor_src_cnt, len,
96 dma_flags);
Dan Williams9bc89cd2007-01-02 11:10:44 -070097
Dan Williams1e55db22008-07-16 19:44:56 -070098 async_tx_submit(chan, tx, async_flags, depend_tx, _cb_fn,
99 _cb_param);
100
101 depend_tx = tx;
102 flags |= ASYNC_TX_DEP_ACK;
103
104 if (src_cnt > xor_src_cnt) {
105 /* drop completed sources */
106 src_cnt -= xor_src_cnt;
107 src_off += xor_src_cnt;
108
109 /* use the intermediate result a source */
110 dma_src[--src_off] = dma_dest;
111 src_cnt++;
112 } else
113 break;
114 }
Dan Williams00367312008-02-02 19:49:57 -0700115
116 return tx;
Dan Williams9bc89cd2007-01-02 11:10:44 -0700117}
118
119static void
120do_sync_xor(struct page *dest, struct page **src_list, unsigned int offset,
Dan Williams1e55db22008-07-16 19:44:56 -0700121 int src_cnt, size_t len, enum async_tx_flags flags,
122 struct dma_async_tx_descriptor *depend_tx,
123 dma_async_tx_callback cb_fn, void *cb_param)
Dan Williams9bc89cd2007-01-02 11:10:44 -0700124{
Dan Williams9bc89cd2007-01-02 11:10:44 -0700125 int i;
Dan Williams1e55db22008-07-16 19:44:56 -0700126 int xor_src_cnt;
127 int src_off = 0;
128 void *dest_buf;
129 void **srcs = (void **) src_list;
Dan Williams9bc89cd2007-01-02 11:10:44 -0700130
131 /* reuse the 'src_list' array to convert to buffer pointers */
132 for (i = 0; i < src_cnt; i++)
Dan Williams1e55db22008-07-16 19:44:56 -0700133 srcs[i] = page_address(src_list[i]) + offset;
Dan Williams9bc89cd2007-01-02 11:10:44 -0700134
135 /* set destination address */
Dan Williams1e55db22008-07-16 19:44:56 -0700136 dest_buf = page_address(dest) + offset;
Dan Williams9bc89cd2007-01-02 11:10:44 -0700137
138 if (flags & ASYNC_TX_XOR_ZERO_DST)
Dan Williams1e55db22008-07-16 19:44:56 -0700139 memset(dest_buf, 0, len);
Dan Williams9bc89cd2007-01-02 11:10:44 -0700140
Dan Williams1e55db22008-07-16 19:44:56 -0700141 while (src_cnt > 0) {
142 /* process up to 'MAX_XOR_BLOCKS' sources */
143 xor_src_cnt = min(src_cnt, MAX_XOR_BLOCKS);
144 xor_blocks(xor_src_cnt, len, dest_buf, &srcs[src_off]);
145
146 /* drop completed sources */
147 src_cnt -= xor_src_cnt;
148 src_off += xor_src_cnt;
149 }
Dan Williams9bc89cd2007-01-02 11:10:44 -0700150
151 async_tx_sync_epilog(flags, depend_tx, cb_fn, cb_param);
152}
153
154/**
155 * async_xor - attempt to xor a set of blocks with a dma engine.
156 * xor_blocks always uses the dest as a source so the ASYNC_TX_XOR_ZERO_DST
157 * flag must be set to not include dest data in the calculation. The
158 * assumption with dma eninges is that they only use the destination
159 * buffer as a source when it is explicity specified in the source list.
160 * @dest: destination page
161 * @src_list: array of source pages (if the dest is also a source it must be
162 * at index zero). The contents of this array may be overwritten.
163 * @offset: offset in pages to start transaction
164 * @src_cnt: number of source pages
165 * @len: length in bytes
166 * @flags: ASYNC_TX_XOR_ZERO_DST, ASYNC_TX_XOR_DROP_DEST,
Dan Williamsd909b342008-02-02 19:30:14 -0700167 * ASYNC_TX_ACK, ASYNC_TX_DEP_ACK
Dan Williams9bc89cd2007-01-02 11:10:44 -0700168 * @depend_tx: xor depends on the result of this transaction.
169 * @cb_fn: function to call when the xor completes
170 * @cb_param: parameter to pass to the callback routine
171 */
172struct dma_async_tx_descriptor *
173async_xor(struct page *dest, struct page **src_list, unsigned int offset,
174 int src_cnt, size_t len, enum async_tx_flags flags,
175 struct dma_async_tx_descriptor *depend_tx,
176 dma_async_tx_callback cb_fn, void *cb_param)
177{
Dan Williams47437b22008-02-02 19:49:59 -0700178 struct dma_chan *chan = async_tx_find_channel(depend_tx, DMA_XOR,
179 &dest, 1, src_list,
180 src_cnt, len);
Dan Williams9bc89cd2007-01-02 11:10:44 -0700181 BUG_ON(src_cnt <= 1);
182
Dan Williams1e55db22008-07-16 19:44:56 -0700183 if (chan) {
184 /* run the xor asynchronously */
185 pr_debug("%s (async): len: %zu\n", __func__, len);
Dan Williams9bc89cd2007-01-02 11:10:44 -0700186
Dan Williams1e55db22008-07-16 19:44:56 -0700187 return do_async_xor(chan, dest, src_list, offset, src_cnt, len,
188 flags, depend_tx, cb_fn, cb_param);
189 } else {
190 /* run the xor synchronously */
191 pr_debug("%s (sync): len: %zu\n", __func__, len);
Dan Williams9bc89cd2007-01-02 11:10:44 -0700192
Dan Williams1e55db22008-07-16 19:44:56 -0700193 /* in the sync case the dest is an implied source
194 * (assumes the dest is the first source)
195 */
196 if (flags & ASYNC_TX_XOR_DROP_DST) {
197 src_cnt--;
198 src_list++;
Dan Williams9bc89cd2007-01-02 11:10:44 -0700199 }
200
Dan Williams1e55db22008-07-16 19:44:56 -0700201 /* wait for any prerequisite operations */
202 if (depend_tx) {
203 /* if ack is already set then we cannot be sure
204 * we are referring to the correct operation
Dan Williams9bc89cd2007-01-02 11:10:44 -0700205 */
Dan Williams1e55db22008-07-16 19:44:56 -0700206 BUG_ON(async_tx_test_ack(depend_tx));
207 if (dma_wait_for_async_tx(depend_tx) == DMA_ERROR)
208 panic("%s: DMA_ERROR waiting for depend_tx\n",
209 __func__);
210 }
Dan Williams9bc89cd2007-01-02 11:10:44 -0700211
Dan Williams1e55db22008-07-16 19:44:56 -0700212 do_sync_xor(dest, src_list, offset, src_cnt, len,
213 flags, depend_tx, cb_fn, cb_param);
214
215 return NULL;
216 }
Dan Williams9bc89cd2007-01-02 11:10:44 -0700217}
218EXPORT_SYMBOL_GPL(async_xor);
219
220static int page_is_zero(struct page *p, unsigned int offset, size_t len)
221{
222 char *a = page_address(p) + offset;
223 return ((*(u32 *) a) == 0 &&
224 memcmp(a, a + 4, len - 4) == 0);
225}
226
227/**
228 * async_xor_zero_sum - attempt a xor parity check with a dma engine.
229 * @dest: destination page used if the xor is performed synchronously
230 * @src_list: array of source pages. The dest page must be listed as a source
231 * at index zero. The contents of this array may be overwritten.
232 * @offset: offset in pages to start transaction
233 * @src_cnt: number of source pages
234 * @len: length in bytes
235 * @result: 0 if sum == 0 else non-zero
Dan Williamsd909b342008-02-02 19:30:14 -0700236 * @flags: ASYNC_TX_ACK, ASYNC_TX_DEP_ACK
Dan Williams9bc89cd2007-01-02 11:10:44 -0700237 * @depend_tx: xor depends on the result of this transaction.
238 * @cb_fn: function to call when the xor completes
239 * @cb_param: parameter to pass to the callback routine
240 */
241struct dma_async_tx_descriptor *
242async_xor_zero_sum(struct page *dest, struct page **src_list,
243 unsigned int offset, int src_cnt, size_t len,
244 u32 *result, enum async_tx_flags flags,
245 struct dma_async_tx_descriptor *depend_tx,
246 dma_async_tx_callback cb_fn, void *cb_param)
247{
Dan Williams47437b22008-02-02 19:49:59 -0700248 struct dma_chan *chan = async_tx_find_channel(depend_tx, DMA_ZERO_SUM,
249 &dest, 1, src_list,
250 src_cnt, len);
Dan Williams9bc89cd2007-01-02 11:10:44 -0700251 struct dma_device *device = chan ? chan->device : NULL;
Dan Williams00367312008-02-02 19:49:57 -0700252 struct dma_async_tx_descriptor *tx = NULL;
Dan Williams9bc89cd2007-01-02 11:10:44 -0700253
254 BUG_ON(src_cnt <= 1);
255
Dan Williams8d8002f2008-03-18 21:23:59 -0700256 if (device && src_cnt <= device->max_xor) {
Dan Williams00367312008-02-02 19:49:57 -0700257 dma_addr_t *dma_src = (dma_addr_t *) src_list;
Dan Williamsd4c56f92008-02-02 19:49:58 -0700258 unsigned long dma_prep_flags = cb_fn ? DMA_PREP_INTERRUPT : 0;
Dan Williams00367312008-02-02 19:49:57 -0700259 int i;
Dan Williams9bc89cd2007-01-02 11:10:44 -0700260
Dan Williams3280ab3e2008-03-13 17:45:28 -0700261 pr_debug("%s: (async) len: %zu\n", __func__, len);
Dan Williams9bc89cd2007-01-02 11:10:44 -0700262
Dan Williams00367312008-02-02 19:49:57 -0700263 for (i = 0; i < src_cnt; i++)
264 dma_src[i] = dma_map_page(device->dev, src_list[i],
265 offset, len, DMA_TO_DEVICE);
266
267 tx = device->device_prep_dma_zero_sum(chan, dma_src, src_cnt,
268 len, result,
Dan Williamsd4c56f92008-02-02 19:49:58 -0700269 dma_prep_flags);
Dan Williams00367312008-02-02 19:49:57 -0700270 if (!tx) {
271 if (depend_tx)
272 dma_wait_for_async_tx(depend_tx);
273
274 while (!tx)
275 tx = device->device_prep_dma_zero_sum(chan,
276 dma_src, src_cnt, len, result,
Dan Williamsd4c56f92008-02-02 19:49:58 -0700277 dma_prep_flags);
Dan Williams9bc89cd2007-01-02 11:10:44 -0700278 }
279
280 async_tx_submit(chan, tx, flags, depend_tx, cb_fn, cb_param);
281 } else {
282 unsigned long xor_flags = flags;
283
Dan Williams3280ab3e2008-03-13 17:45:28 -0700284 pr_debug("%s: (sync) len: %zu\n", __func__, len);
Dan Williams9bc89cd2007-01-02 11:10:44 -0700285
286 xor_flags |= ASYNC_TX_XOR_DROP_DST;
287 xor_flags &= ~ASYNC_TX_ACK;
288
289 tx = async_xor(dest, src_list, offset, src_cnt, len, xor_flags,
290 depend_tx, NULL, NULL);
291
292 if (tx) {
293 if (dma_wait_for_async_tx(tx) == DMA_ERROR)
294 panic("%s: DMA_ERROR waiting for tx\n",
Dan Williams3280ab3e2008-03-13 17:45:28 -0700295 __func__);
Dan Williams9bc89cd2007-01-02 11:10:44 -0700296 async_tx_ack(tx);
297 }
298
299 *result = page_is_zero(dest, offset, len) ? 0 : 1;
300
301 tx = NULL;
302
303 async_tx_sync_epilog(flags, depend_tx, cb_fn, cb_param);
304 }
305
306 return tx;
307}
308EXPORT_SYMBOL_GPL(async_xor_zero_sum);
309
310static int __init async_xor_init(void)
311{
Dan Williams00367312008-02-02 19:49:57 -0700312 #ifdef CONFIG_DMA_ENGINE
313 /* To conserve stack space the input src_list (array of page pointers)
314 * is reused to hold the array of dma addresses passed to the driver.
315 * This conversion is only possible when dma_addr_t is less than the
316 * the size of a pointer. HIGHMEM64G is known to violate this
317 * assumption.
318 */
319 BUILD_BUG_ON(sizeof(dma_addr_t) > sizeof(struct page *));
320 #endif
321
Dan Williams9bc89cd2007-01-02 11:10:44 -0700322 return 0;
323}
324
325static void __exit async_xor_exit(void)
326{
327 do { } while (0);
328}
329
330module_init(async_xor_init);
331module_exit(async_xor_exit);
332
333MODULE_AUTHOR("Intel Corporation");
334MODULE_DESCRIPTION("asynchronous xor/xor-zero-sum api");
335MODULE_LICENSE("GPL");