blob: 55414d88ac1b90084b976be99b1a64a66933d6fb [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"
34#include "registers.h"
35#include "hw.h"
Shannon Nelson8ab89562007-10-16 01:27:39 -070036
Shannon Nelson5149fd02007-10-18 03:07:13 -070037MODULE_VERSION(IOAT_DMA_VERSION);
Shannon Nelson8ab89562007-10-16 01:27:39 -070038MODULE_LICENSE("GPL");
39MODULE_AUTHOR("Intel Corporation");
40
41static struct pci_device_id ioat_pci_tbl[] = {
Shannon Nelson7bb67c12007-11-14 16:59:51 -080042 /* I/OAT v1 platforms */
Shannon Nelson8ab89562007-10-16 01:27:39 -070043 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT) },
44 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_CNB) },
45 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_SCNB) },
46 { PCI_DEVICE(PCI_VENDOR_ID_UNISYS, PCI_DEVICE_ID_UNISYS_DMA_DIRECTOR) },
Shannon Nelson7bb67c12007-11-14 16:59:51 -080047
48 /* I/OAT v2 platforms */
49 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB) },
Maciej Sosnowski7f1b3582008-07-22 17:30:57 -070050
51 /* I/OAT v3 platforms */
52 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG0) },
53 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG1) },
54 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG2) },
55 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG3) },
56 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG4) },
57 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG5) },
58 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG6) },
59 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG7) },
Shannon Nelson8ab89562007-10-16 01:27:39 -070060 { 0, }
61};
62
Dan Williamsf2427e22009-07-28 14:42:38 -070063static int __devinit ioat_pci_probe(struct pci_dev *pdev,
64 const struct pci_device_id *id);
Shannon Nelson8ab89562007-10-16 01:27:39 -070065static void __devexit ioat_remove(struct pci_dev *pdev);
Shannon Nelson8ab89562007-10-16 01:27:39 -070066
Shannon Nelson2ed6dc32007-10-16 01:27:42 -070067static int ioat_dca_enabled = 1;
68module_param(ioat_dca_enabled, int, 0644);
69MODULE_PARM_DESC(ioat_dca_enabled, "control support of dca service (default: 1)");
70
Dan Williamse6c0b692009-09-08 17:29:44 -070071#define DRV_NAME "ioatdma"
72
Shannon Nelson7df7cf02007-10-18 03:07:12 -070073static struct pci_driver ioat_pci_driver = {
Dan Williamse6c0b692009-09-08 17:29:44 -070074 .name = DRV_NAME,
Shannon Nelson8ab89562007-10-16 01:27:39 -070075 .id_table = ioat_pci_tbl,
Dan Williamsf2427e22009-07-28 14:42:38 -070076 .probe = ioat_pci_probe,
Shannon Nelson8ab89562007-10-16 01:27:39 -070077 .remove = __devexit_p(ioat_remove),
Shannon Nelson8ab89562007-10-16 01:27:39 -070078};
79
Dan Williamsf2427e22009-07-28 14:42:38 -070080static struct ioatdma_device *
81alloc_ioatdma(struct pci_dev *pdev, void __iomem *iobase)
82{
83 struct device *dev = &pdev->dev;
84 struct ioatdma_device *d = devm_kzalloc(dev, sizeof(*d), GFP_KERNEL);
85
86 if (!d)
87 return NULL;
88 d->pdev = pdev;
89 d->reg_base = iobase;
90 return d;
91}
92
93static int __devinit ioat_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Shannon Nelson8ab89562007-10-16 01:27:39 -070094{
Dan Williamse6c0b692009-09-08 17:29:44 -070095 void __iomem * const *iomap;
Dan Williamse6c0b692009-09-08 17:29:44 -070096 struct device *dev = &pdev->dev;
Dan Williamsf2427e22009-07-28 14:42:38 -070097 struct ioatdma_device *device;
Shannon Nelson8ab89562007-10-16 01:27:39 -070098 int err;
99
Dan Williamse6c0b692009-09-08 17:29:44 -0700100 err = pcim_enable_device(pdev);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700101 if (err)
Dan Williamse6c0b692009-09-08 17:29:44 -0700102 return err;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700103
Dan Williamse6c0b692009-09-08 17:29:44 -0700104 err = pcim_iomap_regions(pdev, 1 << IOAT_MMIO_BAR, DRV_NAME);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700105 if (err)
Dan Williamse6c0b692009-09-08 17:29:44 -0700106 return err;
107 iomap = pcim_iomap_table(pdev);
108 if (!iomap)
109 return -ENOMEM;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700110
Yang Hongyang6a355282009-04-06 19:01:13 -0700111 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
Shannon Nelson8ab89562007-10-16 01:27:39 -0700112 if (err)
Yang Hongyang284901a2009-04-06 19:01:15 -0700113 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Shannon Nelson8ab89562007-10-16 01:27:39 -0700114 if (err)
Dan Williamse6c0b692009-09-08 17:29:44 -0700115 return err;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700116
Yang Hongyang6a355282009-04-06 19:01:13 -0700117 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
Shannon Nelson8ab89562007-10-16 01:27:39 -0700118 if (err)
Yang Hongyang284901a2009-04-06 19:01:15 -0700119 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Shannon Nelson8ab89562007-10-16 01:27:39 -0700120 if (err)
Dan Williamse6c0b692009-09-08 17:29:44 -0700121 return err;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700122
Dan Williamse6c0b692009-09-08 17:29:44 -0700123 device = devm_kzalloc(dev, sizeof(*device), GFP_KERNEL);
124 if (!device)
125 return -ENOMEM;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700126
Shannon Nelson8ab89562007-10-16 01:27:39 -0700127 pci_set_master(pdev);
128
Dan Williamsf2427e22009-07-28 14:42:38 -0700129 device = alloc_ioatdma(pdev, iomap[IOAT_MMIO_BAR]);
130 if (!device)
131 return -ENOMEM;
132 pci_set_drvdata(pdev, device);
Dan Williams4fac7fa2009-01-06 11:38:20 -0700133
Dan Williamsf2427e22009-07-28 14:42:38 -0700134 device->version = readb(device->reg_base + IOAT_VER_OFFSET);
135 if (device->version == IOAT_VER_1_2)
136 err = ioat1_dma_probe(device, ioat_dca_enabled);
137 else if (device->version == IOAT_VER_2_0)
138 err = ioat2_dma_probe(device, ioat_dca_enabled);
139 else if (device->version >= IOAT_VER_3_0)
140 err = ioat3_dma_probe(device, ioat_dca_enabled);
141 else
142 return -ENODEV;
143
144 if (err) {
Dan Williamse6c0b692009-09-08 17:29:44 -0700145 dev_err(dev, "Intel(R) I/OAT DMA Engine init failed\n");
146 return -ENODEV;
147 }
Shannon Nelson8ab89562007-10-16 01:27:39 -0700148
149 return 0;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700150}
151
Shannon Nelson8ab89562007-10-16 01:27:39 -0700152static void __devexit ioat_remove(struct pci_dev *pdev)
153{
Dan Williamsf2427e22009-07-28 14:42:38 -0700154 struct ioatdma_device *device = pci_get_drvdata(pdev);
155
156 if (!device)
157 return;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700158
Dan Williams4fac7fa2009-01-06 11:38:20 -0700159 dev_err(&pdev->dev, "Removing dma and dca services\n");
160 if (device->dca) {
161 unregister_dca_provider(device->dca);
162 free_dca_provider(device->dca);
163 device->dca = NULL;
164 }
Dan Williamsf2427e22009-07-28 14:42:38 -0700165 ioat_dma_remove(device);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700166}
Shannon Nelson8ab89562007-10-16 01:27:39 -0700167
168static int __init ioat_init_module(void)
169{
Shannon Nelson7df7cf02007-10-18 03:07:12 -0700170 return pci_register_driver(&ioat_pci_driver);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700171}
172module_init(ioat_init_module);
173
174static void __exit ioat_exit_module(void)
175{
Shannon Nelson7df7cf02007-10-18 03:07:12 -0700176 pci_unregister_driver(&ioat_pci_driver);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700177}
178module_exit(ioat_exit_module);