blob: e6cd1112ae40d9afc072141840f936f4ee226fc3 [file] [log] [blame]
Andrei Konovalovae918c02007-07-17 04:04:11 -07001/*
Andrei Konovalovae918c02007-07-17 04:04:11 -07002 * Xilinx SPI controller driver (master mode only)
3 *
4 * Author: MontaVista Software, Inc.
5 * source@mvista.com
6 *
Grant Likely8fd88212010-10-14 09:04:29 -06007 * Copyright (c) 2010 Secret Lab Technologies, Ltd.
8 * Copyright (c) 2009 Intel Corporation
9 * 2002-2007 (c) MontaVista Software, Inc.
10
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
Andrei Konovalovae918c02007-07-17 04:04:11 -070014 */
15
16#include <linux/module.h>
Andrei Konovalovae918c02007-07-17 04:04:11 -070017#include <linux/interrupt.h>
Grant Likelyeae6cb32010-10-14 09:32:53 -060018#include <linux/of.h>
Grant Likely8fd88212010-10-14 09:04:29 -060019#include <linux/platform_device.h>
Andrei Konovalovae918c02007-07-17 04:04:11 -070020#include <linux/spi/spi.h>
21#include <linux/spi/spi_bitbang.h>
Richard Röjforsd5af91a2009-11-13 12:28:39 +010022#include <linux/spi/xilinx_spi.h>
Grant Likelyeae6cb32010-10-14 09:32:53 -060023#include <linux/io.h>
Richard Röjforsd5af91a2009-11-13 12:28:39 +010024
David Brownellfc3ba952007-08-30 23:56:24 -070025#define XILINX_SPI_NAME "xilinx_spi"
Andrei Konovalovae918c02007-07-17 04:04:11 -070026
27/* Register definitions as per "OPB Serial Peripheral Interface (SPI) (v1.00e)
28 * Product Specification", DS464
29 */
Richard Röjforsc9da2e12009-11-13 12:28:55 +010030#define XSPI_CR_OFFSET 0x60 /* Control Register */
Andrei Konovalovae918c02007-07-17 04:04:11 -070031
Michal Simek082339b2013-06-04 16:02:36 +020032#define XSPI_CR_LOOP 0x01
Andrei Konovalovae918c02007-07-17 04:04:11 -070033#define XSPI_CR_ENABLE 0x02
34#define XSPI_CR_MASTER_MODE 0x04
35#define XSPI_CR_CPOL 0x08
36#define XSPI_CR_CPHA 0x10
37#define XSPI_CR_MODE_MASK (XSPI_CR_CPHA | XSPI_CR_CPOL)
38#define XSPI_CR_TXFIFO_RESET 0x20
39#define XSPI_CR_RXFIFO_RESET 0x40
40#define XSPI_CR_MANUAL_SSELECT 0x80
41#define XSPI_CR_TRANS_INHIBIT 0x100
Richard Röjforsc9da2e12009-11-13 12:28:55 +010042#define XSPI_CR_LSB_FIRST 0x200
Andrei Konovalovae918c02007-07-17 04:04:11 -070043
Richard Röjforsc9da2e12009-11-13 12:28:55 +010044#define XSPI_SR_OFFSET 0x64 /* Status Register */
Andrei Konovalovae918c02007-07-17 04:04:11 -070045
46#define XSPI_SR_RX_EMPTY_MASK 0x01 /* Receive FIFO is empty */
47#define XSPI_SR_RX_FULL_MASK 0x02 /* Receive FIFO is full */
48#define XSPI_SR_TX_EMPTY_MASK 0x04 /* Transmit FIFO is empty */
49#define XSPI_SR_TX_FULL_MASK 0x08 /* Transmit FIFO is full */
50#define XSPI_SR_MODE_FAULT_MASK 0x10 /* Mode fault error */
51
Richard Röjforsc9da2e12009-11-13 12:28:55 +010052#define XSPI_TXD_OFFSET 0x68 /* Data Transmit Register */
53#define XSPI_RXD_OFFSET 0x6c /* Data Receive Register */
Andrei Konovalovae918c02007-07-17 04:04:11 -070054
55#define XSPI_SSR_OFFSET 0x70 /* 32-bit Slave Select Register */
56
57/* Register definitions as per "OPB IPIF (v3.01c) Product Specification", DS414
58 * IPIF registers are 32 bit
59 */
60#define XIPIF_V123B_DGIER_OFFSET 0x1c /* IPIF global int enable reg */
61#define XIPIF_V123B_GINTR_ENABLE 0x80000000
62
63#define XIPIF_V123B_IISR_OFFSET 0x20 /* IPIF interrupt status reg */
64#define XIPIF_V123B_IIER_OFFSET 0x28 /* IPIF interrupt enable reg */
65
66#define XSPI_INTR_MODE_FAULT 0x01 /* Mode fault error */
67#define XSPI_INTR_SLAVE_MODE_FAULT 0x02 /* Selected as slave while
68 * disabled */
69#define XSPI_INTR_TX_EMPTY 0x04 /* TxFIFO is empty */
70#define XSPI_INTR_TX_UNDERRUN 0x08 /* TxFIFO was underrun */
71#define XSPI_INTR_RX_FULL 0x10 /* RxFIFO is full */
72#define XSPI_INTR_RX_OVERRUN 0x20 /* RxFIFO was overrun */
Richard Röjforsc9da2e12009-11-13 12:28:55 +010073#define XSPI_INTR_TX_HALF_EMPTY 0x40 /* TxFIFO is half empty */
Andrei Konovalovae918c02007-07-17 04:04:11 -070074
75#define XIPIF_V123B_RESETR_OFFSET 0x40 /* IPIF reset register */
76#define XIPIF_V123B_RESET_MASK 0x0a /* the value to write */
77
78struct xilinx_spi {
79 /* bitbang has to be first */
80 struct spi_bitbang bitbang;
81 struct completion done;
Andrei Konovalovae918c02007-07-17 04:04:11 -070082 void __iomem *regs; /* virt. address of the control registers */
83
Dan Carpenter9ca12732013-07-17 18:34:48 +030084 int irq;
Andrei Konovalovae918c02007-07-17 04:04:11 -070085
Andrei Konovalovae918c02007-07-17 04:04:11 -070086 u8 *rx_ptr; /* pointer in the Tx buffer */
87 const u8 *tx_ptr; /* pointer in the Rx buffer */
88 int remaining_bytes; /* the number of bytes left to transfer */
Richard Röjforsc9da2e12009-11-13 12:28:55 +010089 u8 bits_per_word;
Richard Röjfors86fc5932009-11-13 12:28:49 +010090 unsigned int (*read_fn) (void __iomem *);
91 void (*write_fn) (u32, void __iomem *);
Richard Röjforsc9da2e12009-11-13 12:28:55 +010092 void (*tx_fn) (struct xilinx_spi *);
93 void (*rx_fn) (struct xilinx_spi *);
Andrei Konovalovae918c02007-07-17 04:04:11 -070094};
95
Paul Mundt97782142010-01-20 13:49:45 -070096static void xspi_write32(u32 val, void __iomem *addr)
97{
98 iowrite32(val, addr);
99}
100
101static unsigned int xspi_read32(void __iomem *addr)
102{
103 return ioread32(addr);
104}
105
106static void xspi_write32_be(u32 val, void __iomem *addr)
107{
108 iowrite32be(val, addr);
109}
110
111static unsigned int xspi_read32_be(void __iomem *addr)
112{
113 return ioread32be(addr);
114}
115
Richard Röjforsc9da2e12009-11-13 12:28:55 +0100116static void xspi_tx8(struct xilinx_spi *xspi)
117{
118 xspi->write_fn(*xspi->tx_ptr, xspi->regs + XSPI_TXD_OFFSET);
119 xspi->tx_ptr++;
120}
121
122static void xspi_tx16(struct xilinx_spi *xspi)
123{
124 xspi->write_fn(*(u16 *)(xspi->tx_ptr), xspi->regs + XSPI_TXD_OFFSET);
125 xspi->tx_ptr += 2;
126}
127
128static void xspi_tx32(struct xilinx_spi *xspi)
129{
130 xspi->write_fn(*(u32 *)(xspi->tx_ptr), xspi->regs + XSPI_TXD_OFFSET);
131 xspi->tx_ptr += 4;
132}
133
134static void xspi_rx8(struct xilinx_spi *xspi)
135{
136 u32 data = xspi->read_fn(xspi->regs + XSPI_RXD_OFFSET);
137 if (xspi->rx_ptr) {
138 *xspi->rx_ptr = data & 0xff;
139 xspi->rx_ptr++;
140 }
141}
142
143static void xspi_rx16(struct xilinx_spi *xspi)
144{
145 u32 data = xspi->read_fn(xspi->regs + XSPI_RXD_OFFSET);
146 if (xspi->rx_ptr) {
147 *(u16 *)(xspi->rx_ptr) = data & 0xffff;
148 xspi->rx_ptr += 2;
149 }
150}
151
152static void xspi_rx32(struct xilinx_spi *xspi)
153{
154 u32 data = xspi->read_fn(xspi->regs + XSPI_RXD_OFFSET);
155 if (xspi->rx_ptr) {
156 *(u32 *)(xspi->rx_ptr) = data;
157 xspi->rx_ptr += 4;
158 }
159}
160
Richard Röjfors86fc5932009-11-13 12:28:49 +0100161static void xspi_init_hw(struct xilinx_spi *xspi)
Andrei Konovalovae918c02007-07-17 04:04:11 -0700162{
Richard Röjfors86fc5932009-11-13 12:28:49 +0100163 void __iomem *regs_base = xspi->regs;
164
Andrei Konovalovae918c02007-07-17 04:04:11 -0700165 /* Reset the SPI device */
Richard Röjfors86fc5932009-11-13 12:28:49 +0100166 xspi->write_fn(XIPIF_V123B_RESET_MASK,
167 regs_base + XIPIF_V123B_RESETR_OFFSET);
Andrei Konovalovae918c02007-07-17 04:04:11 -0700168 /* Disable all the interrupts just in case */
Richard Röjfors86fc5932009-11-13 12:28:49 +0100169 xspi->write_fn(0, regs_base + XIPIF_V123B_IIER_OFFSET);
Andrei Konovalovae918c02007-07-17 04:04:11 -0700170 /* Enable the global IPIF interrupt */
Richard Röjfors86fc5932009-11-13 12:28:49 +0100171 xspi->write_fn(XIPIF_V123B_GINTR_ENABLE,
172 regs_base + XIPIF_V123B_DGIER_OFFSET);
Andrei Konovalovae918c02007-07-17 04:04:11 -0700173 /* Deselect the slave on the SPI bus */
Richard Röjfors86fc5932009-11-13 12:28:49 +0100174 xspi->write_fn(0xffff, regs_base + XSPI_SSR_OFFSET);
Andrei Konovalovae918c02007-07-17 04:04:11 -0700175 /* Disable the transmitter, enable Manual Slave Select Assertion,
176 * put SPI controller into master mode, and enable it */
Richard Röjfors86fc5932009-11-13 12:28:49 +0100177 xspi->write_fn(XSPI_CR_TRANS_INHIBIT | XSPI_CR_MANUAL_SSELECT |
Richard Röjforsc9da2e12009-11-13 12:28:55 +0100178 XSPI_CR_MASTER_MODE | XSPI_CR_ENABLE | XSPI_CR_TXFIFO_RESET |
179 XSPI_CR_RXFIFO_RESET, regs_base + XSPI_CR_OFFSET);
Andrei Konovalovae918c02007-07-17 04:04:11 -0700180}
181
182static void xilinx_spi_chipselect(struct spi_device *spi, int is_on)
183{
184 struct xilinx_spi *xspi = spi_master_get_devdata(spi->master);
185
186 if (is_on == BITBANG_CS_INACTIVE) {
187 /* Deselect the slave on the SPI bus */
Richard Röjfors86fc5932009-11-13 12:28:49 +0100188 xspi->write_fn(0xffff, xspi->regs + XSPI_SSR_OFFSET);
Andrei Konovalovae918c02007-07-17 04:04:11 -0700189 } else if (is_on == BITBANG_CS_ACTIVE) {
190 /* Set the SPI clock phase and polarity */
Richard Röjfors86fc5932009-11-13 12:28:49 +0100191 u16 cr = xspi->read_fn(xspi->regs + XSPI_CR_OFFSET)
Andrei Konovalovae918c02007-07-17 04:04:11 -0700192 & ~XSPI_CR_MODE_MASK;
193 if (spi->mode & SPI_CPHA)
194 cr |= XSPI_CR_CPHA;
195 if (spi->mode & SPI_CPOL)
196 cr |= XSPI_CR_CPOL;
Richard Röjfors86fc5932009-11-13 12:28:49 +0100197 xspi->write_fn(cr, xspi->regs + XSPI_CR_OFFSET);
Andrei Konovalovae918c02007-07-17 04:04:11 -0700198
199 /* We do not check spi->max_speed_hz here as the SPI clock
200 * frequency is not software programmable (the IP block design
201 * parameter)
202 */
203
204 /* Activate the chip select */
Richard Röjfors86fc5932009-11-13 12:28:49 +0100205 xspi->write_fn(~(0x0001 << spi->chip_select),
206 xspi->regs + XSPI_SSR_OFFSET);
Andrei Konovalovae918c02007-07-17 04:04:11 -0700207 }
208}
209
210/* spi_bitbang requires custom setup_transfer() to be defined if there is a
211 * custom txrx_bufs(). We have nothing to setup here as the SPI IP block
Richard Röjforsc9da2e12009-11-13 12:28:55 +0100212 * supports 8 or 16 bits per word which cannot be changed in software.
213 * SPI clock can't be changed in software either.
214 * Check for correct bits per word. Chip select delay calculations could be
Andrei Konovalovae918c02007-07-17 04:04:11 -0700215 * added here as soon as bitbang_work() can be made aware of the delay value.
216 */
217static int xilinx_spi_setup_transfer(struct spi_device *spi,
218 struct spi_transfer *t)
219{
Richard Röjforsc9da2e12009-11-13 12:28:55 +0100220 struct xilinx_spi *xspi = spi_master_get_devdata(spi->master);
Andrei Konovalovae918c02007-07-17 04:04:11 -0700221 u8 bits_per_word;
Andrei Konovalovae918c02007-07-17 04:04:11 -0700222
John Linn1a8d3b72009-09-14 08:17:05 +0000223 bits_per_word = (t && t->bits_per_word)
224 ? t->bits_per_word : spi->bits_per_word;
Richard Röjforsc9da2e12009-11-13 12:28:55 +0100225 if (bits_per_word != xspi->bits_per_word) {
Andrei Konovalovae918c02007-07-17 04:04:11 -0700226 dev_err(&spi->dev, "%s, unsupported bits_per_word=%d\n",
Harvey Harrisonb687d2a2008-04-28 02:14:19 -0700227 __func__, bits_per_word);
Andrei Konovalovae918c02007-07-17 04:04:11 -0700228 return -EINVAL;
229 }
230
Andrei Konovalovae918c02007-07-17 04:04:11 -0700231 return 0;
232}
233
Andrei Konovalovae918c02007-07-17 04:04:11 -0700234static void xilinx_spi_fill_tx_fifo(struct xilinx_spi *xspi)
235{
236 u8 sr;
237
238 /* Fill the Tx FIFO with as many bytes as possible */
Richard Röjfors86fc5932009-11-13 12:28:49 +0100239 sr = xspi->read_fn(xspi->regs + XSPI_SR_OFFSET);
Andrei Konovalovae918c02007-07-17 04:04:11 -0700240 while ((sr & XSPI_SR_TX_FULL_MASK) == 0 && xspi->remaining_bytes > 0) {
Richard Röjfors86fc5932009-11-13 12:28:49 +0100241 if (xspi->tx_ptr)
Richard Röjforsc9da2e12009-11-13 12:28:55 +0100242 xspi->tx_fn(xspi);
Richard Röjfors86fc5932009-11-13 12:28:49 +0100243 else
244 xspi->write_fn(0, xspi->regs + XSPI_TXD_OFFSET);
Richard Röjforsc9da2e12009-11-13 12:28:55 +0100245 xspi->remaining_bytes -= xspi->bits_per_word / 8;
Richard Röjfors86fc5932009-11-13 12:28:49 +0100246 sr = xspi->read_fn(xspi->regs + XSPI_SR_OFFSET);
Andrei Konovalovae918c02007-07-17 04:04:11 -0700247 }
248}
249
250static int xilinx_spi_txrx_bufs(struct spi_device *spi, struct spi_transfer *t)
251{
252 struct xilinx_spi *xspi = spi_master_get_devdata(spi->master);
253 u32 ipif_ier;
Andrei Konovalovae918c02007-07-17 04:04:11 -0700254
255 /* We get here with transmitter inhibited */
256
257 xspi->tx_ptr = t->tx_buf;
258 xspi->rx_ptr = t->rx_buf;
259 xspi->remaining_bytes = t->len;
Wolfram Sang16735d02013-11-14 14:32:02 -0800260 reinit_completion(&xspi->done);
Andrei Konovalovae918c02007-07-17 04:04:11 -0700261
Andrei Konovalovae918c02007-07-17 04:04:11 -0700262
263 /* Enable the transmit empty interrupt, which we use to determine
264 * progress on the transmission.
265 */
Richard Röjfors86fc5932009-11-13 12:28:49 +0100266 ipif_ier = xspi->read_fn(xspi->regs + XIPIF_V123B_IIER_OFFSET);
267 xspi->write_fn(ipif_ier | XSPI_INTR_TX_EMPTY,
268 xspi->regs + XIPIF_V123B_IIER_OFFSET);
Andrei Konovalovae918c02007-07-17 04:04:11 -0700269
Peter Crosthwaite68c315b2013-06-04 16:02:34 +0200270 for (;;) {
271 u16 cr;
272 u8 sr;
Andrei Konovalovae918c02007-07-17 04:04:11 -0700273
Peter Crosthwaite68c315b2013-06-04 16:02:34 +0200274 xilinx_spi_fill_tx_fifo(xspi);
275
276 /* Start the transfer by not inhibiting the transmitter any
277 * longer
278 */
279 cr = xspi->read_fn(xspi->regs + XSPI_CR_OFFSET) &
280 ~XSPI_CR_TRANS_INHIBIT;
281 xspi->write_fn(cr, xspi->regs + XSPI_CR_OFFSET);
282
283 wait_for_completion(&xspi->done);
284
285 /* A transmit has just completed. Process received data and
286 * check for more data to transmit. Always inhibit the
287 * transmitter while the Isr refills the transmit register/FIFO,
288 * or make sure it is stopped if we're done.
289 */
290 cr = xspi->read_fn(xspi->regs + XSPI_CR_OFFSET);
291 xspi->write_fn(cr | XSPI_CR_TRANS_INHIBIT,
292 xspi->regs + XSPI_CR_OFFSET);
293
294 /* Read out all the data from the Rx FIFO */
295 sr = xspi->read_fn(xspi->regs + XSPI_SR_OFFSET);
296 while ((sr & XSPI_SR_RX_EMPTY_MASK) == 0) {
297 xspi->rx_fn(xspi);
298 sr = xspi->read_fn(xspi->regs + XSPI_SR_OFFSET);
299 }
300
301 /* See if there is more data to send */
dan.carpenter@oracle.come33d0852013-06-09 16:07:28 +0300302 if (xspi->remaining_bytes <= 0)
Peter Crosthwaite68c315b2013-06-04 16:02:34 +0200303 break;
304 }
Andrei Konovalovae918c02007-07-17 04:04:11 -0700305
306 /* Disable the transmit empty interrupt */
Richard Röjfors86fc5932009-11-13 12:28:49 +0100307 xspi->write_fn(ipif_ier, xspi->regs + XIPIF_V123B_IIER_OFFSET);
Andrei Konovalovae918c02007-07-17 04:04:11 -0700308
309 return t->len - xspi->remaining_bytes;
310}
311
312
313/* This driver supports single master mode only. Hence Tx FIFO Empty
314 * is the only interrupt we care about.
315 * Receive FIFO Overrun, Transmit FIFO Underrun, Mode Fault, and Slave Mode
316 * Fault are not to happen.
317 */
318static irqreturn_t xilinx_spi_irq(int irq, void *dev_id)
319{
320 struct xilinx_spi *xspi = dev_id;
321 u32 ipif_isr;
322
323 /* Get the IPIF interrupts, and clear them immediately */
Richard Röjfors86fc5932009-11-13 12:28:49 +0100324 ipif_isr = xspi->read_fn(xspi->regs + XIPIF_V123B_IISR_OFFSET);
325 xspi->write_fn(ipif_isr, xspi->regs + XIPIF_V123B_IISR_OFFSET);
Andrei Konovalovae918c02007-07-17 04:04:11 -0700326
327 if (ipif_isr & XSPI_INTR_TX_EMPTY) { /* Transmission completed */
Peter Crosthwaite68c315b2013-06-04 16:02:34 +0200328 complete(&xspi->done);
Andrei Konovalovae918c02007-07-17 04:04:11 -0700329 }
330
331 return IRQ_HANDLED;
332}
333
Grant Likelyeae6cb32010-10-14 09:32:53 -0600334static const struct of_device_id xilinx_spi_of_match[] = {
335 { .compatible = "xlnx,xps-spi-2.00.a", },
336 { .compatible = "xlnx,xps-spi-2.00.b", },
337 {}
338};
339MODULE_DEVICE_TABLE(of, xilinx_spi_of_match);
Grant Likelyeae6cb32010-10-14 09:32:53 -0600340
Mark Brown7cb2abd2013-07-05 11:24:26 +0100341static int xilinx_spi_probe(struct platform_device *pdev)
Andrei Konovalovae918c02007-07-17 04:04:11 -0700342{
Andrei Konovalovae918c02007-07-17 04:04:11 -0700343 struct xilinx_spi *xspi;
Mark Brownd81c0bb2013-07-03 12:05:42 +0100344 struct xspi_platform_data *pdata;
Michal Simekad3fdbc2013-07-08 15:29:15 +0200345 struct resource *res;
Michal Simek7b3b7432013-07-09 18:05:16 +0200346 int ret, num_cs = 0, bits_per_word = 8;
Mark Brownd81c0bb2013-07-03 12:05:42 +0100347 struct spi_master *master;
Michal Simek082339b2013-06-04 16:02:36 +0200348 u32 tmp;
Mark Brownd81c0bb2013-07-03 12:05:42 +0100349 u8 i;
John Linnff82c582009-01-09 16:01:53 -0700350
Jingoo Han8074cf02013-07-30 16:58:59 +0900351 pdata = dev_get_platdata(&pdev->dev);
Mark Brownd81c0bb2013-07-03 12:05:42 +0100352 if (pdata) {
353 num_cs = pdata->num_chipselect;
354 bits_per_word = pdata->bits_per_word;
Michal Simekbe3acdf2013-07-08 15:29:17 +0200355 } else {
356 of_property_read_u32(pdev->dev.of_node, "xlnx,num-ss-bits",
357 &num_cs);
Mark Brownd81c0bb2013-07-03 12:05:42 +0100358 }
Mark Brownd81c0bb2013-07-03 12:05:42 +0100359
360 if (!num_cs) {
Mark Brown7cb2abd2013-07-05 11:24:26 +0100361 dev_err(&pdev->dev,
362 "Missing slave select configuration data\n");
Mark Brownd81c0bb2013-07-03 12:05:42 +0100363 return -EINVAL;
364 }
365
Mark Brown7cb2abd2013-07-05 11:24:26 +0100366 master = spi_alloc_master(&pdev->dev, sizeof(struct xilinx_spi));
Richard Röjforsd5af91a2009-11-13 12:28:39 +0100367 if (!master)
Mark Brownd81c0bb2013-07-03 12:05:42 +0100368 return -ENODEV;
Andrei Konovalovae918c02007-07-17 04:04:11 -0700369
David Brownelle7db06b2009-06-17 16:26:04 -0700370 /* the spi->mode bits understood by this driver: */
371 master->mode_bits = SPI_CPOL | SPI_CPHA;
372
Andrei Konovalovae918c02007-07-17 04:04:11 -0700373 xspi = spi_master_get_devdata(master);
Axel Lin94c69f72013-09-10 15:43:41 +0800374 xspi->bitbang.master = master;
Andrei Konovalovae918c02007-07-17 04:04:11 -0700375 xspi->bitbang.chipselect = xilinx_spi_chipselect;
376 xspi->bitbang.setup_transfer = xilinx_spi_setup_transfer;
377 xspi->bitbang.txrx_bufs = xilinx_spi_txrx_bufs;
Andrei Konovalovae918c02007-07-17 04:04:11 -0700378 init_completion(&xspi->done);
379
Michal Simekad3fdbc2013-07-08 15:29:15 +0200380 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
381 xspi->regs = devm_ioremap_resource(&pdev->dev, res);
Mark Brownc40537d2013-07-01 20:33:01 +0100382 if (IS_ERR(xspi->regs)) {
383 ret = PTR_ERR(xspi->regs);
Andrei Konovalovae918c02007-07-17 04:04:11 -0700384 goto put_master;
Andrei Konovalovae918c02007-07-17 04:04:11 -0700385 }
386
Mark Brown7cb2abd2013-07-05 11:24:26 +0100387 master->bus_num = pdev->dev.id;
Grant Likely91565c42010-10-14 08:54:55 -0600388 master->num_chipselect = num_cs;
Mark Brown7cb2abd2013-07-05 11:24:26 +0100389 master->dev.of_node = pdev->dev.of_node;
Michal Simek082339b2013-06-04 16:02:36 +0200390
391 /*
392 * Detect endianess on the IP via loop bit in CR. Detection
393 * must be done before reset is sent because incorrect reset
394 * value generates error interrupt.
395 * Setup little endian helper functions first and try to use them
396 * and check if bit was correctly setup or not.
397 */
398 xspi->read_fn = xspi_read32;
399 xspi->write_fn = xspi_write32;
400
401 xspi->write_fn(XSPI_CR_LOOP, xspi->regs + XSPI_CR_OFFSET);
402 tmp = xspi->read_fn(xspi->regs + XSPI_CR_OFFSET);
403 tmp &= XSPI_CR_LOOP;
404 if (tmp != XSPI_CR_LOOP) {
Paul Mundt97782142010-01-20 13:49:45 -0700405 xspi->read_fn = xspi_read32_be;
406 xspi->write_fn = xspi_write32_be;
Richard Röjfors86fc5932009-11-13 12:28:49 +0100407 }
Michal Simek082339b2013-06-04 16:02:36 +0200408
Grant Likely91565c42010-10-14 08:54:55 -0600409 xspi->bits_per_word = bits_per_word;
Richard Röjforsc9da2e12009-11-13 12:28:55 +0100410 if (xspi->bits_per_word == 8) {
411 xspi->tx_fn = xspi_tx8;
412 xspi->rx_fn = xspi_rx8;
413 } else if (xspi->bits_per_word == 16) {
414 xspi->tx_fn = xspi_tx16;
415 xspi->rx_fn = xspi_rx16;
416 } else if (xspi->bits_per_word == 32) {
417 xspi->tx_fn = xspi_tx32;
418 xspi->rx_fn = xspi_rx32;
Mark Brownd81c0bb2013-07-03 12:05:42 +0100419 } else {
420 ret = -EINVAL;
Mark Brownc40537d2013-07-01 20:33:01 +0100421 goto put_master;
Mark Brownd81c0bb2013-07-03 12:05:42 +0100422 }
Andrei Konovalovae918c02007-07-17 04:04:11 -0700423
424 /* SPI controller initializations */
Richard Röjfors86fc5932009-11-13 12:28:49 +0100425 xspi_init_hw(xspi);
Andrei Konovalovae918c02007-07-17 04:04:11 -0700426
Michal Simek7b3b7432013-07-09 18:05:16 +0200427 xspi->irq = platform_get_irq(pdev, 0);
428 if (xspi->irq < 0) {
429 ret = xspi->irq;
430 goto put_master;
431 }
432
Andrei Konovalovae918c02007-07-17 04:04:11 -0700433 /* Register for SPI Interrupt */
Michal Simek7b3b7432013-07-09 18:05:16 +0200434 ret = devm_request_irq(&pdev->dev, xspi->irq, xilinx_spi_irq, 0,
435 dev_name(&pdev->dev), xspi);
Richard Röjforsd5af91a2009-11-13 12:28:39 +0100436 if (ret)
Mark Brownc40537d2013-07-01 20:33:01 +0100437 goto put_master;
Andrei Konovalovae918c02007-07-17 04:04:11 -0700438
Richard Röjforsd5af91a2009-11-13 12:28:39 +0100439 ret = spi_bitbang_start(&xspi->bitbang);
440 if (ret) {
Mark Brown7cb2abd2013-07-05 11:24:26 +0100441 dev_err(&pdev->dev, "spi_bitbang_start FAILED\n");
Michal Simek7b3b7432013-07-09 18:05:16 +0200442 goto put_master;
Andrei Konovalovae918c02007-07-17 04:04:11 -0700443 }
444
Mark Brown7cb2abd2013-07-05 11:24:26 +0100445 dev_info(&pdev->dev, "at 0x%08llX mapped to 0x%p, irq=%d\n",
Michal Simekad3fdbc2013-07-08 15:29:15 +0200446 (unsigned long long)res->start, xspi->regs, xspi->irq);
Grant Likely8fd88212010-10-14 09:04:29 -0600447
Grant Likelyeae6cb32010-10-14 09:32:53 -0600448 if (pdata) {
449 for (i = 0; i < pdata->num_devices; i++)
450 spi_new_device(master, pdata->devices + i);
451 }
Grant Likely8fd88212010-10-14 09:04:29 -0600452
Mark Brown7cb2abd2013-07-05 11:24:26 +0100453 platform_set_drvdata(pdev, master);
Grant Likely8fd88212010-10-14 09:04:29 -0600454 return 0;
Mark Brownd81c0bb2013-07-03 12:05:42 +0100455
Mark Brownd81c0bb2013-07-03 12:05:42 +0100456put_master:
457 spi_master_put(master);
458
459 return ret;
Grant Likely8fd88212010-10-14 09:04:29 -0600460}
461
Mark Brown7cb2abd2013-07-05 11:24:26 +0100462static int xilinx_spi_remove(struct platform_device *pdev)
Grant Likely8fd88212010-10-14 09:04:29 -0600463{
Mark Brown7cb2abd2013-07-05 11:24:26 +0100464 struct spi_master *master = platform_get_drvdata(pdev);
Mark Brownd81c0bb2013-07-03 12:05:42 +0100465 struct xilinx_spi *xspi = spi_master_get_devdata(master);
Michal Simek7b3b7432013-07-09 18:05:16 +0200466 void __iomem *regs_base = xspi->regs;
Mark Brownd81c0bb2013-07-03 12:05:42 +0100467
468 spi_bitbang_stop(&xspi->bitbang);
Michal Simek7b3b7432013-07-09 18:05:16 +0200469
470 /* Disable all the interrupts just in case */
471 xspi->write_fn(0, regs_base + XIPIF_V123B_IIER_OFFSET);
472 /* Disable the global IPIF interrupt */
473 xspi->write_fn(0, regs_base + XIPIF_V123B_DGIER_OFFSET);
Mark Brownd81c0bb2013-07-03 12:05:42 +0100474
475 spi_master_put(xspi->bitbang.master);
Grant Likely8fd88212010-10-14 09:04:29 -0600476
477 return 0;
478}
479
480/* work with hotplug and coldplug */
481MODULE_ALIAS("platform:" XILINX_SPI_NAME);
482
483static struct platform_driver xilinx_spi_driver = {
484 .probe = xilinx_spi_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +0000485 .remove = xilinx_spi_remove,
Grant Likely8fd88212010-10-14 09:04:29 -0600486 .driver = {
487 .name = XILINX_SPI_NAME,
488 .owner = THIS_MODULE,
Grant Likelyeae6cb32010-10-14 09:32:53 -0600489 .of_match_table = xilinx_spi_of_match,
Grant Likely8fd88212010-10-14 09:04:29 -0600490 },
491};
Grant Likely940ab882011-10-05 11:29:49 -0600492module_platform_driver(xilinx_spi_driver);
Grant Likely8fd88212010-10-14 09:04:29 -0600493
Andrei Konovalovae918c02007-07-17 04:04:11 -0700494MODULE_AUTHOR("MontaVista Software, Inc. <source@mvista.com>");
495MODULE_DESCRIPTION("Xilinx SPI driver");
496MODULE_LICENSE("GPL");