I/OAT: clean up of dca provider start and stop
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / dma / ioat.c
1 /*
2 * Intel I/OAT DMA Linux driver
3 * Copyright(c) 2007 Intel Corporation.
4 *
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>
32 #include <linux/dca.h>
33 #include "ioatdma.h"
34 #include "ioatdma_registers.h"
35 #include "ioatdma_hw.h"
36
37 MODULE_VERSION("1.24");
38 MODULE_LICENSE("GPL");
39 MODULE_AUTHOR("Intel Corporation");
40
41 static 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
49 struct ioat_device {
50 struct pci_dev *pdev;
51 void __iomem *iobase;
52 struct ioatdma_device *dma;
53 struct dca_provider *dca;
54 };
55
56 static int __devinit ioat_probe(struct pci_dev *pdev,
57 const struct pci_device_id *id);
58 static void __devexit ioat_remove(struct pci_dev *pdev);
59
60 static int ioat_dca_enabled = 1;
61 module_param(ioat_dca_enabled, int, 0644);
62 MODULE_PARM_DESC(ioat_dca_enabled, "control support of dca service (default: 1)");
63
64 static 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);
74 if (device->dma && ioat_dca_enabled)
75 device->dca = ioat_dca_init(pdev, iobase);
76 break;
77 default:
78 err = -ENODEV;
79 break;
80 }
81 return err;
82 }
83
84 static void ioat_shutdown_functionality(struct pci_dev *pdev)
85 {
86 struct ioat_device *device = pci_get_drvdata(pdev);
87
88 if (device->dca) {
89 unregister_dca_provider(device->dca);
90 free_dca_provider(device->dca);
91 device->dca = NULL;
92 }
93
94 if (device->dma) {
95 ioat_dma_remove(device->dma);
96 device->dma = NULL;
97 }
98 }
99
100 static struct pci_driver ioat_pci_driver = {
101 .name = "ioatdma",
102 .id_table = ioat_pci_tbl,
103 .probe = ioat_probe,
104 .shutdown = ioat_shutdown_functionality,
105 .remove = __devexit_p(ioat_remove),
106 };
107
108 static 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
120 err = pci_request_regions(pdev, ioat_pci_driver.name);
121 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
161 err_version:
162 kfree(device);
163 err_kzalloc:
164 iounmap(iobase);
165 err_ioremap:
166 err_set_dma_mask:
167 pci_release_regions(pdev);
168 pci_disable_device(pdev);
169 err_request_regions:
170 err_enable_device:
171 return err;
172 }
173
174 /*
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
177 * waiting for something that will never finish. However, if you're
178 * feeling lucky, this usually works just fine.
179 */
180 static 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);
187 }
188
189 static int __init ioat_init_module(void)
190 {
191 return pci_register_driver(&ioat_pci_driver);
192 }
193 module_init(ioat_init_module);
194
195 static void __exit ioat_exit_module(void)
196 {
197 pci_unregister_driver(&ioat_pci_driver);
198 }
199 module_exit(ioat_exit_module);