GNU Linux-libre 4.19.286-gnu1
[releases.git] / drivers / spi / spi-pxa2xx-pci.c
1 /*
2  * CE4100's SPI device is more or less the same one as found on PXA
3  *
4  * Copyright (C) 2016, Intel Corporation
5  */
6 #include <linux/clk-provider.h>
7 #include <linux/module.h>
8 #include <linux/of_device.h>
9 #include <linux/pci.h>
10 #include <linux/platform_device.h>
11 #include <linux/spi/pxa2xx_spi.h>
12
13 #include <linux/dmaengine.h>
14 #include <linux/platform_data/dma-dw.h>
15
16 enum {
17         PORT_QUARK_X1000,
18         PORT_BYT,
19         PORT_MRFLD,
20         PORT_BSW0,
21         PORT_BSW1,
22         PORT_BSW2,
23         PORT_CE4100,
24         PORT_LPT0,
25         PORT_LPT1,
26 };
27
28 struct pxa_spi_info {
29         enum pxa_ssp_type type;
30         int port_id;
31         int num_chipselect;
32         unsigned long max_clk_rate;
33
34         /* DMA channel request parameters */
35         bool (*dma_filter)(struct dma_chan *chan, void *param);
36         void *tx_param;
37         void *rx_param;
38
39         int (*setup)(struct pci_dev *pdev, struct pxa_spi_info *c);
40 };
41
42 static struct dw_dma_slave byt_tx_param = { .dst_id = 0 };
43 static struct dw_dma_slave byt_rx_param = { .src_id = 1 };
44
45 static struct dw_dma_slave mrfld3_tx_param = { .dst_id = 15 };
46 static struct dw_dma_slave mrfld3_rx_param = { .src_id = 14 };
47 static struct dw_dma_slave mrfld5_tx_param = { .dst_id = 13 };
48 static struct dw_dma_slave mrfld5_rx_param = { .src_id = 12 };
49 static struct dw_dma_slave mrfld6_tx_param = { .dst_id = 11 };
50 static struct dw_dma_slave mrfld6_rx_param = { .src_id = 10 };
51
52 static struct dw_dma_slave bsw0_tx_param = { .dst_id = 0 };
53 static struct dw_dma_slave bsw0_rx_param = { .src_id = 1 };
54 static struct dw_dma_slave bsw1_tx_param = { .dst_id = 6 };
55 static struct dw_dma_slave bsw1_rx_param = { .src_id = 7 };
56 static struct dw_dma_slave bsw2_tx_param = { .dst_id = 8 };
57 static struct dw_dma_slave bsw2_rx_param = { .src_id = 9 };
58
59 static struct dw_dma_slave lpt1_tx_param = { .dst_id = 0 };
60 static struct dw_dma_slave lpt1_rx_param = { .src_id = 1 };
61 static struct dw_dma_slave lpt0_tx_param = { .dst_id = 2 };
62 static struct dw_dma_slave lpt0_rx_param = { .src_id = 3 };
63
64 static bool lpss_dma_filter(struct dma_chan *chan, void *param)
65 {
66         struct dw_dma_slave *dws = param;
67
68         if (dws->dma_dev != chan->device->dev)
69                 return false;
70
71         chan->private = dws;
72         return true;
73 }
74
75 static void lpss_dma_put_device(void *dma_dev)
76 {
77         pci_dev_put(dma_dev);
78 }
79
80 static int lpss_spi_setup(struct pci_dev *dev, struct pxa_spi_info *c)
81 {
82         struct pci_dev *dma_dev;
83         int ret;
84
85         c->num_chipselect = 1;
86         c->max_clk_rate = 50000000;
87
88         dma_dev = pci_get_slot(dev->bus, PCI_DEVFN(PCI_SLOT(dev->devfn), 0));
89         ret = devm_add_action_or_reset(&dev->dev, lpss_dma_put_device, dma_dev);
90         if (ret)
91                 return ret;
92
93         if (c->tx_param) {
94                 struct dw_dma_slave *slave = c->tx_param;
95
96                 slave->dma_dev = &dma_dev->dev;
97                 slave->m_master = 0;
98                 slave->p_master = 1;
99         }
100
101         if (c->rx_param) {
102                 struct dw_dma_slave *slave = c->rx_param;
103
104                 slave->dma_dev = &dma_dev->dev;
105                 slave->m_master = 0;
106                 slave->p_master = 1;
107         }
108
109         c->dma_filter = lpss_dma_filter;
110         return 0;
111 }
112
113 static int mrfld_spi_setup(struct pci_dev *dev, struct pxa_spi_info *c)
114 {
115         struct dw_dma_slave *tx, *rx;
116         struct pci_dev *dma_dev;
117         int ret;
118
119         switch (PCI_FUNC(dev->devfn)) {
120         case 0:
121                 c->port_id = 3;
122                 c->num_chipselect = 1;
123                 c->tx_param = &mrfld3_tx_param;
124                 c->rx_param = &mrfld3_rx_param;
125                 break;
126         case 1:
127                 c->port_id = 5;
128                 c->num_chipselect = 4;
129                 c->tx_param = &mrfld5_tx_param;
130                 c->rx_param = &mrfld5_rx_param;
131                 break;
132         case 2:
133                 c->port_id = 6;
134                 c->num_chipselect = 1;
135                 c->tx_param = &mrfld6_tx_param;
136                 c->rx_param = &mrfld6_rx_param;
137                 break;
138         default:
139                 return -ENODEV;
140         }
141
142         dma_dev = pci_get_slot(dev->bus, PCI_DEVFN(21, 0));
143         ret = devm_add_action_or_reset(&dev->dev, lpss_dma_put_device, dma_dev);
144         if (ret)
145                 return ret;
146
147         tx = c->tx_param;
148         tx->dma_dev = &dma_dev->dev;
149
150         rx = c->rx_param;
151         rx->dma_dev = &dma_dev->dev;
152
153         c->dma_filter = lpss_dma_filter;
154         return 0;
155 }
156
157 static struct pxa_spi_info spi_info_configs[] = {
158         [PORT_CE4100] = {
159                 .type = PXA25x_SSP,
160                 .port_id =  -1,
161                 .num_chipselect = -1,
162                 .max_clk_rate = 3686400,
163         },
164         [PORT_BYT] = {
165                 .type = LPSS_BYT_SSP,
166                 .port_id = 0,
167                 .setup = lpss_spi_setup,
168                 .tx_param = &byt_tx_param,
169                 .rx_param = &byt_rx_param,
170         },
171         [PORT_BSW0] = {
172                 .type = LPSS_BSW_SSP,
173                 .port_id = 0,
174                 .setup = lpss_spi_setup,
175                 .tx_param = &bsw0_tx_param,
176                 .rx_param = &bsw0_rx_param,
177         },
178         [PORT_BSW1] = {
179                 .type = LPSS_BSW_SSP,
180                 .port_id = 1,
181                 .setup = lpss_spi_setup,
182                 .tx_param = &bsw1_tx_param,
183                 .rx_param = &bsw1_rx_param,
184         },
185         [PORT_BSW2] = {
186                 .type = LPSS_BSW_SSP,
187                 .port_id = 2,
188                 .setup = lpss_spi_setup,
189                 .tx_param = &bsw2_tx_param,
190                 .rx_param = &bsw2_rx_param,
191         },
192         [PORT_MRFLD] = {
193                 .type = PXA27x_SSP,
194                 .max_clk_rate = 25000000,
195                 .setup = mrfld_spi_setup,
196         },
197         [PORT_QUARK_X1000] = {
198                 .type = QUARK_X1000_SSP,
199                 .port_id = -1,
200                 .num_chipselect = 1,
201                 .max_clk_rate = 50000000,
202         },
203         [PORT_LPT0] = {
204                 .type = LPSS_LPT_SSP,
205                 .port_id = 0,
206                 .setup = lpss_spi_setup,
207                 .tx_param = &lpt0_tx_param,
208                 .rx_param = &lpt0_rx_param,
209         },
210         [PORT_LPT1] = {
211                 .type = LPSS_LPT_SSP,
212                 .port_id = 1,
213                 .setup = lpss_spi_setup,
214                 .tx_param = &lpt1_tx_param,
215                 .rx_param = &lpt1_rx_param,
216         },
217 };
218
219 static int pxa2xx_spi_pci_probe(struct pci_dev *dev,
220                 const struct pci_device_id *ent)
221 {
222         struct platform_device_info pi;
223         int ret;
224         struct platform_device *pdev;
225         struct pxa2xx_spi_master spi_pdata;
226         struct ssp_device *ssp;
227         struct pxa_spi_info *c;
228         char buf[40];
229
230         ret = pcim_enable_device(dev);
231         if (ret)
232                 return ret;
233
234         ret = pcim_iomap_regions(dev, 1 << 0, "PXA2xx SPI");
235         if (ret)
236                 return ret;
237
238         c = &spi_info_configs[ent->driver_data];
239         if (c->setup) {
240                 ret = c->setup(dev, c);
241                 if (ret)
242                         return ret;
243         }
244
245         memset(&spi_pdata, 0, sizeof(spi_pdata));
246         spi_pdata.num_chipselect = (c->num_chipselect > 0) ? c->num_chipselect : dev->devfn;
247         spi_pdata.dma_filter = c->dma_filter;
248         spi_pdata.tx_param = c->tx_param;
249         spi_pdata.rx_param = c->rx_param;
250         spi_pdata.enable_dma = c->rx_param && c->tx_param;
251
252         ssp = &spi_pdata.ssp;
253         ssp->phys_base = pci_resource_start(dev, 0);
254         ssp->mmio_base = pcim_iomap_table(dev)[0];
255         ssp->port_id = (c->port_id >= 0) ? c->port_id : dev->devfn;
256         ssp->type = c->type;
257
258         pci_set_master(dev);
259
260         ret = pci_alloc_irq_vectors(dev, 1, 1, PCI_IRQ_ALL_TYPES);
261         if (ret < 0)
262                 return ret;
263         ssp->irq = pci_irq_vector(dev, 0);
264
265         snprintf(buf, sizeof(buf), "pxa2xx-spi.%d", ssp->port_id);
266         ssp->clk = clk_register_fixed_rate(&dev->dev, buf , NULL, 0,
267                                            c->max_clk_rate);
268          if (IS_ERR(ssp->clk))
269                 return PTR_ERR(ssp->clk);
270
271         memset(&pi, 0, sizeof(pi));
272         pi.fwnode = dev->dev.fwnode;
273         pi.parent = &dev->dev;
274         pi.name = "pxa2xx-spi";
275         pi.id = ssp->port_id;
276         pi.data = &spi_pdata;
277         pi.size_data = sizeof(spi_pdata);
278
279         pdev = platform_device_register_full(&pi);
280         if (IS_ERR(pdev)) {
281                 clk_unregister(ssp->clk);
282                 return PTR_ERR(pdev);
283         }
284
285         pci_set_drvdata(dev, pdev);
286
287         return 0;
288 }
289
290 static void pxa2xx_spi_pci_remove(struct pci_dev *dev)
291 {
292         struct platform_device *pdev = pci_get_drvdata(dev);
293         struct pxa2xx_spi_master *spi_pdata;
294
295         spi_pdata = dev_get_platdata(&pdev->dev);
296
297         platform_device_unregister(pdev);
298         clk_unregister(spi_pdata->ssp.clk);
299 }
300
301 static const struct pci_device_id pxa2xx_spi_pci_devices[] = {
302         { PCI_VDEVICE(INTEL, 0x0935), PORT_QUARK_X1000 },
303         { PCI_VDEVICE(INTEL, 0x0f0e), PORT_BYT },
304         { PCI_VDEVICE(INTEL, 0x1194), PORT_MRFLD },
305         { PCI_VDEVICE(INTEL, 0x228e), PORT_BSW0 },
306         { PCI_VDEVICE(INTEL, 0x2290), PORT_BSW1 },
307         { PCI_VDEVICE(INTEL, 0x22ac), PORT_BSW2 },
308         { PCI_VDEVICE(INTEL, 0x2e6a), PORT_CE4100 },
309         { PCI_VDEVICE(INTEL, 0x9ce5), PORT_LPT0 },
310         { PCI_VDEVICE(INTEL, 0x9ce6), PORT_LPT1 },
311         { }
312 };
313 MODULE_DEVICE_TABLE(pci, pxa2xx_spi_pci_devices);
314
315 static struct pci_driver pxa2xx_spi_pci_driver = {
316         .name           = "pxa2xx_spi_pci",
317         .id_table       = pxa2xx_spi_pci_devices,
318         .probe          = pxa2xx_spi_pci_probe,
319         .remove         = pxa2xx_spi_pci_remove,
320 };
321
322 module_pci_driver(pxa2xx_spi_pci_driver);
323
324 MODULE_DESCRIPTION("CE4100/LPSS PCI-SPI glue code for PXA's driver");
325 MODULE_LICENSE("GPL v2");
326 MODULE_AUTHOR("Sebastian Andrzej Siewior <bigeasy@linutronix.de>");