Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Intel I/OAT DMA Linux driver |
Maciej Sosnowski | 211a22c | 2009-02-26 11:05:43 +0100 | [diff] [blame] | 3 | * Copyright(c) 2007 - 2009 Intel Corporation. |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 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> |
Shannon Nelson | 2ed6dc3 | 2007-10-16 01:27:42 -0700 | [diff] [blame] | 32 | #include <linux/dca.h> |
Dan Williams | 584ec22 | 2009-07-28 14:32:12 -0700 | [diff] [blame] | 33 | #include "dma.h" |
| 34 | #include "registers.h" |
| 35 | #include "hw.h" |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 36 | |
Shannon Nelson | 5149fd0 | 2007-10-18 03:07:13 -0700 | [diff] [blame] | 37 | MODULE_VERSION(IOAT_DMA_VERSION); |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 38 | MODULE_LICENSE("GPL"); |
| 39 | MODULE_AUTHOR("Intel Corporation"); |
| 40 | |
| 41 | static struct pci_device_id ioat_pci_tbl[] = { |
Shannon Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 42 | /* I/OAT v1 platforms */ |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 43 | { 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 Nelson | 7bb67c1 | 2007-11-14 16:59:51 -0800 | [diff] [blame] | 47 | |
| 48 | /* I/OAT v2 platforms */ |
| 49 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_SNB) }, |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 50 | |
| 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 Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 60 | { 0, } |
| 61 | }; |
| 62 | |
| 63 | struct ioat_device { |
| 64 | struct pci_dev *pdev; |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 65 | struct ioatdma_device *dma; |
Shannon Nelson | 2ed6dc3 | 2007-10-16 01:27:42 -0700 | [diff] [blame] | 66 | struct dca_provider *dca; |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 67 | }; |
| 68 | |
| 69 | static int __devinit ioat_probe(struct pci_dev *pdev, |
| 70 | const struct pci_device_id *id); |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 71 | static void __devexit ioat_remove(struct pci_dev *pdev); |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 72 | |
Shannon Nelson | 2ed6dc3 | 2007-10-16 01:27:42 -0700 | [diff] [blame] | 73 | static int ioat_dca_enabled = 1; |
| 74 | module_param(ioat_dca_enabled, int, 0644); |
| 75 | MODULE_PARM_DESC(ioat_dca_enabled, "control support of dca service (default: 1)"); |
| 76 | |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 77 | #define DRV_NAME "ioatdma" |
| 78 | |
Shannon Nelson | 7df7cf0 | 2007-10-18 03:07:12 -0700 | [diff] [blame] | 79 | static struct pci_driver ioat_pci_driver = { |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 80 | .name = DRV_NAME, |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 81 | .id_table = ioat_pci_tbl, |
| 82 | .probe = ioat_probe, |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 83 | .remove = __devexit_p(ioat_remove), |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 84 | }; |
| 85 | |
| 86 | static int __devinit ioat_probe(struct pci_dev *pdev, |
| 87 | const struct pci_device_id *id) |
| 88 | { |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 89 | void __iomem * const *iomap; |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 90 | void __iomem *iobase; |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 91 | struct device *dev = &pdev->dev; |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 92 | struct ioat_device *device; |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 93 | int err; |
| 94 | |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 95 | err = pcim_enable_device(pdev); |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 96 | if (err) |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 97 | return err; |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 98 | |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 99 | err = pcim_iomap_regions(pdev, 1 << IOAT_MMIO_BAR, DRV_NAME); |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 100 | if (err) |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 101 | return err; |
| 102 | iomap = pcim_iomap_table(pdev); |
| 103 | if (!iomap) |
| 104 | return -ENOMEM; |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 105 | |
Yang Hongyang | 6a35528 | 2009-04-06 19:01:13 -0700 | [diff] [blame] | 106 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64)); |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 107 | if (err) |
Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame] | 108 | err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 109 | if (err) |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 110 | return err; |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 111 | |
Yang Hongyang | 6a35528 | 2009-04-06 19:01:13 -0700 | [diff] [blame] | 112 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 113 | if (err) |
Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame] | 114 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 115 | if (err) |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 116 | return err; |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 117 | |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 118 | device = devm_kzalloc(dev, sizeof(*device), GFP_KERNEL); |
| 119 | if (!device) |
| 120 | return -ENOMEM; |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 121 | |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 122 | device->pdev = pdev; |
| 123 | pci_set_drvdata(pdev, device); |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 124 | iobase = iomap[IOAT_MMIO_BAR]; |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 125 | |
| 126 | pci_set_master(pdev); |
| 127 | |
Dan Williams | 4fac7fa | 2009-01-06 11:38:20 -0700 | [diff] [blame] | 128 | 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 Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 145 | return -ENODEV; |
Dan Williams | 4fac7fa | 2009-01-06 11:38:20 -0700 | [diff] [blame] | 146 | } |
Dan Williams | 4fac7fa | 2009-01-06 11:38:20 -0700 | [diff] [blame] | 147 | |
Dan Williams | e6c0b69 | 2009-09-08 17:29:44 -0700 | [diff] [blame] | 148 | if (!device->dma) { |
| 149 | dev_err(dev, "Intel(R) I/OAT DMA Engine init failed\n"); |
| 150 | return -ENODEV; |
| 151 | } |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 152 | |
| 153 | return 0; |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 154 | } |
| 155 | |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 156 | static void __devexit ioat_remove(struct pci_dev *pdev) |
| 157 | { |
| 158 | struct ioat_device *device = pci_get_drvdata(pdev); |
| 159 | |
Dan Williams | 4fac7fa | 2009-01-06 11:38:20 -0700 | [diff] [blame] | 160 | 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 Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 171 | } |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 172 | |
| 173 | static int __init ioat_init_module(void) |
| 174 | { |
Shannon Nelson | 7df7cf0 | 2007-10-18 03:07:12 -0700 | [diff] [blame] | 175 | return pci_register_driver(&ioat_pci_driver); |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 176 | } |
| 177 | module_init(ioat_init_module); |
| 178 | |
| 179 | static void __exit ioat_exit_module(void) |
| 180 | { |
Shannon Nelson | 7df7cf0 | 2007-10-18 03:07:12 -0700 | [diff] [blame] | 181 | pci_unregister_driver(&ioat_pci_driver); |
Shannon Nelson | 8ab8956 | 2007-10-16 01:27:39 -0700 | [diff] [blame] | 182 | } |
| 183 | module_exit(ioat_exit_module); |