blob: 982e38fd177c220e097b2bdebf0dca49ea6dae16 [file] [log] [blame]
Shannon Nelson8ab89562007-10-16 01:27:39 -07001/*
2 * Intel I/OAT DMA Linux driver
Maciej Sosnowski211a22c2009-02-26 11:05:43 +01003 * Copyright(c) 2007 - 2009 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>
Dan Williams584ec222009-07-28 14:32:12 -070033#include "dma.h"
34#include "registers.h"
35#include "hw.h"
Shannon Nelson8ab89562007-10-16 01:27:39 -070036
Shannon Nelson5149fd02007-10-18 03:07:13 -070037MODULE_VERSION(IOAT_DMA_VERSION);
Shannon Nelson8ab89562007-10-16 01:27:39 -070038MODULE_LICENSE("GPL");
39MODULE_AUTHOR("Intel Corporation");
40
41static struct pci_device_id ioat_pci_tbl[] = {
Shannon Nelson7bb67c12007-11-14 16:59:51 -080042 /* I/OAT v1 platforms */
Shannon Nelson8ab89562007-10-16 01:27:39 -070043 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT) },
44 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_CNB) },
45 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_SCNB) },
46 { PCI_DEVICE(PCI_VENDOR_ID_UNISYS, PCI_DEVICE_ID_UNISYS_DMA_DIRECTOR) },
Shannon Nelson7bb67c12007-11-14 16:59:51 -080047
48 /* I/OAT v2 platforms */
49 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB) },
Maciej Sosnowski7f1b3582008-07-22 17:30:57 -070050
51 /* I/OAT v3 platforms */
52 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG0) },
53 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG1) },
54 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG2) },
55 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG3) },
56 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG4) },
57 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG5) },
58 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG6) },
59 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_TBG7) },
Shannon Nelson8ab89562007-10-16 01:27:39 -070060 { 0, }
61};
62
63struct ioat_device {
64 struct pci_dev *pdev;
Shannon Nelson8ab89562007-10-16 01:27:39 -070065 struct ioatdma_device *dma;
Shannon Nelson2ed6dc32007-10-16 01:27:42 -070066 struct dca_provider *dca;
Shannon Nelson8ab89562007-10-16 01:27:39 -070067};
68
69static int __devinit ioat_probe(struct pci_dev *pdev,
70 const struct pci_device_id *id);
Shannon Nelson8ab89562007-10-16 01:27:39 -070071static void __devexit ioat_remove(struct pci_dev *pdev);
Shannon Nelson8ab89562007-10-16 01:27:39 -070072
Shannon Nelson2ed6dc32007-10-16 01:27:42 -070073static int ioat_dca_enabled = 1;
74module_param(ioat_dca_enabled, int, 0644);
75MODULE_PARM_DESC(ioat_dca_enabled, "control support of dca service (default: 1)");
76
Dan Williamse6c0b692009-09-08 17:29:44 -070077#define DRV_NAME "ioatdma"
78
Shannon Nelson7df7cf02007-10-18 03:07:12 -070079static struct pci_driver ioat_pci_driver = {
Dan Williamse6c0b692009-09-08 17:29:44 -070080 .name = DRV_NAME,
Shannon Nelson8ab89562007-10-16 01:27:39 -070081 .id_table = ioat_pci_tbl,
82 .probe = ioat_probe,
Shannon Nelson8ab89562007-10-16 01:27:39 -070083 .remove = __devexit_p(ioat_remove),
Shannon Nelson8ab89562007-10-16 01:27:39 -070084};
85
86static int __devinit ioat_probe(struct pci_dev *pdev,
87 const struct pci_device_id *id)
88{
Dan Williamse6c0b692009-09-08 17:29:44 -070089 void __iomem * const *iomap;
Shannon Nelson8ab89562007-10-16 01:27:39 -070090 void __iomem *iobase;
Dan Williamse6c0b692009-09-08 17:29:44 -070091 struct device *dev = &pdev->dev;
Shannon Nelson8ab89562007-10-16 01:27:39 -070092 struct ioat_device *device;
Shannon Nelson8ab89562007-10-16 01:27:39 -070093 int err;
94
Dan Williamse6c0b692009-09-08 17:29:44 -070095 err = pcim_enable_device(pdev);
Shannon Nelson8ab89562007-10-16 01:27:39 -070096 if (err)
Dan Williamse6c0b692009-09-08 17:29:44 -070097 return err;
Shannon Nelson8ab89562007-10-16 01:27:39 -070098
Dan Williamse6c0b692009-09-08 17:29:44 -070099 err = pcim_iomap_regions(pdev, 1 << IOAT_MMIO_BAR, DRV_NAME);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700100 if (err)
Dan Williamse6c0b692009-09-08 17:29:44 -0700101 return err;
102 iomap = pcim_iomap_table(pdev);
103 if (!iomap)
104 return -ENOMEM;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700105
Yang Hongyang6a355282009-04-06 19:01:13 -0700106 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
Shannon Nelson8ab89562007-10-16 01:27:39 -0700107 if (err)
Yang Hongyang284901a2009-04-06 19:01:15 -0700108 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Shannon Nelson8ab89562007-10-16 01:27:39 -0700109 if (err)
Dan Williamse6c0b692009-09-08 17:29:44 -0700110 return err;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700111
Yang Hongyang6a355282009-04-06 19:01:13 -0700112 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
Shannon Nelson8ab89562007-10-16 01:27:39 -0700113 if (err)
Yang Hongyang284901a2009-04-06 19:01:15 -0700114 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Shannon Nelson8ab89562007-10-16 01:27:39 -0700115 if (err)
Dan Williamse6c0b692009-09-08 17:29:44 -0700116 return err;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700117
Dan Williamse6c0b692009-09-08 17:29:44 -0700118 device = devm_kzalloc(dev, sizeof(*device), GFP_KERNEL);
119 if (!device)
120 return -ENOMEM;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700121
Shannon Nelson8ab89562007-10-16 01:27:39 -0700122 device->pdev = pdev;
123 pci_set_drvdata(pdev, device);
Dan Williamse6c0b692009-09-08 17:29:44 -0700124 iobase = iomap[IOAT_MMIO_BAR];
Shannon Nelson8ab89562007-10-16 01:27:39 -0700125
126 pci_set_master(pdev);
127
Dan Williams4fac7fa2009-01-06 11:38:20 -0700128 switch (readb(iobase + IOAT_VER_OFFSET)) {
129 case IOAT_VER_1_2:
130 device->dma = ioat_dma_probe(pdev, iobase);
131 if (device->dma && ioat_dca_enabled)
132 device->dca = ioat_dca_init(pdev, iobase);
133 break;
134 case IOAT_VER_2_0:
135 device->dma = ioat_dma_probe(pdev, iobase);
136 if (device->dma && ioat_dca_enabled)
137 device->dca = ioat2_dca_init(pdev, iobase);
138 break;
139 case IOAT_VER_3_0:
140 device->dma = ioat_dma_probe(pdev, iobase);
141 if (device->dma && ioat_dca_enabled)
142 device->dca = ioat3_dca_init(pdev, iobase);
143 break;
144 default:
Dan Williamse6c0b692009-09-08 17:29:44 -0700145 return -ENODEV;
Dan Williams4fac7fa2009-01-06 11:38:20 -0700146 }
Dan Williams4fac7fa2009-01-06 11:38:20 -0700147
Dan Williamse6c0b692009-09-08 17:29:44 -0700148 if (!device->dma) {
149 dev_err(dev, "Intel(R) I/OAT DMA Engine init failed\n");
150 return -ENODEV;
151 }
Shannon Nelson8ab89562007-10-16 01:27:39 -0700152
153 return 0;
Shannon Nelson8ab89562007-10-16 01:27:39 -0700154}
155
Shannon Nelson8ab89562007-10-16 01:27:39 -0700156static void __devexit ioat_remove(struct pci_dev *pdev)
157{
158 struct ioat_device *device = pci_get_drvdata(pdev);
159
Dan Williams4fac7fa2009-01-06 11:38:20 -0700160 dev_err(&pdev->dev, "Removing dma and dca services\n");
161 if (device->dca) {
162 unregister_dca_provider(device->dca);
163 free_dca_provider(device->dca);
164 device->dca = NULL;
165 }
166
167 if (device->dma) {
168 ioat_dma_remove(device->dma);
169 device->dma = NULL;
170 }
Shannon Nelson8ab89562007-10-16 01:27:39 -0700171}
Shannon Nelson8ab89562007-10-16 01:27:39 -0700172
173static int __init ioat_init_module(void)
174{
Shannon Nelson7df7cf02007-10-18 03:07:12 -0700175 return pci_register_driver(&ioat_pci_driver);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700176}
177module_init(ioat_init_module);
178
179static void __exit ioat_exit_module(void)
180{
Shannon Nelson7df7cf02007-10-18 03:07:12 -0700181 pci_unregister_driver(&ioat_pci_driver);
Shannon Nelson8ab89562007-10-16 01:27:39 -0700182}
183module_exit(ioat_exit_module);