blob: 08417ad4edca42cbc0589a60d5148c5902367921 [file] [log] [blame]
Chris Leech0bbd5f42006-05-23 17:35:34 -07001/*
Shannon Nelson43d6e362007-10-16 01:27:39 -07002 * Intel I/OAT DMA Linux driver
Maciej Sosnowski211a22c2009-02-26 11:05:43 +01003 * Copyright(c) 2004 - 2009 Intel Corporation.
Chris Leech0bbd5f42006-05-23 17:35:34 -07004 *
5 * This program is free software; you can redistribute it and/or modify it
Shannon Nelson43d6e362007-10-16 01:27:39 -07006 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
Chris Leech0bbd5f42006-05-23 17:35:34 -07008 *
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 Nelson43d6e362007-10-16 01:27:39 -070015 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
Chris Leech0bbd5f42006-05-23 17:35:34 -070017 *
Shannon Nelson43d6e362007-10-16 01:27:39 -070018 * The full GNU General Public License is included in this distribution in
19 * the file called "COPYING".
20 *
Chris Leech0bbd5f42006-05-23 17:35:34 -070021 */
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. Miller6b00c922006-05-23 17:37:58 -070034#include <linux/dma-mapping.h>
Maciej Sosnowski09177e82008-07-22 10:07:33 -070035#include <linux/workqueue.h>
Venki Pallipadi3ad0b022008-10-22 16:34:52 -070036#include <linux/i7300_idle.h>
Dan Williams584ec222009-07-28 14:32:12 -070037#include "dma.h"
38#include "registers.h"
39#include "hw.h"
Chris Leech0bbd5f42006-05-23 17:35:34 -070040
Dan Williams5cbafa62009-08-26 13:01:44 -070041int ioat_pending_level = 4;
Shannon Nelson7bb67c12007-11-14 16:59:51 -080042module_param(ioat_pending_level, int, 0644);
43MODULE_PARM_DESC(ioat_pending_level,
44 "high-water mark for pushing ioat descriptors (default: 4)");
45
Chris Leech0bbd5f42006-05-23 17:35:34 -070046/* internal functions */
Dan Williams5cbafa62009-08-26 13:01:44 -070047static void ioat1_cleanup(struct ioat_dma_chan *ioat);
48static void ioat1_dma_start_null_desc(struct ioat_dma_chan *ioat);
Shannon Nelson3e037452007-10-16 01:27:40 -070049
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;
Dan Williamsdcbc8532009-07-28 14:44:50 -070058 struct ioat_chan_common *chan;
Shannon Nelson3e037452007-10-16 01:27:40 -070059 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) {
Dan Williamsdcbc8532009-07-28 14:44:50 -070075 chan = ioat_chan_by_index(instance, bit);
76 tasklet_schedule(&chan->cleanup_task);
Shannon Nelson3e037452007-10-16 01:27:40 -070077 }
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{
Dan Williamsdcbc8532009-07-28 14:44:50 -070090 struct ioat_chan_common *chan = data;
Shannon Nelson3e037452007-10-16 01:27:40 -070091
Dan Williamsdcbc8532009-07-28 14:44:50 -070092 tasklet_schedule(&chan->cleanup_task);
Shannon Nelson3e037452007-10-16 01:27:40 -070093
94 return IRQ_HANDLED;
95}
96
Dan Williams5cbafa62009-08-26 13:01:44 -070097static 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,
102 work_func_t work_fn, void (*tasklet)(unsigned long),
103 unsigned long tasklet_data)
104{
105 struct dma_device *dma = &device->common;
106
107 chan->device = device;
108 chan->reg_base = device->reg_base + (0x80 * (idx + 1));
109 INIT_DELAYED_WORK(&chan->work, work_fn);
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;
114 tasklet_init(&chan->cleanup_task, tasklet, tasklet_data);
115 tasklet_disable(&chan->cleanup_task);
116}
117
118static void ioat1_reset_part2(struct work_struct *work);
Shannon Nelson3e037452007-10-16 01:27:40 -0700119
120/**
Dan Williams5cbafa62009-08-26 13:01:44 -0700121 * ioat1_dma_enumerate_channels - find and initialize the device's channels
Shannon Nelson3e037452007-10-16 01:27:40 -0700122 * @device: the device to be enumerated
123 */
Dan Williams5cbafa62009-08-26 13:01:44 -0700124static int ioat1_enumerate_channels(struct ioatdma_device *device)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700125{
126 u8 xfercap_scale;
127 u32 xfercap;
128 int i;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700129 struct ioat_dma_chan *ioat;
Dan Williamse6c0b692009-09-08 17:29:44 -0700130 struct device *dev = &device->pdev->dev;
Dan Williamsf2427e22009-07-28 14:42:38 -0700131 struct dma_device *dma = &device->common;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700132
Dan Williamsf2427e22009-07-28 14:42:38 -0700133 INIT_LIST_HEAD(&dma->channels);
134 dma->chancnt = readb(device->reg_base + IOAT_CHANCNT_OFFSET);
Chris Leeche3828812007-03-08 09:57:35 -0800135 xfercap_scale = readb(device->reg_base + IOAT_XFERCAP_OFFSET);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700136 xfercap = (xfercap_scale == 0 ? -1 : (1UL << xfercap_scale));
Dan Williams6df91832009-09-08 12:00:55 -0700137 dev_dbg(dev, "%s: xfercap = %d\n", __func__, xfercap);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700138
Venki Pallipadif371be62008-10-23 15:39:06 -0700139#ifdef CONFIG_I7300_IDLE_IOAT_CHANNEL
Dan Williamsf2427e22009-07-28 14:42:38 -0700140 if (i7300_idle_platform_probe(NULL, NULL, 1) == 0)
141 dma->chancnt--;
Andy Henroid27471fd2008-10-09 11:45:22 -0700142#endif
Dan Williamsf2427e22009-07-28 14:42:38 -0700143 for (i = 0; i < dma->chancnt; i++) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700144 ioat = devm_kzalloc(dev, sizeof(*ioat), GFP_KERNEL);
Dan Williams5cbafa62009-08-26 13:01:44 -0700145 if (!ioat)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700146 break;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700147
Dan Williams5cbafa62009-08-26 13:01:44 -0700148 ioat_init_channel(device, &ioat->base, i,
149 ioat1_reset_part2,
150 ioat1_cleanup_tasklet,
151 (unsigned long) ioat);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700152 ioat->xfercap = xfercap;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700153 spin_lock_init(&ioat->desc_lock);
154 INIT_LIST_HEAD(&ioat->free_desc);
155 INIT_LIST_HEAD(&ioat->used_desc);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700156 }
Dan Williams5cbafa62009-08-26 13:01:44 -0700157 dma->chancnt = i;
158 return i;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700159}
160
Shannon Nelson711924b2007-12-17 16:20:08 -0800161/**
162 * ioat_dma_memcpy_issue_pending - push potentially unrecognized appended
163 * descriptors to hw
164 * @chan: DMA channel handle
165 */
Dan Williamsbc3c7022009-07-28 14:33:42 -0700166static inline void
Dan Williamsdcbc8532009-07-28 14:44:50 -0700167__ioat1_dma_memcpy_issue_pending(struct ioat_dma_chan *ioat)
Shannon Nelson711924b2007-12-17 16:20:08 -0800168{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700169 void __iomem *reg_base = ioat->base.reg_base;
170
Dan Williams6df91832009-09-08 12:00:55 -0700171 dev_dbg(to_dev(&ioat->base), "%s: pending: %d\n",
172 __func__, ioat->pending);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700173 ioat->pending = 0;
174 writeb(IOAT_CHANCMD_APPEND, reg_base + IOAT1_CHANCMD_OFFSET);
Shannon Nelson711924b2007-12-17 16:20:08 -0800175}
176
177static void ioat1_dma_memcpy_issue_pending(struct dma_chan *chan)
178{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700179 struct ioat_dma_chan *ioat = to_ioat_chan(chan);
Shannon Nelson711924b2007-12-17 16:20:08 -0800180
Dan Williamsdcbc8532009-07-28 14:44:50 -0700181 if (ioat->pending > 0) {
182 spin_lock_bh(&ioat->desc_lock);
183 __ioat1_dma_memcpy_issue_pending(ioat);
184 spin_unlock_bh(&ioat->desc_lock);
Shannon Nelson711924b2007-12-17 16:20:08 -0800185 }
186}
187
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700188/**
Dan Williams5cbafa62009-08-26 13:01:44 -0700189 * ioat1_reset_part2 - reinit the channel after a reset
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700190 */
Dan Williams5cbafa62009-08-26 13:01:44 -0700191static void ioat1_reset_part2(struct work_struct *work)
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700192{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700193 struct ioat_chan_common *chan;
194 struct ioat_dma_chan *ioat;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700195 struct ioat_desc_sw *desc;
Dan Williams5cbafa62009-08-26 13:01:44 -0700196 int dmacount;
197 bool start_null = false;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700198
Dan Williamsdcbc8532009-07-28 14:44:50 -0700199 chan = container_of(work, struct ioat_chan_common, work.work);
200 ioat = container_of(chan, struct ioat_dma_chan, base);
201 spin_lock_bh(&chan->cleanup_lock);
202 spin_lock_bh(&ioat->desc_lock);
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700203
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700204 *chan->completion = 0;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700205 ioat->pending = 0;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700206
Dan Williams5cbafa62009-08-26 13:01:44 -0700207 /* count the descriptors waiting */
208 dmacount = 0;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700209 if (ioat->used_desc.prev) {
210 desc = to_ioat_desc(ioat->used_desc.prev);
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700211 do {
Dan Williams5cbafa62009-08-26 13:01:44 -0700212 dmacount++;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700213 desc = to_ioat_desc(desc->node.next);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700214 } while (&desc->node != ioat->used_desc.next);
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700215 }
216
Dan Williams5cbafa62009-08-26 13:01:44 -0700217 if (dmacount) {
218 /*
219 * write the new starting descriptor address
220 * this puts channel engine into ARMED state
221 */
222 desc = to_ioat_desc(ioat->used_desc.prev);
Dan Williamsbc3c7022009-07-28 14:33:42 -0700223 writel(((u64) desc->txd.phys) & 0x00000000FFFFFFFF,
Dan Williamsdcbc8532009-07-28 14:44:50 -0700224 chan->reg_base + IOAT1_CHAINADDR_OFFSET_LOW);
Dan Williamsbc3c7022009-07-28 14:33:42 -0700225 writel(((u64) desc->txd.phys) >> 32,
Dan Williamsdcbc8532009-07-28 14:44:50 -0700226 chan->reg_base + IOAT1_CHAINADDR_OFFSET_HIGH);
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700227
Dan Williamsdcbc8532009-07-28 14:44:50 -0700228 writeb(IOAT_CHANCMD_START, chan->reg_base
229 + IOAT_CHANCMD_OFFSET(chan->device->version));
Dan Williams5cbafa62009-08-26 13:01:44 -0700230 } else
231 start_null = true;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700232 spin_unlock_bh(&ioat->desc_lock);
233 spin_unlock_bh(&chan->cleanup_lock);
Dan Williams5cbafa62009-08-26 13:01:44 -0700234
235 dev_err(to_dev(chan),
236 "chan%d reset - %d descs waiting, %d total desc\n",
237 chan_num(chan), dmacount, ioat->desccount);
238
239 if (start_null)
240 ioat1_dma_start_null_desc(ioat);
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700241}
242
243/**
Dan Williams5cbafa62009-08-26 13:01:44 -0700244 * ioat1_reset_channel - restart a channel
Dan Williamsdcbc8532009-07-28 14:44:50 -0700245 * @ioat: IOAT DMA channel handle
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700246 */
Dan Williams5cbafa62009-08-26 13:01:44 -0700247static void ioat1_reset_channel(struct ioat_dma_chan *ioat)
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700248{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700249 struct ioat_chan_common *chan = &ioat->base;
250 void __iomem *reg_base = chan->reg_base;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700251 u32 chansts, chanerr;
252
Dan Williamsdcbc8532009-07-28 14:44:50 -0700253 if (!ioat->used_desc.prev)
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700254 return;
255
Dan Williams6df91832009-09-08 12:00:55 -0700256 dev_dbg(to_dev(chan), "%s\n", __func__);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700257 chanerr = readl(reg_base + IOAT_CHANERR_OFFSET);
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700258 chansts = *chan->completion & IOAT_CHANSTS_DMA_TRANSFER_STATUS;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700259 if (chanerr) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700260 dev_err(to_dev(chan),
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700261 "chan%d, CHANSTS = 0x%08x CHANERR = 0x%04x, clearing\n",
Dan Williamsdcbc8532009-07-28 14:44:50 -0700262 chan_num(chan), chansts, chanerr);
263 writel(chanerr, reg_base + IOAT_CHANERR_OFFSET);
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700264 }
265
266 /*
267 * whack it upside the head with a reset
268 * and wait for things to settle out.
269 * force the pending count to a really big negative
270 * to make sure no one forces an issue_pending
271 * while we're waiting.
272 */
273
Dan Williamsdcbc8532009-07-28 14:44:50 -0700274 spin_lock_bh(&ioat->desc_lock);
275 ioat->pending = INT_MIN;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700276 writeb(IOAT_CHANCMD_RESET,
Dan Williamsdcbc8532009-07-28 14:44:50 -0700277 reg_base + IOAT_CHANCMD_OFFSET(chan->device->version));
278 spin_unlock_bh(&ioat->desc_lock);
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700279
280 /* schedule the 2nd half instead of sleeping a long time */
Dan Williamsdcbc8532009-07-28 14:44:50 -0700281 schedule_delayed_work(&chan->work, RESET_DELAY);
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700282}
283
284/**
Dan Williams5cbafa62009-08-26 13:01:44 -0700285 * ioat1_chan_watchdog - watch for stuck channels
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700286 */
Dan Williams5cbafa62009-08-26 13:01:44 -0700287static void ioat1_chan_watchdog(struct work_struct *work)
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700288{
289 struct ioatdma_device *device =
290 container_of(work, struct ioatdma_device, work.work);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700291 struct ioat_dma_chan *ioat;
292 struct ioat_chan_common *chan;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700293 int i;
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700294 u64 completion;
295 u32 completion_low;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700296 unsigned long compl_desc_addr_hw;
297
298 for (i = 0; i < device->common.chancnt; i++) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700299 chan = ioat_chan_by_index(device, i);
300 ioat = container_of(chan, struct ioat_dma_chan, base);
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700301
Dan Williams5cbafa62009-08-26 13:01:44 -0700302 if (/* have we started processing anything yet */
303 chan->last_completion
304 /* have we completed any since last watchdog cycle? */
Dan Williamsdcbc8532009-07-28 14:44:50 -0700305 && (chan->last_completion == chan->watchdog_completion)
Dan Williams5cbafa62009-08-26 13:01:44 -0700306 /* has TCP stuck on one cookie since last watchdog? */
Dan Williamsdcbc8532009-07-28 14:44:50 -0700307 && (chan->watchdog_tcp_cookie == chan->watchdog_last_tcp_cookie)
308 && (chan->watchdog_tcp_cookie != chan->completed_cookie)
Dan Williams5cbafa62009-08-26 13:01:44 -0700309 /* is there something in the chain to be processed? */
310 /* CB1 chain always has at least the last one processed */
Dan Williamsdcbc8532009-07-28 14:44:50 -0700311 && (ioat->used_desc.prev != ioat->used_desc.next)
312 && ioat->pending == 0) {
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700313
314 /*
315 * check CHANSTS register for completed
316 * descriptor address.
317 * if it is different than completion writeback,
318 * it is not zero
319 * and it has changed since the last watchdog
320 * we can assume that channel
321 * is still working correctly
322 * and the problem is in completion writeback.
323 * update completion writeback
324 * with actual CHANSTS value
325 * else
326 * try resetting the channel
327 */
328
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700329 /* we need to read the low address first as this
330 * causes the chipset to latch the upper bits
331 * for the subsequent read
332 */
333 completion_low = readl(chan->reg_base +
Dan Williamsdcbc8532009-07-28 14:44:50 -0700334 IOAT_CHANSTS_OFFSET_LOW(chan->device->version));
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700335 completion = readl(chan->reg_base +
Dan Williamsdcbc8532009-07-28 14:44:50 -0700336 IOAT_CHANSTS_OFFSET_HIGH(chan->device->version));
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700337 completion <<= 32;
338 completion |= completion_low;
339 compl_desc_addr_hw = completion &
340 IOAT_CHANSTS_COMPLETED_DESCRIPTOR_ADDR;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700341
342 if ((compl_desc_addr_hw != 0)
Dan Williamsdcbc8532009-07-28 14:44:50 -0700343 && (compl_desc_addr_hw != chan->watchdog_completion)
344 && (compl_desc_addr_hw != chan->last_compl_desc_addr_hw)) {
345 chan->last_compl_desc_addr_hw = compl_desc_addr_hw;
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700346 *chan->completion = completion;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700347 } else {
Dan Williams5cbafa62009-08-26 13:01:44 -0700348 ioat1_reset_channel(ioat);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700349 chan->watchdog_completion = 0;
350 chan->last_compl_desc_addr_hw = 0;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700351 }
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700352 } else {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700353 chan->last_compl_desc_addr_hw = 0;
354 chan->watchdog_completion = chan->last_completion;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700355 }
Dan Williams5cbafa62009-08-26 13:01:44 -0700356
Dan Williamsdcbc8532009-07-28 14:44:50 -0700357 chan->watchdog_last_tcp_cookie = chan->watchdog_tcp_cookie;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700358 }
359
360 schedule_delayed_work(&device->work, WATCHDOG_DELAY);
361}
362
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800363static dma_cookie_t ioat1_tx_submit(struct dma_async_tx_descriptor *tx)
Dan Williams7405f742007-01-02 11:10:43 -0700364{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700365 struct dma_chan *c = tx->chan;
366 struct ioat_dma_chan *ioat = to_ioat_chan(c);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700367 struct ioat_desc_sw *desc = tx_to_ioat_desc(tx);
368 struct ioat_desc_sw *first;
369 struct ioat_desc_sw *chain_tail;
Dan Williams7405f742007-01-02 11:10:43 -0700370 dma_cookie_t cookie;
Shannon Nelson7f2b2912007-10-18 03:07:14 -0700371
Dan Williamsdcbc8532009-07-28 14:44:50 -0700372 spin_lock_bh(&ioat->desc_lock);
Dan Williams7405f742007-01-02 11:10:43 -0700373 /* cookie incr and addition to used_list must be atomic */
Dan Williamsdcbc8532009-07-28 14:44:50 -0700374 cookie = c->cookie;
Dan Williams7405f742007-01-02 11:10:43 -0700375 cookie++;
376 if (cookie < 0)
377 cookie = 1;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700378 c->cookie = cookie;
379 tx->cookie = cookie;
Dan Williams6df91832009-09-08 12:00:55 -0700380 dev_dbg(to_dev(&ioat->base), "%s: cookie: %d\n", __func__, cookie);
Dan Williams7405f742007-01-02 11:10:43 -0700381
382 /* write address into NextDescriptor field of last desc in chain */
Dan Williamsa0587bc2009-07-28 14:44:04 -0700383 first = to_ioat_desc(tx->tx_list.next);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700384 chain_tail = to_ioat_desc(ioat->used_desc.prev);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700385 /* make descriptor updates globally visible before chaining */
386 wmb();
387 chain_tail->hw->next = first->txd.phys;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700388 list_splice_tail_init(&tx->tx_list, &ioat->used_desc);
Dan Williams6df91832009-09-08 12:00:55 -0700389 dump_desc_dbg(ioat, chain_tail);
390 dump_desc_dbg(ioat, first);
Dan Williams7405f742007-01-02 11:10:43 -0700391
Dan Williamsdcbc8532009-07-28 14:44:50 -0700392 ioat->pending += desc->tx_cnt;
393 if (ioat->pending >= ioat_pending_level)
394 __ioat1_dma_memcpy_issue_pending(ioat);
395 spin_unlock_bh(&ioat->desc_lock);
Dan Williams7405f742007-01-02 11:10:43 -0700396
Dan Williams7405f742007-01-02 11:10:43 -0700397 return cookie;
398}
399
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800400/**
401 * ioat_dma_alloc_descriptor - allocate and return a sw and hw descriptor pair
Dan Williamsdcbc8532009-07-28 14:44:50 -0700402 * @ioat: the channel supplying the memory pool for the descriptors
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800403 * @flags: allocation flags
404 */
Dan Williamsbc3c7022009-07-28 14:33:42 -0700405static struct ioat_desc_sw *
Dan Williamsdcbc8532009-07-28 14:44:50 -0700406ioat_dma_alloc_descriptor(struct ioat_dma_chan *ioat, gfp_t flags)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700407{
408 struct ioat_dma_descriptor *desc;
409 struct ioat_desc_sw *desc_sw;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700410 struct ioatdma_device *ioatdma_device;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700411 dma_addr_t phys;
412
Dan Williamsdcbc8532009-07-28 14:44:50 -0700413 ioatdma_device = ioat->base.device;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700414 desc = pci_pool_alloc(ioatdma_device->dma_pool, flags, &phys);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700415 if (unlikely(!desc))
416 return NULL;
417
418 desc_sw = kzalloc(sizeof(*desc_sw), flags);
419 if (unlikely(!desc_sw)) {
Shannon Nelson8ab89562007-10-16 01:27:39 -0700420 pci_pool_free(ioatdma_device->dma_pool, desc, phys);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700421 return NULL;
422 }
423
424 memset(desc, 0, sizeof(*desc));
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800425
Dan Williams5cbafa62009-08-26 13:01:44 -0700426 dma_async_tx_descriptor_init(&desc_sw->txd, &ioat->base.common);
427 desc_sw->txd.tx_submit = ioat1_tx_submit;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700428 desc_sw->hw = desc;
Dan Williamsbc3c7022009-07-28 14:33:42 -0700429 desc_sw->txd.phys = phys;
Dan Williams6df91832009-09-08 12:00:55 -0700430 set_desc_id(desc_sw, -1);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700431
432 return desc_sw;
433}
434
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800435static int ioat_initial_desc_count = 256;
436module_param(ioat_initial_desc_count, int, 0644);
437MODULE_PARM_DESC(ioat_initial_desc_count,
Dan Williams5cbafa62009-08-26 13:01:44 -0700438 "ioat1: initial descriptors per channel (default: 256)");
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800439/**
Dan Williams5cbafa62009-08-26 13:01:44 -0700440 * ioat1_dma_alloc_chan_resources - returns the number of allocated descriptors
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800441 * @chan: the channel to be filled out
442 */
Dan Williams5cbafa62009-08-26 13:01:44 -0700443static int ioat1_dma_alloc_chan_resources(struct dma_chan *c)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700444{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700445 struct ioat_dma_chan *ioat = to_ioat_chan(c);
446 struct ioat_chan_common *chan = &ioat->base;
Shannon Nelson711924b2007-12-17 16:20:08 -0800447 struct ioat_desc_sw *desc;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700448 u16 chanctrl;
449 u32 chanerr;
450 int i;
451 LIST_HEAD(tmp_list);
452
Shannon Nelsone4223972007-08-24 23:02:53 -0700453 /* have we already been set up? */
Dan Williamsdcbc8532009-07-28 14:44:50 -0700454 if (!list_empty(&ioat->free_desc))
455 return ioat->desccount;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700456
Shannon Nelson43d6e362007-10-16 01:27:39 -0700457 /* Setup register to interrupt and write completion status on error */
Shannon Nelsone4223972007-08-24 23:02:53 -0700458 chanctrl = IOAT_CHANCTRL_ERR_INT_EN |
Chris Leech0bbd5f42006-05-23 17:35:34 -0700459 IOAT_CHANCTRL_ANY_ERR_ABORT_EN |
460 IOAT_CHANCTRL_ERR_COMPLETION_EN;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700461 writew(chanctrl, chan->reg_base + IOAT_CHANCTRL_OFFSET);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700462
Dan Williamsdcbc8532009-07-28 14:44:50 -0700463 chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700464 if (chanerr) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700465 dev_err(to_dev(chan), "CHANERR = %x, clearing\n", chanerr);
466 writel(chanerr, chan->reg_base + IOAT_CHANERR_OFFSET);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700467 }
468
469 /* Allocate descriptors */
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800470 for (i = 0; i < ioat_initial_desc_count; i++) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700471 desc = ioat_dma_alloc_descriptor(ioat, GFP_KERNEL);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700472 if (!desc) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700473 dev_err(to_dev(chan), "Only %d initial descriptors\n", i);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700474 break;
475 }
Dan Williams6df91832009-09-08 12:00:55 -0700476 set_desc_id(desc, i);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700477 list_add_tail(&desc->node, &tmp_list);
478 }
Dan Williamsdcbc8532009-07-28 14:44:50 -0700479 spin_lock_bh(&ioat->desc_lock);
480 ioat->desccount = i;
481 list_splice(&tmp_list, &ioat->free_desc);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700482 spin_unlock_bh(&ioat->desc_lock);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700483
484 /* allocate a completion writeback area */
485 /* doing 2 32bit writes to mmio since 1 64b write doesn't work */
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700486 chan->completion = pci_pool_alloc(chan->device->completion_pool,
487 GFP_KERNEL, &chan->completion_dma);
488 memset(chan->completion, 0, sizeof(*chan->completion));
489 writel(((u64) chan->completion_dma) & 0x00000000FFFFFFFF,
Dan Williamsdcbc8532009-07-28 14:44:50 -0700490 chan->reg_base + IOAT_CHANCMP_OFFSET_LOW);
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700491 writel(((u64) chan->completion_dma) >> 32,
Dan Williamsdcbc8532009-07-28 14:44:50 -0700492 chan->reg_base + IOAT_CHANCMP_OFFSET_HIGH);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700493
Dan Williamsdcbc8532009-07-28 14:44:50 -0700494 tasklet_enable(&chan->cleanup_task);
Dan Williams5cbafa62009-08-26 13:01:44 -0700495 ioat1_dma_start_null_desc(ioat); /* give chain to dma device */
Dan Williams6df91832009-09-08 12:00:55 -0700496 dev_dbg(to_dev(chan), "%s: allocated %d descriptors\n",
497 __func__, ioat->desccount);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700498 return ioat->desccount;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700499}
500
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800501/**
Dan Williams5cbafa62009-08-26 13:01:44 -0700502 * ioat1_dma_free_chan_resources - release all the descriptors
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800503 * @chan: the channel to be cleaned
504 */
Dan Williams5cbafa62009-08-26 13:01:44 -0700505static void ioat1_dma_free_chan_resources(struct dma_chan *c)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700506{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700507 struct ioat_dma_chan *ioat = to_ioat_chan(c);
508 struct ioat_chan_common *chan = &ioat->base;
509 struct ioatdma_device *ioatdma_device = chan->device;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700510 struct ioat_desc_sw *desc, *_desc;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700511 int in_use_descs = 0;
512
Maciej Sosnowskic3d4f442008-11-07 01:45:52 +0000513 /* Before freeing channel resources first check
514 * if they have been previously allocated for this channel.
515 */
Dan Williamsdcbc8532009-07-28 14:44:50 -0700516 if (ioat->desccount == 0)
Maciej Sosnowskic3d4f442008-11-07 01:45:52 +0000517 return;
518
Dan Williamsdcbc8532009-07-28 14:44:50 -0700519 tasklet_disable(&chan->cleanup_task);
Dan Williams5cbafa62009-08-26 13:01:44 -0700520 ioat1_cleanup(ioat);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700521
Shannon Nelson3e037452007-10-16 01:27:40 -0700522 /* Delay 100ms after reset to allow internal DMA logic to quiesce
523 * before removing DMA descriptor resources.
524 */
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800525 writeb(IOAT_CHANCMD_RESET,
Dan Williamsdcbc8532009-07-28 14:44:50 -0700526 chan->reg_base + IOAT_CHANCMD_OFFSET(chan->device->version));
Shannon Nelson3e037452007-10-16 01:27:40 -0700527 mdelay(100);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700528
Dan Williamsdcbc8532009-07-28 14:44:50 -0700529 spin_lock_bh(&ioat->desc_lock);
Dan Williams6df91832009-09-08 12:00:55 -0700530 list_for_each_entry_safe(desc, _desc, &ioat->used_desc, node) {
531 dev_dbg(to_dev(chan), "%s: freeing %d from used list\n",
532 __func__, desc_id(desc));
533 dump_desc_dbg(ioat, desc);
Dan Williams5cbafa62009-08-26 13:01:44 -0700534 in_use_descs++;
535 list_del(&desc->node);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700536 pci_pool_free(ioatdma_device->dma_pool, desc->hw,
Dan Williamsbc3c7022009-07-28 14:33:42 -0700537 desc->txd.phys);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700538 kfree(desc);
Dan Williams5cbafa62009-08-26 13:01:44 -0700539 }
540 list_for_each_entry_safe(desc, _desc,
541 &ioat->free_desc, node) {
542 list_del(&desc->node);
543 pci_pool_free(ioatdma_device->dma_pool, desc->hw,
544 desc->txd.phys);
545 kfree(desc);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700546 }
Dan Williamsdcbc8532009-07-28 14:44:50 -0700547 spin_unlock_bh(&ioat->desc_lock);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700548
Shannon Nelson8ab89562007-10-16 01:27:39 -0700549 pci_pool_free(ioatdma_device->completion_pool,
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700550 chan->completion,
551 chan->completion_dma);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700552
553 /* one is ok since we left it on there on purpose */
554 if (in_use_descs > 1)
Dan Williamsdcbc8532009-07-28 14:44:50 -0700555 dev_err(to_dev(chan), "Freeing %d in use descriptors!\n",
Chris Leech0bbd5f42006-05-23 17:35:34 -0700556 in_use_descs - 1);
557
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700558 chan->last_completion = 0;
559 chan->completion_dma = 0;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700560 chan->watchdog_completion = 0;
561 chan->last_compl_desc_addr_hw = 0;
562 chan->watchdog_tcp_cookie = chan->watchdog_last_tcp_cookie = 0;
563 ioat->pending = 0;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700564 ioat->desccount = 0;
Shannon Nelson3e037452007-10-16 01:27:40 -0700565}
Shannon Nelson7f2b2912007-10-18 03:07:14 -0700566
Shannon Nelson3e037452007-10-16 01:27:40 -0700567/**
Dan Williamsdcbc8532009-07-28 14:44:50 -0700568 * ioat1_dma_get_next_descriptor - return the next available descriptor
569 * @ioat: IOAT DMA channel handle
Shannon Nelson3e037452007-10-16 01:27:40 -0700570 *
571 * Gets the next descriptor from the chain, and must be called with the
572 * channel's desc_lock held. Allocates more descriptors if the channel
573 * has run out.
574 */
Shannon Nelson7f2b2912007-10-18 03:07:14 -0700575static struct ioat_desc_sw *
Dan Williamsdcbc8532009-07-28 14:44:50 -0700576ioat1_dma_get_next_descriptor(struct ioat_dma_chan *ioat)
Shannon Nelson3e037452007-10-16 01:27:40 -0700577{
Shannon Nelson711924b2007-12-17 16:20:08 -0800578 struct ioat_desc_sw *new;
Shannon Nelson3e037452007-10-16 01:27:40 -0700579
Dan Williamsdcbc8532009-07-28 14:44:50 -0700580 if (!list_empty(&ioat->free_desc)) {
581 new = to_ioat_desc(ioat->free_desc.next);
Shannon Nelson3e037452007-10-16 01:27:40 -0700582 list_del(&new->node);
583 } else {
584 /* try to get another desc */
Dan Williamsdcbc8532009-07-28 14:44:50 -0700585 new = ioat_dma_alloc_descriptor(ioat, GFP_ATOMIC);
Shannon Nelson711924b2007-12-17 16:20:08 -0800586 if (!new) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700587 dev_err(to_dev(&ioat->base), "alloc failed\n");
Shannon Nelson711924b2007-12-17 16:20:08 -0800588 return NULL;
589 }
Shannon Nelson3e037452007-10-16 01:27:40 -0700590 }
Dan Williams6df91832009-09-08 12:00:55 -0700591 dev_dbg(to_dev(&ioat->base), "%s: allocated: %d\n",
592 __func__, desc_id(new));
Shannon Nelson3e037452007-10-16 01:27:40 -0700593 prefetch(new->hw);
594 return new;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700595}
596
Dan Williamsbc3c7022009-07-28 14:33:42 -0700597static struct dma_async_tx_descriptor *
Dan Williamsdcbc8532009-07-28 14:44:50 -0700598ioat1_dma_prep_memcpy(struct dma_chan *c, dma_addr_t dma_dest,
Dan Williamsbc3c7022009-07-28 14:33:42 -0700599 dma_addr_t dma_src, size_t len, unsigned long flags)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700600{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700601 struct ioat_dma_chan *ioat = to_ioat_chan(c);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700602 struct ioat_desc_sw *desc;
603 size_t copy;
604 LIST_HEAD(chain);
605 dma_addr_t src = dma_src;
606 dma_addr_t dest = dma_dest;
607 size_t total_len = len;
608 struct ioat_dma_descriptor *hw = NULL;
609 int tx_cnt = 0;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700610
Dan Williamsdcbc8532009-07-28 14:44:50 -0700611 spin_lock_bh(&ioat->desc_lock);
Dan Williams5cbafa62009-08-26 13:01:44 -0700612 desc = ioat1_dma_get_next_descriptor(ioat);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700613 do {
614 if (!desc)
615 break;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700616
Dan Williamsa0587bc2009-07-28 14:44:04 -0700617 tx_cnt++;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700618 copy = min_t(size_t, len, ioat->xfercap);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700619
620 hw = desc->hw;
621 hw->size = copy;
622 hw->ctl = 0;
623 hw->src_addr = src;
624 hw->dst_addr = dest;
625
626 list_add_tail(&desc->node, &chain);
627
628 len -= copy;
629 dest += copy;
630 src += copy;
631 if (len) {
632 struct ioat_desc_sw *next;
633
634 async_tx_ack(&desc->txd);
Dan Williams5cbafa62009-08-26 13:01:44 -0700635 next = ioat1_dma_get_next_descriptor(ioat);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700636 hw->next = next ? next->txd.phys : 0;
Dan Williams6df91832009-09-08 12:00:55 -0700637 dump_desc_dbg(ioat, desc);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700638 desc = next;
639 } else
640 hw->next = 0;
641 } while (len);
642
643 if (!desc) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700644 struct ioat_chan_common *chan = &ioat->base;
645
646 dev_err(to_dev(chan),
Dan Williams5cbafa62009-08-26 13:01:44 -0700647 "chan%d - get_next_desc failed\n", chan_num(chan));
Dan Williamsdcbc8532009-07-28 14:44:50 -0700648 list_splice(&chain, &ioat->free_desc);
649 spin_unlock_bh(&ioat->desc_lock);
Shannon Nelson711924b2007-12-17 16:20:08 -0800650 return NULL;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700651 }
Dan Williamsdcbc8532009-07-28 14:44:50 -0700652 spin_unlock_bh(&ioat->desc_lock);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700653
654 desc->txd.flags = flags;
655 desc->tx_cnt = tx_cnt;
Dan Williamsa0587bc2009-07-28 14:44:04 -0700656 desc->len = total_len;
657 list_splice(&chain, &desc->txd.tx_list);
658 hw->ctl_f.int_en = !!(flags & DMA_PREP_INTERRUPT);
659 hw->ctl_f.compl_write = 1;
Dan Williams6df91832009-09-08 12:00:55 -0700660 dump_desc_dbg(ioat, desc);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700661
662 return &desc->txd;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700663}
664
Dan Williams5cbafa62009-08-26 13:01:44 -0700665static void ioat1_cleanup_tasklet(unsigned long data)
Shannon Nelson3e037452007-10-16 01:27:40 -0700666{
667 struct ioat_dma_chan *chan = (void *)data;
Dan Williams5cbafa62009-08-26 13:01:44 -0700668 ioat1_cleanup(chan);
Shannon Nelson3e037452007-10-16 01:27:40 -0700669 writew(IOAT_CHANCTRL_INT_DISABLE,
Dan Williamsdcbc8532009-07-28 14:44:50 -0700670 chan->base.reg_base + IOAT_CHANCTRL_OFFSET);
Shannon Nelson3e037452007-10-16 01:27:40 -0700671}
672
Dan Williams5cbafa62009-08-26 13:01:44 -0700673static void ioat_unmap(struct pci_dev *pdev, dma_addr_t addr, size_t len,
674 int direction, enum dma_ctrl_flags flags, bool dst)
Dan Williamse1d181e2008-07-04 00:13:40 -0700675{
Dan Williams5cbafa62009-08-26 13:01:44 -0700676 if ((dst && (flags & DMA_COMPL_DEST_UNMAP_SINGLE)) ||
677 (!dst && (flags & DMA_COMPL_SRC_UNMAP_SINGLE)))
678 pci_unmap_single(pdev, addr, len, direction);
679 else
680 pci_unmap_page(pdev, addr, len, direction);
Dan Williamse1d181e2008-07-04 00:13:40 -0700681}
682
Dan Williams5cbafa62009-08-26 13:01:44 -0700683
684void ioat_dma_unmap(struct ioat_chan_common *chan, enum dma_ctrl_flags flags,
685 size_t len, struct ioat_dma_descriptor *hw)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700686{
Dan Williams5cbafa62009-08-26 13:01:44 -0700687 struct pci_dev *pdev = chan->device->pdev;
688 size_t offset = len - hw->size;
689
690 if (!(flags & DMA_COMPL_SKIP_DEST_UNMAP))
691 ioat_unmap(pdev, hw->dst_addr - offset, len,
692 PCI_DMA_FROMDEVICE, flags, 1);
693
694 if (!(flags & DMA_COMPL_SKIP_SRC_UNMAP))
695 ioat_unmap(pdev, hw->src_addr - offset, len,
696 PCI_DMA_TODEVICE, flags, 0);
697}
698
699unsigned long ioat_get_current_completion(struct ioat_chan_common *chan)
700{
Chris Leech0bbd5f42006-05-23 17:35:34 -0700701 unsigned long phys_complete;
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700702 u64 completion;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700703
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700704 completion = *chan->completion;
705 phys_complete = completion & IOAT_CHANSTS_COMPLETED_DESCRIPTOR_ADDR;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700706
Dan Williams6df91832009-09-08 12:00:55 -0700707 dev_dbg(to_dev(chan), "%s: phys_complete: %#llx\n", __func__,
708 (unsigned long long) phys_complete);
709
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700710 if ((completion & IOAT_CHANSTS_DMA_TRANSFER_STATUS) ==
Shannon Nelson43d6e362007-10-16 01:27:39 -0700711 IOAT_CHANSTS_DMA_TRANSFER_STATUS_HALTED) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700712 dev_err(to_dev(chan), "Channel halted, chanerr = %x\n",
713 readl(chan->reg_base + IOAT_CHANERR_OFFSET));
Chris Leech0bbd5f42006-05-23 17:35:34 -0700714
715 /* TODO do something to salvage the situation */
716 }
717
Dan Williams5cbafa62009-08-26 13:01:44 -0700718 return phys_complete;
719}
720
721/**
722 * ioat1_cleanup - cleanup up finished descriptors
723 * @chan: ioat channel to be cleaned up
724 */
725static void ioat1_cleanup(struct ioat_dma_chan *ioat)
726{
727 struct ioat_chan_common *chan = &ioat->base;
728 unsigned long phys_complete;
729 struct ioat_desc_sw *desc, *_desc;
730 dma_cookie_t cookie = 0;
731 struct dma_async_tx_descriptor *tx;
732
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700733 prefetch(chan->completion);
Dan Williams5cbafa62009-08-26 13:01:44 -0700734
735 if (!spin_trylock_bh(&chan->cleanup_lock))
736 return;
737
738 phys_complete = ioat_get_current_completion(chan);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700739 if (phys_complete == chan->last_completion) {
740 spin_unlock_bh(&chan->cleanup_lock);
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700741 /*
742 * perhaps we're stuck so hard that the watchdog can't go off?
743 * try to catch it after 2 seconds
744 */
Dan Williams5cbafa62009-08-26 13:01:44 -0700745 if (time_after(jiffies,
746 chan->last_completion_time + HZ*WATCHDOG_DELAY)) {
747 ioat1_chan_watchdog(&(chan->device->work.work));
748 chan->last_completion_time = jiffies;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700749 }
750 return;
751 }
Dan Williamsdcbc8532009-07-28 14:44:50 -0700752 chan->last_completion_time = jiffies;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700753
754 cookie = 0;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700755 if (!spin_trylock_bh(&ioat->desc_lock)) {
756 spin_unlock_bh(&chan->cleanup_lock);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700757 return;
758 }
759
Dan Williams6df91832009-09-08 12:00:55 -0700760 dev_dbg(to_dev(chan), "%s: phys_complete: %lx\n",
761 __func__, phys_complete);
Dan Williams5cbafa62009-08-26 13:01:44 -0700762 list_for_each_entry_safe(desc, _desc, &ioat->used_desc, node) {
Dan Williamsbc3c7022009-07-28 14:33:42 -0700763 tx = &desc->txd;
Dan Williams5cbafa62009-08-26 13:01:44 -0700764 /*
765 * Incoming DMA requests may use multiple descriptors,
766 * due to exceeding xfercap, perhaps. If so, only the
767 * last one will have a cookie, and require unmapping.
768 */
Dan Williams6df91832009-09-08 12:00:55 -0700769 dump_desc_dbg(ioat, desc);
Dan Williams5cbafa62009-08-26 13:01:44 -0700770 if (tx->cookie) {
771 cookie = tx->cookie;
772 ioat_dma_unmap(chan, tx->flags, desc->len, desc->hw);
773 if (tx->callback) {
774 tx->callback(tx->callback_param);
775 tx->callback = NULL;
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800776 }
Chris Leech0bbd5f42006-05-23 17:35:34 -0700777 }
Dan Williams5cbafa62009-08-26 13:01:44 -0700778
779 if (tx->phys != phys_complete) {
780 /*
781 * a completed entry, but not the last, so clean
782 * up if the client is done with the descriptor
783 */
784 if (async_tx_test_ack(tx))
785 list_move_tail(&desc->node, &ioat->free_desc);
786 else
787 tx->cookie = 0;
788 } else {
789 /*
790 * last used desc. Do not remove, so we can
791 * append from it, but don't look at it next
792 * time, either
793 */
794 tx->cookie = 0;
795
796 /* TODO check status bits? */
797 break;
798 }
Chris Leech0bbd5f42006-05-23 17:35:34 -0700799 }
800
Dan Williamsdcbc8532009-07-28 14:44:50 -0700801 spin_unlock_bh(&ioat->desc_lock);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700802
Dan Williamsdcbc8532009-07-28 14:44:50 -0700803 chan->last_completion = phys_complete;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700804 if (cookie != 0)
Dan Williamsdcbc8532009-07-28 14:44:50 -0700805 chan->completed_cookie = cookie;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700806
Dan Williamsdcbc8532009-07-28 14:44:50 -0700807 spin_unlock_bh(&chan->cleanup_lock);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700808}
809
Dan Williamsbc3c7022009-07-28 14:33:42 -0700810static enum dma_status
Dan Williams5cbafa62009-08-26 13:01:44 -0700811ioat1_dma_is_complete(struct dma_chan *c, dma_cookie_t cookie,
812 dma_cookie_t *done, dma_cookie_t *used)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700813{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700814 struct ioat_dma_chan *ioat = to_ioat_chan(c);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700815
Dan Williams5cbafa62009-08-26 13:01:44 -0700816 if (ioat_is_complete(c, cookie, done, used) == DMA_SUCCESS)
817 return DMA_SUCCESS;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700818
Dan Williams5cbafa62009-08-26 13:01:44 -0700819 ioat1_cleanup(ioat);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700820
Dan Williams5cbafa62009-08-26 13:01:44 -0700821 return ioat_is_complete(c, cookie, done, used);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700822}
823
Dan Williams5cbafa62009-08-26 13:01:44 -0700824static void ioat1_dma_start_null_desc(struct ioat_dma_chan *ioat)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700825{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700826 struct ioat_chan_common *chan = &ioat->base;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700827 struct ioat_desc_sw *desc;
Dan Williamsc7984f42009-07-28 14:44:04 -0700828 struct ioat_dma_descriptor *hw;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700829
Dan Williamsdcbc8532009-07-28 14:44:50 -0700830 spin_lock_bh(&ioat->desc_lock);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700831
Dan Williams5cbafa62009-08-26 13:01:44 -0700832 desc = ioat1_dma_get_next_descriptor(ioat);
Maciej Sosnowski7f1b3582008-07-22 17:30:57 -0700833
834 if (!desc) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700835 dev_err(to_dev(chan),
Maciej Sosnowski7f1b3582008-07-22 17:30:57 -0700836 "Unable to start null desc - get next desc failed\n");
Dan Williamsdcbc8532009-07-28 14:44:50 -0700837 spin_unlock_bh(&ioat->desc_lock);
Maciej Sosnowski7f1b3582008-07-22 17:30:57 -0700838 return;
839 }
840
Dan Williamsc7984f42009-07-28 14:44:04 -0700841 hw = desc->hw;
842 hw->ctl = 0;
843 hw->ctl_f.null = 1;
844 hw->ctl_f.int_en = 1;
845 hw->ctl_f.compl_write = 1;
Maciej Sosnowski7f1b3582008-07-22 17:30:57 -0700846 /* set size to non-zero value (channel returns error when size is 0) */
Dan Williamsc7984f42009-07-28 14:44:04 -0700847 hw->size = NULL_DESC_BUFFER_SIZE;
848 hw->src_addr = 0;
849 hw->dst_addr = 0;
Dan Williamsbc3c7022009-07-28 14:33:42 -0700850 async_tx_ack(&desc->txd);
Dan Williams5cbafa62009-08-26 13:01:44 -0700851 hw->next = 0;
852 list_add_tail(&desc->node, &ioat->used_desc);
Dan Williams6df91832009-09-08 12:00:55 -0700853 dump_desc_dbg(ioat, desc);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700854
Dan Williams5cbafa62009-08-26 13:01:44 -0700855 writel(((u64) desc->txd.phys) & 0x00000000FFFFFFFF,
856 chan->reg_base + IOAT1_CHAINADDR_OFFSET_LOW);
857 writel(((u64) desc->txd.phys) >> 32,
858 chan->reg_base + IOAT1_CHAINADDR_OFFSET_HIGH);
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800859
Dan Williams5cbafa62009-08-26 13:01:44 -0700860 writeb(IOAT_CHANCMD_START, chan->reg_base
861 + IOAT_CHANCMD_OFFSET(chan->device->version));
Dan Williamsdcbc8532009-07-28 14:44:50 -0700862 spin_unlock_bh(&ioat->desc_lock);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700863}
864
865/*
866 * Perform a IOAT transaction to verify the HW works.
867 */
868#define IOAT_TEST_SIZE 2000
869
Shannon Nelson95218432007-10-18 03:07:15 -0700870static void ioat_dma_test_callback(void *dma_async_param)
871{
Dan Williamsb9bdcbb2009-01-06 11:38:22 -0700872 struct completion *cmp = dma_async_param;
873
874 complete(cmp);
Shannon Nelson95218432007-10-18 03:07:15 -0700875}
876
Shannon Nelson3e037452007-10-16 01:27:40 -0700877/**
878 * ioat_dma_self_test - Perform a IOAT transaction to verify the HW works.
879 * @device: device to be tested
880 */
881static int ioat_dma_self_test(struct ioatdma_device *device)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700882{
883 int i;
884 u8 *src;
885 u8 *dest;
Dan Williamsbc3c7022009-07-28 14:33:42 -0700886 struct dma_device *dma = &device->common;
887 struct device *dev = &device->pdev->dev;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700888 struct dma_chan *dma_chan;
Shannon Nelson711924b2007-12-17 16:20:08 -0800889 struct dma_async_tx_descriptor *tx;
Dan Williams00367312008-02-02 19:49:57 -0700890 dma_addr_t dma_dest, dma_src;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700891 dma_cookie_t cookie;
892 int err = 0;
Dan Williamsb9bdcbb2009-01-06 11:38:22 -0700893 struct completion cmp;
Dan Williams0c33e1c2009-03-02 13:31:35 -0700894 unsigned long tmo;
Maciej Sosnowski4f005db2009-04-23 12:31:51 +0200895 unsigned long flags;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700896
Christoph Lametere94b1762006-12-06 20:33:17 -0800897 src = kzalloc(sizeof(u8) * IOAT_TEST_SIZE, GFP_KERNEL);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700898 if (!src)
899 return -ENOMEM;
Christoph Lametere94b1762006-12-06 20:33:17 -0800900 dest = kzalloc(sizeof(u8) * IOAT_TEST_SIZE, GFP_KERNEL);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700901 if (!dest) {
902 kfree(src);
903 return -ENOMEM;
904 }
905
906 /* Fill in src buffer */
907 for (i = 0; i < IOAT_TEST_SIZE; i++)
908 src[i] = (u8)i;
909
910 /* Start copy, using first DMA channel */
Dan Williamsbc3c7022009-07-28 14:33:42 -0700911 dma_chan = container_of(dma->channels.next, struct dma_chan,
Shannon Nelson43d6e362007-10-16 01:27:39 -0700912 device_node);
Dan Williamsbc3c7022009-07-28 14:33:42 -0700913 if (dma->device_alloc_chan_resources(dma_chan) < 1) {
914 dev_err(dev, "selftest cannot allocate chan resource\n");
Chris Leech0bbd5f42006-05-23 17:35:34 -0700915 err = -ENODEV;
916 goto out;
917 }
918
Dan Williamsbc3c7022009-07-28 14:33:42 -0700919 dma_src = dma_map_single(dev, src, IOAT_TEST_SIZE, DMA_TO_DEVICE);
920 dma_dest = dma_map_single(dev, dest, IOAT_TEST_SIZE, DMA_FROM_DEVICE);
Dan Williamsa6a39ca2009-07-28 14:44:05 -0700921 flags = DMA_COMPL_SRC_UNMAP_SINGLE | DMA_COMPL_DEST_UNMAP_SINGLE |
922 DMA_PREP_INTERRUPT;
Dan Williams00367312008-02-02 19:49:57 -0700923 tx = device->common.device_prep_dma_memcpy(dma_chan, dma_dest, dma_src,
Maciej Sosnowski4f005db2009-04-23 12:31:51 +0200924 IOAT_TEST_SIZE, flags);
Shannon Nelson5149fd02007-10-18 03:07:13 -0700925 if (!tx) {
Dan Williamsbc3c7022009-07-28 14:33:42 -0700926 dev_err(dev, "Self-test prep failed, disabling\n");
Shannon Nelson5149fd02007-10-18 03:07:13 -0700927 err = -ENODEV;
928 goto free_resources;
929 }
930
Dan Williams7405f742007-01-02 11:10:43 -0700931 async_tx_ack(tx);
Dan Williamsb9bdcbb2009-01-06 11:38:22 -0700932 init_completion(&cmp);
Shannon Nelson95218432007-10-18 03:07:15 -0700933 tx->callback = ioat_dma_test_callback;
Dan Williamsb9bdcbb2009-01-06 11:38:22 -0700934 tx->callback_param = &cmp;
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800935 cookie = tx->tx_submit(tx);
Shannon Nelson7f2b2912007-10-18 03:07:14 -0700936 if (cookie < 0) {
Dan Williamsbc3c7022009-07-28 14:33:42 -0700937 dev_err(dev, "Self-test setup failed, disabling\n");
Shannon Nelson7f2b2912007-10-18 03:07:14 -0700938 err = -ENODEV;
939 goto free_resources;
940 }
Dan Williamsbc3c7022009-07-28 14:33:42 -0700941 dma->device_issue_pending(dma_chan);
Dan Williams532d3b12008-12-03 17:16:55 -0700942
Dan Williams0c33e1c2009-03-02 13:31:35 -0700943 tmo = wait_for_completion_timeout(&cmp, msecs_to_jiffies(3000));
Chris Leech0bbd5f42006-05-23 17:35:34 -0700944
Dan Williams0c33e1c2009-03-02 13:31:35 -0700945 if (tmo == 0 ||
Dan Williamsbc3c7022009-07-28 14:33:42 -0700946 dma->device_is_tx_complete(dma_chan, cookie, NULL, NULL)
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800947 != DMA_SUCCESS) {
Dan Williamsbc3c7022009-07-28 14:33:42 -0700948 dev_err(dev, "Self-test copy timed out, disabling\n");
Chris Leech0bbd5f42006-05-23 17:35:34 -0700949 err = -ENODEV;
950 goto free_resources;
951 }
952 if (memcmp(src, dest, IOAT_TEST_SIZE)) {
Dan Williamsbc3c7022009-07-28 14:33:42 -0700953 dev_err(dev, "Self-test copy failed compare, disabling\n");
Chris Leech0bbd5f42006-05-23 17:35:34 -0700954 err = -ENODEV;
955 goto free_resources;
956 }
957
958free_resources:
Dan Williamsbc3c7022009-07-28 14:33:42 -0700959 dma->device_free_chan_resources(dma_chan);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700960out:
961 kfree(src);
962 kfree(dest);
963 return err;
964}
965
Shannon Nelson3e037452007-10-16 01:27:40 -0700966static char ioat_interrupt_style[32] = "msix";
967module_param_string(ioat_interrupt_style, ioat_interrupt_style,
968 sizeof(ioat_interrupt_style), 0644);
969MODULE_PARM_DESC(ioat_interrupt_style,
970 "set ioat interrupt style: msix (default), "
971 "msix-single-vector, msi, intx)");
972
973/**
974 * ioat_dma_setup_interrupts - setup interrupt handler
975 * @device: ioat device
976 */
977static int ioat_dma_setup_interrupts(struct ioatdma_device *device)
978{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700979 struct ioat_chan_common *chan;
Dan Williamse6c0b692009-09-08 17:29:44 -0700980 struct pci_dev *pdev = device->pdev;
981 struct device *dev = &pdev->dev;
982 struct msix_entry *msix;
983 int i, j, msixcnt;
984 int err = -EINVAL;
Shannon Nelson3e037452007-10-16 01:27:40 -0700985 u8 intrctrl = 0;
986
987 if (!strcmp(ioat_interrupt_style, "msix"))
988 goto msix;
989 if (!strcmp(ioat_interrupt_style, "msix-single-vector"))
990 goto msix_single_vector;
991 if (!strcmp(ioat_interrupt_style, "msi"))
992 goto msi;
993 if (!strcmp(ioat_interrupt_style, "intx"))
994 goto intx;
Dan Williamse6c0b692009-09-08 17:29:44 -0700995 dev_err(dev, "invalid ioat_interrupt_style %s\n", ioat_interrupt_style);
Shannon Nelson5149fd02007-10-18 03:07:13 -0700996 goto err_no_irq;
Shannon Nelson3e037452007-10-16 01:27:40 -0700997
998msix:
999 /* The number of MSI-X vectors should equal the number of channels */
1000 msixcnt = device->common.chancnt;
1001 for (i = 0; i < msixcnt; i++)
1002 device->msix_entries[i].entry = i;
1003
Dan Williamse6c0b692009-09-08 17:29:44 -07001004 err = pci_enable_msix(pdev, device->msix_entries, msixcnt);
Shannon Nelson3e037452007-10-16 01:27:40 -07001005 if (err < 0)
1006 goto msi;
1007 if (err > 0)
1008 goto msix_single_vector;
1009
1010 for (i = 0; i < msixcnt; i++) {
Dan Williamse6c0b692009-09-08 17:29:44 -07001011 msix = &device->msix_entries[i];
Dan Williamsdcbc8532009-07-28 14:44:50 -07001012 chan = ioat_chan_by_index(device, i);
Dan Williamse6c0b692009-09-08 17:29:44 -07001013 err = devm_request_irq(dev, msix->vector,
1014 ioat_dma_do_interrupt_msix, 0,
Dan Williamsdcbc8532009-07-28 14:44:50 -07001015 "ioat-msix", chan);
Shannon Nelson3e037452007-10-16 01:27:40 -07001016 if (err) {
1017 for (j = 0; j < i; j++) {
Dan Williamse6c0b692009-09-08 17:29:44 -07001018 msix = &device->msix_entries[j];
Dan Williamsdcbc8532009-07-28 14:44:50 -07001019 chan = ioat_chan_by_index(device, j);
1020 devm_free_irq(dev, msix->vector, chan);
Shannon Nelson3e037452007-10-16 01:27:40 -07001021 }
1022 goto msix_single_vector;
1023 }
1024 }
1025 intrctrl |= IOAT_INTRCTRL_MSIX_VECTOR_CONTROL;
Shannon Nelson3e037452007-10-16 01:27:40 -07001026 goto done;
1027
1028msix_single_vector:
Dan Williamse6c0b692009-09-08 17:29:44 -07001029 msix = &device->msix_entries[0];
1030 msix->entry = 0;
1031 err = pci_enable_msix(pdev, device->msix_entries, 1);
Shannon Nelson3e037452007-10-16 01:27:40 -07001032 if (err)
1033 goto msi;
1034
Dan Williamse6c0b692009-09-08 17:29:44 -07001035 err = devm_request_irq(dev, msix->vector, ioat_dma_do_interrupt, 0,
1036 "ioat-msix", device);
Shannon Nelson3e037452007-10-16 01:27:40 -07001037 if (err) {
Dan Williamse6c0b692009-09-08 17:29:44 -07001038 pci_disable_msix(pdev);
Shannon Nelson3e037452007-10-16 01:27:40 -07001039 goto msi;
1040 }
Shannon Nelson3e037452007-10-16 01:27:40 -07001041 goto done;
1042
1043msi:
Dan Williamse6c0b692009-09-08 17:29:44 -07001044 err = pci_enable_msi(pdev);
Shannon Nelson3e037452007-10-16 01:27:40 -07001045 if (err)
1046 goto intx;
1047
Dan Williamse6c0b692009-09-08 17:29:44 -07001048 err = devm_request_irq(dev, pdev->irq, ioat_dma_do_interrupt, 0,
1049 "ioat-msi", device);
Shannon Nelson3e037452007-10-16 01:27:40 -07001050 if (err) {
Dan Williamse6c0b692009-09-08 17:29:44 -07001051 pci_disable_msi(pdev);
Shannon Nelson3e037452007-10-16 01:27:40 -07001052 goto intx;
1053 }
Shannon Nelson3e037452007-10-16 01:27:40 -07001054 goto done;
1055
1056intx:
Dan Williamse6c0b692009-09-08 17:29:44 -07001057 err = devm_request_irq(dev, pdev->irq, ioat_dma_do_interrupt,
1058 IRQF_SHARED, "ioat-intx", device);
Shannon Nelson3e037452007-10-16 01:27:40 -07001059 if (err)
1060 goto err_no_irq;
Shannon Nelson3e037452007-10-16 01:27:40 -07001061
1062done:
Dan Williamsf2427e22009-07-28 14:42:38 -07001063 if (device->intr_quirk)
1064 device->intr_quirk(device);
Shannon Nelson3e037452007-10-16 01:27:40 -07001065 intrctrl |= IOAT_INTRCTRL_MASTER_INT_EN;
1066 writeb(intrctrl, device->reg_base + IOAT_INTRCTRL_OFFSET);
1067 return 0;
1068
1069err_no_irq:
1070 /* Disable all interrupt generation */
1071 writeb(0, device->reg_base + IOAT_INTRCTRL_OFFSET);
Dan Williamse6c0b692009-09-08 17:29:44 -07001072 dev_err(dev, "no usable interrupts\n");
1073 return err;
Shannon Nelson3e037452007-10-16 01:27:40 -07001074}
1075
Dan Williamse6c0b692009-09-08 17:29:44 -07001076static void ioat_disable_interrupts(struct ioatdma_device *device)
Shannon Nelson3e037452007-10-16 01:27:40 -07001077{
Shannon Nelson3e037452007-10-16 01:27:40 -07001078 /* Disable all interrupt generation */
1079 writeb(0, device->reg_base + IOAT_INTRCTRL_OFFSET);
Shannon Nelson3e037452007-10-16 01:27:40 -07001080}
1081
Dan Williams5cbafa62009-08-26 13:01:44 -07001082int ioat_probe(struct ioatdma_device *device)
Chris Leech0bbd5f42006-05-23 17:35:34 -07001083{
Dan Williamsf2427e22009-07-28 14:42:38 -07001084 int err = -ENODEV;
1085 struct dma_device *dma = &device->common;
1086 struct pci_dev *pdev = device->pdev;
Dan Williamse6c0b692009-09-08 17:29:44 -07001087 struct device *dev = &pdev->dev;
Chris Leech0bbd5f42006-05-23 17:35:34 -07001088
1089 /* DMA coherent memory pool for DMA descriptor allocations */
1090 device->dma_pool = pci_pool_create("dma_desc_pool", pdev,
Shannon Nelson8ab89562007-10-16 01:27:39 -07001091 sizeof(struct ioat_dma_descriptor),
1092 64, 0);
Chris Leech0bbd5f42006-05-23 17:35:34 -07001093 if (!device->dma_pool) {
1094 err = -ENOMEM;
1095 goto err_dma_pool;
1096 }
1097
Shannon Nelson43d6e362007-10-16 01:27:39 -07001098 device->completion_pool = pci_pool_create("completion_pool", pdev,
1099 sizeof(u64), SMP_CACHE_BYTES,
1100 SMP_CACHE_BYTES);
Dan Williams5cbafa62009-08-26 13:01:44 -07001101
Chris Leech0bbd5f42006-05-23 17:35:34 -07001102 if (!device->completion_pool) {
1103 err = -ENOMEM;
1104 goto err_completion_pool;
1105 }
1106
Dan Williams5cbafa62009-08-26 13:01:44 -07001107 device->enumerate_channels(device);
Chris Leech0bbd5f42006-05-23 17:35:34 -07001108
Dan Williamsf2427e22009-07-28 14:42:38 -07001109 dma_cap_set(DMA_MEMCPY, dma->cap_mask);
Dan Williamsf2427e22009-07-28 14:42:38 -07001110 dma->dev = &pdev->dev;
Shannon Nelson7bb67c12007-11-14 16:59:51 -08001111
Dan Williamse6c0b692009-09-08 17:29:44 -07001112 dev_err(dev, "Intel(R) I/OAT DMA Engine found,"
Shannon Nelson5149fd02007-10-18 03:07:13 -07001113 " %d channels, device version 0x%02x, driver version %s\n",
Dan Williamsbc3c7022009-07-28 14:33:42 -07001114 dma->chancnt, device->version, IOAT_DMA_VERSION);
Shannon Nelson8ab89562007-10-16 01:27:39 -07001115
Dan Williamsbc3c7022009-07-28 14:33:42 -07001116 if (!dma->chancnt) {
Dan Williamse6c0b692009-09-08 17:29:44 -07001117 dev_err(dev, "Intel(R) I/OAT DMA Engine problem found: "
Maciej Sosnowski8b794b12009-02-26 11:04:54 +01001118 "zero channels detected\n");
1119 goto err_setup_interrupts;
1120 }
1121
Shannon Nelson3e037452007-10-16 01:27:40 -07001122 err = ioat_dma_setup_interrupts(device);
Shannon Nelson8ab89562007-10-16 01:27:39 -07001123 if (err)
Shannon Nelson3e037452007-10-16 01:27:40 -07001124 goto err_setup_interrupts;
Shannon Nelson8ab89562007-10-16 01:27:39 -07001125
Shannon Nelson3e037452007-10-16 01:27:40 -07001126 err = ioat_dma_self_test(device);
Chris Leech0bbd5f42006-05-23 17:35:34 -07001127 if (err)
1128 goto err_self_test;
1129
Dan Williamsf2427e22009-07-28 14:42:38 -07001130 return 0;
Chris Leech0bbd5f42006-05-23 17:35:34 -07001131
1132err_self_test:
Dan Williamse6c0b692009-09-08 17:29:44 -07001133 ioat_disable_interrupts(device);
Shannon Nelson3e037452007-10-16 01:27:40 -07001134err_setup_interrupts:
Chris Leech0bbd5f42006-05-23 17:35:34 -07001135 pci_pool_destroy(device->completion_pool);
1136err_completion_pool:
1137 pci_pool_destroy(device->dma_pool);
1138err_dma_pool:
Dan Williamsf2427e22009-07-28 14:42:38 -07001139 return err;
1140}
1141
Dan Williams5cbafa62009-08-26 13:01:44 -07001142int ioat_register(struct ioatdma_device *device)
Dan Williamsf2427e22009-07-28 14:42:38 -07001143{
1144 int err = dma_async_device_register(&device->common);
1145
1146 if (err) {
1147 ioat_disable_interrupts(device);
1148 pci_pool_destroy(device->completion_pool);
1149 pci_pool_destroy(device->dma_pool);
1150 }
1151
1152 return err;
1153}
1154
1155/* ioat1_intr_quirk - fix up dma ctrl register to enable / disable msi */
1156static void ioat1_intr_quirk(struct ioatdma_device *device)
1157{
1158 struct pci_dev *pdev = device->pdev;
1159 u32 dmactrl;
1160
1161 pci_read_config_dword(pdev, IOAT_PCI_DMACTRL_OFFSET, &dmactrl);
1162 if (pdev->msi_enabled)
1163 dmactrl |= IOAT_PCI_DMACTRL_MSI_EN;
1164 else
1165 dmactrl &= ~IOAT_PCI_DMACTRL_MSI_EN;
1166 pci_write_config_dword(pdev, IOAT_PCI_DMACTRL_OFFSET, dmactrl);
1167}
1168
1169int ioat1_dma_probe(struct ioatdma_device *device, int dca)
1170{
1171 struct pci_dev *pdev = device->pdev;
1172 struct dma_device *dma;
1173 int err;
1174
1175 device->intr_quirk = ioat1_intr_quirk;
Dan Williams5cbafa62009-08-26 13:01:44 -07001176 device->enumerate_channels = ioat1_enumerate_channels;
Dan Williamsf2427e22009-07-28 14:42:38 -07001177 dma = &device->common;
1178 dma->device_prep_dma_memcpy = ioat1_dma_prep_memcpy;
1179 dma->device_issue_pending = ioat1_dma_memcpy_issue_pending;
Dan Williams5cbafa62009-08-26 13:01:44 -07001180 dma->device_alloc_chan_resources = ioat1_dma_alloc_chan_resources;
1181 dma->device_free_chan_resources = ioat1_dma_free_chan_resources;
1182 dma->device_is_tx_complete = ioat1_dma_is_complete;
Dan Williamsf2427e22009-07-28 14:42:38 -07001183
1184 err = ioat_probe(device);
1185 if (err)
1186 return err;
1187 ioat_set_tcp_copy_break(4096);
1188 err = ioat_register(device);
1189 if (err)
1190 return err;
1191 if (dca)
1192 device->dca = ioat_dca_init(pdev, device->reg_base);
1193
Dan Williams5cbafa62009-08-26 13:01:44 -07001194 INIT_DELAYED_WORK(&device->work, ioat1_chan_watchdog);
Dan Williamsf2427e22009-07-28 14:42:38 -07001195 schedule_delayed_work(&device->work, WATCHDOG_DELAY);
1196
1197 return err;
1198}
1199
Shannon Nelson8ab89562007-10-16 01:27:39 -07001200void ioat_dma_remove(struct ioatdma_device *device)
Dan Aloni428ed602007-03-08 09:57:36 -08001201{
Dan Williamsbc3c7022009-07-28 14:33:42 -07001202 struct dma_device *dma = &device->common;
Chris Leech0bbd5f42006-05-23 17:35:34 -07001203
Maciej Sosnowski2b8a6bf2009-02-26 11:05:07 +01001204 if (device->version != IOAT_VER_3_0)
1205 cancel_delayed_work(&device->work);
1206
Dan Williamse6c0b692009-09-08 17:29:44 -07001207 ioat_disable_interrupts(device);
Shannon Nelson8ab89562007-10-16 01:27:39 -07001208
Dan Williamsbc3c7022009-07-28 14:33:42 -07001209 dma_async_device_unregister(dma);
Shannon Nelsondfe22992007-10-18 03:07:13 -07001210
Chris Leech0bbd5f42006-05-23 17:35:34 -07001211 pci_pool_destroy(device->dma_pool);
1212 pci_pool_destroy(device->completion_pool);
Shannon Nelson8ab89562007-10-16 01:27:39 -07001213
Dan Williamsdcbc8532009-07-28 14:44:50 -07001214 INIT_LIST_HEAD(&dma->channels);
Chris Leech0bbd5f42006-05-23 17:35:34 -07001215}