I/OAT: Convert to PCI_VDEVICE()
[linux-2.6-block.git] / drivers / dma / ioat / pci.c
CommitLineData
8ab89567
SN
1/*
2 * Intel I/OAT DMA Linux driver
211a22ce 3 * Copyright(c) 2007 - 2009 Intel Corporation.
8ab89567
SN
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>
2ed6dc34 32#include <linux/dca.h>
584ec227 33#include "dma.h"
5cbafa65 34#include "dma_v2.h"
584ec227
DW
35#include "registers.h"
36#include "hw.h"
8ab89567 37
5149fd01 38MODULE_VERSION(IOAT_DMA_VERSION);
bf40a686 39MODULE_LICENSE("Dual BSD/GPL");
8ab89567
SN
40MODULE_AUTHOR("Intel Corporation");
41
42static struct pci_device_id ioat_pci_tbl[] = {
7bb67c14 43 /* I/OAT v1 platforms */
a6417dd5
RD
44 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT) },
45 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_CNB) },
46 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SCNB) },
47 { PCI_VDEVICE(UNISYS, PCI_DEVICE_ID_UNISYS_DMA_DIRECTOR) },
7bb67c14
SN
48
49 /* I/OAT v2 platforms */
a6417dd5 50 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB) },
7f1b358a
MS
51
52 /* I/OAT v3 platforms */
a6417dd5
RD
53 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG0) },
54 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG1) },
55 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG2) },
56 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG3) },
57 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG4) },
58 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG5) },
59 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG6) },
60 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG7) },
b265b11f
TP
61
62 /* I/OAT v3.2 platforms */
a6417dd5
RD
63 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_JSF0) },
64 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_JSF1) },
65 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_JSF2) },
66 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_JSF3) },
67 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_JSF4) },
68 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_JSF5) },
69 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_JSF6) },
70 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_JSF7) },
71 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_JSF8) },
72 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_JSF9) },
b265b11f 73
8ab89567
SN
74 { 0, }
75};
6506cbca 76MODULE_DEVICE_TABLE(pci, ioat_pci_tbl);
8ab89567 77
f2427e27
DW
78static int __devinit ioat_pci_probe(struct pci_dev *pdev,
79 const struct pci_device_id *id);
8ab89567 80static void __devexit ioat_remove(struct pci_dev *pdev);
8ab89567 81
2ed6dc34
SN
82static int ioat_dca_enabled = 1;
83module_param(ioat_dca_enabled, int, 0644);
84MODULE_PARM_DESC(ioat_dca_enabled, "control support of dca service (default: 1)");
85
e6c0b69a
DW
86#define DRV_NAME "ioatdma"
87
7df7cf06 88static struct pci_driver ioat_pci_driver = {
e6c0b69a 89 .name = DRV_NAME,
8ab89567 90 .id_table = ioat_pci_tbl,
f2427e27 91 .probe = ioat_pci_probe,
8ab89567 92 .remove = __devexit_p(ioat_remove),
8ab89567
SN
93};
94
f2427e27
DW
95static struct ioatdma_device *
96alloc_ioatdma(struct pci_dev *pdev, void __iomem *iobase)
97{
98 struct device *dev = &pdev->dev;
99 struct ioatdma_device *d = devm_kzalloc(dev, sizeof(*d), GFP_KERNEL);
100
101 if (!d)
102 return NULL;
103 d->pdev = pdev;
104 d->reg_base = iobase;
105 return d;
106}
107
108static int __devinit ioat_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
8ab89567 109{
e6c0b69a 110 void __iomem * const *iomap;
e6c0b69a 111 struct device *dev = &pdev->dev;
f2427e27 112 struct ioatdma_device *device;
8ab89567
SN
113 int err;
114
e6c0b69a 115 err = pcim_enable_device(pdev);
8ab89567 116 if (err)
e6c0b69a 117 return err;
8ab89567 118
e6c0b69a 119 err = pcim_iomap_regions(pdev, 1 << IOAT_MMIO_BAR, DRV_NAME);
8ab89567 120 if (err)
e6c0b69a
DW
121 return err;
122 iomap = pcim_iomap_table(pdev);
123 if (!iomap)
124 return -ENOMEM;
8ab89567 125
6a35528a 126 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
8ab89567 127 if (err)
284901a9 128 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
8ab89567 129 if (err)
e6c0b69a 130 return err;
8ab89567 131
6a35528a 132 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
8ab89567 133 if (err)
284901a9 134 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
8ab89567 135 if (err)
e6c0b69a
DW
136 return err;
137
138 device = devm_kzalloc(dev, sizeof(*device), GFP_KERNEL);
139 if (!device)
140 return -ENOMEM;
8ab89567 141
8ab89567
SN
142 pci_set_master(pdev);
143
f2427e27
DW
144 device = alloc_ioatdma(pdev, iomap[IOAT_MMIO_BAR]);
145 if (!device)
146 return -ENOMEM;
147 pci_set_drvdata(pdev, device);
148
149 device->version = readb(device->reg_base + IOAT_VER_OFFSET);
150 if (device->version == IOAT_VER_1_2)
151 err = ioat1_dma_probe(device, ioat_dca_enabled);
152 else if (device->version == IOAT_VER_2_0)
153 err = ioat2_dma_probe(device, ioat_dca_enabled);
154 else if (device->version >= IOAT_VER_3_0)
155 err = ioat3_dma_probe(device, ioat_dca_enabled);
156 else
e6c0b69a 157 return -ENODEV;
4fac7fa5 158
f2427e27 159 if (err) {
e6c0b69a
DW
160 dev_err(dev, "Intel(R) I/OAT DMA Engine init failed\n");
161 return -ENODEV;
162 }
8ab89567
SN
163
164 return 0;
8ab89567
SN
165}
166
8ab89567
SN
167static void __devexit ioat_remove(struct pci_dev *pdev)
168{
f2427e27
DW
169 struct ioatdma_device *device = pci_get_drvdata(pdev);
170
171 if (!device)
172 return;
8ab89567 173
4fac7fa5
DW
174 dev_err(&pdev->dev, "Removing dma and dca services\n");
175 if (device->dca) {
176 unregister_dca_provider(device->dca);
177 free_dca_provider(device->dca);
178 device->dca = NULL;
179 }
f2427e27 180 ioat_dma_remove(device);
8ab89567 181}
8ab89567
SN
182
183static int __init ioat_init_module(void)
184{
5669e31c
DW
185 pr_info("%s: Intel(R) QuickData Technology Driver %s\n",
186 DRV_NAME, IOAT_DMA_VERSION);
187
7df7cf06 188 return pci_register_driver(&ioat_pci_driver);
8ab89567
SN
189}
190module_init(ioat_init_module);
191
192static void __exit ioat_exit_module(void)
193{
7df7cf06 194 pci_unregister_driver(&ioat_pci_driver);
8ab89567
SN
195}
196module_exit(ioat_exit_module);