| 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 | 
|  | 3 | * Copyright(c) 2004 - 2007 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> | 
|  | 30 | #include <linux/pci.h> | 
|  | 31 | #include <linux/interrupt.h> | 
|  | 32 | #include <linux/dmaengine.h> | 
|  | 33 | #include <linux/delay.h> | 
| David S. Miller | 6b00c92 | 2006-05-23 17:37:58 -0700 | [diff] [blame] | 34 | #include <linux/dma-mapping.h> | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 35 | #include "ioatdma.h" | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 36 | #include "ioatdma_registers.h" | 
|  | 37 | #include "ioatdma_hw.h" | 
|  | 38 |  | 
|  | 39 | #define to_ioat_chan(chan) container_of(chan, struct ioat_dma_chan, common) | 
| Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 40 | #define to_ioatdma_device(dev) container_of(dev, struct ioatdma_device, common) | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 41 | #define to_ioat_desc(lh) container_of(lh, struct ioat_desc_sw, node) | 
| Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 42 | #define tx_to_ioat_desc(tx) container_of(tx, struct ioat_desc_sw, async_tx) | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 43 |  | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 44 | static int ioat_pending_level = 4; | 
|  | 45 | module_param(ioat_pending_level, int, 0644); | 
|  | 46 | MODULE_PARM_DESC(ioat_pending_level, | 
|  | 47 | "high-water mark for pushing ioat descriptors (default: 4)"); | 
|  | 48 |  | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 49 | /* internal functions */ | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 50 | static void ioat_dma_start_null_desc(struct ioat_dma_chan *ioat_chan); | 
|  | 51 | static void ioat_dma_memcpy_cleanup(struct ioat_dma_chan *ioat_chan); | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 52 |  | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 53 | static struct ioat_desc_sw * | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 54 | ioat1_dma_get_next_descriptor(struct ioat_dma_chan *ioat_chan); | 
|  | 55 | static struct ioat_desc_sw * | 
|  | 56 | ioat2_dma_get_next_descriptor(struct ioat_dma_chan *ioat_chan); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 57 |  | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 58 | static inline struct ioat_dma_chan *ioat_lookup_chan_by_index( | 
|  | 59 | struct ioatdma_device *device, | 
|  | 60 | int index) | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 61 | { | 
|  | 62 | return device->idx[index]; | 
|  | 63 | } | 
|  | 64 |  | 
|  | 65 | /** | 
|  | 66 | * ioat_dma_do_interrupt - handler used for single vector interrupt mode | 
|  | 67 | * @irq: interrupt id | 
|  | 68 | * @data: interrupt data | 
|  | 69 | */ | 
|  | 70 | static irqreturn_t ioat_dma_do_interrupt(int irq, void *data) | 
|  | 71 | { | 
|  | 72 | struct ioatdma_device *instance = data; | 
|  | 73 | struct ioat_dma_chan *ioat_chan; | 
|  | 74 | unsigned long attnstatus; | 
|  | 75 | int bit; | 
|  | 76 | u8 intrctrl; | 
|  | 77 |  | 
|  | 78 | intrctrl = readb(instance->reg_base + IOAT_INTRCTRL_OFFSET); | 
|  | 79 |  | 
|  | 80 | if (!(intrctrl & IOAT_INTRCTRL_MASTER_INT_EN)) | 
|  | 81 | return IRQ_NONE; | 
|  | 82 |  | 
|  | 83 | if (!(intrctrl & IOAT_INTRCTRL_INT_STATUS)) { | 
|  | 84 | writeb(intrctrl, instance->reg_base + IOAT_INTRCTRL_OFFSET); | 
|  | 85 | return IRQ_NONE; | 
|  | 86 | } | 
|  | 87 |  | 
|  | 88 | attnstatus = readl(instance->reg_base + IOAT_ATTNSTATUS_OFFSET); | 
|  | 89 | for_each_bit(bit, &attnstatus, BITS_PER_LONG) { | 
|  | 90 | ioat_chan = ioat_lookup_chan_by_index(instance, bit); | 
|  | 91 | tasklet_schedule(&ioat_chan->cleanup_task); | 
|  | 92 | } | 
|  | 93 |  | 
|  | 94 | writeb(intrctrl, instance->reg_base + IOAT_INTRCTRL_OFFSET); | 
|  | 95 | return IRQ_HANDLED; | 
|  | 96 | } | 
|  | 97 |  | 
|  | 98 | /** | 
|  | 99 | * ioat_dma_do_interrupt_msix - handler used for vector-per-channel interrupt mode | 
|  | 100 | * @irq: interrupt id | 
|  | 101 | * @data: interrupt data | 
|  | 102 | */ | 
|  | 103 | static irqreturn_t ioat_dma_do_interrupt_msix(int irq, void *data) | 
|  | 104 | { | 
|  | 105 | struct ioat_dma_chan *ioat_chan = data; | 
|  | 106 |  | 
|  | 107 | tasklet_schedule(&ioat_chan->cleanup_task); | 
|  | 108 |  | 
|  | 109 | return IRQ_HANDLED; | 
|  | 110 | } | 
|  | 111 |  | 
|  | 112 | static void ioat_dma_cleanup_tasklet(unsigned long data); | 
|  | 113 |  | 
|  | 114 | /** | 
|  | 115 | * ioat_dma_enumerate_channels - find and initialize the device's channels | 
|  | 116 | * @device: the device to be enumerated | 
|  | 117 | */ | 
| Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 118 | static int ioat_dma_enumerate_channels(struct ioatdma_device *device) | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 119 | { | 
|  | 120 | u8 xfercap_scale; | 
|  | 121 | u32 xfercap; | 
|  | 122 | int i; | 
|  | 123 | struct ioat_dma_chan *ioat_chan; | 
|  | 124 |  | 
| Chris Leech | e382881 | 2007-03-08 09:57:35 -0800 | [diff] [blame] | 125 | device->common.chancnt = readb(device->reg_base + IOAT_CHANCNT_OFFSET); | 
|  | 126 | xfercap_scale = readb(device->reg_base + IOAT_XFERCAP_OFFSET); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 127 | xfercap = (xfercap_scale == 0 ? -1 : (1UL << xfercap_scale)); | 
|  | 128 |  | 
|  | 129 | for (i = 0; i < device->common.chancnt; i++) { | 
|  | 130 | ioat_chan = kzalloc(sizeof(*ioat_chan), GFP_KERNEL); | 
|  | 131 | if (!ioat_chan) { | 
|  | 132 | device->common.chancnt = i; | 
|  | 133 | break; | 
|  | 134 | } | 
|  | 135 |  | 
|  | 136 | ioat_chan->device = device; | 
|  | 137 | ioat_chan->reg_base = device->reg_base + (0x80 * (i + 1)); | 
|  | 138 | ioat_chan->xfercap = xfercap; | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 139 | ioat_chan->desccount = 0; | 
|  | 140 | if (ioat_chan->device->version != IOAT_VER_1_2) { | 
|  | 141 | writel(IOAT_DCACTRL_CMPL_WRITE_ENABLE | 
|  | 142 | | IOAT_DMA_DCA_ANY_CPU, | 
|  | 143 | ioat_chan->reg_base + IOAT_DCACTRL_OFFSET); | 
|  | 144 | } | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 145 | spin_lock_init(&ioat_chan->cleanup_lock); | 
|  | 146 | spin_lock_init(&ioat_chan->desc_lock); | 
|  | 147 | INIT_LIST_HEAD(&ioat_chan->free_desc); | 
|  | 148 | INIT_LIST_HEAD(&ioat_chan->used_desc); | 
|  | 149 | /* This should be made common somewhere in dmaengine.c */ | 
|  | 150 | ioat_chan->common.device = &device->common; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 151 | list_add_tail(&ioat_chan->common.device_node, | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 152 | &device->common.channels); | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 153 | device->idx[i] = ioat_chan; | 
|  | 154 | tasklet_init(&ioat_chan->cleanup_task, | 
|  | 155 | ioat_dma_cleanup_tasklet, | 
|  | 156 | (unsigned long) ioat_chan); | 
|  | 157 | tasklet_disable(&ioat_chan->cleanup_task); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 158 | } | 
|  | 159 | return device->common.chancnt; | 
|  | 160 | } | 
|  | 161 |  | 
| Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 162 | /** | 
|  | 163 | * ioat_dma_memcpy_issue_pending - push potentially unrecognized appended | 
|  | 164 | *                                 descriptors to hw | 
|  | 165 | * @chan: DMA channel handle | 
|  | 166 | */ | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 167 | static inline void __ioat1_dma_memcpy_issue_pending( | 
| Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 168 | struct ioat_dma_chan *ioat_chan) | 
|  | 169 | { | 
|  | 170 | ioat_chan->pending = 0; | 
|  | 171 | writeb(IOAT_CHANCMD_APPEND, ioat_chan->reg_base + IOAT1_CHANCMD_OFFSET); | 
|  | 172 | } | 
|  | 173 |  | 
|  | 174 | static void ioat1_dma_memcpy_issue_pending(struct dma_chan *chan) | 
|  | 175 | { | 
|  | 176 | struct ioat_dma_chan *ioat_chan = to_ioat_chan(chan); | 
|  | 177 |  | 
|  | 178 | if (ioat_chan->pending != 0) { | 
|  | 179 | spin_lock_bh(&ioat_chan->desc_lock); | 
|  | 180 | __ioat1_dma_memcpy_issue_pending(ioat_chan); | 
|  | 181 | spin_unlock_bh(&ioat_chan->desc_lock); | 
|  | 182 | } | 
|  | 183 | } | 
|  | 184 |  | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 185 | static inline void __ioat2_dma_memcpy_issue_pending( | 
| Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 186 | struct ioat_dma_chan *ioat_chan) | 
|  | 187 | { | 
|  | 188 | ioat_chan->pending = 0; | 
|  | 189 | writew(ioat_chan->dmacount, | 
|  | 190 | ioat_chan->reg_base + IOAT_CHAN_DMACOUNT_OFFSET); | 
|  | 191 | } | 
|  | 192 |  | 
|  | 193 | static void ioat2_dma_memcpy_issue_pending(struct dma_chan *chan) | 
|  | 194 | { | 
|  | 195 | struct ioat_dma_chan *ioat_chan = to_ioat_chan(chan); | 
|  | 196 |  | 
|  | 197 | if (ioat_chan->pending != 0) { | 
|  | 198 | spin_lock_bh(&ioat_chan->desc_lock); | 
|  | 199 | __ioat2_dma_memcpy_issue_pending(ioat_chan); | 
|  | 200 | spin_unlock_bh(&ioat_chan->desc_lock); | 
|  | 201 | } | 
|  | 202 | } | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 203 |  | 
|  | 204 | 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] | 205 | { | 
|  | 206 | struct ioat_dma_chan *ioat_chan = to_ioat_chan(tx->chan); | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 207 | struct ioat_desc_sw *first = tx_to_ioat_desc(tx); | 
|  | 208 | struct ioat_desc_sw *prev, *new; | 
|  | 209 | struct ioat_dma_descriptor *hw; | 
| Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 210 | dma_cookie_t cookie; | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 211 | LIST_HEAD(new_chain); | 
|  | 212 | u32 copy; | 
|  | 213 | size_t len; | 
|  | 214 | dma_addr_t src, dst; | 
| Dan Williams | 636bdeaa | 2008-04-17 20:17:26 -0700 | [diff] [blame] | 215 | unsigned long orig_flags; | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 216 | unsigned int desc_count = 0; | 
| Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 217 |  | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 218 | /* src and dest and len are stored in the initial descriptor */ | 
|  | 219 | len = first->len; | 
|  | 220 | src = first->src; | 
|  | 221 | dst = first->dst; | 
| Dan Williams | 636bdeaa | 2008-04-17 20:17:26 -0700 | [diff] [blame] | 222 | orig_flags = first->async_tx.flags; | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 223 | new = first; | 
|  | 224 |  | 
| Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 225 | spin_lock_bh(&ioat_chan->desc_lock); | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 226 | prev = to_ioat_desc(ioat_chan->used_desc.prev); | 
|  | 227 | prefetch(prev->hw); | 
|  | 228 | do { | 
| Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 229 | copy = min_t(size_t, len, ioat_chan->xfercap); | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 230 |  | 
| Dan Williams | 636bdeaa | 2008-04-17 20:17:26 -0700 | [diff] [blame] | 231 | async_tx_ack(&new->async_tx); | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 232 |  | 
|  | 233 | hw = new->hw; | 
|  | 234 | hw->size = copy; | 
|  | 235 | hw->ctl = 0; | 
|  | 236 | hw->src_addr = src; | 
|  | 237 | hw->dst_addr = dst; | 
|  | 238 | hw->next = 0; | 
|  | 239 |  | 
|  | 240 | /* chain together the physical address list for the HW */ | 
|  | 241 | wmb(); | 
|  | 242 | prev->hw->next = (u64) new->async_tx.phys; | 
|  | 243 |  | 
|  | 244 | len -= copy; | 
|  | 245 | dst += copy; | 
|  | 246 | src += copy; | 
|  | 247 |  | 
|  | 248 | list_add_tail(&new->node, &new_chain); | 
|  | 249 | desc_count++; | 
|  | 250 | prev = new; | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 251 | } while (len && (new = ioat1_dma_get_next_descriptor(ioat_chan))); | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 252 |  | 
|  | 253 | hw->ctl = IOAT_DMA_DESCRIPTOR_CTL_CP_STS; | 
| Shannon Nelson | 9521843 | 2007-10-18 03:07:15 -0700 | [diff] [blame] | 254 | if (new->async_tx.callback) { | 
|  | 255 | hw->ctl |= IOAT_DMA_DESCRIPTOR_CTL_INT_GN; | 
|  | 256 | if (first != new) { | 
|  | 257 | /* move callback into to last desc */ | 
|  | 258 | new->async_tx.callback = first->async_tx.callback; | 
|  | 259 | new->async_tx.callback_param | 
|  | 260 | = first->async_tx.callback_param; | 
|  | 261 | first->async_tx.callback = NULL; | 
|  | 262 | first->async_tx.callback_param = NULL; | 
|  | 263 | } | 
|  | 264 | } | 
|  | 265 |  | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 266 | new->tx_cnt = desc_count; | 
| Dan Williams | 636bdeaa | 2008-04-17 20:17:26 -0700 | [diff] [blame] | 267 | new->async_tx.flags = orig_flags; /* client is in control of this ack */ | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 268 |  | 
|  | 269 | /* store the original values for use in later cleanup */ | 
|  | 270 | if (new != first) { | 
|  | 271 | new->src = first->src; | 
|  | 272 | new->dst = first->dst; | 
|  | 273 | new->len = first->len; | 
|  | 274 | } | 
|  | 275 |  | 
| Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 276 | /* cookie incr and addition to used_list must be atomic */ | 
|  | 277 | cookie = ioat_chan->common.cookie; | 
|  | 278 | cookie++; | 
|  | 279 | if (cookie < 0) | 
|  | 280 | cookie = 1; | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 281 | ioat_chan->common.cookie = new->async_tx.cookie = cookie; | 
| Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 282 |  | 
|  | 283 | /* write address into NextDescriptor field of last desc in chain */ | 
|  | 284 | to_ioat_desc(ioat_chan->used_desc.prev)->hw->next = | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 285 | first->async_tx.phys; | 
|  | 286 | __list_splice(&new_chain, ioat_chan->used_desc.prev); | 
| Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 287 |  | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 288 | ioat_chan->dmacount += desc_count; | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 289 | ioat_chan->pending += desc_count; | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 290 | if (ioat_chan->pending >= ioat_pending_level) | 
|  | 291 | __ioat1_dma_memcpy_issue_pending(ioat_chan); | 
| Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 292 | spin_unlock_bh(&ioat_chan->desc_lock); | 
|  | 293 |  | 
| Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 294 | return cookie; | 
|  | 295 | } | 
|  | 296 |  | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 297 | static dma_cookie_t ioat2_tx_submit(struct dma_async_tx_descriptor *tx) | 
|  | 298 | { | 
|  | 299 | struct ioat_dma_chan *ioat_chan = to_ioat_chan(tx->chan); | 
|  | 300 | struct ioat_desc_sw *first = tx_to_ioat_desc(tx); | 
|  | 301 | struct ioat_desc_sw *new; | 
|  | 302 | struct ioat_dma_descriptor *hw; | 
|  | 303 | dma_cookie_t cookie; | 
|  | 304 | u32 copy; | 
|  | 305 | size_t len; | 
|  | 306 | dma_addr_t src, dst; | 
| Dan Williams | 636bdeaa | 2008-04-17 20:17:26 -0700 | [diff] [blame] | 307 | unsigned long orig_flags; | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 308 | unsigned int desc_count = 0; | 
|  | 309 |  | 
|  | 310 | /* src and dest and len are stored in the initial descriptor */ | 
|  | 311 | len = first->len; | 
|  | 312 | src = first->src; | 
|  | 313 | dst = first->dst; | 
| Dan Williams | 636bdeaa | 2008-04-17 20:17:26 -0700 | [diff] [blame] | 314 | orig_flags = first->async_tx.flags; | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 315 | new = first; | 
|  | 316 |  | 
| Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 317 | /* | 
|  | 318 | * ioat_chan->desc_lock is still in force in version 2 path | 
|  | 319 | * it gets unlocked at end of this function | 
|  | 320 | */ | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 321 | do { | 
| Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 322 | copy = min_t(size_t, len, ioat_chan->xfercap); | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 323 |  | 
| Dan Williams | 636bdeaa | 2008-04-17 20:17:26 -0700 | [diff] [blame] | 324 | async_tx_ack(&new->async_tx); | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 325 |  | 
|  | 326 | hw = new->hw; | 
|  | 327 | hw->size = copy; | 
|  | 328 | hw->ctl = 0; | 
|  | 329 | hw->src_addr = src; | 
|  | 330 | hw->dst_addr = dst; | 
|  | 331 |  | 
|  | 332 | len -= copy; | 
|  | 333 | dst += copy; | 
|  | 334 | src += copy; | 
|  | 335 | desc_count++; | 
|  | 336 | } while (len && (new = ioat2_dma_get_next_descriptor(ioat_chan))); | 
|  | 337 |  | 
|  | 338 | hw->ctl = IOAT_DMA_DESCRIPTOR_CTL_CP_STS; | 
|  | 339 | if (new->async_tx.callback) { | 
|  | 340 | hw->ctl |= IOAT_DMA_DESCRIPTOR_CTL_INT_GN; | 
|  | 341 | if (first != new) { | 
|  | 342 | /* move callback into to last desc */ | 
|  | 343 | new->async_tx.callback = first->async_tx.callback; | 
|  | 344 | new->async_tx.callback_param | 
|  | 345 | = first->async_tx.callback_param; | 
|  | 346 | first->async_tx.callback = NULL; | 
|  | 347 | first->async_tx.callback_param = NULL; | 
|  | 348 | } | 
|  | 349 | } | 
|  | 350 |  | 
|  | 351 | new->tx_cnt = desc_count; | 
| Dan Williams | 636bdeaa | 2008-04-17 20:17:26 -0700 | [diff] [blame] | 352 | new->async_tx.flags = orig_flags; /* client is in control of this ack */ | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 353 |  | 
|  | 354 | /* store the original values for use in later cleanup */ | 
|  | 355 | if (new != first) { | 
|  | 356 | new->src = first->src; | 
|  | 357 | new->dst = first->dst; | 
|  | 358 | new->len = first->len; | 
|  | 359 | } | 
|  | 360 |  | 
|  | 361 | /* cookie incr and addition to used_list must be atomic */ | 
|  | 362 | cookie = ioat_chan->common.cookie; | 
|  | 363 | cookie++; | 
|  | 364 | if (cookie < 0) | 
|  | 365 | cookie = 1; | 
|  | 366 | ioat_chan->common.cookie = new->async_tx.cookie = cookie; | 
|  | 367 |  | 
|  | 368 | ioat_chan->dmacount += desc_count; | 
|  | 369 | ioat_chan->pending += desc_count; | 
|  | 370 | if (ioat_chan->pending >= ioat_pending_level) | 
|  | 371 | __ioat2_dma_memcpy_issue_pending(ioat_chan); | 
|  | 372 | spin_unlock_bh(&ioat_chan->desc_lock); | 
|  | 373 |  | 
|  | 374 | return cookie; | 
|  | 375 | } | 
|  | 376 |  | 
|  | 377 | /** | 
|  | 378 | * ioat_dma_alloc_descriptor - allocate and return a sw and hw descriptor pair | 
|  | 379 | * @ioat_chan: the channel supplying the memory pool for the descriptors | 
|  | 380 | * @flags: allocation flags | 
|  | 381 | */ | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 382 | static struct ioat_desc_sw *ioat_dma_alloc_descriptor( | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 383 | struct ioat_dma_chan *ioat_chan, | 
|  | 384 | gfp_t flags) | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 385 | { | 
|  | 386 | struct ioat_dma_descriptor *desc; | 
|  | 387 | struct ioat_desc_sw *desc_sw; | 
| Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 388 | struct ioatdma_device *ioatdma_device; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 389 | dma_addr_t phys; | 
|  | 390 |  | 
| Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 391 | ioatdma_device = to_ioatdma_device(ioat_chan->common.device); | 
|  | 392 | desc = pci_pool_alloc(ioatdma_device->dma_pool, flags, &phys); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 393 | if (unlikely(!desc)) | 
|  | 394 | return NULL; | 
|  | 395 |  | 
|  | 396 | desc_sw = kzalloc(sizeof(*desc_sw), flags); | 
|  | 397 | if (unlikely(!desc_sw)) { | 
| Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 398 | pci_pool_free(ioatdma_device->dma_pool, desc, phys); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 399 | return NULL; | 
|  | 400 | } | 
|  | 401 |  | 
|  | 402 | memset(desc, 0, sizeof(*desc)); | 
| Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 403 | dma_async_tx_descriptor_init(&desc_sw->async_tx, &ioat_chan->common); | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 404 | switch (ioat_chan->device->version) { | 
|  | 405 | case IOAT_VER_1_2: | 
|  | 406 | desc_sw->async_tx.tx_submit = ioat1_tx_submit; | 
|  | 407 | break; | 
|  | 408 | case IOAT_VER_2_0: | 
|  | 409 | desc_sw->async_tx.tx_submit = ioat2_tx_submit; | 
|  | 410 | break; | 
|  | 411 | } | 
| Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 412 | INIT_LIST_HEAD(&desc_sw->async_tx.tx_list); | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 413 |  | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 414 | desc_sw->hw = desc; | 
| Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 415 | desc_sw->async_tx.phys = phys; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 416 |  | 
|  | 417 | return desc_sw; | 
|  | 418 | } | 
|  | 419 |  | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 420 | static int ioat_initial_desc_count = 256; | 
|  | 421 | module_param(ioat_initial_desc_count, int, 0644); | 
|  | 422 | MODULE_PARM_DESC(ioat_initial_desc_count, | 
|  | 423 | "initial descriptors per channel (default: 256)"); | 
|  | 424 |  | 
|  | 425 | /** | 
|  | 426 | * ioat2_dma_massage_chan_desc - link the descriptors into a circle | 
|  | 427 | * @ioat_chan: the channel to be massaged | 
|  | 428 | */ | 
|  | 429 | static void ioat2_dma_massage_chan_desc(struct ioat_dma_chan *ioat_chan) | 
|  | 430 | { | 
|  | 431 | struct ioat_desc_sw *desc, *_desc; | 
|  | 432 |  | 
|  | 433 | /* setup used_desc */ | 
|  | 434 | ioat_chan->used_desc.next = ioat_chan->free_desc.next; | 
|  | 435 | ioat_chan->used_desc.prev = NULL; | 
|  | 436 |  | 
|  | 437 | /* pull free_desc out of the circle so that every node is a hw | 
|  | 438 | * descriptor, but leave it pointing to the list | 
|  | 439 | */ | 
|  | 440 | ioat_chan->free_desc.prev->next = ioat_chan->free_desc.next; | 
|  | 441 | ioat_chan->free_desc.next->prev = ioat_chan->free_desc.prev; | 
|  | 442 |  | 
|  | 443 | /* circle link the hw descriptors */ | 
|  | 444 | desc = to_ioat_desc(ioat_chan->free_desc.next); | 
|  | 445 | desc->hw->next = to_ioat_desc(desc->node.next)->async_tx.phys; | 
|  | 446 | list_for_each_entry_safe(desc, _desc, ioat_chan->free_desc.next, node) { | 
|  | 447 | desc->hw->next = to_ioat_desc(desc->node.next)->async_tx.phys; | 
|  | 448 | } | 
|  | 449 | } | 
|  | 450 |  | 
|  | 451 | /** | 
|  | 452 | * ioat_dma_alloc_chan_resources - returns the number of allocated descriptors | 
|  | 453 | * @chan: the channel to be filled out | 
|  | 454 | */ | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 455 | static int ioat_dma_alloc_chan_resources(struct dma_chan *chan) | 
|  | 456 | { | 
|  | 457 | struct ioat_dma_chan *ioat_chan = to_ioat_chan(chan); | 
| Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 458 | struct ioat_desc_sw *desc; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 459 | u16 chanctrl; | 
|  | 460 | u32 chanerr; | 
|  | 461 | int i; | 
|  | 462 | LIST_HEAD(tmp_list); | 
|  | 463 |  | 
| Shannon Nelson | e422397 | 2007-08-24 23:02:53 -0700 | [diff] [blame] | 464 | /* have we already been set up? */ | 
|  | 465 | if (!list_empty(&ioat_chan->free_desc)) | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 466 | return ioat_chan->desccount; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 467 |  | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 468 | /* Setup register to interrupt and write completion status on error */ | 
| Shannon Nelson | e422397 | 2007-08-24 23:02:53 -0700 | [diff] [blame] | 469 | chanctrl = IOAT_CHANCTRL_ERR_INT_EN | | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 470 | IOAT_CHANCTRL_ANY_ERR_ABORT_EN | | 
|  | 471 | IOAT_CHANCTRL_ERR_COMPLETION_EN; | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 472 | writew(chanctrl, ioat_chan->reg_base + IOAT_CHANCTRL_OFFSET); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 473 |  | 
| Chris Leech | e382881 | 2007-03-08 09:57:35 -0800 | [diff] [blame] | 474 | chanerr = readl(ioat_chan->reg_base + IOAT_CHANERR_OFFSET); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 475 | if (chanerr) { | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 476 | dev_err(&ioat_chan->device->pdev->dev, | 
| Shannon Nelson | 5149fd0 | 2007-10-18 03:07:13 -0700 | [diff] [blame] | 477 | "CHANERR = %x, clearing\n", chanerr); | 
| Chris Leech | e382881 | 2007-03-08 09:57:35 -0800 | [diff] [blame] | 478 | writel(chanerr, ioat_chan->reg_base + IOAT_CHANERR_OFFSET); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 479 | } | 
|  | 480 |  | 
|  | 481 | /* Allocate descriptors */ | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 482 | for (i = 0; i < ioat_initial_desc_count; i++) { | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 483 | desc = ioat_dma_alloc_descriptor(ioat_chan, GFP_KERNEL); | 
|  | 484 | if (!desc) { | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 485 | dev_err(&ioat_chan->device->pdev->dev, | 
| Shannon Nelson | 5149fd0 | 2007-10-18 03:07:13 -0700 | [diff] [blame] | 486 | "Only %d initial descriptors\n", i); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 487 | break; | 
|  | 488 | } | 
|  | 489 | list_add_tail(&desc->node, &tmp_list); | 
|  | 490 | } | 
|  | 491 | spin_lock_bh(&ioat_chan->desc_lock); | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 492 | ioat_chan->desccount = i; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 493 | list_splice(&tmp_list, &ioat_chan->free_desc); | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 494 | if (ioat_chan->device->version != IOAT_VER_1_2) | 
|  | 495 | ioat2_dma_massage_chan_desc(ioat_chan); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 496 | spin_unlock_bh(&ioat_chan->desc_lock); | 
|  | 497 |  | 
|  | 498 | /* allocate a completion writeback area */ | 
|  | 499 | /* doing 2 32bit writes to mmio since 1 64b write doesn't work */ | 
|  | 500 | ioat_chan->completion_virt = | 
|  | 501 | pci_pool_alloc(ioat_chan->device->completion_pool, | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 502 | GFP_KERNEL, | 
|  | 503 | &ioat_chan->completion_addr); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 504 | memset(ioat_chan->completion_virt, 0, | 
|  | 505 | sizeof(*ioat_chan->completion_virt)); | 
| Chris Leech | e382881 | 2007-03-08 09:57:35 -0800 | [diff] [blame] | 506 | writel(((u64) ioat_chan->completion_addr) & 0x00000000FFFFFFFF, | 
|  | 507 | ioat_chan->reg_base + IOAT_CHANCMP_OFFSET_LOW); | 
|  | 508 | writel(((u64) ioat_chan->completion_addr) >> 32, | 
|  | 509 | ioat_chan->reg_base + IOAT_CHANCMP_OFFSET_HIGH); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 510 |  | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 511 | tasklet_enable(&ioat_chan->cleanup_task); | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 512 | ioat_dma_start_null_desc(ioat_chan);  /* give chain to dma device */ | 
|  | 513 | return ioat_chan->desccount; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 514 | } | 
|  | 515 |  | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 516 | /** | 
|  | 517 | * ioat_dma_free_chan_resources - release all the descriptors | 
|  | 518 | * @chan: the channel to be cleaned | 
|  | 519 | */ | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 520 | static void ioat_dma_free_chan_resources(struct dma_chan *chan) | 
|  | 521 | { | 
|  | 522 | struct ioat_dma_chan *ioat_chan = to_ioat_chan(chan); | 
| Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 523 | struct ioatdma_device *ioatdma_device = to_ioatdma_device(chan->device); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 524 | struct ioat_desc_sw *desc, *_desc; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 525 | int in_use_descs = 0; | 
|  | 526 |  | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 527 | tasklet_disable(&ioat_chan->cleanup_task); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 528 | ioat_dma_memcpy_cleanup(ioat_chan); | 
|  | 529 |  | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 530 | /* Delay 100ms after reset to allow internal DMA logic to quiesce | 
|  | 531 | * before removing DMA descriptor resources. | 
|  | 532 | */ | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 533 | writeb(IOAT_CHANCMD_RESET, | 
|  | 534 | ioat_chan->reg_base | 
|  | 535 | + IOAT_CHANCMD_OFFSET(ioat_chan->device->version)); | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 536 | mdelay(100); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 537 |  | 
|  | 538 | spin_lock_bh(&ioat_chan->desc_lock); | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 539 | switch (ioat_chan->device->version) { | 
|  | 540 | case IOAT_VER_1_2: | 
|  | 541 | list_for_each_entry_safe(desc, _desc, | 
|  | 542 | &ioat_chan->used_desc, node) { | 
|  | 543 | in_use_descs++; | 
|  | 544 | list_del(&desc->node); | 
|  | 545 | pci_pool_free(ioatdma_device->dma_pool, desc->hw, | 
|  | 546 | desc->async_tx.phys); | 
|  | 547 | kfree(desc); | 
|  | 548 | } | 
|  | 549 | list_for_each_entry_safe(desc, _desc, | 
|  | 550 | &ioat_chan->free_desc, node) { | 
|  | 551 | list_del(&desc->node); | 
|  | 552 | pci_pool_free(ioatdma_device->dma_pool, desc->hw, | 
|  | 553 | desc->async_tx.phys); | 
|  | 554 | kfree(desc); | 
|  | 555 | } | 
|  | 556 | break; | 
|  | 557 | case IOAT_VER_2_0: | 
|  | 558 | list_for_each_entry_safe(desc, _desc, | 
|  | 559 | ioat_chan->free_desc.next, node) { | 
|  | 560 | list_del(&desc->node); | 
|  | 561 | pci_pool_free(ioatdma_device->dma_pool, desc->hw, | 
|  | 562 | desc->async_tx.phys); | 
|  | 563 | kfree(desc); | 
|  | 564 | } | 
|  | 565 | desc = to_ioat_desc(ioat_chan->free_desc.next); | 
| Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 566 | pci_pool_free(ioatdma_device->dma_pool, desc->hw, | 
| Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 567 | desc->async_tx.phys); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 568 | kfree(desc); | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 569 | INIT_LIST_HEAD(&ioat_chan->free_desc); | 
|  | 570 | INIT_LIST_HEAD(&ioat_chan->used_desc); | 
|  | 571 | break; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 572 | } | 
|  | 573 | spin_unlock_bh(&ioat_chan->desc_lock); | 
|  | 574 |  | 
| Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 575 | pci_pool_free(ioatdma_device->completion_pool, | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 576 | ioat_chan->completion_virt, | 
|  | 577 | ioat_chan->completion_addr); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 578 |  | 
|  | 579 | /* one is ok since we left it on there on purpose */ | 
|  | 580 | if (in_use_descs > 1) | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 581 | dev_err(&ioat_chan->device->pdev->dev, | 
| Shannon Nelson | 5149fd0 | 2007-10-18 03:07:13 -0700 | [diff] [blame] | 582 | "Freeing %d in use descriptors!\n", | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 583 | in_use_descs - 1); | 
|  | 584 |  | 
|  | 585 | ioat_chan->last_completion = ioat_chan->completion_addr = 0; | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 586 | ioat_chan->pending = 0; | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 587 | ioat_chan->dmacount = 0; | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 588 | } | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 589 |  | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 590 | /** | 
|  | 591 | * ioat_dma_get_next_descriptor - return the next available descriptor | 
|  | 592 | * @ioat_chan: IOAT DMA channel handle | 
|  | 593 | * | 
|  | 594 | * Gets the next descriptor from the chain, and must be called with the | 
|  | 595 | * channel's desc_lock held.  Allocates more descriptors if the channel | 
|  | 596 | * has run out. | 
|  | 597 | */ | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 598 | static struct ioat_desc_sw * | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 599 | ioat1_dma_get_next_descriptor(struct ioat_dma_chan *ioat_chan) | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 600 | { | 
| Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 601 | struct ioat_desc_sw *new; | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 602 |  | 
|  | 603 | if (!list_empty(&ioat_chan->free_desc)) { | 
|  | 604 | new = to_ioat_desc(ioat_chan->free_desc.next); | 
|  | 605 | list_del(&new->node); | 
|  | 606 | } else { | 
|  | 607 | /* try to get another desc */ | 
|  | 608 | new = ioat_dma_alloc_descriptor(ioat_chan, GFP_ATOMIC); | 
| Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 609 | if (!new) { | 
|  | 610 | dev_err(&ioat_chan->device->pdev->dev, | 
|  | 611 | "alloc failed\n"); | 
|  | 612 | return NULL; | 
|  | 613 | } | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 614 | } | 
|  | 615 |  | 
|  | 616 | prefetch(new->hw); | 
|  | 617 | return new; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 618 | } | 
|  | 619 |  | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 620 | static struct ioat_desc_sw * | 
|  | 621 | ioat2_dma_get_next_descriptor(struct ioat_dma_chan *ioat_chan) | 
|  | 622 | { | 
| Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 623 | struct ioat_desc_sw *new; | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 624 |  | 
|  | 625 | /* | 
|  | 626 | * used.prev points to where to start processing | 
|  | 627 | * used.next points to next free descriptor | 
|  | 628 | * if used.prev == NULL, there are none waiting to be processed | 
|  | 629 | * if used.next == used.prev.prev, there is only one free descriptor, | 
|  | 630 | *      and we need to use it to as a noop descriptor before | 
|  | 631 | *      linking in a new set of descriptors, since the device | 
|  | 632 | *      has probably already read the pointer to it | 
|  | 633 | */ | 
|  | 634 | if (ioat_chan->used_desc.prev && | 
|  | 635 | ioat_chan->used_desc.next == ioat_chan->used_desc.prev->prev) { | 
|  | 636 |  | 
| Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 637 | struct ioat_desc_sw *desc; | 
|  | 638 | struct ioat_desc_sw *noop_desc; | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 639 | int i; | 
|  | 640 |  | 
|  | 641 | /* set up the noop descriptor */ | 
|  | 642 | noop_desc = to_ioat_desc(ioat_chan->used_desc.next); | 
|  | 643 | noop_desc->hw->size = 0; | 
|  | 644 | noop_desc->hw->ctl = IOAT_DMA_DESCRIPTOR_NUL; | 
|  | 645 | noop_desc->hw->src_addr = 0; | 
|  | 646 | noop_desc->hw->dst_addr = 0; | 
|  | 647 |  | 
|  | 648 | ioat_chan->used_desc.next = ioat_chan->used_desc.next->next; | 
|  | 649 | ioat_chan->pending++; | 
|  | 650 | ioat_chan->dmacount++; | 
|  | 651 |  | 
| Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 652 | /* try to get a few more descriptors */ | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 653 | for (i = 16; i; i--) { | 
|  | 654 | desc = ioat_dma_alloc_descriptor(ioat_chan, GFP_ATOMIC); | 
| Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 655 | if (!desc) { | 
|  | 656 | dev_err(&ioat_chan->device->pdev->dev, | 
|  | 657 | "alloc failed\n"); | 
|  | 658 | break; | 
|  | 659 | } | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 660 | list_add_tail(&desc->node, ioat_chan->used_desc.next); | 
|  | 661 |  | 
|  | 662 | desc->hw->next | 
|  | 663 | = to_ioat_desc(desc->node.next)->async_tx.phys; | 
|  | 664 | to_ioat_desc(desc->node.prev)->hw->next | 
|  | 665 | = desc->async_tx.phys; | 
|  | 666 | ioat_chan->desccount++; | 
|  | 667 | } | 
|  | 668 |  | 
|  | 669 | ioat_chan->used_desc.next = noop_desc->node.next; | 
|  | 670 | } | 
|  | 671 | new = to_ioat_desc(ioat_chan->used_desc.next); | 
|  | 672 | prefetch(new); | 
|  | 673 | ioat_chan->used_desc.next = new->node.next; | 
|  | 674 |  | 
|  | 675 | if (ioat_chan->used_desc.prev == NULL) | 
|  | 676 | ioat_chan->used_desc.prev = &new->node; | 
|  | 677 |  | 
|  | 678 | prefetch(new->hw); | 
|  | 679 | return new; | 
|  | 680 | } | 
|  | 681 |  | 
|  | 682 | static struct ioat_desc_sw *ioat_dma_get_next_descriptor( | 
|  | 683 | struct ioat_dma_chan *ioat_chan) | 
|  | 684 | { | 
|  | 685 | if (!ioat_chan) | 
|  | 686 | return NULL; | 
|  | 687 |  | 
|  | 688 | switch (ioat_chan->device->version) { | 
|  | 689 | case IOAT_VER_1_2: | 
|  | 690 | return ioat1_dma_get_next_descriptor(ioat_chan); | 
|  | 691 | break; | 
|  | 692 | case IOAT_VER_2_0: | 
|  | 693 | return ioat2_dma_get_next_descriptor(ioat_chan); | 
|  | 694 | break; | 
|  | 695 | } | 
|  | 696 | return NULL; | 
|  | 697 | } | 
|  | 698 |  | 
|  | 699 | static struct dma_async_tx_descriptor *ioat1_dma_prep_memcpy( | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 700 | struct dma_chan *chan, | 
| Dan Williams | 0036731 | 2008-02-02 19:49:57 -0700 | [diff] [blame] | 701 | dma_addr_t dma_dest, | 
|  | 702 | dma_addr_t dma_src, | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 703 | size_t len, | 
| Dan Williams | d4c56f9 | 2008-02-02 19:49:58 -0700 | [diff] [blame] | 704 | unsigned long flags) | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 705 | { | 
| Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 706 | struct ioat_dma_chan *ioat_chan = to_ioat_chan(chan); | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 707 | struct ioat_desc_sw *new; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 708 |  | 
|  | 709 | spin_lock_bh(&ioat_chan->desc_lock); | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 710 | new = ioat_dma_get_next_descriptor(ioat_chan); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 711 | spin_unlock_bh(&ioat_chan->desc_lock); | 
|  | 712 |  | 
| Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 713 | if (new) { | 
|  | 714 | new->len = len; | 
| Dan Williams | 0036731 | 2008-02-02 19:49:57 -0700 | [diff] [blame] | 715 | new->dst = dma_dest; | 
|  | 716 | new->src = dma_src; | 
| Dan Williams | 636bdeaa | 2008-04-17 20:17:26 -0700 | [diff] [blame] | 717 | new->async_tx.flags = flags; | 
| Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 718 | return &new->async_tx; | 
|  | 719 | } else | 
|  | 720 | return NULL; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 721 | } | 
|  | 722 |  | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 723 | static struct dma_async_tx_descriptor *ioat2_dma_prep_memcpy( | 
|  | 724 | struct dma_chan *chan, | 
| Dan Williams | 0036731 | 2008-02-02 19:49:57 -0700 | [diff] [blame] | 725 | dma_addr_t dma_dest, | 
|  | 726 | dma_addr_t dma_src, | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 727 | size_t len, | 
| Dan Williams | d4c56f9 | 2008-02-02 19:49:58 -0700 | [diff] [blame] | 728 | unsigned long flags) | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 729 | { | 
|  | 730 | struct ioat_dma_chan *ioat_chan = to_ioat_chan(chan); | 
|  | 731 | struct ioat_desc_sw *new; | 
|  | 732 |  | 
|  | 733 | spin_lock_bh(&ioat_chan->desc_lock); | 
|  | 734 | new = ioat2_dma_get_next_descriptor(ioat_chan); | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 735 |  | 
| Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 736 | /* | 
|  | 737 | * leave ioat_chan->desc_lock set in ioat 2 path | 
|  | 738 | * it will get unlocked at end of tx_submit | 
|  | 739 | */ | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 740 |  | 
| Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 741 | if (new) { | 
|  | 742 | new->len = len; | 
| Dan Williams | 0036731 | 2008-02-02 19:49:57 -0700 | [diff] [blame] | 743 | new->dst = dma_dest; | 
|  | 744 | new->src = dma_src; | 
| Dan Williams | 636bdeaa | 2008-04-17 20:17:26 -0700 | [diff] [blame] | 745 | new->async_tx.flags = flags; | 
| Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 746 | return &new->async_tx; | 
|  | 747 | } else | 
|  | 748 | return NULL; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 749 | } | 
|  | 750 |  | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 751 | static void ioat_dma_cleanup_tasklet(unsigned long data) | 
|  | 752 | { | 
|  | 753 | struct ioat_dma_chan *chan = (void *)data; | 
|  | 754 | ioat_dma_memcpy_cleanup(chan); | 
|  | 755 | writew(IOAT_CHANCTRL_INT_DISABLE, | 
|  | 756 | chan->reg_base + IOAT_CHANCTRL_OFFSET); | 
|  | 757 | } | 
|  | 758 |  | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 759 | /** | 
|  | 760 | * ioat_dma_memcpy_cleanup - cleanup up finished descriptors | 
|  | 761 | * @chan: ioat channel to be cleaned up | 
|  | 762 | */ | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 763 | static void ioat_dma_memcpy_cleanup(struct ioat_dma_chan *ioat_chan) | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 764 | { | 
|  | 765 | unsigned long phys_complete; | 
|  | 766 | struct ioat_desc_sw *desc, *_desc; | 
|  | 767 | dma_cookie_t cookie = 0; | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 768 | unsigned long desc_phys; | 
|  | 769 | struct ioat_desc_sw *latest_desc; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 770 |  | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 771 | prefetch(ioat_chan->completion_virt); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 772 |  | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 773 | if (!spin_trylock_bh(&ioat_chan->cleanup_lock)) | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 774 | return; | 
|  | 775 |  | 
|  | 776 | /* The completion writeback can happen at any time, | 
|  | 777 | so reads by the driver need to be atomic operations | 
|  | 778 | The descriptor physical addresses are limited to 32-bits | 
|  | 779 | when the CPU can only do a 32-bit mov */ | 
|  | 780 |  | 
|  | 781 | #if (BITS_PER_LONG == 64) | 
|  | 782 | phys_complete = | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 783 | ioat_chan->completion_virt->full | 
|  | 784 | & IOAT_CHANSTS_COMPLETED_DESCRIPTOR_ADDR; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 785 | #else | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 786 | phys_complete = | 
|  | 787 | ioat_chan->completion_virt->low & IOAT_LOW_COMPLETION_MASK; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 788 | #endif | 
|  | 789 |  | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 790 | if ((ioat_chan->completion_virt->full | 
|  | 791 | & IOAT_CHANSTS_DMA_TRANSFER_STATUS) == | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 792 | IOAT_CHANSTS_DMA_TRANSFER_STATUS_HALTED) { | 
|  | 793 | dev_err(&ioat_chan->device->pdev->dev, | 
| Shannon Nelson | 5149fd0 | 2007-10-18 03:07:13 -0700 | [diff] [blame] | 794 | "Channel halted, chanerr = %x\n", | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 795 | readl(ioat_chan->reg_base + IOAT_CHANERR_OFFSET)); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 796 |  | 
|  | 797 | /* TODO do something to salvage the situation */ | 
|  | 798 | } | 
|  | 799 |  | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 800 | if (phys_complete == ioat_chan->last_completion) { | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 801 | spin_unlock_bh(&ioat_chan->cleanup_lock); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 802 | return; | 
|  | 803 | } | 
|  | 804 |  | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 805 | cookie = 0; | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 806 | spin_lock_bh(&ioat_chan->desc_lock); | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 807 | switch (ioat_chan->device->version) { | 
|  | 808 | case IOAT_VER_1_2: | 
|  | 809 | list_for_each_entry_safe(desc, _desc, | 
|  | 810 | &ioat_chan->used_desc, node) { | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 811 |  | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 812 | /* | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 813 | * Incoming DMA requests may use multiple descriptors, | 
|  | 814 | * due to exceeding xfercap, perhaps. If so, only the | 
|  | 815 | * last one will have a cookie, and require unmapping. | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 816 | */ | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 817 | if (desc->async_tx.cookie) { | 
|  | 818 | cookie = desc->async_tx.cookie; | 
|  | 819 |  | 
|  | 820 | /* | 
|  | 821 | * yes we are unmapping both _page and _single | 
|  | 822 | * alloc'd regions with unmap_page. Is this | 
|  | 823 | * *really* that bad? | 
|  | 824 | */ | 
|  | 825 | pci_unmap_page(ioat_chan->device->pdev, | 
|  | 826 | pci_unmap_addr(desc, dst), | 
|  | 827 | pci_unmap_len(desc, len), | 
|  | 828 | PCI_DMA_FROMDEVICE); | 
|  | 829 | pci_unmap_page(ioat_chan->device->pdev, | 
|  | 830 | pci_unmap_addr(desc, src), | 
|  | 831 | pci_unmap_len(desc, len), | 
|  | 832 | PCI_DMA_TODEVICE); | 
|  | 833 |  | 
|  | 834 | if (desc->async_tx.callback) { | 
|  | 835 | desc->async_tx.callback(desc->async_tx.callback_param); | 
|  | 836 | desc->async_tx.callback = NULL; | 
|  | 837 | } | 
|  | 838 | } | 
|  | 839 |  | 
|  | 840 | if (desc->async_tx.phys != phys_complete) { | 
|  | 841 | /* | 
|  | 842 | * a completed entry, but not the last, so clean | 
|  | 843 | * up if the client is done with the descriptor | 
|  | 844 | */ | 
| Dan Williams | 636bdeaa | 2008-04-17 20:17:26 -0700 | [diff] [blame] | 845 | if (async_tx_test_ack(&desc->async_tx)) { | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 846 | list_del(&desc->node); | 
|  | 847 | list_add_tail(&desc->node, | 
|  | 848 | &ioat_chan->free_desc); | 
|  | 849 | } else | 
|  | 850 | desc->async_tx.cookie = 0; | 
|  | 851 | } else { | 
|  | 852 | /* | 
|  | 853 | * last used desc. Do not remove, so we can | 
|  | 854 | * append from it, but don't look at it next | 
|  | 855 | * time, either | 
|  | 856 | */ | 
|  | 857 | desc->async_tx.cookie = 0; | 
|  | 858 |  | 
|  | 859 | /* TODO check status bits? */ | 
|  | 860 | break; | 
| Shannon Nelson | 9521843 | 2007-10-18 03:07:15 -0700 | [diff] [blame] | 861 | } | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 862 | } | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 863 | break; | 
|  | 864 | case IOAT_VER_2_0: | 
|  | 865 | /* has some other thread has already cleaned up? */ | 
|  | 866 | if (ioat_chan->used_desc.prev == NULL) | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 867 | break; | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 868 |  | 
|  | 869 | /* work backwards to find latest finished desc */ | 
|  | 870 | desc = to_ioat_desc(ioat_chan->used_desc.next); | 
|  | 871 | latest_desc = NULL; | 
|  | 872 | do { | 
|  | 873 | desc = to_ioat_desc(desc->node.prev); | 
|  | 874 | desc_phys = (unsigned long)desc->async_tx.phys | 
|  | 875 | & IOAT_CHANSTS_COMPLETED_DESCRIPTOR_ADDR; | 
|  | 876 | if (desc_phys == phys_complete) { | 
|  | 877 | latest_desc = desc; | 
|  | 878 | break; | 
|  | 879 | } | 
|  | 880 | } while (&desc->node != ioat_chan->used_desc.prev); | 
|  | 881 |  | 
|  | 882 | if (latest_desc != NULL) { | 
|  | 883 |  | 
|  | 884 | /* work forwards to clear finished descriptors */ | 
|  | 885 | for (desc = to_ioat_desc(ioat_chan->used_desc.prev); | 
|  | 886 | &desc->node != latest_desc->node.next && | 
|  | 887 | &desc->node != ioat_chan->used_desc.next; | 
|  | 888 | desc = to_ioat_desc(desc->node.next)) { | 
|  | 889 | if (desc->async_tx.cookie) { | 
|  | 890 | cookie = desc->async_tx.cookie; | 
|  | 891 | desc->async_tx.cookie = 0; | 
|  | 892 |  | 
|  | 893 | pci_unmap_page(ioat_chan->device->pdev, | 
|  | 894 | pci_unmap_addr(desc, dst), | 
|  | 895 | pci_unmap_len(desc, len), | 
|  | 896 | PCI_DMA_FROMDEVICE); | 
|  | 897 | pci_unmap_page(ioat_chan->device->pdev, | 
|  | 898 | pci_unmap_addr(desc, src), | 
|  | 899 | pci_unmap_len(desc, len), | 
|  | 900 | PCI_DMA_TODEVICE); | 
|  | 901 |  | 
|  | 902 | if (desc->async_tx.callback) { | 
|  | 903 | desc->async_tx.callback(desc->async_tx.callback_param); | 
|  | 904 | desc->async_tx.callback = NULL; | 
|  | 905 | } | 
|  | 906 | } | 
|  | 907 | } | 
|  | 908 |  | 
|  | 909 | /* move used.prev up beyond those that are finished */ | 
|  | 910 | if (&desc->node == ioat_chan->used_desc.next) | 
|  | 911 | ioat_chan->used_desc.prev = NULL; | 
|  | 912 | else | 
|  | 913 | ioat_chan->used_desc.prev = &desc->node; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 914 | } | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 915 | break; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 916 | } | 
|  | 917 |  | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 918 | spin_unlock_bh(&ioat_chan->desc_lock); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 919 |  | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 920 | ioat_chan->last_completion = phys_complete; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 921 | if (cookie != 0) | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 922 | ioat_chan->completed_cookie = cookie; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 923 |  | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 924 | spin_unlock_bh(&ioat_chan->cleanup_lock); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 925 | } | 
|  | 926 |  | 
|  | 927 | /** | 
|  | 928 | * ioat_dma_is_complete - poll the status of a IOAT DMA transaction | 
|  | 929 | * @chan: IOAT DMA channel handle | 
|  | 930 | * @cookie: DMA transaction identifier | 
| Randy Dunlap | 6508871 | 2006-07-03 19:45:31 -0700 | [diff] [blame] | 931 | * @done: if not %NULL, updated with last completed transaction | 
|  | 932 | * @used: if not %NULL, updated with last used transaction | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 933 | */ | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 934 | static enum dma_status ioat_dma_is_complete(struct dma_chan *chan, | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 935 | dma_cookie_t cookie, | 
|  | 936 | dma_cookie_t *done, | 
|  | 937 | dma_cookie_t *used) | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 938 | { | 
|  | 939 | struct ioat_dma_chan *ioat_chan = to_ioat_chan(chan); | 
|  | 940 | dma_cookie_t last_used; | 
|  | 941 | dma_cookie_t last_complete; | 
|  | 942 | enum dma_status ret; | 
|  | 943 |  | 
|  | 944 | last_used = chan->cookie; | 
|  | 945 | last_complete = ioat_chan->completed_cookie; | 
|  | 946 |  | 
|  | 947 | if (done) | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 948 | *done = last_complete; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 949 | if (used) | 
|  | 950 | *used = last_used; | 
|  | 951 |  | 
|  | 952 | ret = dma_async_is_complete(cookie, last_complete, last_used); | 
|  | 953 | if (ret == DMA_SUCCESS) | 
|  | 954 | return ret; | 
|  | 955 |  | 
|  | 956 | ioat_dma_memcpy_cleanup(ioat_chan); | 
|  | 957 |  | 
|  | 958 | last_used = chan->cookie; | 
|  | 959 | last_complete = ioat_chan->completed_cookie; | 
|  | 960 |  | 
|  | 961 | if (done) | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 962 | *done = last_complete; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 963 | if (used) | 
|  | 964 | *used = last_used; | 
|  | 965 |  | 
|  | 966 | return dma_async_is_complete(cookie, last_complete, last_used); | 
|  | 967 | } | 
|  | 968 |  | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 969 | static void ioat_dma_start_null_desc(struct ioat_dma_chan *ioat_chan) | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 970 | { | 
|  | 971 | struct ioat_desc_sw *desc; | 
|  | 972 |  | 
|  | 973 | spin_lock_bh(&ioat_chan->desc_lock); | 
|  | 974 |  | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 975 | desc = ioat_dma_get_next_descriptor(ioat_chan); | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 976 | desc->hw->ctl = IOAT_DMA_DESCRIPTOR_NUL | 
|  | 977 | | IOAT_DMA_DESCRIPTOR_CTL_INT_GN | 
|  | 978 | | IOAT_DMA_DESCRIPTOR_CTL_CP_STS; | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 979 | desc->hw->size = 0; | 
|  | 980 | desc->hw->src_addr = 0; | 
|  | 981 | desc->hw->dst_addr = 0; | 
| Dan Williams | 636bdeaa | 2008-04-17 20:17:26 -0700 | [diff] [blame] | 982 | async_tx_ack(&desc->async_tx); | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 983 | switch (ioat_chan->device->version) { | 
|  | 984 | case IOAT_VER_1_2: | 
|  | 985 | desc->hw->next = 0; | 
|  | 986 | list_add_tail(&desc->node, &ioat_chan->used_desc); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 987 |  | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 988 | writel(((u64) desc->async_tx.phys) & 0x00000000FFFFFFFF, | 
|  | 989 | ioat_chan->reg_base + IOAT1_CHAINADDR_OFFSET_LOW); | 
|  | 990 | writel(((u64) desc->async_tx.phys) >> 32, | 
|  | 991 | ioat_chan->reg_base + IOAT1_CHAINADDR_OFFSET_HIGH); | 
|  | 992 |  | 
|  | 993 | writeb(IOAT_CHANCMD_START, ioat_chan->reg_base | 
|  | 994 | + IOAT_CHANCMD_OFFSET(ioat_chan->device->version)); | 
|  | 995 | break; | 
|  | 996 | case IOAT_VER_2_0: | 
|  | 997 | writel(((u64) desc->async_tx.phys) & 0x00000000FFFFFFFF, | 
|  | 998 | ioat_chan->reg_base + IOAT2_CHAINADDR_OFFSET_LOW); | 
|  | 999 | writel(((u64) desc->async_tx.phys) >> 32, | 
|  | 1000 | ioat_chan->reg_base + IOAT2_CHAINADDR_OFFSET_HIGH); | 
|  | 1001 |  | 
|  | 1002 | ioat_chan->dmacount++; | 
|  | 1003 | __ioat2_dma_memcpy_issue_pending(ioat_chan); | 
|  | 1004 | break; | 
|  | 1005 | } | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1006 | spin_unlock_bh(&ioat_chan->desc_lock); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1007 | } | 
|  | 1008 |  | 
|  | 1009 | /* | 
|  | 1010 | * Perform a IOAT transaction to verify the HW works. | 
|  | 1011 | */ | 
|  | 1012 | #define IOAT_TEST_SIZE 2000 | 
|  | 1013 |  | 
| Shannon Nelson | 9521843 | 2007-10-18 03:07:15 -0700 | [diff] [blame] | 1014 | static void ioat_dma_test_callback(void *dma_async_param) | 
|  | 1015 | { | 
|  | 1016 | printk(KERN_ERR "ioatdma: ioat_dma_test_callback(%p)\n", | 
| Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 1017 | dma_async_param); | 
| Shannon Nelson | 9521843 | 2007-10-18 03:07:15 -0700 | [diff] [blame] | 1018 | } | 
|  | 1019 |  | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 1020 | /** | 
|  | 1021 | * ioat_dma_self_test - Perform a IOAT transaction to verify the HW works. | 
|  | 1022 | * @device: device to be tested | 
|  | 1023 | */ | 
|  | 1024 | static int ioat_dma_self_test(struct ioatdma_device *device) | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1025 | { | 
|  | 1026 | int i; | 
|  | 1027 | u8 *src; | 
|  | 1028 | u8 *dest; | 
|  | 1029 | struct dma_chan *dma_chan; | 
| Shannon Nelson | 711924b | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 1030 | struct dma_async_tx_descriptor *tx; | 
| Dan Williams | 0036731 | 2008-02-02 19:49:57 -0700 | [diff] [blame] | 1031 | dma_addr_t dma_dest, dma_src; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1032 | dma_cookie_t cookie; | 
|  | 1033 | int err = 0; | 
|  | 1034 |  | 
| Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 1035 | src = kzalloc(sizeof(u8) * IOAT_TEST_SIZE, GFP_KERNEL); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1036 | if (!src) | 
|  | 1037 | return -ENOMEM; | 
| Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 1038 | dest = kzalloc(sizeof(u8) * IOAT_TEST_SIZE, GFP_KERNEL); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1039 | if (!dest) { | 
|  | 1040 | kfree(src); | 
|  | 1041 | return -ENOMEM; | 
|  | 1042 | } | 
|  | 1043 |  | 
|  | 1044 | /* Fill in src buffer */ | 
|  | 1045 | for (i = 0; i < IOAT_TEST_SIZE; i++) | 
|  | 1046 | src[i] = (u8)i; | 
|  | 1047 |  | 
|  | 1048 | /* Start copy, using first DMA channel */ | 
|  | 1049 | dma_chan = container_of(device->common.channels.next, | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1050 | struct dma_chan, | 
|  | 1051 | device_node); | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 1052 | if (device->common.device_alloc_chan_resources(dma_chan) < 1) { | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1053 | dev_err(&device->pdev->dev, | 
|  | 1054 | "selftest cannot allocate chan resource\n"); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1055 | err = -ENODEV; | 
|  | 1056 | goto out; | 
|  | 1057 | } | 
|  | 1058 |  | 
| Dan Williams | 0036731 | 2008-02-02 19:49:57 -0700 | [diff] [blame] | 1059 | dma_src = dma_map_single(dma_chan->device->dev, src, IOAT_TEST_SIZE, | 
|  | 1060 | DMA_TO_DEVICE); | 
|  | 1061 | dma_dest = dma_map_single(dma_chan->device->dev, dest, IOAT_TEST_SIZE, | 
|  | 1062 | DMA_FROM_DEVICE); | 
|  | 1063 | tx = device->common.device_prep_dma_memcpy(dma_chan, dma_dest, dma_src, | 
|  | 1064 | IOAT_TEST_SIZE, 0); | 
| Shannon Nelson | 5149fd0 | 2007-10-18 03:07:13 -0700 | [diff] [blame] | 1065 | if (!tx) { | 
|  | 1066 | dev_err(&device->pdev->dev, | 
|  | 1067 | "Self-test prep failed, disabling\n"); | 
|  | 1068 | err = -ENODEV; | 
|  | 1069 | goto free_resources; | 
|  | 1070 | } | 
|  | 1071 |  | 
| Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 1072 | async_tx_ack(tx); | 
| Shannon Nelson | 9521843 | 2007-10-18 03:07:15 -0700 | [diff] [blame] | 1073 | tx->callback = ioat_dma_test_callback; | 
|  | 1074 | tx->callback_param = (void *)0x8086; | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 1075 | cookie = tx->tx_submit(tx); | 
| Shannon Nelson | 7f2b291 | 2007-10-18 03:07:14 -0700 | [diff] [blame] | 1076 | if (cookie < 0) { | 
|  | 1077 | dev_err(&device->pdev->dev, | 
|  | 1078 | "Self-test setup failed, disabling\n"); | 
|  | 1079 | err = -ENODEV; | 
|  | 1080 | goto free_resources; | 
|  | 1081 | } | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 1082 | device->common.device_issue_pending(dma_chan); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1083 | msleep(1); | 
|  | 1084 |  | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 1085 | if (device->common.device_is_tx_complete(dma_chan, cookie, NULL, NULL) | 
|  | 1086 | != DMA_SUCCESS) { | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1087 | dev_err(&device->pdev->dev, | 
| Shannon Nelson | 5149fd0 | 2007-10-18 03:07:13 -0700 | [diff] [blame] | 1088 | "Self-test copy timed out, disabling\n"); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1089 | err = -ENODEV; | 
|  | 1090 | goto free_resources; | 
|  | 1091 | } | 
|  | 1092 | if (memcmp(src, dest, IOAT_TEST_SIZE)) { | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1093 | dev_err(&device->pdev->dev, | 
| Shannon Nelson | 5149fd0 | 2007-10-18 03:07:13 -0700 | [diff] [blame] | 1094 | "Self-test copy failed compare, disabling\n"); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1095 | err = -ENODEV; | 
|  | 1096 | goto free_resources; | 
|  | 1097 | } | 
|  | 1098 |  | 
|  | 1099 | free_resources: | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 1100 | device->common.device_free_chan_resources(dma_chan); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1101 | out: | 
|  | 1102 | kfree(src); | 
|  | 1103 | kfree(dest); | 
|  | 1104 | return err; | 
|  | 1105 | } | 
|  | 1106 |  | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 1107 | static char ioat_interrupt_style[32] = "msix"; | 
|  | 1108 | module_param_string(ioat_interrupt_style, ioat_interrupt_style, | 
|  | 1109 | sizeof(ioat_interrupt_style), 0644); | 
|  | 1110 | MODULE_PARM_DESC(ioat_interrupt_style, | 
|  | 1111 | "set ioat interrupt style: msix (default), " | 
|  | 1112 | "msix-single-vector, msi, intx)"); | 
|  | 1113 |  | 
|  | 1114 | /** | 
|  | 1115 | * ioat_dma_setup_interrupts - setup interrupt handler | 
|  | 1116 | * @device: ioat device | 
|  | 1117 | */ | 
|  | 1118 | static int ioat_dma_setup_interrupts(struct ioatdma_device *device) | 
|  | 1119 | { | 
|  | 1120 | struct ioat_dma_chan *ioat_chan; | 
|  | 1121 | int err, i, j, msixcnt; | 
|  | 1122 | u8 intrctrl = 0; | 
|  | 1123 |  | 
|  | 1124 | if (!strcmp(ioat_interrupt_style, "msix")) | 
|  | 1125 | goto msix; | 
|  | 1126 | if (!strcmp(ioat_interrupt_style, "msix-single-vector")) | 
|  | 1127 | goto msix_single_vector; | 
|  | 1128 | if (!strcmp(ioat_interrupt_style, "msi")) | 
|  | 1129 | goto msi; | 
|  | 1130 | if (!strcmp(ioat_interrupt_style, "intx")) | 
|  | 1131 | goto intx; | 
| Shannon Nelson | 5149fd0 | 2007-10-18 03:07:13 -0700 | [diff] [blame] | 1132 | dev_err(&device->pdev->dev, "invalid ioat_interrupt_style %s\n", | 
|  | 1133 | ioat_interrupt_style); | 
|  | 1134 | goto err_no_irq; | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 1135 |  | 
|  | 1136 | msix: | 
|  | 1137 | /* The number of MSI-X vectors should equal the number of channels */ | 
|  | 1138 | msixcnt = device->common.chancnt; | 
|  | 1139 | for (i = 0; i < msixcnt; i++) | 
|  | 1140 | device->msix_entries[i].entry = i; | 
|  | 1141 |  | 
|  | 1142 | err = pci_enable_msix(device->pdev, device->msix_entries, msixcnt); | 
|  | 1143 | if (err < 0) | 
|  | 1144 | goto msi; | 
|  | 1145 | if (err > 0) | 
|  | 1146 | goto msix_single_vector; | 
|  | 1147 |  | 
|  | 1148 | for (i = 0; i < msixcnt; i++) { | 
|  | 1149 | ioat_chan = ioat_lookup_chan_by_index(device, i); | 
|  | 1150 | err = request_irq(device->msix_entries[i].vector, | 
|  | 1151 | ioat_dma_do_interrupt_msix, | 
|  | 1152 | 0, "ioat-msix", ioat_chan); | 
|  | 1153 | if (err) { | 
|  | 1154 | for (j = 0; j < i; j++) { | 
|  | 1155 | ioat_chan = | 
|  | 1156 | ioat_lookup_chan_by_index(device, j); | 
|  | 1157 | free_irq(device->msix_entries[j].vector, | 
|  | 1158 | ioat_chan); | 
|  | 1159 | } | 
|  | 1160 | goto msix_single_vector; | 
|  | 1161 | } | 
|  | 1162 | } | 
|  | 1163 | intrctrl |= IOAT_INTRCTRL_MSIX_VECTOR_CONTROL; | 
|  | 1164 | device->irq_mode = msix_multi_vector; | 
|  | 1165 | goto done; | 
|  | 1166 |  | 
|  | 1167 | msix_single_vector: | 
|  | 1168 | device->msix_entries[0].entry = 0; | 
|  | 1169 | err = pci_enable_msix(device->pdev, device->msix_entries, 1); | 
|  | 1170 | if (err) | 
|  | 1171 | goto msi; | 
|  | 1172 |  | 
|  | 1173 | err = request_irq(device->msix_entries[0].vector, ioat_dma_do_interrupt, | 
|  | 1174 | 0, "ioat-msix", device); | 
|  | 1175 | if (err) { | 
|  | 1176 | pci_disable_msix(device->pdev); | 
|  | 1177 | goto msi; | 
|  | 1178 | } | 
|  | 1179 | device->irq_mode = msix_single_vector; | 
|  | 1180 | goto done; | 
|  | 1181 |  | 
|  | 1182 | msi: | 
|  | 1183 | err = pci_enable_msi(device->pdev); | 
|  | 1184 | if (err) | 
|  | 1185 | goto intx; | 
|  | 1186 |  | 
|  | 1187 | err = request_irq(device->pdev->irq, ioat_dma_do_interrupt, | 
|  | 1188 | 0, "ioat-msi", device); | 
|  | 1189 | if (err) { | 
|  | 1190 | pci_disable_msi(device->pdev); | 
|  | 1191 | goto intx; | 
|  | 1192 | } | 
|  | 1193 | /* | 
|  | 1194 | * CB 1.2 devices need a bit set in configuration space to enable MSI | 
|  | 1195 | */ | 
|  | 1196 | if (device->version == IOAT_VER_1_2) { | 
|  | 1197 | u32 dmactrl; | 
|  | 1198 | pci_read_config_dword(device->pdev, | 
|  | 1199 | IOAT_PCI_DMACTRL_OFFSET, &dmactrl); | 
|  | 1200 | dmactrl |= IOAT_PCI_DMACTRL_MSI_EN; | 
|  | 1201 | pci_write_config_dword(device->pdev, | 
|  | 1202 | IOAT_PCI_DMACTRL_OFFSET, dmactrl); | 
|  | 1203 | } | 
|  | 1204 | device->irq_mode = msi; | 
|  | 1205 | goto done; | 
|  | 1206 |  | 
|  | 1207 | intx: | 
|  | 1208 | err = request_irq(device->pdev->irq, ioat_dma_do_interrupt, | 
|  | 1209 | IRQF_SHARED, "ioat-intx", device); | 
|  | 1210 | if (err) | 
|  | 1211 | goto err_no_irq; | 
|  | 1212 | device->irq_mode = intx; | 
|  | 1213 |  | 
|  | 1214 | done: | 
|  | 1215 | intrctrl |= IOAT_INTRCTRL_MASTER_INT_EN; | 
|  | 1216 | writeb(intrctrl, device->reg_base + IOAT_INTRCTRL_OFFSET); | 
|  | 1217 | return 0; | 
|  | 1218 |  | 
|  | 1219 | err_no_irq: | 
|  | 1220 | /* Disable all interrupt generation */ | 
|  | 1221 | writeb(0, device->reg_base + IOAT_INTRCTRL_OFFSET); | 
|  | 1222 | dev_err(&device->pdev->dev, "no usable interrupts\n"); | 
|  | 1223 | device->irq_mode = none; | 
|  | 1224 | return -1; | 
|  | 1225 | } | 
|  | 1226 |  | 
|  | 1227 | /** | 
|  | 1228 | * ioat_dma_remove_interrupts - remove whatever interrupts were set | 
|  | 1229 | * @device: ioat device | 
|  | 1230 | */ | 
|  | 1231 | static void ioat_dma_remove_interrupts(struct ioatdma_device *device) | 
|  | 1232 | { | 
|  | 1233 | struct ioat_dma_chan *ioat_chan; | 
|  | 1234 | int i; | 
|  | 1235 |  | 
|  | 1236 | /* Disable all interrupt generation */ | 
|  | 1237 | writeb(0, device->reg_base + IOAT_INTRCTRL_OFFSET); | 
|  | 1238 |  | 
|  | 1239 | switch (device->irq_mode) { | 
|  | 1240 | case msix_multi_vector: | 
|  | 1241 | for (i = 0; i < device->common.chancnt; i++) { | 
|  | 1242 | ioat_chan = ioat_lookup_chan_by_index(device, i); | 
|  | 1243 | free_irq(device->msix_entries[i].vector, ioat_chan); | 
|  | 1244 | } | 
|  | 1245 | pci_disable_msix(device->pdev); | 
|  | 1246 | break; | 
|  | 1247 | case msix_single_vector: | 
|  | 1248 | free_irq(device->msix_entries[0].vector, device); | 
|  | 1249 | pci_disable_msix(device->pdev); | 
|  | 1250 | break; | 
|  | 1251 | case msi: | 
|  | 1252 | free_irq(device->pdev->irq, device); | 
|  | 1253 | pci_disable_msi(device->pdev); | 
|  | 1254 | break; | 
|  | 1255 | case intx: | 
|  | 1256 | free_irq(device->pdev->irq, device); | 
|  | 1257 | break; | 
|  | 1258 | case none: | 
|  | 1259 | dev_warn(&device->pdev->dev, | 
|  | 1260 | "call to %s without interrupts setup\n", __func__); | 
|  | 1261 | } | 
|  | 1262 | device->irq_mode = none; | 
|  | 1263 | } | 
|  | 1264 |  | 
| Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1265 | struct ioatdma_device *ioat_dma_probe(struct pci_dev *pdev, | 
|  | 1266 | void __iomem *iobase) | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1267 | { | 
|  | 1268 | int err; | 
| Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1269 | struct ioatdma_device *device; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1270 |  | 
|  | 1271 | device = kzalloc(sizeof(*device), GFP_KERNEL); | 
|  | 1272 | if (!device) { | 
|  | 1273 | err = -ENOMEM; | 
|  | 1274 | goto err_kzalloc; | 
|  | 1275 | } | 
| Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1276 | device->pdev = pdev; | 
|  | 1277 | device->reg_base = iobase; | 
|  | 1278 | device->version = readb(device->reg_base + IOAT_VER_OFFSET); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1279 |  | 
|  | 1280 | /* DMA coherent memory pool for DMA descriptor allocations */ | 
|  | 1281 | device->dma_pool = pci_pool_create("dma_desc_pool", pdev, | 
| Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1282 | sizeof(struct ioat_dma_descriptor), | 
|  | 1283 | 64, 0); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1284 | if (!device->dma_pool) { | 
|  | 1285 | err = -ENOMEM; | 
|  | 1286 | goto err_dma_pool; | 
|  | 1287 | } | 
|  | 1288 |  | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1289 | device->completion_pool = pci_pool_create("completion_pool", pdev, | 
|  | 1290 | sizeof(u64), SMP_CACHE_BYTES, | 
|  | 1291 | SMP_CACHE_BYTES); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1292 | if (!device->completion_pool) { | 
|  | 1293 | err = -ENOMEM; | 
|  | 1294 | goto err_completion_pool; | 
|  | 1295 | } | 
|  | 1296 |  | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1297 | INIT_LIST_HEAD(&device->common.channels); | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1298 | ioat_dma_enumerate_channels(device); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1299 |  | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1300 | device->common.device_alloc_chan_resources = | 
|  | 1301 | ioat_dma_alloc_chan_resources; | 
|  | 1302 | device->common.device_free_chan_resources = | 
|  | 1303 | ioat_dma_free_chan_resources; | 
| Dan Williams | 7405f74 | 2007-01-02 11:10:43 -0700 | [diff] [blame] | 1304 | device->common.dev = &pdev->dev; | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 1305 |  | 
|  | 1306 | dma_cap_set(DMA_MEMCPY, device->common.cap_mask); | 
|  | 1307 | device->common.device_is_tx_complete = ioat_dma_is_complete; | 
| Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 1308 | switch (device->version) { | 
|  | 1309 | case IOAT_VER_1_2: | 
|  | 1310 | device->common.device_prep_dma_memcpy = ioat1_dma_prep_memcpy; | 
|  | 1311 | device->common.device_issue_pending = | 
|  | 1312 | ioat1_dma_memcpy_issue_pending; | 
|  | 1313 | break; | 
|  | 1314 | case IOAT_VER_2_0: | 
|  | 1315 | device->common.device_prep_dma_memcpy = ioat2_dma_prep_memcpy; | 
|  | 1316 | device->common.device_issue_pending = | 
|  | 1317 | ioat2_dma_memcpy_issue_pending; | 
|  | 1318 | break; | 
|  | 1319 | } | 
|  | 1320 |  | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 1321 | dev_err(&device->pdev->dev, | 
| Shannon Nelson | 5149fd0 | 2007-10-18 03:07:13 -0700 | [diff] [blame] | 1322 | "Intel(R) I/OAT DMA Engine found," | 
|  | 1323 | " %d channels, device version 0x%02x, driver version %s\n", | 
|  | 1324 | device->common.chancnt, device->version, IOAT_DMA_VERSION); | 
| Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1325 |  | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 1326 | err = ioat_dma_setup_interrupts(device); | 
| Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1327 | if (err) | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 1328 | goto err_setup_interrupts; | 
| Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1329 |  | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 1330 | err = ioat_dma_self_test(device); | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1331 | if (err) | 
|  | 1332 | goto err_self_test; | 
|  | 1333 |  | 
|  | 1334 | dma_async_device_register(&device->common); | 
|  | 1335 |  | 
| Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1336 | return device; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1337 |  | 
|  | 1338 | err_self_test: | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 1339 | ioat_dma_remove_interrupts(device); | 
|  | 1340 | err_setup_interrupts: | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1341 | pci_pool_destroy(device->completion_pool); | 
|  | 1342 | err_completion_pool: | 
|  | 1343 | pci_pool_destroy(device->dma_pool); | 
|  | 1344 | err_dma_pool: | 
|  | 1345 | kfree(device); | 
|  | 1346 | err_kzalloc: | 
| Shannon Nelson | bb8e8bc | 2007-12-17 16:20:08 -0800 | [diff] [blame] | 1347 | dev_err(&pdev->dev, | 
| Shannon Nelson | 5149fd0 | 2007-10-18 03:07:13 -0700 | [diff] [blame] | 1348 | "Intel(R) I/OAT DMA Engine initialization failed\n"); | 
| Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1349 | return NULL; | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1350 | } | 
|  | 1351 |  | 
| Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1352 | void ioat_dma_remove(struct ioatdma_device *device) | 
| Dan Aloni | 428ed60 | 2007-03-08 09:57:36 -0800 | [diff] [blame] | 1353 | { | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1354 | struct dma_chan *chan, *_chan; | 
|  | 1355 | struct ioat_dma_chan *ioat_chan; | 
|  | 1356 |  | 
| Shannon Nelson | 3e03745 | 2007-10-16 01:27:40 -0700 | [diff] [blame] | 1357 | ioat_dma_remove_interrupts(device); | 
| Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1358 |  | 
| Shannon Nelson | dfe2299 | 2007-10-18 03:07:13 -0700 | [diff] [blame] | 1359 | dma_async_device_unregister(&device->common); | 
|  | 1360 |  | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1361 | pci_pool_destroy(device->dma_pool); | 
|  | 1362 | pci_pool_destroy(device->completion_pool); | 
| Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1363 |  | 
| Shannon Nelson | 7df7cf0 | 2007-10-18 03:07:12 -0700 | [diff] [blame] | 1364 | iounmap(device->reg_base); | 
|  | 1365 | pci_release_regions(device->pdev); | 
|  | 1366 | pci_disable_device(device->pdev); | 
|  | 1367 |  | 
| Shannon Nelson | 43d6e36 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1368 | list_for_each_entry_safe(chan, _chan, | 
|  | 1369 | &device->common.channels, device_node) { | 
| Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 1370 | ioat_chan = to_ioat_chan(chan); | 
|  | 1371 | list_del(&chan->device_node); | 
|  | 1372 | kfree(ioat_chan); | 
|  | 1373 | } | 
|  | 1374 | kfree(device); | 
|  | 1375 | } | 
|  | 1376 |  |