blob: d8ececaf1b57082cc5709aca68714542657b5566 [file] [log] [blame]
Dan Williamsbf40a682009-09-08 17:42:55 -07001/*
2 * This file is provided under a dual BSD/GPLv2 license. When using or
3 * redistributing this file, you may do so under either license.
4 *
5 * GPL LICENSE SUMMARY
6 *
7 * Copyright(c) 2004 - 2009 Intel Corporation. All rights reserved.
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms and conditions of the GNU General Public License,
11 * version 2, as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
21 *
22 * The full GNU General Public License is included in this distribution in
23 * the file called "COPYING".
24 *
25 * BSD LICENSE
26 *
27 * Copyright(c) 2004-2009 Intel Corporation. All rights reserved.
28 *
29 * Redistribution and use in source and binary forms, with or without
30 * modification, are permitted provided that the following conditions are met:
31 *
32 * * Redistributions of source code must retain the above copyright
33 * notice, this list of conditions and the following disclaimer.
34 * * Redistributions in binary form must reproduce the above copyright
35 * notice, this list of conditions and the following disclaimer in
36 * the documentation and/or other materials provided with the
37 * distribution.
38 * * Neither the name of Intel Corporation nor the names of its
39 * contributors may be used to endorse or promote products derived
40 * from this software without specific prior written permission.
41 *
42 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
43 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
44 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
45 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
46 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
47 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
48 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
49 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
50 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
51 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
52 * POSSIBILITY OF SUCH DAMAGE.
53 */
54
55/*
56 * Support routines for v3+ hardware
57 */
Dave Jiang7727eaa2013-04-15 10:25:56 -070058#include <linux/module.h>
Dan Williamsbf40a682009-09-08 17:42:55 -070059#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090060#include <linux/gfp.h>
Dan Williamsbf40a682009-09-08 17:42:55 -070061#include <linux/dmaengine.h>
62#include <linux/dma-mapping.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040063#include <linux/prefetch.h>
Vinod Koul949ff5b2012-03-13 11:58:12 +053064#include "../dmaengine.h"
Dan Williamsbf40a682009-09-08 17:42:55 -070065#include "registers.h"
66#include "hw.h"
67#include "dma.h"
68#include "dma_v2.h"
69
Dan Williamsb094ad32009-09-08 17:42:57 -070070/* ioat hardware assumes at least two sources for raid operations */
71#define src_cnt_to_sw(x) ((x) + 2)
72#define src_cnt_to_hw(x) ((x) - 2)
Dave Jiang7727eaa2013-04-15 10:25:56 -070073#define ndest_to_sw(x) ((x) + 1)
74#define ndest_to_hw(x) ((x) - 1)
75#define src16_cnt_to_sw(x) ((x) + 9)
76#define src16_cnt_to_hw(x) ((x) - 9)
Dan Williamsb094ad32009-09-08 17:42:57 -070077
78/* provide a lookup table for setting the source address in the base or
Dan Williamsd69d235b2009-09-08 17:42:59 -070079 * extended descriptor of an xor or pq descriptor
Dan Williamsb094ad32009-09-08 17:42:57 -070080 */
Dan Williamsd0b0c8c2011-07-22 14:20:46 -070081static const u8 xor_idx_to_desc = 0xe0;
Andi Kleen9b487ce2011-06-07 15:26:33 -070082static const u8 xor_idx_to_field[] = { 1, 4, 5, 6, 7, 0, 1, 2 };
83static const u8 pq_idx_to_desc = 0xf8;
Dave Jiang7727eaa2013-04-15 10:25:56 -070084static const u8 pq16_idx_to_desc[] = { 0, 0, 1, 1, 1, 1, 1, 1, 1,
85 2, 2, 2, 2, 2, 2, 2 };
Andi Kleen9b487ce2011-06-07 15:26:33 -070086static const u8 pq_idx_to_field[] = { 1, 4, 5, 0, 1, 2, 4, 5 };
Dave Jiang7727eaa2013-04-15 10:25:56 -070087static const u8 pq16_idx_to_field[] = { 1, 4, 1, 2, 3, 4, 5, 6, 7,
88 0, 1, 2, 3, 4, 5, 6 };
89
90/*
91 * technically sources 1 and 2 do not require SED, but the op will have
92 * at least 9 descriptors so that's irrelevant.
93 */
94static const u8 pq16_idx_to_sed[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0,
95 1, 1, 1, 1, 1, 1, 1 };
Dan Williamsb094ad32009-09-08 17:42:57 -070096
Dave Jiang3f09ede2013-03-26 15:43:09 -070097static void ioat3_eh(struct ioat2_dma_chan *ioat);
98
Dan Williamsb094ad32009-09-08 17:42:57 -070099static dma_addr_t xor_get_src(struct ioat_raw_descriptor *descs[2], int idx)
100{
101 struct ioat_raw_descriptor *raw = descs[xor_idx_to_desc >> idx & 1];
102
103 return raw->field[xor_idx_to_field[idx]];
104}
105
106static void xor_set_src(struct ioat_raw_descriptor *descs[2],
107 dma_addr_t addr, u32 offset, int idx)
108{
109 struct ioat_raw_descriptor *raw = descs[xor_idx_to_desc >> idx & 1];
110
111 raw->field[xor_idx_to_field[idx]] = addr + offset;
112}
113
Dan Williamsd69d235b2009-09-08 17:42:59 -0700114static dma_addr_t pq_get_src(struct ioat_raw_descriptor *descs[2], int idx)
115{
116 struct ioat_raw_descriptor *raw = descs[pq_idx_to_desc >> idx & 1];
117
118 return raw->field[pq_idx_to_field[idx]];
119}
120
Dave Jiang7727eaa2013-04-15 10:25:56 -0700121static dma_addr_t pq16_get_src(struct ioat_raw_descriptor *desc[3], int idx)
122{
123 struct ioat_raw_descriptor *raw = desc[pq16_idx_to_desc[idx]];
124
125 return raw->field[pq16_idx_to_field[idx]];
126}
127
Dan Williamsd69d235b2009-09-08 17:42:59 -0700128static void pq_set_src(struct ioat_raw_descriptor *descs[2],
129 dma_addr_t addr, u32 offset, u8 coef, int idx)
130{
131 struct ioat_pq_descriptor *pq = (struct ioat_pq_descriptor *) descs[0];
132 struct ioat_raw_descriptor *raw = descs[pq_idx_to_desc >> idx & 1];
133
134 raw->field[pq_idx_to_field[idx]] = addr + offset;
135 pq->coef[idx] = coef;
136}
137
Dave Jiang7727eaa2013-04-15 10:25:56 -0700138static int sed_get_pq16_pool_idx(int src_cnt)
139{
140
141 return pq16_idx_to_sed[src_cnt];
142}
143
Dave Jiang8a52b9f2013-03-26 15:42:47 -0700144static bool is_jf_ioat(struct pci_dev *pdev)
145{
146 switch (pdev->device) {
147 case PCI_DEVICE_ID_INTEL_IOAT_JSF0:
148 case PCI_DEVICE_ID_INTEL_IOAT_JSF1:
149 case PCI_DEVICE_ID_INTEL_IOAT_JSF2:
150 case PCI_DEVICE_ID_INTEL_IOAT_JSF3:
151 case PCI_DEVICE_ID_INTEL_IOAT_JSF4:
152 case PCI_DEVICE_ID_INTEL_IOAT_JSF5:
153 case PCI_DEVICE_ID_INTEL_IOAT_JSF6:
154 case PCI_DEVICE_ID_INTEL_IOAT_JSF7:
155 case PCI_DEVICE_ID_INTEL_IOAT_JSF8:
156 case PCI_DEVICE_ID_INTEL_IOAT_JSF9:
157 return true;
158 default:
159 return false;
160 }
161}
162
163static bool is_snb_ioat(struct pci_dev *pdev)
164{
165 switch (pdev->device) {
166 case PCI_DEVICE_ID_INTEL_IOAT_SNB0:
167 case PCI_DEVICE_ID_INTEL_IOAT_SNB1:
168 case PCI_DEVICE_ID_INTEL_IOAT_SNB2:
169 case PCI_DEVICE_ID_INTEL_IOAT_SNB3:
170 case PCI_DEVICE_ID_INTEL_IOAT_SNB4:
171 case PCI_DEVICE_ID_INTEL_IOAT_SNB5:
172 case PCI_DEVICE_ID_INTEL_IOAT_SNB6:
173 case PCI_DEVICE_ID_INTEL_IOAT_SNB7:
174 case PCI_DEVICE_ID_INTEL_IOAT_SNB8:
175 case PCI_DEVICE_ID_INTEL_IOAT_SNB9:
176 return true;
177 default:
178 return false;
179 }
180}
181
182static bool is_ivb_ioat(struct pci_dev *pdev)
183{
184 switch (pdev->device) {
185 case PCI_DEVICE_ID_INTEL_IOAT_IVB0:
186 case PCI_DEVICE_ID_INTEL_IOAT_IVB1:
187 case PCI_DEVICE_ID_INTEL_IOAT_IVB2:
188 case PCI_DEVICE_ID_INTEL_IOAT_IVB3:
189 case PCI_DEVICE_ID_INTEL_IOAT_IVB4:
190 case PCI_DEVICE_ID_INTEL_IOAT_IVB5:
191 case PCI_DEVICE_ID_INTEL_IOAT_IVB6:
192 case PCI_DEVICE_ID_INTEL_IOAT_IVB7:
193 case PCI_DEVICE_ID_INTEL_IOAT_IVB8:
194 case PCI_DEVICE_ID_INTEL_IOAT_IVB9:
195 return true;
196 default:
197 return false;
198 }
199
200}
201
202static bool is_hsw_ioat(struct pci_dev *pdev)
203{
204 switch (pdev->device) {
205 case PCI_DEVICE_ID_INTEL_IOAT_HSW0:
206 case PCI_DEVICE_ID_INTEL_IOAT_HSW1:
207 case PCI_DEVICE_ID_INTEL_IOAT_HSW2:
208 case PCI_DEVICE_ID_INTEL_IOAT_HSW3:
209 case PCI_DEVICE_ID_INTEL_IOAT_HSW4:
210 case PCI_DEVICE_ID_INTEL_IOAT_HSW5:
211 case PCI_DEVICE_ID_INTEL_IOAT_HSW6:
212 case PCI_DEVICE_ID_INTEL_IOAT_HSW7:
213 case PCI_DEVICE_ID_INTEL_IOAT_HSW8:
214 case PCI_DEVICE_ID_INTEL_IOAT_HSW9:
215 return true;
216 default:
217 return false;
218 }
219
220}
221
222static bool is_xeon_cb32(struct pci_dev *pdev)
223{
224 return is_jf_ioat(pdev) || is_snb_ioat(pdev) || is_ivb_ioat(pdev) ||
225 is_hsw_ioat(pdev);
226}
227
228static bool is_bwd_ioat(struct pci_dev *pdev)
229{
230 switch (pdev->device) {
231 case PCI_DEVICE_ID_INTEL_IOAT_BWD0:
232 case PCI_DEVICE_ID_INTEL_IOAT_BWD1:
233 case PCI_DEVICE_ID_INTEL_IOAT_BWD2:
234 case PCI_DEVICE_ID_INTEL_IOAT_BWD3:
235 return true;
236 default:
237 return false;
238 }
239}
240
Dave Jiangd3023982013-04-10 16:44:32 -0700241static bool is_bwd_noraid(struct pci_dev *pdev)
242{
243 switch (pdev->device) {
244 case PCI_DEVICE_ID_INTEL_IOAT_BWD2:
245 case PCI_DEVICE_ID_INTEL_IOAT_BWD3:
246 return true;
247 default:
248 return false;
249 }
250
251}
252
Dave Jiang7727eaa2013-04-15 10:25:56 -0700253static void pq16_set_src(struct ioat_raw_descriptor *desc[3],
Paul Bollee6a5fa62013-07-20 20:05:05 +0200254 dma_addr_t addr, u32 offset, u8 coef, unsigned idx)
Dave Jiang7727eaa2013-04-15 10:25:56 -0700255{
256 struct ioat_pq_descriptor *pq = (struct ioat_pq_descriptor *)desc[0];
257 struct ioat_pq16a_descriptor *pq16 =
258 (struct ioat_pq16a_descriptor *)desc[1];
259 struct ioat_raw_descriptor *raw = desc[pq16_idx_to_desc[idx]];
260
261 raw->field[pq16_idx_to_field[idx]] = addr + offset;
262
263 if (idx < 8)
264 pq->coef[idx] = coef;
265 else
266 pq16->coef[idx - 8] = coef;
267}
268
Fengguang Wue6a30fe2013-04-16 13:41:26 +0800269static struct ioat_sed_ent *
Dave Jiang7727eaa2013-04-15 10:25:56 -0700270ioat3_alloc_sed(struct ioatdma_device *device, unsigned int hw_pool)
271{
272 struct ioat_sed_ent *sed;
273 gfp_t flags = __GFP_ZERO | GFP_ATOMIC;
274
275 sed = kmem_cache_alloc(device->sed_pool, flags);
276 if (!sed)
277 return NULL;
278
279 sed->hw_pool = hw_pool;
280 sed->hw = dma_pool_alloc(device->sed_hw_pool[hw_pool],
281 flags, &sed->dma);
282 if (!sed->hw) {
283 kmem_cache_free(device->sed_pool, sed);
284 return NULL;
285 }
286
287 return sed;
288}
289
Fengguang Wue6a30fe2013-04-16 13:41:26 +0800290static void ioat3_free_sed(struct ioatdma_device *device, struct ioat_sed_ent *sed)
Dave Jiang7727eaa2013-04-15 10:25:56 -0700291{
292 if (!sed)
293 return;
294
295 dma_pool_free(device->sed_hw_pool[sed->hw_pool], sed->hw, sed->dma);
296 kmem_cache_free(device->sed_pool, sed);
297}
298
Dan Williamsbf40a682009-09-08 17:42:55 -0700299static void ioat3_dma_unmap(struct ioat2_dma_chan *ioat,
Dan Williamsb094ad32009-09-08 17:42:57 -0700300 struct ioat_ring_ent *desc, int idx)
Dan Williamsbf40a682009-09-08 17:42:55 -0700301{
302 struct ioat_chan_common *chan = &ioat->base;
303 struct pci_dev *pdev = chan->device->pdev;
304 size_t len = desc->len;
305 size_t offset = len - desc->hw->size;
306 struct dma_async_tx_descriptor *tx = &desc->txd;
307 enum dma_ctrl_flags flags = tx->flags;
308
309 switch (desc->hw->ctl_f.op) {
310 case IOAT_OP_COPY:
Dan Williams58c86492009-09-08 17:43:00 -0700311 if (!desc->hw->ctl_f.null) /* skip 'interrupt' ops */
312 ioat_dma_unmap(chan, flags, len, desc->hw);
Dan Williamsbf40a682009-09-08 17:42:55 -0700313 break;
Dan Williamsb094ad32009-09-08 17:42:57 -0700314 case IOAT_OP_XOR_VAL:
315 case IOAT_OP_XOR: {
316 struct ioat_xor_descriptor *xor = desc->xor;
317 struct ioat_ring_ent *ext;
318 struct ioat_xor_ext_descriptor *xor_ex = NULL;
319 int src_cnt = src_cnt_to_sw(xor->ctl_f.src_cnt);
320 struct ioat_raw_descriptor *descs[2];
321 int i;
322
323 if (src_cnt > 5) {
324 ext = ioat2_get_ring_ent(ioat, idx + 1);
325 xor_ex = ext->xor_ex;
326 }
327
328 if (!(flags & DMA_COMPL_SKIP_SRC_UNMAP)) {
329 descs[0] = (struct ioat_raw_descriptor *) xor;
330 descs[1] = (struct ioat_raw_descriptor *) xor_ex;
331 for (i = 0; i < src_cnt; i++) {
332 dma_addr_t src = xor_get_src(descs, i);
333
334 ioat_unmap(pdev, src - offset, len,
335 PCI_DMA_TODEVICE, flags, 0);
336 }
337
338 /* dest is a source in xor validate operations */
339 if (xor->ctl_f.op == IOAT_OP_XOR_VAL) {
340 ioat_unmap(pdev, xor->dst_addr - offset, len,
341 PCI_DMA_TODEVICE, flags, 1);
342 break;
343 }
344 }
345
346 if (!(flags & DMA_COMPL_SKIP_DEST_UNMAP))
347 ioat_unmap(pdev, xor->dst_addr - offset, len,
348 PCI_DMA_FROMDEVICE, flags, 1);
349 break;
350 }
Dan Williamsd69d235b2009-09-08 17:42:59 -0700351 case IOAT_OP_PQ_VAL:
352 case IOAT_OP_PQ: {
353 struct ioat_pq_descriptor *pq = desc->pq;
354 struct ioat_ring_ent *ext;
355 struct ioat_pq_ext_descriptor *pq_ex = NULL;
356 int src_cnt = src_cnt_to_sw(pq->ctl_f.src_cnt);
357 struct ioat_raw_descriptor *descs[2];
358 int i;
359
360 if (src_cnt > 3) {
361 ext = ioat2_get_ring_ent(ioat, idx + 1);
362 pq_ex = ext->pq_ex;
363 }
364
365 /* in the 'continue' case don't unmap the dests as sources */
366 if (dmaf_p_disabled_continue(flags))
367 src_cnt--;
368 else if (dmaf_continue(flags))
369 src_cnt -= 3;
370
371 if (!(flags & DMA_COMPL_SKIP_SRC_UNMAP)) {
372 descs[0] = (struct ioat_raw_descriptor *) pq;
373 descs[1] = (struct ioat_raw_descriptor *) pq_ex;
374 for (i = 0; i < src_cnt; i++) {
375 dma_addr_t src = pq_get_src(descs, i);
376
377 ioat_unmap(pdev, src - offset, len,
378 PCI_DMA_TODEVICE, flags, 0);
379 }
380
381 /* the dests are sources in pq validate operations */
382 if (pq->ctl_f.op == IOAT_OP_XOR_VAL) {
383 if (!(flags & DMA_PREP_PQ_DISABLE_P))
384 ioat_unmap(pdev, pq->p_addr - offset,
385 len, PCI_DMA_TODEVICE, flags, 0);
386 if (!(flags & DMA_PREP_PQ_DISABLE_Q))
387 ioat_unmap(pdev, pq->q_addr - offset,
388 len, PCI_DMA_TODEVICE, flags, 0);
389 break;
390 }
391 }
392
393 if (!(flags & DMA_COMPL_SKIP_DEST_UNMAP)) {
394 if (!(flags & DMA_PREP_PQ_DISABLE_P))
395 ioat_unmap(pdev, pq->p_addr - offset, len,
396 PCI_DMA_BIDIRECTIONAL, flags, 1);
397 if (!(flags & DMA_PREP_PQ_DISABLE_Q))
398 ioat_unmap(pdev, pq->q_addr - offset, len,
399 PCI_DMA_BIDIRECTIONAL, flags, 1);
400 }
401 break;
402 }
Dave Jiang7727eaa2013-04-15 10:25:56 -0700403 case IOAT_OP_PQ_16S:
404 case IOAT_OP_PQ_VAL_16S: {
405 struct ioat_pq_descriptor *pq = desc->pq;
406 int src_cnt = src16_cnt_to_sw(pq->ctl_f.src_cnt);
407 struct ioat_raw_descriptor *descs[4];
408 int i;
409
410 /* in the 'continue' case don't unmap the dests as sources */
411 if (dmaf_p_disabled_continue(flags))
412 src_cnt--;
413 else if (dmaf_continue(flags))
414 src_cnt -= 3;
415
416 if (!(flags & DMA_COMPL_SKIP_SRC_UNMAP)) {
417 descs[0] = (struct ioat_raw_descriptor *)pq;
418 descs[1] = (struct ioat_raw_descriptor *)(desc->sed->hw);
419 descs[2] = (struct ioat_raw_descriptor *)(&desc->sed->hw->b[0]);
420 for (i = 0; i < src_cnt; i++) {
421 dma_addr_t src = pq16_get_src(descs, i);
422
423 ioat_unmap(pdev, src - offset, len,
424 PCI_DMA_TODEVICE, flags, 0);
425 }
426
427 /* the dests are sources in pq validate operations */
428 if (pq->ctl_f.op == IOAT_OP_XOR_VAL) {
429 if (!(flags & DMA_PREP_PQ_DISABLE_P))
430 ioat_unmap(pdev, pq->p_addr - offset,
431 len, PCI_DMA_TODEVICE,
432 flags, 0);
433 if (!(flags & DMA_PREP_PQ_DISABLE_Q))
434 ioat_unmap(pdev, pq->q_addr - offset,
435 len, PCI_DMA_TODEVICE,
436 flags, 0);
437 break;
438 }
439 }
440
441 if (!(flags & DMA_COMPL_SKIP_DEST_UNMAP)) {
442 if (!(flags & DMA_PREP_PQ_DISABLE_P))
443 ioat_unmap(pdev, pq->p_addr - offset, len,
444 PCI_DMA_BIDIRECTIONAL, flags, 1);
445 if (!(flags & DMA_PREP_PQ_DISABLE_Q))
446 ioat_unmap(pdev, pq->q_addr - offset, len,
447 PCI_DMA_BIDIRECTIONAL, flags, 1);
448 }
449 break;
450 }
Dan Williamsbf40a682009-09-08 17:42:55 -0700451 default:
452 dev_err(&pdev->dev, "%s: unknown op type: %#x\n",
453 __func__, desc->hw->ctl_f.op);
454 }
455}
456
Dan Williamsb094ad32009-09-08 17:42:57 -0700457static bool desc_has_ext(struct ioat_ring_ent *desc)
458{
459 struct ioat_dma_descriptor *hw = desc->hw;
Dan Williamsbf40a682009-09-08 17:42:55 -0700460
Dan Williamsb094ad32009-09-08 17:42:57 -0700461 if (hw->ctl_f.op == IOAT_OP_XOR ||
462 hw->ctl_f.op == IOAT_OP_XOR_VAL) {
463 struct ioat_xor_descriptor *xor = desc->xor;
464
465 if (src_cnt_to_sw(xor->ctl_f.src_cnt) > 5)
466 return true;
Dan Williamsd69d235b2009-09-08 17:42:59 -0700467 } else if (hw->ctl_f.op == IOAT_OP_PQ ||
468 hw->ctl_f.op == IOAT_OP_PQ_VAL) {
469 struct ioat_pq_descriptor *pq = desc->pq;
470
471 if (src_cnt_to_sw(pq->ctl_f.src_cnt) > 3)
472 return true;
Dan Williamsb094ad32009-09-08 17:42:57 -0700473 }
474
475 return false;
476}
477
Dave Jiang3f09ede2013-03-26 15:43:09 -0700478static u64 ioat3_get_current_completion(struct ioat_chan_common *chan)
479{
480 u64 phys_complete;
481 u64 completion;
482
483 completion = *chan->completion;
484 phys_complete = ioat_chansts_to_addr(completion);
485
486 dev_dbg(to_dev(chan), "%s: phys_complete: %#llx\n", __func__,
487 (unsigned long long) phys_complete);
488
489 return phys_complete;
490}
491
492static bool ioat3_cleanup_preamble(struct ioat_chan_common *chan,
493 u64 *phys_complete)
494{
495 *phys_complete = ioat3_get_current_completion(chan);
496 if (*phys_complete == chan->last_completion)
497 return false;
498
499 clear_bit(IOAT_COMPLETION_ACK, &chan->state);
500 mod_timer(&chan->timer, jiffies + COMPLETION_TIMEOUT);
501
502 return true;
503}
504
Dave Jiang75c6f0a2013-04-10 16:44:39 -0700505static void
506desc_get_errstat(struct ioat2_dma_chan *ioat, struct ioat_ring_ent *desc)
507{
508 struct ioat_dma_descriptor *hw = desc->hw;
509
510 switch (hw->ctl_f.op) {
511 case IOAT_OP_PQ_VAL:
512 case IOAT_OP_PQ_VAL_16S:
513 {
514 struct ioat_pq_descriptor *pq = desc->pq;
515
516 /* check if there's error written */
517 if (!pq->dwbes_f.wbes)
518 return;
519
520 /* need to set a chanerr var for checking to clear later */
521
522 if (pq->dwbes_f.p_val_err)
523 *desc->result |= SUM_CHECK_P_RESULT;
524
525 if (pq->dwbes_f.q_val_err)
526 *desc->result |= SUM_CHECK_Q_RESULT;
527
528 return;
529 }
530 default:
531 return;
532 }
533}
534
Dan Williamsb094ad32009-09-08 17:42:57 -0700535/**
536 * __cleanup - reclaim used descriptors
537 * @ioat: channel (ring) to clean
538 *
539 * The difference from the dma_v2.c __cleanup() is that this routine
540 * handles extended descriptors and dma-unmapping raid operations.
541 */
Dan Williams27502932012-03-23 13:36:42 -0700542static void __cleanup(struct ioat2_dma_chan *ioat, dma_addr_t phys_complete)
Dan Williamsbf40a682009-09-08 17:42:55 -0700543{
544 struct ioat_chan_common *chan = &ioat->base;
Dave Jiang7727eaa2013-04-15 10:25:56 -0700545 struct ioatdma_device *device = chan->device;
Dan Williamsbf40a682009-09-08 17:42:55 -0700546 struct ioat_ring_ent *desc;
547 bool seen_current = false;
Dan Williams074cc472010-05-01 15:22:55 -0700548 int idx = ioat->tail, i;
Dan Williamsbf40a682009-09-08 17:42:55 -0700549 u16 active;
Dan Williamsbf40a682009-09-08 17:42:55 -0700550
551 dev_dbg(to_dev(chan), "%s: head: %#x tail: %#x issued: %#x\n",
552 __func__, ioat->head, ioat->tail, ioat->issued);
553
Dave Jiang3f09ede2013-03-26 15:43:09 -0700554 /*
555 * At restart of the channel, the completion address and the
556 * channel status will be 0 due to starting a new chain. Since
557 * it's new chain and the first descriptor "fails", there is
558 * nothing to clean up. We do not want to reap the entire submitted
559 * chain due to this 0 address value and then BUG.
560 */
561 if (!phys_complete)
562 return;
563
Dan Williamsbf40a682009-09-08 17:42:55 -0700564 active = ioat2_ring_active(ioat);
565 for (i = 0; i < active && !seen_current; i++) {
566 struct dma_async_tx_descriptor *tx;
567
Dan Williams074cc472010-05-01 15:22:55 -0700568 smp_read_barrier_depends();
569 prefetch(ioat2_get_ring_ent(ioat, idx + i + 1));
570 desc = ioat2_get_ring_ent(ioat, idx + i);
Dan Williamsbf40a682009-09-08 17:42:55 -0700571 dump_desc_dbg(ioat, desc);
Dave Jiang75c6f0a2013-04-10 16:44:39 -0700572
573 /* set err stat if we are using dwbes */
574 if (device->cap & IOAT_CAP_DWBES)
575 desc_get_errstat(ioat, desc);
576
Dan Williamsbf40a682009-09-08 17:42:55 -0700577 tx = &desc->txd;
578 if (tx->cookie) {
Russell King - ARM Linuxf7fbce02012-03-06 22:35:07 +0000579 dma_cookie_complete(tx);
Dan Williams074cc472010-05-01 15:22:55 -0700580 ioat3_dma_unmap(ioat, desc, idx + i);
Dan Williamsbf40a682009-09-08 17:42:55 -0700581 if (tx->callback) {
582 tx->callback(tx->callback_param);
583 tx->callback = NULL;
584 }
585 }
586
587 if (tx->phys == phys_complete)
588 seen_current = true;
Dan Williamsb094ad32009-09-08 17:42:57 -0700589
590 /* skip extended descriptors */
591 if (desc_has_ext(desc)) {
592 BUG_ON(i + 1 >= active);
593 i++;
594 }
Dave Jiang7727eaa2013-04-15 10:25:56 -0700595
596 /* cleanup super extended descriptors */
597 if (desc->sed) {
598 ioat3_free_sed(device, desc->sed);
599 desc->sed = NULL;
600 }
Dan Williamsbf40a682009-09-08 17:42:55 -0700601 }
Dan Williams074cc472010-05-01 15:22:55 -0700602 smp_mb(); /* finish all descriptor reads before incrementing tail */
603 ioat->tail = idx + i;
Dan Williamsaa75db02010-03-03 21:21:10 -0700604 BUG_ON(active && !seen_current); /* no active descs have written a completion? */
Dan Williamsbf40a682009-09-08 17:42:55 -0700605 chan->last_completion = phys_complete;
Dan Williamsb9cc9862010-03-03 21:21:13 -0700606
Dan Williams074cc472010-05-01 15:22:55 -0700607 if (active - i == 0) {
Dan Williamsbf40a682009-09-08 17:42:55 -0700608 dev_dbg(to_dev(chan), "%s: cancel completion timeout\n",
609 __func__);
610 clear_bit(IOAT_COMPLETION_PENDING, &chan->state);
611 mod_timer(&chan->timer, jiffies + IDLE_TIMEOUT);
612 }
Dan Williamsb9cc9862010-03-03 21:21:13 -0700613 /* 5 microsecond delay per pending descriptor */
Dan Williams074cc472010-05-01 15:22:55 -0700614 writew(min((5 * (active - i)), IOAT_INTRDELAY_MASK),
Dan Williamsb9cc9862010-03-03 21:21:13 -0700615 chan->device->reg_base + IOAT_INTRDELAY_OFFSET);
Dan Williamsbf40a682009-09-08 17:42:55 -0700616}
617
Dan Williams074cc472010-05-01 15:22:55 -0700618static void ioat3_cleanup(struct ioat2_dma_chan *ioat)
Dan Williamsbf40a682009-09-08 17:42:55 -0700619{
620 struct ioat_chan_common *chan = &ioat->base;
Dave Jiang3f09ede2013-03-26 15:43:09 -0700621 u64 phys_complete;
Dan Williamsbf40a682009-09-08 17:42:55 -0700622
Dan Williamsb9cc9862010-03-03 21:21:13 -0700623 spin_lock_bh(&chan->cleanup_lock);
Dave Jiang3f09ede2013-03-26 15:43:09 -0700624
625 if (ioat3_cleanup_preamble(chan, &phys_complete))
Dan Williams074cc472010-05-01 15:22:55 -0700626 __cleanup(ioat, phys_complete);
Dave Jiang3f09ede2013-03-26 15:43:09 -0700627
628 if (is_ioat_halted(*chan->completion)) {
629 u32 chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET);
630
631 if (chanerr & IOAT_CHANERR_HANDLE_MASK) {
632 mod_timer(&chan->timer, jiffies + IDLE_TIMEOUT);
633 ioat3_eh(ioat);
634 }
635 }
636
Dan Williamsb9cc9862010-03-03 21:21:13 -0700637 spin_unlock_bh(&chan->cleanup_lock);
638}
639
Dan Williamsaa4d72a2010-03-03 21:21:13 -0700640static void ioat3_cleanup_event(unsigned long data)
Dan Williamsbf40a682009-09-08 17:42:55 -0700641{
Dan Williamsaa4d72a2010-03-03 21:21:13 -0700642 struct ioat2_dma_chan *ioat = to_ioat2_chan((void *) data);
Dan Williamsbf40a682009-09-08 17:42:55 -0700643
Dan Williams074cc472010-05-01 15:22:55 -0700644 ioat3_cleanup(ioat);
Dan Williams773d9e22010-03-03 11:47:42 -0700645 writew(IOAT_CHANCTRL_RUN, ioat->base.reg_base + IOAT_CHANCTRL_OFFSET);
Dan Williamsbf40a682009-09-08 17:42:55 -0700646}
647
648static void ioat3_restart_channel(struct ioat2_dma_chan *ioat)
649{
650 struct ioat_chan_common *chan = &ioat->base;
Dave Jiang3f09ede2013-03-26 15:43:09 -0700651 u64 phys_complete;
Dan Williamsbf40a682009-09-08 17:42:55 -0700652
Dan Williamsb372ec22010-03-03 11:47:42 -0700653 ioat2_quiesce(chan, 0);
Dave Jiang3f09ede2013-03-26 15:43:09 -0700654 if (ioat3_cleanup_preamble(chan, &phys_complete))
Dan Williamsbf40a682009-09-08 17:42:55 -0700655 __cleanup(ioat, phys_complete);
656
657 __ioat2_restart_chan(ioat);
658}
659
Dave Jiang3f09ede2013-03-26 15:43:09 -0700660static void ioat3_eh(struct ioat2_dma_chan *ioat)
661{
662 struct ioat_chan_common *chan = &ioat->base;
663 struct pci_dev *pdev = to_pdev(chan);
664 struct ioat_dma_descriptor *hw;
665 u64 phys_complete;
666 struct ioat_ring_ent *desc;
667 u32 err_handled = 0;
668 u32 chanerr_int;
669 u32 chanerr;
670
671 /* cleanup so tail points to descriptor that caused the error */
672 if (ioat3_cleanup_preamble(chan, &phys_complete))
673 __cleanup(ioat, phys_complete);
674
675 chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET);
676 pci_read_config_dword(pdev, IOAT_PCI_CHANERR_INT_OFFSET, &chanerr_int);
677
678 dev_dbg(to_dev(chan), "%s: error = %x:%x\n",
679 __func__, chanerr, chanerr_int);
680
681 desc = ioat2_get_ring_ent(ioat, ioat->tail);
682 hw = desc->hw;
683 dump_desc_dbg(ioat, desc);
684
685 switch (hw->ctl_f.op) {
686 case IOAT_OP_XOR_VAL:
687 if (chanerr & IOAT_CHANERR_XOR_P_OR_CRC_ERR) {
688 *desc->result |= SUM_CHECK_P_RESULT;
689 err_handled |= IOAT_CHANERR_XOR_P_OR_CRC_ERR;
690 }
691 break;
692 case IOAT_OP_PQ_VAL:
Dave Jiang7727eaa2013-04-15 10:25:56 -0700693 case IOAT_OP_PQ_VAL_16S:
Dave Jiang3f09ede2013-03-26 15:43:09 -0700694 if (chanerr & IOAT_CHANERR_XOR_P_OR_CRC_ERR) {
695 *desc->result |= SUM_CHECK_P_RESULT;
696 err_handled |= IOAT_CHANERR_XOR_P_OR_CRC_ERR;
697 }
698 if (chanerr & IOAT_CHANERR_XOR_Q_ERR) {
699 *desc->result |= SUM_CHECK_Q_RESULT;
700 err_handled |= IOAT_CHANERR_XOR_Q_ERR;
701 }
702 break;
703 }
704
705 /* fault on unhandled error or spurious halt */
706 if (chanerr ^ err_handled || chanerr == 0) {
707 dev_err(to_dev(chan), "%s: fatal error (%x:%x)\n",
708 __func__, chanerr, err_handled);
709 BUG();
710 }
711
712 writel(chanerr, chan->reg_base + IOAT_CHANERR_OFFSET);
713 pci_write_config_dword(pdev, IOAT_PCI_CHANERR_INT_OFFSET, chanerr_int);
714
715 /* mark faulting descriptor as complete */
716 *chan->completion = desc->txd.phys;
717
718 spin_lock_bh(&ioat->prep_lock);
719 ioat3_restart_channel(ioat);
720 spin_unlock_bh(&ioat->prep_lock);
721}
722
Dave Jiang4dec23d2013-02-07 14:38:32 -0700723static void check_active(struct ioat2_dma_chan *ioat)
Dan Williamsbf40a682009-09-08 17:42:55 -0700724{
Dan Williamsbf40a682009-09-08 17:42:55 -0700725 struct ioat_chan_common *chan = &ioat->base;
726
Dave Jiang4dec23d2013-02-07 14:38:32 -0700727 if (ioat2_ring_active(ioat)) {
728 mod_timer(&chan->timer, jiffies + COMPLETION_TIMEOUT);
729 return;
730 }
Dan Williamsbf40a682009-09-08 17:42:55 -0700731
Dave Jiang4dec23d2013-02-07 14:38:32 -0700732 if (test_and_clear_bit(IOAT_CHAN_ACTIVE, &chan->state))
733 mod_timer(&chan->timer, jiffies + IDLE_TIMEOUT);
734 else if (ioat->alloc_order > ioat_get_alloc_order()) {
Dan Williamsbf40a682009-09-08 17:42:55 -0700735 /* if the ring is idle, empty, and oversized try to step
736 * down the size
737 */
Dave Jiang4dec23d2013-02-07 14:38:32 -0700738 reshape_ring(ioat, ioat->alloc_order - 1);
Dan Williamsbf40a682009-09-08 17:42:55 -0700739
740 /* keep shrinking until we get back to our minimum
741 * default size
742 */
743 if (ioat->alloc_order > ioat_get_alloc_order())
744 mod_timer(&chan->timer, jiffies + IDLE_TIMEOUT);
745 }
Dave Jiang4dec23d2013-02-07 14:38:32 -0700746
747}
748
Fengguang Wua20702b2013-02-13 09:40:03 +0800749static void ioat3_timer_event(unsigned long data)
Dave Jiang4dec23d2013-02-07 14:38:32 -0700750{
751 struct ioat2_dma_chan *ioat = to_ioat2_chan((void *) data);
752 struct ioat_chan_common *chan = &ioat->base;
753 dma_addr_t phys_complete;
754 u64 status;
755
756 status = ioat_chansts(chan);
757
758 /* when halted due to errors check for channel
759 * programming errors before advancing the completion state
760 */
761 if (is_ioat_halted(status)) {
762 u32 chanerr;
763
764 chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET);
765 dev_err(to_dev(chan), "%s: Channel halted (%x)\n",
766 __func__, chanerr);
767 if (test_bit(IOAT_RUN, &chan->state))
768 BUG_ON(is_ioat_bug(chanerr));
769 else /* we never got off the ground */
770 return;
771 }
772
773 /* if we haven't made progress and we have already
774 * acknowledged a pending completion once, then be more
775 * forceful with a restart
776 */
777 spin_lock_bh(&chan->cleanup_lock);
778 if (ioat_cleanup_preamble(chan, &phys_complete))
779 __cleanup(ioat, phys_complete);
780 else if (test_bit(IOAT_COMPLETION_ACK, &chan->state)) {
781 spin_lock_bh(&ioat->prep_lock);
782 ioat3_restart_channel(ioat);
783 spin_unlock_bh(&ioat->prep_lock);
784 spin_unlock_bh(&chan->cleanup_lock);
785 return;
786 } else {
787 set_bit(IOAT_COMPLETION_ACK, &chan->state);
788 mod_timer(&chan->timer, jiffies + COMPLETION_TIMEOUT);
789 }
790
791
792 if (ioat2_ring_active(ioat))
793 mod_timer(&chan->timer, jiffies + COMPLETION_TIMEOUT);
794 else {
795 spin_lock_bh(&ioat->prep_lock);
796 check_active(ioat);
797 spin_unlock_bh(&ioat->prep_lock);
798 }
799 spin_unlock_bh(&chan->cleanup_lock);
Dan Williamsbf40a682009-09-08 17:42:55 -0700800}
801
802static enum dma_status
Linus Walleij07934482010-03-26 16:50:49 -0700803ioat3_tx_status(struct dma_chan *c, dma_cookie_t cookie,
804 struct dma_tx_state *txstate)
Dan Williamsbf40a682009-09-08 17:42:55 -0700805{
806 struct ioat2_dma_chan *ioat = to_ioat2_chan(c);
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +0000807 enum dma_status ret;
Dan Williamsbf40a682009-09-08 17:42:55 -0700808
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +0000809 ret = dma_cookie_status(c, cookie, txstate);
810 if (ret == DMA_SUCCESS)
811 return ret;
Dan Williamsbf40a682009-09-08 17:42:55 -0700812
Dan Williams074cc472010-05-01 15:22:55 -0700813 ioat3_cleanup(ioat);
Dan Williamsbf40a682009-09-08 17:42:55 -0700814
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +0000815 return dma_cookie_status(c, cookie, txstate);
Dan Williamsbf40a682009-09-08 17:42:55 -0700816}
817
818static struct dma_async_tx_descriptor *
Dan Williamsb094ad32009-09-08 17:42:57 -0700819__ioat3_prep_xor_lock(struct dma_chan *c, enum sum_check_flags *result,
820 dma_addr_t dest, dma_addr_t *src, unsigned int src_cnt,
821 size_t len, unsigned long flags)
822{
823 struct ioat2_dma_chan *ioat = to_ioat2_chan(c);
824 struct ioat_ring_ent *compl_desc;
825 struct ioat_ring_ent *desc;
826 struct ioat_ring_ent *ext;
827 size_t total_len = len;
828 struct ioat_xor_descriptor *xor;
829 struct ioat_xor_ext_descriptor *xor_ex = NULL;
830 struct ioat_dma_descriptor *hw;
Dan Williams074cc472010-05-01 15:22:55 -0700831 int num_descs, with_ext, idx, i;
Dan Williamsb094ad32009-09-08 17:42:57 -0700832 u32 offset = 0;
Dan Williamsb094ad32009-09-08 17:42:57 -0700833 u8 op = result ? IOAT_OP_XOR_VAL : IOAT_OP_XOR;
834
835 BUG_ON(src_cnt < 2);
836
837 num_descs = ioat2_xferlen_to_descs(ioat, len);
838 /* we need 2x the number of descriptors to cover greater than 5
839 * sources
840 */
841 if (src_cnt > 5) {
842 with_ext = 1;
843 num_descs *= 2;
844 } else
845 with_ext = 0;
846
847 /* completion writes from the raid engine may pass completion
848 * writes from the legacy engine, so we need one extra null
849 * (legacy) descriptor to ensure all completion writes arrive in
850 * order.
851 */
Dan Williams074cc472010-05-01 15:22:55 -0700852 if (likely(num_descs) && ioat2_check_space_lock(ioat, num_descs+1) == 0)
853 idx = ioat->head;
Dan Williamsb094ad32009-09-08 17:42:57 -0700854 else
855 return NULL;
Dan Williamscdef57d2009-09-21 09:22:29 -0700856 i = 0;
857 do {
Dan Williamsb094ad32009-09-08 17:42:57 -0700858 struct ioat_raw_descriptor *descs[2];
859 size_t xfer_size = min_t(size_t, len, 1 << ioat->xfercap_log);
860 int s;
861
862 desc = ioat2_get_ring_ent(ioat, idx + i);
863 xor = desc->xor;
864
865 /* save a branch by unconditionally retrieving the
866 * extended descriptor xor_set_src() knows to not write
867 * to it in the single descriptor case
868 */
869 ext = ioat2_get_ring_ent(ioat, idx + i + 1);
870 xor_ex = ext->xor_ex;
871
872 descs[0] = (struct ioat_raw_descriptor *) xor;
873 descs[1] = (struct ioat_raw_descriptor *) xor_ex;
874 for (s = 0; s < src_cnt; s++)
875 xor_set_src(descs, src[s], offset, s);
876 xor->size = xfer_size;
877 xor->dst_addr = dest + offset;
878 xor->ctl = 0;
879 xor->ctl_f.op = op;
880 xor->ctl_f.src_cnt = src_cnt_to_hw(src_cnt);
881
882 len -= xfer_size;
883 offset += xfer_size;
884 dump_desc_dbg(ioat, desc);
Dan Williamscdef57d2009-09-21 09:22:29 -0700885 } while ((i += 1 + with_ext) < num_descs);
Dan Williamsb094ad32009-09-08 17:42:57 -0700886
887 /* last xor descriptor carries the unmap parameters and fence bit */
888 desc->txd.flags = flags;
889 desc->len = total_len;
890 if (result)
891 desc->result = result;
892 xor->ctl_f.fence = !!(flags & DMA_PREP_FENCE);
893
894 /* completion descriptor carries interrupt bit */
895 compl_desc = ioat2_get_ring_ent(ioat, idx + i);
896 compl_desc->txd.flags = flags & DMA_PREP_INTERRUPT;
897 hw = compl_desc->hw;
898 hw->ctl = 0;
899 hw->ctl_f.null = 1;
900 hw->ctl_f.int_en = !!(flags & DMA_PREP_INTERRUPT);
901 hw->ctl_f.compl_write = 1;
902 hw->size = NULL_DESC_BUFFER_SIZE;
903 dump_desc_dbg(ioat, compl_desc);
904
905 /* we leave the channel locked to ensure in order submission */
Dan Williams49954c12009-11-19 17:11:03 -0700906 return &compl_desc->txd;
Dan Williamsb094ad32009-09-08 17:42:57 -0700907}
908
909static struct dma_async_tx_descriptor *
910ioat3_prep_xor(struct dma_chan *chan, dma_addr_t dest, dma_addr_t *src,
911 unsigned int src_cnt, size_t len, unsigned long flags)
912{
913 return __ioat3_prep_xor_lock(chan, NULL, dest, src, src_cnt, len, flags);
914}
915
916struct dma_async_tx_descriptor *
917ioat3_prep_xor_val(struct dma_chan *chan, dma_addr_t *src,
918 unsigned int src_cnt, size_t len,
919 enum sum_check_flags *result, unsigned long flags)
920{
921 /* the cleanup routine only sets bits on validate failure, it
922 * does not clear bits on validate success... so clear it here
923 */
924 *result = 0;
925
926 return __ioat3_prep_xor_lock(chan, result, src[0], &src[1],
927 src_cnt - 1, len, flags);
928}
929
Dan Williamsd69d235b2009-09-08 17:42:59 -0700930static void
931dump_pq_desc_dbg(struct ioat2_dma_chan *ioat, struct ioat_ring_ent *desc, struct ioat_ring_ent *ext)
932{
933 struct device *dev = to_dev(&ioat->base);
934 struct ioat_pq_descriptor *pq = desc->pq;
935 struct ioat_pq_ext_descriptor *pq_ex = ext ? ext->pq_ex : NULL;
936 struct ioat_raw_descriptor *descs[] = { (void *) pq, (void *) pq_ex };
937 int src_cnt = src_cnt_to_sw(pq->ctl_f.src_cnt);
938 int i;
939
940 dev_dbg(dev, "desc[%d]: (%#llx->%#llx) flags: %#x"
Dave Jiang7727eaa2013-04-15 10:25:56 -0700941 " sz: %#10.8x ctl: %#x (op: %#x int: %d compl: %d pq: '%s%s'"
942 " src_cnt: %d)\n",
Dan Williamsd69d235b2009-09-08 17:42:59 -0700943 desc_id(desc), (unsigned long long) desc->txd.phys,
944 (unsigned long long) (pq_ex ? pq_ex->next : pq->next),
945 desc->txd.flags, pq->size, pq->ctl, pq->ctl_f.op, pq->ctl_f.int_en,
946 pq->ctl_f.compl_write,
947 pq->ctl_f.p_disable ? "" : "p", pq->ctl_f.q_disable ? "" : "q",
948 pq->ctl_f.src_cnt);
949 for (i = 0; i < src_cnt; i++)
950 dev_dbg(dev, "\tsrc[%d]: %#llx coef: %#x\n", i,
951 (unsigned long long) pq_get_src(descs, i), pq->coef[i]);
952 dev_dbg(dev, "\tP: %#llx\n", pq->p_addr);
953 dev_dbg(dev, "\tQ: %#llx\n", pq->q_addr);
Dave Jiang50f9f972013-03-04 10:59:54 -0700954 dev_dbg(dev, "\tNEXT: %#llx\n", pq->next);
Dan Williamsd69d235b2009-09-08 17:42:59 -0700955}
956
Dave Jiang7727eaa2013-04-15 10:25:56 -0700957static void dump_pq16_desc_dbg(struct ioat2_dma_chan *ioat,
958 struct ioat_ring_ent *desc)
959{
960 struct device *dev = to_dev(&ioat->base);
961 struct ioat_pq_descriptor *pq = desc->pq;
962 struct ioat_raw_descriptor *descs[] = { (void *)pq,
963 (void *)pq,
964 (void *)pq };
965 int src_cnt = src16_cnt_to_sw(pq->ctl_f.src_cnt);
966 int i;
967
968 if (desc->sed) {
969 descs[1] = (void *)desc->sed->hw;
970 descs[2] = (void *)desc->sed->hw + 64;
971 }
972
973 dev_dbg(dev, "desc[%d]: (%#llx->%#llx) flags: %#x"
974 " sz: %#x ctl: %#x (op: %#x int: %d compl: %d pq: '%s%s'"
975 " src_cnt: %d)\n",
976 desc_id(desc), (unsigned long long) desc->txd.phys,
977 (unsigned long long) pq->next,
978 desc->txd.flags, pq->size, pq->ctl,
979 pq->ctl_f.op, pq->ctl_f.int_en,
980 pq->ctl_f.compl_write,
981 pq->ctl_f.p_disable ? "" : "p", pq->ctl_f.q_disable ? "" : "q",
982 pq->ctl_f.src_cnt);
983 for (i = 0; i < src_cnt; i++) {
984 dev_dbg(dev, "\tsrc[%d]: %#llx coef: %#x\n", i,
985 (unsigned long long) pq16_get_src(descs, i),
986 pq->coef[i]);
987 }
988 dev_dbg(dev, "\tP: %#llx\n", pq->p_addr);
989 dev_dbg(dev, "\tQ: %#llx\n", pq->q_addr);
990}
991
Dan Williamsd69d235b2009-09-08 17:42:59 -0700992static struct dma_async_tx_descriptor *
993__ioat3_prep_pq_lock(struct dma_chan *c, enum sum_check_flags *result,
994 const dma_addr_t *dst, const dma_addr_t *src,
995 unsigned int src_cnt, const unsigned char *scf,
996 size_t len, unsigned long flags)
997{
998 struct ioat2_dma_chan *ioat = to_ioat2_chan(c);
999 struct ioat_chan_common *chan = &ioat->base;
Dave Jiange0884772013-04-10 16:44:20 -07001000 struct ioatdma_device *device = chan->device;
Dan Williamsd69d235b2009-09-08 17:42:59 -07001001 struct ioat_ring_ent *compl_desc;
1002 struct ioat_ring_ent *desc;
1003 struct ioat_ring_ent *ext;
1004 size_t total_len = len;
1005 struct ioat_pq_descriptor *pq;
1006 struct ioat_pq_ext_descriptor *pq_ex = NULL;
1007 struct ioat_dma_descriptor *hw;
1008 u32 offset = 0;
Dan Williamsd69d235b2009-09-08 17:42:59 -07001009 u8 op = result ? IOAT_OP_PQ_VAL : IOAT_OP_PQ;
Dan Williams074cc472010-05-01 15:22:55 -07001010 int i, s, idx, with_ext, num_descs;
Dave Jiange0884772013-04-10 16:44:20 -07001011 int cb32 = (device->version < IOAT_VER_3_3) ? 1 : 0;
Dan Williamsd69d235b2009-09-08 17:42:59 -07001012
1013 dev_dbg(to_dev(chan), "%s\n", __func__);
1014 /* the engine requires at least two sources (we provide
1015 * at least 1 implied source in the DMA_PREP_CONTINUE case)
1016 */
1017 BUG_ON(src_cnt + dmaf_continue(flags) < 2);
1018
1019 num_descs = ioat2_xferlen_to_descs(ioat, len);
1020 /* we need 2x the number of descriptors to cover greater than 3
Dan Williamscd788092009-12-17 13:52:39 -07001021 * sources (we need 1 extra source in the q-only continuation
1022 * case and 3 extra sources in the p+q continuation case.
Dan Williamsd69d235b2009-09-08 17:42:59 -07001023 */
Dan Williamscd788092009-12-17 13:52:39 -07001024 if (src_cnt + dmaf_p_disabled_continue(flags) > 3 ||
1025 (dmaf_continue(flags) && !dmaf_p_disabled_continue(flags))) {
Dan Williamsd69d235b2009-09-08 17:42:59 -07001026 with_ext = 1;
1027 num_descs *= 2;
1028 } else
1029 with_ext = 0;
1030
1031 /* completion writes from the raid engine may pass completion
1032 * writes from the legacy engine, so we need one extra null
1033 * (legacy) descriptor to ensure all completion writes arrive in
1034 * order.
1035 */
1036 if (likely(num_descs) &&
Dave Jiange0884772013-04-10 16:44:20 -07001037 ioat2_check_space_lock(ioat, num_descs + cb32) == 0)
Dan Williams074cc472010-05-01 15:22:55 -07001038 idx = ioat->head;
Dan Williamsd69d235b2009-09-08 17:42:59 -07001039 else
1040 return NULL;
Dan Williamscdef57d2009-09-21 09:22:29 -07001041 i = 0;
1042 do {
Dan Williamsd69d235b2009-09-08 17:42:59 -07001043 struct ioat_raw_descriptor *descs[2];
1044 size_t xfer_size = min_t(size_t, len, 1 << ioat->xfercap_log);
1045
1046 desc = ioat2_get_ring_ent(ioat, idx + i);
1047 pq = desc->pq;
1048
1049 /* save a branch by unconditionally retrieving the
1050 * extended descriptor pq_set_src() knows to not write
1051 * to it in the single descriptor case
1052 */
1053 ext = ioat2_get_ring_ent(ioat, idx + i + with_ext);
1054 pq_ex = ext->pq_ex;
1055
1056 descs[0] = (struct ioat_raw_descriptor *) pq;
1057 descs[1] = (struct ioat_raw_descriptor *) pq_ex;
1058
1059 for (s = 0; s < src_cnt; s++)
1060 pq_set_src(descs, src[s], offset, scf[s], s);
1061
1062 /* see the comment for dma_maxpq in include/linux/dmaengine.h */
1063 if (dmaf_p_disabled_continue(flags))
1064 pq_set_src(descs, dst[1], offset, 1, s++);
1065 else if (dmaf_continue(flags)) {
1066 pq_set_src(descs, dst[0], offset, 0, s++);
1067 pq_set_src(descs, dst[1], offset, 1, s++);
1068 pq_set_src(descs, dst[1], offset, 0, s++);
1069 }
1070 pq->size = xfer_size;
1071 pq->p_addr = dst[0] + offset;
1072 pq->q_addr = dst[1] + offset;
1073 pq->ctl = 0;
1074 pq->ctl_f.op = op;
Dave Jiang75c6f0a2013-04-10 16:44:39 -07001075 /* we turn on descriptor write back error status */
1076 if (device->cap & IOAT_CAP_DWBES)
1077 pq->ctl_f.wb_en = result ? 1 : 0;
Dan Williamsd69d235b2009-09-08 17:42:59 -07001078 pq->ctl_f.src_cnt = src_cnt_to_hw(s);
1079 pq->ctl_f.p_disable = !!(flags & DMA_PREP_PQ_DISABLE_P);
1080 pq->ctl_f.q_disable = !!(flags & DMA_PREP_PQ_DISABLE_Q);
1081
1082 len -= xfer_size;
1083 offset += xfer_size;
Dan Williamscdef57d2009-09-21 09:22:29 -07001084 } while ((i += 1 + with_ext) < num_descs);
Dan Williamsd69d235b2009-09-08 17:42:59 -07001085
1086 /* last pq descriptor carries the unmap parameters and fence bit */
1087 desc->txd.flags = flags;
1088 desc->len = total_len;
1089 if (result)
1090 desc->result = result;
1091 pq->ctl_f.fence = !!(flags & DMA_PREP_FENCE);
1092 dump_pq_desc_dbg(ioat, desc, ext);
1093
Dave Jiange0884772013-04-10 16:44:20 -07001094 if (!cb32) {
1095 pq->ctl_f.int_en = !!(flags & DMA_PREP_INTERRUPT);
1096 pq->ctl_f.compl_write = 1;
1097 compl_desc = desc;
1098 } else {
1099 /* completion descriptor carries interrupt bit */
1100 compl_desc = ioat2_get_ring_ent(ioat, idx + i);
1101 compl_desc->txd.flags = flags & DMA_PREP_INTERRUPT;
1102 hw = compl_desc->hw;
1103 hw->ctl = 0;
1104 hw->ctl_f.null = 1;
1105 hw->ctl_f.int_en = !!(flags & DMA_PREP_INTERRUPT);
1106 hw->ctl_f.compl_write = 1;
1107 hw->size = NULL_DESC_BUFFER_SIZE;
1108 dump_desc_dbg(ioat, compl_desc);
1109 }
1110
Dan Williamsd69d235b2009-09-08 17:42:59 -07001111
1112 /* we leave the channel locked to ensure in order submission */
Dan Williams49954c12009-11-19 17:11:03 -07001113 return &compl_desc->txd;
Dan Williamsd69d235b2009-09-08 17:42:59 -07001114}
1115
1116static struct dma_async_tx_descriptor *
Dave Jiang7727eaa2013-04-15 10:25:56 -07001117__ioat3_prep_pq16_lock(struct dma_chan *c, enum sum_check_flags *result,
1118 const dma_addr_t *dst, const dma_addr_t *src,
1119 unsigned int src_cnt, const unsigned char *scf,
1120 size_t len, unsigned long flags)
1121{
1122 struct ioat2_dma_chan *ioat = to_ioat2_chan(c);
1123 struct ioat_chan_common *chan = &ioat->base;
1124 struct ioatdma_device *device = chan->device;
1125 struct ioat_ring_ent *desc;
1126 size_t total_len = len;
1127 struct ioat_pq_descriptor *pq;
1128 u32 offset = 0;
1129 u8 op;
1130 int i, s, idx, num_descs;
1131
1132 /* this function only handles src_cnt 9 - 16 */
1133 BUG_ON(src_cnt < 9);
1134
1135 /* this function is only called with 9-16 sources */
1136 op = result ? IOAT_OP_PQ_VAL_16S : IOAT_OP_PQ_16S;
1137
1138 dev_dbg(to_dev(chan), "%s\n", __func__);
1139
1140 num_descs = ioat2_xferlen_to_descs(ioat, len);
1141
1142 /*
1143 * 16 source pq is only available on cb3.3 and has no completion
1144 * write hw bug.
1145 */
1146 if (num_descs && ioat2_check_space_lock(ioat, num_descs) == 0)
1147 idx = ioat->head;
1148 else
1149 return NULL;
1150
1151 i = 0;
1152
1153 do {
1154 struct ioat_raw_descriptor *descs[4];
1155 size_t xfer_size = min_t(size_t, len, 1 << ioat->xfercap_log);
1156
1157 desc = ioat2_get_ring_ent(ioat, idx + i);
1158 pq = desc->pq;
1159
1160 descs[0] = (struct ioat_raw_descriptor *) pq;
1161
1162 desc->sed = ioat3_alloc_sed(device,
1163 sed_get_pq16_pool_idx(src_cnt));
1164 if (!desc->sed) {
1165 dev_err(to_dev(chan),
1166 "%s: no free sed entries\n", __func__);
1167 return NULL;
1168 }
1169
1170 pq->sed_addr = desc->sed->dma;
1171 desc->sed->parent = desc;
1172
1173 descs[1] = (struct ioat_raw_descriptor *)desc->sed->hw;
1174 descs[2] = (void *)descs[1] + 64;
1175
1176 for (s = 0; s < src_cnt; s++)
1177 pq16_set_src(descs, src[s], offset, scf[s], s);
1178
1179 /* see the comment for dma_maxpq in include/linux/dmaengine.h */
1180 if (dmaf_p_disabled_continue(flags))
1181 pq16_set_src(descs, dst[1], offset, 1, s++);
1182 else if (dmaf_continue(flags)) {
1183 pq16_set_src(descs, dst[0], offset, 0, s++);
1184 pq16_set_src(descs, dst[1], offset, 1, s++);
1185 pq16_set_src(descs, dst[1], offset, 0, s++);
1186 }
1187
1188 pq->size = xfer_size;
1189 pq->p_addr = dst[0] + offset;
1190 pq->q_addr = dst[1] + offset;
1191 pq->ctl = 0;
1192 pq->ctl_f.op = op;
1193 pq->ctl_f.src_cnt = src16_cnt_to_hw(s);
Dave Jiang75c6f0a2013-04-10 16:44:39 -07001194 /* we turn on descriptor write back error status */
1195 if (device->cap & IOAT_CAP_DWBES)
1196 pq->ctl_f.wb_en = result ? 1 : 0;
Dave Jiang7727eaa2013-04-15 10:25:56 -07001197 pq->ctl_f.p_disable = !!(flags & DMA_PREP_PQ_DISABLE_P);
1198 pq->ctl_f.q_disable = !!(flags & DMA_PREP_PQ_DISABLE_Q);
1199
1200 len -= xfer_size;
1201 offset += xfer_size;
1202 } while (++i < num_descs);
1203
1204 /* last pq descriptor carries the unmap parameters and fence bit */
1205 desc->txd.flags = flags;
1206 desc->len = total_len;
1207 if (result)
1208 desc->result = result;
1209 pq->ctl_f.fence = !!(flags & DMA_PREP_FENCE);
1210
1211 /* with cb3.3 we should be able to do completion w/o a null desc */
1212 pq->ctl_f.int_en = !!(flags & DMA_PREP_INTERRUPT);
1213 pq->ctl_f.compl_write = 1;
1214
1215 dump_pq16_desc_dbg(ioat, desc);
1216
1217 /* we leave the channel locked to ensure in order submission */
1218 return &desc->txd;
1219}
1220
1221static struct dma_async_tx_descriptor *
Dan Williamsd69d235b2009-09-08 17:42:59 -07001222ioat3_prep_pq(struct dma_chan *chan, dma_addr_t *dst, dma_addr_t *src,
1223 unsigned int src_cnt, const unsigned char *scf, size_t len,
1224 unsigned long flags)
1225{
Dave Jiang7727eaa2013-04-15 10:25:56 -07001226 struct dma_device *dma = chan->device;
1227
Dan Williamsde581b62009-11-19 17:08:45 -07001228 /* specify valid address for disabled result */
1229 if (flags & DMA_PREP_PQ_DISABLE_P)
1230 dst[0] = dst[1];
1231 if (flags & DMA_PREP_PQ_DISABLE_Q)
1232 dst[1] = dst[0];
1233
Dan Williamsd69d235b2009-09-08 17:42:59 -07001234 /* handle the single source multiply case from the raid6
1235 * recovery path
1236 */
Dan Williamsde581b62009-11-19 17:08:45 -07001237 if ((flags & DMA_PREP_PQ_DISABLE_P) && src_cnt == 1) {
Dan Williamsd69d235b2009-09-08 17:42:59 -07001238 dma_addr_t single_source[2];
1239 unsigned char single_source_coef[2];
1240
1241 BUG_ON(flags & DMA_PREP_PQ_DISABLE_Q);
1242 single_source[0] = src[0];
1243 single_source[1] = src[0];
1244 single_source_coef[0] = scf[0];
1245 single_source_coef[1] = 0;
1246
Dave Jiang7727eaa2013-04-15 10:25:56 -07001247 return (src_cnt > 8) && (dma->max_pq > 8) ?
1248 __ioat3_prep_pq16_lock(chan, NULL, dst, single_source,
1249 2, single_source_coef, len,
1250 flags) :
1251 __ioat3_prep_pq_lock(chan, NULL, dst, single_source, 2,
1252 single_source_coef, len, flags);
1253
1254 } else {
1255 return (src_cnt > 8) && (dma->max_pq > 8) ?
1256 __ioat3_prep_pq16_lock(chan, NULL, dst, src, src_cnt,
1257 scf, len, flags) :
1258 __ioat3_prep_pq_lock(chan, NULL, dst, src, src_cnt,
1259 scf, len, flags);
1260 }
Dan Williamsd69d235b2009-09-08 17:42:59 -07001261}
1262
1263struct dma_async_tx_descriptor *
1264ioat3_prep_pq_val(struct dma_chan *chan, dma_addr_t *pq, dma_addr_t *src,
1265 unsigned int src_cnt, const unsigned char *scf, size_t len,
1266 enum sum_check_flags *pqres, unsigned long flags)
1267{
Dave Jiang7727eaa2013-04-15 10:25:56 -07001268 struct dma_device *dma = chan->device;
1269
Dan Williamsde581b62009-11-19 17:08:45 -07001270 /* specify valid address for disabled result */
1271 if (flags & DMA_PREP_PQ_DISABLE_P)
1272 pq[0] = pq[1];
1273 if (flags & DMA_PREP_PQ_DISABLE_Q)
1274 pq[1] = pq[0];
1275
Dan Williamsd69d235b2009-09-08 17:42:59 -07001276 /* the cleanup routine only sets bits on validate failure, it
1277 * does not clear bits on validate success... so clear it here
1278 */
1279 *pqres = 0;
1280
Dave Jiang7727eaa2013-04-15 10:25:56 -07001281 return (src_cnt > 8) && (dma->max_pq > 8) ?
1282 __ioat3_prep_pq16_lock(chan, pqres, pq, src, src_cnt, scf, len,
1283 flags) :
1284 __ioat3_prep_pq_lock(chan, pqres, pq, src, src_cnt, scf, len,
1285 flags);
Dan Williamsd69d235b2009-09-08 17:42:59 -07001286}
1287
Dan Williamsae786622009-09-08 17:43:00 -07001288static struct dma_async_tx_descriptor *
1289ioat3_prep_pqxor(struct dma_chan *chan, dma_addr_t dst, dma_addr_t *src,
1290 unsigned int src_cnt, size_t len, unsigned long flags)
1291{
Dave Jiang7727eaa2013-04-15 10:25:56 -07001292 struct dma_device *dma = chan->device;
Dan Williamsae786622009-09-08 17:43:00 -07001293 unsigned char scf[src_cnt];
1294 dma_addr_t pq[2];
1295
1296 memset(scf, 0, src_cnt);
Dan Williamsae786622009-09-08 17:43:00 -07001297 pq[0] = dst;
Dan Williamsde581b62009-11-19 17:08:45 -07001298 flags |= DMA_PREP_PQ_DISABLE_Q;
1299 pq[1] = dst; /* specify valid address for disabled result */
Dan Williamsae786622009-09-08 17:43:00 -07001300
Dave Jiang7727eaa2013-04-15 10:25:56 -07001301 return (src_cnt > 8) && (dma->max_pq > 8) ?
1302 __ioat3_prep_pq16_lock(chan, NULL, pq, src, src_cnt, scf, len,
1303 flags) :
1304 __ioat3_prep_pq_lock(chan, NULL, pq, src, src_cnt, scf, len,
1305 flags);
Dan Williamsae786622009-09-08 17:43:00 -07001306}
1307
1308struct dma_async_tx_descriptor *
1309ioat3_prep_pqxor_val(struct dma_chan *chan, dma_addr_t *src,
1310 unsigned int src_cnt, size_t len,
1311 enum sum_check_flags *result, unsigned long flags)
1312{
Dave Jiang7727eaa2013-04-15 10:25:56 -07001313 struct dma_device *dma = chan->device;
Dan Williamsae786622009-09-08 17:43:00 -07001314 unsigned char scf[src_cnt];
1315 dma_addr_t pq[2];
1316
1317 /* the cleanup routine only sets bits on validate failure, it
1318 * does not clear bits on validate success... so clear it here
1319 */
1320 *result = 0;
1321
1322 memset(scf, 0, src_cnt);
Dan Williamsae786622009-09-08 17:43:00 -07001323 pq[0] = src[0];
Dan Williamsde581b62009-11-19 17:08:45 -07001324 flags |= DMA_PREP_PQ_DISABLE_Q;
1325 pq[1] = pq[0]; /* specify valid address for disabled result */
Dan Williamsae786622009-09-08 17:43:00 -07001326
Dave Jiang7727eaa2013-04-15 10:25:56 -07001327
1328 return (src_cnt > 8) && (dma->max_pq > 8) ?
1329 __ioat3_prep_pq16_lock(chan, result, pq, &src[1], src_cnt - 1,
1330 scf, len, flags) :
1331 __ioat3_prep_pq_lock(chan, result, pq, &src[1], src_cnt - 1,
1332 scf, len, flags);
Dan Williamsae786622009-09-08 17:43:00 -07001333}
1334
Dan Williams58c86492009-09-08 17:43:00 -07001335static struct dma_async_tx_descriptor *
1336ioat3_prep_interrupt_lock(struct dma_chan *c, unsigned long flags)
1337{
1338 struct ioat2_dma_chan *ioat = to_ioat2_chan(c);
1339 struct ioat_ring_ent *desc;
1340 struct ioat_dma_descriptor *hw;
Dan Williams58c86492009-09-08 17:43:00 -07001341
Dan Williams074cc472010-05-01 15:22:55 -07001342 if (ioat2_check_space_lock(ioat, 1) == 0)
1343 desc = ioat2_get_ring_ent(ioat, ioat->head);
Dan Williams58c86492009-09-08 17:43:00 -07001344 else
1345 return NULL;
1346
1347 hw = desc->hw;
1348 hw->ctl = 0;
1349 hw->ctl_f.null = 1;
1350 hw->ctl_f.int_en = 1;
1351 hw->ctl_f.fence = !!(flags & DMA_PREP_FENCE);
1352 hw->ctl_f.compl_write = 1;
1353 hw->size = NULL_DESC_BUFFER_SIZE;
1354 hw->src_addr = 0;
1355 hw->dst_addr = 0;
1356
1357 desc->txd.flags = flags;
1358 desc->len = 1;
1359
1360 dump_desc_dbg(ioat, desc);
1361
1362 /* we leave the channel locked to ensure in order submission */
1363 return &desc->txd;
1364}
1365
Greg Kroah-Hartman4bf27b82012-12-21 15:09:59 -08001366static void ioat3_dma_test_callback(void *dma_async_param)
Dan Williams9de6fc72009-09-08 17:42:58 -07001367{
1368 struct completion *cmp = dma_async_param;
1369
1370 complete(cmp);
1371}
1372
1373#define IOAT_NUM_SRC_TEST 6 /* must be <= 8 */
Greg Kroah-Hartman4bf27b82012-12-21 15:09:59 -08001374static int ioat_xor_val_self_test(struct ioatdma_device *device)
Dan Williams9de6fc72009-09-08 17:42:58 -07001375{
1376 int i, src_idx;
1377 struct page *dest;
1378 struct page *xor_srcs[IOAT_NUM_SRC_TEST];
1379 struct page *xor_val_srcs[IOAT_NUM_SRC_TEST + 1];
1380 dma_addr_t dma_srcs[IOAT_NUM_SRC_TEST + 1];
Bartlomiej Zolnierkiewicz48a9db42013-07-03 15:05:06 -07001381 dma_addr_t dest_dma;
Dan Williams9de6fc72009-09-08 17:42:58 -07001382 struct dma_async_tx_descriptor *tx;
1383 struct dma_chan *dma_chan;
1384 dma_cookie_t cookie;
1385 u8 cmp_byte = 0;
1386 u32 cmp_word;
1387 u32 xor_val_result;
1388 int err = 0;
1389 struct completion cmp;
1390 unsigned long tmo;
1391 struct device *dev = &device->pdev->dev;
1392 struct dma_device *dma = &device->common;
Bartlomiej Zolnierkiewicz7369f562012-11-05 10:00:19 +00001393 u8 op = 0;
Dan Williams9de6fc72009-09-08 17:42:58 -07001394
1395 dev_dbg(dev, "%s\n", __func__);
1396
1397 if (!dma_has_cap(DMA_XOR, dma->cap_mask))
1398 return 0;
1399
1400 for (src_idx = 0; src_idx < IOAT_NUM_SRC_TEST; src_idx++) {
1401 xor_srcs[src_idx] = alloc_page(GFP_KERNEL);
1402 if (!xor_srcs[src_idx]) {
1403 while (src_idx--)
1404 __free_page(xor_srcs[src_idx]);
1405 return -ENOMEM;
1406 }
1407 }
1408
1409 dest = alloc_page(GFP_KERNEL);
1410 if (!dest) {
1411 while (src_idx--)
1412 __free_page(xor_srcs[src_idx]);
1413 return -ENOMEM;
1414 }
1415
1416 /* Fill in src buffers */
1417 for (src_idx = 0; src_idx < IOAT_NUM_SRC_TEST; src_idx++) {
1418 u8 *ptr = page_address(xor_srcs[src_idx]);
1419 for (i = 0; i < PAGE_SIZE; i++)
1420 ptr[i] = (1 << src_idx);
1421 }
1422
1423 for (src_idx = 0; src_idx < IOAT_NUM_SRC_TEST; src_idx++)
1424 cmp_byte ^= (u8) (1 << src_idx);
1425
1426 cmp_word = (cmp_byte << 24) | (cmp_byte << 16) |
1427 (cmp_byte << 8) | cmp_byte;
1428
1429 memset(page_address(dest), 0, PAGE_SIZE);
1430
1431 dma_chan = container_of(dma->channels.next, struct dma_chan,
1432 device_node);
1433 if (dma->device_alloc_chan_resources(dma_chan) < 1) {
1434 err = -ENODEV;
1435 goto out;
1436 }
1437
1438 /* test xor */
Bartlomiej Zolnierkiewicz7369f562012-11-05 10:00:19 +00001439 op = IOAT_OP_XOR;
1440
Dan Williams9de6fc72009-09-08 17:42:58 -07001441 dest_dma = dma_map_page(dev, dest, 0, PAGE_SIZE, DMA_FROM_DEVICE);
1442 for (i = 0; i < IOAT_NUM_SRC_TEST; i++)
1443 dma_srcs[i] = dma_map_page(dev, xor_srcs[i], 0, PAGE_SIZE,
1444 DMA_TO_DEVICE);
1445 tx = dma->device_prep_dma_xor(dma_chan, dest_dma, dma_srcs,
1446 IOAT_NUM_SRC_TEST, PAGE_SIZE,
Bartlomiej Zolnierkiewicz7369f562012-11-05 10:00:19 +00001447 DMA_PREP_INTERRUPT |
1448 DMA_COMPL_SKIP_SRC_UNMAP |
1449 DMA_COMPL_SKIP_DEST_UNMAP);
Dan Williams9de6fc72009-09-08 17:42:58 -07001450
1451 if (!tx) {
1452 dev_err(dev, "Self-test xor prep failed\n");
1453 err = -ENODEV;
Bartlomiej Zolnierkiewicz7369f562012-11-05 10:00:19 +00001454 goto dma_unmap;
Dan Williams9de6fc72009-09-08 17:42:58 -07001455 }
1456
1457 async_tx_ack(tx);
1458 init_completion(&cmp);
1459 tx->callback = ioat3_dma_test_callback;
1460 tx->callback_param = &cmp;
1461 cookie = tx->tx_submit(tx);
1462 if (cookie < 0) {
1463 dev_err(dev, "Self-test xor setup failed\n");
1464 err = -ENODEV;
Bartlomiej Zolnierkiewicz7369f562012-11-05 10:00:19 +00001465 goto dma_unmap;
Dan Williams9de6fc72009-09-08 17:42:58 -07001466 }
1467 dma->device_issue_pending(dma_chan);
1468
1469 tmo = wait_for_completion_timeout(&cmp, msecs_to_jiffies(3000));
1470
Linus Walleij07934482010-03-26 16:50:49 -07001471 if (dma->device_tx_status(dma_chan, cookie, NULL) != DMA_SUCCESS) {
Dan Williams9de6fc72009-09-08 17:42:58 -07001472 dev_err(dev, "Self-test xor timed out\n");
1473 err = -ENODEV;
Bartlomiej Zolnierkiewicz7369f562012-11-05 10:00:19 +00001474 goto dma_unmap;
Dan Williams9de6fc72009-09-08 17:42:58 -07001475 }
1476
Bartlomiej Zolnierkiewicz7369f562012-11-05 10:00:19 +00001477 dma_unmap_page(dev, dest_dma, PAGE_SIZE, DMA_FROM_DEVICE);
1478 for (i = 0; i < IOAT_NUM_SRC_TEST; i++)
1479 dma_unmap_page(dev, dma_srcs[i], PAGE_SIZE, DMA_TO_DEVICE);
1480
Dan Williams9de6fc72009-09-08 17:42:58 -07001481 dma_sync_single_for_cpu(dev, dest_dma, PAGE_SIZE, DMA_FROM_DEVICE);
1482 for (i = 0; i < (PAGE_SIZE / sizeof(u32)); i++) {
1483 u32 *ptr = page_address(dest);
1484 if (ptr[i] != cmp_word) {
1485 dev_err(dev, "Self-test xor failed compare\n");
1486 err = -ENODEV;
1487 goto free_resources;
1488 }
1489 }
Shuah Khanac498982012-10-25 10:22:32 -06001490 dma_sync_single_for_device(dev, dest_dma, PAGE_SIZE, DMA_FROM_DEVICE);
Dan Williams9de6fc72009-09-08 17:42:58 -07001491
1492 /* skip validate if the capability is not present */
1493 if (!dma_has_cap(DMA_XOR_VAL, dma_chan->device->cap_mask))
1494 goto free_resources;
1495
Bartlomiej Zolnierkiewicz7369f562012-11-05 10:00:19 +00001496 op = IOAT_OP_XOR_VAL;
1497
Dan Williams9de6fc72009-09-08 17:42:58 -07001498 /* validate the sources with the destintation page */
1499 for (i = 0; i < IOAT_NUM_SRC_TEST; i++)
1500 xor_val_srcs[i] = xor_srcs[i];
1501 xor_val_srcs[i] = dest;
1502
1503 xor_val_result = 1;
1504
1505 for (i = 0; i < IOAT_NUM_SRC_TEST + 1; i++)
1506 dma_srcs[i] = dma_map_page(dev, xor_val_srcs[i], 0, PAGE_SIZE,
1507 DMA_TO_DEVICE);
1508 tx = dma->device_prep_dma_xor_val(dma_chan, dma_srcs,
1509 IOAT_NUM_SRC_TEST + 1, PAGE_SIZE,
Bartlomiej Zolnierkiewicz7369f562012-11-05 10:00:19 +00001510 &xor_val_result, DMA_PREP_INTERRUPT |
1511 DMA_COMPL_SKIP_SRC_UNMAP |
1512 DMA_COMPL_SKIP_DEST_UNMAP);
Dan Williams9de6fc72009-09-08 17:42:58 -07001513 if (!tx) {
1514 dev_err(dev, "Self-test zero prep failed\n");
1515 err = -ENODEV;
Bartlomiej Zolnierkiewicz7369f562012-11-05 10:00:19 +00001516 goto dma_unmap;
Dan Williams9de6fc72009-09-08 17:42:58 -07001517 }
1518
1519 async_tx_ack(tx);
1520 init_completion(&cmp);
1521 tx->callback = ioat3_dma_test_callback;
1522 tx->callback_param = &cmp;
1523 cookie = tx->tx_submit(tx);
1524 if (cookie < 0) {
1525 dev_err(dev, "Self-test zero setup failed\n");
1526 err = -ENODEV;
Bartlomiej Zolnierkiewicz7369f562012-11-05 10:00:19 +00001527 goto dma_unmap;
Dan Williams9de6fc72009-09-08 17:42:58 -07001528 }
1529 dma->device_issue_pending(dma_chan);
1530
1531 tmo = wait_for_completion_timeout(&cmp, msecs_to_jiffies(3000));
1532
Linus Walleij07934482010-03-26 16:50:49 -07001533 if (dma->device_tx_status(dma_chan, cookie, NULL) != DMA_SUCCESS) {
Dan Williams9de6fc72009-09-08 17:42:58 -07001534 dev_err(dev, "Self-test validate timed out\n");
1535 err = -ENODEV;
Bartlomiej Zolnierkiewicz7369f562012-11-05 10:00:19 +00001536 goto dma_unmap;
Dan Williams9de6fc72009-09-08 17:42:58 -07001537 }
1538
Bartlomiej Zolnierkiewicz7369f562012-11-05 10:00:19 +00001539 for (i = 0; i < IOAT_NUM_SRC_TEST + 1; i++)
1540 dma_unmap_page(dev, dma_srcs[i], PAGE_SIZE, DMA_TO_DEVICE);
1541
Dan Williams9de6fc72009-09-08 17:42:58 -07001542 if (xor_val_result != 0) {
1543 dev_err(dev, "Self-test validate failed compare\n");
1544 err = -ENODEV;
1545 goto free_resources;
1546 }
1547
Dan Williams9de6fc72009-09-08 17:42:58 -07001548 /* test for non-zero parity sum */
Bartlomiej Zolnierkiewicz7369f562012-11-05 10:00:19 +00001549 op = IOAT_OP_XOR_VAL;
1550
Dan Williams9de6fc72009-09-08 17:42:58 -07001551 xor_val_result = 0;
1552 for (i = 0; i < IOAT_NUM_SRC_TEST + 1; i++)
1553 dma_srcs[i] = dma_map_page(dev, xor_val_srcs[i], 0, PAGE_SIZE,
1554 DMA_TO_DEVICE);
1555 tx = dma->device_prep_dma_xor_val(dma_chan, dma_srcs,
1556 IOAT_NUM_SRC_TEST + 1, PAGE_SIZE,
Bartlomiej Zolnierkiewicz7369f562012-11-05 10:00:19 +00001557 &xor_val_result, DMA_PREP_INTERRUPT |
1558 DMA_COMPL_SKIP_SRC_UNMAP |
1559 DMA_COMPL_SKIP_DEST_UNMAP);
Dan Williams9de6fc72009-09-08 17:42:58 -07001560 if (!tx) {
1561 dev_err(dev, "Self-test 2nd zero prep failed\n");
1562 err = -ENODEV;
Bartlomiej Zolnierkiewicz7369f562012-11-05 10:00:19 +00001563 goto dma_unmap;
Dan Williams9de6fc72009-09-08 17:42:58 -07001564 }
1565
1566 async_tx_ack(tx);
1567 init_completion(&cmp);
1568 tx->callback = ioat3_dma_test_callback;
1569 tx->callback_param = &cmp;
1570 cookie = tx->tx_submit(tx);
1571 if (cookie < 0) {
1572 dev_err(dev, "Self-test 2nd zero setup failed\n");
1573 err = -ENODEV;
Bartlomiej Zolnierkiewicz7369f562012-11-05 10:00:19 +00001574 goto dma_unmap;
Dan Williams9de6fc72009-09-08 17:42:58 -07001575 }
1576 dma->device_issue_pending(dma_chan);
1577
1578 tmo = wait_for_completion_timeout(&cmp, msecs_to_jiffies(3000));
1579
Linus Walleij07934482010-03-26 16:50:49 -07001580 if (dma->device_tx_status(dma_chan, cookie, NULL) != DMA_SUCCESS) {
Dan Williams9de6fc72009-09-08 17:42:58 -07001581 dev_err(dev, "Self-test 2nd validate timed out\n");
1582 err = -ENODEV;
Bartlomiej Zolnierkiewicz7369f562012-11-05 10:00:19 +00001583 goto dma_unmap;
Dan Williams9de6fc72009-09-08 17:42:58 -07001584 }
1585
1586 if (xor_val_result != SUM_CHECK_P_RESULT) {
1587 dev_err(dev, "Self-test validate failed compare\n");
1588 err = -ENODEV;
Bartlomiej Zolnierkiewicz7369f562012-11-05 10:00:19 +00001589 goto dma_unmap;
Dan Williams9de6fc72009-09-08 17:42:58 -07001590 }
1591
Bartlomiej Zolnierkiewicz7369f562012-11-05 10:00:19 +00001592 for (i = 0; i < IOAT_NUM_SRC_TEST + 1; i++)
1593 dma_unmap_page(dev, dma_srcs[i], PAGE_SIZE, DMA_TO_DEVICE);
1594
1595 goto free_resources;
1596dma_unmap:
1597 if (op == IOAT_OP_XOR) {
1598 dma_unmap_page(dev, dest_dma, PAGE_SIZE, DMA_FROM_DEVICE);
1599 for (i = 0; i < IOAT_NUM_SRC_TEST; i++)
1600 dma_unmap_page(dev, dma_srcs[i], PAGE_SIZE,
1601 DMA_TO_DEVICE);
1602 } else if (op == IOAT_OP_XOR_VAL) {
1603 for (i = 0; i < IOAT_NUM_SRC_TEST + 1; i++)
1604 dma_unmap_page(dev, dma_srcs[i], PAGE_SIZE,
1605 DMA_TO_DEVICE);
Bartlomiej Zolnierkiewicz48a9db42013-07-03 15:05:06 -07001606 }
Dan Williams9de6fc72009-09-08 17:42:58 -07001607free_resources:
1608 dma->device_free_chan_resources(dma_chan);
1609out:
1610 src_idx = IOAT_NUM_SRC_TEST;
1611 while (src_idx--)
1612 __free_page(xor_srcs[src_idx]);
1613 __free_page(dest);
1614 return err;
1615}
1616
Greg Kroah-Hartman4bf27b82012-12-21 15:09:59 -08001617static int ioat3_dma_self_test(struct ioatdma_device *device)
Dan Williams9de6fc72009-09-08 17:42:58 -07001618{
1619 int rc = ioat_dma_self_test(device);
1620
1621 if (rc)
1622 return rc;
1623
1624 rc = ioat_xor_val_self_test(device);
1625 if (rc)
1626 return rc;
1627
1628 return 0;
1629}
1630
Dave Jiang8a52b9f2013-03-26 15:42:47 -07001631static int ioat3_irq_reinit(struct ioatdma_device *device)
1632{
1633 int msixcnt = device->common.chancnt;
1634 struct pci_dev *pdev = device->pdev;
1635 int i;
1636 struct msix_entry *msix;
1637 struct ioat_chan_common *chan;
1638 int err = 0;
1639
1640 switch (device->irq_mode) {
1641 case IOAT_MSIX:
1642
1643 for (i = 0; i < msixcnt; i++) {
1644 msix = &device->msix_entries[i];
1645 chan = ioat_chan_by_index(device, i);
1646 devm_free_irq(&pdev->dev, msix->vector, chan);
1647 }
1648
1649 pci_disable_msix(pdev);
1650 break;
1651
1652 case IOAT_MSIX_SINGLE:
1653 msix = &device->msix_entries[0];
1654 chan = ioat_chan_by_index(device, 0);
1655 devm_free_irq(&pdev->dev, msix->vector, chan);
1656 pci_disable_msix(pdev);
1657 break;
1658
1659 case IOAT_MSI:
1660 chan = ioat_chan_by_index(device, 0);
1661 devm_free_irq(&pdev->dev, pdev->irq, chan);
1662 pci_disable_msi(pdev);
1663 break;
1664
1665 case IOAT_INTX:
1666 chan = ioat_chan_by_index(device, 0);
1667 devm_free_irq(&pdev->dev, pdev->irq, chan);
1668 break;
1669
1670 default:
1671 return 0;
1672 }
1673
1674 device->irq_mode = IOAT_NOIRQ;
1675
1676 err = ioat_dma_setup_interrupts(device);
1677
1678 return err;
1679}
1680
Dan Williamsa6d52d72009-12-19 15:36:02 -07001681static int ioat3_reset_hw(struct ioat_chan_common *chan)
1682{
1683 /* throw away whatever the channel was doing and get it
1684 * initialized, with ioat3 specific workarounds
1685 */
1686 struct ioatdma_device *device = chan->device;
1687 struct pci_dev *pdev = device->pdev;
1688 u32 chanerr;
1689 u16 dev_id;
1690 int err;
1691
1692 ioat2_quiesce(chan, msecs_to_jiffies(100));
1693
1694 chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET);
1695 writel(chanerr, chan->reg_base + IOAT_CHANERR_OFFSET);
1696
Dave Jiang6ead7e42013-03-26 15:42:59 -07001697 if (device->version < IOAT_VER_3_3) {
1698 /* clear any pending errors */
1699 err = pci_read_config_dword(pdev,
1700 IOAT_PCI_CHANERR_INT_OFFSET, &chanerr);
1701 if (err) {
1702 dev_err(&pdev->dev,
1703 "channel error register unreachable\n");
1704 return err;
1705 }
1706 pci_write_config_dword(pdev,
1707 IOAT_PCI_CHANERR_INT_OFFSET, chanerr);
Dan Williamsa6d52d72009-12-19 15:36:02 -07001708
Dave Jiang6ead7e42013-03-26 15:42:59 -07001709 /* Clear DMAUNCERRSTS Cfg-Reg Parity Error status bit
1710 * (workaround for spurious config parity error after restart)
1711 */
1712 pci_read_config_word(pdev, IOAT_PCI_DEVICE_ID_OFFSET, &dev_id);
1713 if (dev_id == PCI_DEVICE_ID_INTEL_IOAT_TBG0) {
1714 pci_write_config_dword(pdev,
1715 IOAT_PCI_DMAUNCERRSTS_OFFSET,
1716 0x10);
1717 }
1718 }
Dan Williamsa6d52d72009-12-19 15:36:02 -07001719
Dave Jiang8a52b9f2013-03-26 15:42:47 -07001720 err = ioat2_reset_sync(chan, msecs_to_jiffies(200));
1721 if (err) {
1722 dev_err(&pdev->dev, "Failed to reset!\n");
1723 return err;
Dave Jiang1a363062012-12-03 16:08:37 -07001724 }
1725
Dave Jiang8a52b9f2013-03-26 15:42:47 -07001726 if (device->irq_mode != IOAT_NOIRQ && is_bwd_ioat(pdev))
1727 err = ioat3_irq_reinit(device);
Dave Jiang1a363062012-12-03 16:08:37 -07001728
Dave Jiang8a52b9f2013-03-26 15:42:47 -07001729 return err;
Dave Jiang570727b2013-03-25 14:37:31 -07001730}
1731
Dave Jiang75c6f0a2013-04-10 16:44:39 -07001732static void ioat3_intr_quirk(struct ioatdma_device *device)
1733{
1734 struct dma_device *dma;
1735 struct dma_chan *c;
1736 struct ioat_chan_common *chan;
1737 u32 errmask;
1738
1739 dma = &device->common;
1740
1741 /*
1742 * if we have descriptor write back error status, we mask the
1743 * error interrupts
1744 */
1745 if (device->cap & IOAT_CAP_DWBES) {
1746 list_for_each_entry(c, &dma->channels, device_node) {
1747 chan = to_chan_common(c);
1748 errmask = readl(chan->reg_base +
1749 IOAT_CHANERR_MASK_OFFSET);
1750 errmask |= IOAT_CHANERR_XOR_P_OR_CRC_ERR |
1751 IOAT_CHANERR_XOR_Q_ERR;
1752 writel(errmask, chan->reg_base +
1753 IOAT_CHANERR_MASK_OFFSET);
1754 }
1755 }
1756}
1757
Greg Kroah-Hartman4bf27b82012-12-21 15:09:59 -08001758int ioat3_dma_probe(struct ioatdma_device *device, int dca)
Dan Williamsbf40a682009-09-08 17:42:55 -07001759{
1760 struct pci_dev *pdev = device->pdev;
Dan Williams228c4f52009-11-19 17:07:10 -07001761 int dca_en = system_has_dca_enabled(pdev);
Dan Williamsbf40a682009-09-08 17:42:55 -07001762 struct dma_device *dma;
1763 struct dma_chan *c;
1764 struct ioat_chan_common *chan;
Dan Williamse3232712009-09-08 17:43:02 -07001765 bool is_raid_device = false;
Dan Williamsbf40a682009-09-08 17:42:55 -07001766 int err;
Dan Williamsbf40a682009-09-08 17:42:55 -07001767
1768 device->enumerate_channels = ioat2_enumerate_channels;
Dan Williamsa6d52d72009-12-19 15:36:02 -07001769 device->reset_hw = ioat3_reset_hw;
Dan Williams9de6fc72009-09-08 17:42:58 -07001770 device->self_test = ioat3_dma_self_test;
Dave Jiang75c6f0a2013-04-10 16:44:39 -07001771 device->intr_quirk = ioat3_intr_quirk;
Dan Williamsbf40a682009-09-08 17:42:55 -07001772 dma = &device->common;
1773 dma->device_prep_dma_memcpy = ioat2_dma_prep_memcpy_lock;
1774 dma->device_issue_pending = ioat2_issue_pending;
1775 dma->device_alloc_chan_resources = ioat2_alloc_chan_resources;
1776 dma->device_free_chan_resources = ioat2_free_chan_resources;
Dan Williams58c86492009-09-08 17:43:00 -07001777
1778 dma_cap_set(DMA_INTERRUPT, dma->cap_mask);
1779 dma->device_prep_dma_interrupt = ioat3_prep_interrupt_lock;
1780
Dave Jiang75c6f0a2013-04-10 16:44:39 -07001781 device->cap = readl(device->reg_base + IOAT_DMA_CAP_OFFSET);
Dan Williams228c4f52009-11-19 17:07:10 -07001782
Brice Goglinc4dcf0e2013-08-02 21:18:03 +02001783 if (is_xeon_cb32(pdev) || is_bwd_noraid(pdev))
Dave Jiang75c6f0a2013-04-10 16:44:39 -07001784 device->cap &= ~(IOAT_CAP_XOR | IOAT_CAP_PQ | IOAT_CAP_RAID16SS);
Dave Jiangd3023982013-04-10 16:44:32 -07001785
Dan Williams228c4f52009-11-19 17:07:10 -07001786 /* dca is incompatible with raid operations */
Dave Jiang75c6f0a2013-04-10 16:44:39 -07001787 if (dca_en && (device->cap & (IOAT_CAP_XOR|IOAT_CAP_PQ)))
1788 device->cap &= ~(IOAT_CAP_XOR|IOAT_CAP_PQ);
Dan Williams228c4f52009-11-19 17:07:10 -07001789
Dave Jiang75c6f0a2013-04-10 16:44:39 -07001790 if (device->cap & IOAT_CAP_XOR) {
Dan Williamse3232712009-09-08 17:43:02 -07001791 is_raid_device = true;
Dan Williamsb094ad32009-09-08 17:42:57 -07001792 dma->max_xor = 8;
Dan Williamsb094ad32009-09-08 17:42:57 -07001793
1794 dma_cap_set(DMA_XOR, dma->cap_mask);
1795 dma->device_prep_dma_xor = ioat3_prep_xor;
1796
1797 dma_cap_set(DMA_XOR_VAL, dma->cap_mask);
1798 dma->device_prep_dma_xor_val = ioat3_prep_xor_val;
1799 }
Dave Jiangeceec442013-03-26 15:43:15 -07001800
Dave Jiang75c6f0a2013-04-10 16:44:39 -07001801 if (device->cap & IOAT_CAP_PQ) {
Dan Williamse3232712009-09-08 17:43:02 -07001802 is_raid_device = true;
Dave Jiang7727eaa2013-04-15 10:25:56 -07001803
Dave Jiang75c6f0a2013-04-10 16:44:39 -07001804 dma->device_prep_dma_pq = ioat3_prep_pq;
1805 dma->device_prep_dma_pq_val = ioat3_prep_pq_val;
1806 dma_cap_set(DMA_PQ, dma->cap_mask);
1807 dma_cap_set(DMA_PQ_VAL, dma->cap_mask);
1808
1809 if (device->cap & IOAT_CAP_RAID16SS) {
Dave Jiang7727eaa2013-04-15 10:25:56 -07001810 dma_set_maxpq(dma, 16, 0);
Dave Jiang7727eaa2013-04-15 10:25:56 -07001811 } else {
1812 dma_set_maxpq(dma, 8, 0);
Dave Jiang7727eaa2013-04-15 10:25:56 -07001813 }
Dan Williamsd69d235b2009-09-08 17:42:59 -07001814
Dave Jiang75c6f0a2013-04-10 16:44:39 -07001815 if (!(device->cap & IOAT_CAP_XOR)) {
1816 dma->device_prep_dma_xor = ioat3_prep_pqxor;
1817 dma->device_prep_dma_xor_val = ioat3_prep_pqxor_val;
1818 dma_cap_set(DMA_XOR, dma->cap_mask);
1819 dma_cap_set(DMA_XOR_VAL, dma->cap_mask);
Dan Williamsd69d235b2009-09-08 17:42:59 -07001820
Dave Jiang75c6f0a2013-04-10 16:44:39 -07001821 if (device->cap & IOAT_CAP_RAID16SS) {
Dave Jiang7727eaa2013-04-15 10:25:56 -07001822 dma->max_xor = 16;
Dave Jiang7727eaa2013-04-15 10:25:56 -07001823 } else {
1824 dma->max_xor = 8;
Dave Jiang7727eaa2013-04-15 10:25:56 -07001825 }
Dan Williamsae786622009-09-08 17:43:00 -07001826 }
Dan Williamsd69d235b2009-09-08 17:42:59 -07001827 }
Dave Jiangeceec442013-03-26 15:43:15 -07001828
Dave Jiang9a37f642013-02-26 09:20:36 -07001829 dma->device_tx_status = ioat3_tx_status;
1830 device->cleanup_fn = ioat3_cleanup_event;
1831 device->timer_fn = ioat3_timer_event;
Dan Williamsbf40a682009-09-08 17:42:55 -07001832
Dave Jiang7727eaa2013-04-15 10:25:56 -07001833 /* starting with CB3.3 super extended descriptors are supported */
Dave Jiang75c6f0a2013-04-10 16:44:39 -07001834 if (device->cap & IOAT_CAP_RAID16SS) {
Dave Jiang7727eaa2013-04-15 10:25:56 -07001835 char pool_name[14];
1836 int i;
1837
1838 /* allocate sw descriptor pool for SED */
1839 device->sed_pool = kmem_cache_create("ioat_sed",
1840 sizeof(struct ioat_sed_ent), 0, 0, NULL);
1841 if (!device->sed_pool)
1842 return -ENOMEM;
1843
1844 for (i = 0; i < MAX_SED_POOLS; i++) {
1845 snprintf(pool_name, 14, "ioat_hw%d_sed", i);
1846
1847 /* allocate SED DMA pool */
1848 device->sed_hw_pool[i] = dma_pool_create(pool_name,
1849 &pdev->dev,
1850 SED_SIZE * (i + 1), 64, 0);
1851 if (!device->sed_hw_pool[i])
1852 goto sed_pool_cleanup;
1853
1854 }
1855 }
1856
Dan Williamsbf40a682009-09-08 17:42:55 -07001857 err = ioat_probe(device);
1858 if (err)
1859 return err;
1860 ioat_set_tcp_copy_break(262144);
1861
1862 list_for_each_entry(c, &dma->channels, device_node) {
1863 chan = to_chan_common(c);
1864 writel(IOAT_DMA_DCA_ANY_CPU,
1865 chan->reg_base + IOAT_DCACTRL_OFFSET);
1866 }
1867
1868 err = ioat_register(device);
1869 if (err)
1870 return err;
Dan Williams5669e312009-09-08 17:42:56 -07001871
1872 ioat_kobject_add(device, &ioat2_ktype);
1873
Dan Williamsbf40a682009-09-08 17:42:55 -07001874 if (dca)
1875 device->dca = ioat3_dca_init(pdev, device->reg_base);
1876
1877 return 0;
Dave Jiang7727eaa2013-04-15 10:25:56 -07001878
1879sed_pool_cleanup:
1880 if (device->sed_pool) {
1881 int i;
1882 kmem_cache_destroy(device->sed_pool);
1883
1884 for (i = 0; i < MAX_SED_POOLS; i++)
1885 if (device->sed_hw_pool[i])
1886 dma_pool_destroy(device->sed_hw_pool[i]);
1887 }
1888
1889 return -ENOMEM;
1890}
1891
1892void ioat3_dma_remove(struct ioatdma_device *device)
1893{
1894 if (device->sed_pool) {
1895 int i;
1896 kmem_cache_destroy(device->sed_pool);
1897
1898 for (i = 0; i < MAX_SED_POOLS; i++)
1899 if (device->sed_hw_pool[i])
1900 dma_pool_destroy(device->sed_hw_pool[i]);
1901 }
Dan Williamsbf40a682009-09-08 17:42:55 -07001902}