blob: f7276bf2fe7eaa05051efc507e47387c9c8eda02 [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);
58#ifdef IOAT_DMA_REMOVE
59static void __devexit ioat_remove(struct pci_dev *pdev);
60#endif
61
Shannon Nelson2ed6dc32007-10-16 01:27:42 -070062static int ioat_dca_enabled = 1;
63module_param(ioat_dca_enabled, int, 0644);
64MODULE_PARM_DESC(ioat_dca_enabled, "control support of dca service (default: 1)");
65
Shannon Nelson8ab89562007-10-16 01:27:39 -070066static int ioat_setup_functionality(struct pci_dev *pdev, void __iomem *iobase)
67{
68 struct ioat_device *device = pci_get_drvdata(pdev);
69 u8 version;
70 int err = 0;
71
72 version = readb(iobase + IOAT_VER_OFFSET);
73 switch (version) {
74 case IOAT_VER_1_2:
75 device->dma = ioat_dma_probe(pdev, iobase);
Shannon Nelson2ed6dc32007-10-16 01:27:42 -070076 if (ioat_dca_enabled)
77 device->dca = ioat_dca_init(pdev, iobase);
Shannon Nelson8ab89562007-10-16 01:27:39 -070078 break;
79 default:
80 err = -ENODEV;
81 break;
82 }
83 return err;
84}
85
86static void ioat_shutdown_functionality(struct pci_dev *pdev)
87{
88 struct ioat_device *device = pci_get_drvdata(pdev);
89
90 if (device->dma) {
91 ioat_dma_remove(device->dma);
92 device->dma = NULL;
93 }
Shannon Nelson2ed6dc32007-10-16 01:27:42 -070094
95 if (device->dca) {
96 unregister_dca_provider(device->dca);
97 free_dca_provider(device->dca);
98 device->dca = NULL;
99 }
100
Shannon Nelson8ab89562007-10-16 01:27:39 -0700101}
102
103static struct pci_driver ioat_pci_drv = {
104 .name = "ioatdma",
105 .id_table = ioat_pci_tbl,
106 .probe = ioat_probe,
107 .shutdown = ioat_shutdown_functionality,
108#ifdef IOAT_DMA_REMOVE
109 .remove = __devexit_p(ioat_remove),
110#endif
111};
112
113static int __devinit ioat_probe(struct pci_dev *pdev,
114 const struct pci_device_id *id)
115{
116 void __iomem *iobase;
117 struct ioat_device *device;
118 unsigned long mmio_start, mmio_len;
119 int err;
120
121 err = pci_enable_device(pdev);
122 if (err)
123 goto err_enable_device;
124
125 err = pci_request_regions(pdev, ioat_pci_drv.name);
126 if (err)
127 goto err_request_regions;
128
129 err = pci_set_dma_mask(pdev, DMA_64BIT_MASK);
130 if (err)
131 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
132 if (err)
133 goto err_set_dma_mask;
134
135 err = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
136 if (err)
137 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
138 if (err)
139 goto err_set_dma_mask;
140
141 mmio_start = pci_resource_start(pdev, 0);
142 mmio_len = pci_resource_len(pdev, 0);
143 iobase = ioremap(mmio_start, mmio_len);
144 if (!iobase) {
145 err = -ENOMEM;
146 goto err_ioremap;
147 }
148
149 device = kzalloc(sizeof(*device), GFP_KERNEL);
150 if (!device) {
151 err = -ENOMEM;
152 goto err_kzalloc;
153 }
154 device->pdev = pdev;
155 pci_set_drvdata(pdev, device);
156 device->iobase = iobase;
157
158 pci_set_master(pdev);
159
160 err = ioat_setup_functionality(pdev, iobase);
161 if (err)
162 goto err_version;
163
164 return 0;
165
166err_version:
167 kfree(device);
168err_kzalloc:
169 iounmap(iobase);
170err_ioremap:
171err_set_dma_mask:
172 pci_release_regions(pdev);
173 pci_disable_device(pdev);
174err_request_regions:
175err_enable_device:
176 return err;
177}
178
179#ifdef IOAT_DMA_REMOVE
180/*
181 * It is unsafe to remove this module: if removed while a requested
182 * dma is outstanding, esp. from tcp, it is possible to hang while
183 * waiting for something that will never finish, thus hanging at
184 * least one cpu. However, if you're feeling lucky and need to do
185 * some testing, this usually works just fine.
186 */
187static void __devexit ioat_remove(struct pci_dev *pdev)
188{
189 struct ioat_device *device = pci_get_drvdata(pdev);
190
191 ioat_shutdown_functionality(pdev);
192
193 kfree(device);
194
195 iounmap(device->iobase);
196 pci_release_regions(pdev);
197 pci_disable_device(pdev);
198}
199#endif
200
201static int __init ioat_init_module(void)
202{
203 return pci_register_driver(&ioat_pci_drv);
204}
205module_init(ioat_init_module);
206
207static void __exit ioat_exit_module(void)
208{
209 pci_unregister_driver(&ioat_pci_drv);
210}
211module_exit(ioat_exit_module);