blob: 3e5a8005c62b9561465609358424acad3c153322 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Chris Leech0bbd5f42006-05-23 17:35:34 -070031#include <linux/pci.h>
32#include <linux/interrupt.h>
33#include <linux/dmaengine.h>
34#include <linux/delay.h>
David S. Miller6b00c922006-05-23 17:37:58 -070035#include <linux/dma-mapping.h>
Maciej Sosnowski09177e82008-07-22 10:07:33 -070036#include <linux/workqueue.h>
Venki Pallipadi3ad0b022008-10-22 16:34:52 -070037#include <linux/i7300_idle.h>
Dan Williams584ec222009-07-28 14:32:12 -070038#include "dma.h"
39#include "registers.h"
40#include "hw.h"
Chris Leech0bbd5f42006-05-23 17:35:34 -070041
Dan Williams5cbafa62009-08-26 13:01:44 -070042int ioat_pending_level = 4;
Shannon Nelson7bb67c12007-11-14 16:59:51 -080043module_param(ioat_pending_level, int, 0644);
44MODULE_PARM_DESC(ioat_pending_level,
45 "high-water mark for pushing ioat descriptors (default: 4)");
46
Chris Leech0bbd5f42006-05-23 17:35:34 -070047/* internal functions */
Dan Williams5cbafa62009-08-26 13:01:44 -070048static void ioat1_cleanup(struct ioat_dma_chan *ioat);
49static void ioat1_dma_start_null_desc(struct ioat_dma_chan *ioat);
Shannon Nelson3e037452007-10-16 01:27:40 -070050
51/**
52 * ioat_dma_do_interrupt - handler used for single vector interrupt mode
53 * @irq: interrupt id
54 * @data: interrupt data
55 */
56static irqreturn_t ioat_dma_do_interrupt(int irq, void *data)
57{
58 struct ioatdma_device *instance = data;
Dan Williamsdcbc8532009-07-28 14:44:50 -070059 struct ioat_chan_common *chan;
Shannon Nelson3e037452007-10-16 01:27:40 -070060 unsigned long attnstatus;
61 int bit;
62 u8 intrctrl;
63
64 intrctrl = readb(instance->reg_base + IOAT_INTRCTRL_OFFSET);
65
66 if (!(intrctrl & IOAT_INTRCTRL_MASTER_INT_EN))
67 return IRQ_NONE;
68
69 if (!(intrctrl & IOAT_INTRCTRL_INT_STATUS)) {
70 writeb(intrctrl, instance->reg_base + IOAT_INTRCTRL_OFFSET);
71 return IRQ_NONE;
72 }
73
74 attnstatus = readl(instance->reg_base + IOAT_ATTNSTATUS_OFFSET);
Akinobu Mita984b3f52010-03-05 13:41:37 -080075 for_each_set_bit(bit, &attnstatus, BITS_PER_LONG) {
Dan Williamsdcbc8532009-07-28 14:44:50 -070076 chan = ioat_chan_by_index(instance, bit);
77 tasklet_schedule(&chan->cleanup_task);
Shannon Nelson3e037452007-10-16 01:27:40 -070078 }
79
80 writeb(intrctrl, instance->reg_base + IOAT_INTRCTRL_OFFSET);
81 return IRQ_HANDLED;
82}
83
84/**
85 * ioat_dma_do_interrupt_msix - handler used for vector-per-channel interrupt mode
86 * @irq: interrupt id
87 * @data: interrupt data
88 */
89static irqreturn_t ioat_dma_do_interrupt_msix(int irq, void *data)
90{
Dan Williamsdcbc8532009-07-28 14:44:50 -070091 struct ioat_chan_common *chan = data;
Shannon Nelson3e037452007-10-16 01:27:40 -070092
Dan Williamsdcbc8532009-07-28 14:44:50 -070093 tasklet_schedule(&chan->cleanup_task);
Shannon Nelson3e037452007-10-16 01:27:40 -070094
95 return IRQ_HANDLED;
96}
97
Dan Williams5cbafa62009-08-26 13:01:44 -070098/* common channel initialization */
Dan Williamsaa4d72a2010-03-03 21:21:13 -070099void ioat_init_channel(struct ioatdma_device *device, struct ioat_chan_common *chan, int idx)
Dan Williams5cbafa62009-08-26 13:01:44 -0700100{
101 struct dma_device *dma = &device->common;
Dan Williamsaa4d72a2010-03-03 21:21:13 -0700102 struct dma_chan *c = &chan->common;
103 unsigned long data = (unsigned long) c;
Dan Williams5cbafa62009-08-26 13:01:44 -0700104
105 chan->device = device;
106 chan->reg_base = device->reg_base + (0x80 * (idx + 1));
Dan Williams5cbafa62009-08-26 13:01:44 -0700107 spin_lock_init(&chan->cleanup_lock);
108 chan->common.device = dma;
109 list_add_tail(&chan->common.device_node, &dma->channels);
110 device->idx[idx] = chan;
Dan Williams09c8a5b2009-09-08 12:01:49 -0700111 init_timer(&chan->timer);
Dan Williamsaa4d72a2010-03-03 21:21:13 -0700112 chan->timer.function = device->timer_fn;
113 chan->timer.data = data;
114 tasklet_init(&chan->cleanup_task, device->cleanup_fn, data);
Dan Williams5cbafa62009-08-26 13:01:44 -0700115 tasklet_disable(&chan->cleanup_task);
116}
117
Shannon Nelson3e037452007-10-16 01:27:40 -0700118/**
Dan Williams5cbafa62009-08-26 13:01:44 -0700119 * ioat1_dma_enumerate_channels - find and initialize the device's channels
Shannon Nelson3e037452007-10-16 01:27:40 -0700120 * @device: the device to be enumerated
121 */
Dan Williams5cbafa62009-08-26 13:01:44 -0700122static int ioat1_enumerate_channels(struct ioatdma_device *device)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700123{
124 u8 xfercap_scale;
125 u32 xfercap;
126 int i;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700127 struct ioat_dma_chan *ioat;
Dan Williamse6c0b692009-09-08 17:29:44 -0700128 struct device *dev = &device->pdev->dev;
Dan Williamsf2427e22009-07-28 14:42:38 -0700129 struct dma_device *dma = &device->common;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700130
Dan Williamsf2427e22009-07-28 14:42:38 -0700131 INIT_LIST_HEAD(&dma->channels);
132 dma->chancnt = readb(device->reg_base + IOAT_CHANCNT_OFFSET);
Dan Williamsbb320782009-09-08 12:01:14 -0700133 dma->chancnt &= 0x1f; /* bits [4:0] valid */
134 if (dma->chancnt > ARRAY_SIZE(device->idx)) {
135 dev_warn(dev, "(%d) exceeds max supported channels (%zu)\n",
136 dma->chancnt, ARRAY_SIZE(device->idx));
137 dma->chancnt = ARRAY_SIZE(device->idx);
138 }
Chris Leeche3828812007-03-08 09:57:35 -0800139 xfercap_scale = readb(device->reg_base + IOAT_XFERCAP_OFFSET);
Dan Williamsbb320782009-09-08 12:01:14 -0700140 xfercap_scale &= 0x1f; /* bits [4:0] valid */
Chris Leech0bbd5f42006-05-23 17:35:34 -0700141 xfercap = (xfercap_scale == 0 ? -1 : (1UL << xfercap_scale));
Dan Williams6df91832009-09-08 12:00:55 -0700142 dev_dbg(dev, "%s: xfercap = %d\n", __func__, xfercap);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700143
Venki Pallipadif371be62008-10-23 15:39:06 -0700144#ifdef CONFIG_I7300_IDLE_IOAT_CHANNEL
Dan Williamsf2427e22009-07-28 14:42:38 -0700145 if (i7300_idle_platform_probe(NULL, NULL, 1) == 0)
146 dma->chancnt--;
Andy Henroid27471fd2008-10-09 11:45:22 -0700147#endif
Dan Williamsf2427e22009-07-28 14:42:38 -0700148 for (i = 0; i < dma->chancnt; i++) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700149 ioat = devm_kzalloc(dev, sizeof(*ioat), GFP_KERNEL);
Dan Williams5cbafa62009-08-26 13:01:44 -0700150 if (!ioat)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700151 break;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700152
Dan Williamsaa4d72a2010-03-03 21:21:13 -0700153 ioat_init_channel(device, &ioat->base, i);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700154 ioat->xfercap = xfercap;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700155 spin_lock_init(&ioat->desc_lock);
156 INIT_LIST_HEAD(&ioat->free_desc);
157 INIT_LIST_HEAD(&ioat->used_desc);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700158 }
Dan Williams5cbafa62009-08-26 13:01:44 -0700159 dma->chancnt = i;
160 return i;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700161}
162
Shannon Nelson711924b2007-12-17 16:20:08 -0800163/**
164 * ioat_dma_memcpy_issue_pending - push potentially unrecognized appended
165 * descriptors to hw
166 * @chan: DMA channel handle
167 */
Dan Williamsbc3c7022009-07-28 14:33:42 -0700168static inline void
Dan Williamsdcbc8532009-07-28 14:44:50 -0700169__ioat1_dma_memcpy_issue_pending(struct ioat_dma_chan *ioat)
Shannon Nelson711924b2007-12-17 16:20:08 -0800170{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700171 void __iomem *reg_base = ioat->base.reg_base;
172
Dan Williams6df91832009-09-08 12:00:55 -0700173 dev_dbg(to_dev(&ioat->base), "%s: pending: %d\n",
174 __func__, ioat->pending);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700175 ioat->pending = 0;
176 writeb(IOAT_CHANCMD_APPEND, reg_base + IOAT1_CHANCMD_OFFSET);
Shannon Nelson711924b2007-12-17 16:20:08 -0800177}
178
179static void ioat1_dma_memcpy_issue_pending(struct dma_chan *chan)
180{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700181 struct ioat_dma_chan *ioat = to_ioat_chan(chan);
Shannon Nelson711924b2007-12-17 16:20:08 -0800182
Dan Williamsdcbc8532009-07-28 14:44:50 -0700183 if (ioat->pending > 0) {
184 spin_lock_bh(&ioat->desc_lock);
185 __ioat1_dma_memcpy_issue_pending(ioat);
186 spin_unlock_bh(&ioat->desc_lock);
Shannon Nelson711924b2007-12-17 16:20:08 -0800187 }
188}
189
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700190/**
Dan Williams5cbafa62009-08-26 13:01:44 -0700191 * ioat1_reset_channel - restart a channel
Dan Williamsdcbc8532009-07-28 14:44:50 -0700192 * @ioat: IOAT DMA channel handle
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700193 */
Dan Williams5cbafa62009-08-26 13:01:44 -0700194static void ioat1_reset_channel(struct ioat_dma_chan *ioat)
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700195{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700196 struct ioat_chan_common *chan = &ioat->base;
197 void __iomem *reg_base = chan->reg_base;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700198 u32 chansts, chanerr;
199
Dan Williams09c8a5b2009-09-08 12:01:49 -0700200 dev_warn(to_dev(chan), "reset\n");
Dan Williamsdcbc8532009-07-28 14:44:50 -0700201 chanerr = readl(reg_base + IOAT_CHANERR_OFFSET);
Dan Williams09c8a5b2009-09-08 12:01:49 -0700202 chansts = *chan->completion & IOAT_CHANSTS_STATUS;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700203 if (chanerr) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700204 dev_err(to_dev(chan),
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700205 "chan%d, CHANSTS = 0x%08x CHANERR = 0x%04x, clearing\n",
Dan Williamsdcbc8532009-07-28 14:44:50 -0700206 chan_num(chan), chansts, chanerr);
207 writel(chanerr, reg_base + IOAT_CHANERR_OFFSET);
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700208 }
209
210 /*
211 * whack it upside the head with a reset
212 * and wait for things to settle out.
213 * force the pending count to a really big negative
214 * to make sure no one forces an issue_pending
215 * while we're waiting.
216 */
217
Dan Williamsdcbc8532009-07-28 14:44:50 -0700218 ioat->pending = INT_MIN;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700219 writeb(IOAT_CHANCMD_RESET,
Dan Williamsdcbc8532009-07-28 14:44:50 -0700220 reg_base + IOAT_CHANCMD_OFFSET(chan->device->version));
Dan Williams09c8a5b2009-09-08 12:01:49 -0700221 set_bit(IOAT_RESET_PENDING, &chan->state);
222 mod_timer(&chan->timer, jiffies + RESET_DELAY);
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700223}
224
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800225static dma_cookie_t ioat1_tx_submit(struct dma_async_tx_descriptor *tx)
Dan Williams7405f742007-01-02 11:10:43 -0700226{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700227 struct dma_chan *c = tx->chan;
228 struct ioat_dma_chan *ioat = to_ioat_chan(c);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700229 struct ioat_desc_sw *desc = tx_to_ioat_desc(tx);
Dan Williams09c8a5b2009-09-08 12:01:49 -0700230 struct ioat_chan_common *chan = &ioat->base;
Dan Williamsa0587bc2009-07-28 14:44:04 -0700231 struct ioat_desc_sw *first;
232 struct ioat_desc_sw *chain_tail;
Dan Williams7405f742007-01-02 11:10:43 -0700233 dma_cookie_t cookie;
Shannon Nelson7f2b2912007-10-18 03:07:14 -0700234
Dan Williamsdcbc8532009-07-28 14:44:50 -0700235 spin_lock_bh(&ioat->desc_lock);
Dan Williams7405f742007-01-02 11:10:43 -0700236 /* cookie incr and addition to used_list must be atomic */
Dan Williamsdcbc8532009-07-28 14:44:50 -0700237 cookie = c->cookie;
Dan Williams7405f742007-01-02 11:10:43 -0700238 cookie++;
239 if (cookie < 0)
240 cookie = 1;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700241 c->cookie = cookie;
242 tx->cookie = cookie;
Dan Williams6df91832009-09-08 12:00:55 -0700243 dev_dbg(to_dev(&ioat->base), "%s: cookie: %d\n", __func__, cookie);
Dan Williams7405f742007-01-02 11:10:43 -0700244
245 /* write address into NextDescriptor field of last desc in chain */
Dan Williamsea25968a2009-09-08 17:53:02 -0700246 first = to_ioat_desc(desc->tx_list.next);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700247 chain_tail = to_ioat_desc(ioat->used_desc.prev);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700248 /* make descriptor updates globally visible before chaining */
249 wmb();
250 chain_tail->hw->next = first->txd.phys;
Dan Williamsea25968a2009-09-08 17:53:02 -0700251 list_splice_tail_init(&desc->tx_list, &ioat->used_desc);
Dan Williams6df91832009-09-08 12:00:55 -0700252 dump_desc_dbg(ioat, chain_tail);
253 dump_desc_dbg(ioat, first);
Dan Williams7405f742007-01-02 11:10:43 -0700254
Dan Williams09c8a5b2009-09-08 12:01:49 -0700255 if (!test_and_set_bit(IOAT_COMPLETION_PENDING, &chan->state))
256 mod_timer(&chan->timer, jiffies + COMPLETION_TIMEOUT);
257
Dan Williams5669e312009-09-08 17:42:56 -0700258 ioat->active += desc->hw->tx_cnt;
Dan Williamsad643f52009-09-08 12:01:38 -0700259 ioat->pending += desc->hw->tx_cnt;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700260 if (ioat->pending >= ioat_pending_level)
261 __ioat1_dma_memcpy_issue_pending(ioat);
262 spin_unlock_bh(&ioat->desc_lock);
Dan Williams7405f742007-01-02 11:10:43 -0700263
Dan Williams7405f742007-01-02 11:10:43 -0700264 return cookie;
265}
266
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800267/**
268 * ioat_dma_alloc_descriptor - allocate and return a sw and hw descriptor pair
Dan Williamsdcbc8532009-07-28 14:44:50 -0700269 * @ioat: the channel supplying the memory pool for the descriptors
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800270 * @flags: allocation flags
271 */
Dan Williamsbc3c7022009-07-28 14:33:42 -0700272static struct ioat_desc_sw *
Dan Williamsdcbc8532009-07-28 14:44:50 -0700273ioat_dma_alloc_descriptor(struct ioat_dma_chan *ioat, gfp_t flags)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700274{
275 struct ioat_dma_descriptor *desc;
276 struct ioat_desc_sw *desc_sw;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700277 struct ioatdma_device *ioatdma_device;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700278 dma_addr_t phys;
279
Dan Williamsdcbc8532009-07-28 14:44:50 -0700280 ioatdma_device = ioat->base.device;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700281 desc = pci_pool_alloc(ioatdma_device->dma_pool, flags, &phys);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700282 if (unlikely(!desc))
283 return NULL;
284
285 desc_sw = kzalloc(sizeof(*desc_sw), flags);
286 if (unlikely(!desc_sw)) {
Shannon Nelson8ab89562007-10-16 01:27:39 -0700287 pci_pool_free(ioatdma_device->dma_pool, desc, phys);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700288 return NULL;
289 }
290
291 memset(desc, 0, sizeof(*desc));
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800292
Dan Williamsea25968a2009-09-08 17:53:02 -0700293 INIT_LIST_HEAD(&desc_sw->tx_list);
Dan Williams5cbafa62009-08-26 13:01:44 -0700294 dma_async_tx_descriptor_init(&desc_sw->txd, &ioat->base.common);
295 desc_sw->txd.tx_submit = ioat1_tx_submit;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700296 desc_sw->hw = desc;
Dan Williamsbc3c7022009-07-28 14:33:42 -0700297 desc_sw->txd.phys = phys;
Dan Williams6df91832009-09-08 12:00:55 -0700298 set_desc_id(desc_sw, -1);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700299
300 return desc_sw;
301}
302
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800303static int ioat_initial_desc_count = 256;
304module_param(ioat_initial_desc_count, int, 0644);
305MODULE_PARM_DESC(ioat_initial_desc_count,
Dan Williams5cbafa62009-08-26 13:01:44 -0700306 "ioat1: initial descriptors per channel (default: 256)");
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800307/**
Dan Williams5cbafa62009-08-26 13:01:44 -0700308 * ioat1_dma_alloc_chan_resources - returns the number of allocated descriptors
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800309 * @chan: the channel to be filled out
310 */
Dan Williams5cbafa62009-08-26 13:01:44 -0700311static int ioat1_dma_alloc_chan_resources(struct dma_chan *c)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700312{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700313 struct ioat_dma_chan *ioat = to_ioat_chan(c);
314 struct ioat_chan_common *chan = &ioat->base;
Shannon Nelson711924b2007-12-17 16:20:08 -0800315 struct ioat_desc_sw *desc;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700316 u32 chanerr;
317 int i;
318 LIST_HEAD(tmp_list);
319
Shannon Nelsone4223972007-08-24 23:02:53 -0700320 /* have we already been set up? */
Dan Williamsdcbc8532009-07-28 14:44:50 -0700321 if (!list_empty(&ioat->free_desc))
322 return ioat->desccount;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700323
Shannon Nelson43d6e362007-10-16 01:27:39 -0700324 /* Setup register to interrupt and write completion status on error */
Dan Williamsf6ab95b2009-09-08 12:01:21 -0700325 writew(IOAT_CHANCTRL_RUN, chan->reg_base + IOAT_CHANCTRL_OFFSET);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700326
Dan Williamsdcbc8532009-07-28 14:44:50 -0700327 chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700328 if (chanerr) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700329 dev_err(to_dev(chan), "CHANERR = %x, clearing\n", chanerr);
330 writel(chanerr, chan->reg_base + IOAT_CHANERR_OFFSET);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700331 }
332
333 /* Allocate descriptors */
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800334 for (i = 0; i < ioat_initial_desc_count; i++) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700335 desc = ioat_dma_alloc_descriptor(ioat, GFP_KERNEL);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700336 if (!desc) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700337 dev_err(to_dev(chan), "Only %d initial descriptors\n", i);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700338 break;
339 }
Dan Williams6df91832009-09-08 12:00:55 -0700340 set_desc_id(desc, i);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700341 list_add_tail(&desc->node, &tmp_list);
342 }
Dan Williamsdcbc8532009-07-28 14:44:50 -0700343 spin_lock_bh(&ioat->desc_lock);
344 ioat->desccount = i;
345 list_splice(&tmp_list, &ioat->free_desc);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700346 spin_unlock_bh(&ioat->desc_lock);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700347
348 /* allocate a completion writeback area */
349 /* doing 2 32bit writes to mmio since 1 64b write doesn't work */
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700350 chan->completion = pci_pool_alloc(chan->device->completion_pool,
351 GFP_KERNEL, &chan->completion_dma);
352 memset(chan->completion, 0, sizeof(*chan->completion));
353 writel(((u64) chan->completion_dma) & 0x00000000FFFFFFFF,
Dan Williamsdcbc8532009-07-28 14:44:50 -0700354 chan->reg_base + IOAT_CHANCMP_OFFSET_LOW);
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700355 writel(((u64) chan->completion_dma) >> 32,
Dan Williamsdcbc8532009-07-28 14:44:50 -0700356 chan->reg_base + IOAT_CHANCMP_OFFSET_HIGH);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700357
Dan Williamsdcbc8532009-07-28 14:44:50 -0700358 tasklet_enable(&chan->cleanup_task);
Dan Williams5cbafa62009-08-26 13:01:44 -0700359 ioat1_dma_start_null_desc(ioat); /* give chain to dma device */
Dan Williams6df91832009-09-08 12:00:55 -0700360 dev_dbg(to_dev(chan), "%s: allocated %d descriptors\n",
361 __func__, ioat->desccount);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700362 return ioat->desccount;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700363}
364
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800365/**
Dan Williams5cbafa62009-08-26 13:01:44 -0700366 * ioat1_dma_free_chan_resources - release all the descriptors
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800367 * @chan: the channel to be cleaned
368 */
Dan Williams5cbafa62009-08-26 13:01:44 -0700369static void ioat1_dma_free_chan_resources(struct dma_chan *c)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700370{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700371 struct ioat_dma_chan *ioat = to_ioat_chan(c);
372 struct ioat_chan_common *chan = &ioat->base;
373 struct ioatdma_device *ioatdma_device = chan->device;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700374 struct ioat_desc_sw *desc, *_desc;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700375 int in_use_descs = 0;
376
Maciej Sosnowskic3d4f442008-11-07 01:45:52 +0000377 /* Before freeing channel resources first check
378 * if they have been previously allocated for this channel.
379 */
Dan Williamsdcbc8532009-07-28 14:44:50 -0700380 if (ioat->desccount == 0)
Maciej Sosnowskic3d4f442008-11-07 01:45:52 +0000381 return;
382
Dan Williamsdcbc8532009-07-28 14:44:50 -0700383 tasklet_disable(&chan->cleanup_task);
Dan Williams09c8a5b2009-09-08 12:01:49 -0700384 del_timer_sync(&chan->timer);
Dan Williams5cbafa62009-08-26 13:01:44 -0700385 ioat1_cleanup(ioat);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700386
Shannon Nelson3e037452007-10-16 01:27:40 -0700387 /* Delay 100ms after reset to allow internal DMA logic to quiesce
388 * before removing DMA descriptor resources.
389 */
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800390 writeb(IOAT_CHANCMD_RESET,
Dan Williamsdcbc8532009-07-28 14:44:50 -0700391 chan->reg_base + IOAT_CHANCMD_OFFSET(chan->device->version));
Shannon Nelson3e037452007-10-16 01:27:40 -0700392 mdelay(100);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700393
Dan Williamsdcbc8532009-07-28 14:44:50 -0700394 spin_lock_bh(&ioat->desc_lock);
Dan Williams6df91832009-09-08 12:00:55 -0700395 list_for_each_entry_safe(desc, _desc, &ioat->used_desc, node) {
396 dev_dbg(to_dev(chan), "%s: freeing %d from used list\n",
397 __func__, desc_id(desc));
398 dump_desc_dbg(ioat, desc);
Dan Williams5cbafa62009-08-26 13:01:44 -0700399 in_use_descs++;
400 list_del(&desc->node);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700401 pci_pool_free(ioatdma_device->dma_pool, desc->hw,
Dan Williamsbc3c7022009-07-28 14:33:42 -0700402 desc->txd.phys);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700403 kfree(desc);
Dan Williams5cbafa62009-08-26 13:01:44 -0700404 }
405 list_for_each_entry_safe(desc, _desc,
406 &ioat->free_desc, node) {
407 list_del(&desc->node);
408 pci_pool_free(ioatdma_device->dma_pool, desc->hw,
409 desc->txd.phys);
410 kfree(desc);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700411 }
Dan Williamsdcbc8532009-07-28 14:44:50 -0700412 spin_unlock_bh(&ioat->desc_lock);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700413
Shannon Nelson8ab89562007-10-16 01:27:39 -0700414 pci_pool_free(ioatdma_device->completion_pool,
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700415 chan->completion,
416 chan->completion_dma);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700417
418 /* one is ok since we left it on there on purpose */
419 if (in_use_descs > 1)
Dan Williamsdcbc8532009-07-28 14:44:50 -0700420 dev_err(to_dev(chan), "Freeing %d in use descriptors!\n",
Chris Leech0bbd5f42006-05-23 17:35:34 -0700421 in_use_descs - 1);
422
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700423 chan->last_completion = 0;
424 chan->completion_dma = 0;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700425 ioat->pending = 0;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700426 ioat->desccount = 0;
Shannon Nelson3e037452007-10-16 01:27:40 -0700427}
Shannon Nelson7f2b2912007-10-18 03:07:14 -0700428
Shannon Nelson3e037452007-10-16 01:27:40 -0700429/**
Dan Williamsdcbc8532009-07-28 14:44:50 -0700430 * ioat1_dma_get_next_descriptor - return the next available descriptor
431 * @ioat: IOAT DMA channel handle
Shannon Nelson3e037452007-10-16 01:27:40 -0700432 *
433 * Gets the next descriptor from the chain, and must be called with the
434 * channel's desc_lock held. Allocates more descriptors if the channel
435 * has run out.
436 */
Shannon Nelson7f2b2912007-10-18 03:07:14 -0700437static struct ioat_desc_sw *
Dan Williamsdcbc8532009-07-28 14:44:50 -0700438ioat1_dma_get_next_descriptor(struct ioat_dma_chan *ioat)
Shannon Nelson3e037452007-10-16 01:27:40 -0700439{
Shannon Nelson711924b2007-12-17 16:20:08 -0800440 struct ioat_desc_sw *new;
Shannon Nelson3e037452007-10-16 01:27:40 -0700441
Dan Williamsdcbc8532009-07-28 14:44:50 -0700442 if (!list_empty(&ioat->free_desc)) {
443 new = to_ioat_desc(ioat->free_desc.next);
Shannon Nelson3e037452007-10-16 01:27:40 -0700444 list_del(&new->node);
445 } else {
446 /* try to get another desc */
Dan Williamsdcbc8532009-07-28 14:44:50 -0700447 new = ioat_dma_alloc_descriptor(ioat, GFP_ATOMIC);
Shannon Nelson711924b2007-12-17 16:20:08 -0800448 if (!new) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700449 dev_err(to_dev(&ioat->base), "alloc failed\n");
Shannon Nelson711924b2007-12-17 16:20:08 -0800450 return NULL;
451 }
Shannon Nelson3e037452007-10-16 01:27:40 -0700452 }
Dan Williams6df91832009-09-08 12:00:55 -0700453 dev_dbg(to_dev(&ioat->base), "%s: allocated: %d\n",
454 __func__, desc_id(new));
Shannon Nelson3e037452007-10-16 01:27:40 -0700455 prefetch(new->hw);
456 return new;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700457}
458
Dan Williamsbc3c7022009-07-28 14:33:42 -0700459static struct dma_async_tx_descriptor *
Dan Williamsdcbc8532009-07-28 14:44:50 -0700460ioat1_dma_prep_memcpy(struct dma_chan *c, dma_addr_t dma_dest,
Dan Williamsbc3c7022009-07-28 14:33:42 -0700461 dma_addr_t dma_src, size_t len, unsigned long flags)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700462{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700463 struct ioat_dma_chan *ioat = to_ioat_chan(c);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700464 struct ioat_desc_sw *desc;
465 size_t copy;
466 LIST_HEAD(chain);
467 dma_addr_t src = dma_src;
468 dma_addr_t dest = dma_dest;
469 size_t total_len = len;
470 struct ioat_dma_descriptor *hw = NULL;
471 int tx_cnt = 0;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700472
Dan Williamsdcbc8532009-07-28 14:44:50 -0700473 spin_lock_bh(&ioat->desc_lock);
Dan Williams5cbafa62009-08-26 13:01:44 -0700474 desc = ioat1_dma_get_next_descriptor(ioat);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700475 do {
476 if (!desc)
477 break;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700478
Dan Williamsa0587bc2009-07-28 14:44:04 -0700479 tx_cnt++;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700480 copy = min_t(size_t, len, ioat->xfercap);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700481
482 hw = desc->hw;
483 hw->size = copy;
484 hw->ctl = 0;
485 hw->src_addr = src;
486 hw->dst_addr = dest;
487
488 list_add_tail(&desc->node, &chain);
489
490 len -= copy;
491 dest += copy;
492 src += copy;
493 if (len) {
494 struct ioat_desc_sw *next;
495
496 async_tx_ack(&desc->txd);
Dan Williams5cbafa62009-08-26 13:01:44 -0700497 next = ioat1_dma_get_next_descriptor(ioat);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700498 hw->next = next ? next->txd.phys : 0;
Dan Williams6df91832009-09-08 12:00:55 -0700499 dump_desc_dbg(ioat, desc);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700500 desc = next;
501 } else
502 hw->next = 0;
503 } while (len);
504
505 if (!desc) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700506 struct ioat_chan_common *chan = &ioat->base;
507
508 dev_err(to_dev(chan),
Dan Williams5cbafa62009-08-26 13:01:44 -0700509 "chan%d - get_next_desc failed\n", chan_num(chan));
Dan Williamsdcbc8532009-07-28 14:44:50 -0700510 list_splice(&chain, &ioat->free_desc);
511 spin_unlock_bh(&ioat->desc_lock);
Shannon Nelson711924b2007-12-17 16:20:08 -0800512 return NULL;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700513 }
Dan Williamsdcbc8532009-07-28 14:44:50 -0700514 spin_unlock_bh(&ioat->desc_lock);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700515
516 desc->txd.flags = flags;
Dan Williamsa0587bc2009-07-28 14:44:04 -0700517 desc->len = total_len;
Dan Williamsea25968a2009-09-08 17:53:02 -0700518 list_splice(&chain, &desc->tx_list);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700519 hw->ctl_f.int_en = !!(flags & DMA_PREP_INTERRUPT);
520 hw->ctl_f.compl_write = 1;
Dan Williamsad643f52009-09-08 12:01:38 -0700521 hw->tx_cnt = tx_cnt;
Dan Williams6df91832009-09-08 12:00:55 -0700522 dump_desc_dbg(ioat, desc);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700523
524 return &desc->txd;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700525}
526
Dan Williamsaa4d72a2010-03-03 21:21:13 -0700527static void ioat1_cleanup_event(unsigned long data)
Shannon Nelson3e037452007-10-16 01:27:40 -0700528{
Dan Williamsaa4d72a2010-03-03 21:21:13 -0700529 struct ioat_dma_chan *ioat = to_ioat_chan((void *) data);
Dan Williamsf6ab95b2009-09-08 12:01:21 -0700530
Dan Williamsaa4d72a2010-03-03 21:21:13 -0700531 ioat1_cleanup(ioat);
532 writew(IOAT_CHANCTRL_RUN, ioat->base.reg_base + IOAT_CHANCTRL_OFFSET);
Shannon Nelson3e037452007-10-16 01:27:40 -0700533}
534
Dan Williams5cbafa62009-08-26 13:01:44 -0700535void ioat_dma_unmap(struct ioat_chan_common *chan, enum dma_ctrl_flags flags,
536 size_t len, struct ioat_dma_descriptor *hw)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700537{
Dan Williams5cbafa62009-08-26 13:01:44 -0700538 struct pci_dev *pdev = chan->device->pdev;
539 size_t offset = len - hw->size;
540
541 if (!(flags & DMA_COMPL_SKIP_DEST_UNMAP))
542 ioat_unmap(pdev, hw->dst_addr - offset, len,
543 PCI_DMA_FROMDEVICE, flags, 1);
544
545 if (!(flags & DMA_COMPL_SKIP_SRC_UNMAP))
546 ioat_unmap(pdev, hw->src_addr - offset, len,
547 PCI_DMA_TODEVICE, flags, 0);
548}
549
550unsigned long ioat_get_current_completion(struct ioat_chan_common *chan)
551{
Chris Leech0bbd5f42006-05-23 17:35:34 -0700552 unsigned long phys_complete;
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700553 u64 completion;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700554
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700555 completion = *chan->completion;
Dan Williams09c8a5b2009-09-08 12:01:49 -0700556 phys_complete = ioat_chansts_to_addr(completion);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700557
Dan Williams6df91832009-09-08 12:00:55 -0700558 dev_dbg(to_dev(chan), "%s: phys_complete: %#llx\n", __func__,
559 (unsigned long long) phys_complete);
560
Dan Williams09c8a5b2009-09-08 12:01:49 -0700561 if (is_ioat_halted(completion)) {
562 u32 chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700563 dev_err(to_dev(chan), "Channel halted, chanerr = %x\n",
Dan Williams09c8a5b2009-09-08 12:01:49 -0700564 chanerr);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700565
566 /* TODO do something to salvage the situation */
567 }
568
Dan Williams5cbafa62009-08-26 13:01:44 -0700569 return phys_complete;
570}
571
Dan Williams09c8a5b2009-09-08 12:01:49 -0700572bool ioat_cleanup_preamble(struct ioat_chan_common *chan,
573 unsigned long *phys_complete)
574{
575 *phys_complete = ioat_get_current_completion(chan);
576 if (*phys_complete == chan->last_completion)
577 return false;
578 clear_bit(IOAT_COMPLETION_ACK, &chan->state);
579 mod_timer(&chan->timer, jiffies + COMPLETION_TIMEOUT);
580
581 return true;
582}
583
584static void __cleanup(struct ioat_dma_chan *ioat, unsigned long phys_complete)
Dan Williams5cbafa62009-08-26 13:01:44 -0700585{
586 struct ioat_chan_common *chan = &ioat->base;
Dan Williams09c8a5b2009-09-08 12:01:49 -0700587 struct list_head *_desc, *n;
Dan Williams5cbafa62009-08-26 13:01:44 -0700588 struct dma_async_tx_descriptor *tx;
589
Dan Williams6df91832009-09-08 12:00:55 -0700590 dev_dbg(to_dev(chan), "%s: phys_complete: %lx\n",
591 __func__, phys_complete);
Dan Williams09c8a5b2009-09-08 12:01:49 -0700592 list_for_each_safe(_desc, n, &ioat->used_desc) {
593 struct ioat_desc_sw *desc;
594
595 prefetch(n);
596 desc = list_entry(_desc, typeof(*desc), node);
Dan Williamsbc3c7022009-07-28 14:33:42 -0700597 tx = &desc->txd;
Dan Williams5cbafa62009-08-26 13:01:44 -0700598 /*
599 * Incoming DMA requests may use multiple descriptors,
600 * due to exceeding xfercap, perhaps. If so, only the
601 * last one will have a cookie, and require unmapping.
602 */
Dan Williams6df91832009-09-08 12:00:55 -0700603 dump_desc_dbg(ioat, desc);
Dan Williams5cbafa62009-08-26 13:01:44 -0700604 if (tx->cookie) {
Dan Williams09c8a5b2009-09-08 12:01:49 -0700605 chan->completed_cookie = tx->cookie;
606 tx->cookie = 0;
Dan Williams5cbafa62009-08-26 13:01:44 -0700607 ioat_dma_unmap(chan, tx->flags, desc->len, desc->hw);
Dan Williams5669e312009-09-08 17:42:56 -0700608 ioat->active -= desc->hw->tx_cnt;
Dan Williams5cbafa62009-08-26 13:01:44 -0700609 if (tx->callback) {
610 tx->callback(tx->callback_param);
611 tx->callback = NULL;
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800612 }
Chris Leech0bbd5f42006-05-23 17:35:34 -0700613 }
Dan Williams5cbafa62009-08-26 13:01:44 -0700614
615 if (tx->phys != phys_complete) {
616 /*
617 * a completed entry, but not the last, so clean
618 * up if the client is done with the descriptor
619 */
620 if (async_tx_test_ack(tx))
621 list_move_tail(&desc->node, &ioat->free_desc);
Dan Williams5cbafa62009-08-26 13:01:44 -0700622 } else {
623 /*
624 * last used desc. Do not remove, so we can
Dan Williams09c8a5b2009-09-08 12:01:49 -0700625 * append from it.
Dan Williams5cbafa62009-08-26 13:01:44 -0700626 */
Dan Williams09c8a5b2009-09-08 12:01:49 -0700627
628 /* if nothing else is pending, cancel the
629 * completion timeout
630 */
631 if (n == &ioat->used_desc) {
632 dev_dbg(to_dev(chan),
633 "%s cancel completion timeout\n",
634 __func__);
635 clear_bit(IOAT_COMPLETION_PENDING, &chan->state);
636 }
Dan Williams5cbafa62009-08-26 13:01:44 -0700637
638 /* TODO check status bits? */
639 break;
640 }
Chris Leech0bbd5f42006-05-23 17:35:34 -0700641 }
642
Dan Williamsdcbc8532009-07-28 14:44:50 -0700643 chan->last_completion = phys_complete;
Dan Williams09c8a5b2009-09-08 12:01:49 -0700644}
Chris Leech0bbd5f42006-05-23 17:35:34 -0700645
Dan Williams09c8a5b2009-09-08 12:01:49 -0700646/**
647 * ioat1_cleanup - cleanup up finished descriptors
648 * @chan: ioat channel to be cleaned up
649 *
650 * To prevent lock contention we defer cleanup when the locks are
651 * contended with a terminal timeout that forces cleanup and catches
652 * completion notification errors.
653 */
654static void ioat1_cleanup(struct ioat_dma_chan *ioat)
655{
656 struct ioat_chan_common *chan = &ioat->base;
657 unsigned long phys_complete;
658
659 prefetch(chan->completion);
660
661 if (!spin_trylock_bh(&chan->cleanup_lock))
662 return;
663
664 if (!ioat_cleanup_preamble(chan, &phys_complete)) {
665 spin_unlock_bh(&chan->cleanup_lock);
666 return;
667 }
668
669 if (!spin_trylock_bh(&ioat->desc_lock)) {
670 spin_unlock_bh(&chan->cleanup_lock);
671 return;
672 }
673
674 __cleanup(ioat, phys_complete);
675
676 spin_unlock_bh(&ioat->desc_lock);
677 spin_unlock_bh(&chan->cleanup_lock);
678}
679
680static void ioat1_timer_event(unsigned long data)
681{
Dan Williamsaa4d72a2010-03-03 21:21:13 -0700682 struct ioat_dma_chan *ioat = to_ioat_chan((void *) data);
Dan Williams09c8a5b2009-09-08 12:01:49 -0700683 struct ioat_chan_common *chan = &ioat->base;
684
685 dev_dbg(to_dev(chan), "%s: state: %lx\n", __func__, chan->state);
686
687 spin_lock_bh(&chan->cleanup_lock);
688 if (test_and_clear_bit(IOAT_RESET_PENDING, &chan->state)) {
689 struct ioat_desc_sw *desc;
690
691 spin_lock_bh(&ioat->desc_lock);
692
693 /* restart active descriptors */
694 desc = to_ioat_desc(ioat->used_desc.prev);
695 ioat_set_chainaddr(ioat, desc->txd.phys);
696 ioat_start(chan);
697
698 ioat->pending = 0;
699 set_bit(IOAT_COMPLETION_PENDING, &chan->state);
700 mod_timer(&chan->timer, jiffies + COMPLETION_TIMEOUT);
701 spin_unlock_bh(&ioat->desc_lock);
702 } else if (test_bit(IOAT_COMPLETION_PENDING, &chan->state)) {
703 unsigned long phys_complete;
704
705 spin_lock_bh(&ioat->desc_lock);
706 /* if we haven't made progress and we have already
707 * acknowledged a pending completion once, then be more
708 * forceful with a restart
709 */
710 if (ioat_cleanup_preamble(chan, &phys_complete))
711 __cleanup(ioat, phys_complete);
712 else if (test_bit(IOAT_COMPLETION_ACK, &chan->state))
713 ioat1_reset_channel(ioat);
714 else {
715 u64 status = ioat_chansts(chan);
716
717 /* manually update the last completion address */
718 if (ioat_chansts_to_addr(status) != 0)
719 *chan->completion = status;
720
721 set_bit(IOAT_COMPLETION_ACK, &chan->state);
722 mod_timer(&chan->timer, jiffies + COMPLETION_TIMEOUT);
723 }
724 spin_unlock_bh(&ioat->desc_lock);
725 }
Dan Williamsdcbc8532009-07-28 14:44:50 -0700726 spin_unlock_bh(&chan->cleanup_lock);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700727}
728
Dan Williamsaa4d72a2010-03-03 21:21:13 -0700729enum dma_status
730ioat_is_dma_complete(struct dma_chan *c, dma_cookie_t cookie,
Dan Williams5cbafa62009-08-26 13:01:44 -0700731 dma_cookie_t *done, dma_cookie_t *used)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700732{
Dan Williamsaa4d72a2010-03-03 21:21:13 -0700733 struct ioat_chan_common *chan = to_chan_common(c);
734 struct ioatdma_device *device = chan->device;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700735
Dan Williams5cbafa62009-08-26 13:01:44 -0700736 if (ioat_is_complete(c, cookie, done, used) == DMA_SUCCESS)
737 return DMA_SUCCESS;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700738
Dan Williamsaa4d72a2010-03-03 21:21:13 -0700739 device->cleanup_fn((unsigned long) c);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700740
Dan Williams5cbafa62009-08-26 13:01:44 -0700741 return ioat_is_complete(c, cookie, done, used);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700742}
743
Dan Williams5cbafa62009-08-26 13:01:44 -0700744static void ioat1_dma_start_null_desc(struct ioat_dma_chan *ioat)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700745{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700746 struct ioat_chan_common *chan = &ioat->base;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700747 struct ioat_desc_sw *desc;
Dan Williamsc7984f42009-07-28 14:44:04 -0700748 struct ioat_dma_descriptor *hw;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700749
Dan Williamsdcbc8532009-07-28 14:44:50 -0700750 spin_lock_bh(&ioat->desc_lock);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700751
Dan Williams5cbafa62009-08-26 13:01:44 -0700752 desc = ioat1_dma_get_next_descriptor(ioat);
Maciej Sosnowski7f1b3582008-07-22 17:30:57 -0700753
754 if (!desc) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700755 dev_err(to_dev(chan),
Maciej Sosnowski7f1b3582008-07-22 17:30:57 -0700756 "Unable to start null desc - get next desc failed\n");
Dan Williamsdcbc8532009-07-28 14:44:50 -0700757 spin_unlock_bh(&ioat->desc_lock);
Maciej Sosnowski7f1b3582008-07-22 17:30:57 -0700758 return;
759 }
760
Dan Williamsc7984f42009-07-28 14:44:04 -0700761 hw = desc->hw;
762 hw->ctl = 0;
763 hw->ctl_f.null = 1;
764 hw->ctl_f.int_en = 1;
765 hw->ctl_f.compl_write = 1;
Maciej Sosnowski7f1b3582008-07-22 17:30:57 -0700766 /* set size to non-zero value (channel returns error when size is 0) */
Dan Williamsc7984f42009-07-28 14:44:04 -0700767 hw->size = NULL_DESC_BUFFER_SIZE;
768 hw->src_addr = 0;
769 hw->dst_addr = 0;
Dan Williamsbc3c7022009-07-28 14:33:42 -0700770 async_tx_ack(&desc->txd);
Dan Williams5cbafa62009-08-26 13:01:44 -0700771 hw->next = 0;
772 list_add_tail(&desc->node, &ioat->used_desc);
Dan Williams6df91832009-09-08 12:00:55 -0700773 dump_desc_dbg(ioat, desc);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700774
Dan Williams09c8a5b2009-09-08 12:01:49 -0700775 ioat_set_chainaddr(ioat, desc->txd.phys);
776 ioat_start(chan);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700777 spin_unlock_bh(&ioat->desc_lock);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700778}
779
780/*
781 * Perform a IOAT transaction to verify the HW works.
782 */
783#define IOAT_TEST_SIZE 2000
784
Dan Williams345d8522009-09-08 12:01:30 -0700785static void __devinit ioat_dma_test_callback(void *dma_async_param)
Shannon Nelson95218432007-10-18 03:07:15 -0700786{
Dan Williamsb9bdcbb2009-01-06 11:38:22 -0700787 struct completion *cmp = dma_async_param;
788
789 complete(cmp);
Shannon Nelson95218432007-10-18 03:07:15 -0700790}
791
Shannon Nelson3e037452007-10-16 01:27:40 -0700792/**
793 * ioat_dma_self_test - Perform a IOAT transaction to verify the HW works.
794 * @device: device to be tested
795 */
Dan Williams9de6fc72009-09-08 17:42:58 -0700796int __devinit ioat_dma_self_test(struct ioatdma_device *device)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700797{
798 int i;
799 u8 *src;
800 u8 *dest;
Dan Williamsbc3c7022009-07-28 14:33:42 -0700801 struct dma_device *dma = &device->common;
802 struct device *dev = &device->pdev->dev;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700803 struct dma_chan *dma_chan;
Shannon Nelson711924b2007-12-17 16:20:08 -0800804 struct dma_async_tx_descriptor *tx;
Dan Williams00367312008-02-02 19:49:57 -0700805 dma_addr_t dma_dest, dma_src;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700806 dma_cookie_t cookie;
807 int err = 0;
Dan Williamsb9bdcbb2009-01-06 11:38:22 -0700808 struct completion cmp;
Dan Williams0c33e1c2009-03-02 13:31:35 -0700809 unsigned long tmo;
Maciej Sosnowski4f005db2009-04-23 12:31:51 +0200810 unsigned long flags;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700811
Christoph Lametere94b1762006-12-06 20:33:17 -0800812 src = kzalloc(sizeof(u8) * IOAT_TEST_SIZE, GFP_KERNEL);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700813 if (!src)
814 return -ENOMEM;
Christoph Lametere94b1762006-12-06 20:33:17 -0800815 dest = kzalloc(sizeof(u8) * IOAT_TEST_SIZE, GFP_KERNEL);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700816 if (!dest) {
817 kfree(src);
818 return -ENOMEM;
819 }
820
821 /* Fill in src buffer */
822 for (i = 0; i < IOAT_TEST_SIZE; i++)
823 src[i] = (u8)i;
824
825 /* Start copy, using first DMA channel */
Dan Williamsbc3c7022009-07-28 14:33:42 -0700826 dma_chan = container_of(dma->channels.next, struct dma_chan,
Shannon Nelson43d6e362007-10-16 01:27:39 -0700827 device_node);
Dan Williamsbc3c7022009-07-28 14:33:42 -0700828 if (dma->device_alloc_chan_resources(dma_chan) < 1) {
829 dev_err(dev, "selftest cannot allocate chan resource\n");
Chris Leech0bbd5f42006-05-23 17:35:34 -0700830 err = -ENODEV;
831 goto out;
832 }
833
Dan Williamsbc3c7022009-07-28 14:33:42 -0700834 dma_src = dma_map_single(dev, src, IOAT_TEST_SIZE, DMA_TO_DEVICE);
835 dma_dest = dma_map_single(dev, dest, IOAT_TEST_SIZE, DMA_FROM_DEVICE);
Dan Williamsa6a39ca2009-07-28 14:44:05 -0700836 flags = DMA_COMPL_SRC_UNMAP_SINGLE | DMA_COMPL_DEST_UNMAP_SINGLE |
837 DMA_PREP_INTERRUPT;
Dan Williams00367312008-02-02 19:49:57 -0700838 tx = device->common.device_prep_dma_memcpy(dma_chan, dma_dest, dma_src,
Maciej Sosnowski4f005db2009-04-23 12:31:51 +0200839 IOAT_TEST_SIZE, flags);
Shannon Nelson5149fd02007-10-18 03:07:13 -0700840 if (!tx) {
Dan Williamsbc3c7022009-07-28 14:33:42 -0700841 dev_err(dev, "Self-test prep failed, disabling\n");
Shannon Nelson5149fd02007-10-18 03:07:13 -0700842 err = -ENODEV;
843 goto free_resources;
844 }
845
Dan Williams7405f742007-01-02 11:10:43 -0700846 async_tx_ack(tx);
Dan Williamsb9bdcbb2009-01-06 11:38:22 -0700847 init_completion(&cmp);
Shannon Nelson95218432007-10-18 03:07:15 -0700848 tx->callback = ioat_dma_test_callback;
Dan Williamsb9bdcbb2009-01-06 11:38:22 -0700849 tx->callback_param = &cmp;
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800850 cookie = tx->tx_submit(tx);
Shannon Nelson7f2b2912007-10-18 03:07:14 -0700851 if (cookie < 0) {
Dan Williamsbc3c7022009-07-28 14:33:42 -0700852 dev_err(dev, "Self-test setup failed, disabling\n");
Shannon Nelson7f2b2912007-10-18 03:07:14 -0700853 err = -ENODEV;
854 goto free_resources;
855 }
Dan Williamsbc3c7022009-07-28 14:33:42 -0700856 dma->device_issue_pending(dma_chan);
Dan Williams532d3b12008-12-03 17:16:55 -0700857
Dan Williams0c33e1c2009-03-02 13:31:35 -0700858 tmo = wait_for_completion_timeout(&cmp, msecs_to_jiffies(3000));
Chris Leech0bbd5f42006-05-23 17:35:34 -0700859
Dan Williams0c33e1c2009-03-02 13:31:35 -0700860 if (tmo == 0 ||
Dan Williamsbc3c7022009-07-28 14:33:42 -0700861 dma->device_is_tx_complete(dma_chan, cookie, NULL, NULL)
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800862 != DMA_SUCCESS) {
Dan Williamsbc3c7022009-07-28 14:33:42 -0700863 dev_err(dev, "Self-test copy timed out, disabling\n");
Chris Leech0bbd5f42006-05-23 17:35:34 -0700864 err = -ENODEV;
865 goto free_resources;
866 }
867 if (memcmp(src, dest, IOAT_TEST_SIZE)) {
Dan Williamsbc3c7022009-07-28 14:33:42 -0700868 dev_err(dev, "Self-test copy failed compare, disabling\n");
Chris Leech0bbd5f42006-05-23 17:35:34 -0700869 err = -ENODEV;
870 goto free_resources;
871 }
872
873free_resources:
Dan Williamsbc3c7022009-07-28 14:33:42 -0700874 dma->device_free_chan_resources(dma_chan);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700875out:
876 kfree(src);
877 kfree(dest);
878 return err;
879}
880
Shannon Nelson3e037452007-10-16 01:27:40 -0700881static char ioat_interrupt_style[32] = "msix";
882module_param_string(ioat_interrupt_style, ioat_interrupt_style,
883 sizeof(ioat_interrupt_style), 0644);
884MODULE_PARM_DESC(ioat_interrupt_style,
885 "set ioat interrupt style: msix (default), "
886 "msix-single-vector, msi, intx)");
887
888/**
889 * ioat_dma_setup_interrupts - setup interrupt handler
890 * @device: ioat device
891 */
892static int ioat_dma_setup_interrupts(struct ioatdma_device *device)
893{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700894 struct ioat_chan_common *chan;
Dan Williamse6c0b692009-09-08 17:29:44 -0700895 struct pci_dev *pdev = device->pdev;
896 struct device *dev = &pdev->dev;
897 struct msix_entry *msix;
898 int i, j, msixcnt;
899 int err = -EINVAL;
Shannon Nelson3e037452007-10-16 01:27:40 -0700900 u8 intrctrl = 0;
901
902 if (!strcmp(ioat_interrupt_style, "msix"))
903 goto msix;
904 if (!strcmp(ioat_interrupt_style, "msix-single-vector"))
905 goto msix_single_vector;
906 if (!strcmp(ioat_interrupt_style, "msi"))
907 goto msi;
908 if (!strcmp(ioat_interrupt_style, "intx"))
909 goto intx;
Dan Williamse6c0b692009-09-08 17:29:44 -0700910 dev_err(dev, "invalid ioat_interrupt_style %s\n", ioat_interrupt_style);
Shannon Nelson5149fd02007-10-18 03:07:13 -0700911 goto err_no_irq;
Shannon Nelson3e037452007-10-16 01:27:40 -0700912
913msix:
914 /* The number of MSI-X vectors should equal the number of channels */
915 msixcnt = device->common.chancnt;
916 for (i = 0; i < msixcnt; i++)
917 device->msix_entries[i].entry = i;
918
Dan Williamse6c0b692009-09-08 17:29:44 -0700919 err = pci_enable_msix(pdev, device->msix_entries, msixcnt);
Shannon Nelson3e037452007-10-16 01:27:40 -0700920 if (err < 0)
921 goto msi;
922 if (err > 0)
923 goto msix_single_vector;
924
925 for (i = 0; i < msixcnt; i++) {
Dan Williamse6c0b692009-09-08 17:29:44 -0700926 msix = &device->msix_entries[i];
Dan Williamsdcbc8532009-07-28 14:44:50 -0700927 chan = ioat_chan_by_index(device, i);
Dan Williamse6c0b692009-09-08 17:29:44 -0700928 err = devm_request_irq(dev, msix->vector,
929 ioat_dma_do_interrupt_msix, 0,
Dan Williamsdcbc8532009-07-28 14:44:50 -0700930 "ioat-msix", chan);
Shannon Nelson3e037452007-10-16 01:27:40 -0700931 if (err) {
932 for (j = 0; j < i; j++) {
Dan Williamse6c0b692009-09-08 17:29:44 -0700933 msix = &device->msix_entries[j];
Dan Williamsdcbc8532009-07-28 14:44:50 -0700934 chan = ioat_chan_by_index(device, j);
935 devm_free_irq(dev, msix->vector, chan);
Shannon Nelson3e037452007-10-16 01:27:40 -0700936 }
937 goto msix_single_vector;
938 }
939 }
940 intrctrl |= IOAT_INTRCTRL_MSIX_VECTOR_CONTROL;
Shannon Nelson3e037452007-10-16 01:27:40 -0700941 goto done;
942
943msix_single_vector:
Dan Williamse6c0b692009-09-08 17:29:44 -0700944 msix = &device->msix_entries[0];
945 msix->entry = 0;
946 err = pci_enable_msix(pdev, device->msix_entries, 1);
Shannon Nelson3e037452007-10-16 01:27:40 -0700947 if (err)
948 goto msi;
949
Dan Williamse6c0b692009-09-08 17:29:44 -0700950 err = devm_request_irq(dev, msix->vector, ioat_dma_do_interrupt, 0,
951 "ioat-msix", device);
Shannon Nelson3e037452007-10-16 01:27:40 -0700952 if (err) {
Dan Williamse6c0b692009-09-08 17:29:44 -0700953 pci_disable_msix(pdev);
Shannon Nelson3e037452007-10-16 01:27:40 -0700954 goto msi;
955 }
Shannon Nelson3e037452007-10-16 01:27:40 -0700956 goto done;
957
958msi:
Dan Williamse6c0b692009-09-08 17:29:44 -0700959 err = pci_enable_msi(pdev);
Shannon Nelson3e037452007-10-16 01:27:40 -0700960 if (err)
961 goto intx;
962
Dan Williamse6c0b692009-09-08 17:29:44 -0700963 err = devm_request_irq(dev, pdev->irq, ioat_dma_do_interrupt, 0,
964 "ioat-msi", device);
Shannon Nelson3e037452007-10-16 01:27:40 -0700965 if (err) {
Dan Williamse6c0b692009-09-08 17:29:44 -0700966 pci_disable_msi(pdev);
Shannon Nelson3e037452007-10-16 01:27:40 -0700967 goto intx;
968 }
Shannon Nelson3e037452007-10-16 01:27:40 -0700969 goto done;
970
971intx:
Dan Williamse6c0b692009-09-08 17:29:44 -0700972 err = devm_request_irq(dev, pdev->irq, ioat_dma_do_interrupt,
973 IRQF_SHARED, "ioat-intx", device);
Shannon Nelson3e037452007-10-16 01:27:40 -0700974 if (err)
975 goto err_no_irq;
Shannon Nelson3e037452007-10-16 01:27:40 -0700976
977done:
Dan Williamsf2427e22009-07-28 14:42:38 -0700978 if (device->intr_quirk)
979 device->intr_quirk(device);
Shannon Nelson3e037452007-10-16 01:27:40 -0700980 intrctrl |= IOAT_INTRCTRL_MASTER_INT_EN;
981 writeb(intrctrl, device->reg_base + IOAT_INTRCTRL_OFFSET);
982 return 0;
983
984err_no_irq:
985 /* Disable all interrupt generation */
986 writeb(0, device->reg_base + IOAT_INTRCTRL_OFFSET);
Dan Williamse6c0b692009-09-08 17:29:44 -0700987 dev_err(dev, "no usable interrupts\n");
988 return err;
Shannon Nelson3e037452007-10-16 01:27:40 -0700989}
990
Dan Williamse6c0b692009-09-08 17:29:44 -0700991static void ioat_disable_interrupts(struct ioatdma_device *device)
Shannon Nelson3e037452007-10-16 01:27:40 -0700992{
Shannon Nelson3e037452007-10-16 01:27:40 -0700993 /* Disable all interrupt generation */
994 writeb(0, device->reg_base + IOAT_INTRCTRL_OFFSET);
Shannon Nelson3e037452007-10-16 01:27:40 -0700995}
996
Dan Williams345d8522009-09-08 12:01:30 -0700997int __devinit ioat_probe(struct ioatdma_device *device)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700998{
Dan Williamsf2427e22009-07-28 14:42:38 -0700999 int err = -ENODEV;
1000 struct dma_device *dma = &device->common;
1001 struct pci_dev *pdev = device->pdev;
Dan Williamse6c0b692009-09-08 17:29:44 -07001002 struct device *dev = &pdev->dev;
Chris Leech0bbd5f42006-05-23 17:35:34 -07001003
1004 /* DMA coherent memory pool for DMA descriptor allocations */
1005 device->dma_pool = pci_pool_create("dma_desc_pool", pdev,
Shannon Nelson8ab89562007-10-16 01:27:39 -07001006 sizeof(struct ioat_dma_descriptor),
1007 64, 0);
Chris Leech0bbd5f42006-05-23 17:35:34 -07001008 if (!device->dma_pool) {
1009 err = -ENOMEM;
1010 goto err_dma_pool;
1011 }
1012
Shannon Nelson43d6e362007-10-16 01:27:39 -07001013 device->completion_pool = pci_pool_create("completion_pool", pdev,
1014 sizeof(u64), SMP_CACHE_BYTES,
1015 SMP_CACHE_BYTES);
Dan Williams5cbafa62009-08-26 13:01:44 -07001016
Chris Leech0bbd5f42006-05-23 17:35:34 -07001017 if (!device->completion_pool) {
1018 err = -ENOMEM;
1019 goto err_completion_pool;
1020 }
1021
Dan Williams5cbafa62009-08-26 13:01:44 -07001022 device->enumerate_channels(device);
Chris Leech0bbd5f42006-05-23 17:35:34 -07001023
Dan Williamsf2427e22009-07-28 14:42:38 -07001024 dma_cap_set(DMA_MEMCPY, dma->cap_mask);
Dan Williamsf2427e22009-07-28 14:42:38 -07001025 dma->dev = &pdev->dev;
Shannon Nelson7bb67c12007-11-14 16:59:51 -08001026
Dan Williamsbc3c7022009-07-28 14:33:42 -07001027 if (!dma->chancnt) {
Dan Williamsa6d52d72009-12-19 15:36:02 -07001028 dev_err(dev, "channel enumeration error\n");
Maciej Sosnowski8b794b12009-02-26 11:04:54 +01001029 goto err_setup_interrupts;
1030 }
1031
Shannon Nelson3e037452007-10-16 01:27:40 -07001032 err = ioat_dma_setup_interrupts(device);
Shannon Nelson8ab89562007-10-16 01:27:39 -07001033 if (err)
Shannon Nelson3e037452007-10-16 01:27:40 -07001034 goto err_setup_interrupts;
Shannon Nelson8ab89562007-10-16 01:27:39 -07001035
Dan Williams9de6fc72009-09-08 17:42:58 -07001036 err = device->self_test(device);
Chris Leech0bbd5f42006-05-23 17:35:34 -07001037 if (err)
1038 goto err_self_test;
1039
Dan Williamsf2427e22009-07-28 14:42:38 -07001040 return 0;
Chris Leech0bbd5f42006-05-23 17:35:34 -07001041
1042err_self_test:
Dan Williamse6c0b692009-09-08 17:29:44 -07001043 ioat_disable_interrupts(device);
Shannon Nelson3e037452007-10-16 01:27:40 -07001044err_setup_interrupts:
Chris Leech0bbd5f42006-05-23 17:35:34 -07001045 pci_pool_destroy(device->completion_pool);
1046err_completion_pool:
1047 pci_pool_destroy(device->dma_pool);
1048err_dma_pool:
Dan Williamsf2427e22009-07-28 14:42:38 -07001049 return err;
1050}
1051
Dan Williams345d8522009-09-08 12:01:30 -07001052int __devinit ioat_register(struct ioatdma_device *device)
Dan Williamsf2427e22009-07-28 14:42:38 -07001053{
1054 int err = dma_async_device_register(&device->common);
1055
1056 if (err) {
1057 ioat_disable_interrupts(device);
1058 pci_pool_destroy(device->completion_pool);
1059 pci_pool_destroy(device->dma_pool);
1060 }
1061
1062 return err;
1063}
1064
1065/* ioat1_intr_quirk - fix up dma ctrl register to enable / disable msi */
1066static void ioat1_intr_quirk(struct ioatdma_device *device)
1067{
1068 struct pci_dev *pdev = device->pdev;
1069 u32 dmactrl;
1070
1071 pci_read_config_dword(pdev, IOAT_PCI_DMACTRL_OFFSET, &dmactrl);
1072 if (pdev->msi_enabled)
1073 dmactrl |= IOAT_PCI_DMACTRL_MSI_EN;
1074 else
1075 dmactrl &= ~IOAT_PCI_DMACTRL_MSI_EN;
1076 pci_write_config_dword(pdev, IOAT_PCI_DMACTRL_OFFSET, dmactrl);
1077}
1078
Dan Williams5669e312009-09-08 17:42:56 -07001079static ssize_t ring_size_show(struct dma_chan *c, char *page)
1080{
1081 struct ioat_dma_chan *ioat = to_ioat_chan(c);
1082
1083 return sprintf(page, "%d\n", ioat->desccount);
1084}
1085static struct ioat_sysfs_entry ring_size_attr = __ATTR_RO(ring_size);
1086
1087static ssize_t ring_active_show(struct dma_chan *c, char *page)
1088{
1089 struct ioat_dma_chan *ioat = to_ioat_chan(c);
1090
1091 return sprintf(page, "%d\n", ioat->active);
1092}
1093static struct ioat_sysfs_entry ring_active_attr = __ATTR_RO(ring_active);
1094
1095static ssize_t cap_show(struct dma_chan *c, char *page)
1096{
1097 struct dma_device *dma = c->device;
1098
1099 return sprintf(page, "copy%s%s%s%s%s%s\n",
1100 dma_has_cap(DMA_PQ, dma->cap_mask) ? " pq" : "",
1101 dma_has_cap(DMA_PQ_VAL, dma->cap_mask) ? " pq_val" : "",
1102 dma_has_cap(DMA_XOR, dma->cap_mask) ? " xor" : "",
1103 dma_has_cap(DMA_XOR_VAL, dma->cap_mask) ? " xor_val" : "",
1104 dma_has_cap(DMA_MEMSET, dma->cap_mask) ? " fill" : "",
1105 dma_has_cap(DMA_INTERRUPT, dma->cap_mask) ? " intr" : "");
1106
1107}
1108struct ioat_sysfs_entry ioat_cap_attr = __ATTR_RO(cap);
1109
1110static ssize_t version_show(struct dma_chan *c, char *page)
1111{
1112 struct dma_device *dma = c->device;
1113 struct ioatdma_device *device = to_ioatdma_device(dma);
1114
1115 return sprintf(page, "%d.%d\n",
1116 device->version >> 4, device->version & 0xf);
1117}
1118struct ioat_sysfs_entry ioat_version_attr = __ATTR_RO(version);
1119
1120static struct attribute *ioat1_attrs[] = {
1121 &ring_size_attr.attr,
1122 &ring_active_attr.attr,
1123 &ioat_cap_attr.attr,
1124 &ioat_version_attr.attr,
1125 NULL,
1126};
1127
1128static ssize_t
1129ioat_attr_show(struct kobject *kobj, struct attribute *attr, char *page)
1130{
1131 struct ioat_sysfs_entry *entry;
1132 struct ioat_chan_common *chan;
1133
1134 entry = container_of(attr, struct ioat_sysfs_entry, attr);
1135 chan = container_of(kobj, struct ioat_chan_common, kobj);
1136
1137 if (!entry->show)
1138 return -EIO;
1139 return entry->show(&chan->common, page);
1140}
1141
Emese Revfy52cf25d2010-01-19 02:58:23 +01001142const struct sysfs_ops ioat_sysfs_ops = {
Dan Williams5669e312009-09-08 17:42:56 -07001143 .show = ioat_attr_show,
1144};
1145
1146static struct kobj_type ioat1_ktype = {
1147 .sysfs_ops = &ioat_sysfs_ops,
1148 .default_attrs = ioat1_attrs,
1149};
1150
1151void ioat_kobject_add(struct ioatdma_device *device, struct kobj_type *type)
1152{
1153 struct dma_device *dma = &device->common;
1154 struct dma_chan *c;
1155
1156 list_for_each_entry(c, &dma->channels, device_node) {
1157 struct ioat_chan_common *chan = to_chan_common(c);
1158 struct kobject *parent = &c->dev->device.kobj;
1159 int err;
1160
1161 err = kobject_init_and_add(&chan->kobj, type, parent, "quickdata");
1162 if (err) {
1163 dev_warn(to_dev(chan),
1164 "sysfs init error (%d), continuing...\n", err);
1165 kobject_put(&chan->kobj);
1166 set_bit(IOAT_KOBJ_INIT_FAIL, &chan->state);
1167 }
1168 }
1169}
1170
1171void ioat_kobject_del(struct ioatdma_device *device)
1172{
1173 struct dma_device *dma = &device->common;
1174 struct dma_chan *c;
1175
1176 list_for_each_entry(c, &dma->channels, device_node) {
1177 struct ioat_chan_common *chan = to_chan_common(c);
1178
1179 if (!test_bit(IOAT_KOBJ_INIT_FAIL, &chan->state)) {
1180 kobject_del(&chan->kobj);
1181 kobject_put(&chan->kobj);
1182 }
1183 }
1184}
1185
Dan Williams345d8522009-09-08 12:01:30 -07001186int __devinit ioat1_dma_probe(struct ioatdma_device *device, int dca)
Dan Williamsf2427e22009-07-28 14:42:38 -07001187{
1188 struct pci_dev *pdev = device->pdev;
1189 struct dma_device *dma;
1190 int err;
1191
1192 device->intr_quirk = ioat1_intr_quirk;
Dan Williams5cbafa62009-08-26 13:01:44 -07001193 device->enumerate_channels = ioat1_enumerate_channels;
Dan Williams9de6fc72009-09-08 17:42:58 -07001194 device->self_test = ioat_dma_self_test;
Dan Williamsaa4d72a2010-03-03 21:21:13 -07001195 device->timer_fn = ioat1_timer_event;
1196 device->cleanup_fn = ioat1_cleanup_event;
Dan Williamsf2427e22009-07-28 14:42:38 -07001197 dma = &device->common;
1198 dma->device_prep_dma_memcpy = ioat1_dma_prep_memcpy;
1199 dma->device_issue_pending = ioat1_dma_memcpy_issue_pending;
Dan Williams5cbafa62009-08-26 13:01:44 -07001200 dma->device_alloc_chan_resources = ioat1_dma_alloc_chan_resources;
1201 dma->device_free_chan_resources = ioat1_dma_free_chan_resources;
Dan Williamsaa4d72a2010-03-03 21:21:13 -07001202 dma->device_is_tx_complete = ioat_is_dma_complete;
Dan Williamsf2427e22009-07-28 14:42:38 -07001203
1204 err = ioat_probe(device);
1205 if (err)
1206 return err;
1207 ioat_set_tcp_copy_break(4096);
1208 err = ioat_register(device);
1209 if (err)
1210 return err;
Dan Williams5669e312009-09-08 17:42:56 -07001211 ioat_kobject_add(device, &ioat1_ktype);
1212
Dan Williamsf2427e22009-07-28 14:42:38 -07001213 if (dca)
1214 device->dca = ioat_dca_init(pdev, device->reg_base);
1215
Dan Williamsf2427e22009-07-28 14:42:38 -07001216 return err;
1217}
1218
Dan Williams345d8522009-09-08 12:01:30 -07001219void __devexit ioat_dma_remove(struct ioatdma_device *device)
Dan Aloni428ed602007-03-08 09:57:36 -08001220{
Dan Williamsbc3c7022009-07-28 14:33:42 -07001221 struct dma_device *dma = &device->common;
Chris Leech0bbd5f42006-05-23 17:35:34 -07001222
Dan Williamse6c0b692009-09-08 17:29:44 -07001223 ioat_disable_interrupts(device);
Shannon Nelson8ab89562007-10-16 01:27:39 -07001224
Dan Williams5669e312009-09-08 17:42:56 -07001225 ioat_kobject_del(device);
1226
Dan Williamsbc3c7022009-07-28 14:33:42 -07001227 dma_async_device_unregister(dma);
Shannon Nelsondfe22992007-10-18 03:07:13 -07001228
Chris Leech0bbd5f42006-05-23 17:35:34 -07001229 pci_pool_destroy(device->dma_pool);
1230 pci_pool_destroy(device->completion_pool);
Shannon Nelson8ab89562007-10-16 01:27:39 -07001231
Dan Williamsdcbc8532009-07-28 14:44:50 -07001232 INIT_LIST_HEAD(&dma->channels);
Chris Leech0bbd5f42006-05-23 17:35:34 -07001233}