blob: dff2d153816471a6eef60b02dc4d1aa136314d7d [file] [log] [blame]
Eli Billauer48bae052013-06-24 18:55:47 +03001/*
2 * linux/drivers/misc/xillybus_pcie.c
3 *
4 * Copyright 2011 Xillybus Ltd, http://xillybus.com
5 *
6 * Driver for the Xillybus FPGA/host framework using PCI Express.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the smems of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 */
12
13#include <linux/module.h>
14#include <linux/pci.h>
15#include <linux/pci-aspm.h>
16#include <linux/slab.h>
17#include "xillybus.h"
18
19MODULE_DESCRIPTION("Xillybus driver for PCIe");
20MODULE_AUTHOR("Eli Billauer, Xillybus Ltd.");
21MODULE_VERSION("1.06");
22MODULE_ALIAS("xillybus_pcie");
23MODULE_LICENSE("GPL v2");
24
25#define PCI_DEVICE_ID_XILLYBUS 0xebeb
26
27#define PCI_VENDOR_ID_ALTERA 0x1172
28#define PCI_VENDOR_ID_ACTEL 0x11aa
29#define PCI_VENDOR_ID_LATTICE 0x1204
30
Eli Billauere71042f2013-07-27 00:24:00 +030031static const char xillyname[] = "xillybus_pcie";
32
Jingoo Han41e043f2013-12-03 08:26:00 +090033static const struct pci_device_id xillyids[] = {
Eli Billauer48bae052013-06-24 18:55:47 +030034 {PCI_DEVICE(PCI_VENDOR_ID_XILINX, PCI_DEVICE_ID_XILLYBUS)},
35 {PCI_DEVICE(PCI_VENDOR_ID_ALTERA, PCI_DEVICE_ID_XILLYBUS)},
36 {PCI_DEVICE(PCI_VENDOR_ID_ACTEL, PCI_DEVICE_ID_XILLYBUS)},
37 {PCI_DEVICE(PCI_VENDOR_ID_LATTICE, PCI_DEVICE_ID_XILLYBUS)},
38 { /* End: all zeroes */ }
39};
40
41static int xilly_pci_direction(int direction)
42{
43 switch (direction) {
44 case DMA_TO_DEVICE:
45 return PCI_DMA_TODEVICE;
46 case DMA_FROM_DEVICE:
47 return PCI_DMA_FROMDEVICE;
48 default:
49 return PCI_DMA_BIDIRECTIONAL;
50 }
51}
52
53static void xilly_dma_sync_single_for_cpu_pci(struct xilly_endpoint *ep,
54 dma_addr_t dma_handle,
55 size_t size,
56 int direction)
57{
58 pci_dma_sync_single_for_cpu(ep->pdev,
59 dma_handle,
60 size,
61 xilly_pci_direction(direction));
62}
63
64static void xilly_dma_sync_single_for_device_pci(struct xilly_endpoint *ep,
65 dma_addr_t dma_handle,
66 size_t size,
67 int direction)
68{
69 pci_dma_sync_single_for_device(ep->pdev,
70 dma_handle,
71 size,
72 xilly_pci_direction(direction));
73}
74
Eli Billauer525be902014-06-21 14:07:12 +030075static void xilly_pci_unmap(void *ptr)
76{
77 struct xilly_mapping *data = ptr;
78
79 pci_unmap_single(data->device, data->dma_addr,
80 data->size, data->direction);
81
82 kfree(ptr);
83}
84
Eli Billauer48bae052013-06-24 18:55:47 +030085/*
86 * Map either through the PCI DMA mapper or the non_PCI one. Behind the
87 * scenes exactly the same functions are called with the same parameters,
88 * but that can change.
89 */
90
Eli Billauer525be902014-06-21 14:07:12 +030091static int xilly_map_single_pci(struct xilly_endpoint *ep,
92 void *ptr,
93 size_t size,
94 int direction,
95 dma_addr_t *ret_dma_handle
Eli Billauer48bae052013-06-24 18:55:47 +030096 )
97{
Eli Billauer48bae052013-06-24 18:55:47 +030098 int pci_direction;
Eli Billauer525be902014-06-21 14:07:12 +030099 dma_addr_t addr;
100 struct xilly_mapping *this;
Eli Billauer48bae052013-06-24 18:55:47 +0300101
Eli Billauer525be902014-06-21 14:07:12 +0300102 this = kzalloc(sizeof(*this), GFP_KERNEL);
Eli Billauer48bae052013-06-24 18:55:47 +0300103 if (!this)
Eli Billauer525be902014-06-21 14:07:12 +0300104 return -ENOMEM;
Eli Billauer48bae052013-06-24 18:55:47 +0300105
106 pci_direction = xilly_pci_direction(direction);
Eli Billauer525be902014-06-21 14:07:12 +0300107
Eli Billauer48bae052013-06-24 18:55:47 +0300108 addr = pci_map_single(ep->pdev, ptr, size, pci_direction);
Eli Billauer48bae052013-06-24 18:55:47 +0300109
110 if (pci_dma_mapping_error(ep->pdev, addr)) {
111 kfree(this);
Eli Billauer525be902014-06-21 14:07:12 +0300112 return -ENODEV;
Eli Billauer48bae052013-06-24 18:55:47 +0300113 }
114
Eli Billauer525be902014-06-21 14:07:12 +0300115 this->device = ep->pdev;
Eli Billauer48bae052013-06-24 18:55:47 +0300116 this->dma_addr = addr;
Eli Billauer48bae052013-06-24 18:55:47 +0300117 this->size = size;
Eli Billauer525be902014-06-21 14:07:12 +0300118 this->direction = pci_direction;
Eli Billauer48bae052013-06-24 18:55:47 +0300119
Eli Billauer525be902014-06-21 14:07:12 +0300120 *ret_dma_handle = addr;
Eli Billauer48bae052013-06-24 18:55:47 +0300121
Sudip Mukherjeebd83a4a2016-04-30 17:13:20 +0100122 return devm_add_action_or_reset(ep->dev, xilly_pci_unmap, this);
Eli Billauer48bae052013-06-24 18:55:47 +0300123}
124
125static struct xilly_endpoint_hardware pci_hw = {
126 .owner = THIS_MODULE,
Eli Billauer7ee9ded2013-07-31 11:22:43 +0300127 .hw_sync_sgl_for_cpu = xilly_dma_sync_single_for_cpu_pci,
128 .hw_sync_sgl_for_device = xilly_dma_sync_single_for_device_pci,
Eli Billauer48bae052013-06-24 18:55:47 +0300129 .map_single = xilly_map_single_pci,
Eli Billauer48bae052013-06-24 18:55:47 +0300130};
131
132static int xilly_probe(struct pci_dev *pdev,
Eli Billauer91a2dea2014-09-04 17:47:56 +0300133 const struct pci_device_id *ent)
Eli Billauer48bae052013-06-24 18:55:47 +0300134{
135 struct xilly_endpoint *endpoint;
Eli Billauer40931bb2014-09-04 17:47:48 +0300136 int rc;
Eli Billauer48bae052013-06-24 18:55:47 +0300137
Eli Billauer26a6fc92013-10-19 01:02:25 +0300138 endpoint = xillybus_init_endpoint(pdev, &pdev->dev, &pci_hw);
Eli Billauer48bae052013-06-24 18:55:47 +0300139
140 if (!endpoint)
141 return -ENOMEM;
142
143 pci_set_drvdata(pdev, endpoint);
144
Eli Billauer92674622014-05-11 19:53:46 +0300145 rc = pcim_enable_device(pdev);
Eli Billauer92674622014-05-11 19:53:46 +0300146 if (rc) {
147 dev_err(endpoint->dev,
148 "pcim_enable_device() failed. Aborting.\n");
149 return rc;
150 }
Eli Billauer48bae052013-06-24 18:55:47 +0300151
152 /* L0s has caused packet drops. No power saving, thank you. */
153
154 pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S);
155
Eli Billauer48bae052013-06-24 18:55:47 +0300156 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
Eli Billauer2cb85c02013-10-19 01:02:26 +0300157 dev_err(endpoint->dev,
158 "Incorrect BAR configuration. Aborting.\n");
Eli Billauer92674622014-05-11 19:53:46 +0300159 return -ENODEV;
Eli Billauer48bae052013-06-24 18:55:47 +0300160 }
161
Eli Billauer92674622014-05-11 19:53:46 +0300162 rc = pcim_iomap_regions(pdev, 0x01, xillyname);
Eli Billauer48bae052013-06-24 18:55:47 +0300163 if (rc) {
Eli Billauer2cb85c02013-10-19 01:02:26 +0300164 dev_err(endpoint->dev,
Eli Billauer92674622014-05-11 19:53:46 +0300165 "pcim_iomap_regions() failed. Aborting.\n");
166 return rc;
Eli Billauer48bae052013-06-24 18:55:47 +0300167 }
168
Eli Billauer92674622014-05-11 19:53:46 +0300169 endpoint->registers = pcim_iomap_table(pdev)[0];
Eli Billauer48bae052013-06-24 18:55:47 +0300170
171 pci_set_master(pdev);
172
173 /* Set up a single MSI interrupt */
174 if (pci_enable_msi(pdev)) {
Eli Billauer2cb85c02013-10-19 01:02:26 +0300175 dev_err(endpoint->dev,
176 "Failed to enable MSI interrupts. Aborting.\n");
Eli Billauer92674622014-05-11 19:53:46 +0300177 return -ENODEV;
Eli Billauer48bae052013-06-24 18:55:47 +0300178 }
Eli Billauer92674622014-05-11 19:53:46 +0300179 rc = devm_request_irq(&pdev->dev, pdev->irq, xillybus_isr, 0,
180 xillyname, endpoint);
Eli Billauer48bae052013-06-24 18:55:47 +0300181 if (rc) {
Eli Billauer2cb85c02013-10-19 01:02:26 +0300182 dev_err(endpoint->dev,
183 "Failed to register MSI handler. Aborting.\n");
Eli Billauer92674622014-05-11 19:53:46 +0300184 return -ENODEV;
Eli Billauer48bae052013-06-24 18:55:47 +0300185 }
186
187 /*
Eli Billauer6497a872015-08-05 13:03:26 +0300188 * Some (old and buggy?) hardware drops 64-bit addressed PCIe packets,
189 * even when the PCIe driver claims that a 64-bit mask is OK. On the
190 * other hand, on some architectures, 64-bit addressing is mandatory.
191 * So go for the 64-bit mask only when failing is the other option.
Eli Billauer48bae052013-06-24 18:55:47 +0300192 */
193
Eli Billauerc14cc622014-09-04 17:47:51 +0300194 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) {
Eli Billauer48bae052013-06-24 18:55:47 +0300195 endpoint->dma_using_dac = 0;
Eli Billauer6497a872015-08-05 13:03:26 +0300196 } else if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
197 endpoint->dma_using_dac = 1;
Eli Billauerc14cc622014-09-04 17:47:51 +0300198 } else {
Eli Billauer2cb85c02013-10-19 01:02:26 +0300199 dev_err(endpoint->dev, "Failed to set DMA mask. Aborting.\n");
Eli Billauer92674622014-05-11 19:53:46 +0300200 return -ENODEV;
Eli Billauer48bae052013-06-24 18:55:47 +0300201 }
202
Eli Billauer525be902014-06-21 14:07:12 +0300203 return xillybus_endpoint_discovery(endpoint);
Eli Billauer48bae052013-06-24 18:55:47 +0300204}
205
206static void xilly_remove(struct pci_dev *pdev)
207{
208 struct xilly_endpoint *endpoint = pci_get_drvdata(pdev);
209
210 xillybus_endpoint_remove(endpoint);
Eli Billauer48bae052013-06-24 18:55:47 +0300211}
212
213MODULE_DEVICE_TABLE(pci, xillyids);
214
215static struct pci_driver xillybus_driver = {
216 .name = xillyname,
217 .id_table = xillyids,
218 .probe = xilly_probe,
219 .remove = xilly_remove,
220};
221
222module_pci_driver(xillybus_driver);