blob: c0573061b45dfc5f45c40255d4a6d9c99a1fe882 [file] [log] [blame]
Shannon Nelson8ab89562007-10-16 01:27:39 -07001/*
2 * Intel I/OAT DMA Linux driver
Maciej Sosnowski211a22c2009-02-26 11:05:43 +01003 * Copyright(c) 2007 - 2009 Intel Corporation.
Shannon Nelson8ab89562007-10-16 01:27:39 -07004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
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
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
17 *
18 * The full GNU General Public License is included in this distribution in
19 * the file called "COPYING".
20 *
21 */
22
23/*
24 * This driver supports an Intel I/OAT DMA engine, which does asynchronous
25 * copy operations.
26 */
27
28#include <linux/init.h>
29#include <linux/module.h>
30#include <linux/pci.h>
31#include <linux/interrupt.h>
Shannon Nelson2ed6dc32007-10-16 01:27:42 -070032#include <linux/dca.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Dan Williams584ec222009-07-28 14:32:12 -070034#include "dma.h"
Dan Williams5cbafa62009-08-26 13:01:44 -070035#include "dma_v2.h"
Dan Williams584ec222009-07-28 14:32:12 -070036#include "registers.h"
37#include "hw.h"
Shannon Nelson8ab89562007-10-16 01:27:39 -070038
Shannon Nelson5149fd02007-10-18 03:07:13 -070039MODULE_VERSION(IOAT_DMA_VERSION);
Dan Williamsbf40a682009-09-08 17:42:55 -070040MODULE_LICENSE("Dual BSD/GPL");
Shannon Nelson8ab89562007-10-16 01:27:39 -070041MODULE_AUTHOR("Intel Corporation");
42
Dave Jiang8eb4da22012-08-24 16:36:20 -070043#define PCI_DEVICE_ID_INTEL_IOAT_IVB0 0x0e20
44#define PCI_DEVICE_ID_INTEL_IOAT_IVB1 0x0e21
45#define PCI_DEVICE_ID_INTEL_IOAT_IVB2 0x0e22
46#define PCI_DEVICE_ID_INTEL_IOAT_IVB3 0x0e23
47#define PCI_DEVICE_ID_INTEL_IOAT_IVB4 0x0e24
48#define PCI_DEVICE_ID_INTEL_IOAT_IVB5 0x0e25
49#define PCI_DEVICE_ID_INTEL_IOAT_IVB6 0x0e26
50#define PCI_DEVICE_ID_INTEL_IOAT_IVB7 0x0e27
51#define PCI_DEVICE_ID_INTEL_IOAT_IVB8 0x0e2e
52#define PCI_DEVICE_ID_INTEL_IOAT_IVB9 0x0e2f
53
Shannon Nelson8ab89562007-10-16 01:27:39 -070054static struct pci_device_id ioat_pci_tbl[] = {
Shannon Nelson7bb67c12007-11-14 16:59:51 -080055 /* I/OAT v1 platforms */
Roland Dreiera6417dd2009-09-08 17:43:03 -070056 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT) },
57 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_CNB) },
58 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SCNB) },
59 { PCI_VDEVICE(UNISYS, PCI_DEVICE_ID_UNISYS_DMA_DIRECTOR) },
Shannon Nelson7bb67c12007-11-14 16:59:51 -080060
61 /* I/OAT v2 platforms */
Roland Dreiera6417dd2009-09-08 17:43:03 -070062 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB) },
Maciej Sosnowski7f1b3582008-07-22 17:30:57 -070063
64 /* I/OAT v3 platforms */
Roland Dreiera6417dd2009-09-08 17:43:03 -070065 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG0) },
66 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG1) },
67 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG2) },
68 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG3) },
69 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG4) },
70 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG5) },
71 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG6) },
72 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG7) },
Tom Picardb265b112009-09-08 17:43:01 -070073
74 /* I/OAT v3.2 platforms */
Roland Dreiera6417dd2009-09-08 17:43:03 -070075 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_JSF0) },
76 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_JSF1) },
77 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_JSF2) },
78 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_JSF3) },
79 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_JSF4) },
80 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_JSF5) },
81 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_JSF6) },
82 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_JSF7) },
83 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_JSF8) },
84 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_JSF9) },
Tom Picardb265b112009-09-08 17:43:01 -070085
Dave Jiang3baef942011-07-22 14:04:56 -070086 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB0) },
87 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB1) },
88 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB2) },
89 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB3) },
90 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB4) },
91 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB5) },
92 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB6) },
93 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB7) },
94 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB8) },
95 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB9) },
96
Dave Jiang8eb4da22012-08-24 16:36:20 -070097 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB0) },
98 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB1) },
99 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB2) },
100 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB3) },
101 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB4) },
102 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB5) },
103 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB6) },
104 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB7) },
105 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB8) },
106 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_IVB9) },
107
Shannon Nelson8ab89562007-10-16 01:27:39 -0700108 { 0, }
109};
Roland Dreier6506cbc2009-09-08 17:43:03 -0700110MODULE_DEVICE_TABLE(pci, ioat_pci_tbl);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700111
Dan Williamsf2427e22009-07-28 14:42:38 -0700112static int __devinit ioat_pci_probe(struct pci_dev *pdev,
113 const struct pci_device_id *id);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700114static void __devexit ioat_remove(struct pci_dev *pdev);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700115
Shannon Nelson2ed6dc32007-10-16 01:27:42 -0700116static int ioat_dca_enabled = 1;
117module_param(ioat_dca_enabled, int, 0644);
118MODULE_PARM_DESC(ioat_dca_enabled, "control support of dca service (default: 1)");
119
Dan Williams162b96e2009-09-08 17:53:04 -0700120struct kmem_cache *ioat2_cache;
121
Dan Williamse6c0b692009-09-08 17:29:44 -0700122#define DRV_NAME "ioatdma"
123
Shannon Nelson7df7cf02007-10-18 03:07:12 -0700124static struct pci_driver ioat_pci_driver = {
Dan Williamse6c0b692009-09-08 17:29:44 -0700125 .name = DRV_NAME,
Shannon Nelson8ab89562007-10-16 01:27:39 -0700126 .id_table = ioat_pci_tbl,
Dan Williamsf2427e22009-07-28 14:42:38 -0700127 .probe = ioat_pci_probe,
Shannon Nelson8ab89562007-10-16 01:27:39 -0700128 .remove = __devexit_p(ioat_remove),
Shannon Nelson8ab89562007-10-16 01:27:39 -0700129};
130
Dan Williamsf2427e22009-07-28 14:42:38 -0700131static struct ioatdma_device *
132alloc_ioatdma(struct pci_dev *pdev, void __iomem *iobase)
133{
134 struct device *dev = &pdev->dev;
135 struct ioatdma_device *d = devm_kzalloc(dev, sizeof(*d), GFP_KERNEL);
136
137 if (!d)
138 return NULL;
139 d->pdev = pdev;
140 d->reg_base = iobase;
141 return d;
142}
143
144static int __devinit ioat_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Shannon Nelson8ab89562007-10-16 01:27:39 -0700145{
Dan Williamse6c0b692009-09-08 17:29:44 -0700146 void __iomem * const *iomap;
Dan Williamse6c0b692009-09-08 17:29:44 -0700147 struct device *dev = &pdev->dev;
Dan Williamsf2427e22009-07-28 14:42:38 -0700148 struct ioatdma_device *device;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700149 int err;
150
Dan Williamse6c0b692009-09-08 17:29:44 -0700151 err = pcim_enable_device(pdev);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700152 if (err)
Dan Williamse6c0b692009-09-08 17:29:44 -0700153 return err;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700154
Dan Williamse6c0b692009-09-08 17:29:44 -0700155 err = pcim_iomap_regions(pdev, 1 << IOAT_MMIO_BAR, DRV_NAME);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700156 if (err)
Dan Williamse6c0b692009-09-08 17:29:44 -0700157 return err;
158 iomap = pcim_iomap_table(pdev);
159 if (!iomap)
160 return -ENOMEM;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700161
Yang Hongyang6a355282009-04-06 19:01:13 -0700162 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
Shannon Nelson8ab89562007-10-16 01:27:39 -0700163 if (err)
Yang Hongyang284901a2009-04-06 19:01:15 -0700164 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Shannon Nelson8ab89562007-10-16 01:27:39 -0700165 if (err)
Dan Williamse6c0b692009-09-08 17:29:44 -0700166 return err;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700167
Yang Hongyang6a355282009-04-06 19:01:13 -0700168 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
Shannon Nelson8ab89562007-10-16 01:27:39 -0700169 if (err)
Yang Hongyang284901a2009-04-06 19:01:15 -0700170 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Shannon Nelson8ab89562007-10-16 01:27:39 -0700171 if (err)
Dan Williamse6c0b692009-09-08 17:29:44 -0700172 return err;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700173
Dan Williamsf2427e22009-07-28 14:42:38 -0700174 device = alloc_ioatdma(pdev, iomap[IOAT_MMIO_BAR]);
175 if (!device)
176 return -ENOMEM;
Minskey Guoc86e1402010-05-02 12:52:35 -0700177 pci_set_master(pdev);
Dan Williamsf2427e22009-07-28 14:42:38 -0700178 pci_set_drvdata(pdev, device);
Dan Williams4fac7fa2009-01-06 11:38:20 -0700179
Dan Williamsf2427e22009-07-28 14:42:38 -0700180 device->version = readb(device->reg_base + IOAT_VER_OFFSET);
181 if (device->version == IOAT_VER_1_2)
182 err = ioat1_dma_probe(device, ioat_dca_enabled);
183 else if (device->version == IOAT_VER_2_0)
184 err = ioat2_dma_probe(device, ioat_dca_enabled);
185 else if (device->version >= IOAT_VER_3_0)
186 err = ioat3_dma_probe(device, ioat_dca_enabled);
187 else
188 return -ENODEV;
189
190 if (err) {
Dan Williamse6c0b692009-09-08 17:29:44 -0700191 dev_err(dev, "Intel(R) I/OAT DMA Engine init failed\n");
192 return -ENODEV;
193 }
Shannon Nelson8ab89562007-10-16 01:27:39 -0700194
195 return 0;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700196}
197
Shannon Nelson8ab89562007-10-16 01:27:39 -0700198static void __devexit ioat_remove(struct pci_dev *pdev)
199{
Dan Williamsf2427e22009-07-28 14:42:38 -0700200 struct ioatdma_device *device = pci_get_drvdata(pdev);
201
202 if (!device)
203 return;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700204
Dan Williams4fac7fa2009-01-06 11:38:20 -0700205 dev_err(&pdev->dev, "Removing dma and dca services\n");
206 if (device->dca) {
Maciej Sosnowski1a5aeee2009-09-10 15:05:58 +0200207 unregister_dca_provider(device->dca, &pdev->dev);
Dan Williams4fac7fa2009-01-06 11:38:20 -0700208 free_dca_provider(device->dca);
209 device->dca = NULL;
210 }
Dan Williamsf2427e22009-07-28 14:42:38 -0700211 ioat_dma_remove(device);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700212}
Shannon Nelson8ab89562007-10-16 01:27:39 -0700213
214static int __init ioat_init_module(void)
215{
Dan Williams162b96e2009-09-08 17:53:04 -0700216 int err;
217
Dan Williams5669e312009-09-08 17:42:56 -0700218 pr_info("%s: Intel(R) QuickData Technology Driver %s\n",
219 DRV_NAME, IOAT_DMA_VERSION);
220
Dan Williams162b96e2009-09-08 17:53:04 -0700221 ioat2_cache = kmem_cache_create("ioat2", sizeof(struct ioat_ring_ent),
222 0, SLAB_HWCACHE_ALIGN, NULL);
223 if (!ioat2_cache)
224 return -ENOMEM;
225
226 err = pci_register_driver(&ioat_pci_driver);
227 if (err)
228 kmem_cache_destroy(ioat2_cache);
229
230 return err;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700231}
232module_init(ioat_init_module);
233
234static void __exit ioat_exit_module(void)
235{
Shannon Nelson7df7cf02007-10-18 03:07:12 -0700236 pci_unregister_driver(&ioat_pci_driver);
Dan Williams162b96e2009-09-08 17:53:04 -0700237 kmem_cache_destroy(ioat2_cache);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700238}
239module_exit(ioat_exit_module);