auditsc: fix kernel-doc notation
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / dma / ioat_dma.c
blobe4fc33c1c32f89fc99711ca2c759f15e79eeaa62
1 /*
2 * Intel I/OAT DMA Linux driver
3 * Copyright(c) 2004 - 2009 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
12 * more details.
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18 * The full GNU General Public License is included in this distribution in
19 * the file called "COPYING".
24 * This driver supports an Intel I/OAT DMA engine, which does asynchronous
25 * copy operations.
28 #include <linux/init.h>
29 #include <linux/module.h>
30 #include <linux/pci.h>
31 #include <linux/interrupt.h>
32 #include <linux/dmaengine.h>
33 #include <linux/delay.h>
34 #include <linux/dma-mapping.h>
35 #include <linux/workqueue.h>
36 #include <linux/i7300_idle.h>
37 #include "ioatdma.h"
38 #include "ioatdma_registers.h"
39 #include "ioatdma_hw.h"
41 #define to_ioat_chan(chan) container_of(chan, struct ioat_dma_chan, common)
42 #define to_ioatdma_device(dev) container_of(dev, struct ioatdma_device, common)
43 #define to_ioat_desc(lh) container_of(lh, struct ioat_desc_sw, node)
44 #define tx_to_ioat_desc(tx) container_of(tx, struct ioat_desc_sw, async_tx)
46 #define chan_num(ch) ((int)((ch)->reg_base - (ch)->device->reg_base) / 0x80)
47 static int ioat_pending_level = 4;
48 module_param(ioat_pending_level, int, 0644);
49 MODULE_PARM_DESC(ioat_pending_level,
50 "high-water mark for pushing ioat descriptors (default: 4)");
52 #define RESET_DELAY msecs_to_jiffies(100)
53 #define WATCHDOG_DELAY round_jiffies(msecs_to_jiffies(2000))
54 static void ioat_dma_chan_reset_part2(struct work_struct *work);
55 static void ioat_dma_chan_watchdog(struct work_struct *work);
58 * workaround for IOAT ver.3.0 null descriptor issue
59 * (channel returns error when size is 0)
61 #define NULL_DESC_BUFFER_SIZE 1
63 /* internal functions */
64 static void ioat_dma_start_null_desc(struct ioat_dma_chan *ioat_chan);
65 static void ioat_dma_memcpy_cleanup(struct ioat_dma_chan *ioat_chan);
67 static struct ioat_desc_sw *
68 ioat1_dma_get_next_descriptor(struct ioat_dma_chan *ioat_chan);
69 static struct ioat_desc_sw *
70 ioat2_dma_get_next_descriptor(struct ioat_dma_chan *ioat_chan);
72 static inline struct ioat_dma_chan *ioat_lookup_chan_by_index(
73 struct ioatdma_device *device,
74 int index)
76 return device->idx[index];
79 /**
80 * ioat_dma_do_interrupt - handler used for single vector interrupt mode
81 * @irq: interrupt id
82 * @data: interrupt data
84 static irqreturn_t ioat_dma_do_interrupt(int irq, void *data)
86 struct ioatdma_device *instance = data;
87 struct ioat_dma_chan *ioat_chan;
88 unsigned long attnstatus;
89 int bit;
90 u8 intrctrl;
92 intrctrl = readb(instance->reg_base + IOAT_INTRCTRL_OFFSET);
94 if (!(intrctrl & IOAT_INTRCTRL_MASTER_INT_EN))
95 return IRQ_NONE;
97 if (!(intrctrl & IOAT_INTRCTRL_INT_STATUS)) {
98 writeb(intrctrl, instance->reg_base + IOAT_INTRCTRL_OFFSET);
99 return IRQ_NONE;
102 attnstatus = readl(instance->reg_base + IOAT_ATTNSTATUS_OFFSET);
103 for_each_bit(bit, &attnstatus, BITS_PER_LONG) {
104 ioat_chan = ioat_lookup_chan_by_index(instance, bit);
105 tasklet_schedule(&ioat_chan->cleanup_task);
108 writeb(intrctrl, instance->reg_base + IOAT_INTRCTRL_OFFSET);
109 return IRQ_HANDLED;
113 * ioat_dma_do_interrupt_msix - handler used for vector-per-channel interrupt mode
114 * @irq: interrupt id
115 * @data: interrupt data
117 static irqreturn_t ioat_dma_do_interrupt_msix(int irq, void *data)
119 struct ioat_dma_chan *ioat_chan = data;
121 tasklet_schedule(&ioat_chan->cleanup_task);
123 return IRQ_HANDLED;
126 static void ioat_dma_cleanup_tasklet(unsigned long data);
129 * ioat_dma_enumerate_channels - find and initialize the device's channels
130 * @device: the device to be enumerated
132 static int ioat_dma_enumerate_channels(struct ioatdma_device *device)
134 u8 xfercap_scale;
135 u32 xfercap;
136 int i;
137 struct ioat_dma_chan *ioat_chan;
140 * IOAT ver.3 workarounds
142 if (device->version == IOAT_VER_3_0) {
143 u32 chan_err_mask;
144 u16 dev_id;
145 u32 dmauncerrsts;
148 * Write CHANERRMSK_INT with 3E07h to mask out the errors
149 * that can cause stability issues for IOAT ver.3
151 chan_err_mask = 0x3E07;
152 pci_write_config_dword(device->pdev,
153 IOAT_PCI_CHANERRMASK_INT_OFFSET,
154 chan_err_mask);
157 * Clear DMAUNCERRSTS Cfg-Reg Parity Error status bit
158 * (workaround for spurious config parity error after restart)
160 pci_read_config_word(device->pdev,
161 IOAT_PCI_DEVICE_ID_OFFSET,
162 &dev_id);
163 if (dev_id == PCI_DEVICE_ID_INTEL_IOAT_TBG0) {
164 dmauncerrsts = 0x10;
165 pci_write_config_dword(device->pdev,
166 IOAT_PCI_DMAUNCERRSTS_OFFSET,
167 dmauncerrsts);
171 device->common.chancnt = readb(device->reg_base + IOAT_CHANCNT_OFFSET);
172 xfercap_scale = readb(device->reg_base + IOAT_XFERCAP_OFFSET);
173 xfercap = (xfercap_scale == 0 ? -1 : (1UL << xfercap_scale));
175 #ifdef CONFIG_I7300_IDLE_IOAT_CHANNEL
176 if (i7300_idle_platform_probe(NULL, NULL) == 0) {
177 device->common.chancnt--;
179 #endif
180 for (i = 0; i < device->common.chancnt; i++) {
181 ioat_chan = kzalloc(sizeof(*ioat_chan), GFP_KERNEL);
182 if (!ioat_chan) {
183 device->common.chancnt = i;
184 break;
187 ioat_chan->device = device;
188 ioat_chan->reg_base = device->reg_base + (0x80 * (i + 1));
189 ioat_chan->xfercap = xfercap;
190 ioat_chan->desccount = 0;
191 INIT_DELAYED_WORK(&ioat_chan->work, ioat_dma_chan_reset_part2);
192 if (ioat_chan->device->version == IOAT_VER_2_0)
193 writel(IOAT_DCACTRL_CMPL_WRITE_ENABLE |
194 IOAT_DMA_DCA_ANY_CPU,
195 ioat_chan->reg_base + IOAT_DCACTRL_OFFSET);
196 else if (ioat_chan->device->version == IOAT_VER_3_0)
197 writel(IOAT_DMA_DCA_ANY_CPU,
198 ioat_chan->reg_base + IOAT_DCACTRL_OFFSET);
199 spin_lock_init(&ioat_chan->cleanup_lock);
200 spin_lock_init(&ioat_chan->desc_lock);
201 INIT_LIST_HEAD(&ioat_chan->free_desc);
202 INIT_LIST_HEAD(&ioat_chan->used_desc);
203 /* This should be made common somewhere in dmaengine.c */
204 ioat_chan->common.device = &device->common;
205 list_add_tail(&ioat_chan->common.device_node,
206 &device->common.channels);
207 device->idx[i] = ioat_chan;
208 tasklet_init(&ioat_chan->cleanup_task,
209 ioat_dma_cleanup_tasklet,
210 (unsigned long) ioat_chan);
211 tasklet_disable(&ioat_chan->cleanup_task);
213 return device->common.chancnt;
217 * ioat_dma_memcpy_issue_pending - push potentially unrecognized appended
218 * descriptors to hw
219 * @chan: DMA channel handle
221 static inline void __ioat1_dma_memcpy_issue_pending(
222 struct ioat_dma_chan *ioat_chan)
224 ioat_chan->pending = 0;
225 writeb(IOAT_CHANCMD_APPEND, ioat_chan->reg_base + IOAT1_CHANCMD_OFFSET);
228 static void ioat1_dma_memcpy_issue_pending(struct dma_chan *chan)
230 struct ioat_dma_chan *ioat_chan = to_ioat_chan(chan);
232 if (ioat_chan->pending > 0) {
233 spin_lock_bh(&ioat_chan->desc_lock);
234 __ioat1_dma_memcpy_issue_pending(ioat_chan);
235 spin_unlock_bh(&ioat_chan->desc_lock);
239 static inline void __ioat2_dma_memcpy_issue_pending(
240 struct ioat_dma_chan *ioat_chan)
242 ioat_chan->pending = 0;
243 writew(ioat_chan->dmacount,
244 ioat_chan->reg_base + IOAT_CHAN_DMACOUNT_OFFSET);
247 static void ioat2_dma_memcpy_issue_pending(struct dma_chan *chan)
249 struct ioat_dma_chan *ioat_chan = to_ioat_chan(chan);
251 if (ioat_chan->pending > 0) {
252 spin_lock_bh(&ioat_chan->desc_lock);
253 __ioat2_dma_memcpy_issue_pending(ioat_chan);
254 spin_unlock_bh(&ioat_chan->desc_lock);
260 * ioat_dma_chan_reset_part2 - reinit the channel after a reset
262 static void ioat_dma_chan_reset_part2(struct work_struct *work)
264 struct ioat_dma_chan *ioat_chan =
265 container_of(work, struct ioat_dma_chan, work.work);
266 struct ioat_desc_sw *desc;
268 spin_lock_bh(&ioat_chan->cleanup_lock);
269 spin_lock_bh(&ioat_chan->desc_lock);
271 ioat_chan->completion_virt->low = 0;
272 ioat_chan->completion_virt->high = 0;
273 ioat_chan->pending = 0;
276 * count the descriptors waiting, and be sure to do it
277 * right for both the CB1 line and the CB2 ring
279 ioat_chan->dmacount = 0;
280 if (ioat_chan->used_desc.prev) {
281 desc = to_ioat_desc(ioat_chan->used_desc.prev);
282 do {
283 ioat_chan->dmacount++;
284 desc = to_ioat_desc(desc->node.next);
285 } while (&desc->node != ioat_chan->used_desc.next);
289 * write the new starting descriptor address
290 * this puts channel engine into ARMED state
292 desc = to_ioat_desc(ioat_chan->used_desc.prev);
293 switch (ioat_chan->device->version) {
294 case IOAT_VER_1_2:
295 writel(((u64) desc->async_tx.phys) & 0x00000000FFFFFFFF,
296 ioat_chan->reg_base + IOAT1_CHAINADDR_OFFSET_LOW);
297 writel(((u64) desc->async_tx.phys) >> 32,
298 ioat_chan->reg_base + IOAT1_CHAINADDR_OFFSET_HIGH);
300 writeb(IOAT_CHANCMD_START, ioat_chan->reg_base
301 + IOAT_CHANCMD_OFFSET(ioat_chan->device->version));
302 break;
303 case IOAT_VER_2_0:
304 writel(((u64) desc->async_tx.phys) & 0x00000000FFFFFFFF,
305 ioat_chan->reg_base + IOAT2_CHAINADDR_OFFSET_LOW);
306 writel(((u64) desc->async_tx.phys) >> 32,
307 ioat_chan->reg_base + IOAT2_CHAINADDR_OFFSET_HIGH);
309 /* tell the engine to go with what's left to be done */
310 writew(ioat_chan->dmacount,
311 ioat_chan->reg_base + IOAT_CHAN_DMACOUNT_OFFSET);
313 break;
315 dev_err(&ioat_chan->device->pdev->dev,
316 "chan%d reset - %d descs waiting, %d total desc\n",
317 chan_num(ioat_chan), ioat_chan->dmacount, ioat_chan->desccount);
319 spin_unlock_bh(&ioat_chan->desc_lock);
320 spin_unlock_bh(&ioat_chan->cleanup_lock);
324 * ioat_dma_reset_channel - restart a channel
325 * @ioat_chan: IOAT DMA channel handle
327 static void ioat_dma_reset_channel(struct ioat_dma_chan *ioat_chan)
329 u32 chansts, chanerr;
331 if (!ioat_chan->used_desc.prev)
332 return;
334 chanerr = readl(ioat_chan->reg_base + IOAT_CHANERR_OFFSET);
335 chansts = (ioat_chan->completion_virt->low
336 & IOAT_CHANSTS_DMA_TRANSFER_STATUS);
337 if (chanerr) {
338 dev_err(&ioat_chan->device->pdev->dev,
339 "chan%d, CHANSTS = 0x%08x CHANERR = 0x%04x, clearing\n",
340 chan_num(ioat_chan), chansts, chanerr);
341 writel(chanerr, ioat_chan->reg_base + IOAT_CHANERR_OFFSET);
345 * whack it upside the head with a reset
346 * and wait for things to settle out.
347 * force the pending count to a really big negative
348 * to make sure no one forces an issue_pending
349 * while we're waiting.
352 spin_lock_bh(&ioat_chan->desc_lock);
353 ioat_chan->pending = INT_MIN;
354 writeb(IOAT_CHANCMD_RESET,
355 ioat_chan->reg_base
356 + IOAT_CHANCMD_OFFSET(ioat_chan->device->version));
357 spin_unlock_bh(&ioat_chan->desc_lock);
359 /* schedule the 2nd half instead of sleeping a long time */
360 schedule_delayed_work(&ioat_chan->work, RESET_DELAY);
364 * ioat_dma_chan_watchdog - watch for stuck channels
366 static void ioat_dma_chan_watchdog(struct work_struct *work)
368 struct ioatdma_device *device =
369 container_of(work, struct ioatdma_device, work.work);
370 struct ioat_dma_chan *ioat_chan;
371 int i;
373 union {
374 u64 full;
375 struct {
376 u32 low;
377 u32 high;
379 } completion_hw;
380 unsigned long compl_desc_addr_hw;
382 for (i = 0; i < device->common.chancnt; i++) {
383 ioat_chan = ioat_lookup_chan_by_index(device, i);
385 if (ioat_chan->device->version == IOAT_VER_1_2
386 /* have we started processing anything yet */
387 && ioat_chan->last_completion
388 /* have we completed any since last watchdog cycle? */
389 && (ioat_chan->last_completion ==
390 ioat_chan->watchdog_completion)
391 /* has TCP stuck on one cookie since last watchdog? */
392 && (ioat_chan->watchdog_tcp_cookie ==
393 ioat_chan->watchdog_last_tcp_cookie)
394 && (ioat_chan->watchdog_tcp_cookie !=
395 ioat_chan->completed_cookie)
396 /* is there something in the chain to be processed? */
397 /* CB1 chain always has at least the last one processed */
398 && (ioat_chan->used_desc.prev != ioat_chan->used_desc.next)
399 && ioat_chan->pending == 0) {
402 * check CHANSTS register for completed
403 * descriptor address.
404 * if it is different than completion writeback,
405 * it is not zero
406 * and it has changed since the last watchdog
407 * we can assume that channel
408 * is still working correctly
409 * and the problem is in completion writeback.
410 * update completion writeback
411 * with actual CHANSTS value
412 * else
413 * try resetting the channel
416 completion_hw.low = readl(ioat_chan->reg_base +
417 IOAT_CHANSTS_OFFSET_LOW(ioat_chan->device->version));
418 completion_hw.high = readl(ioat_chan->reg_base +
419 IOAT_CHANSTS_OFFSET_HIGH(ioat_chan->device->version));
420 #if (BITS_PER_LONG == 64)
421 compl_desc_addr_hw =
422 completion_hw.full
423 & IOAT_CHANSTS_COMPLETED_DESCRIPTOR_ADDR;
424 #else
425 compl_desc_addr_hw =
426 completion_hw.low & IOAT_LOW_COMPLETION_MASK;
427 #endif
429 if ((compl_desc_addr_hw != 0)
430 && (compl_desc_addr_hw != ioat_chan->watchdog_completion)
431 && (compl_desc_addr_hw != ioat_chan->last_compl_desc_addr_hw)) {
432 ioat_chan->last_compl_desc_addr_hw = compl_desc_addr_hw;
433 ioat_chan->completion_virt->low = completion_hw.low;
434 ioat_chan->completion_virt->high = completion_hw.high;
435 } else {
436 ioat_dma_reset_channel(ioat_chan);
437 ioat_chan->watchdog_completion = 0;
438 ioat_chan->last_compl_desc_addr_hw = 0;
442 * for version 2.0 if there are descriptors yet to be processed
443 * and the last completed hasn't changed since the last watchdog
444 * if they haven't hit the pending level
445 * issue the pending to push them through
446 * else
447 * try resetting the channel
449 } else if (ioat_chan->device->version == IOAT_VER_2_0
450 && ioat_chan->used_desc.prev
451 && ioat_chan->last_completion
452 && ioat_chan->last_completion == ioat_chan->watchdog_completion) {
454 if (ioat_chan->pending < ioat_pending_level)
455 ioat2_dma_memcpy_issue_pending(&ioat_chan->common);
456 else {
457 ioat_dma_reset_channel(ioat_chan);
458 ioat_chan->watchdog_completion = 0;
460 } else {
461 ioat_chan->last_compl_desc_addr_hw = 0;
462 ioat_chan->watchdog_completion
463 = ioat_chan->last_completion;
466 ioat_chan->watchdog_last_tcp_cookie =
467 ioat_chan->watchdog_tcp_cookie;
470 schedule_delayed_work(&device->work, WATCHDOG_DELAY);
473 static dma_cookie_t ioat1_tx_submit(struct dma_async_tx_descriptor *tx)
475 struct ioat_dma_chan *ioat_chan = to_ioat_chan(tx->chan);
476 struct ioat_desc_sw *first = tx_to_ioat_desc(tx);
477 struct ioat_desc_sw *prev, *new;
478 struct ioat_dma_descriptor *hw;
479 dma_cookie_t cookie;
480 LIST_HEAD(new_chain);
481 u32 copy;
482 size_t len;
483 dma_addr_t src, dst;
484 unsigned long orig_flags;
485 unsigned int desc_count = 0;
487 /* src and dest and len are stored in the initial descriptor */
488 len = first->len;
489 src = first->src;
490 dst = first->dst;
491 orig_flags = first->async_tx.flags;
492 new = first;
494 spin_lock_bh(&ioat_chan->desc_lock);
495 prev = to_ioat_desc(ioat_chan->used_desc.prev);
496 prefetch(prev->hw);
497 do {
498 copy = min_t(size_t, len, ioat_chan->xfercap);
500 async_tx_ack(&new->async_tx);
502 hw = new->hw;
503 hw->size = copy;
504 hw->ctl = 0;
505 hw->src_addr = src;
506 hw->dst_addr = dst;
507 hw->next = 0;
509 /* chain together the physical address list for the HW */
510 wmb();
511 prev->hw->next = (u64) new->async_tx.phys;
513 len -= copy;
514 dst += copy;
515 src += copy;
517 list_add_tail(&new->node, &new_chain);
518 desc_count++;
519 prev = new;
520 } while (len && (new = ioat1_dma_get_next_descriptor(ioat_chan)));
522 if (!new) {
523 dev_err(&ioat_chan->device->pdev->dev,
524 "tx submit failed\n");
525 spin_unlock_bh(&ioat_chan->desc_lock);
526 return -ENOMEM;
529 hw->ctl = IOAT_DMA_DESCRIPTOR_CTL_CP_STS;
530 if (first->async_tx.callback) {
531 hw->ctl |= IOAT_DMA_DESCRIPTOR_CTL_INT_GN;
532 if (first != new) {
533 /* move callback into to last desc */
534 new->async_tx.callback = first->async_tx.callback;
535 new->async_tx.callback_param
536 = first->async_tx.callback_param;
537 first->async_tx.callback = NULL;
538 first->async_tx.callback_param = NULL;
542 new->tx_cnt = desc_count;
543 new->async_tx.flags = orig_flags; /* client is in control of this ack */
545 /* store the original values for use in later cleanup */
546 if (new != first) {
547 new->src = first->src;
548 new->dst = first->dst;
549 new->len = first->len;
552 /* cookie incr and addition to used_list must be atomic */
553 cookie = ioat_chan->common.cookie;
554 cookie++;
555 if (cookie < 0)
556 cookie = 1;
557 ioat_chan->common.cookie = new->async_tx.cookie = cookie;
559 /* write address into NextDescriptor field of last desc in chain */
560 to_ioat_desc(ioat_chan->used_desc.prev)->hw->next =
561 first->async_tx.phys;
562 list_splice_tail(&new_chain, &ioat_chan->used_desc);
564 ioat_chan->dmacount += desc_count;
565 ioat_chan->pending += desc_count;
566 if (ioat_chan->pending >= ioat_pending_level)
567 __ioat1_dma_memcpy_issue_pending(ioat_chan);
568 spin_unlock_bh(&ioat_chan->desc_lock);
570 return cookie;
573 static dma_cookie_t ioat2_tx_submit(struct dma_async_tx_descriptor *tx)
575 struct ioat_dma_chan *ioat_chan = to_ioat_chan(tx->chan);
576 struct ioat_desc_sw *first = tx_to_ioat_desc(tx);
577 struct ioat_desc_sw *new;
578 struct ioat_dma_descriptor *hw;
579 dma_cookie_t cookie;
580 u32 copy;
581 size_t len;
582 dma_addr_t src, dst;
583 unsigned long orig_flags;
584 unsigned int desc_count = 0;
586 /* src and dest and len are stored in the initial descriptor */
587 len = first->len;
588 src = first->src;
589 dst = first->dst;
590 orig_flags = first->async_tx.flags;
591 new = first;
594 * ioat_chan->desc_lock is still in force in version 2 path
595 * it gets unlocked at end of this function
597 do {
598 copy = min_t(size_t, len, ioat_chan->xfercap);
600 async_tx_ack(&new->async_tx);
602 hw = new->hw;
603 hw->size = copy;
604 hw->ctl = 0;
605 hw->src_addr = src;
606 hw->dst_addr = dst;
608 len -= copy;
609 dst += copy;
610 src += copy;
611 desc_count++;
612 } while (len && (new = ioat2_dma_get_next_descriptor(ioat_chan)));
614 if (!new) {
615 dev_err(&ioat_chan->device->pdev->dev,
616 "tx submit failed\n");
617 spin_unlock_bh(&ioat_chan->desc_lock);
618 return -ENOMEM;
621 hw->ctl |= IOAT_DMA_DESCRIPTOR_CTL_CP_STS;
622 if (first->async_tx.callback) {
623 hw->ctl |= IOAT_DMA_DESCRIPTOR_CTL_INT_GN;
624 if (first != new) {
625 /* move callback into to last desc */
626 new->async_tx.callback = first->async_tx.callback;
627 new->async_tx.callback_param
628 = first->async_tx.callback_param;
629 first->async_tx.callback = NULL;
630 first->async_tx.callback_param = NULL;
634 new->tx_cnt = desc_count;
635 new->async_tx.flags = orig_flags; /* client is in control of this ack */
637 /* store the original values for use in later cleanup */
638 if (new != first) {
639 new->src = first->src;
640 new->dst = first->dst;
641 new->len = first->len;
644 /* cookie incr and addition to used_list must be atomic */
645 cookie = ioat_chan->common.cookie;
646 cookie++;
647 if (cookie < 0)
648 cookie = 1;
649 ioat_chan->common.cookie = new->async_tx.cookie = cookie;
651 ioat_chan->dmacount += desc_count;
652 ioat_chan->pending += desc_count;
653 if (ioat_chan->pending >= ioat_pending_level)
654 __ioat2_dma_memcpy_issue_pending(ioat_chan);
655 spin_unlock_bh(&ioat_chan->desc_lock);
657 return cookie;
661 * ioat_dma_alloc_descriptor - allocate and return a sw and hw descriptor pair
662 * @ioat_chan: the channel supplying the memory pool for the descriptors
663 * @flags: allocation flags
665 static struct ioat_desc_sw *ioat_dma_alloc_descriptor(
666 struct ioat_dma_chan *ioat_chan,
667 gfp_t flags)
669 struct ioat_dma_descriptor *desc;
670 struct ioat_desc_sw *desc_sw;
671 struct ioatdma_device *ioatdma_device;
672 dma_addr_t phys;
674 ioatdma_device = to_ioatdma_device(ioat_chan->common.device);
675 desc = pci_pool_alloc(ioatdma_device->dma_pool, flags, &phys);
676 if (unlikely(!desc))
677 return NULL;
679 desc_sw = kzalloc(sizeof(*desc_sw), flags);
680 if (unlikely(!desc_sw)) {
681 pci_pool_free(ioatdma_device->dma_pool, desc, phys);
682 return NULL;
685 memset(desc, 0, sizeof(*desc));
686 dma_async_tx_descriptor_init(&desc_sw->async_tx, &ioat_chan->common);
687 switch (ioat_chan->device->version) {
688 case IOAT_VER_1_2:
689 desc_sw->async_tx.tx_submit = ioat1_tx_submit;
690 break;
691 case IOAT_VER_2_0:
692 case IOAT_VER_3_0:
693 desc_sw->async_tx.tx_submit = ioat2_tx_submit;
694 break;
697 desc_sw->hw = desc;
698 desc_sw->async_tx.phys = phys;
700 return desc_sw;
703 static int ioat_initial_desc_count = 256;
704 module_param(ioat_initial_desc_count, int, 0644);
705 MODULE_PARM_DESC(ioat_initial_desc_count,
706 "initial descriptors per channel (default: 256)");
709 * ioat2_dma_massage_chan_desc - link the descriptors into a circle
710 * @ioat_chan: the channel to be massaged
712 static void ioat2_dma_massage_chan_desc(struct ioat_dma_chan *ioat_chan)
714 struct ioat_desc_sw *desc, *_desc;
716 /* setup used_desc */
717 ioat_chan->used_desc.next = ioat_chan->free_desc.next;
718 ioat_chan->used_desc.prev = NULL;
720 /* pull free_desc out of the circle so that every node is a hw
721 * descriptor, but leave it pointing to the list
723 ioat_chan->free_desc.prev->next = ioat_chan->free_desc.next;
724 ioat_chan->free_desc.next->prev = ioat_chan->free_desc.prev;
726 /* circle link the hw descriptors */
727 desc = to_ioat_desc(ioat_chan->free_desc.next);
728 desc->hw->next = to_ioat_desc(desc->node.next)->async_tx.phys;
729 list_for_each_entry_safe(desc, _desc, ioat_chan->free_desc.next, node) {
730 desc->hw->next = to_ioat_desc(desc->node.next)->async_tx.phys;
735 * ioat_dma_alloc_chan_resources - returns the number of allocated descriptors
736 * @chan: the channel to be filled out
738 static int ioat_dma_alloc_chan_resources(struct dma_chan *chan)
740 struct ioat_dma_chan *ioat_chan = to_ioat_chan(chan);
741 struct ioat_desc_sw *desc;
742 u16 chanctrl;
743 u32 chanerr;
744 int i;
745 LIST_HEAD(tmp_list);
747 /* have we already been set up? */
748 if (!list_empty(&ioat_chan->free_desc))
749 return ioat_chan->desccount;
751 /* Setup register to interrupt and write completion status on error */
752 chanctrl = IOAT_CHANCTRL_ERR_INT_EN |
753 IOAT_CHANCTRL_ANY_ERR_ABORT_EN |
754 IOAT_CHANCTRL_ERR_COMPLETION_EN;
755 writew(chanctrl, ioat_chan->reg_base + IOAT_CHANCTRL_OFFSET);
757 chanerr = readl(ioat_chan->reg_base + IOAT_CHANERR_OFFSET);
758 if (chanerr) {
759 dev_err(&ioat_chan->device->pdev->dev,
760 "CHANERR = %x, clearing\n", chanerr);
761 writel(chanerr, ioat_chan->reg_base + IOAT_CHANERR_OFFSET);
764 /* Allocate descriptors */
765 for (i = 0; i < ioat_initial_desc_count; i++) {
766 desc = ioat_dma_alloc_descriptor(ioat_chan, GFP_KERNEL);
767 if (!desc) {
768 dev_err(&ioat_chan->device->pdev->dev,
769 "Only %d initial descriptors\n", i);
770 break;
772 list_add_tail(&desc->node, &tmp_list);
774 spin_lock_bh(&ioat_chan->desc_lock);
775 ioat_chan->desccount = i;
776 list_splice(&tmp_list, &ioat_chan->free_desc);
777 if (ioat_chan->device->version != IOAT_VER_1_2)
778 ioat2_dma_massage_chan_desc(ioat_chan);
779 spin_unlock_bh(&ioat_chan->desc_lock);
781 /* allocate a completion writeback area */
782 /* doing 2 32bit writes to mmio since 1 64b write doesn't work */
783 ioat_chan->completion_virt =
784 pci_pool_alloc(ioat_chan->device->completion_pool,
785 GFP_KERNEL,
786 &ioat_chan->completion_addr);
787 memset(ioat_chan->completion_virt, 0,
788 sizeof(*ioat_chan->completion_virt));
789 writel(((u64) ioat_chan->completion_addr) & 0x00000000FFFFFFFF,
790 ioat_chan->reg_base + IOAT_CHANCMP_OFFSET_LOW);
791 writel(((u64) ioat_chan->completion_addr) >> 32,
792 ioat_chan->reg_base + IOAT_CHANCMP_OFFSET_HIGH);
794 tasklet_enable(&ioat_chan->cleanup_task);
795 ioat_dma_start_null_desc(ioat_chan); /* give chain to dma device */
796 return ioat_chan->desccount;
800 * ioat_dma_free_chan_resources - release all the descriptors
801 * @chan: the channel to be cleaned
803 static void ioat_dma_free_chan_resources(struct dma_chan *chan)
805 struct ioat_dma_chan *ioat_chan = to_ioat_chan(chan);
806 struct ioatdma_device *ioatdma_device = to_ioatdma_device(chan->device);
807 struct ioat_desc_sw *desc, *_desc;
808 int in_use_descs = 0;
810 /* Before freeing channel resources first check
811 * if they have been previously allocated for this channel.
813 if (ioat_chan->desccount == 0)
814 return;
816 tasklet_disable(&ioat_chan->cleanup_task);
817 ioat_dma_memcpy_cleanup(ioat_chan);
819 /* Delay 100ms after reset to allow internal DMA logic to quiesce
820 * before removing DMA descriptor resources.
822 writeb(IOAT_CHANCMD_RESET,
823 ioat_chan->reg_base
824 + IOAT_CHANCMD_OFFSET(ioat_chan->device->version));
825 mdelay(100);
827 spin_lock_bh(&ioat_chan->desc_lock);
828 switch (ioat_chan->device->version) {
829 case IOAT_VER_1_2:
830 list_for_each_entry_safe(desc, _desc,
831 &ioat_chan->used_desc, node) {
832 in_use_descs++;
833 list_del(&desc->node);
834 pci_pool_free(ioatdma_device->dma_pool, desc->hw,
835 desc->async_tx.phys);
836 kfree(desc);
838 list_for_each_entry_safe(desc, _desc,
839 &ioat_chan->free_desc, node) {
840 list_del(&desc->node);
841 pci_pool_free(ioatdma_device->dma_pool, desc->hw,
842 desc->async_tx.phys);
843 kfree(desc);
845 break;
846 case IOAT_VER_2_0:
847 case IOAT_VER_3_0:
848 list_for_each_entry_safe(desc, _desc,
849 ioat_chan->free_desc.next, node) {
850 list_del(&desc->node);
851 pci_pool_free(ioatdma_device->dma_pool, desc->hw,
852 desc->async_tx.phys);
853 kfree(desc);
855 desc = to_ioat_desc(ioat_chan->free_desc.next);
856 pci_pool_free(ioatdma_device->dma_pool, desc->hw,
857 desc->async_tx.phys);
858 kfree(desc);
859 INIT_LIST_HEAD(&ioat_chan->free_desc);
860 INIT_LIST_HEAD(&ioat_chan->used_desc);
861 break;
863 spin_unlock_bh(&ioat_chan->desc_lock);
865 pci_pool_free(ioatdma_device->completion_pool,
866 ioat_chan->completion_virt,
867 ioat_chan->completion_addr);
869 /* one is ok since we left it on there on purpose */
870 if (in_use_descs > 1)
871 dev_err(&ioat_chan->device->pdev->dev,
872 "Freeing %d in use descriptors!\n",
873 in_use_descs - 1);
875 ioat_chan->last_completion = ioat_chan->completion_addr = 0;
876 ioat_chan->pending = 0;
877 ioat_chan->dmacount = 0;
878 ioat_chan->desccount = 0;
879 ioat_chan->watchdog_completion = 0;
880 ioat_chan->last_compl_desc_addr_hw = 0;
881 ioat_chan->watchdog_tcp_cookie =
882 ioat_chan->watchdog_last_tcp_cookie = 0;
886 * ioat_dma_get_next_descriptor - return the next available descriptor
887 * @ioat_chan: IOAT DMA channel handle
889 * Gets the next descriptor from the chain, and must be called with the
890 * channel's desc_lock held. Allocates more descriptors if the channel
891 * has run out.
893 static struct ioat_desc_sw *
894 ioat1_dma_get_next_descriptor(struct ioat_dma_chan *ioat_chan)
896 struct ioat_desc_sw *new;
898 if (!list_empty(&ioat_chan->free_desc)) {
899 new = to_ioat_desc(ioat_chan->free_desc.next);
900 list_del(&new->node);
901 } else {
902 /* try to get another desc */
903 new = ioat_dma_alloc_descriptor(ioat_chan, GFP_ATOMIC);
904 if (!new) {
905 dev_err(&ioat_chan->device->pdev->dev,
906 "alloc failed\n");
907 return NULL;
911 prefetch(new->hw);
912 return new;
915 static struct ioat_desc_sw *
916 ioat2_dma_get_next_descriptor(struct ioat_dma_chan *ioat_chan)
918 struct ioat_desc_sw *new;
921 * used.prev points to where to start processing
922 * used.next points to next free descriptor
923 * if used.prev == NULL, there are none waiting to be processed
924 * if used.next == used.prev.prev, there is only one free descriptor,
925 * and we need to use it to as a noop descriptor before
926 * linking in a new set of descriptors, since the device
927 * has probably already read the pointer to it
929 if (ioat_chan->used_desc.prev &&
930 ioat_chan->used_desc.next == ioat_chan->used_desc.prev->prev) {
932 struct ioat_desc_sw *desc;
933 struct ioat_desc_sw *noop_desc;
934 int i;
936 /* set up the noop descriptor */
937 noop_desc = to_ioat_desc(ioat_chan->used_desc.next);
938 /* set size to non-zero value (channel returns error when size is 0) */
939 noop_desc->hw->size = NULL_DESC_BUFFER_SIZE;
940 noop_desc->hw->ctl = IOAT_DMA_DESCRIPTOR_NUL;
941 noop_desc->hw->src_addr = 0;
942 noop_desc->hw->dst_addr = 0;
944 ioat_chan->used_desc.next = ioat_chan->used_desc.next->next;
945 ioat_chan->pending++;
946 ioat_chan->dmacount++;
948 /* try to get a few more descriptors */
949 for (i = 16; i; i--) {
950 desc = ioat_dma_alloc_descriptor(ioat_chan, GFP_ATOMIC);
951 if (!desc) {
952 dev_err(&ioat_chan->device->pdev->dev,
953 "alloc failed\n");
954 break;
956 list_add_tail(&desc->node, ioat_chan->used_desc.next);
958 desc->hw->next
959 = to_ioat_desc(desc->node.next)->async_tx.phys;
960 to_ioat_desc(desc->node.prev)->hw->next
961 = desc->async_tx.phys;
962 ioat_chan->desccount++;
965 ioat_chan->used_desc.next = noop_desc->node.next;
967 new = to_ioat_desc(ioat_chan->used_desc.next);
968 prefetch(new);
969 ioat_chan->used_desc.next = new->node.next;
971 if (ioat_chan->used_desc.prev == NULL)
972 ioat_chan->used_desc.prev = &new->node;
974 prefetch(new->hw);
975 return new;
978 static struct ioat_desc_sw *ioat_dma_get_next_descriptor(
979 struct ioat_dma_chan *ioat_chan)
981 if (!ioat_chan)
982 return NULL;
984 switch (ioat_chan->device->version) {
985 case IOAT_VER_1_2:
986 return ioat1_dma_get_next_descriptor(ioat_chan);
987 case IOAT_VER_2_0:
988 case IOAT_VER_3_0:
989 return ioat2_dma_get_next_descriptor(ioat_chan);
991 return NULL;
994 static struct dma_async_tx_descriptor *ioat1_dma_prep_memcpy(
995 struct dma_chan *chan,
996 dma_addr_t dma_dest,
997 dma_addr_t dma_src,
998 size_t len,
999 unsigned long flags)
1001 struct ioat_dma_chan *ioat_chan = to_ioat_chan(chan);
1002 struct ioat_desc_sw *new;
1004 spin_lock_bh(&ioat_chan->desc_lock);
1005 new = ioat_dma_get_next_descriptor(ioat_chan);
1006 spin_unlock_bh(&ioat_chan->desc_lock);
1008 if (new) {
1009 new->len = len;
1010 new->dst = dma_dest;
1011 new->src = dma_src;
1012 new->async_tx.flags = flags;
1013 return &new->async_tx;
1014 } else {
1015 dev_err(&ioat_chan->device->pdev->dev,
1016 "chan%d - get_next_desc failed: %d descs waiting, %d total desc\n",
1017 chan_num(ioat_chan), ioat_chan->dmacount, ioat_chan->desccount);
1018 return NULL;
1022 static struct dma_async_tx_descriptor *ioat2_dma_prep_memcpy(
1023 struct dma_chan *chan,
1024 dma_addr_t dma_dest,
1025 dma_addr_t dma_src,
1026 size_t len,
1027 unsigned long flags)
1029 struct ioat_dma_chan *ioat_chan = to_ioat_chan(chan);
1030 struct ioat_desc_sw *new;
1032 spin_lock_bh(&ioat_chan->desc_lock);
1033 new = ioat2_dma_get_next_descriptor(ioat_chan);
1036 * leave ioat_chan->desc_lock set in ioat 2 path
1037 * it will get unlocked at end of tx_submit
1040 if (new) {
1041 new->len = len;
1042 new->dst = dma_dest;
1043 new->src = dma_src;
1044 new->async_tx.flags = flags;
1045 return &new->async_tx;
1046 } else {
1047 spin_unlock_bh(&ioat_chan->desc_lock);
1048 dev_err(&ioat_chan->device->pdev->dev,
1049 "chan%d - get_next_desc failed: %d descs waiting, %d total desc\n",
1050 chan_num(ioat_chan), ioat_chan->dmacount, ioat_chan->desccount);
1051 return NULL;
1055 static void ioat_dma_cleanup_tasklet(unsigned long data)
1057 struct ioat_dma_chan *chan = (void *)data;
1058 ioat_dma_memcpy_cleanup(chan);
1059 writew(IOAT_CHANCTRL_INT_DISABLE,
1060 chan->reg_base + IOAT_CHANCTRL_OFFSET);
1063 static void
1064 ioat_dma_unmap(struct ioat_dma_chan *ioat_chan, struct ioat_desc_sw *desc)
1067 * yes we are unmapping both _page and _single
1068 * alloc'd regions with unmap_page. Is this
1069 * *really* that bad?
1071 if (!(desc->async_tx.flags & DMA_COMPL_SKIP_DEST_UNMAP))
1072 pci_unmap_page(ioat_chan->device->pdev,
1073 pci_unmap_addr(desc, dst),
1074 pci_unmap_len(desc, len),
1075 PCI_DMA_FROMDEVICE);
1077 if (!(desc->async_tx.flags & DMA_COMPL_SKIP_SRC_UNMAP))
1078 pci_unmap_page(ioat_chan->device->pdev,
1079 pci_unmap_addr(desc, src),
1080 pci_unmap_len(desc, len),
1081 PCI_DMA_TODEVICE);
1085 * ioat_dma_memcpy_cleanup - cleanup up finished descriptors
1086 * @chan: ioat channel to be cleaned up
1088 static void ioat_dma_memcpy_cleanup(struct ioat_dma_chan *ioat_chan)
1090 unsigned long phys_complete;
1091 struct ioat_desc_sw *desc, *_desc;
1092 dma_cookie_t cookie = 0;
1093 unsigned long desc_phys;
1094 struct ioat_desc_sw *latest_desc;
1096 prefetch(ioat_chan->completion_virt);
1098 if (!spin_trylock_bh(&ioat_chan->cleanup_lock))
1099 return;
1101 /* The completion writeback can happen at any time,
1102 so reads by the driver need to be atomic operations
1103 The descriptor physical addresses are limited to 32-bits
1104 when the CPU can only do a 32-bit mov */
1106 #if (BITS_PER_LONG == 64)
1107 phys_complete =
1108 ioat_chan->completion_virt->full
1109 & IOAT_CHANSTS_COMPLETED_DESCRIPTOR_ADDR;
1110 #else
1111 phys_complete =
1112 ioat_chan->completion_virt->low & IOAT_LOW_COMPLETION_MASK;
1113 #endif
1115 if ((ioat_chan->completion_virt->full
1116 & IOAT_CHANSTS_DMA_TRANSFER_STATUS) ==
1117 IOAT_CHANSTS_DMA_TRANSFER_STATUS_HALTED) {
1118 dev_err(&ioat_chan->device->pdev->dev,
1119 "Channel halted, chanerr = %x\n",
1120 readl(ioat_chan->reg_base + IOAT_CHANERR_OFFSET));
1122 /* TODO do something to salvage the situation */
1125 if (phys_complete == ioat_chan->last_completion) {
1126 spin_unlock_bh(&ioat_chan->cleanup_lock);
1128 * perhaps we're stuck so hard that the watchdog can't go off?
1129 * try to catch it after 2 seconds
1131 if (ioat_chan->device->version != IOAT_VER_3_0) {
1132 if (time_after(jiffies,
1133 ioat_chan->last_completion_time + HZ*WATCHDOG_DELAY)) {
1134 ioat_dma_chan_watchdog(&(ioat_chan->device->work.work));
1135 ioat_chan->last_completion_time = jiffies;
1138 return;
1140 ioat_chan->last_completion_time = jiffies;
1142 cookie = 0;
1143 if (!spin_trylock_bh(&ioat_chan->desc_lock)) {
1144 spin_unlock_bh(&ioat_chan->cleanup_lock);
1145 return;
1148 switch (ioat_chan->device->version) {
1149 case IOAT_VER_1_2:
1150 list_for_each_entry_safe(desc, _desc,
1151 &ioat_chan->used_desc, node) {
1154 * Incoming DMA requests may use multiple descriptors,
1155 * due to exceeding xfercap, perhaps. If so, only the
1156 * last one will have a cookie, and require unmapping.
1158 if (desc->async_tx.cookie) {
1159 cookie = desc->async_tx.cookie;
1160 ioat_dma_unmap(ioat_chan, desc);
1161 if (desc->async_tx.callback) {
1162 desc->async_tx.callback(desc->async_tx.callback_param);
1163 desc->async_tx.callback = NULL;
1167 if (desc->async_tx.phys != phys_complete) {
1169 * a completed entry, but not the last, so clean
1170 * up if the client is done with the descriptor
1172 if (async_tx_test_ack(&desc->async_tx)) {
1173 list_move_tail(&desc->node,
1174 &ioat_chan->free_desc);
1175 } else
1176 desc->async_tx.cookie = 0;
1177 } else {
1179 * last used desc. Do not remove, so we can
1180 * append from it, but don't look at it next
1181 * time, either
1183 desc->async_tx.cookie = 0;
1185 /* TODO check status bits? */
1186 break;
1189 break;
1190 case IOAT_VER_2_0:
1191 case IOAT_VER_3_0:
1192 /* has some other thread has already cleaned up? */
1193 if (ioat_chan->used_desc.prev == NULL)
1194 break;
1196 /* work backwards to find latest finished desc */
1197 desc = to_ioat_desc(ioat_chan->used_desc.next);
1198 latest_desc = NULL;
1199 do {
1200 desc = to_ioat_desc(desc->node.prev);
1201 desc_phys = (unsigned long)desc->async_tx.phys
1202 & IOAT_CHANSTS_COMPLETED_DESCRIPTOR_ADDR;
1203 if (desc_phys == phys_complete) {
1204 latest_desc = desc;
1205 break;
1207 } while (&desc->node != ioat_chan->used_desc.prev);
1209 if (latest_desc != NULL) {
1211 /* work forwards to clear finished descriptors */
1212 for (desc = to_ioat_desc(ioat_chan->used_desc.prev);
1213 &desc->node != latest_desc->node.next &&
1214 &desc->node != ioat_chan->used_desc.next;
1215 desc = to_ioat_desc(desc->node.next)) {
1216 if (desc->async_tx.cookie) {
1217 cookie = desc->async_tx.cookie;
1218 desc->async_tx.cookie = 0;
1219 ioat_dma_unmap(ioat_chan, desc);
1220 if (desc->async_tx.callback) {
1221 desc->async_tx.callback(desc->async_tx.callback_param);
1222 desc->async_tx.callback = NULL;
1227 /* move used.prev up beyond those that are finished */
1228 if (&desc->node == ioat_chan->used_desc.next)
1229 ioat_chan->used_desc.prev = NULL;
1230 else
1231 ioat_chan->used_desc.prev = &desc->node;
1233 break;
1236 spin_unlock_bh(&ioat_chan->desc_lock);
1238 ioat_chan->last_completion = phys_complete;
1239 if (cookie != 0)
1240 ioat_chan->completed_cookie = cookie;
1242 spin_unlock_bh(&ioat_chan->cleanup_lock);
1246 * ioat_dma_is_complete - poll the status of a IOAT DMA transaction
1247 * @chan: IOAT DMA channel handle
1248 * @cookie: DMA transaction identifier
1249 * @done: if not %NULL, updated with last completed transaction
1250 * @used: if not %NULL, updated with last used transaction
1252 static enum dma_status ioat_dma_is_complete(struct dma_chan *chan,
1253 dma_cookie_t cookie,
1254 dma_cookie_t *done,
1255 dma_cookie_t *used)
1257 struct ioat_dma_chan *ioat_chan = to_ioat_chan(chan);
1258 dma_cookie_t last_used;
1259 dma_cookie_t last_complete;
1260 enum dma_status ret;
1262 last_used = chan->cookie;
1263 last_complete = ioat_chan->completed_cookie;
1264 ioat_chan->watchdog_tcp_cookie = cookie;
1266 if (done)
1267 *done = last_complete;
1268 if (used)
1269 *used = last_used;
1271 ret = dma_async_is_complete(cookie, last_complete, last_used);
1272 if (ret == DMA_SUCCESS)
1273 return ret;
1275 ioat_dma_memcpy_cleanup(ioat_chan);
1277 last_used = chan->cookie;
1278 last_complete = ioat_chan->completed_cookie;
1280 if (done)
1281 *done = last_complete;
1282 if (used)
1283 *used = last_used;
1285 return dma_async_is_complete(cookie, last_complete, last_used);
1288 static void ioat_dma_start_null_desc(struct ioat_dma_chan *ioat_chan)
1290 struct ioat_desc_sw *desc;
1292 spin_lock_bh(&ioat_chan->desc_lock);
1294 desc = ioat_dma_get_next_descriptor(ioat_chan);
1296 if (!desc) {
1297 dev_err(&ioat_chan->device->pdev->dev,
1298 "Unable to start null desc - get next desc failed\n");
1299 spin_unlock_bh(&ioat_chan->desc_lock);
1300 return;
1303 desc->hw->ctl = IOAT_DMA_DESCRIPTOR_NUL
1304 | IOAT_DMA_DESCRIPTOR_CTL_INT_GN
1305 | IOAT_DMA_DESCRIPTOR_CTL_CP_STS;
1306 /* set size to non-zero value (channel returns error when size is 0) */
1307 desc->hw->size = NULL_DESC_BUFFER_SIZE;
1308 desc->hw->src_addr = 0;
1309 desc->hw->dst_addr = 0;
1310 async_tx_ack(&desc->async_tx);
1311 switch (ioat_chan->device->version) {
1312 case IOAT_VER_1_2:
1313 desc->hw->next = 0;
1314 list_add_tail(&desc->node, &ioat_chan->used_desc);
1316 writel(((u64) desc->async_tx.phys) & 0x00000000FFFFFFFF,
1317 ioat_chan->reg_base + IOAT1_CHAINADDR_OFFSET_LOW);
1318 writel(((u64) desc->async_tx.phys) >> 32,
1319 ioat_chan->reg_base + IOAT1_CHAINADDR_OFFSET_HIGH);
1321 writeb(IOAT_CHANCMD_START, ioat_chan->reg_base
1322 + IOAT_CHANCMD_OFFSET(ioat_chan->device->version));
1323 break;
1324 case IOAT_VER_2_0:
1325 case IOAT_VER_3_0:
1326 writel(((u64) desc->async_tx.phys) & 0x00000000FFFFFFFF,
1327 ioat_chan->reg_base + IOAT2_CHAINADDR_OFFSET_LOW);
1328 writel(((u64) desc->async_tx.phys) >> 32,
1329 ioat_chan->reg_base + IOAT2_CHAINADDR_OFFSET_HIGH);
1331 ioat_chan->dmacount++;
1332 __ioat2_dma_memcpy_issue_pending(ioat_chan);
1333 break;
1335 spin_unlock_bh(&ioat_chan->desc_lock);
1339 * Perform a IOAT transaction to verify the HW works.
1341 #define IOAT_TEST_SIZE 2000
1343 static void ioat_dma_test_callback(void *dma_async_param)
1345 struct completion *cmp = dma_async_param;
1347 complete(cmp);
1351 * ioat_dma_self_test - Perform a IOAT transaction to verify the HW works.
1352 * @device: device to be tested
1354 static int ioat_dma_self_test(struct ioatdma_device *device)
1356 int i;
1357 u8 *src;
1358 u8 *dest;
1359 struct dma_chan *dma_chan;
1360 struct dma_async_tx_descriptor *tx;
1361 dma_addr_t dma_dest, dma_src;
1362 dma_cookie_t cookie;
1363 int err = 0;
1364 struct completion cmp;
1365 unsigned long tmo;
1367 src = kzalloc(sizeof(u8) * IOAT_TEST_SIZE, GFP_KERNEL);
1368 if (!src)
1369 return -ENOMEM;
1370 dest = kzalloc(sizeof(u8) * IOAT_TEST_SIZE, GFP_KERNEL);
1371 if (!dest) {
1372 kfree(src);
1373 return -ENOMEM;
1376 /* Fill in src buffer */
1377 for (i = 0; i < IOAT_TEST_SIZE; i++)
1378 src[i] = (u8)i;
1380 /* Start copy, using first DMA channel */
1381 dma_chan = container_of(device->common.channels.next,
1382 struct dma_chan,
1383 device_node);
1384 if (device->common.device_alloc_chan_resources(dma_chan) < 1) {
1385 dev_err(&device->pdev->dev,
1386 "selftest cannot allocate chan resource\n");
1387 err = -ENODEV;
1388 goto out;
1391 dma_src = dma_map_single(dma_chan->device->dev, src, IOAT_TEST_SIZE,
1392 DMA_TO_DEVICE);
1393 dma_dest = dma_map_single(dma_chan->device->dev, dest, IOAT_TEST_SIZE,
1394 DMA_FROM_DEVICE);
1395 tx = device->common.device_prep_dma_memcpy(dma_chan, dma_dest, dma_src,
1396 IOAT_TEST_SIZE, 0);
1397 if (!tx) {
1398 dev_err(&device->pdev->dev,
1399 "Self-test prep failed, disabling\n");
1400 err = -ENODEV;
1401 goto free_resources;
1404 async_tx_ack(tx);
1405 init_completion(&cmp);
1406 tx->callback = ioat_dma_test_callback;
1407 tx->callback_param = &cmp;
1408 cookie = tx->tx_submit(tx);
1409 if (cookie < 0) {
1410 dev_err(&device->pdev->dev,
1411 "Self-test setup failed, disabling\n");
1412 err = -ENODEV;
1413 goto free_resources;
1415 device->common.device_issue_pending(dma_chan);
1417 tmo = wait_for_completion_timeout(&cmp, msecs_to_jiffies(3000));
1419 if (tmo == 0 ||
1420 device->common.device_is_tx_complete(dma_chan, cookie, NULL, NULL)
1421 != DMA_SUCCESS) {
1422 dev_err(&device->pdev->dev,
1423 "Self-test copy timed out, disabling\n");
1424 err = -ENODEV;
1425 goto free_resources;
1427 if (memcmp(src, dest, IOAT_TEST_SIZE)) {
1428 dev_err(&device->pdev->dev,
1429 "Self-test copy failed compare, disabling\n");
1430 err = -ENODEV;
1431 goto free_resources;
1434 free_resources:
1435 device->common.device_free_chan_resources(dma_chan);
1436 out:
1437 kfree(src);
1438 kfree(dest);
1439 return err;
1442 static char ioat_interrupt_style[32] = "msix";
1443 module_param_string(ioat_interrupt_style, ioat_interrupt_style,
1444 sizeof(ioat_interrupt_style), 0644);
1445 MODULE_PARM_DESC(ioat_interrupt_style,
1446 "set ioat interrupt style: msix (default), "
1447 "msix-single-vector, msi, intx)");
1450 * ioat_dma_setup_interrupts - setup interrupt handler
1451 * @device: ioat device
1453 static int ioat_dma_setup_interrupts(struct ioatdma_device *device)
1455 struct ioat_dma_chan *ioat_chan;
1456 int err, i, j, msixcnt;
1457 u8 intrctrl = 0;
1459 if (!strcmp(ioat_interrupt_style, "msix"))
1460 goto msix;
1461 if (!strcmp(ioat_interrupt_style, "msix-single-vector"))
1462 goto msix_single_vector;
1463 if (!strcmp(ioat_interrupt_style, "msi"))
1464 goto msi;
1465 if (!strcmp(ioat_interrupt_style, "intx"))
1466 goto intx;
1467 dev_err(&device->pdev->dev, "invalid ioat_interrupt_style %s\n",
1468 ioat_interrupt_style);
1469 goto err_no_irq;
1471 msix:
1472 /* The number of MSI-X vectors should equal the number of channels */
1473 msixcnt = device->common.chancnt;
1474 for (i = 0; i < msixcnt; i++)
1475 device->msix_entries[i].entry = i;
1477 err = pci_enable_msix(device->pdev, device->msix_entries, msixcnt);
1478 if (err < 0)
1479 goto msi;
1480 if (err > 0)
1481 goto msix_single_vector;
1483 for (i = 0; i < msixcnt; i++) {
1484 ioat_chan = ioat_lookup_chan_by_index(device, i);
1485 err = request_irq(device->msix_entries[i].vector,
1486 ioat_dma_do_interrupt_msix,
1487 0, "ioat-msix", ioat_chan);
1488 if (err) {
1489 for (j = 0; j < i; j++) {
1490 ioat_chan =
1491 ioat_lookup_chan_by_index(device, j);
1492 free_irq(device->msix_entries[j].vector,
1493 ioat_chan);
1495 goto msix_single_vector;
1498 intrctrl |= IOAT_INTRCTRL_MSIX_VECTOR_CONTROL;
1499 device->irq_mode = msix_multi_vector;
1500 goto done;
1502 msix_single_vector:
1503 device->msix_entries[0].entry = 0;
1504 err = pci_enable_msix(device->pdev, device->msix_entries, 1);
1505 if (err)
1506 goto msi;
1508 err = request_irq(device->msix_entries[0].vector, ioat_dma_do_interrupt,
1509 0, "ioat-msix", device);
1510 if (err) {
1511 pci_disable_msix(device->pdev);
1512 goto msi;
1514 device->irq_mode = msix_single_vector;
1515 goto done;
1517 msi:
1518 err = pci_enable_msi(device->pdev);
1519 if (err)
1520 goto intx;
1522 err = request_irq(device->pdev->irq, ioat_dma_do_interrupt,
1523 0, "ioat-msi", device);
1524 if (err) {
1525 pci_disable_msi(device->pdev);
1526 goto intx;
1529 * CB 1.2 devices need a bit set in configuration space to enable MSI
1531 if (device->version == IOAT_VER_1_2) {
1532 u32 dmactrl;
1533 pci_read_config_dword(device->pdev,
1534 IOAT_PCI_DMACTRL_OFFSET, &dmactrl);
1535 dmactrl |= IOAT_PCI_DMACTRL_MSI_EN;
1536 pci_write_config_dword(device->pdev,
1537 IOAT_PCI_DMACTRL_OFFSET, dmactrl);
1539 device->irq_mode = msi;
1540 goto done;
1542 intx:
1543 err = request_irq(device->pdev->irq, ioat_dma_do_interrupt,
1544 IRQF_SHARED, "ioat-intx", device);
1545 if (err)
1546 goto err_no_irq;
1547 device->irq_mode = intx;
1549 done:
1550 intrctrl |= IOAT_INTRCTRL_MASTER_INT_EN;
1551 writeb(intrctrl, device->reg_base + IOAT_INTRCTRL_OFFSET);
1552 return 0;
1554 err_no_irq:
1555 /* Disable all interrupt generation */
1556 writeb(0, device->reg_base + IOAT_INTRCTRL_OFFSET);
1557 dev_err(&device->pdev->dev, "no usable interrupts\n");
1558 device->irq_mode = none;
1559 return -1;
1563 * ioat_dma_remove_interrupts - remove whatever interrupts were set
1564 * @device: ioat device
1566 static void ioat_dma_remove_interrupts(struct ioatdma_device *device)
1568 struct ioat_dma_chan *ioat_chan;
1569 int i;
1571 /* Disable all interrupt generation */
1572 writeb(0, device->reg_base + IOAT_INTRCTRL_OFFSET);
1574 switch (device->irq_mode) {
1575 case msix_multi_vector:
1576 for (i = 0; i < device->common.chancnt; i++) {
1577 ioat_chan = ioat_lookup_chan_by_index(device, i);
1578 free_irq(device->msix_entries[i].vector, ioat_chan);
1580 pci_disable_msix(device->pdev);
1581 break;
1582 case msix_single_vector:
1583 free_irq(device->msix_entries[0].vector, device);
1584 pci_disable_msix(device->pdev);
1585 break;
1586 case msi:
1587 free_irq(device->pdev->irq, device);
1588 pci_disable_msi(device->pdev);
1589 break;
1590 case intx:
1591 free_irq(device->pdev->irq, device);
1592 break;
1593 case none:
1594 dev_warn(&device->pdev->dev,
1595 "call to %s without interrupts setup\n", __func__);
1597 device->irq_mode = none;
1600 struct ioatdma_device *ioat_dma_probe(struct pci_dev *pdev,
1601 void __iomem *iobase)
1603 int err;
1604 struct ioatdma_device *device;
1606 device = kzalloc(sizeof(*device), GFP_KERNEL);
1607 if (!device) {
1608 err = -ENOMEM;
1609 goto err_kzalloc;
1611 device->pdev = pdev;
1612 device->reg_base = iobase;
1613 device->version = readb(device->reg_base + IOAT_VER_OFFSET);
1615 /* DMA coherent memory pool for DMA descriptor allocations */
1616 device->dma_pool = pci_pool_create("dma_desc_pool", pdev,
1617 sizeof(struct ioat_dma_descriptor),
1618 64, 0);
1619 if (!device->dma_pool) {
1620 err = -ENOMEM;
1621 goto err_dma_pool;
1624 device->completion_pool = pci_pool_create("completion_pool", pdev,
1625 sizeof(u64), SMP_CACHE_BYTES,
1626 SMP_CACHE_BYTES);
1627 if (!device->completion_pool) {
1628 err = -ENOMEM;
1629 goto err_completion_pool;
1632 INIT_LIST_HEAD(&device->common.channels);
1633 ioat_dma_enumerate_channels(device);
1635 device->common.device_alloc_chan_resources =
1636 ioat_dma_alloc_chan_resources;
1637 device->common.device_free_chan_resources =
1638 ioat_dma_free_chan_resources;
1639 device->common.dev = &pdev->dev;
1641 dma_cap_set(DMA_MEMCPY, device->common.cap_mask);
1642 device->common.device_is_tx_complete = ioat_dma_is_complete;
1643 switch (device->version) {
1644 case IOAT_VER_1_2:
1645 device->common.device_prep_dma_memcpy = ioat1_dma_prep_memcpy;
1646 device->common.device_issue_pending =
1647 ioat1_dma_memcpy_issue_pending;
1648 break;
1649 case IOAT_VER_2_0:
1650 case IOAT_VER_3_0:
1651 device->common.device_prep_dma_memcpy = ioat2_dma_prep_memcpy;
1652 device->common.device_issue_pending =
1653 ioat2_dma_memcpy_issue_pending;
1654 break;
1657 dev_err(&device->pdev->dev,
1658 "Intel(R) I/OAT DMA Engine found,"
1659 " %d channels, device version 0x%02x, driver version %s\n",
1660 device->common.chancnt, device->version, IOAT_DMA_VERSION);
1662 if (!device->common.chancnt) {
1663 dev_err(&device->pdev->dev,
1664 "Intel(R) I/OAT DMA Engine problem found: "
1665 "zero channels detected\n");
1666 goto err_setup_interrupts;
1669 err = ioat_dma_setup_interrupts(device);
1670 if (err)
1671 goto err_setup_interrupts;
1673 err = ioat_dma_self_test(device);
1674 if (err)
1675 goto err_self_test;
1677 ioat_set_tcp_copy_break(device);
1679 dma_async_device_register(&device->common);
1681 if (device->version != IOAT_VER_3_0) {
1682 INIT_DELAYED_WORK(&device->work, ioat_dma_chan_watchdog);
1683 schedule_delayed_work(&device->work,
1684 WATCHDOG_DELAY);
1687 return device;
1689 err_self_test:
1690 ioat_dma_remove_interrupts(device);
1691 err_setup_interrupts:
1692 pci_pool_destroy(device->completion_pool);
1693 err_completion_pool:
1694 pci_pool_destroy(device->dma_pool);
1695 err_dma_pool:
1696 kfree(device);
1697 err_kzalloc:
1698 dev_err(&pdev->dev,
1699 "Intel(R) I/OAT DMA Engine initialization failed\n");
1700 return NULL;
1703 void ioat_dma_remove(struct ioatdma_device *device)
1705 struct dma_chan *chan, *_chan;
1706 struct ioat_dma_chan *ioat_chan;
1708 if (device->version != IOAT_VER_3_0)
1709 cancel_delayed_work(&device->work);
1711 ioat_dma_remove_interrupts(device);
1713 dma_async_device_unregister(&device->common);
1715 pci_pool_destroy(device->dma_pool);
1716 pci_pool_destroy(device->completion_pool);
1718 iounmap(device->reg_base);
1719 pci_release_regions(device->pdev);
1720 pci_disable_device(device->pdev);
1722 list_for_each_entry_safe(chan, _chan,
1723 &device->common.channels, device_node) {
1724 ioat_chan = to_ioat_chan(chan);
1725 list_del(&chan->device_node);
1726 kfree(ioat_chan);
1728 kfree(device);