blob: f236e3034cf85f418bafed48e1702b4c5d1606d4 [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/*
3 * CE4100's SPI device is more or less the same one as found on PXA
4 *
Andy Shevchenkoe379d2c2016-07-04 12:44:27 +03005 * Copyright (C) 2016, Intel Corporation
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +01006 */
Andy Shevchenkoe379d2c2016-07-04 12:44:27 +03007#include <linux/clk-provider.h>
8#include <linux/module.h>
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +01009#include <linux/pci.h>
10#include <linux/platform_device.h>
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +010011#include <linux/spi/pxa2xx_spi.h>
12
Mika Westerbergb729bf32014-08-19 20:29:19 +030013#include <linux/dmaengine.h>
14#include <linux/platform_data/dma-dw.h>
15
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +080016enum {
Andy Shevchenkoe379d2c2016-07-04 12:44:27 +030017 PORT_QUARK_X1000,
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +080018 PORT_BYT,
Andy Shevchenko4f470912016-07-04 12:44:25 +030019 PORT_MRFLD,
Mika Westerberg39d36532014-08-19 20:29:21 +030020 PORT_BSW0,
21 PORT_BSW1,
22 PORT_BSW2,
Andy Shevchenkoe379d2c2016-07-04 12:44:27 +030023 PORT_CE4100,
Leif Liddycaba2482016-02-20 20:20:22 +010024 PORT_LPT,
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +080025};
26
27struct pxa_spi_info {
28 enum pxa_ssp_type type;
29 int port_id;
30 int num_chipselect;
Chew, Chiau Eeafa93c92014-07-25 01:10:54 +080031 unsigned long max_clk_rate;
Mika Westerbergb729bf32014-08-19 20:29:19 +030032
33 /* DMA channel request parameters */
Andy Shevchenko743485ea2016-07-04 12:44:24 +030034 bool (*dma_filter)(struct dma_chan *chan, void *param);
Mika Westerbergb729bf32014-08-19 20:29:19 +030035 void *tx_param;
36 void *rx_param;
Andy Shevchenko743485ea2016-07-04 12:44:24 +030037
Andy Shevchenko37821a822019-03-19 17:48:42 +020038 int dma_burst_size;
39
Andy Shevchenko743485ea2016-07-04 12:44:24 +030040 int (*setup)(struct pci_dev *pdev, struct pxa_spi_info *c);
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +080041};
42
Mika Westerbergb729bf32014-08-19 20:29:19 +030043static struct dw_dma_slave byt_tx_param = { .dst_id = 0 };
44static struct dw_dma_slave byt_rx_param = { .src_id = 1 };
45
Andy Shevchenko25014522017-01-02 13:47:31 +020046static struct dw_dma_slave mrfld3_tx_param = { .dst_id = 15 };
47static struct dw_dma_slave mrfld3_rx_param = { .src_id = 14 };
48static struct dw_dma_slave mrfld5_tx_param = { .dst_id = 13 };
49static struct dw_dma_slave mrfld5_rx_param = { .src_id = 12 };
50static struct dw_dma_slave mrfld6_tx_param = { .dst_id = 11 };
51static struct dw_dma_slave mrfld6_rx_param = { .src_id = 10 };
52
Mika Westerberg39d36532014-08-19 20:29:21 +030053static struct dw_dma_slave bsw0_tx_param = { .dst_id = 0 };
54static struct dw_dma_slave bsw0_rx_param = { .src_id = 1 };
55static struct dw_dma_slave bsw1_tx_param = { .dst_id = 6 };
56static struct dw_dma_slave bsw1_rx_param = { .src_id = 7 };
57static struct dw_dma_slave bsw2_tx_param = { .dst_id = 8 };
58static struct dw_dma_slave bsw2_rx_param = { .src_id = 9 };
59
Leif Liddycaba2482016-02-20 20:20:22 +010060static struct dw_dma_slave lpt_tx_param = { .dst_id = 0 };
61static struct dw_dma_slave lpt_rx_param = { .src_id = 1 };
62
Mika Westerbergb729bf32014-08-19 20:29:19 +030063static bool lpss_dma_filter(struct dma_chan *chan, void *param)
64{
65 struct dw_dma_slave *dws = param;
66
67 if (dws->dma_dev != chan->device->dev)
68 return false;
69
70 chan->private = dws;
71 return true;
72}
73
Andy Shevchenko743485ea2016-07-04 12:44:24 +030074static int lpss_spi_setup(struct pci_dev *dev, struct pxa_spi_info *c)
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +010075{
Mika Westerbergb729bf32014-08-19 20:29:19 +030076 struct pci_dev *dma_dev;
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +010077
Andy Shevchenko743485ea2016-07-04 12:44:24 +030078 c->num_chipselect = 1;
79 c->max_clk_rate = 50000000;
Mika Westerbergb729bf32014-08-19 20:29:19 +030080
81 dma_dev = pci_get_slot(dev->bus, PCI_DEVFN(PCI_SLOT(dev->devfn), 0));
82
83 if (c->tx_param) {
84 struct dw_dma_slave *slave = c->tx_param;
85
86 slave->dma_dev = &dma_dev->dev;
Andy Shevchenkoc4220252016-03-18 16:24:41 +020087 slave->m_master = 0;
88 slave->p_master = 1;
Mika Westerbergb729bf32014-08-19 20:29:19 +030089 }
90
91 if (c->rx_param) {
92 struct dw_dma_slave *slave = c->rx_param;
93
94 slave->dma_dev = &dma_dev->dev;
Andy Shevchenkoc4220252016-03-18 16:24:41 +020095 slave->m_master = 0;
96 slave->p_master = 1;
Mika Westerbergb729bf32014-08-19 20:29:19 +030097 }
98
Andy Shevchenko743485ea2016-07-04 12:44:24 +030099 c->dma_filter = lpss_dma_filter;
100 return 0;
101}
102
Andy Shevchenko4f470912016-07-04 12:44:25 +0300103static int mrfld_spi_setup(struct pci_dev *dev, struct pxa_spi_info *c)
104{
Andy Shevchenko25014522017-01-02 13:47:31 +0200105 struct pci_dev *dma_dev = pci_get_slot(dev->bus, PCI_DEVFN(21, 0));
106 struct dw_dma_slave *tx, *rx;
107
Andy Shevchenko4f470912016-07-04 12:44:25 +0300108 switch (PCI_FUNC(dev->devfn)) {
109 case 0:
110 c->port_id = 3;
111 c->num_chipselect = 1;
Andy Shevchenko25014522017-01-02 13:47:31 +0200112 c->tx_param = &mrfld3_tx_param;
113 c->rx_param = &mrfld3_rx_param;
Andy Shevchenko4f470912016-07-04 12:44:25 +0300114 break;
115 case 1:
116 c->port_id = 5;
117 c->num_chipselect = 4;
Andy Shevchenko25014522017-01-02 13:47:31 +0200118 c->tx_param = &mrfld5_tx_param;
119 c->rx_param = &mrfld5_rx_param;
Andy Shevchenko4f470912016-07-04 12:44:25 +0300120 break;
121 case 2:
122 c->port_id = 6;
123 c->num_chipselect = 1;
Andy Shevchenko25014522017-01-02 13:47:31 +0200124 c->tx_param = &mrfld6_tx_param;
125 c->rx_param = &mrfld6_rx_param;
Andy Shevchenko4f470912016-07-04 12:44:25 +0300126 break;
127 default:
128 return -ENODEV;
129 }
Andy Shevchenko25014522017-01-02 13:47:31 +0200130
131 tx = c->tx_param;
132 tx->dma_dev = &dma_dev->dev;
133
134 rx = c->rx_param;
135 rx->dma_dev = &dma_dev->dev;
136
137 c->dma_filter = lpss_dma_filter;
Andy Shevchenko37821a822019-03-19 17:48:42 +0200138 c->dma_burst_size = 8;
Andy Shevchenko4f470912016-07-04 12:44:25 +0300139 return 0;
140}
141
Andy Shevchenko743485ea2016-07-04 12:44:24 +0300142static struct pxa_spi_info spi_info_configs[] = {
143 [PORT_CE4100] = {
144 .type = PXA25x_SSP,
145 .port_id = -1,
146 .num_chipselect = -1,
147 .max_clk_rate = 3686400,
148 },
149 [PORT_BYT] = {
150 .type = LPSS_BYT_SSP,
151 .port_id = 0,
152 .setup = lpss_spi_setup,
153 .tx_param = &byt_tx_param,
154 .rx_param = &byt_rx_param,
155 },
156 [PORT_BSW0] = {
Andy Shevchenkoca80ef72016-07-05 23:12:05 +0300157 .type = LPSS_BSW_SSP,
Andy Shevchenko743485ea2016-07-04 12:44:24 +0300158 .port_id = 0,
159 .setup = lpss_spi_setup,
160 .tx_param = &bsw0_tx_param,
161 .rx_param = &bsw0_rx_param,
162 },
163 [PORT_BSW1] = {
Andy Shevchenkoca80ef72016-07-05 23:12:05 +0300164 .type = LPSS_BSW_SSP,
Andy Shevchenko743485ea2016-07-04 12:44:24 +0300165 .port_id = 1,
166 .setup = lpss_spi_setup,
167 .tx_param = &bsw1_tx_param,
168 .rx_param = &bsw1_rx_param,
169 },
170 [PORT_BSW2] = {
Andy Shevchenkoca80ef72016-07-05 23:12:05 +0300171 .type = LPSS_BSW_SSP,
Andy Shevchenko743485ea2016-07-04 12:44:24 +0300172 .port_id = 2,
173 .setup = lpss_spi_setup,
174 .tx_param = &bsw2_tx_param,
175 .rx_param = &bsw2_rx_param,
176 },
Andy Shevchenko4f470912016-07-04 12:44:25 +0300177 [PORT_MRFLD] = {
178 .type = PXA27x_SSP,
179 .max_clk_rate = 25000000,
180 .setup = mrfld_spi_setup,
181 },
Andy Shevchenko743485ea2016-07-04 12:44:24 +0300182 [PORT_QUARK_X1000] = {
183 .type = QUARK_X1000_SSP,
184 .port_id = -1,
185 .num_chipselect = 1,
186 .max_clk_rate = 50000000,
187 },
188 [PORT_LPT] = {
189 .type = LPSS_LPT_SSP,
190 .port_id = 0,
191 .setup = lpss_spi_setup,
192 .tx_param = &lpt_tx_param,
193 .rx_param = &lpt_rx_param,
194 },
195};
196
197static int pxa2xx_spi_pci_probe(struct pci_dev *dev,
198 const struct pci_device_id *ent)
199{
200 struct platform_device_info pi;
201 int ret;
202 struct platform_device *pdev;
Lubomir Rintel51eea522019-01-16 16:13:31 +0100203 struct pxa2xx_spi_controller spi_pdata;
Andy Shevchenko743485ea2016-07-04 12:44:24 +0300204 struct ssp_device *ssp;
205 struct pxa_spi_info *c;
206 char buf[40];
207
208 ret = pcim_enable_device(dev);
209 if (ret)
210 return ret;
211
212 ret = pcim_iomap_regions(dev, 1 << 0, "PXA2xx SPI");
213 if (ret)
214 return ret;
215
216 c = &spi_info_configs[ent->driver_data];
217 if (c->setup) {
218 ret = c->setup(dev, c);
219 if (ret)
220 return ret;
221 }
222
223 memset(&spi_pdata, 0, sizeof(spi_pdata));
224 spi_pdata.num_chipselect = (c->num_chipselect > 0) ? c->num_chipselect : dev->devfn;
225 spi_pdata.dma_filter = c->dma_filter;
Mika Westerbergb729bf32014-08-19 20:29:19 +0300226 spi_pdata.tx_param = c->tx_param;
227 spi_pdata.rx_param = c->rx_param;
228 spi_pdata.enable_dma = c->rx_param && c->tx_param;
Andy Shevchenko37821a822019-03-19 17:48:42 +0200229 spi_pdata.dma_burst_size = c->dma_burst_size ? c->dma_burst_size : 1;
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100230
Mika Westerberg851bacf2013-01-07 12:44:33 +0200231 ssp = &spi_pdata.ssp;
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100232 ssp->phys_base = pci_resource_start(dev, 0);
Mika Westerberg02027752013-01-07 12:44:32 +0200233 ssp->mmio_base = pcim_iomap_table(dev)[0];
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +0800234 ssp->port_id = (c->port_id >= 0) ? c->port_id : dev->devfn;
235 ssp->type = c->type;
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100236
Jan Kiszka64e02cb2017-01-21 10:06:39 +0100237 pci_set_master(dev);
238
239 ret = pci_alloc_irq_vectors(dev, 1, 1, PCI_IRQ_ALL_TYPES);
240 if (ret < 0)
241 return ret;
242 ssp->irq = pci_irq_vector(dev, 0);
243
Chew, Chiau Eeafa93c92014-07-25 01:10:54 +0800244 snprintf(buf, sizeof(buf), "pxa2xx-spi.%d", ssp->port_id);
Stephen Boyd280af2b2016-04-19 18:10:07 -0700245 ssp->clk = clk_register_fixed_rate(&dev->dev, buf , NULL, 0,
246 c->max_clk_rate);
Chew, Chiau Eeafa93c92014-07-25 01:10:54 +0800247 if (IS_ERR(ssp->clk))
248 return PTR_ERR(ssp->clk);
249
Mika Westerberg02027752013-01-07 12:44:32 +0200250 memset(&pi, 0, sizeof(pi));
Andy Shevchenkob70cd2d2016-08-24 14:11:30 +0300251 pi.fwnode = dev->dev.fwnode;
Mika Westerberg02027752013-01-07 12:44:32 +0200252 pi.parent = &dev->dev;
253 pi.name = "pxa2xx-spi";
254 pi.id = ssp->port_id;
255 pi.data = &spi_pdata;
256 pi.size_data = sizeof(spi_pdata);
257
258 pdev = platform_device_register_full(&pi);
Chew, Chiau Eeafa93c92014-07-25 01:10:54 +0800259 if (IS_ERR(pdev)) {
260 clk_unregister(ssp->clk);
Wei Yongjund77b5382013-02-22 10:52:35 +0800261 return PTR_ERR(pdev);
Chew, Chiau Eeafa93c92014-07-25 01:10:54 +0800262 }
Mika Westerberg02027752013-01-07 12:44:32 +0200263
Mika Westerberg851bacf2013-01-07 12:44:33 +0200264 pci_set_drvdata(dev, pdev);
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100265
Mika Westerberg02027752013-01-07 12:44:32 +0200266 return 0;
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100267}
268
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +0800269static void pxa2xx_spi_pci_remove(struct pci_dev *dev)
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100270{
Mika Westerberg851bacf2013-01-07 12:44:33 +0200271 struct platform_device *pdev = pci_get_drvdata(dev);
Lubomir Rintel51eea522019-01-16 16:13:31 +0100272 struct pxa2xx_spi_controller *spi_pdata;
Chew, Chiau Eeafa93c92014-07-25 01:10:54 +0800273
274 spi_pdata = dev_get_platdata(&pdev->dev);
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100275
Mika Westerberg851bacf2013-01-07 12:44:33 +0200276 platform_device_unregister(pdev);
Chew, Chiau Eeafa93c92014-07-25 01:10:54 +0800277 clk_unregister(spi_pdata->ssp.clk);
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100278}
279
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +0800280static const struct pci_device_id pxa2xx_spi_pci_devices[] = {
Weike Chene5262d02014-11-26 02:35:10 -0800281 { PCI_VDEVICE(INTEL, 0x0935), PORT_QUARK_X1000 },
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +0800282 { PCI_VDEVICE(INTEL, 0x0f0e), PORT_BYT },
Andy Shevchenko4f470912016-07-04 12:44:25 +0300283 { PCI_VDEVICE(INTEL, 0x1194), PORT_MRFLD },
Mika Westerberg39d36532014-08-19 20:29:21 +0300284 { PCI_VDEVICE(INTEL, 0x228e), PORT_BSW0 },
285 { PCI_VDEVICE(INTEL, 0x2290), PORT_BSW1 },
286 { PCI_VDEVICE(INTEL, 0x22ac), PORT_BSW2 },
Andy Shevchenkoe379d2c2016-07-04 12:44:27 +0300287 { PCI_VDEVICE(INTEL, 0x2e6a), PORT_CE4100 },
Leif Liddycaba2482016-02-20 20:20:22 +0100288 { PCI_VDEVICE(INTEL, 0x9ce6), PORT_LPT },
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100289 { },
290};
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +0800291MODULE_DEVICE_TABLE(pci, pxa2xx_spi_pci_devices);
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100292
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +0800293static struct pci_driver pxa2xx_spi_pci_driver = {
294 .name = "pxa2xx_spi_pci",
295 .id_table = pxa2xx_spi_pci_devices,
296 .probe = pxa2xx_spi_pci_probe,
297 .remove = pxa2xx_spi_pci_remove,
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100298};
299
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +0800300module_pci_driver(pxa2xx_spi_pci_driver);
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100301
Chew, Chiau Eed6ba32d2014-04-18 00:26:06 +0800302MODULE_DESCRIPTION("CE4100/LPSS PCI-SPI glue code for PXA's driver");
Sebastian Andrzej Siewiord6ea3df2010-11-24 10:17:14 +0100303MODULE_LICENSE("GPL v2");
304MODULE_AUTHOR("Sebastian Andrzej Siewior <bigeasy@linutronix.de>");