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