Update to 3.4-final.
[linux-flexiantxendom0-3.2.10.git] / drivers / dma / ioat / pci.c
1 /*
2  * Intel I/OAT DMA Linux driver
3  * Copyright(c) 2007 - 2009 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/slab.h>
33 #include "dma.h"
34 #include "dma_v2.h"
35 #include "registers.h"
36 #include "hw.h"
37
38 MODULE_VERSION(IOAT_DMA_VERSION);
39 MODULE_LICENSE("Dual BSD/GPL");
40 MODULE_AUTHOR("Intel Corporation");
41
42 static struct pci_device_id ioat_pci_tbl[] = {
43         /* I/OAT v1 platforms */
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) },
48
49         /* I/OAT v2 platforms */
50         { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB) },
51
52         /* I/OAT v3 platforms */
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) },
61
62         /* I/OAT v3.2 platforms */
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) },
73
74         { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB0) },
75         { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB1) },
76         { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB2) },
77         { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB3) },
78         { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB4) },
79         { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB5) },
80         { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB6) },
81         { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB7) },
82         { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB8) },
83         { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB9) },
84
85         { 0, }
86 };
87 MODULE_DEVICE_TABLE(pci, ioat_pci_tbl);
88
89 static int __devinit ioat_pci_probe(struct pci_dev *pdev,
90                                     const struct pci_device_id *id);
91 static void __devexit ioat_remove(struct pci_dev *pdev);
92
93 static int ioat_dca_enabled = 1;
94 module_param(ioat_dca_enabled, int, 0644);
95 MODULE_PARM_DESC(ioat_dca_enabled, "control support of dca service (default: 1)");
96
97 struct kmem_cache *ioat2_cache;
98
99 #define DRV_NAME "ioatdma"
100
101 static struct pci_driver ioat_pci_driver = {
102         .name           = DRV_NAME,
103         .id_table       = ioat_pci_tbl,
104         .probe          = ioat_pci_probe,
105         .remove         = __devexit_p(ioat_remove),
106 };
107
108 static struct ioatdma_device *
109 alloc_ioatdma(struct pci_dev *pdev, void __iomem *iobase)
110 {
111         struct device *dev = &pdev->dev;
112         struct ioatdma_device *d = devm_kzalloc(dev, sizeof(*d), GFP_KERNEL);
113
114         if (!d)
115                 return NULL;
116         d->pdev = pdev;
117         d->reg_base = iobase;
118         return d;
119 }
120
121 static int __devinit ioat_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
122 {
123         void __iomem * const *iomap;
124         struct device *dev = &pdev->dev;
125         struct ioatdma_device *device;
126         int err;
127
128         err = pcim_enable_device(pdev);
129         if (err)
130                 return err;
131
132         err = pcim_iomap_regions(pdev, 1 << IOAT_MMIO_BAR, DRV_NAME);
133         if (err)
134                 return err;
135         iomap = pcim_iomap_table(pdev);
136         if (!iomap)
137                 return -ENOMEM;
138
139         err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
140         if (err)
141                 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
142         if (err)
143                 return err;
144
145         err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
146         if (err)
147                 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
148         if (err)
149                 return err;
150
151         device = alloc_ioatdma(pdev, iomap[IOAT_MMIO_BAR]);
152         if (!device)
153                 return -ENOMEM;
154         pci_set_master(pdev);
155         pci_set_drvdata(pdev, device);
156
157         device->version = readb(device->reg_base + IOAT_VER_OFFSET);
158         if (device->version == IOAT_VER_1_2)
159                 err = ioat1_dma_probe(device, ioat_dca_enabled);
160         else if (device->version == IOAT_VER_2_0)
161                 err = ioat2_dma_probe(device, ioat_dca_enabled);
162         else if (device->version >= IOAT_VER_3_0)
163                 err = ioat3_dma_probe(device, ioat_dca_enabled);
164         else
165                 return -ENODEV;
166
167         if (err) {
168                 dev_err(dev, "Intel(R) I/OAT DMA Engine init failed\n");
169                 return -ENODEV;
170         }
171
172         return 0;
173 }
174
175 static void __devexit ioat_remove(struct pci_dev *pdev)
176 {
177         struct ioatdma_device *device = pci_get_drvdata(pdev);
178
179         if (!device)
180                 return;
181
182         dev_err(&pdev->dev, "Removing dma and dca services\n");
183         ioat_remove_dca_provider(pdev);
184         ioat_dma_remove(device);
185 }
186
187 static int __init ioat_init_module(void)
188 {
189         int err;
190
191         pr_info("%s: Intel(R) QuickData Technology Driver %s\n",
192                 DRV_NAME, IOAT_DMA_VERSION);
193
194         ioat2_cache = kmem_cache_create("ioat2", sizeof(struct ioat_ring_ent),
195                                         0, SLAB_HWCACHE_ALIGN, NULL);
196         if (!ioat2_cache)
197                 return -ENOMEM;
198
199         err = pci_register_driver(&ioat_pci_driver);
200         if (err)
201                 kmem_cache_destroy(ioat2_cache);
202
203         return err;
204 }
205 module_init(ioat_init_module);
206
207 static void __exit ioat_exit_module(void)
208 {
209         pci_unregister_driver(&ioat_pci_driver);
210         kmem_cache_destroy(ioat2_cache);
211 }
212 module_exit(ioat_exit_module);