Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1 | /* |
Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 2 | * Intel I/OAT DMA Linux driver |
Maciej Sosnowski | 211a22c | 2009-02-26 11:05:43 +0100 | [diff] [blame] | 3 | * Copyright(c) 2004 - 2009 Intel Corporation. |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify it |
Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 6 | * under the terms and conditions of the GNU General Public License, |
| 7 | * version 2, as published by the Free Software Foundation. |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 8 | * |
| 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. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License along with |
Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 15 | * this program; if not, write to the Free Software Foundation, Inc., |
| 16 | * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 17 | * |
Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 18 | * The full GNU General Public License is included in this distribution in |
| 19 | * the file called "COPYING". |
| 20 | * |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 21 | */ |
| 22 | |
| 23 | /* |
| 24 | * This driver supports an Intel I/OAT DMA engine, which does asynchronous |
| 25 | * copy operations. |
| 26 | */ |
| 27 | |
| 28 | #include <linux/init.h> |
| 29 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 30 | #include <linux/slab.h> |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 31 | #include <linux/pci.h> |
| 32 | #include <linux/interrupt.h> |
| 33 | #include <linux/dmaengine.h> |
| 34 | #include <linux/delay.h> |
David S. Miller | 6b00c92 | 2006-05-23 17:37:58 -0700 | [diff] [blame] | 35 | #include <linux/dma-mapping.h> |
Maciej Sosnowski | 09177e8 | 2008-07-22 10:07:33 -0700 | [diff] [blame] | 36 | #include <linux/workqueue.h> |
Paul Gortmaker | 70c7160 | 2011-05-22 16:47:17 -0400 | [diff] [blame] | 37 | #include <linux/prefetch.h> |
Venki Pallipadi | 3ad0b02 | 2008-10-22 16:34:52 -0700 | [diff] [blame] | 38 | #include <linux/i7300_idle.h> |
Dan Williams | 584ec22 | 2009-07-28 14:32:12 -0700 | [diff] [blame] | 39 | #include "dma.h" |
| 40 | #include "registers.h" |
| 41 | #include "hw.h" |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 42 | |
Russell King - ARM Linux | d2ebfb3 | 2012-03-06 22:34:26 +0000 | [diff] [blame] | 43 | #include "../dmaengine.h" |
| 44 | |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 45 | int ioat_pending_level = 4; |
Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 46 | module_param(ioat_pending_level, int, 0644); |
| 47 | MODULE_PARM_DESC(ioat_pending_level, |
| 48 | "high-water mark for pushing ioat descriptors (default: 4)"); |
| 49 | |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 50 | /* internal functions */ |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 51 | static void ioat1_cleanup(struct ioat_dma_chan *ioat); |
| 52 | static void ioat1_dma_start_null_desc(struct ioat_dma_chan *ioat); |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 53 | |
| 54 | /** |
| 55 | * ioat_dma_do_interrupt - handler used for single vector interrupt mode |
| 56 | * @irq: interrupt id |
| 57 | * @data: interrupt data |
| 58 | */ |
| 59 | static irqreturn_t ioat_dma_do_interrupt(int irq, void *data) |
| 60 | { |
| 61 | struct ioatdma_device *instance = data; |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 62 | struct ioat_chan_common *chan; |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 63 | unsigned long attnstatus; |
| 64 | int bit; |
| 65 | u8 intrctrl; |
| 66 | |
| 67 | intrctrl = readb(instance->reg_base + IOAT_INTRCTRL_OFFSET); |
| 68 | |
| 69 | if (!(intrctrl & IOAT_INTRCTRL_MASTER_INT_EN)) |
| 70 | return IRQ_NONE; |
| 71 | |
| 72 | if (!(intrctrl & IOAT_INTRCTRL_INT_STATUS)) { |
| 73 | writeb(intrctrl, instance->reg_base + IOAT_INTRCTRL_OFFSET); |
| 74 | return IRQ_NONE; |
| 75 | } |
| 76 | |
| 77 | attnstatus = readl(instance->reg_base + IOAT_ATTNSTATUS_OFFSET); |
Akinobu Mita | 984b3f5 | 2010-03-05 13:41:37 -0800 | [diff] [blame] | 78 | for_each_set_bit(bit, &attnstatus, BITS_PER_LONG) { |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 79 | chan = ioat_chan_by_index(instance, bit); |
Dan Williams | da87ca4 | 2014-02-19 16:19:35 -0800 | [diff] [blame^] | 80 | if (test_bit(IOAT_RUN, &chan->state)) |
| 81 | tasklet_schedule(&chan->cleanup_task); |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | writeb(intrctrl, instance->reg_base + IOAT_INTRCTRL_OFFSET); |
| 85 | return IRQ_HANDLED; |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * ioat_dma_do_interrupt_msix - handler used for vector-per-channel interrupt mode |
| 90 | * @irq: interrupt id |
| 91 | * @data: interrupt data |
| 92 | */ |
| 93 | static irqreturn_t ioat_dma_do_interrupt_msix(int irq, void *data) |
| 94 | { |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 95 | struct ioat_chan_common *chan = data; |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 96 | |
Dan Williams | da87ca4 | 2014-02-19 16:19:35 -0800 | [diff] [blame^] | 97 | if (test_bit(IOAT_RUN, &chan->state)) |
| 98 | tasklet_schedule(&chan->cleanup_task); |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 99 | |
| 100 | return IRQ_HANDLED; |
| 101 | } |
| 102 | |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 103 | /* common channel initialization */ |
Dan Williams | aa4d72a | 2010-03-03 21:21:13 -0700 | [diff] [blame] | 104 | void ioat_init_channel(struct ioatdma_device *device, struct ioat_chan_common *chan, int idx) |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 105 | { |
| 106 | struct dma_device *dma = &device->common; |
Dan Williams | aa4d72a | 2010-03-03 21:21:13 -0700 | [diff] [blame] | 107 | struct dma_chan *c = &chan->common; |
| 108 | unsigned long data = (unsigned long) c; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 109 | |
| 110 | chan->device = device; |
| 111 | chan->reg_base = device->reg_base + (0x80 * (idx + 1)); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 112 | spin_lock_init(&chan->cleanup_lock); |
| 113 | chan->common.device = dma; |
Russell King - ARM Linux | 8ac6954 | 2012-03-06 22:36:27 +0000 | [diff] [blame] | 114 | dma_cookie_init(&chan->common); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 115 | list_add_tail(&chan->common.device_node, &dma->channels); |
| 116 | device->idx[idx] = chan; |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 117 | init_timer(&chan->timer); |
Dan Williams | aa4d72a | 2010-03-03 21:21:13 -0700 | [diff] [blame] | 118 | chan->timer.function = device->timer_fn; |
| 119 | chan->timer.data = data; |
| 120 | tasklet_init(&chan->cleanup_task, device->cleanup_fn, data); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 121 | } |
| 122 | |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 123 | /** |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 124 | * ioat1_dma_enumerate_channels - find and initialize the device's channels |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 125 | * @device: the device to be enumerated |
| 126 | */ |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 127 | static int ioat1_enumerate_channels(struct ioatdma_device *device) |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 128 | { |
| 129 | u8 xfercap_scale; |
| 130 | u32 xfercap; |
| 131 | int i; |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 132 | struct ioat_dma_chan *ioat; |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 133 | struct device *dev = &device->pdev->dev; |
Dan Williams | f2427e2 | 2009-07-28 14:42:38 -0700 | [diff] [blame] | 134 | struct dma_device *dma = &device->common; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 135 | |
Dan Williams | f2427e2 | 2009-07-28 14:42:38 -0700 | [diff] [blame] | 136 | INIT_LIST_HEAD(&dma->channels); |
| 137 | dma->chancnt = readb(device->reg_base + IOAT_CHANCNT_OFFSET); |
Dan Williams | bb32078 | 2009-09-08 12:01:14 -0700 | [diff] [blame] | 138 | dma->chancnt &= 0x1f; /* bits [4:0] valid */ |
| 139 | if (dma->chancnt > ARRAY_SIZE(device->idx)) { |
| 140 | dev_warn(dev, "(%d) exceeds max supported channels (%zu)\n", |
| 141 | dma->chancnt, ARRAY_SIZE(device->idx)); |
| 142 | dma->chancnt = ARRAY_SIZE(device->idx); |
| 143 | } |
Chris Leech | e382881 | 2007-03-08 09:57:35 -0800 | [diff] [blame] | 144 | xfercap_scale = readb(device->reg_base + IOAT_XFERCAP_OFFSET); |
Dan Williams | bb32078 | 2009-09-08 12:01:14 -0700 | [diff] [blame] | 145 | xfercap_scale &= 0x1f; /* bits [4:0] valid */ |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 146 | xfercap = (xfercap_scale == 0 ? -1 : (1UL << xfercap_scale)); |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 147 | dev_dbg(dev, "%s: xfercap = %d\n", __func__, xfercap); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 148 | |
Venki Pallipadi | f371be6 | 2008-10-23 15:39:06 -0700 | [diff] [blame] | 149 | #ifdef CONFIG_I7300_IDLE_IOAT_CHANNEL |
Dan Williams | f2427e2 | 2009-07-28 14:42:38 -0700 | [diff] [blame] | 150 | if (i7300_idle_platform_probe(NULL, NULL, 1) == 0) |
| 151 | dma->chancnt--; |
Andy Henroid | 27471fd | 2008-10-09 11:45:22 -0700 | [diff] [blame] | 152 | #endif |
Dan Williams | f2427e2 | 2009-07-28 14:42:38 -0700 | [diff] [blame] | 153 | for (i = 0; i < dma->chancnt; i++) { |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 154 | ioat = devm_kzalloc(dev, sizeof(*ioat), GFP_KERNEL); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 155 | if (!ioat) |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 156 | break; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 157 | |
Dan Williams | aa4d72a | 2010-03-03 21:21:13 -0700 | [diff] [blame] | 158 | ioat_init_channel(device, &ioat->base, i); |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 159 | ioat->xfercap = xfercap; |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 160 | spin_lock_init(&ioat->desc_lock); |
| 161 | INIT_LIST_HEAD(&ioat->free_desc); |
| 162 | INIT_LIST_HEAD(&ioat->used_desc); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 163 | } |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 164 | dma->chancnt = i; |
| 165 | return i; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 166 | } |
| 167 | |
Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 168 | /** |
| 169 | * ioat_dma_memcpy_issue_pending - push potentially unrecognized appended |
| 170 | * descriptors to hw |
| 171 | * @chan: DMA channel handle |
| 172 | */ |
Dan Williams | bc3c702 | 2009-07-28 14:33:42 -0700 | [diff] [blame] | 173 | static inline void |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 174 | __ioat1_dma_memcpy_issue_pending(struct ioat_dma_chan *ioat) |
Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 175 | { |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 176 | void __iomem *reg_base = ioat->base.reg_base; |
| 177 | |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 178 | dev_dbg(to_dev(&ioat->base), "%s: pending: %d\n", |
| 179 | __func__, ioat->pending); |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 180 | ioat->pending = 0; |
| 181 | writeb(IOAT_CHANCMD_APPEND, reg_base + IOAT1_CHANCMD_OFFSET); |
Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | static void ioat1_dma_memcpy_issue_pending(struct dma_chan *chan) |
| 185 | { |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 186 | struct ioat_dma_chan *ioat = to_ioat_chan(chan); |
Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 187 | |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 188 | if (ioat->pending > 0) { |
| 189 | spin_lock_bh(&ioat->desc_lock); |
| 190 | __ioat1_dma_memcpy_issue_pending(ioat); |
| 191 | spin_unlock_bh(&ioat->desc_lock); |
Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 192 | } |
| 193 | } |
| 194 | |
Maciej Sosnowski | 09177e8 | 2008-07-22 10:07:33 -0700 | [diff] [blame] | 195 | /** |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 196 | * ioat1_reset_channel - restart a channel |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 197 | * @ioat: IOAT DMA channel handle |
Maciej Sosnowski | 09177e8 | 2008-07-22 10:07:33 -0700 | [diff] [blame] | 198 | */ |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 199 | static void ioat1_reset_channel(struct ioat_dma_chan *ioat) |
Maciej Sosnowski | 09177e8 | 2008-07-22 10:07:33 -0700 | [diff] [blame] | 200 | { |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 201 | struct ioat_chan_common *chan = &ioat->base; |
| 202 | void __iomem *reg_base = chan->reg_base; |
Maciej Sosnowski | 09177e8 | 2008-07-22 10:07:33 -0700 | [diff] [blame] | 203 | u32 chansts, chanerr; |
| 204 | |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 205 | dev_warn(to_dev(chan), "reset\n"); |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 206 | chanerr = readl(reg_base + IOAT_CHANERR_OFFSET); |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 207 | chansts = *chan->completion & IOAT_CHANSTS_STATUS; |
Maciej Sosnowski | 09177e8 | 2008-07-22 10:07:33 -0700 | [diff] [blame] | 208 | if (chanerr) { |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 209 | dev_err(to_dev(chan), |
Maciej Sosnowski | 09177e8 | 2008-07-22 10:07:33 -0700 | [diff] [blame] | 210 | "chan%d, CHANSTS = 0x%08x CHANERR = 0x%04x, clearing\n", |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 211 | chan_num(chan), chansts, chanerr); |
| 212 | writel(chanerr, reg_base + IOAT_CHANERR_OFFSET); |
Maciej Sosnowski | 09177e8 | 2008-07-22 10:07:33 -0700 | [diff] [blame] | 213 | } |
| 214 | |
| 215 | /* |
| 216 | * whack it upside the head with a reset |
| 217 | * and wait for things to settle out. |
| 218 | * force the pending count to a really big negative |
| 219 | * to make sure no one forces an issue_pending |
| 220 | * while we're waiting. |
| 221 | */ |
| 222 | |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 223 | ioat->pending = INT_MIN; |
Maciej Sosnowski | 09177e8 | 2008-07-22 10:07:33 -0700 | [diff] [blame] | 224 | writeb(IOAT_CHANCMD_RESET, |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 225 | reg_base + IOAT_CHANCMD_OFFSET(chan->device->version)); |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 226 | set_bit(IOAT_RESET_PENDING, &chan->state); |
| 227 | mod_timer(&chan->timer, jiffies + RESET_DELAY); |
Maciej Sosnowski | 09177e8 | 2008-07-22 10:07:33 -0700 | [diff] [blame] | 228 | } |
| 229 | |
Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 230 | static dma_cookie_t ioat1_tx_submit(struct dma_async_tx_descriptor *tx) |
Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 231 | { |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 232 | struct dma_chan *c = tx->chan; |
| 233 | struct ioat_dma_chan *ioat = to_ioat_chan(c); |
Dan Williams | a0587bc | 2009-07-28 14:44:04 -0700 | [diff] [blame] | 234 | struct ioat_desc_sw *desc = tx_to_ioat_desc(tx); |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 235 | struct ioat_chan_common *chan = &ioat->base; |
Dan Williams | a0587bc | 2009-07-28 14:44:04 -0700 | [diff] [blame] | 236 | struct ioat_desc_sw *first; |
| 237 | struct ioat_desc_sw *chain_tail; |
Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 238 | dma_cookie_t cookie; |
Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 239 | |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 240 | spin_lock_bh(&ioat->desc_lock); |
Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 241 | /* cookie incr and addition to used_list must be atomic */ |
Russell King - ARM Linux | 884485e | 2012-03-06 22:34:46 +0000 | [diff] [blame] | 242 | cookie = dma_cookie_assign(tx); |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 243 | dev_dbg(to_dev(&ioat->base), "%s: cookie: %d\n", __func__, cookie); |
Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 244 | |
| 245 | /* write address into NextDescriptor field of last desc in chain */ |
Dan Williams | ea25968 | 2009-09-08 17:53:02 -0700 | [diff] [blame] | 246 | first = to_ioat_desc(desc->tx_list.next); |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 247 | chain_tail = to_ioat_desc(ioat->used_desc.prev); |
Dan Williams | a0587bc | 2009-07-28 14:44:04 -0700 | [diff] [blame] | 248 | /* make descriptor updates globally visible before chaining */ |
| 249 | wmb(); |
| 250 | chain_tail->hw->next = first->txd.phys; |
Dan Williams | ea25968 | 2009-09-08 17:53:02 -0700 | [diff] [blame] | 251 | list_splice_tail_init(&desc->tx_list, &ioat->used_desc); |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 252 | dump_desc_dbg(ioat, chain_tail); |
| 253 | dump_desc_dbg(ioat, first); |
Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 254 | |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 255 | if (!test_and_set_bit(IOAT_COMPLETION_PENDING, &chan->state)) |
| 256 | mod_timer(&chan->timer, jiffies + COMPLETION_TIMEOUT); |
| 257 | |
Dan Williams | 5669e31 | 2009-09-08 17:42:56 -0700 | [diff] [blame] | 258 | ioat->active += desc->hw->tx_cnt; |
Dan Williams | ad643f5 | 2009-09-08 12:01:38 -0700 | [diff] [blame] | 259 | ioat->pending += desc->hw->tx_cnt; |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 260 | if (ioat->pending >= ioat_pending_level) |
| 261 | __ioat1_dma_memcpy_issue_pending(ioat); |
| 262 | spin_unlock_bh(&ioat->desc_lock); |
Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 263 | |
Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 264 | return cookie; |
| 265 | } |
| 266 | |
Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 267 | /** |
| 268 | * ioat_dma_alloc_descriptor - allocate and return a sw and hw descriptor pair |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 269 | * @ioat: the channel supplying the memory pool for the descriptors |
Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 270 | * @flags: allocation flags |
| 271 | */ |
Dan Williams | bc3c702 | 2009-07-28 14:33:42 -0700 | [diff] [blame] | 272 | static struct ioat_desc_sw * |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 273 | ioat_dma_alloc_descriptor(struct ioat_dma_chan *ioat, gfp_t flags) |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 274 | { |
| 275 | struct ioat_dma_descriptor *desc; |
| 276 | struct ioat_desc_sw *desc_sw; |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 277 | struct ioatdma_device *ioatdma_device; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 278 | dma_addr_t phys; |
| 279 | |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 280 | ioatdma_device = ioat->base.device; |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 281 | desc = pci_pool_alloc(ioatdma_device->dma_pool, flags, &phys); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 282 | if (unlikely(!desc)) |
| 283 | return NULL; |
| 284 | |
| 285 | desc_sw = kzalloc(sizeof(*desc_sw), flags); |
| 286 | if (unlikely(!desc_sw)) { |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 287 | pci_pool_free(ioatdma_device->dma_pool, desc, phys); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 288 | return NULL; |
| 289 | } |
| 290 | |
| 291 | memset(desc, 0, sizeof(*desc)); |
Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 292 | |
Dan Williams | ea25968 | 2009-09-08 17:53:02 -0700 | [diff] [blame] | 293 | INIT_LIST_HEAD(&desc_sw->tx_list); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 294 | dma_async_tx_descriptor_init(&desc_sw->txd, &ioat->base.common); |
| 295 | desc_sw->txd.tx_submit = ioat1_tx_submit; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 296 | desc_sw->hw = desc; |
Dan Williams | bc3c702 | 2009-07-28 14:33:42 -0700 | [diff] [blame] | 297 | desc_sw->txd.phys = phys; |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 298 | set_desc_id(desc_sw, -1); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 299 | |
| 300 | return desc_sw; |
| 301 | } |
| 302 | |
Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 303 | static int ioat_initial_desc_count = 256; |
| 304 | module_param(ioat_initial_desc_count, int, 0644); |
| 305 | MODULE_PARM_DESC(ioat_initial_desc_count, |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 306 | "ioat1: initial descriptors per channel (default: 256)"); |
Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 307 | /** |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 308 | * ioat1_dma_alloc_chan_resources - returns the number of allocated descriptors |
Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 309 | * @chan: the channel to be filled out |
| 310 | */ |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 311 | static int ioat1_dma_alloc_chan_resources(struct dma_chan *c) |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 312 | { |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 313 | struct ioat_dma_chan *ioat = to_ioat_chan(c); |
| 314 | struct ioat_chan_common *chan = &ioat->base; |
Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 315 | struct ioat_desc_sw *desc; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 316 | u32 chanerr; |
| 317 | int i; |
| 318 | LIST_HEAD(tmp_list); |
| 319 | |
Shannon Nelson | e422397 | 2007-08-24 23:02:53 -0700 | [diff] [blame] | 320 | /* have we already been set up? */ |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 321 | if (!list_empty(&ioat->free_desc)) |
| 322 | return ioat->desccount; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 323 | |
Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 324 | /* Setup register to interrupt and write completion status on error */ |
Dan Williams | f6ab95b | 2009-09-08 12:01:21 -0700 | [diff] [blame] | 325 | writew(IOAT_CHANCTRL_RUN, chan->reg_base + IOAT_CHANCTRL_OFFSET); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 326 | |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 327 | chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 328 | if (chanerr) { |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 329 | dev_err(to_dev(chan), "CHANERR = %x, clearing\n", chanerr); |
| 330 | writel(chanerr, chan->reg_base + IOAT_CHANERR_OFFSET); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 331 | } |
| 332 | |
| 333 | /* Allocate descriptors */ |
Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 334 | for (i = 0; i < ioat_initial_desc_count; i++) { |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 335 | desc = ioat_dma_alloc_descriptor(ioat, GFP_KERNEL); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 336 | if (!desc) { |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 337 | dev_err(to_dev(chan), "Only %d initial descriptors\n", i); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 338 | break; |
| 339 | } |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 340 | set_desc_id(desc, i); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 341 | list_add_tail(&desc->node, &tmp_list); |
| 342 | } |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 343 | spin_lock_bh(&ioat->desc_lock); |
| 344 | ioat->desccount = i; |
| 345 | list_splice(&tmp_list, &ioat->free_desc); |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 346 | spin_unlock_bh(&ioat->desc_lock); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 347 | |
| 348 | /* allocate a completion writeback area */ |
| 349 | /* doing 2 32bit writes to mmio since 1 64b write doesn't work */ |
Dan Williams | 4fb9b9e | 2009-09-08 12:01:04 -0700 | [diff] [blame] | 350 | chan->completion = pci_pool_alloc(chan->device->completion_pool, |
| 351 | GFP_KERNEL, &chan->completion_dma); |
| 352 | memset(chan->completion, 0, sizeof(*chan->completion)); |
| 353 | writel(((u64) chan->completion_dma) & 0x00000000FFFFFFFF, |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 354 | chan->reg_base + IOAT_CHANCMP_OFFSET_LOW); |
Dan Williams | 4fb9b9e | 2009-09-08 12:01:04 -0700 | [diff] [blame] | 355 | writel(((u64) chan->completion_dma) >> 32, |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 356 | chan->reg_base + IOAT_CHANCMP_OFFSET_HIGH); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 357 | |
Dan Williams | da87ca4 | 2014-02-19 16:19:35 -0800 | [diff] [blame^] | 358 | set_bit(IOAT_RUN, &chan->state); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 359 | ioat1_dma_start_null_desc(ioat); /* give chain to dma device */ |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 360 | dev_dbg(to_dev(chan), "%s: allocated %d descriptors\n", |
| 361 | __func__, ioat->desccount); |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 362 | return ioat->desccount; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 363 | } |
| 364 | |
Dan Williams | da87ca4 | 2014-02-19 16:19:35 -0800 | [diff] [blame^] | 365 | void ioat_stop(struct ioat_chan_common *chan) |
| 366 | { |
| 367 | struct ioatdma_device *device = chan->device; |
| 368 | struct pci_dev *pdev = device->pdev; |
| 369 | int chan_id = chan_num(chan); |
| 370 | struct msix_entry *msix; |
| 371 | |
| 372 | /* 1/ stop irq from firing tasklets |
| 373 | * 2/ stop the tasklet from re-arming irqs |
| 374 | */ |
| 375 | clear_bit(IOAT_RUN, &chan->state); |
| 376 | |
| 377 | /* flush inflight interrupts */ |
| 378 | switch (device->irq_mode) { |
| 379 | case IOAT_MSIX: |
| 380 | msix = &device->msix_entries[chan_id]; |
| 381 | synchronize_irq(msix->vector); |
| 382 | break; |
| 383 | case IOAT_MSI: |
| 384 | case IOAT_INTX: |
| 385 | synchronize_irq(pdev->irq); |
| 386 | break; |
| 387 | default: |
| 388 | break; |
| 389 | } |
| 390 | |
| 391 | /* flush inflight timers */ |
| 392 | del_timer_sync(&chan->timer); |
| 393 | |
| 394 | /* flush inflight tasklet runs */ |
| 395 | tasklet_kill(&chan->cleanup_task); |
| 396 | |
| 397 | /* final cleanup now that everything is quiesced and can't re-arm */ |
| 398 | device->cleanup_fn((unsigned long) &chan->common); |
| 399 | } |
| 400 | |
Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 401 | /** |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 402 | * ioat1_dma_free_chan_resources - release all the descriptors |
Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 403 | * @chan: the channel to be cleaned |
| 404 | */ |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 405 | static void ioat1_dma_free_chan_resources(struct dma_chan *c) |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 406 | { |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 407 | struct ioat_dma_chan *ioat = to_ioat_chan(c); |
| 408 | struct ioat_chan_common *chan = &ioat->base; |
| 409 | struct ioatdma_device *ioatdma_device = chan->device; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 410 | struct ioat_desc_sw *desc, *_desc; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 411 | int in_use_descs = 0; |
| 412 | |
Maciej Sosnowski | c3d4f44 | 2008-11-07 01:45:52 +0000 | [diff] [blame] | 413 | /* Before freeing channel resources first check |
| 414 | * if they have been previously allocated for this channel. |
| 415 | */ |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 416 | if (ioat->desccount == 0) |
Maciej Sosnowski | c3d4f44 | 2008-11-07 01:45:52 +0000 | [diff] [blame] | 417 | return; |
| 418 | |
Dan Williams | da87ca4 | 2014-02-19 16:19:35 -0800 | [diff] [blame^] | 419 | ioat_stop(chan); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 420 | |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 421 | /* Delay 100ms after reset to allow internal DMA logic to quiesce |
| 422 | * before removing DMA descriptor resources. |
| 423 | */ |
Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 424 | writeb(IOAT_CHANCMD_RESET, |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 425 | chan->reg_base + IOAT_CHANCMD_OFFSET(chan->device->version)); |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 426 | mdelay(100); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 427 | |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 428 | spin_lock_bh(&ioat->desc_lock); |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 429 | list_for_each_entry_safe(desc, _desc, &ioat->used_desc, node) { |
| 430 | dev_dbg(to_dev(chan), "%s: freeing %d from used list\n", |
| 431 | __func__, desc_id(desc)); |
| 432 | dump_desc_dbg(ioat, desc); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 433 | in_use_descs++; |
| 434 | list_del(&desc->node); |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 435 | pci_pool_free(ioatdma_device->dma_pool, desc->hw, |
Dan Williams | bc3c702 | 2009-07-28 14:33:42 -0700 | [diff] [blame] | 436 | desc->txd.phys); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 437 | kfree(desc); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 438 | } |
| 439 | list_for_each_entry_safe(desc, _desc, |
| 440 | &ioat->free_desc, node) { |
| 441 | list_del(&desc->node); |
| 442 | pci_pool_free(ioatdma_device->dma_pool, desc->hw, |
| 443 | desc->txd.phys); |
| 444 | kfree(desc); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 445 | } |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 446 | spin_unlock_bh(&ioat->desc_lock); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 447 | |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 448 | pci_pool_free(ioatdma_device->completion_pool, |
Dan Williams | 4fb9b9e | 2009-09-08 12:01:04 -0700 | [diff] [blame] | 449 | chan->completion, |
| 450 | chan->completion_dma); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 451 | |
| 452 | /* one is ok since we left it on there on purpose */ |
| 453 | if (in_use_descs > 1) |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 454 | dev_err(to_dev(chan), "Freeing %d in use descriptors!\n", |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 455 | in_use_descs - 1); |
| 456 | |
Dan Williams | 4fb9b9e | 2009-09-08 12:01:04 -0700 | [diff] [blame] | 457 | chan->last_completion = 0; |
| 458 | chan->completion_dma = 0; |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 459 | ioat->pending = 0; |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 460 | ioat->desccount = 0; |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 461 | } |
Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 462 | |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 463 | /** |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 464 | * ioat1_dma_get_next_descriptor - return the next available descriptor |
| 465 | * @ioat: IOAT DMA channel handle |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 466 | * |
| 467 | * Gets the next descriptor from the chain, and must be called with the |
| 468 | * channel's desc_lock held. Allocates more descriptors if the channel |
| 469 | * has run out. |
| 470 | */ |
Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 471 | static struct ioat_desc_sw * |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 472 | ioat1_dma_get_next_descriptor(struct ioat_dma_chan *ioat) |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 473 | { |
Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 474 | struct ioat_desc_sw *new; |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 475 | |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 476 | if (!list_empty(&ioat->free_desc)) { |
| 477 | new = to_ioat_desc(ioat->free_desc.next); |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 478 | list_del(&new->node); |
| 479 | } else { |
| 480 | /* try to get another desc */ |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 481 | new = ioat_dma_alloc_descriptor(ioat, GFP_ATOMIC); |
Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 482 | if (!new) { |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 483 | dev_err(to_dev(&ioat->base), "alloc failed\n"); |
Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 484 | return NULL; |
| 485 | } |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 486 | } |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 487 | dev_dbg(to_dev(&ioat->base), "%s: allocated: %d\n", |
| 488 | __func__, desc_id(new)); |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 489 | prefetch(new->hw); |
| 490 | return new; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 491 | } |
| 492 | |
Dan Williams | bc3c702 | 2009-07-28 14:33:42 -0700 | [diff] [blame] | 493 | static struct dma_async_tx_descriptor * |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 494 | ioat1_dma_prep_memcpy(struct dma_chan *c, dma_addr_t dma_dest, |
Dan Williams | bc3c702 | 2009-07-28 14:33:42 -0700 | [diff] [blame] | 495 | dma_addr_t dma_src, size_t len, unsigned long flags) |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 496 | { |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 497 | struct ioat_dma_chan *ioat = to_ioat_chan(c); |
Dan Williams | a0587bc | 2009-07-28 14:44:04 -0700 | [diff] [blame] | 498 | struct ioat_desc_sw *desc; |
| 499 | size_t copy; |
| 500 | LIST_HEAD(chain); |
| 501 | dma_addr_t src = dma_src; |
| 502 | dma_addr_t dest = dma_dest; |
| 503 | size_t total_len = len; |
| 504 | struct ioat_dma_descriptor *hw = NULL; |
| 505 | int tx_cnt = 0; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 506 | |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 507 | spin_lock_bh(&ioat->desc_lock); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 508 | desc = ioat1_dma_get_next_descriptor(ioat); |
Dan Williams | a0587bc | 2009-07-28 14:44:04 -0700 | [diff] [blame] | 509 | do { |
| 510 | if (!desc) |
| 511 | break; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 512 | |
Dan Williams | a0587bc | 2009-07-28 14:44:04 -0700 | [diff] [blame] | 513 | tx_cnt++; |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 514 | copy = min_t(size_t, len, ioat->xfercap); |
Dan Williams | a0587bc | 2009-07-28 14:44:04 -0700 | [diff] [blame] | 515 | |
| 516 | hw = desc->hw; |
| 517 | hw->size = copy; |
| 518 | hw->ctl = 0; |
| 519 | hw->src_addr = src; |
| 520 | hw->dst_addr = dest; |
| 521 | |
| 522 | list_add_tail(&desc->node, &chain); |
| 523 | |
| 524 | len -= copy; |
| 525 | dest += copy; |
| 526 | src += copy; |
| 527 | if (len) { |
| 528 | struct ioat_desc_sw *next; |
| 529 | |
| 530 | async_tx_ack(&desc->txd); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 531 | next = ioat1_dma_get_next_descriptor(ioat); |
Dan Williams | a0587bc | 2009-07-28 14:44:04 -0700 | [diff] [blame] | 532 | hw->next = next ? next->txd.phys : 0; |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 533 | dump_desc_dbg(ioat, desc); |
Dan Williams | a0587bc | 2009-07-28 14:44:04 -0700 | [diff] [blame] | 534 | desc = next; |
| 535 | } else |
| 536 | hw->next = 0; |
| 537 | } while (len); |
| 538 | |
| 539 | if (!desc) { |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 540 | struct ioat_chan_common *chan = &ioat->base; |
| 541 | |
| 542 | dev_err(to_dev(chan), |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 543 | "chan%d - get_next_desc failed\n", chan_num(chan)); |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 544 | list_splice(&chain, &ioat->free_desc); |
| 545 | spin_unlock_bh(&ioat->desc_lock); |
Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 546 | return NULL; |
Maciej Sosnowski | 09177e8 | 2008-07-22 10:07:33 -0700 | [diff] [blame] | 547 | } |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 548 | spin_unlock_bh(&ioat->desc_lock); |
Dan Williams | a0587bc | 2009-07-28 14:44:04 -0700 | [diff] [blame] | 549 | |
| 550 | desc->txd.flags = flags; |
Dan Williams | a0587bc | 2009-07-28 14:44:04 -0700 | [diff] [blame] | 551 | desc->len = total_len; |
Dan Williams | ea25968 | 2009-09-08 17:53:02 -0700 | [diff] [blame] | 552 | list_splice(&chain, &desc->tx_list); |
Dan Williams | a0587bc | 2009-07-28 14:44:04 -0700 | [diff] [blame] | 553 | hw->ctl_f.int_en = !!(flags & DMA_PREP_INTERRUPT); |
| 554 | hw->ctl_f.compl_write = 1; |
Dan Williams | ad643f5 | 2009-09-08 12:01:38 -0700 | [diff] [blame] | 555 | hw->tx_cnt = tx_cnt; |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 556 | dump_desc_dbg(ioat, desc); |
Dan Williams | a0587bc | 2009-07-28 14:44:04 -0700 | [diff] [blame] | 557 | |
| 558 | return &desc->txd; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 559 | } |
| 560 | |
Dan Williams | aa4d72a | 2010-03-03 21:21:13 -0700 | [diff] [blame] | 561 | static void ioat1_cleanup_event(unsigned long data) |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 562 | { |
Dan Williams | aa4d72a | 2010-03-03 21:21:13 -0700 | [diff] [blame] | 563 | struct ioat_dma_chan *ioat = to_ioat_chan((void *) data); |
Dan Williams | da87ca4 | 2014-02-19 16:19:35 -0800 | [diff] [blame^] | 564 | struct ioat_chan_common *chan = &ioat->base; |
Dan Williams | f6ab95b | 2009-09-08 12:01:21 -0700 | [diff] [blame] | 565 | |
Dan Williams | aa4d72a | 2010-03-03 21:21:13 -0700 | [diff] [blame] | 566 | ioat1_cleanup(ioat); |
Dan Williams | da87ca4 | 2014-02-19 16:19:35 -0800 | [diff] [blame^] | 567 | if (!test_bit(IOAT_RUN, &chan->state)) |
| 568 | return; |
Dan Williams | aa4d72a | 2010-03-03 21:21:13 -0700 | [diff] [blame] | 569 | writew(IOAT_CHANCTRL_RUN, ioat->base.reg_base + IOAT_CHANCTRL_OFFSET); |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 570 | } |
| 571 | |
Dan Williams | 2750293 | 2012-03-23 13:36:42 -0700 | [diff] [blame] | 572 | dma_addr_t ioat_get_current_completion(struct ioat_chan_common *chan) |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 573 | { |
Dan Williams | 2750293 | 2012-03-23 13:36:42 -0700 | [diff] [blame] | 574 | dma_addr_t phys_complete; |
Dan Williams | 4fb9b9e | 2009-09-08 12:01:04 -0700 | [diff] [blame] | 575 | u64 completion; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 576 | |
Dan Williams | 4fb9b9e | 2009-09-08 12:01:04 -0700 | [diff] [blame] | 577 | completion = *chan->completion; |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 578 | phys_complete = ioat_chansts_to_addr(completion); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 579 | |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 580 | dev_dbg(to_dev(chan), "%s: phys_complete: %#llx\n", __func__, |
| 581 | (unsigned long long) phys_complete); |
| 582 | |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 583 | if (is_ioat_halted(completion)) { |
| 584 | u32 chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET); |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 585 | dev_err(to_dev(chan), "Channel halted, chanerr = %x\n", |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 586 | chanerr); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 587 | |
| 588 | /* TODO do something to salvage the situation */ |
| 589 | } |
| 590 | |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 591 | return phys_complete; |
| 592 | } |
| 593 | |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 594 | bool ioat_cleanup_preamble(struct ioat_chan_common *chan, |
Dan Williams | 2750293 | 2012-03-23 13:36:42 -0700 | [diff] [blame] | 595 | dma_addr_t *phys_complete) |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 596 | { |
| 597 | *phys_complete = ioat_get_current_completion(chan); |
| 598 | if (*phys_complete == chan->last_completion) |
| 599 | return false; |
| 600 | clear_bit(IOAT_COMPLETION_ACK, &chan->state); |
| 601 | mod_timer(&chan->timer, jiffies + COMPLETION_TIMEOUT); |
| 602 | |
| 603 | return true; |
| 604 | } |
| 605 | |
Dan Williams | 2750293 | 2012-03-23 13:36:42 -0700 | [diff] [blame] | 606 | static void __cleanup(struct ioat_dma_chan *ioat, dma_addr_t phys_complete) |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 607 | { |
| 608 | struct ioat_chan_common *chan = &ioat->base; |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 609 | struct list_head *_desc, *n; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 610 | struct dma_async_tx_descriptor *tx; |
| 611 | |
Dan Williams | 2750293 | 2012-03-23 13:36:42 -0700 | [diff] [blame] | 612 | dev_dbg(to_dev(chan), "%s: phys_complete: %llx\n", |
| 613 | __func__, (unsigned long long) phys_complete); |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 614 | list_for_each_safe(_desc, n, &ioat->used_desc) { |
| 615 | struct ioat_desc_sw *desc; |
| 616 | |
| 617 | prefetch(n); |
| 618 | desc = list_entry(_desc, typeof(*desc), node); |
Dan Williams | bc3c702 | 2009-07-28 14:33:42 -0700 | [diff] [blame] | 619 | tx = &desc->txd; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 620 | /* |
| 621 | * Incoming DMA requests may use multiple descriptors, |
| 622 | * due to exceeding xfercap, perhaps. If so, only the |
| 623 | * last one will have a cookie, and require unmapping. |
| 624 | */ |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 625 | dump_desc_dbg(ioat, desc); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 626 | if (tx->cookie) { |
Russell King - ARM Linux | f7fbce0 | 2012-03-06 22:35:07 +0000 | [diff] [blame] | 627 | dma_cookie_complete(tx); |
Dan Williams | d38a8c6 | 2013-10-18 19:35:23 +0200 | [diff] [blame] | 628 | dma_descriptor_unmap(tx); |
Dan Williams | 5669e31 | 2009-09-08 17:42:56 -0700 | [diff] [blame] | 629 | ioat->active -= desc->hw->tx_cnt; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 630 | if (tx->callback) { |
| 631 | tx->callback(tx->callback_param); |
| 632 | tx->callback = NULL; |
Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 633 | } |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 634 | } |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 635 | |
| 636 | if (tx->phys != phys_complete) { |
| 637 | /* |
| 638 | * a completed entry, but not the last, so clean |
| 639 | * up if the client is done with the descriptor |
| 640 | */ |
| 641 | if (async_tx_test_ack(tx)) |
| 642 | list_move_tail(&desc->node, &ioat->free_desc); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 643 | } else { |
| 644 | /* |
| 645 | * last used desc. Do not remove, so we can |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 646 | * append from it. |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 647 | */ |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 648 | |
| 649 | /* if nothing else is pending, cancel the |
| 650 | * completion timeout |
| 651 | */ |
| 652 | if (n == &ioat->used_desc) { |
| 653 | dev_dbg(to_dev(chan), |
| 654 | "%s cancel completion timeout\n", |
| 655 | __func__); |
| 656 | clear_bit(IOAT_COMPLETION_PENDING, &chan->state); |
| 657 | } |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 658 | |
| 659 | /* TODO check status bits? */ |
| 660 | break; |
| 661 | } |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 662 | } |
| 663 | |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 664 | chan->last_completion = phys_complete; |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 665 | } |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 666 | |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 667 | /** |
| 668 | * ioat1_cleanup - cleanup up finished descriptors |
| 669 | * @chan: ioat channel to be cleaned up |
| 670 | * |
| 671 | * To prevent lock contention we defer cleanup when the locks are |
| 672 | * contended with a terminal timeout that forces cleanup and catches |
| 673 | * completion notification errors. |
| 674 | */ |
| 675 | static void ioat1_cleanup(struct ioat_dma_chan *ioat) |
| 676 | { |
| 677 | struct ioat_chan_common *chan = &ioat->base; |
Dan Williams | 2750293 | 2012-03-23 13:36:42 -0700 | [diff] [blame] | 678 | dma_addr_t phys_complete; |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 679 | |
| 680 | prefetch(chan->completion); |
| 681 | |
| 682 | if (!spin_trylock_bh(&chan->cleanup_lock)) |
| 683 | return; |
| 684 | |
| 685 | if (!ioat_cleanup_preamble(chan, &phys_complete)) { |
| 686 | spin_unlock_bh(&chan->cleanup_lock); |
| 687 | return; |
| 688 | } |
| 689 | |
| 690 | if (!spin_trylock_bh(&ioat->desc_lock)) { |
| 691 | spin_unlock_bh(&chan->cleanup_lock); |
| 692 | return; |
| 693 | } |
| 694 | |
| 695 | __cleanup(ioat, phys_complete); |
| 696 | |
| 697 | spin_unlock_bh(&ioat->desc_lock); |
| 698 | spin_unlock_bh(&chan->cleanup_lock); |
| 699 | } |
| 700 | |
| 701 | static void ioat1_timer_event(unsigned long data) |
| 702 | { |
Dan Williams | aa4d72a | 2010-03-03 21:21:13 -0700 | [diff] [blame] | 703 | struct ioat_dma_chan *ioat = to_ioat_chan((void *) data); |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 704 | struct ioat_chan_common *chan = &ioat->base; |
| 705 | |
| 706 | dev_dbg(to_dev(chan), "%s: state: %lx\n", __func__, chan->state); |
| 707 | |
| 708 | spin_lock_bh(&chan->cleanup_lock); |
| 709 | if (test_and_clear_bit(IOAT_RESET_PENDING, &chan->state)) { |
| 710 | struct ioat_desc_sw *desc; |
| 711 | |
| 712 | spin_lock_bh(&ioat->desc_lock); |
| 713 | |
| 714 | /* restart active descriptors */ |
| 715 | desc = to_ioat_desc(ioat->used_desc.prev); |
| 716 | ioat_set_chainaddr(ioat, desc->txd.phys); |
| 717 | ioat_start(chan); |
| 718 | |
| 719 | ioat->pending = 0; |
| 720 | set_bit(IOAT_COMPLETION_PENDING, &chan->state); |
| 721 | mod_timer(&chan->timer, jiffies + COMPLETION_TIMEOUT); |
| 722 | spin_unlock_bh(&ioat->desc_lock); |
| 723 | } else if (test_bit(IOAT_COMPLETION_PENDING, &chan->state)) { |
Dan Williams | 2750293 | 2012-03-23 13:36:42 -0700 | [diff] [blame] | 724 | dma_addr_t phys_complete; |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 725 | |
| 726 | spin_lock_bh(&ioat->desc_lock); |
| 727 | /* if we haven't made progress and we have already |
| 728 | * acknowledged a pending completion once, then be more |
| 729 | * forceful with a restart |
| 730 | */ |
| 731 | if (ioat_cleanup_preamble(chan, &phys_complete)) |
| 732 | __cleanup(ioat, phys_complete); |
| 733 | else if (test_bit(IOAT_COMPLETION_ACK, &chan->state)) |
| 734 | ioat1_reset_channel(ioat); |
| 735 | else { |
| 736 | u64 status = ioat_chansts(chan); |
| 737 | |
| 738 | /* manually update the last completion address */ |
| 739 | if (ioat_chansts_to_addr(status) != 0) |
| 740 | *chan->completion = status; |
| 741 | |
| 742 | set_bit(IOAT_COMPLETION_ACK, &chan->state); |
| 743 | mod_timer(&chan->timer, jiffies + COMPLETION_TIMEOUT); |
| 744 | } |
| 745 | spin_unlock_bh(&ioat->desc_lock); |
| 746 | } |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 747 | spin_unlock_bh(&chan->cleanup_lock); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 748 | } |
| 749 | |
Dan Williams | aa4d72a | 2010-03-03 21:21:13 -0700 | [diff] [blame] | 750 | enum dma_status |
Linus Walleij | 0793448 | 2010-03-26 16:50:49 -0700 | [diff] [blame] | 751 | ioat_dma_tx_status(struct dma_chan *c, dma_cookie_t cookie, |
| 752 | struct dma_tx_state *txstate) |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 753 | { |
Dan Williams | aa4d72a | 2010-03-03 21:21:13 -0700 | [diff] [blame] | 754 | struct ioat_chan_common *chan = to_chan_common(c); |
| 755 | struct ioatdma_device *device = chan->device; |
Russell King - ARM Linux | 96a2af4 | 2012-03-06 22:35:27 +0000 | [diff] [blame] | 756 | enum dma_status ret; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 757 | |
Russell King - ARM Linux | 96a2af4 | 2012-03-06 22:35:27 +0000 | [diff] [blame] | 758 | ret = dma_cookie_status(c, cookie, txstate); |
Vinod Koul | 2f16f80 | 2013-10-16 20:48:52 +0530 | [diff] [blame] | 759 | if (ret == DMA_COMPLETE) |
Russell King - ARM Linux | 96a2af4 | 2012-03-06 22:35:27 +0000 | [diff] [blame] | 760 | return ret; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 761 | |
Dan Williams | aa4d72a | 2010-03-03 21:21:13 -0700 | [diff] [blame] | 762 | device->cleanup_fn((unsigned long) c); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 763 | |
Russell King - ARM Linux | 96a2af4 | 2012-03-06 22:35:27 +0000 | [diff] [blame] | 764 | return dma_cookie_status(c, cookie, txstate); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 765 | } |
| 766 | |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 767 | static void ioat1_dma_start_null_desc(struct ioat_dma_chan *ioat) |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 768 | { |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 769 | struct ioat_chan_common *chan = &ioat->base; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 770 | struct ioat_desc_sw *desc; |
Dan Williams | c7984f4 | 2009-07-28 14:44:04 -0700 | [diff] [blame] | 771 | struct ioat_dma_descriptor *hw; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 772 | |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 773 | spin_lock_bh(&ioat->desc_lock); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 774 | |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 775 | desc = ioat1_dma_get_next_descriptor(ioat); |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 776 | |
| 777 | if (!desc) { |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 778 | dev_err(to_dev(chan), |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 779 | "Unable to start null desc - get next desc failed\n"); |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 780 | spin_unlock_bh(&ioat->desc_lock); |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 781 | return; |
| 782 | } |
| 783 | |
Dan Williams | c7984f4 | 2009-07-28 14:44:04 -0700 | [diff] [blame] | 784 | hw = desc->hw; |
| 785 | hw->ctl = 0; |
| 786 | hw->ctl_f.null = 1; |
| 787 | hw->ctl_f.int_en = 1; |
| 788 | hw->ctl_f.compl_write = 1; |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 789 | /* set size to non-zero value (channel returns error when size is 0) */ |
Dan Williams | c7984f4 | 2009-07-28 14:44:04 -0700 | [diff] [blame] | 790 | hw->size = NULL_DESC_BUFFER_SIZE; |
| 791 | hw->src_addr = 0; |
| 792 | hw->dst_addr = 0; |
Dan Williams | bc3c702 | 2009-07-28 14:33:42 -0700 | [diff] [blame] | 793 | async_tx_ack(&desc->txd); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 794 | hw->next = 0; |
| 795 | list_add_tail(&desc->node, &ioat->used_desc); |
Dan Williams | 6df9183 | 2009-09-08 12:00:55 -0700 | [diff] [blame] | 796 | dump_desc_dbg(ioat, desc); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 797 | |
Dan Williams | 09c8a5b | 2009-09-08 12:01:49 -0700 | [diff] [blame] | 798 | ioat_set_chainaddr(ioat, desc->txd.phys); |
| 799 | ioat_start(chan); |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 800 | spin_unlock_bh(&ioat->desc_lock); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 801 | } |
| 802 | |
| 803 | /* |
| 804 | * Perform a IOAT transaction to verify the HW works. |
| 805 | */ |
| 806 | #define IOAT_TEST_SIZE 2000 |
| 807 | |
Greg Kroah-Hartman | 4bf27b8 | 2012-12-21 15:09:59 -0800 | [diff] [blame] | 808 | static void ioat_dma_test_callback(void *dma_async_param) |
Shannon Nelson | 9521843 | 2007-10-18 03:07:15 -0700 | [diff] [blame] | 809 | { |
Dan Williams | b9bdcbb | 2009-01-06 11:38:22 -0700 | [diff] [blame] | 810 | struct completion *cmp = dma_async_param; |
| 811 | |
| 812 | complete(cmp); |
Shannon Nelson | 9521843 | 2007-10-18 03:07:15 -0700 | [diff] [blame] | 813 | } |
| 814 | |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 815 | /** |
| 816 | * ioat_dma_self_test - Perform a IOAT transaction to verify the HW works. |
| 817 | * @device: device to be tested |
| 818 | */ |
Greg Kroah-Hartman | 4bf27b8 | 2012-12-21 15:09:59 -0800 | [diff] [blame] | 819 | int ioat_dma_self_test(struct ioatdma_device *device) |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 820 | { |
| 821 | int i; |
| 822 | u8 *src; |
| 823 | u8 *dest; |
Dan Williams | bc3c702 | 2009-07-28 14:33:42 -0700 | [diff] [blame] | 824 | struct dma_device *dma = &device->common; |
| 825 | struct device *dev = &device->pdev->dev; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 826 | struct dma_chan *dma_chan; |
Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 827 | struct dma_async_tx_descriptor *tx; |
Dan Williams | 0036731 | 2008-02-02 19:49:57 -0700 | [diff] [blame] | 828 | dma_addr_t dma_dest, dma_src; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 829 | dma_cookie_t cookie; |
| 830 | int err = 0; |
Dan Williams | b9bdcbb | 2009-01-06 11:38:22 -0700 | [diff] [blame] | 831 | struct completion cmp; |
Dan Williams | 0c33e1c | 2009-03-02 13:31:35 -0700 | [diff] [blame] | 832 | unsigned long tmo; |
Maciej Sosnowski | 4f005db | 2009-04-23 12:31:51 +0200 | [diff] [blame] | 833 | unsigned long flags; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 834 | |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 835 | src = kzalloc(sizeof(u8) * IOAT_TEST_SIZE, GFP_KERNEL); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 836 | if (!src) |
| 837 | return -ENOMEM; |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 838 | dest = kzalloc(sizeof(u8) * IOAT_TEST_SIZE, GFP_KERNEL); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 839 | if (!dest) { |
| 840 | kfree(src); |
| 841 | return -ENOMEM; |
| 842 | } |
| 843 | |
| 844 | /* Fill in src buffer */ |
| 845 | for (i = 0; i < IOAT_TEST_SIZE; i++) |
| 846 | src[i] = (u8)i; |
| 847 | |
| 848 | /* Start copy, using first DMA channel */ |
Dan Williams | bc3c702 | 2009-07-28 14:33:42 -0700 | [diff] [blame] | 849 | dma_chan = container_of(dma->channels.next, struct dma_chan, |
Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 850 | device_node); |
Dan Williams | bc3c702 | 2009-07-28 14:33:42 -0700 | [diff] [blame] | 851 | if (dma->device_alloc_chan_resources(dma_chan) < 1) { |
| 852 | dev_err(dev, "selftest cannot allocate chan resource\n"); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 853 | err = -ENODEV; |
| 854 | goto out; |
| 855 | } |
| 856 | |
Dan Williams | bc3c702 | 2009-07-28 14:33:42 -0700 | [diff] [blame] | 857 | dma_src = dma_map_single(dev, src, IOAT_TEST_SIZE, DMA_TO_DEVICE); |
Jiang Liu | 3532e56 | 2014-01-02 12:58:52 -0800 | [diff] [blame] | 858 | if (dma_mapping_error(dev, dma_src)) { |
| 859 | dev_err(dev, "mapping src buffer failed\n"); |
| 860 | goto free_resources; |
| 861 | } |
Dan Williams | bc3c702 | 2009-07-28 14:33:42 -0700 | [diff] [blame] | 862 | dma_dest = dma_map_single(dev, dest, IOAT_TEST_SIZE, DMA_FROM_DEVICE); |
Jiang Liu | 3532e56 | 2014-01-02 12:58:52 -0800 | [diff] [blame] | 863 | if (dma_mapping_error(dev, dma_dest)) { |
| 864 | dev_err(dev, "mapping dest buffer failed\n"); |
| 865 | goto unmap_src; |
| 866 | } |
Bartlomiej Zolnierkiewicz | 0776ae7 | 2013-10-18 19:35:33 +0200 | [diff] [blame] | 867 | flags = DMA_PREP_INTERRUPT; |
Dan Williams | 0036731 | 2008-02-02 19:49:57 -0700 | [diff] [blame] | 868 | tx = device->common.device_prep_dma_memcpy(dma_chan, dma_dest, dma_src, |
Maciej Sosnowski | 4f005db | 2009-04-23 12:31:51 +0200 | [diff] [blame] | 869 | IOAT_TEST_SIZE, flags); |
Shannon Nelson | 5149fd0 | 2007-10-18 03:07:13 -0700 | [diff] [blame] | 870 | if (!tx) { |
Dan Williams | bc3c702 | 2009-07-28 14:33:42 -0700 | [diff] [blame] | 871 | dev_err(dev, "Self-test prep failed, disabling\n"); |
Shannon Nelson | 5149fd0 | 2007-10-18 03:07:13 -0700 | [diff] [blame] | 872 | err = -ENODEV; |
Bartlomiej Zolnierkiewicz | 522d974 | 2012-11-05 10:00:13 +0000 | [diff] [blame] | 873 | goto unmap_dma; |
Shannon Nelson | 5149fd0 | 2007-10-18 03:07:13 -0700 | [diff] [blame] | 874 | } |
| 875 | |
Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 876 | async_tx_ack(tx); |
Dan Williams | b9bdcbb | 2009-01-06 11:38:22 -0700 | [diff] [blame] | 877 | init_completion(&cmp); |
Shannon Nelson | 9521843 | 2007-10-18 03:07:15 -0700 | [diff] [blame] | 878 | tx->callback = ioat_dma_test_callback; |
Dan Williams | b9bdcbb | 2009-01-06 11:38:22 -0700 | [diff] [blame] | 879 | tx->callback_param = &cmp; |
Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 880 | cookie = tx->tx_submit(tx); |
Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 881 | if (cookie < 0) { |
Dan Williams | bc3c702 | 2009-07-28 14:33:42 -0700 | [diff] [blame] | 882 | dev_err(dev, "Self-test setup failed, disabling\n"); |
Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 883 | err = -ENODEV; |
Bartlomiej Zolnierkiewicz | 522d974 | 2012-11-05 10:00:13 +0000 | [diff] [blame] | 884 | goto unmap_dma; |
Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 885 | } |
Dan Williams | bc3c702 | 2009-07-28 14:33:42 -0700 | [diff] [blame] | 886 | dma->device_issue_pending(dma_chan); |
Dan Williams | 532d3b1 | 2008-12-03 17:16:55 -0700 | [diff] [blame] | 887 | |
Dan Williams | 0c33e1c | 2009-03-02 13:31:35 -0700 | [diff] [blame] | 888 | tmo = wait_for_completion_timeout(&cmp, msecs_to_jiffies(3000)); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 889 | |
Dan Williams | 0c33e1c | 2009-03-02 13:31:35 -0700 | [diff] [blame] | 890 | if (tmo == 0 || |
Linus Walleij | 0793448 | 2010-03-26 16:50:49 -0700 | [diff] [blame] | 891 | dma->device_tx_status(dma_chan, cookie, NULL) |
Vinod Koul | 2f16f80 | 2013-10-16 20:48:52 +0530 | [diff] [blame] | 892 | != DMA_COMPLETE) { |
Dan Williams | bc3c702 | 2009-07-28 14:33:42 -0700 | [diff] [blame] | 893 | dev_err(dev, "Self-test copy timed out, disabling\n"); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 894 | err = -ENODEV; |
Bartlomiej Zolnierkiewicz | 522d974 | 2012-11-05 10:00:13 +0000 | [diff] [blame] | 895 | goto unmap_dma; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 896 | } |
| 897 | if (memcmp(src, dest, IOAT_TEST_SIZE)) { |
Dan Williams | bc3c702 | 2009-07-28 14:33:42 -0700 | [diff] [blame] | 898 | dev_err(dev, "Self-test copy failed compare, disabling\n"); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 899 | err = -ENODEV; |
| 900 | goto free_resources; |
| 901 | } |
| 902 | |
Bartlomiej Zolnierkiewicz | 522d974 | 2012-11-05 10:00:13 +0000 | [diff] [blame] | 903 | unmap_dma: |
Bartlomiej Zolnierkiewicz | 522d974 | 2012-11-05 10:00:13 +0000 | [diff] [blame] | 904 | dma_unmap_single(dev, dma_dest, IOAT_TEST_SIZE, DMA_FROM_DEVICE); |
Jiang Liu | 3532e56 | 2014-01-02 12:58:52 -0800 | [diff] [blame] | 905 | unmap_src: |
| 906 | dma_unmap_single(dev, dma_src, IOAT_TEST_SIZE, DMA_TO_DEVICE); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 907 | free_resources: |
Dan Williams | bc3c702 | 2009-07-28 14:33:42 -0700 | [diff] [blame] | 908 | dma->device_free_chan_resources(dma_chan); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 909 | out: |
| 910 | kfree(src); |
| 911 | kfree(dest); |
| 912 | return err; |
| 913 | } |
| 914 | |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 915 | static char ioat_interrupt_style[32] = "msix"; |
| 916 | module_param_string(ioat_interrupt_style, ioat_interrupt_style, |
| 917 | sizeof(ioat_interrupt_style), 0644); |
| 918 | MODULE_PARM_DESC(ioat_interrupt_style, |
Dan Williams | 4c5d961 | 2013-11-13 16:29:52 -0800 | [diff] [blame] | 919 | "set ioat interrupt style: msix (default), msi, intx"); |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 920 | |
| 921 | /** |
| 922 | * ioat_dma_setup_interrupts - setup interrupt handler |
| 923 | * @device: ioat device |
| 924 | */ |
Dave Jiang | 8a52b9f | 2013-03-26 15:42:47 -0700 | [diff] [blame] | 925 | int ioat_dma_setup_interrupts(struct ioatdma_device *device) |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 926 | { |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 927 | struct ioat_chan_common *chan; |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 928 | struct pci_dev *pdev = device->pdev; |
| 929 | struct device *dev = &pdev->dev; |
| 930 | struct msix_entry *msix; |
| 931 | int i, j, msixcnt; |
| 932 | int err = -EINVAL; |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 933 | u8 intrctrl = 0; |
| 934 | |
| 935 | if (!strcmp(ioat_interrupt_style, "msix")) |
| 936 | goto msix; |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 937 | if (!strcmp(ioat_interrupt_style, "msi")) |
| 938 | goto msi; |
| 939 | if (!strcmp(ioat_interrupt_style, "intx")) |
| 940 | goto intx; |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 941 | dev_err(dev, "invalid ioat_interrupt_style %s\n", ioat_interrupt_style); |
Shannon Nelson | 5149fd0 | 2007-10-18 03:07:13 -0700 | [diff] [blame] | 942 | goto err_no_irq; |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 943 | |
| 944 | msix: |
| 945 | /* The number of MSI-X vectors should equal the number of channels */ |
| 946 | msixcnt = device->common.chancnt; |
| 947 | for (i = 0; i < msixcnt; i++) |
| 948 | device->msix_entries[i].entry = i; |
| 949 | |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 950 | err = pci_enable_msix(pdev, device->msix_entries, msixcnt); |
Dan Williams | 4c5d961 | 2013-11-13 16:29:52 -0800 | [diff] [blame] | 951 | if (err) |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 952 | goto msi; |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 953 | |
| 954 | for (i = 0; i < msixcnt; i++) { |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 955 | msix = &device->msix_entries[i]; |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 956 | chan = ioat_chan_by_index(device, i); |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 957 | err = devm_request_irq(dev, msix->vector, |
| 958 | ioat_dma_do_interrupt_msix, 0, |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 959 | "ioat-msix", chan); |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 960 | if (err) { |
| 961 | for (j = 0; j < i; j++) { |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 962 | msix = &device->msix_entries[j]; |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 963 | chan = ioat_chan_by_index(device, j); |
| 964 | devm_free_irq(dev, msix->vector, chan); |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 965 | } |
Dan Williams | 4c5d961 | 2013-11-13 16:29:52 -0800 | [diff] [blame] | 966 | goto msi; |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 967 | } |
| 968 | } |
| 969 | intrctrl |= IOAT_INTRCTRL_MSIX_VECTOR_CONTROL; |
Dave Jiang | 8a52b9f | 2013-03-26 15:42:47 -0700 | [diff] [blame] | 970 | device->irq_mode = IOAT_MSIX; |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 971 | goto done; |
| 972 | |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 973 | msi: |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 974 | err = pci_enable_msi(pdev); |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 975 | if (err) |
| 976 | goto intx; |
| 977 | |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 978 | err = devm_request_irq(dev, pdev->irq, ioat_dma_do_interrupt, 0, |
| 979 | "ioat-msi", device); |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 980 | if (err) { |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 981 | pci_disable_msi(pdev); |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 982 | goto intx; |
| 983 | } |
Dan Williams | 779e561 | 2013-11-13 16:30:43 -0800 | [diff] [blame] | 984 | device->irq_mode = IOAT_MSI; |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 985 | goto done; |
| 986 | |
| 987 | intx: |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 988 | err = devm_request_irq(dev, pdev->irq, ioat_dma_do_interrupt, |
| 989 | IRQF_SHARED, "ioat-intx", device); |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 990 | if (err) |
| 991 | goto err_no_irq; |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 992 | |
Dave Jiang | 8a52b9f | 2013-03-26 15:42:47 -0700 | [diff] [blame] | 993 | device->irq_mode = IOAT_INTX; |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 994 | done: |
Dan Williams | f2427e2 | 2009-07-28 14:42:38 -0700 | [diff] [blame] | 995 | if (device->intr_quirk) |
| 996 | device->intr_quirk(device); |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 997 | intrctrl |= IOAT_INTRCTRL_MASTER_INT_EN; |
| 998 | writeb(intrctrl, device->reg_base + IOAT_INTRCTRL_OFFSET); |
| 999 | return 0; |
| 1000 | |
| 1001 | err_no_irq: |
| 1002 | /* Disable all interrupt generation */ |
| 1003 | writeb(0, device->reg_base + IOAT_INTRCTRL_OFFSET); |
Dave Jiang | 8a52b9f | 2013-03-26 15:42:47 -0700 | [diff] [blame] | 1004 | device->irq_mode = IOAT_NOIRQ; |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 1005 | dev_err(dev, "no usable interrupts\n"); |
| 1006 | return err; |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 1007 | } |
Dave Jiang | 8a52b9f | 2013-03-26 15:42:47 -0700 | [diff] [blame] | 1008 | EXPORT_SYMBOL(ioat_dma_setup_interrupts); |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 1009 | |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 1010 | static void ioat_disable_interrupts(struct ioatdma_device *device) |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 1011 | { |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 1012 | /* Disable all interrupt generation */ |
| 1013 | writeb(0, device->reg_base + IOAT_INTRCTRL_OFFSET); |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 1014 | } |
| 1015 | |
Greg Kroah-Hartman | 4bf27b8 | 2012-12-21 15:09:59 -0800 | [diff] [blame] | 1016 | int ioat_probe(struct ioatdma_device *device) |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1017 | { |
Dan Williams | f2427e2 | 2009-07-28 14:42:38 -0700 | [diff] [blame] | 1018 | int err = -ENODEV; |
| 1019 | struct dma_device *dma = &device->common; |
| 1020 | struct pci_dev *pdev = device->pdev; |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 1021 | struct device *dev = &pdev->dev; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1022 | |
| 1023 | /* DMA coherent memory pool for DMA descriptor allocations */ |
| 1024 | device->dma_pool = pci_pool_create("dma_desc_pool", pdev, |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1025 | sizeof(struct ioat_dma_descriptor), |
| 1026 | 64, 0); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1027 | if (!device->dma_pool) { |
| 1028 | err = -ENOMEM; |
| 1029 | goto err_dma_pool; |
| 1030 | } |
| 1031 | |
Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1032 | device->completion_pool = pci_pool_create("completion_pool", pdev, |
| 1033 | sizeof(u64), SMP_CACHE_BYTES, |
| 1034 | SMP_CACHE_BYTES); |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 1035 | |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1036 | if (!device->completion_pool) { |
| 1037 | err = -ENOMEM; |
| 1038 | goto err_completion_pool; |
| 1039 | } |
| 1040 | |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 1041 | device->enumerate_channels(device); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1042 | |
Dan Williams | f2427e2 | 2009-07-28 14:42:38 -0700 | [diff] [blame] | 1043 | dma_cap_set(DMA_MEMCPY, dma->cap_mask); |
Dan Williams | f2427e2 | 2009-07-28 14:42:38 -0700 | [diff] [blame] | 1044 | dma->dev = &pdev->dev; |
Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 1045 | |
Dan Williams | bc3c702 | 2009-07-28 14:33:42 -0700 | [diff] [blame] | 1046 | if (!dma->chancnt) { |
Dan Williams | a6d52d7 | 2009-12-19 15:36:02 -0700 | [diff] [blame] | 1047 | dev_err(dev, "channel enumeration error\n"); |
Maciej Sosnowski | 8b794b1 | 2009-02-26 11:04:54 +0100 | [diff] [blame] | 1048 | goto err_setup_interrupts; |
| 1049 | } |
| 1050 | |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 1051 | err = ioat_dma_setup_interrupts(device); |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1052 | if (err) |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 1053 | goto err_setup_interrupts; |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1054 | |
Dan Williams | 9de6fc7 | 2009-09-08 17:42:58 -0700 | [diff] [blame] | 1055 | err = device->self_test(device); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1056 | if (err) |
| 1057 | goto err_self_test; |
| 1058 | |
Dan Williams | f2427e2 | 2009-07-28 14:42:38 -0700 | [diff] [blame] | 1059 | return 0; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1060 | |
| 1061 | err_self_test: |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 1062 | ioat_disable_interrupts(device); |
Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 1063 | err_setup_interrupts: |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1064 | pci_pool_destroy(device->completion_pool); |
| 1065 | err_completion_pool: |
| 1066 | pci_pool_destroy(device->dma_pool); |
| 1067 | err_dma_pool: |
Dan Williams | f2427e2 | 2009-07-28 14:42:38 -0700 | [diff] [blame] | 1068 | return err; |
| 1069 | } |
| 1070 | |
Greg Kroah-Hartman | 4bf27b8 | 2012-12-21 15:09:59 -0800 | [diff] [blame] | 1071 | int ioat_register(struct ioatdma_device *device) |
Dan Williams | f2427e2 | 2009-07-28 14:42:38 -0700 | [diff] [blame] | 1072 | { |
| 1073 | int err = dma_async_device_register(&device->common); |
| 1074 | |
| 1075 | if (err) { |
| 1076 | ioat_disable_interrupts(device); |
| 1077 | pci_pool_destroy(device->completion_pool); |
| 1078 | pci_pool_destroy(device->dma_pool); |
| 1079 | } |
| 1080 | |
| 1081 | return err; |
| 1082 | } |
| 1083 | |
| 1084 | /* ioat1_intr_quirk - fix up dma ctrl register to enable / disable msi */ |
| 1085 | static void ioat1_intr_quirk(struct ioatdma_device *device) |
| 1086 | { |
| 1087 | struct pci_dev *pdev = device->pdev; |
| 1088 | u32 dmactrl; |
| 1089 | |
| 1090 | pci_read_config_dword(pdev, IOAT_PCI_DMACTRL_OFFSET, &dmactrl); |
| 1091 | if (pdev->msi_enabled) |
| 1092 | dmactrl |= IOAT_PCI_DMACTRL_MSI_EN; |
| 1093 | else |
| 1094 | dmactrl &= ~IOAT_PCI_DMACTRL_MSI_EN; |
| 1095 | pci_write_config_dword(pdev, IOAT_PCI_DMACTRL_OFFSET, dmactrl); |
| 1096 | } |
| 1097 | |
Dan Williams | 5669e31 | 2009-09-08 17:42:56 -0700 | [diff] [blame] | 1098 | static ssize_t ring_size_show(struct dma_chan *c, char *page) |
| 1099 | { |
| 1100 | struct ioat_dma_chan *ioat = to_ioat_chan(c); |
| 1101 | |
| 1102 | return sprintf(page, "%d\n", ioat->desccount); |
| 1103 | } |
| 1104 | static struct ioat_sysfs_entry ring_size_attr = __ATTR_RO(ring_size); |
| 1105 | |
| 1106 | static ssize_t ring_active_show(struct dma_chan *c, char *page) |
| 1107 | { |
| 1108 | struct ioat_dma_chan *ioat = to_ioat_chan(c); |
| 1109 | |
| 1110 | return sprintf(page, "%d\n", ioat->active); |
| 1111 | } |
| 1112 | static struct ioat_sysfs_entry ring_active_attr = __ATTR_RO(ring_active); |
| 1113 | |
| 1114 | static ssize_t cap_show(struct dma_chan *c, char *page) |
| 1115 | { |
| 1116 | struct dma_device *dma = c->device; |
| 1117 | |
Bartlomiej Zolnierkiewicz | 48a9db4 | 2013-07-03 15:05:06 -0700 | [diff] [blame] | 1118 | return sprintf(page, "copy%s%s%s%s%s\n", |
Dan Williams | 5669e31 | 2009-09-08 17:42:56 -0700 | [diff] [blame] | 1119 | dma_has_cap(DMA_PQ, dma->cap_mask) ? " pq" : "", |
| 1120 | dma_has_cap(DMA_PQ_VAL, dma->cap_mask) ? " pq_val" : "", |
| 1121 | dma_has_cap(DMA_XOR, dma->cap_mask) ? " xor" : "", |
| 1122 | dma_has_cap(DMA_XOR_VAL, dma->cap_mask) ? " xor_val" : "", |
Dan Williams | 5669e31 | 2009-09-08 17:42:56 -0700 | [diff] [blame] | 1123 | dma_has_cap(DMA_INTERRUPT, dma->cap_mask) ? " intr" : ""); |
| 1124 | |
| 1125 | } |
| 1126 | struct ioat_sysfs_entry ioat_cap_attr = __ATTR_RO(cap); |
| 1127 | |
| 1128 | static ssize_t version_show(struct dma_chan *c, char *page) |
| 1129 | { |
| 1130 | struct dma_device *dma = c->device; |
| 1131 | struct ioatdma_device *device = to_ioatdma_device(dma); |
| 1132 | |
| 1133 | return sprintf(page, "%d.%d\n", |
| 1134 | device->version >> 4, device->version & 0xf); |
| 1135 | } |
| 1136 | struct ioat_sysfs_entry ioat_version_attr = __ATTR_RO(version); |
| 1137 | |
| 1138 | static struct attribute *ioat1_attrs[] = { |
| 1139 | &ring_size_attr.attr, |
| 1140 | &ring_active_attr.attr, |
| 1141 | &ioat_cap_attr.attr, |
| 1142 | &ioat_version_attr.attr, |
| 1143 | NULL, |
| 1144 | }; |
| 1145 | |
| 1146 | static ssize_t |
| 1147 | ioat_attr_show(struct kobject *kobj, struct attribute *attr, char *page) |
| 1148 | { |
| 1149 | struct ioat_sysfs_entry *entry; |
| 1150 | struct ioat_chan_common *chan; |
| 1151 | |
| 1152 | entry = container_of(attr, struct ioat_sysfs_entry, attr); |
| 1153 | chan = container_of(kobj, struct ioat_chan_common, kobj); |
| 1154 | |
| 1155 | if (!entry->show) |
| 1156 | return -EIO; |
| 1157 | return entry->show(&chan->common, page); |
| 1158 | } |
| 1159 | |
Emese Revfy | 52cf25d | 2010-01-19 02:58:23 +0100 | [diff] [blame] | 1160 | const struct sysfs_ops ioat_sysfs_ops = { |
Dan Williams | 5669e31 | 2009-09-08 17:42:56 -0700 | [diff] [blame] | 1161 | .show = ioat_attr_show, |
| 1162 | }; |
| 1163 | |
| 1164 | static struct kobj_type ioat1_ktype = { |
| 1165 | .sysfs_ops = &ioat_sysfs_ops, |
| 1166 | .default_attrs = ioat1_attrs, |
| 1167 | }; |
| 1168 | |
| 1169 | void ioat_kobject_add(struct ioatdma_device *device, struct kobj_type *type) |
| 1170 | { |
| 1171 | struct dma_device *dma = &device->common; |
| 1172 | struct dma_chan *c; |
| 1173 | |
| 1174 | list_for_each_entry(c, &dma->channels, device_node) { |
| 1175 | struct ioat_chan_common *chan = to_chan_common(c); |
| 1176 | struct kobject *parent = &c->dev->device.kobj; |
| 1177 | int err; |
| 1178 | |
| 1179 | err = kobject_init_and_add(&chan->kobj, type, parent, "quickdata"); |
| 1180 | if (err) { |
| 1181 | dev_warn(to_dev(chan), |
| 1182 | "sysfs init error (%d), continuing...\n", err); |
| 1183 | kobject_put(&chan->kobj); |
| 1184 | set_bit(IOAT_KOBJ_INIT_FAIL, &chan->state); |
| 1185 | } |
| 1186 | } |
| 1187 | } |
| 1188 | |
| 1189 | void ioat_kobject_del(struct ioatdma_device *device) |
| 1190 | { |
| 1191 | struct dma_device *dma = &device->common; |
| 1192 | struct dma_chan *c; |
| 1193 | |
| 1194 | list_for_each_entry(c, &dma->channels, device_node) { |
| 1195 | struct ioat_chan_common *chan = to_chan_common(c); |
| 1196 | |
| 1197 | if (!test_bit(IOAT_KOBJ_INIT_FAIL, &chan->state)) { |
| 1198 | kobject_del(&chan->kobj); |
| 1199 | kobject_put(&chan->kobj); |
| 1200 | } |
| 1201 | } |
| 1202 | } |
| 1203 | |
Greg Kroah-Hartman | 4bf27b8 | 2012-12-21 15:09:59 -0800 | [diff] [blame] | 1204 | int ioat1_dma_probe(struct ioatdma_device *device, int dca) |
Dan Williams | f2427e2 | 2009-07-28 14:42:38 -0700 | [diff] [blame] | 1205 | { |
| 1206 | struct pci_dev *pdev = device->pdev; |
| 1207 | struct dma_device *dma; |
| 1208 | int err; |
| 1209 | |
| 1210 | device->intr_quirk = ioat1_intr_quirk; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 1211 | device->enumerate_channels = ioat1_enumerate_channels; |
Dan Williams | 9de6fc7 | 2009-09-08 17:42:58 -0700 | [diff] [blame] | 1212 | device->self_test = ioat_dma_self_test; |
Dan Williams | aa4d72a | 2010-03-03 21:21:13 -0700 | [diff] [blame] | 1213 | device->timer_fn = ioat1_timer_event; |
| 1214 | device->cleanup_fn = ioat1_cleanup_event; |
Dan Williams | f2427e2 | 2009-07-28 14:42:38 -0700 | [diff] [blame] | 1215 | dma = &device->common; |
| 1216 | dma->device_prep_dma_memcpy = ioat1_dma_prep_memcpy; |
| 1217 | dma->device_issue_pending = ioat1_dma_memcpy_issue_pending; |
Dan Williams | 5cbafa6 | 2009-08-26 13:01:44 -0700 | [diff] [blame] | 1218 | dma->device_alloc_chan_resources = ioat1_dma_alloc_chan_resources; |
| 1219 | dma->device_free_chan_resources = ioat1_dma_free_chan_resources; |
Linus Walleij | 0793448 | 2010-03-26 16:50:49 -0700 | [diff] [blame] | 1220 | dma->device_tx_status = ioat_dma_tx_status; |
Dan Williams | f2427e2 | 2009-07-28 14:42:38 -0700 | [diff] [blame] | 1221 | |
| 1222 | err = ioat_probe(device); |
| 1223 | if (err) |
| 1224 | return err; |
| 1225 | ioat_set_tcp_copy_break(4096); |
| 1226 | err = ioat_register(device); |
| 1227 | if (err) |
| 1228 | return err; |
Dan Williams | 5669e31 | 2009-09-08 17:42:56 -0700 | [diff] [blame] | 1229 | ioat_kobject_add(device, &ioat1_ktype); |
| 1230 | |
Dan Williams | f2427e2 | 2009-07-28 14:42:38 -0700 | [diff] [blame] | 1231 | if (dca) |
| 1232 | device->dca = ioat_dca_init(pdev, device->reg_base); |
| 1233 | |
Dan Williams | f2427e2 | 2009-07-28 14:42:38 -0700 | [diff] [blame] | 1234 | return err; |
| 1235 | } |
| 1236 | |
Greg Kroah-Hartman | 4bf27b8 | 2012-12-21 15:09:59 -0800 | [diff] [blame] | 1237 | void ioat_dma_remove(struct ioatdma_device *device) |
Dan Aloni | 428ed60 | 2007-03-08 09:57:36 -0800 | [diff] [blame] | 1238 | { |
Dan Williams | bc3c702 | 2009-07-28 14:33:42 -0700 | [diff] [blame] | 1239 | struct dma_device *dma = &device->common; |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1240 | |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 1241 | ioat_disable_interrupts(device); |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1242 | |
Dan Williams | 5669e31 | 2009-09-08 17:42:56 -0700 | [diff] [blame] | 1243 | ioat_kobject_del(device); |
| 1244 | |
Dan Williams | bc3c702 | 2009-07-28 14:33:42 -0700 | [diff] [blame] | 1245 | dma_async_device_unregister(dma); |
Shannon Nelson | dfe2299 | 2007-10-18 03:07:13 -0700 | [diff] [blame] | 1246 | |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1247 | pci_pool_destroy(device->dma_pool); |
| 1248 | pci_pool_destroy(device->completion_pool); |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1249 | |
Dan Williams | dcbc853 | 2009-07-28 14:44:50 -0700 | [diff] [blame] | 1250 | INIT_LIST_HEAD(&dma->channels); |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1251 | } |