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