blob: b0517c86c1bb51210448466eb39e2df34ac89fbc [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>
Paul Gortmaker70c71602011-05-22 16:47:17 -040037#include <linux/prefetch.h>
Venki Pallipadi3ad0b022008-10-22 16:34:52 -070038#include <linux/i7300_idle.h>
Dan Williams584ec222009-07-28 14:32:12 -070039#include "dma.h"
40#include "registers.h"
41#include "hw.h"
Chris Leech0bbd5f42006-05-23 17:35:34 -070042
Russell King - ARM Linuxd2ebfb32012-03-06 22:34:26 +000043#include "../dmaengine.h"
44
Dan Williams5cbafa62009-08-26 13:01:44 -070045int ioat_pending_level = 4;
Shannon Nelson7bb67c12007-11-14 16:59:51 -080046module_param(ioat_pending_level, int, 0644);
47MODULE_PARM_DESC(ioat_pending_level,
48 "high-water mark for pushing ioat descriptors (default: 4)");
49
Chris Leech0bbd5f42006-05-23 17:35:34 -070050/* internal functions */
Dan Williams5cbafa62009-08-26 13:01:44 -070051static void ioat1_cleanup(struct ioat_dma_chan *ioat);
52static void ioat1_dma_start_null_desc(struct ioat_dma_chan *ioat);
Shannon Nelson3e037452007-10-16 01:27:40 -070053
54/**
55 * ioat_dma_do_interrupt - handler used for single vector interrupt mode
56 * @irq: interrupt id
57 * @data: interrupt data
58 */
59static irqreturn_t ioat_dma_do_interrupt(int irq, void *data)
60{
61 struct ioatdma_device *instance = data;
Dan Williamsdcbc8532009-07-28 14:44:50 -070062 struct ioat_chan_common *chan;
Shannon Nelson3e037452007-10-16 01:27:40 -070063 unsigned long attnstatus;
64 int bit;
65 u8 intrctrl;
66
67 intrctrl = readb(instance->reg_base + IOAT_INTRCTRL_OFFSET);
68
69 if (!(intrctrl & IOAT_INTRCTRL_MASTER_INT_EN))
70 return IRQ_NONE;
71
72 if (!(intrctrl & IOAT_INTRCTRL_INT_STATUS)) {
73 writeb(intrctrl, instance->reg_base + IOAT_INTRCTRL_OFFSET);
74 return IRQ_NONE;
75 }
76
77 attnstatus = readl(instance->reg_base + IOAT_ATTNSTATUS_OFFSET);
Akinobu Mita984b3f52010-03-05 13:41:37 -080078 for_each_set_bit(bit, &attnstatus, BITS_PER_LONG) {
Dan Williamsdcbc8532009-07-28 14:44:50 -070079 chan = ioat_chan_by_index(instance, bit);
80 tasklet_schedule(&chan->cleanup_task);
Shannon Nelson3e037452007-10-16 01:27:40 -070081 }
82
83 writeb(intrctrl, instance->reg_base + IOAT_INTRCTRL_OFFSET);
84 return IRQ_HANDLED;
85}
86
87/**
88 * ioat_dma_do_interrupt_msix - handler used for vector-per-channel interrupt mode
89 * @irq: interrupt id
90 * @data: interrupt data
91 */
92static irqreturn_t ioat_dma_do_interrupt_msix(int irq, void *data)
93{
Dan Williamsdcbc8532009-07-28 14:44:50 -070094 struct ioat_chan_common *chan = data;
Shannon Nelson3e037452007-10-16 01:27:40 -070095
Dan Williamsdcbc8532009-07-28 14:44:50 -070096 tasklet_schedule(&chan->cleanup_task);
Shannon Nelson3e037452007-10-16 01:27:40 -070097
98 return IRQ_HANDLED;
99}
100
Dan Williams5cbafa62009-08-26 13:01:44 -0700101/* common channel initialization */
Dan Williamsaa4d72a2010-03-03 21:21:13 -0700102void ioat_init_channel(struct ioatdma_device *device, struct ioat_chan_common *chan, int idx)
Dan Williams5cbafa62009-08-26 13:01:44 -0700103{
104 struct dma_device *dma = &device->common;
Dan Williamsaa4d72a2010-03-03 21:21:13 -0700105 struct dma_chan *c = &chan->common;
106 unsigned long data = (unsigned long) c;
Dan Williams5cbafa62009-08-26 13:01:44 -0700107
108 chan->device = device;
109 chan->reg_base = device->reg_base + (0x80 * (idx + 1));
Dan Williams5cbafa62009-08-26 13:01:44 -0700110 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;
Dan Williams09c8a5b2009-09-08 12:01:49 -0700114 init_timer(&chan->timer);
Dan Williamsaa4d72a2010-03-03 21:21:13 -0700115 chan->timer.function = device->timer_fn;
116 chan->timer.data = data;
117 tasklet_init(&chan->cleanup_task, device->cleanup_fn, data);
Dan Williams5cbafa62009-08-26 13:01:44 -0700118 tasklet_disable(&chan->cleanup_task);
119}
120
Shannon Nelson3e037452007-10-16 01:27:40 -0700121/**
Dan Williams5cbafa62009-08-26 13:01:44 -0700122 * ioat1_dma_enumerate_channels - find and initialize the device's channels
Shannon Nelson3e037452007-10-16 01:27:40 -0700123 * @device: the device to be enumerated
124 */
Dan Williams5cbafa62009-08-26 13:01:44 -0700125static int ioat1_enumerate_channels(struct ioatdma_device *device)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700126{
127 u8 xfercap_scale;
128 u32 xfercap;
129 int i;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700130 struct ioat_dma_chan *ioat;
Dan Williamse6c0b692009-09-08 17:29:44 -0700131 struct device *dev = &device->pdev->dev;
Dan Williamsf2427e22009-07-28 14:42:38 -0700132 struct dma_device *dma = &device->common;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700133
Dan Williamsf2427e22009-07-28 14:42:38 -0700134 INIT_LIST_HEAD(&dma->channels);
135 dma->chancnt = readb(device->reg_base + IOAT_CHANCNT_OFFSET);
Dan Williamsbb320782009-09-08 12:01:14 -0700136 dma->chancnt &= 0x1f; /* bits [4:0] valid */
137 if (dma->chancnt > ARRAY_SIZE(device->idx)) {
138 dev_warn(dev, "(%d) exceeds max supported channels (%zu)\n",
139 dma->chancnt, ARRAY_SIZE(device->idx));
140 dma->chancnt = ARRAY_SIZE(device->idx);
141 }
Chris Leeche3828812007-03-08 09:57:35 -0800142 xfercap_scale = readb(device->reg_base + IOAT_XFERCAP_OFFSET);
Dan Williamsbb320782009-09-08 12:01:14 -0700143 xfercap_scale &= 0x1f; /* bits [4:0] valid */
Chris Leech0bbd5f42006-05-23 17:35:34 -0700144 xfercap = (xfercap_scale == 0 ? -1 : (1UL << xfercap_scale));
Dan Williams6df91832009-09-08 12:00:55 -0700145 dev_dbg(dev, "%s: xfercap = %d\n", __func__, xfercap);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700146
Venki Pallipadif371be62008-10-23 15:39:06 -0700147#ifdef CONFIG_I7300_IDLE_IOAT_CHANNEL
Dan Williamsf2427e22009-07-28 14:42:38 -0700148 if (i7300_idle_platform_probe(NULL, NULL, 1) == 0)
149 dma->chancnt--;
Andy Henroid27471fd2008-10-09 11:45:22 -0700150#endif
Dan Williamsf2427e22009-07-28 14:42:38 -0700151 for (i = 0; i < dma->chancnt; i++) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700152 ioat = devm_kzalloc(dev, sizeof(*ioat), GFP_KERNEL);
Dan Williams5cbafa62009-08-26 13:01:44 -0700153 if (!ioat)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700154 break;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700155
Dan Williamsaa4d72a2010-03-03 21:21:13 -0700156 ioat_init_channel(device, &ioat->base, i);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700157 ioat->xfercap = xfercap;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700158 spin_lock_init(&ioat->desc_lock);
159 INIT_LIST_HEAD(&ioat->free_desc);
160 INIT_LIST_HEAD(&ioat->used_desc);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700161 }
Dan Williams5cbafa62009-08-26 13:01:44 -0700162 dma->chancnt = i;
163 return i;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700164}
165
Shannon Nelson711924b2007-12-17 16:20:08 -0800166/**
167 * ioat_dma_memcpy_issue_pending - push potentially unrecognized appended
168 * descriptors to hw
169 * @chan: DMA channel handle
170 */
Dan Williamsbc3c7022009-07-28 14:33:42 -0700171static inline void
Dan Williamsdcbc8532009-07-28 14:44:50 -0700172__ioat1_dma_memcpy_issue_pending(struct ioat_dma_chan *ioat)
Shannon Nelson711924b2007-12-17 16:20:08 -0800173{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700174 void __iomem *reg_base = ioat->base.reg_base;
175
Dan Williams6df91832009-09-08 12:00:55 -0700176 dev_dbg(to_dev(&ioat->base), "%s: pending: %d\n",
177 __func__, ioat->pending);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700178 ioat->pending = 0;
179 writeb(IOAT_CHANCMD_APPEND, reg_base + IOAT1_CHANCMD_OFFSET);
Shannon Nelson711924b2007-12-17 16:20:08 -0800180}
181
182static void ioat1_dma_memcpy_issue_pending(struct dma_chan *chan)
183{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700184 struct ioat_dma_chan *ioat = to_ioat_chan(chan);
Shannon Nelson711924b2007-12-17 16:20:08 -0800185
Dan Williamsdcbc8532009-07-28 14:44:50 -0700186 if (ioat->pending > 0) {
187 spin_lock_bh(&ioat->desc_lock);
188 __ioat1_dma_memcpy_issue_pending(ioat);
189 spin_unlock_bh(&ioat->desc_lock);
Shannon Nelson711924b2007-12-17 16:20:08 -0800190 }
191}
192
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700193/**
Dan Williams5cbafa62009-08-26 13:01:44 -0700194 * ioat1_reset_channel - restart a channel
Dan Williamsdcbc8532009-07-28 14:44:50 -0700195 * @ioat: IOAT DMA channel handle
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700196 */
Dan Williams5cbafa62009-08-26 13:01:44 -0700197static void ioat1_reset_channel(struct ioat_dma_chan *ioat)
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700198{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700199 struct ioat_chan_common *chan = &ioat->base;
200 void __iomem *reg_base = chan->reg_base;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700201 u32 chansts, chanerr;
202
Dan Williams09c8a5b2009-09-08 12:01:49 -0700203 dev_warn(to_dev(chan), "reset\n");
Dan Williamsdcbc8532009-07-28 14:44:50 -0700204 chanerr = readl(reg_base + IOAT_CHANERR_OFFSET);
Dan Williams09c8a5b2009-09-08 12:01:49 -0700205 chansts = *chan->completion & IOAT_CHANSTS_STATUS;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700206 if (chanerr) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700207 dev_err(to_dev(chan),
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700208 "chan%d, CHANSTS = 0x%08x CHANERR = 0x%04x, clearing\n",
Dan Williamsdcbc8532009-07-28 14:44:50 -0700209 chan_num(chan), chansts, chanerr);
210 writel(chanerr, reg_base + IOAT_CHANERR_OFFSET);
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700211 }
212
213 /*
214 * whack it upside the head with a reset
215 * and wait for things to settle out.
216 * force the pending count to a really big negative
217 * to make sure no one forces an issue_pending
218 * while we're waiting.
219 */
220
Dan Williamsdcbc8532009-07-28 14:44:50 -0700221 ioat->pending = INT_MIN;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700222 writeb(IOAT_CHANCMD_RESET,
Dan Williamsdcbc8532009-07-28 14:44:50 -0700223 reg_base + IOAT_CHANCMD_OFFSET(chan->device->version));
Dan Williams09c8a5b2009-09-08 12:01:49 -0700224 set_bit(IOAT_RESET_PENDING, &chan->state);
225 mod_timer(&chan->timer, jiffies + RESET_DELAY);
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700226}
227
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800228static dma_cookie_t ioat1_tx_submit(struct dma_async_tx_descriptor *tx)
Dan Williams7405f742007-01-02 11:10:43 -0700229{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700230 struct dma_chan *c = tx->chan;
231 struct ioat_dma_chan *ioat = to_ioat_chan(c);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700232 struct ioat_desc_sw *desc = tx_to_ioat_desc(tx);
Dan Williams09c8a5b2009-09-08 12:01:49 -0700233 struct ioat_chan_common *chan = &ioat->base;
Dan Williamsa0587bc2009-07-28 14:44:04 -0700234 struct ioat_desc_sw *first;
235 struct ioat_desc_sw *chain_tail;
Dan Williams7405f742007-01-02 11:10:43 -0700236 dma_cookie_t cookie;
Shannon Nelson7f2b2912007-10-18 03:07:14 -0700237
Dan Williamsdcbc8532009-07-28 14:44:50 -0700238 spin_lock_bh(&ioat->desc_lock);
Dan Williams7405f742007-01-02 11:10:43 -0700239 /* cookie incr and addition to used_list must be atomic */
Russell King - ARM Linux884485e2012-03-06 22:34:46 +0000240 cookie = dma_cookie_assign(tx);
Dan Williams6df91832009-09-08 12:00:55 -0700241 dev_dbg(to_dev(&ioat->base), "%s: cookie: %d\n", __func__, cookie);
Dan Williams7405f742007-01-02 11:10:43 -0700242
243 /* write address into NextDescriptor field of last desc in chain */
Dan Williamsea259682009-09-08 17:53:02 -0700244 first = to_ioat_desc(desc->tx_list.next);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700245 chain_tail = to_ioat_desc(ioat->used_desc.prev);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700246 /* make descriptor updates globally visible before chaining */
247 wmb();
248 chain_tail->hw->next = first->txd.phys;
Dan Williamsea259682009-09-08 17:53:02 -0700249 list_splice_tail_init(&desc->tx_list, &ioat->used_desc);
Dan Williams6df91832009-09-08 12:00:55 -0700250 dump_desc_dbg(ioat, chain_tail);
251 dump_desc_dbg(ioat, first);
Dan Williams7405f742007-01-02 11:10:43 -0700252
Dan Williams09c8a5b2009-09-08 12:01:49 -0700253 if (!test_and_set_bit(IOAT_COMPLETION_PENDING, &chan->state))
254 mod_timer(&chan->timer, jiffies + COMPLETION_TIMEOUT);
255
Dan Williams5669e312009-09-08 17:42:56 -0700256 ioat->active += desc->hw->tx_cnt;
Dan Williamsad643f52009-09-08 12:01:38 -0700257 ioat->pending += desc->hw->tx_cnt;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700258 if (ioat->pending >= ioat_pending_level)
259 __ioat1_dma_memcpy_issue_pending(ioat);
260 spin_unlock_bh(&ioat->desc_lock);
Dan Williams7405f742007-01-02 11:10:43 -0700261
Dan Williams7405f742007-01-02 11:10:43 -0700262 return cookie;
263}
264
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800265/**
266 * ioat_dma_alloc_descriptor - allocate and return a sw and hw descriptor pair
Dan Williamsdcbc8532009-07-28 14:44:50 -0700267 * @ioat: the channel supplying the memory pool for the descriptors
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800268 * @flags: allocation flags
269 */
Dan Williamsbc3c7022009-07-28 14:33:42 -0700270static struct ioat_desc_sw *
Dan Williamsdcbc8532009-07-28 14:44:50 -0700271ioat_dma_alloc_descriptor(struct ioat_dma_chan *ioat, gfp_t flags)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700272{
273 struct ioat_dma_descriptor *desc;
274 struct ioat_desc_sw *desc_sw;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700275 struct ioatdma_device *ioatdma_device;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700276 dma_addr_t phys;
277
Dan Williamsdcbc8532009-07-28 14:44:50 -0700278 ioatdma_device = ioat->base.device;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700279 desc = pci_pool_alloc(ioatdma_device->dma_pool, flags, &phys);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700280 if (unlikely(!desc))
281 return NULL;
282
283 desc_sw = kzalloc(sizeof(*desc_sw), flags);
284 if (unlikely(!desc_sw)) {
Shannon Nelson8ab89562007-10-16 01:27:39 -0700285 pci_pool_free(ioatdma_device->dma_pool, desc, phys);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700286 return NULL;
287 }
288
289 memset(desc, 0, sizeof(*desc));
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800290
Dan Williamsea259682009-09-08 17:53:02 -0700291 INIT_LIST_HEAD(&desc_sw->tx_list);
Dan Williams5cbafa62009-08-26 13:01:44 -0700292 dma_async_tx_descriptor_init(&desc_sw->txd, &ioat->base.common);
293 desc_sw->txd.tx_submit = ioat1_tx_submit;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700294 desc_sw->hw = desc;
Dan Williamsbc3c7022009-07-28 14:33:42 -0700295 desc_sw->txd.phys = phys;
Dan Williams6df91832009-09-08 12:00:55 -0700296 set_desc_id(desc_sw, -1);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700297
298 return desc_sw;
299}
300
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800301static int ioat_initial_desc_count = 256;
302module_param(ioat_initial_desc_count, int, 0644);
303MODULE_PARM_DESC(ioat_initial_desc_count,
Dan Williams5cbafa62009-08-26 13:01:44 -0700304 "ioat1: initial descriptors per channel (default: 256)");
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800305/**
Dan Williams5cbafa62009-08-26 13:01:44 -0700306 * ioat1_dma_alloc_chan_resources - returns the number of allocated descriptors
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800307 * @chan: the channel to be filled out
308 */
Dan Williams5cbafa62009-08-26 13:01:44 -0700309static int ioat1_dma_alloc_chan_resources(struct dma_chan *c)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700310{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700311 struct ioat_dma_chan *ioat = to_ioat_chan(c);
312 struct ioat_chan_common *chan = &ioat->base;
Shannon Nelson711924b2007-12-17 16:20:08 -0800313 struct ioat_desc_sw *desc;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700314 u32 chanerr;
315 int i;
316 LIST_HEAD(tmp_list);
317
Shannon Nelsone4223972007-08-24 23:02:53 -0700318 /* have we already been set up? */
Dan Williamsdcbc8532009-07-28 14:44:50 -0700319 if (!list_empty(&ioat->free_desc))
320 return ioat->desccount;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700321
Shannon Nelson43d6e362007-10-16 01:27:39 -0700322 /* Setup register to interrupt and write completion status on error */
Dan Williamsf6ab95b2009-09-08 12:01:21 -0700323 writew(IOAT_CHANCTRL_RUN, chan->reg_base + IOAT_CHANCTRL_OFFSET);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700324
Dan Williamsdcbc8532009-07-28 14:44:50 -0700325 chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700326 if (chanerr) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700327 dev_err(to_dev(chan), "CHANERR = %x, clearing\n", chanerr);
328 writel(chanerr, chan->reg_base + IOAT_CHANERR_OFFSET);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700329 }
330
331 /* Allocate descriptors */
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800332 for (i = 0; i < ioat_initial_desc_count; i++) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700333 desc = ioat_dma_alloc_descriptor(ioat, GFP_KERNEL);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700334 if (!desc) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700335 dev_err(to_dev(chan), "Only %d initial descriptors\n", i);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700336 break;
337 }
Dan Williams6df91832009-09-08 12:00:55 -0700338 set_desc_id(desc, i);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700339 list_add_tail(&desc->node, &tmp_list);
340 }
Dan Williamsdcbc8532009-07-28 14:44:50 -0700341 spin_lock_bh(&ioat->desc_lock);
342 ioat->desccount = i;
343 list_splice(&tmp_list, &ioat->free_desc);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700344 spin_unlock_bh(&ioat->desc_lock);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700345
346 /* allocate a completion writeback area */
347 /* doing 2 32bit writes to mmio since 1 64b write doesn't work */
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700348 chan->completion = pci_pool_alloc(chan->device->completion_pool,
349 GFP_KERNEL, &chan->completion_dma);
350 memset(chan->completion, 0, sizeof(*chan->completion));
351 writel(((u64) chan->completion_dma) & 0x00000000FFFFFFFF,
Dan Williamsdcbc8532009-07-28 14:44:50 -0700352 chan->reg_base + IOAT_CHANCMP_OFFSET_LOW);
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700353 writel(((u64) chan->completion_dma) >> 32,
Dan Williamsdcbc8532009-07-28 14:44:50 -0700354 chan->reg_base + IOAT_CHANCMP_OFFSET_HIGH);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700355
Dan Williamsdcbc8532009-07-28 14:44:50 -0700356 tasklet_enable(&chan->cleanup_task);
Dan Williams5cbafa62009-08-26 13:01:44 -0700357 ioat1_dma_start_null_desc(ioat); /* give chain to dma device */
Dan Williams6df91832009-09-08 12:00:55 -0700358 dev_dbg(to_dev(chan), "%s: allocated %d descriptors\n",
359 __func__, ioat->desccount);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700360 return ioat->desccount;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700361}
362
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800363/**
Dan Williams5cbafa62009-08-26 13:01:44 -0700364 * ioat1_dma_free_chan_resources - release all the descriptors
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800365 * @chan: the channel to be cleaned
366 */
Dan Williams5cbafa62009-08-26 13:01:44 -0700367static void ioat1_dma_free_chan_resources(struct dma_chan *c)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700368{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700369 struct ioat_dma_chan *ioat = to_ioat_chan(c);
370 struct ioat_chan_common *chan = &ioat->base;
371 struct ioatdma_device *ioatdma_device = chan->device;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700372 struct ioat_desc_sw *desc, *_desc;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700373 int in_use_descs = 0;
374
Maciej Sosnowskic3d4f442008-11-07 01:45:52 +0000375 /* Before freeing channel resources first check
376 * if they have been previously allocated for this channel.
377 */
Dan Williamsdcbc8532009-07-28 14:44:50 -0700378 if (ioat->desccount == 0)
Maciej Sosnowskic3d4f442008-11-07 01:45:52 +0000379 return;
380
Dan Williamsdcbc8532009-07-28 14:44:50 -0700381 tasklet_disable(&chan->cleanup_task);
Dan Williams09c8a5b2009-09-08 12:01:49 -0700382 del_timer_sync(&chan->timer);
Dan Williams5cbafa62009-08-26 13:01:44 -0700383 ioat1_cleanup(ioat);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700384
Shannon Nelson3e037452007-10-16 01:27:40 -0700385 /* Delay 100ms after reset to allow internal DMA logic to quiesce
386 * before removing DMA descriptor resources.
387 */
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800388 writeb(IOAT_CHANCMD_RESET,
Dan Williamsdcbc8532009-07-28 14:44:50 -0700389 chan->reg_base + IOAT_CHANCMD_OFFSET(chan->device->version));
Shannon Nelson3e037452007-10-16 01:27:40 -0700390 mdelay(100);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700391
Dan Williamsdcbc8532009-07-28 14:44:50 -0700392 spin_lock_bh(&ioat->desc_lock);
Dan Williams6df91832009-09-08 12:00:55 -0700393 list_for_each_entry_safe(desc, _desc, &ioat->used_desc, node) {
394 dev_dbg(to_dev(chan), "%s: freeing %d from used list\n",
395 __func__, desc_id(desc));
396 dump_desc_dbg(ioat, desc);
Dan Williams5cbafa62009-08-26 13:01:44 -0700397 in_use_descs++;
398 list_del(&desc->node);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700399 pci_pool_free(ioatdma_device->dma_pool, desc->hw,
Dan Williamsbc3c7022009-07-28 14:33:42 -0700400 desc->txd.phys);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700401 kfree(desc);
Dan Williams5cbafa62009-08-26 13:01:44 -0700402 }
403 list_for_each_entry_safe(desc, _desc,
404 &ioat->free_desc, node) {
405 list_del(&desc->node);
406 pci_pool_free(ioatdma_device->dma_pool, desc->hw,
407 desc->txd.phys);
408 kfree(desc);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700409 }
Dan Williamsdcbc8532009-07-28 14:44:50 -0700410 spin_unlock_bh(&ioat->desc_lock);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700411
Shannon Nelson8ab89562007-10-16 01:27:39 -0700412 pci_pool_free(ioatdma_device->completion_pool,
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700413 chan->completion,
414 chan->completion_dma);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700415
416 /* one is ok since we left it on there on purpose */
417 if (in_use_descs > 1)
Dan Williamsdcbc8532009-07-28 14:44:50 -0700418 dev_err(to_dev(chan), "Freeing %d in use descriptors!\n",
Chris Leech0bbd5f42006-05-23 17:35:34 -0700419 in_use_descs - 1);
420
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700421 chan->last_completion = 0;
422 chan->completion_dma = 0;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700423 ioat->pending = 0;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700424 ioat->desccount = 0;
Shannon Nelson3e037452007-10-16 01:27:40 -0700425}
Shannon Nelson7f2b2912007-10-18 03:07:14 -0700426
Shannon Nelson3e037452007-10-16 01:27:40 -0700427/**
Dan Williamsdcbc8532009-07-28 14:44:50 -0700428 * ioat1_dma_get_next_descriptor - return the next available descriptor
429 * @ioat: IOAT DMA channel handle
Shannon Nelson3e037452007-10-16 01:27:40 -0700430 *
431 * Gets the next descriptor from the chain, and must be called with the
432 * channel's desc_lock held. Allocates more descriptors if the channel
433 * has run out.
434 */
Shannon Nelson7f2b2912007-10-18 03:07:14 -0700435static struct ioat_desc_sw *
Dan Williamsdcbc8532009-07-28 14:44:50 -0700436ioat1_dma_get_next_descriptor(struct ioat_dma_chan *ioat)
Shannon Nelson3e037452007-10-16 01:27:40 -0700437{
Shannon Nelson711924b2007-12-17 16:20:08 -0800438 struct ioat_desc_sw *new;
Shannon Nelson3e037452007-10-16 01:27:40 -0700439
Dan Williamsdcbc8532009-07-28 14:44:50 -0700440 if (!list_empty(&ioat->free_desc)) {
441 new = to_ioat_desc(ioat->free_desc.next);
Shannon Nelson3e037452007-10-16 01:27:40 -0700442 list_del(&new->node);
443 } else {
444 /* try to get another desc */
Dan Williamsdcbc8532009-07-28 14:44:50 -0700445 new = ioat_dma_alloc_descriptor(ioat, GFP_ATOMIC);
Shannon Nelson711924b2007-12-17 16:20:08 -0800446 if (!new) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700447 dev_err(to_dev(&ioat->base), "alloc failed\n");
Shannon Nelson711924b2007-12-17 16:20:08 -0800448 return NULL;
449 }
Shannon Nelson3e037452007-10-16 01:27:40 -0700450 }
Dan Williams6df91832009-09-08 12:00:55 -0700451 dev_dbg(to_dev(&ioat->base), "%s: allocated: %d\n",
452 __func__, desc_id(new));
Shannon Nelson3e037452007-10-16 01:27:40 -0700453 prefetch(new->hw);
454 return new;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700455}
456
Dan Williamsbc3c7022009-07-28 14:33:42 -0700457static struct dma_async_tx_descriptor *
Dan Williamsdcbc8532009-07-28 14:44:50 -0700458ioat1_dma_prep_memcpy(struct dma_chan *c, dma_addr_t dma_dest,
Dan Williamsbc3c7022009-07-28 14:33:42 -0700459 dma_addr_t dma_src, size_t len, unsigned long flags)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700460{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700461 struct ioat_dma_chan *ioat = to_ioat_chan(c);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700462 struct ioat_desc_sw *desc;
463 size_t copy;
464 LIST_HEAD(chain);
465 dma_addr_t src = dma_src;
466 dma_addr_t dest = dma_dest;
467 size_t total_len = len;
468 struct ioat_dma_descriptor *hw = NULL;
469 int tx_cnt = 0;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700470
Dan Williamsdcbc8532009-07-28 14:44:50 -0700471 spin_lock_bh(&ioat->desc_lock);
Dan Williams5cbafa62009-08-26 13:01:44 -0700472 desc = ioat1_dma_get_next_descriptor(ioat);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700473 do {
474 if (!desc)
475 break;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700476
Dan Williamsa0587bc2009-07-28 14:44:04 -0700477 tx_cnt++;
Dan Williamsdcbc8532009-07-28 14:44:50 -0700478 copy = min_t(size_t, len, ioat->xfercap);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700479
480 hw = desc->hw;
481 hw->size = copy;
482 hw->ctl = 0;
483 hw->src_addr = src;
484 hw->dst_addr = dest;
485
486 list_add_tail(&desc->node, &chain);
487
488 len -= copy;
489 dest += copy;
490 src += copy;
491 if (len) {
492 struct ioat_desc_sw *next;
493
494 async_tx_ack(&desc->txd);
Dan Williams5cbafa62009-08-26 13:01:44 -0700495 next = ioat1_dma_get_next_descriptor(ioat);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700496 hw->next = next ? next->txd.phys : 0;
Dan Williams6df91832009-09-08 12:00:55 -0700497 dump_desc_dbg(ioat, desc);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700498 desc = next;
499 } else
500 hw->next = 0;
501 } while (len);
502
503 if (!desc) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700504 struct ioat_chan_common *chan = &ioat->base;
505
506 dev_err(to_dev(chan),
Dan Williams5cbafa62009-08-26 13:01:44 -0700507 "chan%d - get_next_desc failed\n", chan_num(chan));
Dan Williamsdcbc8532009-07-28 14:44:50 -0700508 list_splice(&chain, &ioat->free_desc);
509 spin_unlock_bh(&ioat->desc_lock);
Shannon Nelson711924b2007-12-17 16:20:08 -0800510 return NULL;
Maciej Sosnowski09177e82008-07-22 10:07:33 -0700511 }
Dan Williamsdcbc8532009-07-28 14:44:50 -0700512 spin_unlock_bh(&ioat->desc_lock);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700513
514 desc->txd.flags = flags;
Dan Williamsa0587bc2009-07-28 14:44:04 -0700515 desc->len = total_len;
Dan Williamsea259682009-09-08 17:53:02 -0700516 list_splice(&chain, &desc->tx_list);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700517 hw->ctl_f.int_en = !!(flags & DMA_PREP_INTERRUPT);
518 hw->ctl_f.compl_write = 1;
Dan Williamsad643f52009-09-08 12:01:38 -0700519 hw->tx_cnt = tx_cnt;
Dan Williams6df91832009-09-08 12:00:55 -0700520 dump_desc_dbg(ioat, desc);
Dan Williamsa0587bc2009-07-28 14:44:04 -0700521
522 return &desc->txd;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700523}
524
Dan Williamsaa4d72a2010-03-03 21:21:13 -0700525static void ioat1_cleanup_event(unsigned long data)
Shannon Nelson3e037452007-10-16 01:27:40 -0700526{
Dan Williamsaa4d72a2010-03-03 21:21:13 -0700527 struct ioat_dma_chan *ioat = to_ioat_chan((void *) data);
Dan Williamsf6ab95b2009-09-08 12:01:21 -0700528
Dan Williamsaa4d72a2010-03-03 21:21:13 -0700529 ioat1_cleanup(ioat);
530 writew(IOAT_CHANCTRL_RUN, ioat->base.reg_base + IOAT_CHANCTRL_OFFSET);
Shannon Nelson3e037452007-10-16 01:27:40 -0700531}
532
Dan Williams5cbafa62009-08-26 13:01:44 -0700533void ioat_dma_unmap(struct ioat_chan_common *chan, enum dma_ctrl_flags flags,
534 size_t len, struct ioat_dma_descriptor *hw)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700535{
Dan Williams5cbafa62009-08-26 13:01:44 -0700536 struct pci_dev *pdev = chan->device->pdev;
537 size_t offset = len - hw->size;
538
539 if (!(flags & DMA_COMPL_SKIP_DEST_UNMAP))
540 ioat_unmap(pdev, hw->dst_addr - offset, len,
541 PCI_DMA_FROMDEVICE, flags, 1);
542
543 if (!(flags & DMA_COMPL_SKIP_SRC_UNMAP))
544 ioat_unmap(pdev, hw->src_addr - offset, len,
545 PCI_DMA_TODEVICE, flags, 0);
546}
547
548unsigned long ioat_get_current_completion(struct ioat_chan_common *chan)
549{
Chris Leech0bbd5f42006-05-23 17:35:34 -0700550 unsigned long phys_complete;
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700551 u64 completion;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700552
Dan Williams4fb9b9e2009-09-08 12:01:04 -0700553 completion = *chan->completion;
Dan Williams09c8a5b2009-09-08 12:01:49 -0700554 phys_complete = ioat_chansts_to_addr(completion);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700555
Dan Williams6df91832009-09-08 12:00:55 -0700556 dev_dbg(to_dev(chan), "%s: phys_complete: %#llx\n", __func__,
557 (unsigned long long) phys_complete);
558
Dan Williams09c8a5b2009-09-08 12:01:49 -0700559 if (is_ioat_halted(completion)) {
560 u32 chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700561 dev_err(to_dev(chan), "Channel halted, chanerr = %x\n",
Dan Williams09c8a5b2009-09-08 12:01:49 -0700562 chanerr);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700563
564 /* TODO do something to salvage the situation */
565 }
566
Dan Williams5cbafa62009-08-26 13:01:44 -0700567 return phys_complete;
568}
569
Dan Williams09c8a5b2009-09-08 12:01:49 -0700570bool ioat_cleanup_preamble(struct ioat_chan_common *chan,
571 unsigned long *phys_complete)
572{
573 *phys_complete = ioat_get_current_completion(chan);
574 if (*phys_complete == chan->last_completion)
575 return false;
576 clear_bit(IOAT_COMPLETION_ACK, &chan->state);
577 mod_timer(&chan->timer, jiffies + COMPLETION_TIMEOUT);
578
579 return true;
580}
581
582static void __cleanup(struct ioat_dma_chan *ioat, unsigned long phys_complete)
Dan Williams5cbafa62009-08-26 13:01:44 -0700583{
584 struct ioat_chan_common *chan = &ioat->base;
Dan Williams09c8a5b2009-09-08 12:01:49 -0700585 struct list_head *_desc, *n;
Dan Williams5cbafa62009-08-26 13:01:44 -0700586 struct dma_async_tx_descriptor *tx;
587
Dan Williams6df91832009-09-08 12:00:55 -0700588 dev_dbg(to_dev(chan), "%s: phys_complete: %lx\n",
589 __func__, phys_complete);
Dan Williams09c8a5b2009-09-08 12:01:49 -0700590 list_for_each_safe(_desc, n, &ioat->used_desc) {
591 struct ioat_desc_sw *desc;
592
593 prefetch(n);
594 desc = list_entry(_desc, typeof(*desc), node);
Dan Williamsbc3c7022009-07-28 14:33:42 -0700595 tx = &desc->txd;
Dan Williams5cbafa62009-08-26 13:01:44 -0700596 /*
597 * Incoming DMA requests may use multiple descriptors,
598 * due to exceeding xfercap, perhaps. If so, only the
599 * last one will have a cookie, and require unmapping.
600 */
Dan Williams6df91832009-09-08 12:00:55 -0700601 dump_desc_dbg(ioat, desc);
Dan Williams5cbafa62009-08-26 13:01:44 -0700602 if (tx->cookie) {
Russell King - ARM Linuxf7fbce02012-03-06 22:35:07 +0000603 dma_cookie_complete(tx);
Dan Williams5cbafa62009-08-26 13:01:44 -0700604 ioat_dma_unmap(chan, tx->flags, desc->len, desc->hw);
Dan Williams5669e312009-09-08 17:42:56 -0700605 ioat->active -= desc->hw->tx_cnt;
Dan Williams5cbafa62009-08-26 13:01:44 -0700606 if (tx->callback) {
607 tx->callback(tx->callback_param);
608 tx->callback = NULL;
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800609 }
Chris Leech0bbd5f42006-05-23 17:35:34 -0700610 }
Dan Williams5cbafa62009-08-26 13:01:44 -0700611
612 if (tx->phys != phys_complete) {
613 /*
614 * a completed entry, but not the last, so clean
615 * up if the client is done with the descriptor
616 */
617 if (async_tx_test_ack(tx))
618 list_move_tail(&desc->node, &ioat->free_desc);
Dan Williams5cbafa62009-08-26 13:01:44 -0700619 } else {
620 /*
621 * last used desc. Do not remove, so we can
Dan Williams09c8a5b2009-09-08 12:01:49 -0700622 * append from it.
Dan Williams5cbafa62009-08-26 13:01:44 -0700623 */
Dan Williams09c8a5b2009-09-08 12:01:49 -0700624
625 /* if nothing else is pending, cancel the
626 * completion timeout
627 */
628 if (n == &ioat->used_desc) {
629 dev_dbg(to_dev(chan),
630 "%s cancel completion timeout\n",
631 __func__);
632 clear_bit(IOAT_COMPLETION_PENDING, &chan->state);
633 }
Dan Williams5cbafa62009-08-26 13:01:44 -0700634
635 /* TODO check status bits? */
636 break;
637 }
Chris Leech0bbd5f42006-05-23 17:35:34 -0700638 }
639
Dan Williamsdcbc8532009-07-28 14:44:50 -0700640 chan->last_completion = phys_complete;
Dan Williams09c8a5b2009-09-08 12:01:49 -0700641}
Chris Leech0bbd5f42006-05-23 17:35:34 -0700642
Dan Williams09c8a5b2009-09-08 12:01:49 -0700643/**
644 * ioat1_cleanup - cleanup up finished descriptors
645 * @chan: ioat channel to be cleaned up
646 *
647 * To prevent lock contention we defer cleanup when the locks are
648 * contended with a terminal timeout that forces cleanup and catches
649 * completion notification errors.
650 */
651static void ioat1_cleanup(struct ioat_dma_chan *ioat)
652{
653 struct ioat_chan_common *chan = &ioat->base;
654 unsigned long phys_complete;
655
656 prefetch(chan->completion);
657
658 if (!spin_trylock_bh(&chan->cleanup_lock))
659 return;
660
661 if (!ioat_cleanup_preamble(chan, &phys_complete)) {
662 spin_unlock_bh(&chan->cleanup_lock);
663 return;
664 }
665
666 if (!spin_trylock_bh(&ioat->desc_lock)) {
667 spin_unlock_bh(&chan->cleanup_lock);
668 return;
669 }
670
671 __cleanup(ioat, phys_complete);
672
673 spin_unlock_bh(&ioat->desc_lock);
674 spin_unlock_bh(&chan->cleanup_lock);
675}
676
677static void ioat1_timer_event(unsigned long data)
678{
Dan Williamsaa4d72a2010-03-03 21:21:13 -0700679 struct ioat_dma_chan *ioat = to_ioat_chan((void *) data);
Dan Williams09c8a5b2009-09-08 12:01:49 -0700680 struct ioat_chan_common *chan = &ioat->base;
681
682 dev_dbg(to_dev(chan), "%s: state: %lx\n", __func__, chan->state);
683
684 spin_lock_bh(&chan->cleanup_lock);
685 if (test_and_clear_bit(IOAT_RESET_PENDING, &chan->state)) {
686 struct ioat_desc_sw *desc;
687
688 spin_lock_bh(&ioat->desc_lock);
689
690 /* restart active descriptors */
691 desc = to_ioat_desc(ioat->used_desc.prev);
692 ioat_set_chainaddr(ioat, desc->txd.phys);
693 ioat_start(chan);
694
695 ioat->pending = 0;
696 set_bit(IOAT_COMPLETION_PENDING, &chan->state);
697 mod_timer(&chan->timer, jiffies + COMPLETION_TIMEOUT);
698 spin_unlock_bh(&ioat->desc_lock);
699 } else if (test_bit(IOAT_COMPLETION_PENDING, &chan->state)) {
700 unsigned long phys_complete;
701
702 spin_lock_bh(&ioat->desc_lock);
703 /* if we haven't made progress and we have already
704 * acknowledged a pending completion once, then be more
705 * forceful with a restart
706 */
707 if (ioat_cleanup_preamble(chan, &phys_complete))
708 __cleanup(ioat, phys_complete);
709 else if (test_bit(IOAT_COMPLETION_ACK, &chan->state))
710 ioat1_reset_channel(ioat);
711 else {
712 u64 status = ioat_chansts(chan);
713
714 /* manually update the last completion address */
715 if (ioat_chansts_to_addr(status) != 0)
716 *chan->completion = status;
717
718 set_bit(IOAT_COMPLETION_ACK, &chan->state);
719 mod_timer(&chan->timer, jiffies + COMPLETION_TIMEOUT);
720 }
721 spin_unlock_bh(&ioat->desc_lock);
722 }
Dan Williamsdcbc8532009-07-28 14:44:50 -0700723 spin_unlock_bh(&chan->cleanup_lock);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700724}
725
Dan Williamsaa4d72a2010-03-03 21:21:13 -0700726enum dma_status
Linus Walleij07934482010-03-26 16:50:49 -0700727ioat_dma_tx_status(struct dma_chan *c, dma_cookie_t cookie,
728 struct dma_tx_state *txstate)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700729{
Dan Williamsaa4d72a2010-03-03 21:21:13 -0700730 struct ioat_chan_common *chan = to_chan_common(c);
731 struct ioatdma_device *device = chan->device;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700732
Linus Walleij07934482010-03-26 16:50:49 -0700733 if (ioat_tx_status(c, cookie, txstate) == DMA_SUCCESS)
Dan Williams5cbafa62009-08-26 13:01:44 -0700734 return DMA_SUCCESS;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700735
Dan Williamsaa4d72a2010-03-03 21:21:13 -0700736 device->cleanup_fn((unsigned long) c);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700737
Linus Walleij07934482010-03-26 16:50:49 -0700738 return ioat_tx_status(c, cookie, txstate);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700739}
740
Dan Williams5cbafa62009-08-26 13:01:44 -0700741static void ioat1_dma_start_null_desc(struct ioat_dma_chan *ioat)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700742{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700743 struct ioat_chan_common *chan = &ioat->base;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700744 struct ioat_desc_sw *desc;
Dan Williamsc7984f42009-07-28 14:44:04 -0700745 struct ioat_dma_descriptor *hw;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700746
Dan Williamsdcbc8532009-07-28 14:44:50 -0700747 spin_lock_bh(&ioat->desc_lock);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700748
Dan Williams5cbafa62009-08-26 13:01:44 -0700749 desc = ioat1_dma_get_next_descriptor(ioat);
Maciej Sosnowski7f1b3582008-07-22 17:30:57 -0700750
751 if (!desc) {
Dan Williamsdcbc8532009-07-28 14:44:50 -0700752 dev_err(to_dev(chan),
Maciej Sosnowski7f1b3582008-07-22 17:30:57 -0700753 "Unable to start null desc - get next desc failed\n");
Dan Williamsdcbc8532009-07-28 14:44:50 -0700754 spin_unlock_bh(&ioat->desc_lock);
Maciej Sosnowski7f1b3582008-07-22 17:30:57 -0700755 return;
756 }
757
Dan Williamsc7984f42009-07-28 14:44:04 -0700758 hw = desc->hw;
759 hw->ctl = 0;
760 hw->ctl_f.null = 1;
761 hw->ctl_f.int_en = 1;
762 hw->ctl_f.compl_write = 1;
Maciej Sosnowski7f1b3582008-07-22 17:30:57 -0700763 /* set size to non-zero value (channel returns error when size is 0) */
Dan Williamsc7984f42009-07-28 14:44:04 -0700764 hw->size = NULL_DESC_BUFFER_SIZE;
765 hw->src_addr = 0;
766 hw->dst_addr = 0;
Dan Williamsbc3c7022009-07-28 14:33:42 -0700767 async_tx_ack(&desc->txd);
Dan Williams5cbafa62009-08-26 13:01:44 -0700768 hw->next = 0;
769 list_add_tail(&desc->node, &ioat->used_desc);
Dan Williams6df91832009-09-08 12:00:55 -0700770 dump_desc_dbg(ioat, desc);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700771
Dan Williams09c8a5b2009-09-08 12:01:49 -0700772 ioat_set_chainaddr(ioat, desc->txd.phys);
773 ioat_start(chan);
Dan Williamsdcbc8532009-07-28 14:44:50 -0700774 spin_unlock_bh(&ioat->desc_lock);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700775}
776
777/*
778 * Perform a IOAT transaction to verify the HW works.
779 */
780#define IOAT_TEST_SIZE 2000
781
Dan Williams345d8522009-09-08 12:01:30 -0700782static void __devinit ioat_dma_test_callback(void *dma_async_param)
Shannon Nelson95218432007-10-18 03:07:15 -0700783{
Dan Williamsb9bdcbb2009-01-06 11:38:22 -0700784 struct completion *cmp = dma_async_param;
785
786 complete(cmp);
Shannon Nelson95218432007-10-18 03:07:15 -0700787}
788
Shannon Nelson3e037452007-10-16 01:27:40 -0700789/**
790 * ioat_dma_self_test - Perform a IOAT transaction to verify the HW works.
791 * @device: device to be tested
792 */
Dan Williams9de6fc72009-09-08 17:42:58 -0700793int __devinit ioat_dma_self_test(struct ioatdma_device *device)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700794{
795 int i;
796 u8 *src;
797 u8 *dest;
Dan Williamsbc3c7022009-07-28 14:33:42 -0700798 struct dma_device *dma = &device->common;
799 struct device *dev = &device->pdev->dev;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700800 struct dma_chan *dma_chan;
Shannon Nelson711924b2007-12-17 16:20:08 -0800801 struct dma_async_tx_descriptor *tx;
Dan Williams00367312008-02-02 19:49:57 -0700802 dma_addr_t dma_dest, dma_src;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700803 dma_cookie_t cookie;
804 int err = 0;
Dan Williamsb9bdcbb2009-01-06 11:38:22 -0700805 struct completion cmp;
Dan Williams0c33e1c2009-03-02 13:31:35 -0700806 unsigned long tmo;
Maciej Sosnowski4f005db2009-04-23 12:31:51 +0200807 unsigned long flags;
Chris Leech0bbd5f42006-05-23 17:35:34 -0700808
Christoph Lametere94b1762006-12-06 20:33:17 -0800809 src = kzalloc(sizeof(u8) * IOAT_TEST_SIZE, GFP_KERNEL);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700810 if (!src)
811 return -ENOMEM;
Christoph Lametere94b1762006-12-06 20:33:17 -0800812 dest = kzalloc(sizeof(u8) * IOAT_TEST_SIZE, GFP_KERNEL);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700813 if (!dest) {
814 kfree(src);
815 return -ENOMEM;
816 }
817
818 /* Fill in src buffer */
819 for (i = 0; i < IOAT_TEST_SIZE; i++)
820 src[i] = (u8)i;
821
822 /* Start copy, using first DMA channel */
Dan Williamsbc3c7022009-07-28 14:33:42 -0700823 dma_chan = container_of(dma->channels.next, struct dma_chan,
Shannon Nelson43d6e362007-10-16 01:27:39 -0700824 device_node);
Dan Williamsbc3c7022009-07-28 14:33:42 -0700825 if (dma->device_alloc_chan_resources(dma_chan) < 1) {
826 dev_err(dev, "selftest cannot allocate chan resource\n");
Chris Leech0bbd5f42006-05-23 17:35:34 -0700827 err = -ENODEV;
828 goto out;
829 }
830
Dan Williamsbc3c7022009-07-28 14:33:42 -0700831 dma_src = dma_map_single(dev, src, IOAT_TEST_SIZE, DMA_TO_DEVICE);
832 dma_dest = dma_map_single(dev, dest, IOAT_TEST_SIZE, DMA_FROM_DEVICE);
Dan Williamsa6a39ca2009-07-28 14:44:05 -0700833 flags = DMA_COMPL_SRC_UNMAP_SINGLE | DMA_COMPL_DEST_UNMAP_SINGLE |
834 DMA_PREP_INTERRUPT;
Dan Williams00367312008-02-02 19:49:57 -0700835 tx = device->common.device_prep_dma_memcpy(dma_chan, dma_dest, dma_src,
Maciej Sosnowski4f005db2009-04-23 12:31:51 +0200836 IOAT_TEST_SIZE, flags);
Shannon Nelson5149fd02007-10-18 03:07:13 -0700837 if (!tx) {
Dan Williamsbc3c7022009-07-28 14:33:42 -0700838 dev_err(dev, "Self-test prep failed, disabling\n");
Shannon Nelson5149fd02007-10-18 03:07:13 -0700839 err = -ENODEV;
840 goto free_resources;
841 }
842
Dan Williams7405f742007-01-02 11:10:43 -0700843 async_tx_ack(tx);
Dan Williamsb9bdcbb2009-01-06 11:38:22 -0700844 init_completion(&cmp);
Shannon Nelson95218432007-10-18 03:07:15 -0700845 tx->callback = ioat_dma_test_callback;
Dan Williamsb9bdcbb2009-01-06 11:38:22 -0700846 tx->callback_param = &cmp;
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800847 cookie = tx->tx_submit(tx);
Shannon Nelson7f2b2912007-10-18 03:07:14 -0700848 if (cookie < 0) {
Dan Williamsbc3c7022009-07-28 14:33:42 -0700849 dev_err(dev, "Self-test setup failed, disabling\n");
Shannon Nelson7f2b2912007-10-18 03:07:14 -0700850 err = -ENODEV;
851 goto free_resources;
852 }
Dan Williamsbc3c7022009-07-28 14:33:42 -0700853 dma->device_issue_pending(dma_chan);
Dan Williams532d3b12008-12-03 17:16:55 -0700854
Dan Williams0c33e1c2009-03-02 13:31:35 -0700855 tmo = wait_for_completion_timeout(&cmp, msecs_to_jiffies(3000));
Chris Leech0bbd5f42006-05-23 17:35:34 -0700856
Dan Williams0c33e1c2009-03-02 13:31:35 -0700857 if (tmo == 0 ||
Linus Walleij07934482010-03-26 16:50:49 -0700858 dma->device_tx_status(dma_chan, cookie, NULL)
Shannon Nelson7bb67c12007-11-14 16:59:51 -0800859 != DMA_SUCCESS) {
Dan Williamsbc3c7022009-07-28 14:33:42 -0700860 dev_err(dev, "Self-test copy timed out, disabling\n");
Chris Leech0bbd5f42006-05-23 17:35:34 -0700861 err = -ENODEV;
862 goto free_resources;
863 }
864 if (memcmp(src, dest, IOAT_TEST_SIZE)) {
Dan Williamsbc3c7022009-07-28 14:33:42 -0700865 dev_err(dev, "Self-test copy failed compare, disabling\n");
Chris Leech0bbd5f42006-05-23 17:35:34 -0700866 err = -ENODEV;
867 goto free_resources;
868 }
869
870free_resources:
Dan Williamsbc3c7022009-07-28 14:33:42 -0700871 dma->device_free_chan_resources(dma_chan);
Chris Leech0bbd5f42006-05-23 17:35:34 -0700872out:
873 kfree(src);
874 kfree(dest);
875 return err;
876}
877
Shannon Nelson3e037452007-10-16 01:27:40 -0700878static char ioat_interrupt_style[32] = "msix";
879module_param_string(ioat_interrupt_style, ioat_interrupt_style,
880 sizeof(ioat_interrupt_style), 0644);
881MODULE_PARM_DESC(ioat_interrupt_style,
882 "set ioat interrupt style: msix (default), "
883 "msix-single-vector, msi, intx)");
884
885/**
886 * ioat_dma_setup_interrupts - setup interrupt handler
887 * @device: ioat device
888 */
889static int ioat_dma_setup_interrupts(struct ioatdma_device *device)
890{
Dan Williamsdcbc8532009-07-28 14:44:50 -0700891 struct ioat_chan_common *chan;
Dan Williamse6c0b692009-09-08 17:29:44 -0700892 struct pci_dev *pdev = device->pdev;
893 struct device *dev = &pdev->dev;
894 struct msix_entry *msix;
895 int i, j, msixcnt;
896 int err = -EINVAL;
Shannon Nelson3e037452007-10-16 01:27:40 -0700897 u8 intrctrl = 0;
898
899 if (!strcmp(ioat_interrupt_style, "msix"))
900 goto msix;
901 if (!strcmp(ioat_interrupt_style, "msix-single-vector"))
902 goto msix_single_vector;
903 if (!strcmp(ioat_interrupt_style, "msi"))
904 goto msi;
905 if (!strcmp(ioat_interrupt_style, "intx"))
906 goto intx;
Dan Williamse6c0b692009-09-08 17:29:44 -0700907 dev_err(dev, "invalid ioat_interrupt_style %s\n", ioat_interrupt_style);
Shannon Nelson5149fd02007-10-18 03:07:13 -0700908 goto err_no_irq;
Shannon Nelson3e037452007-10-16 01:27:40 -0700909
910msix:
911 /* The number of MSI-X vectors should equal the number of channels */
912 msixcnt = device->common.chancnt;
913 for (i = 0; i < msixcnt; i++)
914 device->msix_entries[i].entry = i;
915
Dan Williamse6c0b692009-09-08 17:29:44 -0700916 err = pci_enable_msix(pdev, device->msix_entries, msixcnt);
Shannon Nelson3e037452007-10-16 01:27:40 -0700917 if (err < 0)
918 goto msi;
919 if (err > 0)
920 goto msix_single_vector;
921
922 for (i = 0; i < msixcnt; i++) {
Dan Williamse6c0b692009-09-08 17:29:44 -0700923 msix = &device->msix_entries[i];
Dan Williamsdcbc8532009-07-28 14:44:50 -0700924 chan = ioat_chan_by_index(device, i);
Dan Williamse6c0b692009-09-08 17:29:44 -0700925 err = devm_request_irq(dev, msix->vector,
926 ioat_dma_do_interrupt_msix, 0,
Dan Williamsdcbc8532009-07-28 14:44:50 -0700927 "ioat-msix", chan);
Shannon Nelson3e037452007-10-16 01:27:40 -0700928 if (err) {
929 for (j = 0; j < i; j++) {
Dan Williamse6c0b692009-09-08 17:29:44 -0700930 msix = &device->msix_entries[j];
Dan Williamsdcbc8532009-07-28 14:44:50 -0700931 chan = ioat_chan_by_index(device, j);
932 devm_free_irq(dev, msix->vector, chan);
Shannon Nelson3e037452007-10-16 01:27:40 -0700933 }
934 goto msix_single_vector;
935 }
936 }
937 intrctrl |= IOAT_INTRCTRL_MSIX_VECTOR_CONTROL;
Shannon Nelson3e037452007-10-16 01:27:40 -0700938 goto done;
939
940msix_single_vector:
Dan Williamse6c0b692009-09-08 17:29:44 -0700941 msix = &device->msix_entries[0];
942 msix->entry = 0;
943 err = pci_enable_msix(pdev, device->msix_entries, 1);
Shannon Nelson3e037452007-10-16 01:27:40 -0700944 if (err)
945 goto msi;
946
Dan Williamse6c0b692009-09-08 17:29:44 -0700947 err = devm_request_irq(dev, msix->vector, ioat_dma_do_interrupt, 0,
948 "ioat-msix", device);
Shannon Nelson3e037452007-10-16 01:27:40 -0700949 if (err) {
Dan Williamse6c0b692009-09-08 17:29:44 -0700950 pci_disable_msix(pdev);
Shannon Nelson3e037452007-10-16 01:27:40 -0700951 goto msi;
952 }
Shannon Nelson3e037452007-10-16 01:27:40 -0700953 goto done;
954
955msi:
Dan Williamse6c0b692009-09-08 17:29:44 -0700956 err = pci_enable_msi(pdev);
Shannon Nelson3e037452007-10-16 01:27:40 -0700957 if (err)
958 goto intx;
959
Dan Williamse6c0b692009-09-08 17:29:44 -0700960 err = devm_request_irq(dev, pdev->irq, ioat_dma_do_interrupt, 0,
961 "ioat-msi", device);
Shannon Nelson3e037452007-10-16 01:27:40 -0700962 if (err) {
Dan Williamse6c0b692009-09-08 17:29:44 -0700963 pci_disable_msi(pdev);
Shannon Nelson3e037452007-10-16 01:27:40 -0700964 goto intx;
965 }
Shannon Nelson3e037452007-10-16 01:27:40 -0700966 goto done;
967
968intx:
Dan Williamse6c0b692009-09-08 17:29:44 -0700969 err = devm_request_irq(dev, pdev->irq, ioat_dma_do_interrupt,
970 IRQF_SHARED, "ioat-intx", device);
Shannon Nelson3e037452007-10-16 01:27:40 -0700971 if (err)
972 goto err_no_irq;
Shannon Nelson3e037452007-10-16 01:27:40 -0700973
974done:
Dan Williamsf2427e22009-07-28 14:42:38 -0700975 if (device->intr_quirk)
976 device->intr_quirk(device);
Shannon Nelson3e037452007-10-16 01:27:40 -0700977 intrctrl |= IOAT_INTRCTRL_MASTER_INT_EN;
978 writeb(intrctrl, device->reg_base + IOAT_INTRCTRL_OFFSET);
979 return 0;
980
981err_no_irq:
982 /* Disable all interrupt generation */
983 writeb(0, device->reg_base + IOAT_INTRCTRL_OFFSET);
Dan Williamse6c0b692009-09-08 17:29:44 -0700984 dev_err(dev, "no usable interrupts\n");
985 return err;
Shannon Nelson3e037452007-10-16 01:27:40 -0700986}
987
Dan Williamse6c0b692009-09-08 17:29:44 -0700988static void ioat_disable_interrupts(struct ioatdma_device *device)
Shannon Nelson3e037452007-10-16 01:27:40 -0700989{
Shannon Nelson3e037452007-10-16 01:27:40 -0700990 /* Disable all interrupt generation */
991 writeb(0, device->reg_base + IOAT_INTRCTRL_OFFSET);
Shannon Nelson3e037452007-10-16 01:27:40 -0700992}
993
Dan Williams345d8522009-09-08 12:01:30 -0700994int __devinit ioat_probe(struct ioatdma_device *device)
Chris Leech0bbd5f42006-05-23 17:35:34 -0700995{
Dan Williamsf2427e22009-07-28 14:42:38 -0700996 int err = -ENODEV;
997 struct dma_device *dma = &device->common;
998 struct pci_dev *pdev = device->pdev;
Dan Williamse6c0b692009-09-08 17:29:44 -0700999 struct device *dev = &pdev->dev;
Chris Leech0bbd5f42006-05-23 17:35:34 -07001000
1001 /* DMA coherent memory pool for DMA descriptor allocations */
1002 device->dma_pool = pci_pool_create("dma_desc_pool", pdev,
Shannon Nelson8ab89562007-10-16 01:27:39 -07001003 sizeof(struct ioat_dma_descriptor),
1004 64, 0);
Chris Leech0bbd5f42006-05-23 17:35:34 -07001005 if (!device->dma_pool) {
1006 err = -ENOMEM;
1007 goto err_dma_pool;
1008 }
1009
Shannon Nelson43d6e362007-10-16 01:27:39 -07001010 device->completion_pool = pci_pool_create("completion_pool", pdev,
1011 sizeof(u64), SMP_CACHE_BYTES,
1012 SMP_CACHE_BYTES);
Dan Williams5cbafa62009-08-26 13:01:44 -07001013
Chris Leech0bbd5f42006-05-23 17:35:34 -07001014 if (!device->completion_pool) {
1015 err = -ENOMEM;
1016 goto err_completion_pool;
1017 }
1018
Dan Williams5cbafa62009-08-26 13:01:44 -07001019 device->enumerate_channels(device);
Chris Leech0bbd5f42006-05-23 17:35:34 -07001020
Dan Williamsf2427e22009-07-28 14:42:38 -07001021 dma_cap_set(DMA_MEMCPY, dma->cap_mask);
Dan Williamsf2427e22009-07-28 14:42:38 -07001022 dma->dev = &pdev->dev;
Shannon Nelson7bb67c12007-11-14 16:59:51 -08001023
Dan Williamsbc3c7022009-07-28 14:33:42 -07001024 if (!dma->chancnt) {
Dan Williamsa6d52d72009-12-19 15:36:02 -07001025 dev_err(dev, "channel enumeration error\n");
Maciej Sosnowski8b794b12009-02-26 11:04:54 +01001026 goto err_setup_interrupts;
1027 }
1028
Shannon Nelson3e037452007-10-16 01:27:40 -07001029 err = ioat_dma_setup_interrupts(device);
Shannon Nelson8ab89562007-10-16 01:27:39 -07001030 if (err)
Shannon Nelson3e037452007-10-16 01:27:40 -07001031 goto err_setup_interrupts;
Shannon Nelson8ab89562007-10-16 01:27:39 -07001032
Dan Williams9de6fc72009-09-08 17:42:58 -07001033 err = device->self_test(device);
Chris Leech0bbd5f42006-05-23 17:35:34 -07001034 if (err)
1035 goto err_self_test;
1036
Dan Williamsf2427e22009-07-28 14:42:38 -07001037 return 0;
Chris Leech0bbd5f42006-05-23 17:35:34 -07001038
1039err_self_test:
Dan Williamse6c0b692009-09-08 17:29:44 -07001040 ioat_disable_interrupts(device);
Shannon Nelson3e037452007-10-16 01:27:40 -07001041err_setup_interrupts:
Chris Leech0bbd5f42006-05-23 17:35:34 -07001042 pci_pool_destroy(device->completion_pool);
1043err_completion_pool:
1044 pci_pool_destroy(device->dma_pool);
1045err_dma_pool:
Dan Williamsf2427e22009-07-28 14:42:38 -07001046 return err;
1047}
1048
Dan Williams345d8522009-09-08 12:01:30 -07001049int __devinit ioat_register(struct ioatdma_device *device)
Dan Williamsf2427e22009-07-28 14:42:38 -07001050{
1051 int err = dma_async_device_register(&device->common);
1052
1053 if (err) {
1054 ioat_disable_interrupts(device);
1055 pci_pool_destroy(device->completion_pool);
1056 pci_pool_destroy(device->dma_pool);
1057 }
1058
1059 return err;
1060}
1061
1062/* ioat1_intr_quirk - fix up dma ctrl register to enable / disable msi */
1063static void ioat1_intr_quirk(struct ioatdma_device *device)
1064{
1065 struct pci_dev *pdev = device->pdev;
1066 u32 dmactrl;
1067
1068 pci_read_config_dword(pdev, IOAT_PCI_DMACTRL_OFFSET, &dmactrl);
1069 if (pdev->msi_enabled)
1070 dmactrl |= IOAT_PCI_DMACTRL_MSI_EN;
1071 else
1072 dmactrl &= ~IOAT_PCI_DMACTRL_MSI_EN;
1073 pci_write_config_dword(pdev, IOAT_PCI_DMACTRL_OFFSET, dmactrl);
1074}
1075
Dan Williams5669e312009-09-08 17:42:56 -07001076static ssize_t ring_size_show(struct dma_chan *c, char *page)
1077{
1078 struct ioat_dma_chan *ioat = to_ioat_chan(c);
1079
1080 return sprintf(page, "%d\n", ioat->desccount);
1081}
1082static struct ioat_sysfs_entry ring_size_attr = __ATTR_RO(ring_size);
1083
1084static ssize_t ring_active_show(struct dma_chan *c, char *page)
1085{
1086 struct ioat_dma_chan *ioat = to_ioat_chan(c);
1087
1088 return sprintf(page, "%d\n", ioat->active);
1089}
1090static struct ioat_sysfs_entry ring_active_attr = __ATTR_RO(ring_active);
1091
1092static ssize_t cap_show(struct dma_chan *c, char *page)
1093{
1094 struct dma_device *dma = c->device;
1095
1096 return sprintf(page, "copy%s%s%s%s%s%s\n",
1097 dma_has_cap(DMA_PQ, dma->cap_mask) ? " pq" : "",
1098 dma_has_cap(DMA_PQ_VAL, dma->cap_mask) ? " pq_val" : "",
1099 dma_has_cap(DMA_XOR, dma->cap_mask) ? " xor" : "",
1100 dma_has_cap(DMA_XOR_VAL, dma->cap_mask) ? " xor_val" : "",
1101 dma_has_cap(DMA_MEMSET, dma->cap_mask) ? " fill" : "",
1102 dma_has_cap(DMA_INTERRUPT, dma->cap_mask) ? " intr" : "");
1103
1104}
1105struct ioat_sysfs_entry ioat_cap_attr = __ATTR_RO(cap);
1106
1107static ssize_t version_show(struct dma_chan *c, char *page)
1108{
1109 struct dma_device *dma = c->device;
1110 struct ioatdma_device *device = to_ioatdma_device(dma);
1111
1112 return sprintf(page, "%d.%d\n",
1113 device->version >> 4, device->version & 0xf);
1114}
1115struct ioat_sysfs_entry ioat_version_attr = __ATTR_RO(version);
1116
1117static struct attribute *ioat1_attrs[] = {
1118 &ring_size_attr.attr,
1119 &ring_active_attr.attr,
1120 &ioat_cap_attr.attr,
1121 &ioat_version_attr.attr,
1122 NULL,
1123};
1124
1125static ssize_t
1126ioat_attr_show(struct kobject *kobj, struct attribute *attr, char *page)
1127{
1128 struct ioat_sysfs_entry *entry;
1129 struct ioat_chan_common *chan;
1130
1131 entry = container_of(attr, struct ioat_sysfs_entry, attr);
1132 chan = container_of(kobj, struct ioat_chan_common, kobj);
1133
1134 if (!entry->show)
1135 return -EIO;
1136 return entry->show(&chan->common, page);
1137}
1138
Emese Revfy52cf25d2010-01-19 02:58:23 +01001139const struct sysfs_ops ioat_sysfs_ops = {
Dan Williams5669e312009-09-08 17:42:56 -07001140 .show = ioat_attr_show,
1141};
1142
1143static struct kobj_type ioat1_ktype = {
1144 .sysfs_ops = &ioat_sysfs_ops,
1145 .default_attrs = ioat1_attrs,
1146};
1147
1148void ioat_kobject_add(struct ioatdma_device *device, struct kobj_type *type)
1149{
1150 struct dma_device *dma = &device->common;
1151 struct dma_chan *c;
1152
1153 list_for_each_entry(c, &dma->channels, device_node) {
1154 struct ioat_chan_common *chan = to_chan_common(c);
1155 struct kobject *parent = &c->dev->device.kobj;
1156 int err;
1157
1158 err = kobject_init_and_add(&chan->kobj, type, parent, "quickdata");
1159 if (err) {
1160 dev_warn(to_dev(chan),
1161 "sysfs init error (%d), continuing...\n", err);
1162 kobject_put(&chan->kobj);
1163 set_bit(IOAT_KOBJ_INIT_FAIL, &chan->state);
1164 }
1165 }
1166}
1167
1168void ioat_kobject_del(struct ioatdma_device *device)
1169{
1170 struct dma_device *dma = &device->common;
1171 struct dma_chan *c;
1172
1173 list_for_each_entry(c, &dma->channels, device_node) {
1174 struct ioat_chan_common *chan = to_chan_common(c);
1175
1176 if (!test_bit(IOAT_KOBJ_INIT_FAIL, &chan->state)) {
1177 kobject_del(&chan->kobj);
1178 kobject_put(&chan->kobj);
1179 }
1180 }
1181}
1182
Dan Williams345d8522009-09-08 12:01:30 -07001183int __devinit ioat1_dma_probe(struct ioatdma_device *device, int dca)
Dan Williamsf2427e22009-07-28 14:42:38 -07001184{
1185 struct pci_dev *pdev = device->pdev;
1186 struct dma_device *dma;
1187 int err;
1188
1189 device->intr_quirk = ioat1_intr_quirk;
Dan Williams5cbafa62009-08-26 13:01:44 -07001190 device->enumerate_channels = ioat1_enumerate_channels;
Dan Williams9de6fc72009-09-08 17:42:58 -07001191 device->self_test = ioat_dma_self_test;
Dan Williamsaa4d72a2010-03-03 21:21:13 -07001192 device->timer_fn = ioat1_timer_event;
1193 device->cleanup_fn = ioat1_cleanup_event;
Dan Williamsf2427e22009-07-28 14:42:38 -07001194 dma = &device->common;
1195 dma->device_prep_dma_memcpy = ioat1_dma_prep_memcpy;
1196 dma->device_issue_pending = ioat1_dma_memcpy_issue_pending;
Dan Williams5cbafa62009-08-26 13:01:44 -07001197 dma->device_alloc_chan_resources = ioat1_dma_alloc_chan_resources;
1198 dma->device_free_chan_resources = ioat1_dma_free_chan_resources;
Linus Walleij07934482010-03-26 16:50:49 -07001199 dma->device_tx_status = ioat_dma_tx_status;
Dan Williamsf2427e22009-07-28 14:42:38 -07001200
1201 err = ioat_probe(device);
1202 if (err)
1203 return err;
1204 ioat_set_tcp_copy_break(4096);
1205 err = ioat_register(device);
1206 if (err)
1207 return err;
Dan Williams5669e312009-09-08 17:42:56 -07001208 ioat_kobject_add(device, &ioat1_ktype);
1209
Dan Williamsf2427e22009-07-28 14:42:38 -07001210 if (dca)
1211 device->dca = ioat_dca_init(pdev, device->reg_base);
1212
Dan Williamsf2427e22009-07-28 14:42:38 -07001213 return err;
1214}
1215
Dan Williams345d8522009-09-08 12:01:30 -07001216void __devexit ioat_dma_remove(struct ioatdma_device *device)
Dan Aloni428ed602007-03-08 09:57:36 -08001217{
Dan Williamsbc3c7022009-07-28 14:33:42 -07001218 struct dma_device *dma = &device->common;
Chris Leech0bbd5f42006-05-23 17:35:34 -07001219
Dan Williamse6c0b692009-09-08 17:29:44 -07001220 ioat_disable_interrupts(device);
Shannon Nelson8ab89562007-10-16 01:27:39 -07001221
Dan Williams5669e312009-09-08 17:42:56 -07001222 ioat_kobject_del(device);
1223
Dan Williamsbc3c7022009-07-28 14:33:42 -07001224 dma_async_device_unregister(dma);
Shannon Nelsondfe22992007-10-18 03:07:13 -07001225
Chris Leech0bbd5f42006-05-23 17:35:34 -07001226 pci_pool_destroy(device->dma_pool);
1227 pci_pool_destroy(device->completion_pool);
Shannon Nelson8ab89562007-10-16 01:27:39 -07001228
Dan Williamsdcbc8532009-07-28 14:44:50 -07001229 INIT_LIST_HEAD(&dma->channels);
Chris Leech0bbd5f42006-05-23 17:35:34 -07001230}