blob: a45872f32d505f138efffca1a27ea8256874db2d [file] [log] [blame]
Shannon Nelson8ab89562007-10-16 01:27:39 -07001/*
2 * Intel I/OAT DMA Linux driver
Shannon Nelson2ed6dc32007-10-16 01:27:42 -07003 * Copyright(c) 2007 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>
Shannon Nelson8ab89562007-10-16 01:27:39 -070033#include "ioatdma.h"
34#include "ioatdma_registers.h"
35#include "ioatdma_hw.h"
36
37MODULE_VERSION("1.24");
38MODULE_LICENSE("GPL");
39MODULE_AUTHOR("Intel Corporation");
40
41static struct pci_device_id ioat_pci_tbl[] = {
42 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT) },
43 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_CNB) },
44 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_SCNB) },
45 { PCI_DEVICE(PCI_VENDOR_ID_UNISYS, PCI_DEVICE_ID_UNISYS_DMA_DIRECTOR) },
46 { 0, }
47};
48
49struct ioat_device {
50 struct pci_dev *pdev;
51 void __iomem *iobase;
52 struct ioatdma_device *dma;
Shannon Nelson2ed6dc32007-10-16 01:27:42 -070053 struct dca_provider *dca;
Shannon Nelson8ab89562007-10-16 01:27:39 -070054};
55
56static int __devinit ioat_probe(struct pci_dev *pdev,
57 const struct pci_device_id *id);
Shannon Nelson8ab89562007-10-16 01:27:39 -070058static void __devexit ioat_remove(struct pci_dev *pdev);
Shannon Nelson8ab89562007-10-16 01:27:39 -070059
Shannon Nelson2ed6dc32007-10-16 01:27:42 -070060static int ioat_dca_enabled = 1;
61module_param(ioat_dca_enabled, int, 0644);
62MODULE_PARM_DESC(ioat_dca_enabled, "control support of dca service (default: 1)");
63
Shannon Nelson8ab89562007-10-16 01:27:39 -070064static int ioat_setup_functionality(struct pci_dev *pdev, void __iomem *iobase)
65{
66 struct ioat_device *device = pci_get_drvdata(pdev);
67 u8 version;
68 int err = 0;
69
70 version = readb(iobase + IOAT_VER_OFFSET);
71 switch (version) {
72 case IOAT_VER_1_2:
73 device->dma = ioat_dma_probe(pdev, iobase);
Shannon Nelsondfe22992007-10-18 03:07:13 -070074 if (device->dma && ioat_dca_enabled)
Shannon Nelson2ed6dc32007-10-16 01:27:42 -070075 device->dca = ioat_dca_init(pdev, iobase);
Shannon Nelson8ab89562007-10-16 01:27:39 -070076 break;
77 default:
78 err = -ENODEV;
79 break;
80 }
81 return err;
82}
83
84static void ioat_shutdown_functionality(struct pci_dev *pdev)
85{
86 struct ioat_device *device = pci_get_drvdata(pdev);
87
Shannon Nelson2ed6dc32007-10-16 01:27:42 -070088 if (device->dca) {
89 unregister_dca_provider(device->dca);
90 free_dca_provider(device->dca);
91 device->dca = NULL;
92 }
93
Shannon Nelsondfe22992007-10-18 03:07:13 -070094 if (device->dma) {
95 ioat_dma_remove(device->dma);
96 device->dma = NULL;
97 }
Shannon Nelson8ab89562007-10-16 01:27:39 -070098}
99
Shannon Nelson7df7cf02007-10-18 03:07:12 -0700100static struct pci_driver ioat_pci_driver = {
Shannon Nelson8ab89562007-10-16 01:27:39 -0700101 .name = "ioatdma",
102 .id_table = ioat_pci_tbl,
103 .probe = ioat_probe,
104 .shutdown = ioat_shutdown_functionality,
Shannon Nelson8ab89562007-10-16 01:27:39 -0700105 .remove = __devexit_p(ioat_remove),
Shannon Nelson8ab89562007-10-16 01:27:39 -0700106};
107
108static int __devinit ioat_probe(struct pci_dev *pdev,
109 const struct pci_device_id *id)
110{
111 void __iomem *iobase;
112 struct ioat_device *device;
113 unsigned long mmio_start, mmio_len;
114 int err;
115
116 err = pci_enable_device(pdev);
117 if (err)
118 goto err_enable_device;
119
Shannon Nelson7df7cf02007-10-18 03:07:12 -0700120 err = pci_request_regions(pdev, ioat_pci_driver.name);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700121 if (err)
122 goto err_request_regions;
123
124 err = pci_set_dma_mask(pdev, DMA_64BIT_MASK);
125 if (err)
126 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
127 if (err)
128 goto err_set_dma_mask;
129
130 err = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
131 if (err)
132 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
133 if (err)
134 goto err_set_dma_mask;
135
136 mmio_start = pci_resource_start(pdev, 0);
137 mmio_len = pci_resource_len(pdev, 0);
138 iobase = ioremap(mmio_start, mmio_len);
139 if (!iobase) {
140 err = -ENOMEM;
141 goto err_ioremap;
142 }
143
144 device = kzalloc(sizeof(*device), GFP_KERNEL);
145 if (!device) {
146 err = -ENOMEM;
147 goto err_kzalloc;
148 }
149 device->pdev = pdev;
150 pci_set_drvdata(pdev, device);
151 device->iobase = iobase;
152
153 pci_set_master(pdev);
154
155 err = ioat_setup_functionality(pdev, iobase);
156 if (err)
157 goto err_version;
158
159 return 0;
160
161err_version:
162 kfree(device);
163err_kzalloc:
164 iounmap(iobase);
165err_ioremap:
166err_set_dma_mask:
167 pci_release_regions(pdev);
168 pci_disable_device(pdev);
169err_request_regions:
170err_enable_device:
171 return err;
172}
173
Shannon Nelson8ab89562007-10-16 01:27:39 -0700174/*
175 * It is unsafe to remove this module: if removed while a requested
176 * dma is outstanding, esp. from tcp, it is possible to hang while
Shannon Nelson7df7cf02007-10-18 03:07:12 -0700177 * waiting for something that will never finish. However, if you're
178 * feeling lucky, this usually works just fine.
Shannon Nelson8ab89562007-10-16 01:27:39 -0700179 */
180static void __devexit ioat_remove(struct pci_dev *pdev)
181{
182 struct ioat_device *device = pci_get_drvdata(pdev);
183
184 ioat_shutdown_functionality(pdev);
185
186 kfree(device);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700187}
Shannon Nelson8ab89562007-10-16 01:27:39 -0700188
189static int __init ioat_init_module(void)
190{
Shannon Nelson7df7cf02007-10-18 03:07:12 -0700191 return pci_register_driver(&ioat_pci_driver);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700192}
193module_init(ioat_init_module);
194
195static void __exit ioat_exit_module(void)
196{
Shannon Nelson7df7cf02007-10-18 03:07:12 -0700197 pci_unregister_driver(&ioat_pci_driver);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700198}
199module_exit(ioat_exit_module);