blob: 61086c6bbf42a5baa8acae3945e8e8a6d8e038c7 [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>
Dan Williams584ec222009-07-28 14:32:12 -070033#include "dma.h"
Dan Williams5cbafa62009-08-26 13:01:44 -070034#include "dma_v2.h"
Dan Williams584ec222009-07-28 14:32:12 -070035#include "registers.h"
36#include "hw.h"
Shannon Nelson8ab89562007-10-16 01:27:39 -070037
Shannon Nelson5149fd02007-10-18 03:07:13 -070038MODULE_VERSION(IOAT_DMA_VERSION);
Shannon Nelson8ab89562007-10-16 01:27:39 -070039MODULE_LICENSE("GPL");
40MODULE_AUTHOR("Intel Corporation");
41
42static struct pci_device_id ioat_pci_tbl[] = {
Shannon Nelson7bb67c12007-11-14 16:59:51 -080043 /* I/OAT v1 platforms */
Shannon Nelson8ab89562007-10-16 01:27:39 -070044 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT) },
45 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_CNB) },
46 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_SCNB) },
47 { PCI_DEVICE(PCI_VENDOR_ID_UNISYS, PCI_DEVICE_ID_UNISYS_DMA_DIRECTOR) },
Shannon Nelson7bb67c12007-11-14 16:59:51 -080048
49 /* I/OAT v2 platforms */
50 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB) },
Maciej Sosnowski7f1b3582008-07-22 17:30:57 -070051
52 /* I/OAT v3 platforms */
53 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG0) },
54 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG1) },
55 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG2) },
56 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG3) },
57 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG4) },
58 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG5) },
59 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG6) },
60 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG7) },
Shannon Nelson8ab89562007-10-16 01:27:39 -070061 { 0, }
62};
63
Dan Williamsf2427e22009-07-28 14:42:38 -070064static int __devinit ioat_pci_probe(struct pci_dev *pdev,
65 const struct pci_device_id *id);
Shannon Nelson8ab89562007-10-16 01:27:39 -070066static void __devexit ioat_remove(struct pci_dev *pdev);
Shannon Nelson8ab89562007-10-16 01:27:39 -070067
Shannon Nelson2ed6dc32007-10-16 01:27:42 -070068static int ioat_dca_enabled = 1;
69module_param(ioat_dca_enabled, int, 0644);
70MODULE_PARM_DESC(ioat_dca_enabled, "control support of dca service (default: 1)");
71
Dan Williams162b96e2009-09-08 17:53:04 -070072struct kmem_cache *ioat2_cache;
73
Dan Williamse6c0b692009-09-08 17:29:44 -070074#define DRV_NAME "ioatdma"
75
Shannon Nelson7df7cf02007-10-18 03:07:12 -070076static struct pci_driver ioat_pci_driver = {
Dan Williamse6c0b692009-09-08 17:29:44 -070077 .name = DRV_NAME,
Shannon Nelson8ab89562007-10-16 01:27:39 -070078 .id_table = ioat_pci_tbl,
Dan Williamsf2427e22009-07-28 14:42:38 -070079 .probe = ioat_pci_probe,
Shannon Nelson8ab89562007-10-16 01:27:39 -070080 .remove = __devexit_p(ioat_remove),
Shannon Nelson8ab89562007-10-16 01:27:39 -070081};
82
Dan Williamsf2427e22009-07-28 14:42:38 -070083static struct ioatdma_device *
84alloc_ioatdma(struct pci_dev *pdev, void __iomem *iobase)
85{
86 struct device *dev = &pdev->dev;
87 struct ioatdma_device *d = devm_kzalloc(dev, sizeof(*d), GFP_KERNEL);
88
89 if (!d)
90 return NULL;
91 d->pdev = pdev;
92 d->reg_base = iobase;
93 return d;
94}
95
96static int __devinit ioat_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Shannon Nelson8ab89562007-10-16 01:27:39 -070097{
Dan Williamse6c0b692009-09-08 17:29:44 -070098 void __iomem * const *iomap;
Dan Williamse6c0b692009-09-08 17:29:44 -070099 struct device *dev = &pdev->dev;
Dan Williamsf2427e22009-07-28 14:42:38 -0700100 struct ioatdma_device *device;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700101 int err;
102
Dan Williamse6c0b692009-09-08 17:29:44 -0700103 err = pcim_enable_device(pdev);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700104 if (err)
Dan Williamse6c0b692009-09-08 17:29:44 -0700105 return err;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700106
Dan Williamse6c0b692009-09-08 17:29:44 -0700107 err = pcim_iomap_regions(pdev, 1 << IOAT_MMIO_BAR, DRV_NAME);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700108 if (err)
Dan Williamse6c0b692009-09-08 17:29:44 -0700109 return err;
110 iomap = pcim_iomap_table(pdev);
111 if (!iomap)
112 return -ENOMEM;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700113
Yang Hongyang6a355282009-04-06 19:01:13 -0700114 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
Shannon Nelson8ab89562007-10-16 01:27:39 -0700115 if (err)
Yang Hongyang284901a2009-04-06 19:01:15 -0700116 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Shannon Nelson8ab89562007-10-16 01:27:39 -0700117 if (err)
Dan Williamse6c0b692009-09-08 17:29:44 -0700118 return err;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700119
Yang Hongyang6a355282009-04-06 19:01:13 -0700120 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
Shannon Nelson8ab89562007-10-16 01:27:39 -0700121 if (err)
Yang Hongyang284901a2009-04-06 19:01:15 -0700122 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Shannon Nelson8ab89562007-10-16 01:27:39 -0700123 if (err)
Dan Williamse6c0b692009-09-08 17:29:44 -0700124 return err;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700125
Dan Williamse6c0b692009-09-08 17:29:44 -0700126 device = devm_kzalloc(dev, sizeof(*device), GFP_KERNEL);
127 if (!device)
128 return -ENOMEM;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700129
Shannon Nelson8ab89562007-10-16 01:27:39 -0700130 pci_set_master(pdev);
131
Dan Williamsf2427e22009-07-28 14:42:38 -0700132 device = alloc_ioatdma(pdev, iomap[IOAT_MMIO_BAR]);
133 if (!device)
134 return -ENOMEM;
135 pci_set_drvdata(pdev, device);
Dan Williams4fac7fa2009-01-06 11:38:20 -0700136
Dan Williamsf2427e22009-07-28 14:42:38 -0700137 device->version = readb(device->reg_base + IOAT_VER_OFFSET);
138 if (device->version == IOAT_VER_1_2)
139 err = ioat1_dma_probe(device, ioat_dca_enabled);
140 else if (device->version == IOAT_VER_2_0)
141 err = ioat2_dma_probe(device, ioat_dca_enabled);
142 else if (device->version >= IOAT_VER_3_0)
143 err = ioat3_dma_probe(device, ioat_dca_enabled);
144 else
145 return -ENODEV;
146
147 if (err) {
Dan Williamse6c0b692009-09-08 17:29:44 -0700148 dev_err(dev, "Intel(R) I/OAT DMA Engine init failed\n");
149 return -ENODEV;
150 }
Shannon Nelson8ab89562007-10-16 01:27:39 -0700151
152 return 0;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700153}
154
Shannon Nelson8ab89562007-10-16 01:27:39 -0700155static void __devexit ioat_remove(struct pci_dev *pdev)
156{
Dan Williamsf2427e22009-07-28 14:42:38 -0700157 struct ioatdma_device *device = pci_get_drvdata(pdev);
158
159 if (!device)
160 return;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700161
Dan Williams4fac7fa2009-01-06 11:38:20 -0700162 dev_err(&pdev->dev, "Removing dma and dca services\n");
163 if (device->dca) {
164 unregister_dca_provider(device->dca);
165 free_dca_provider(device->dca);
166 device->dca = NULL;
167 }
Dan Williamsf2427e22009-07-28 14:42:38 -0700168 ioat_dma_remove(device);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700169}
Shannon Nelson8ab89562007-10-16 01:27:39 -0700170
171static int __init ioat_init_module(void)
172{
Dan Williams162b96e2009-09-08 17:53:04 -0700173 int err;
174
175 ioat2_cache = kmem_cache_create("ioat2", sizeof(struct ioat_ring_ent),
176 0, SLAB_HWCACHE_ALIGN, NULL);
177 if (!ioat2_cache)
178 return -ENOMEM;
179
180 err = pci_register_driver(&ioat_pci_driver);
181 if (err)
182 kmem_cache_destroy(ioat2_cache);
183
184 return err;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700185}
186module_init(ioat_init_module);
187
188static void __exit ioat_exit_module(void)
189{
Shannon Nelson7df7cf02007-10-18 03:07:12 -0700190 pci_unregister_driver(&ioat_pci_driver);
Dan Williams162b96e2009-09-08 17:53:04 -0700191 kmem_cache_destroy(ioat2_cache);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700192}
193module_exit(ioat_exit_module);