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