blob: 2e134eb4bd2c9b0f705bd28f0fe87da876df7d5e [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +01002/*
Andy Shevchenko8083d6b2021-05-17 17:03:49 +03003 * PCI glue driver for SPI PXA2xx compatible controllers.
4 * CE4100's SPI device is more or less the same one as found on PXA.
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +01005 *
Andy Shevchenko8083d6b2021-05-17 17:03:49 +03006 * Copyright (C) 2016, 2021 Intel Corporation
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +01007 */
Andy Shevchenkoe379d2c2016-07-04 12:44:27 +03008#include <linux/clk-provider.h>
9#include <linux/module.h>
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +010010#include <linux/pci.h>
11#include <linux/platform_device.h>
Andy Shevchenko0e476872021-04-23 21:24:31 +030012
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +010013#include <linux/spi/pxa2xx_spi.h>
14
Mika Westerbergb729bf32014-08-19 20:29:19 +030015#include <linux/dmaengine.h>
16#include <linux/platform_data/dma-dw.h>
17
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +080018enum {
Andy Shevchenkoe379d2c2016-07-04 12:44:27 +030019 PORT_QUARK_X1000,
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +080020 PORT_BYT,
Andy Shevchenko4f470912016-07-04 12:44:25 +030021 PORT_MRFLD,
Mika Westerberg39d36532014-08-19 20:29:21 +030022 PORT_BSW0,
23 PORT_BSW1,
24 PORT_BSW2,
Andy Shevchenkoe379d2c2016-07-04 12:44:27 +030025 PORT_CE4100,
Andy Shevchenko54c5d3b2021-02-08 18:38:15 +020026 PORT_LPT0,
27 PORT_LPT1,
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +080028};
29
30struct pxa_spi_info {
31 enum pxa_ssp_type type;
32 int port_id;
33 int num_chipselect;
Chew, Chiau Eeafa93c92014-07-25 01:10:54 +080034 unsigned long max_clk_rate;
Mika Westerbergb729bf32014-08-19 20:29:19 +030035
36 /* DMA channel request parameters */
Andy Shevchenko743485ea2016-07-04 12:44:24 +030037 bool (*dma_filter)(struct dma_chan *chan, void *param);
Mika Westerbergb729bf32014-08-19 20:29:19 +030038 void *tx_param;
39 void *rx_param;
Andy Shevchenko743485ea2016-07-04 12:44:24 +030040
Andy Shevchenko37821a822019-03-19 17:48:42 +020041 int dma_burst_size;
42
Andy Shevchenko743485ea2016-07-04 12:44:24 +030043 int (*setup)(struct pci_dev *pdev, struct pxa_spi_info *c);
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +080044};
45
Mika Westerbergb729bf32014-08-19 20:29:19 +030046static struct dw_dma_slave byt_tx_param = { .dst_id = 0 };
47static struct dw_dma_slave byt_rx_param = { .src_id = 1 };
48
Andy Shevchenko25014522017-01-02 13:47:31 +020049static struct dw_dma_slave mrfld3_tx_param = { .dst_id = 15 };
50static struct dw_dma_slave mrfld3_rx_param = { .src_id = 14 };
51static struct dw_dma_slave mrfld5_tx_param = { .dst_id = 13 };
52static struct dw_dma_slave mrfld5_rx_param = { .src_id = 12 };
53static struct dw_dma_slave mrfld6_tx_param = { .dst_id = 11 };
54static struct dw_dma_slave mrfld6_rx_param = { .src_id = 10 };
55
Mika Westerberg39d36532014-08-19 20:29:21 +030056static struct dw_dma_slave bsw0_tx_param = { .dst_id = 0 };
57static struct dw_dma_slave bsw0_rx_param = { .src_id = 1 };
58static struct dw_dma_slave bsw1_tx_param = { .dst_id = 6 };
59static struct dw_dma_slave bsw1_rx_param = { .src_id = 7 };
60static struct dw_dma_slave bsw2_tx_param = { .dst_id = 8 };
61static struct dw_dma_slave bsw2_rx_param = { .src_id = 9 };
62
Andy Shevchenko54c5d3b2021-02-08 18:38:15 +020063static struct dw_dma_slave lpt1_tx_param = { .dst_id = 0 };
64static struct dw_dma_slave lpt1_rx_param = { .src_id = 1 };
65static struct dw_dma_slave lpt0_tx_param = { .dst_id = 2 };
66static struct dw_dma_slave lpt0_rx_param = { .src_id = 3 };
Leif Liddycaba2482016-02-20 20:20:22 +010067
Mika Westerbergb729bf32014-08-19 20:29:19 +030068static 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
Andy Shevchenko743485ea2016-07-04 12:44:24 +030079static int lpss_spi_setup(struct pci_dev *dev, struct pxa_spi_info *c)
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +010080{
Mika Westerbergb729bf32014-08-19 20:29:19 +030081 struct pci_dev *dma_dev;
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +010082
Andy Shevchenko743485ea2016-07-04 12:44:24 +030083 c->num_chipselect = 1;
84 c->max_clk_rate = 50000000;
Mika Westerbergb729bf32014-08-19 20:29:19 +030085
86 dma_dev = pci_get_slot(dev->bus, PCI_DEVFN(PCI_SLOT(dev->devfn), 0));
87
88 if (c->tx_param) {
89 struct dw_dma_slave *slave = c->tx_param;
90
91 slave->dma_dev = &dma_dev->dev;
Andy Shevchenkoc4220252016-03-18 16:24:41 +020092 slave->m_master = 0;
93 slave->p_master = 1;
Mika Westerbergb729bf32014-08-19 20:29:19 +030094 }
95
96 if (c->rx_param) {
97 struct dw_dma_slave *slave = c->rx_param;
98
99 slave->dma_dev = &dma_dev->dev;
Andy Shevchenkoc4220252016-03-18 16:24:41 +0200100 slave->m_master = 0;
101 slave->p_master = 1;
Mika Westerbergb729bf32014-08-19 20:29:19 +0300102 }
103
Andy Shevchenko743485ea2016-07-04 12:44:24 +0300104 c->dma_filter = lpss_dma_filter;
105 return 0;
106}
107
Andy Shevchenko4f470912016-07-04 12:44:25 +0300108static int mrfld_spi_setup(struct pci_dev *dev, struct pxa_spi_info *c)
109{
Andy Shevchenko25014522017-01-02 13:47:31 +0200110 struct pci_dev *dma_dev = pci_get_slot(dev->bus, PCI_DEVFN(21, 0));
111 struct dw_dma_slave *tx, *rx;
112
Andy Shevchenko4f470912016-07-04 12:44:25 +0300113 switch (PCI_FUNC(dev->devfn)) {
114 case 0:
115 c->port_id = 3;
116 c->num_chipselect = 1;
Andy Shevchenko25014522017-01-02 13:47:31 +0200117 c->tx_param = &mrfld3_tx_param;
118 c->rx_param = &mrfld3_rx_param;
Andy Shevchenko4f470912016-07-04 12:44:25 +0300119 break;
120 case 1:
121 c->port_id = 5;
122 c->num_chipselect = 4;
Andy Shevchenko25014522017-01-02 13:47:31 +0200123 c->tx_param = &mrfld5_tx_param;
124 c->rx_param = &mrfld5_rx_param;
Andy Shevchenko4f470912016-07-04 12:44:25 +0300125 break;
126 case 2:
127 c->port_id = 6;
128 c->num_chipselect = 1;
Andy Shevchenko25014522017-01-02 13:47:31 +0200129 c->tx_param = &mrfld6_tx_param;
130 c->rx_param = &mrfld6_rx_param;
Andy Shevchenko4f470912016-07-04 12:44:25 +0300131 break;
132 default:
133 return -ENODEV;
134 }
Andy Shevchenko25014522017-01-02 13:47:31 +0200135
136 tx = c->tx_param;
137 tx->dma_dev = &dma_dev->dev;
138
139 rx = c->rx_param;
140 rx->dma_dev = &dma_dev->dev;
141
142 c->dma_filter = lpss_dma_filter;
Andy Shevchenko37821a822019-03-19 17:48:42 +0200143 c->dma_burst_size = 8;
Andy Shevchenko4f470912016-07-04 12:44:25 +0300144 return 0;
145}
146
Andy Shevchenko743485ea2016-07-04 12:44:24 +0300147static struct pxa_spi_info spi_info_configs[] = {
148 [PORT_CE4100] = {
149 .type = PXA25x_SSP,
150 .port_id = -1,
151 .num_chipselect = -1,
152 .max_clk_rate = 3686400,
153 },
154 [PORT_BYT] = {
155 .type = LPSS_BYT_SSP,
156 .port_id = 0,
157 .setup = lpss_spi_setup,
158 .tx_param = &byt_tx_param,
159 .rx_param = &byt_rx_param,
160 },
161 [PORT_BSW0] = {
Andy Shevchenkoca80ef72016-07-05 23:12:05 +0300162 .type = LPSS_BSW_SSP,
Andy Shevchenko743485ea2016-07-04 12:44:24 +0300163 .port_id = 0,
164 .setup = lpss_spi_setup,
165 .tx_param = &bsw0_tx_param,
166 .rx_param = &bsw0_rx_param,
167 },
168 [PORT_BSW1] = {
Andy Shevchenkoca80ef72016-07-05 23:12:05 +0300169 .type = LPSS_BSW_SSP,
Andy Shevchenko743485ea2016-07-04 12:44:24 +0300170 .port_id = 1,
171 .setup = lpss_spi_setup,
172 .tx_param = &bsw1_tx_param,
173 .rx_param = &bsw1_rx_param,
174 },
175 [PORT_BSW2] = {
Andy Shevchenkoca80ef72016-07-05 23:12:05 +0300176 .type = LPSS_BSW_SSP,
Andy Shevchenko743485ea2016-07-04 12:44:24 +0300177 .port_id = 2,
178 .setup = lpss_spi_setup,
179 .tx_param = &bsw2_tx_param,
180 .rx_param = &bsw2_rx_param,
181 },
Andy Shevchenko4f470912016-07-04 12:44:25 +0300182 [PORT_MRFLD] = {
Andy Shevchenko3fdb59c2021-05-10 15:41:34 +0300183 .type = MRFLD_SSP,
Andy Shevchenko4f470912016-07-04 12:44:25 +0300184 .max_clk_rate = 25000000,
185 .setup = mrfld_spi_setup,
186 },
Andy Shevchenko743485ea2016-07-04 12:44:24 +0300187 [PORT_QUARK_X1000] = {
188 .type = QUARK_X1000_SSP,
189 .port_id = -1,
190 .num_chipselect = 1,
191 .max_clk_rate = 50000000,
192 },
Andy Shevchenko54c5d3b2021-02-08 18:38:15 +0200193 [PORT_LPT0] = {
Andy Shevchenko743485ea2016-07-04 12:44:24 +0300194 .type = LPSS_LPT_SSP,
195 .port_id = 0,
196 .setup = lpss_spi_setup,
Andy Shevchenko54c5d3b2021-02-08 18:38:15 +0200197 .tx_param = &lpt0_tx_param,
198 .rx_param = &lpt0_rx_param,
199 },
200 [PORT_LPT1] = {
201 .type = LPSS_LPT_SSP,
202 .port_id = 1,
203 .setup = lpss_spi_setup,
204 .tx_param = &lpt1_tx_param,
205 .rx_param = &lpt1_rx_param,
Andy Shevchenko743485ea2016-07-04 12:44:24 +0300206 },
207};
208
209static int pxa2xx_spi_pci_probe(struct pci_dev *dev,
210 const struct pci_device_id *ent)
211{
212 struct platform_device_info pi;
213 int ret;
214 struct platform_device *pdev;
Lubomir Rintel51eea522019-01-16 16:13:31 +0100215 struct pxa2xx_spi_controller spi_pdata;
Andy Shevchenko743485ea2016-07-04 12:44:24 +0300216 struct ssp_device *ssp;
217 struct pxa_spi_info *c;
218 char buf[40];
219
220 ret = pcim_enable_device(dev);
221 if (ret)
222 return ret;
223
224 ret = pcim_iomap_regions(dev, 1 << 0, "PXA2xx SPI");
225 if (ret)
226 return ret;
227
228 c = &spi_info_configs[ent->driver_data];
229 if (c->setup) {
230 ret = c->setup(dev, c);
231 if (ret)
232 return ret;
233 }
234
235 memset(&spi_pdata, 0, sizeof(spi_pdata));
236 spi_pdata.num_chipselect = (c->num_chipselect > 0) ? c->num_chipselect : dev->devfn;
237 spi_pdata.dma_filter = c->dma_filter;
Mika Westerbergb729bf32014-08-19 20:29:19 +0300238 spi_pdata.tx_param = c->tx_param;
239 spi_pdata.rx_param = c->rx_param;
240 spi_pdata.enable_dma = c->rx_param && c->tx_param;
Andy Shevchenko37821a822019-03-19 17:48:42 +0200241 spi_pdata.dma_burst_size = c->dma_burst_size ? c->dma_burst_size : 1;
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100242
Mika Westerberg851bacf2013-01-07 12:44:33 +0200243 ssp = &spi_pdata.ssp;
Andy Shevchenkoc3dce242021-04-23 21:24:30 +0300244 ssp->dev = &dev->dev;
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100245 ssp->phys_base = pci_resource_start(dev, 0);
Mika Westerberg02027752013-01-07 12:44:32 +0200246 ssp->mmio_base = pcim_iomap_table(dev)[0];
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +0800247 ssp->port_id = (c->port_id >= 0) ? c->port_id : dev->devfn;
248 ssp->type = c->type;
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100249
Jan Kiszka64e02cb2017-01-21 10:06:39 +0100250 pci_set_master(dev);
251
252 ret = pci_alloc_irq_vectors(dev, 1, 1, PCI_IRQ_ALL_TYPES);
253 if (ret < 0)
254 return ret;
255 ssp->irq = pci_irq_vector(dev, 0);
256
Chew, Chiau Eeafa93c92014-07-25 01:10:54 +0800257 snprintf(buf, sizeof(buf), "pxa2xx-spi.%d", ssp->port_id);
Jay Fangc07caca2021-03-24 14:16:34 +0800258 ssp->clk = clk_register_fixed_rate(&dev->dev, buf, NULL, 0,
Stephen Boyd280af2b2016-04-19 18:10:07 -0700259 c->max_clk_rate);
Jiapeng Chongdbfac812021-05-21 17:47:45 +0800260 if (IS_ERR(ssp->clk))
Chew, Chiau Eeafa93c92014-07-25 01:10:54 +0800261 return PTR_ERR(ssp->clk);
262
Mika Westerberg02027752013-01-07 12:44:32 +0200263 memset(&pi, 0, sizeof(pi));
Andy Shevchenkob70cd2d2016-08-24 14:11:30 +0300264 pi.fwnode = dev->dev.fwnode;
Mika Westerberg02027752013-01-07 12:44:32 +0200265 pi.parent = &dev->dev;
266 pi.name = "pxa2xx-spi";
267 pi.id = ssp->port_id;
268 pi.data = &spi_pdata;
269 pi.size_data = sizeof(spi_pdata);
270
271 pdev = platform_device_register_full(&pi);
Chew, Chiau Eeafa93c92014-07-25 01:10:54 +0800272 if (IS_ERR(pdev)) {
273 clk_unregister(ssp->clk);
Wei Yongjund77b5382013-02-22 10:52:35 +0800274 return PTR_ERR(pdev);
Chew, Chiau Eeafa93c92014-07-25 01:10:54 +0800275 }
Mika Westerberg02027752013-01-07 12:44:32 +0200276
Mika Westerberg851bacf2013-01-07 12:44:33 +0200277 pci_set_drvdata(dev, pdev);
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100278
Mika Westerberg02027752013-01-07 12:44:32 +0200279 return 0;
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100280}
281
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +0800282static void pxa2xx_spi_pci_remove(struct pci_dev *dev)
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100283{
Mika Westerberg851bacf2013-01-07 12:44:33 +0200284 struct platform_device *pdev = pci_get_drvdata(dev);
Lubomir Rintel51eea522019-01-16 16:13:31 +0100285 struct pxa2xx_spi_controller *spi_pdata;
Chew, Chiau Eeafa93c92014-07-25 01:10:54 +0800286
287 spi_pdata = dev_get_platdata(&pdev->dev);
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100288
Mika Westerberg851bacf2013-01-07 12:44:33 +0200289 platform_device_unregister(pdev);
Chew, Chiau Eeafa93c92014-07-25 01:10:54 +0800290 clk_unregister(spi_pdata->ssp.clk);
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100291}
292
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +0800293static const struct pci_device_id pxa2xx_spi_pci_devices[] = {
Weike Chene5262d02014-11-26 02:35:10 -0800294 { PCI_VDEVICE(INTEL, 0x0935), PORT_QUARK_X1000 },
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +0800295 { PCI_VDEVICE(INTEL, 0x0f0e), PORT_BYT },
Andy Shevchenko4f470912016-07-04 12:44:25 +0300296 { PCI_VDEVICE(INTEL, 0x1194), PORT_MRFLD },
Mika Westerberg39d36532014-08-19 20:29:21 +0300297 { PCI_VDEVICE(INTEL, 0x228e), PORT_BSW0 },
298 { PCI_VDEVICE(INTEL, 0x2290), PORT_BSW1 },
299 { PCI_VDEVICE(INTEL, 0x22ac), PORT_BSW2 },
Andy Shevchenkoe379d2c2016-07-04 12:44:27 +0300300 { PCI_VDEVICE(INTEL, 0x2e6a), PORT_CE4100 },
Andy Shevchenko23951832021-02-08 18:38:16 +0200301 { PCI_VDEVICE(INTEL, 0x9c65), PORT_LPT0 },
302 { PCI_VDEVICE(INTEL, 0x9c66), PORT_LPT1 },
Andy Shevchenko54c5d3b2021-02-08 18:38:15 +0200303 { PCI_VDEVICE(INTEL, 0x9ce5), PORT_LPT0 },
304 { PCI_VDEVICE(INTEL, 0x9ce6), PORT_LPT1 },
305 { }
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100306};
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +0800307MODULE_DEVICE_TABLE(pci, pxa2xx_spi_pci_devices);
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100308
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +0800309static struct pci_driver pxa2xx_spi_pci_driver = {
310 .name = "pxa2xx_spi_pci",
311 .id_table = pxa2xx_spi_pci_devices,
312 .probe = pxa2xx_spi_pci_probe,
313 .remove = pxa2xx_spi_pci_remove,
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100314};
315
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +0800316module_pci_driver(pxa2xx_spi_pci_driver);
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100317
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +0800318MODULE_DESCRIPTION("CE4100/LPSS PCI-SPI glue code for PXA's driver");
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100319MODULE_LICENSE("GPL v2");
320MODULE_AUTHOR("Sebastian Andrzej Siewior <bigeasy@linutronix.de>");