2 * Intel I/OAT DMA Linux driver
3 * Copyright(c) 2004 - 2015 Intel Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * The full GNU General Public License is included in this distribution in
15 * the file called "COPYING".
20 * This driver supports an Intel I/OAT DMA engine, which does asynchronous
24 #include <linux/init.h>
25 #include <linux/module.h>
26 #include <linux/slab.h>
27 #include <linux/pci.h>
28 #include <linux/interrupt.h>
29 #include <linux/dmaengine.h>
30 #include <linux/delay.h>
31 #include <linux/dma-mapping.h>
32 #include <linux/workqueue.h>
33 #include <linux/prefetch.h>
34 #include <linux/sizes.h>
36 #include "registers.h"
39 #include "../dmaengine.h"
41 static char *chanerr_str
[] = {
42 "DMA Transfer Source Address Error",
43 "DMA Transfer Destination Address Error",
44 "Next Descriptor Address Error",
46 "Chan Address Value Error",
48 "Chipset Uncorrectable Data Integrity Error",
49 "DMA Uncorrectable Data Integrity Error",
52 "Descriptor Control Error",
53 "Descriptor Transfer Size Error",
54 "Completion Address Error",
55 "Interrupt Configuration Error",
56 "Super extended descriptor Address Error",
60 "Descriptor Count Error",
61 "DIF All F detect Error",
62 "Guard Tag verification Error",
63 "Application Tag verification Error",
64 "Reference Tag verification Error",
66 "Result DIF All F detect Error",
67 "Result Guard Tag verification Error",
68 "Result Application Tag verification Error",
69 "Result Reference Tag verification Error",
72 static void ioat_eh(struct ioatdma_chan
*ioat_chan
);
74 static void ioat_print_chanerrs(struct ioatdma_chan
*ioat_chan
, u32 chanerr
)
78 for (i
= 0; i
< ARRAY_SIZE(chanerr_str
); i
++) {
79 if ((chanerr
>> i
) & 1) {
80 dev_err(to_dev(ioat_chan
), "Err(%d): %s\n",
87 * ioat_dma_do_interrupt - handler used for single vector interrupt mode
89 * @data: interrupt data
91 irqreturn_t
ioat_dma_do_interrupt(int irq
, void *data
)
93 struct ioatdma_device
*instance
= data
;
94 struct ioatdma_chan
*ioat_chan
;
95 unsigned long attnstatus
;
99 intrctrl
= readb(instance
->reg_base
+ IOAT_INTRCTRL_OFFSET
);
101 if (!(intrctrl
& IOAT_INTRCTRL_MASTER_INT_EN
))
104 if (!(intrctrl
& IOAT_INTRCTRL_INT_STATUS
)) {
105 writeb(intrctrl
, instance
->reg_base
+ IOAT_INTRCTRL_OFFSET
);
109 attnstatus
= readl(instance
->reg_base
+ IOAT_ATTNSTATUS_OFFSET
);
110 for_each_set_bit(bit
, &attnstatus
, BITS_PER_LONG
) {
111 ioat_chan
= ioat_chan_by_index(instance
, bit
);
112 if (test_bit(IOAT_RUN
, &ioat_chan
->state
))
113 tasklet_schedule(&ioat_chan
->cleanup_task
);
116 writeb(intrctrl
, instance
->reg_base
+ IOAT_INTRCTRL_OFFSET
);
121 * ioat_dma_do_interrupt_msix - handler used for vector-per-channel interrupt mode
123 * @data: interrupt data
125 irqreturn_t
ioat_dma_do_interrupt_msix(int irq
, void *data
)
127 struct ioatdma_chan
*ioat_chan
= data
;
129 if (test_bit(IOAT_RUN
, &ioat_chan
->state
))
130 tasklet_schedule(&ioat_chan
->cleanup_task
);
135 void ioat_stop(struct ioatdma_chan
*ioat_chan
)
137 struct ioatdma_device
*ioat_dma
= ioat_chan
->ioat_dma
;
138 struct pci_dev
*pdev
= ioat_dma
->pdev
;
139 int chan_id
= chan_num(ioat_chan
);
140 struct msix_entry
*msix
;
142 /* 1/ stop irq from firing tasklets
143 * 2/ stop the tasklet from re-arming irqs
145 clear_bit(IOAT_RUN
, &ioat_chan
->state
);
147 /* flush inflight interrupts */
148 switch (ioat_dma
->irq_mode
) {
150 msix
= &ioat_dma
->msix_entries
[chan_id
];
151 synchronize_irq(msix
->vector
);
155 synchronize_irq(pdev
->irq
);
161 /* flush inflight timers */
162 del_timer_sync(&ioat_chan
->timer
);
164 /* flush inflight tasklet runs */
165 tasklet_kill(&ioat_chan
->cleanup_task
);
167 /* final cleanup now that everything is quiesced and can't re-arm */
168 ioat_cleanup_event((unsigned long)&ioat_chan
->dma_chan
);
171 static void __ioat_issue_pending(struct ioatdma_chan
*ioat_chan
)
173 ioat_chan
->dmacount
+= ioat_ring_pending(ioat_chan
);
174 ioat_chan
->issued
= ioat_chan
->head
;
175 writew(ioat_chan
->dmacount
,
176 ioat_chan
->reg_base
+ IOAT_CHAN_DMACOUNT_OFFSET
);
177 dev_dbg(to_dev(ioat_chan
),
178 "%s: head: %#x tail: %#x issued: %#x count: %#x\n",
179 __func__
, ioat_chan
->head
, ioat_chan
->tail
,
180 ioat_chan
->issued
, ioat_chan
->dmacount
);
183 void ioat_issue_pending(struct dma_chan
*c
)
185 struct ioatdma_chan
*ioat_chan
= to_ioat_chan(c
);
187 if (ioat_ring_pending(ioat_chan
)) {
188 spin_lock_bh(&ioat_chan
->prep_lock
);
189 __ioat_issue_pending(ioat_chan
);
190 spin_unlock_bh(&ioat_chan
->prep_lock
);
195 * ioat_update_pending - log pending descriptors
196 * @ioat: ioat+ channel
198 * Check if the number of unsubmitted descriptors has exceeded the
199 * watermark. Called with prep_lock held
201 static void ioat_update_pending(struct ioatdma_chan
*ioat_chan
)
203 if (ioat_ring_pending(ioat_chan
) > ioat_pending_level
)
204 __ioat_issue_pending(ioat_chan
);
207 static void __ioat_start_null_desc(struct ioatdma_chan
*ioat_chan
)
209 struct ioat_ring_ent
*desc
;
210 struct ioat_dma_descriptor
*hw
;
212 if (ioat_ring_space(ioat_chan
) < 1) {
213 dev_err(to_dev(ioat_chan
),
214 "Unable to start null desc - ring full\n");
218 dev_dbg(to_dev(ioat_chan
),
219 "%s: head: %#x tail: %#x issued: %#x\n",
220 __func__
, ioat_chan
->head
, ioat_chan
->tail
, ioat_chan
->issued
);
221 desc
= ioat_get_ring_ent(ioat_chan
, ioat_chan
->head
);
226 hw
->ctl_f
.int_en
= 1;
227 hw
->ctl_f
.compl_write
= 1;
228 /* set size to non-zero value (channel returns error when size is 0) */
229 hw
->size
= NULL_DESC_BUFFER_SIZE
;
232 async_tx_ack(&desc
->txd
);
233 ioat_set_chainaddr(ioat_chan
, desc
->txd
.phys
);
234 dump_desc_dbg(ioat_chan
, desc
);
235 /* make sure descriptors are written before we submit */
237 ioat_chan
->head
+= 1;
238 __ioat_issue_pending(ioat_chan
);
241 void ioat_start_null_desc(struct ioatdma_chan
*ioat_chan
)
243 spin_lock_bh(&ioat_chan
->prep_lock
);
244 if (!test_bit(IOAT_CHAN_DOWN
, &ioat_chan
->state
))
245 __ioat_start_null_desc(ioat_chan
);
246 spin_unlock_bh(&ioat_chan
->prep_lock
);
249 static void __ioat_restart_chan(struct ioatdma_chan
*ioat_chan
)
251 /* set the tail to be re-issued */
252 ioat_chan
->issued
= ioat_chan
->tail
;
253 ioat_chan
->dmacount
= 0;
254 mod_timer(&ioat_chan
->timer
, jiffies
+ COMPLETION_TIMEOUT
);
256 dev_dbg(to_dev(ioat_chan
),
257 "%s: head: %#x tail: %#x issued: %#x count: %#x\n",
258 __func__
, ioat_chan
->head
, ioat_chan
->tail
,
259 ioat_chan
->issued
, ioat_chan
->dmacount
);
261 if (ioat_ring_pending(ioat_chan
)) {
262 struct ioat_ring_ent
*desc
;
264 desc
= ioat_get_ring_ent(ioat_chan
, ioat_chan
->tail
);
265 ioat_set_chainaddr(ioat_chan
, desc
->txd
.phys
);
266 __ioat_issue_pending(ioat_chan
);
268 __ioat_start_null_desc(ioat_chan
);
271 static int ioat_quiesce(struct ioatdma_chan
*ioat_chan
, unsigned long tmo
)
273 unsigned long end
= jiffies
+ tmo
;
277 status
= ioat_chansts(ioat_chan
);
278 if (is_ioat_active(status
) || is_ioat_idle(status
))
279 ioat_suspend(ioat_chan
);
280 while (is_ioat_active(status
) || is_ioat_idle(status
)) {
281 if (tmo
&& time_after(jiffies
, end
)) {
285 status
= ioat_chansts(ioat_chan
);
292 static int ioat_reset_sync(struct ioatdma_chan
*ioat_chan
, unsigned long tmo
)
294 unsigned long end
= jiffies
+ tmo
;
297 ioat_reset(ioat_chan
);
298 while (ioat_reset_pending(ioat_chan
)) {
299 if (end
&& time_after(jiffies
, end
)) {
309 static dma_cookie_t
ioat_tx_submit_unlock(struct dma_async_tx_descriptor
*tx
)
310 __releases(&ioat_chan
->prep_lock
)
312 struct dma_chan
*c
= tx
->chan
;
313 struct ioatdma_chan
*ioat_chan
= to_ioat_chan(c
);
316 cookie
= dma_cookie_assign(tx
);
317 dev_dbg(to_dev(ioat_chan
), "%s: cookie: %d\n", __func__
, cookie
);
319 if (!test_and_set_bit(IOAT_CHAN_ACTIVE
, &ioat_chan
->state
))
320 mod_timer(&ioat_chan
->timer
, jiffies
+ COMPLETION_TIMEOUT
);
322 /* make descriptor updates visible before advancing ioat->head,
323 * this is purposefully not smp_wmb() since we are also
324 * publishing the descriptor updates to a dma device
328 ioat_chan
->head
+= ioat_chan
->produce
;
330 ioat_update_pending(ioat_chan
);
331 spin_unlock_bh(&ioat_chan
->prep_lock
);
336 static struct ioat_ring_ent
*
337 ioat_alloc_ring_ent(struct dma_chan
*chan
, int idx
, gfp_t flags
)
339 struct ioat_dma_descriptor
*hw
;
340 struct ioat_ring_ent
*desc
;
341 struct ioatdma_chan
*ioat_chan
= to_ioat_chan(chan
);
347 chunk
= idx
/ IOAT_DESCS_PER_2M
;
348 idx
&= (IOAT_DESCS_PER_2M
- 1);
349 offs
= idx
* IOAT_DESC_SZ
;
350 pos
= (u8
*)ioat_chan
->descs
[chunk
].virt
+ offs
;
351 phys
= ioat_chan
->descs
[chunk
].hw
+ offs
;
352 hw
= (struct ioat_dma_descriptor
*)pos
;
353 memset(hw
, 0, sizeof(*hw
));
355 desc
= kmem_cache_zalloc(ioat_cache
, flags
);
359 dma_async_tx_descriptor_init(&desc
->txd
, chan
);
360 desc
->txd
.tx_submit
= ioat_tx_submit_unlock
;
362 desc
->txd
.phys
= phys
;
366 void ioat_free_ring_ent(struct ioat_ring_ent
*desc
, struct dma_chan
*chan
)
368 kmem_cache_free(ioat_cache
, desc
);
371 struct ioat_ring_ent
**
372 ioat_alloc_ring(struct dma_chan
*c
, int order
, gfp_t flags
)
374 struct ioatdma_chan
*ioat_chan
= to_ioat_chan(c
);
375 struct ioat_ring_ent
**ring
;
376 int total_descs
= 1 << order
;
379 /* allocate the array to hold the software ring */
380 ring
= kcalloc(total_descs
, sizeof(*ring
), flags
);
384 ioat_chan
->desc_chunks
= chunks
= (total_descs
* IOAT_DESC_SZ
) / SZ_2M
;
386 for (i
= 0; i
< chunks
; i
++) {
387 struct ioat_descs
*descs
= &ioat_chan
->descs
[i
];
389 descs
->virt
= dma_alloc_coherent(to_dev(ioat_chan
),
390 SZ_2M
, &descs
->hw
, flags
);
391 if (!descs
->virt
&& (i
> 0)) {
394 for (idx
= 0; idx
< i
; idx
++) {
395 dma_free_coherent(to_dev(ioat_chan
), SZ_2M
,
396 descs
->virt
, descs
->hw
);
401 ioat_chan
->desc_chunks
= 0;
407 for (i
= 0; i
< total_descs
; i
++) {
408 ring
[i
] = ioat_alloc_ring_ent(c
, i
, flags
);
413 ioat_free_ring_ent(ring
[i
], c
);
415 for (idx
= 0; idx
< ioat_chan
->desc_chunks
; idx
++) {
416 dma_free_coherent(to_dev(ioat_chan
),
418 ioat_chan
->descs
[idx
].virt
,
419 ioat_chan
->descs
[idx
].hw
);
420 ioat_chan
->descs
[idx
].virt
= NULL
;
421 ioat_chan
->descs
[idx
].hw
= 0;
424 ioat_chan
->desc_chunks
= 0;
428 set_desc_id(ring
[i
], i
);
432 for (i
= 0; i
< total_descs
-1; i
++) {
433 struct ioat_ring_ent
*next
= ring
[i
+1];
434 struct ioat_dma_descriptor
*hw
= ring
[i
]->hw
;
436 hw
->next
= next
->txd
.phys
;
438 ring
[i
]->hw
->next
= ring
[0]->txd
.phys
;
444 * ioat_check_space_lock - verify space and grab ring producer lock
445 * @ioat: ioat,3 channel (ring) to operate on
446 * @num_descs: allocation length
448 int ioat_check_space_lock(struct ioatdma_chan
*ioat_chan
, int num_descs
)
449 __acquires(&ioat_chan
->prep_lock
)
451 spin_lock_bh(&ioat_chan
->prep_lock
);
452 /* never allow the last descriptor to be consumed, we need at
453 * least one free at all times to allow for on-the-fly ring
456 if (likely(ioat_ring_space(ioat_chan
) > num_descs
)) {
457 dev_dbg(to_dev(ioat_chan
), "%s: num_descs: %d (%x:%x:%x)\n",
458 __func__
, num_descs
, ioat_chan
->head
,
459 ioat_chan
->tail
, ioat_chan
->issued
);
460 ioat_chan
->produce
= num_descs
;
461 return 0; /* with ioat->prep_lock held */
463 spin_unlock_bh(&ioat_chan
->prep_lock
);
465 dev_dbg_ratelimited(to_dev(ioat_chan
),
466 "%s: ring full! num_descs: %d (%x:%x:%x)\n",
467 __func__
, num_descs
, ioat_chan
->head
,
468 ioat_chan
->tail
, ioat_chan
->issued
);
470 /* progress reclaim in the allocation failure case we may be
471 * called under bh_disabled so we need to trigger the timer
474 if (time_is_before_jiffies(ioat_chan
->timer
.expires
)
475 && timer_pending(&ioat_chan
->timer
)) {
476 mod_timer(&ioat_chan
->timer
, jiffies
+ COMPLETION_TIMEOUT
);
477 ioat_timer_event(&ioat_chan
->timer
);
483 static bool desc_has_ext(struct ioat_ring_ent
*desc
)
485 struct ioat_dma_descriptor
*hw
= desc
->hw
;
487 if (hw
->ctl_f
.op
== IOAT_OP_XOR
||
488 hw
->ctl_f
.op
== IOAT_OP_XOR_VAL
) {
489 struct ioat_xor_descriptor
*xor = desc
->xor;
491 if (src_cnt_to_sw(xor->ctl_f
.src_cnt
) > 5)
493 } else if (hw
->ctl_f
.op
== IOAT_OP_PQ
||
494 hw
->ctl_f
.op
== IOAT_OP_PQ_VAL
) {
495 struct ioat_pq_descriptor
*pq
= desc
->pq
;
497 if (src_cnt_to_sw(pq
->ctl_f
.src_cnt
) > 3)
505 ioat_free_sed(struct ioatdma_device
*ioat_dma
, struct ioat_sed_ent
*sed
)
510 dma_pool_free(ioat_dma
->sed_hw_pool
[sed
->hw_pool
], sed
->hw
, sed
->dma
);
511 kmem_cache_free(ioat_sed_cache
, sed
);
514 static u64
ioat_get_current_completion(struct ioatdma_chan
*ioat_chan
)
519 completion
= *ioat_chan
->completion
;
520 phys_complete
= ioat_chansts_to_addr(completion
);
522 dev_dbg(to_dev(ioat_chan
), "%s: phys_complete: %#llx\n", __func__
,
523 (unsigned long long) phys_complete
);
525 return phys_complete
;
528 static bool ioat_cleanup_preamble(struct ioatdma_chan
*ioat_chan
,
531 *phys_complete
= ioat_get_current_completion(ioat_chan
);
532 if (*phys_complete
== ioat_chan
->last_completion
)
535 clear_bit(IOAT_COMPLETION_ACK
, &ioat_chan
->state
);
536 mod_timer(&ioat_chan
->timer
, jiffies
+ COMPLETION_TIMEOUT
);
542 desc_get_errstat(struct ioatdma_chan
*ioat_chan
, struct ioat_ring_ent
*desc
)
544 struct ioat_dma_descriptor
*hw
= desc
->hw
;
546 switch (hw
->ctl_f
.op
) {
548 case IOAT_OP_PQ_VAL_16S
:
550 struct ioat_pq_descriptor
*pq
= desc
->pq
;
552 /* check if there's error written */
553 if (!pq
->dwbes_f
.wbes
)
556 /* need to set a chanerr var for checking to clear later */
558 if (pq
->dwbes_f
.p_val_err
)
559 *desc
->result
|= SUM_CHECK_P_RESULT
;
561 if (pq
->dwbes_f
.q_val_err
)
562 *desc
->result
|= SUM_CHECK_Q_RESULT
;
572 * __cleanup - reclaim used descriptors
573 * @ioat: channel (ring) to clean
575 static void __cleanup(struct ioatdma_chan
*ioat_chan
, dma_addr_t phys_complete
)
577 struct ioatdma_device
*ioat_dma
= ioat_chan
->ioat_dma
;
578 struct ioat_ring_ent
*desc
;
579 bool seen_current
= false;
580 int idx
= ioat_chan
->tail
, i
;
583 dev_dbg(to_dev(ioat_chan
), "%s: head: %#x tail: %#x issued: %#x\n",
584 __func__
, ioat_chan
->head
, ioat_chan
->tail
, ioat_chan
->issued
);
587 * At restart of the channel, the completion address and the
588 * channel status will be 0 due to starting a new chain. Since
589 * it's new chain and the first descriptor "fails", there is
590 * nothing to clean up. We do not want to reap the entire submitted
591 * chain due to this 0 address value and then BUG.
596 active
= ioat_ring_active(ioat_chan
);
597 for (i
= 0; i
< active
&& !seen_current
; i
++) {
598 struct dma_async_tx_descriptor
*tx
;
600 prefetch(ioat_get_ring_ent(ioat_chan
, idx
+ i
+ 1));
601 desc
= ioat_get_ring_ent(ioat_chan
, idx
+ i
);
602 dump_desc_dbg(ioat_chan
, desc
);
604 /* set err stat if we are using dwbes */
605 if (ioat_dma
->cap
& IOAT_CAP_DWBES
)
606 desc_get_errstat(ioat_chan
, desc
);
610 dma_cookie_complete(tx
);
611 dma_descriptor_unmap(tx
);
612 dmaengine_desc_get_callback_invoke(tx
, NULL
);
614 tx
->callback_result
= NULL
;
617 if (tx
->phys
== phys_complete
)
620 /* skip extended descriptors */
621 if (desc_has_ext(desc
)) {
622 BUG_ON(i
+ 1 >= active
);
626 /* cleanup super extended descriptors */
628 ioat_free_sed(ioat_dma
, desc
->sed
);
633 /* finish all descriptor reads before incrementing tail */
635 ioat_chan
->tail
= idx
+ i
;
636 /* no active descs have written a completion? */
637 BUG_ON(active
&& !seen_current
);
638 ioat_chan
->last_completion
= phys_complete
;
640 if (active
- i
== 0) {
641 dev_dbg(to_dev(ioat_chan
), "%s: cancel completion timeout\n",
643 mod_timer(&ioat_chan
->timer
, jiffies
+ IDLE_TIMEOUT
);
646 /* microsecond delay by sysfs variable per pending descriptor */
647 if (ioat_chan
->intr_coalesce
!= ioat_chan
->prev_intr_coalesce
) {
648 writew(min((ioat_chan
->intr_coalesce
* (active
- i
)),
649 IOAT_INTRDELAY_MASK
),
650 ioat_chan
->ioat_dma
->reg_base
+ IOAT_INTRDELAY_OFFSET
);
651 ioat_chan
->prev_intr_coalesce
= ioat_chan
->intr_coalesce
;
655 static void ioat_cleanup(struct ioatdma_chan
*ioat_chan
)
659 spin_lock_bh(&ioat_chan
->cleanup_lock
);
661 if (ioat_cleanup_preamble(ioat_chan
, &phys_complete
))
662 __cleanup(ioat_chan
, phys_complete
);
664 if (is_ioat_halted(*ioat_chan
->completion
)) {
665 u32 chanerr
= readl(ioat_chan
->reg_base
+ IOAT_CHANERR_OFFSET
);
668 (IOAT_CHANERR_HANDLE_MASK
| IOAT_CHANERR_RECOVER_MASK
)) {
669 mod_timer(&ioat_chan
->timer
, jiffies
+ IDLE_TIMEOUT
);
674 spin_unlock_bh(&ioat_chan
->cleanup_lock
);
677 void ioat_cleanup_event(unsigned long data
)
679 struct ioatdma_chan
*ioat_chan
= to_ioat_chan((void *)data
);
681 ioat_cleanup(ioat_chan
);
682 if (!test_bit(IOAT_RUN
, &ioat_chan
->state
))
684 writew(IOAT_CHANCTRL_RUN
, ioat_chan
->reg_base
+ IOAT_CHANCTRL_OFFSET
);
687 static void ioat_restart_channel(struct ioatdma_chan
*ioat_chan
)
691 ioat_quiesce(ioat_chan
, 0);
692 if (ioat_cleanup_preamble(ioat_chan
, &phys_complete
))
693 __cleanup(ioat_chan
, phys_complete
);
695 __ioat_restart_chan(ioat_chan
);
699 static void ioat_abort_descs(struct ioatdma_chan
*ioat_chan
)
701 struct ioatdma_device
*ioat_dma
= ioat_chan
->ioat_dma
;
702 struct ioat_ring_ent
*desc
;
704 int idx
= ioat_chan
->tail
, i
;
707 * We assume that the failed descriptor has been processed.
708 * Now we are just returning all the remaining submitted
709 * descriptors to abort.
711 active
= ioat_ring_active(ioat_chan
);
713 /* we skip the failed descriptor that tail points to */
714 for (i
= 1; i
< active
; i
++) {
715 struct dma_async_tx_descriptor
*tx
;
717 prefetch(ioat_get_ring_ent(ioat_chan
, idx
+ i
+ 1));
718 desc
= ioat_get_ring_ent(ioat_chan
, idx
+ i
);
722 struct dmaengine_result res
;
724 dma_cookie_complete(tx
);
725 dma_descriptor_unmap(tx
);
726 res
.result
= DMA_TRANS_ABORTED
;
727 dmaengine_desc_get_callback_invoke(tx
, &res
);
729 tx
->callback_result
= NULL
;
732 /* skip extended descriptors */
733 if (desc_has_ext(desc
)) {
734 WARN_ON(i
+ 1 >= active
);
738 /* cleanup super extended descriptors */
740 ioat_free_sed(ioat_dma
, desc
->sed
);
745 smp_mb(); /* finish all descriptor reads before incrementing tail */
746 ioat_chan
->tail
= idx
+ active
;
748 desc
= ioat_get_ring_ent(ioat_chan
, ioat_chan
->tail
);
749 ioat_chan
->last_completion
= *ioat_chan
->completion
= desc
->txd
.phys
;
752 static void ioat_eh(struct ioatdma_chan
*ioat_chan
)
754 struct pci_dev
*pdev
= to_pdev(ioat_chan
);
755 struct ioat_dma_descriptor
*hw
;
756 struct dma_async_tx_descriptor
*tx
;
758 struct ioat_ring_ent
*desc
;
763 struct dmaengine_result res
;
765 /* cleanup so tail points to descriptor that caused the error */
766 if (ioat_cleanup_preamble(ioat_chan
, &phys_complete
))
767 __cleanup(ioat_chan
, phys_complete
);
769 chanerr
= readl(ioat_chan
->reg_base
+ IOAT_CHANERR_OFFSET
);
770 pci_read_config_dword(pdev
, IOAT_PCI_CHANERR_INT_OFFSET
, &chanerr_int
);
772 dev_dbg(to_dev(ioat_chan
), "%s: error = %x:%x\n",
773 __func__
, chanerr
, chanerr_int
);
775 desc
= ioat_get_ring_ent(ioat_chan
, ioat_chan
->tail
);
777 dump_desc_dbg(ioat_chan
, desc
);
779 switch (hw
->ctl_f
.op
) {
780 case IOAT_OP_XOR_VAL
:
781 if (chanerr
& IOAT_CHANERR_XOR_P_OR_CRC_ERR
) {
782 *desc
->result
|= SUM_CHECK_P_RESULT
;
783 err_handled
|= IOAT_CHANERR_XOR_P_OR_CRC_ERR
;
787 case IOAT_OP_PQ_VAL_16S
:
788 if (chanerr
& IOAT_CHANERR_XOR_P_OR_CRC_ERR
) {
789 *desc
->result
|= SUM_CHECK_P_RESULT
;
790 err_handled
|= IOAT_CHANERR_XOR_P_OR_CRC_ERR
;
792 if (chanerr
& IOAT_CHANERR_XOR_Q_ERR
) {
793 *desc
->result
|= SUM_CHECK_Q_RESULT
;
794 err_handled
|= IOAT_CHANERR_XOR_Q_ERR
;
799 if (chanerr
& IOAT_CHANERR_RECOVER_MASK
) {
800 if (chanerr
& IOAT_CHANERR_READ_DATA_ERR
) {
801 res
.result
= DMA_TRANS_READ_FAILED
;
802 err_handled
|= IOAT_CHANERR_READ_DATA_ERR
;
803 } else if (chanerr
& IOAT_CHANERR_WRITE_DATA_ERR
) {
804 res
.result
= DMA_TRANS_WRITE_FAILED
;
805 err_handled
|= IOAT_CHANERR_WRITE_DATA_ERR
;
810 res
.result
= DMA_TRANS_NOERROR
;
812 /* fault on unhandled error or spurious halt */
813 if (chanerr
^ err_handled
|| chanerr
== 0) {
814 dev_err(to_dev(ioat_chan
), "%s: fatal error (%x:%x)\n",
815 __func__
, chanerr
, err_handled
);
816 dev_err(to_dev(ioat_chan
), "Errors handled:\n");
817 ioat_print_chanerrs(ioat_chan
, err_handled
);
818 dev_err(to_dev(ioat_chan
), "Errors not handled:\n");
819 ioat_print_chanerrs(ioat_chan
, (chanerr
& ~err_handled
));
824 /* cleanup the faulty descriptor since we are continuing */
827 dma_cookie_complete(tx
);
828 dma_descriptor_unmap(tx
);
829 dmaengine_desc_get_callback_invoke(tx
, &res
);
831 tx
->callback_result
= NULL
;
834 /* mark faulting descriptor as complete */
835 *ioat_chan
->completion
= desc
->txd
.phys
;
837 spin_lock_bh(&ioat_chan
->prep_lock
);
838 /* we need abort all descriptors */
840 ioat_abort_descs(ioat_chan
);
841 /* clean up the channel, we could be in weird state */
842 ioat_reset_hw(ioat_chan
);
845 writel(chanerr
, ioat_chan
->reg_base
+ IOAT_CHANERR_OFFSET
);
846 pci_write_config_dword(pdev
, IOAT_PCI_CHANERR_INT_OFFSET
, chanerr_int
);
848 ioat_restart_channel(ioat_chan
);
849 spin_unlock_bh(&ioat_chan
->prep_lock
);
852 static void check_active(struct ioatdma_chan
*ioat_chan
)
854 if (ioat_ring_active(ioat_chan
)) {
855 mod_timer(&ioat_chan
->timer
, jiffies
+ COMPLETION_TIMEOUT
);
859 if (test_and_clear_bit(IOAT_CHAN_ACTIVE
, &ioat_chan
->state
))
860 mod_timer(&ioat_chan
->timer
, jiffies
+ IDLE_TIMEOUT
);
863 void ioat_timer_event(struct timer_list
*t
)
865 struct ioatdma_chan
*ioat_chan
= from_timer(ioat_chan
, t
, timer
);
866 dma_addr_t phys_complete
;
869 status
= ioat_chansts(ioat_chan
);
871 /* when halted due to errors check for channel
872 * programming errors before advancing the completion state
874 if (is_ioat_halted(status
)) {
877 chanerr
= readl(ioat_chan
->reg_base
+ IOAT_CHANERR_OFFSET
);
878 dev_err(to_dev(ioat_chan
), "%s: Channel halted (%x)\n",
880 dev_err(to_dev(ioat_chan
), "Errors:\n");
881 ioat_print_chanerrs(ioat_chan
, chanerr
);
883 if (test_bit(IOAT_RUN
, &ioat_chan
->state
)) {
884 spin_lock_bh(&ioat_chan
->cleanup_lock
);
885 spin_lock_bh(&ioat_chan
->prep_lock
);
886 set_bit(IOAT_CHAN_DOWN
, &ioat_chan
->state
);
887 spin_unlock_bh(&ioat_chan
->prep_lock
);
889 ioat_abort_descs(ioat_chan
);
890 dev_warn(to_dev(ioat_chan
), "Reset channel...\n");
891 ioat_reset_hw(ioat_chan
);
892 dev_warn(to_dev(ioat_chan
), "Restart channel...\n");
893 ioat_restart_channel(ioat_chan
);
895 spin_lock_bh(&ioat_chan
->prep_lock
);
896 clear_bit(IOAT_CHAN_DOWN
, &ioat_chan
->state
);
897 spin_unlock_bh(&ioat_chan
->prep_lock
);
898 spin_unlock_bh(&ioat_chan
->cleanup_lock
);
904 spin_lock_bh(&ioat_chan
->cleanup_lock
);
906 /* handle the no-actives case */
907 if (!ioat_ring_active(ioat_chan
)) {
908 spin_lock_bh(&ioat_chan
->prep_lock
);
909 check_active(ioat_chan
);
910 spin_unlock_bh(&ioat_chan
->prep_lock
);
911 spin_unlock_bh(&ioat_chan
->cleanup_lock
);
915 /* if we haven't made progress and we have already
916 * acknowledged a pending completion once, then be more
917 * forceful with a restart
919 if (ioat_cleanup_preamble(ioat_chan
, &phys_complete
))
920 __cleanup(ioat_chan
, phys_complete
);
921 else if (test_bit(IOAT_COMPLETION_ACK
, &ioat_chan
->state
)) {
924 chanerr
= readl(ioat_chan
->reg_base
+ IOAT_CHANERR_OFFSET
);
925 dev_err(to_dev(ioat_chan
), "CHANSTS: %#Lx CHANERR: %#x\n",
927 dev_err(to_dev(ioat_chan
), "Errors:\n");
928 ioat_print_chanerrs(ioat_chan
, chanerr
);
930 dev_dbg(to_dev(ioat_chan
), "Active descriptors: %d\n",
931 ioat_ring_active(ioat_chan
));
933 spin_lock_bh(&ioat_chan
->prep_lock
);
934 set_bit(IOAT_CHAN_DOWN
, &ioat_chan
->state
);
935 spin_unlock_bh(&ioat_chan
->prep_lock
);
937 ioat_abort_descs(ioat_chan
);
938 dev_warn(to_dev(ioat_chan
), "Resetting channel...\n");
939 ioat_reset_hw(ioat_chan
);
940 dev_warn(to_dev(ioat_chan
), "Restarting channel...\n");
941 ioat_restart_channel(ioat_chan
);
943 spin_lock_bh(&ioat_chan
->prep_lock
);
944 clear_bit(IOAT_CHAN_DOWN
, &ioat_chan
->state
);
945 spin_unlock_bh(&ioat_chan
->prep_lock
);
946 spin_unlock_bh(&ioat_chan
->cleanup_lock
);
949 set_bit(IOAT_COMPLETION_ACK
, &ioat_chan
->state
);
951 mod_timer(&ioat_chan
->timer
, jiffies
+ COMPLETION_TIMEOUT
);
952 spin_unlock_bh(&ioat_chan
->cleanup_lock
);
956 ioat_tx_status(struct dma_chan
*c
, dma_cookie_t cookie
,
957 struct dma_tx_state
*txstate
)
959 struct ioatdma_chan
*ioat_chan
= to_ioat_chan(c
);
962 ret
= dma_cookie_status(c
, cookie
, txstate
);
963 if (ret
== DMA_COMPLETE
)
966 ioat_cleanup(ioat_chan
);
968 return dma_cookie_status(c
, cookie
, txstate
);
971 int ioat_reset_hw(struct ioatdma_chan
*ioat_chan
)
973 /* throw away whatever the channel was doing and get it
974 * initialized, with ioat3 specific workarounds
976 struct ioatdma_device
*ioat_dma
= ioat_chan
->ioat_dma
;
977 struct pci_dev
*pdev
= ioat_dma
->pdev
;
982 ioat_quiesce(ioat_chan
, msecs_to_jiffies(100));
984 chanerr
= readl(ioat_chan
->reg_base
+ IOAT_CHANERR_OFFSET
);
985 writel(chanerr
, ioat_chan
->reg_base
+ IOAT_CHANERR_OFFSET
);
987 if (ioat_dma
->version
< IOAT_VER_3_3
) {
988 /* clear any pending errors */
989 err
= pci_read_config_dword(pdev
,
990 IOAT_PCI_CHANERR_INT_OFFSET
, &chanerr
);
993 "channel error register unreachable\n");
996 pci_write_config_dword(pdev
,
997 IOAT_PCI_CHANERR_INT_OFFSET
, chanerr
);
999 /* Clear DMAUNCERRSTS Cfg-Reg Parity Error status bit
1000 * (workaround for spurious config parity error after restart)
1002 pci_read_config_word(pdev
, IOAT_PCI_DEVICE_ID_OFFSET
, &dev_id
);
1003 if (dev_id
== PCI_DEVICE_ID_INTEL_IOAT_TBG0
) {
1004 pci_write_config_dword(pdev
,
1005 IOAT_PCI_DMAUNCERRSTS_OFFSET
,
1010 if (is_bwd_ioat(pdev
) && (ioat_dma
->irq_mode
== IOAT_MSIX
)) {
1011 ioat_dma
->msixtba0
= readq(ioat_dma
->reg_base
+ 0x1000);
1012 ioat_dma
->msixdata0
= readq(ioat_dma
->reg_base
+ 0x1008);
1013 ioat_dma
->msixpba
= readq(ioat_dma
->reg_base
+ 0x1800);
1017 err
= ioat_reset_sync(ioat_chan
, msecs_to_jiffies(200));
1019 if (is_bwd_ioat(pdev
) && (ioat_dma
->irq_mode
== IOAT_MSIX
)) {
1020 writeq(ioat_dma
->msixtba0
, ioat_dma
->reg_base
+ 0x1000);
1021 writeq(ioat_dma
->msixdata0
, ioat_dma
->reg_base
+ 0x1008);
1022 writeq(ioat_dma
->msixpba
, ioat_dma
->reg_base
+ 0x1800);
1027 dev_err(&pdev
->dev
, "Failed to reset: %d\n", err
);