blob: 134fb6eb7b19247dd2bf729d102fcf5e9263bf7c [file] [log] [blame]
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001/*
2 * Copyright (C) 2009 Texas Instruments.
Brian Niebuhr43abb112010-10-06 18:34:47 +05303 * Copyright (C) 2010 EF Johnson Technologies
Sandeep Paulraj358934a2009-12-16 22:02:18 +00004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20#include <linux/interrupt.h>
21#include <linux/io.h>
22#include <linux/gpio.h>
23#include <linux/module.h>
24#include <linux/delay.h>
25#include <linux/platform_device.h>
26#include <linux/err.h>
27#include <linux/clk.h>
Matt Porter048177c2012-08-22 21:09:36 -040028#include <linux/dmaengine.h>
Sandeep Paulraj358934a2009-12-16 22:02:18 +000029#include <linux/dma-mapping.h>
Matt Porter048177c2012-08-22 21:09:36 -040030#include <linux/edma.h>
Murali Karicheriaae71472012-12-11 16:20:39 -050031#include <linux/of.h>
32#include <linux/of_device.h>
Murali Karicheria88e34e2014-08-01 19:40:32 +030033#include <linux/of_gpio.h>
Sandeep Paulraj358934a2009-12-16 22:02:18 +000034#include <linux/spi/spi.h>
35#include <linux/spi/spi_bitbang.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Sandeep Paulraj358934a2009-12-16 22:02:18 +000037
Arnd Bergmannec2a0832012-08-24 15:11:34 +020038#include <linux/platform_data/spi-davinci.h>
Sandeep Paulraj358934a2009-12-16 22:02:18 +000039
40#define SPI_NO_RESOURCE ((resource_size_t)-1)
41
Sandeep Paulraj358934a2009-12-16 22:02:18 +000042#define CS_DEFAULT 0xFF
43
Sandeep Paulraj358934a2009-12-16 22:02:18 +000044#define SPIFMT_PHASE_MASK BIT(16)
45#define SPIFMT_POLARITY_MASK BIT(17)
46#define SPIFMT_DISTIMER_MASK BIT(18)
47#define SPIFMT_SHIFTDIR_MASK BIT(20)
48#define SPIFMT_WAITENA_MASK BIT(21)
49#define SPIFMT_PARITYENA_MASK BIT(22)
50#define SPIFMT_ODD_PARITY_MASK BIT(23)
51#define SPIFMT_WDELAY_MASK 0x3f000000u
52#define SPIFMT_WDELAY_SHIFT 24
Brian Niebuhr7fe00922010-08-13 13:27:23 +053053#define SPIFMT_PRESCALE_SHIFT 8
Sandeep Paulraj358934a2009-12-16 22:02:18 +000054
Sandeep Paulraj358934a2009-12-16 22:02:18 +000055/* SPIPC0 */
56#define SPIPC0_DIFUN_MASK BIT(11) /* MISO */
57#define SPIPC0_DOFUN_MASK BIT(10) /* MOSI */
58#define SPIPC0_CLKFUN_MASK BIT(9) /* CLK */
59#define SPIPC0_SPIENA_MASK BIT(8) /* nREADY */
Sandeep Paulraj358934a2009-12-16 22:02:18 +000060
61#define SPIINT_MASKALL 0x0101035F
Brian Niebuhre0d205e2010-09-02 16:52:06 +053062#define SPIINT_MASKINT 0x0000015F
63#define SPI_INTLVL_1 0x000001FF
64#define SPI_INTLVL_0 0x00000000
Sandeep Paulraj358934a2009-12-16 22:02:18 +000065
Brian Niebuhrcfbc5d12010-08-12 12:27:33 +053066/* SPIDAT1 (upper 16 bit defines) */
67#define SPIDAT1_CSHOLD_MASK BIT(12)
68
69/* SPIGCR1 */
Sandeep Paulraj358934a2009-12-16 22:02:18 +000070#define SPIGCR1_CLKMOD_MASK BIT(1)
71#define SPIGCR1_MASTER_MASK BIT(0)
Brian Niebuhr3f27b572010-10-06 18:25:43 +053072#define SPIGCR1_POWERDOWN_MASK BIT(8)
Sandeep Paulraj358934a2009-12-16 22:02:18 +000073#define SPIGCR1_LOOPBACK_MASK BIT(16)
Sekhar Nori8e206f12010-08-20 16:20:49 +053074#define SPIGCR1_SPIENA_MASK BIT(24)
Sandeep Paulraj358934a2009-12-16 22:02:18 +000075
76/* SPIBUF */
77#define SPIBUF_TXFULL_MASK BIT(29)
78#define SPIBUF_RXEMPTY_MASK BIT(31)
79
Brian Niebuhr7abbf232010-08-19 15:07:38 +053080/* SPIDELAY */
81#define SPIDELAY_C2TDELAY_SHIFT 24
82#define SPIDELAY_C2TDELAY_MASK (0xFF << SPIDELAY_C2TDELAY_SHIFT)
83#define SPIDELAY_T2CDELAY_SHIFT 16
84#define SPIDELAY_T2CDELAY_MASK (0xFF << SPIDELAY_T2CDELAY_SHIFT)
85#define SPIDELAY_T2EDELAY_SHIFT 8
86#define SPIDELAY_T2EDELAY_MASK (0xFF << SPIDELAY_T2EDELAY_SHIFT)
87#define SPIDELAY_C2EDELAY_SHIFT 0
88#define SPIDELAY_C2EDELAY_MASK 0xFF
89
Sandeep Paulraj358934a2009-12-16 22:02:18 +000090/* Error Masks */
91#define SPIFLG_DLEN_ERR_MASK BIT(0)
92#define SPIFLG_TIMEOUT_MASK BIT(1)
93#define SPIFLG_PARERR_MASK BIT(2)
94#define SPIFLG_DESYNC_MASK BIT(3)
95#define SPIFLG_BITERR_MASK BIT(4)
96#define SPIFLG_OVRRUN_MASK BIT(6)
Sandeep Paulraj358934a2009-12-16 22:02:18 +000097#define SPIFLG_BUF_INIT_ACTIVE_MASK BIT(24)
Brian Niebuhr839c9962010-08-23 16:39:19 +053098#define SPIFLG_ERROR_MASK (SPIFLG_DLEN_ERR_MASK \
99 | SPIFLG_TIMEOUT_MASK | SPIFLG_PARERR_MASK \
100 | SPIFLG_DESYNC_MASK | SPIFLG_BITERR_MASK \
101 | SPIFLG_OVRRUN_MASK)
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000102
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000103#define SPIINT_DMA_REQ_EN BIT(16)
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000104
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000105/* SPI Controller registers */
106#define SPIGCR0 0x00
107#define SPIGCR1 0x04
108#define SPIINT 0x08
109#define SPILVL 0x0c
110#define SPIFLG 0x10
111#define SPIPC0 0x14
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000112#define SPIDAT1 0x3c
113#define SPIBUF 0x40
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000114#define SPIDELAY 0x48
115#define SPIDEF 0x4c
116#define SPIFMT0 0x50
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000117
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000118/* SPI Controller driver's private data. */
119struct davinci_spi {
120 struct spi_bitbang bitbang;
121 struct clk *clk;
122
123 u8 version;
124 resource_size_t pbase;
125 void __iomem *base;
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530126 u32 irq;
127 struct completion done;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000128
129 const void *tx;
130 void *rx;
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530131 int rcount;
132 int wcount;
Matt Porter048177c2012-08-22 21:09:36 -0400133
134 struct dma_chan *dma_rx;
135 struct dma_chan *dma_tx;
136 int dma_rx_chnum;
137 int dma_tx_chnum;
138
Murali Karicheriaae71472012-12-11 16:20:39 -0500139 struct davinci_spi_platform_data pdata;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000140
141 void (*get_rx)(u32 rx_data, struct davinci_spi *);
142 u32 (*get_tx)(struct davinci_spi *);
143
Murali Karicheri7480e752014-07-31 20:33:14 +0300144 u8 *bytes_per_word;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000145};
146
Brian Niebuhr53a31b02010-08-16 15:05:51 +0530147static struct davinci_spi_config davinci_spi_default_cfg;
148
Sekhar Nori212d4b62010-10-11 10:41:39 +0530149static void davinci_spi_rx_buf_u8(u32 data, struct davinci_spi *dspi)
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000150{
Sekhar Nori212d4b62010-10-11 10:41:39 +0530151 if (dspi->rx) {
152 u8 *rx = dspi->rx;
Brian Niebuhr53d454a2010-08-19 17:04:25 +0530153 *rx++ = (u8)data;
Sekhar Nori212d4b62010-10-11 10:41:39 +0530154 dspi->rx = rx;
Brian Niebuhr53d454a2010-08-19 17:04:25 +0530155 }
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000156}
157
Sekhar Nori212d4b62010-10-11 10:41:39 +0530158static void davinci_spi_rx_buf_u16(u32 data, struct davinci_spi *dspi)
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000159{
Sekhar Nori212d4b62010-10-11 10:41:39 +0530160 if (dspi->rx) {
161 u16 *rx = dspi->rx;
Brian Niebuhr53d454a2010-08-19 17:04:25 +0530162 *rx++ = (u16)data;
Sekhar Nori212d4b62010-10-11 10:41:39 +0530163 dspi->rx = rx;
Brian Niebuhr53d454a2010-08-19 17:04:25 +0530164 }
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000165}
166
Sekhar Nori212d4b62010-10-11 10:41:39 +0530167static u32 davinci_spi_tx_buf_u8(struct davinci_spi *dspi)
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000168{
Brian Niebuhr53d454a2010-08-19 17:04:25 +0530169 u32 data = 0;
Sekhar Nori212d4b62010-10-11 10:41:39 +0530170 if (dspi->tx) {
171 const u8 *tx = dspi->tx;
Brian Niebuhr53d454a2010-08-19 17:04:25 +0530172 data = *tx++;
Sekhar Nori212d4b62010-10-11 10:41:39 +0530173 dspi->tx = tx;
Brian Niebuhr53d454a2010-08-19 17:04:25 +0530174 }
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000175 return data;
176}
177
Sekhar Nori212d4b62010-10-11 10:41:39 +0530178static u32 davinci_spi_tx_buf_u16(struct davinci_spi *dspi)
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000179{
Brian Niebuhr53d454a2010-08-19 17:04:25 +0530180 u32 data = 0;
Sekhar Nori212d4b62010-10-11 10:41:39 +0530181 if (dspi->tx) {
182 const u16 *tx = dspi->tx;
Brian Niebuhr53d454a2010-08-19 17:04:25 +0530183 data = *tx++;
Sekhar Nori212d4b62010-10-11 10:41:39 +0530184 dspi->tx = tx;
Brian Niebuhr53d454a2010-08-19 17:04:25 +0530185 }
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000186 return data;
187}
188
189static inline void set_io_bits(void __iomem *addr, u32 bits)
190{
191 u32 v = ioread32(addr);
192
193 v |= bits;
194 iowrite32(v, addr);
195}
196
197static inline void clear_io_bits(void __iomem *addr, u32 bits)
198{
199 u32 v = ioread32(addr);
200
201 v &= ~bits;
202 iowrite32(v, addr);
203}
204
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000205/*
206 * Interface to control the chip select signal
207 */
208static void davinci_spi_chipselect(struct spi_device *spi, int value)
209{
Sekhar Nori212d4b62010-10-11 10:41:39 +0530210 struct davinci_spi *dspi;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000211 struct davinci_spi_platform_data *pdata;
Brian Niebuhr7978b8c2010-08-13 10:11:03 +0530212 u8 chip_sel = spi->chip_select;
Sekhar Nori212d4b62010-10-11 10:41:39 +0530213 u16 spidat1 = CS_DEFAULT;
Brian Niebuhr23853972010-08-13 10:57:44 +0530214 bool gpio_chipsel = false;
Murali Karicheria88e34e2014-08-01 19:40:32 +0300215 int gpio;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000216
Sekhar Nori212d4b62010-10-11 10:41:39 +0530217 dspi = spi_master_get_devdata(spi->master);
Murali Karicheriaae71472012-12-11 16:20:39 -0500218 pdata = &dspi->pdata;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000219
Grygorii Strashkoc0600142014-08-01 19:40:33 +0300220 if (spi->cs_gpio >= 0) {
Murali Karicheria88e34e2014-08-01 19:40:32 +0300221 /* SPI core parse and update master->cs_gpio */
Brian Niebuhr23853972010-08-13 10:57:44 +0530222 gpio_chipsel = true;
Murali Karicheria88e34e2014-08-01 19:40:32 +0300223 gpio = spi->cs_gpio;
Murali Karicheria88e34e2014-08-01 19:40:32 +0300224 }
Brian Niebuhr23853972010-08-13 10:57:44 +0530225
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000226 /*
227 * Board specific chip select logic decides the polarity and cs
228 * line for the controller
229 */
Brian Niebuhr23853972010-08-13 10:57:44 +0530230 if (gpio_chipsel) {
231 if (value == BITBANG_CS_ACTIVE)
Grygorii Strashkoc0600142014-08-01 19:40:33 +0300232 gpio_set_value(gpio, spi->mode & SPI_CS_HIGH);
Brian Niebuhr23853972010-08-13 10:57:44 +0530233 else
Grygorii Strashkoc0600142014-08-01 19:40:33 +0300234 gpio_set_value(gpio, !(spi->mode & SPI_CS_HIGH));
Brian Niebuhr23853972010-08-13 10:57:44 +0530235 } else {
236 if (value == BITBANG_CS_ACTIVE) {
Sekhar Nori212d4b62010-10-11 10:41:39 +0530237 spidat1 |= SPIDAT1_CSHOLD_MASK;
238 spidat1 &= ~(0x1 << chip_sel);
Brian Niebuhr23853972010-08-13 10:57:44 +0530239 }
Brian Niebuhr7978b8c2010-08-13 10:11:03 +0530240
Sekhar Nori212d4b62010-10-11 10:41:39 +0530241 iowrite16(spidat1, dspi->base + SPIDAT1 + 2);
Brian Niebuhr23853972010-08-13 10:57:44 +0530242 }
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000243}
244
245/**
Brian Niebuhr7fe00922010-08-13 13:27:23 +0530246 * davinci_spi_get_prescale - Calculates the correct prescale value
247 * @maxspeed_hz: the maximum rate the SPI clock can run at
248 *
249 * This function calculates the prescale value that generates a clock rate
250 * less than or equal to the specified maximum.
251 *
252 * Returns: calculated prescale - 1 for easy programming into SPI registers
253 * or negative error number if valid prescalar cannot be updated.
254 */
Sekhar Nori212d4b62010-10-11 10:41:39 +0530255static inline int davinci_spi_get_prescale(struct davinci_spi *dspi,
Brian Niebuhr7fe00922010-08-13 13:27:23 +0530256 u32 max_speed_hz)
257{
258 int ret;
259
Sekhar Nori212d4b62010-10-11 10:41:39 +0530260 ret = DIV_ROUND_UP(clk_get_rate(dspi->clk), max_speed_hz);
Brian Niebuhr7fe00922010-08-13 13:27:23 +0530261
262 if (ret < 3 || ret > 256)
263 return -EINVAL;
264
265 return ret - 1;
266}
267
268/**
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000269 * davinci_spi_setup_transfer - This functions will determine transfer method
270 * @spi: spi device on which data transfer to be done
271 * @t: spi transfer in which transfer info is filled
272 *
273 * This function determines data transfer method (8/16/32 bit transfer).
274 * It will also set the SPI Clock Control register according to
275 * SPI slave device freq.
276 */
277static int davinci_spi_setup_transfer(struct spi_device *spi,
278 struct spi_transfer *t)
279{
280
Sekhar Nori212d4b62010-10-11 10:41:39 +0530281 struct davinci_spi *dspi;
Brian Niebuhr25f33512010-08-19 12:15:22 +0530282 struct davinci_spi_config *spicfg;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000283 u8 bits_per_word = 0;
Sachin Kamat32ea3942013-09-11 16:05:04 +0530284 u32 hz = 0, spifmt = 0;
285 int prescale;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000286
Sekhar Nori212d4b62010-10-11 10:41:39 +0530287 dspi = spi_master_get_devdata(spi->master);
Brian Niebuhr25f33512010-08-19 12:15:22 +0530288 spicfg = (struct davinci_spi_config *)spi->controller_data;
289 if (!spicfg)
290 spicfg = &davinci_spi_default_cfg;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000291
292 if (t) {
293 bits_per_word = t->bits_per_word;
294 hz = t->speed_hz;
295 }
296
297 /* if bits_per_word is not set then set it default */
298 if (!bits_per_word)
299 bits_per_word = spi->bits_per_word;
300
301 /*
302 * Assign function pointer to appropriate transfer method
303 * 8bit, 16bit or 32bit transfer
304 */
Stephen Warren24778be2013-05-21 20:36:35 -0600305 if (bits_per_word <= 8) {
Sekhar Nori212d4b62010-10-11 10:41:39 +0530306 dspi->get_rx = davinci_spi_rx_buf_u8;
307 dspi->get_tx = davinci_spi_tx_buf_u8;
308 dspi->bytes_per_word[spi->chip_select] = 1;
Stephen Warren24778be2013-05-21 20:36:35 -0600309 } else {
Sekhar Nori212d4b62010-10-11 10:41:39 +0530310 dspi->get_rx = davinci_spi_rx_buf_u16;
311 dspi->get_tx = davinci_spi_tx_buf_u16;
312 dspi->bytes_per_word[spi->chip_select] = 2;
Stephen Warren24778be2013-05-21 20:36:35 -0600313 }
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000314
315 if (!hz)
316 hz = spi->max_speed_hz;
317
Brian Niebuhr25f33512010-08-19 12:15:22 +0530318 /* Set up SPIFMTn register, unique to this chipselect. */
319
Sekhar Nori212d4b62010-10-11 10:41:39 +0530320 prescale = davinci_spi_get_prescale(dspi, hz);
Brian Niebuhr7fe00922010-08-13 13:27:23 +0530321 if (prescale < 0)
322 return prescale;
323
Brian Niebuhr25f33512010-08-19 12:15:22 +0530324 spifmt = (prescale << SPIFMT_PRESCALE_SHIFT) | (bits_per_word & 0x1f);
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000325
Brian Niebuhr25f33512010-08-19 12:15:22 +0530326 if (spi->mode & SPI_LSB_FIRST)
327 spifmt |= SPIFMT_SHIFTDIR_MASK;
328
329 if (spi->mode & SPI_CPOL)
330 spifmt |= SPIFMT_POLARITY_MASK;
331
332 if (!(spi->mode & SPI_CPHA))
333 spifmt |= SPIFMT_PHASE_MASK;
334
335 /*
336 * Version 1 hardware supports two basic SPI modes:
337 * - Standard SPI mode uses 4 pins, with chipselect
338 * - 3 pin SPI is a 4 pin variant without CS (SPI_NO_CS)
339 * (distinct from SPI_3WIRE, with just one data wire;
340 * or similar variants without MOSI or without MISO)
341 *
342 * Version 2 hardware supports an optional handshaking signal,
343 * so it can support two more modes:
344 * - 5 pin SPI variant is standard SPI plus SPI_READY
345 * - 4 pin with enable is (SPI_READY | SPI_NO_CS)
346 */
347
Sekhar Nori212d4b62010-10-11 10:41:39 +0530348 if (dspi->version == SPI_VERSION_2) {
Brian Niebuhr25f33512010-08-19 12:15:22 +0530349
Brian Niebuhr7abbf232010-08-19 15:07:38 +0530350 u32 delay = 0;
351
Brian Niebuhr25f33512010-08-19 12:15:22 +0530352 spifmt |= ((spicfg->wdelay << SPIFMT_WDELAY_SHIFT)
353 & SPIFMT_WDELAY_MASK);
354
355 if (spicfg->odd_parity)
356 spifmt |= SPIFMT_ODD_PARITY_MASK;
357
358 if (spicfg->parity_enable)
359 spifmt |= SPIFMT_PARITYENA_MASK;
360
Brian Niebuhr7abbf232010-08-19 15:07:38 +0530361 if (spicfg->timer_disable) {
Brian Niebuhr25f33512010-08-19 12:15:22 +0530362 spifmt |= SPIFMT_DISTIMER_MASK;
Brian Niebuhr7abbf232010-08-19 15:07:38 +0530363 } else {
364 delay |= (spicfg->c2tdelay << SPIDELAY_C2TDELAY_SHIFT)
365 & SPIDELAY_C2TDELAY_MASK;
366 delay |= (spicfg->t2cdelay << SPIDELAY_T2CDELAY_SHIFT)
367 & SPIDELAY_T2CDELAY_MASK;
368 }
Brian Niebuhr25f33512010-08-19 12:15:22 +0530369
Brian Niebuhr7abbf232010-08-19 15:07:38 +0530370 if (spi->mode & SPI_READY) {
Brian Niebuhr25f33512010-08-19 12:15:22 +0530371 spifmt |= SPIFMT_WAITENA_MASK;
Brian Niebuhr7abbf232010-08-19 15:07:38 +0530372 delay |= (spicfg->t2edelay << SPIDELAY_T2EDELAY_SHIFT)
373 & SPIDELAY_T2EDELAY_MASK;
374 delay |= (spicfg->c2edelay << SPIDELAY_C2EDELAY_SHIFT)
375 & SPIDELAY_C2EDELAY_MASK;
376 }
377
Sekhar Nori212d4b62010-10-11 10:41:39 +0530378 iowrite32(delay, dspi->base + SPIDELAY);
Brian Niebuhr25f33512010-08-19 12:15:22 +0530379 }
380
Sekhar Nori212d4b62010-10-11 10:41:39 +0530381 iowrite32(spifmt, dspi->base + SPIFMT0);
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000382
383 return 0;
384}
385
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000386/**
387 * davinci_spi_setup - This functions will set default transfer method
388 * @spi: spi device on which data transfer to be done
389 *
390 * This functions sets the default transfer method.
391 */
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000392static int davinci_spi_setup(struct spi_device *spi)
393{
Brian Niebuhrb23a5d42010-09-24 18:53:32 +0530394 int retval = 0;
Sekhar Nori212d4b62010-10-11 10:41:39 +0530395 struct davinci_spi *dspi;
Brian Niebuhrbe884712010-09-03 12:15:28 +0530396 struct davinci_spi_platform_data *pdata;
Murali Karicheria88e34e2014-08-01 19:40:32 +0300397 struct spi_master *master = spi->master;
398 struct device_node *np = spi->dev.of_node;
399 bool internal_cs = true;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000400
Sekhar Nori212d4b62010-10-11 10:41:39 +0530401 dspi = spi_master_get_devdata(spi->master);
Murali Karicheriaae71472012-12-11 16:20:39 -0500402 pdata = &dspi->pdata;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000403
Brian Niebuhrbe884712010-09-03 12:15:28 +0530404 if (!(spi->mode & SPI_NO_CS)) {
Murali Karicheria88e34e2014-08-01 19:40:32 +0300405 if (np && (master->cs_gpios != NULL) && (spi->cs_gpio >= 0)) {
Grygorii Strashko8936dec2014-09-12 17:54:00 +0300406 retval = gpio_direction_output(
407 spi->cs_gpio, !(spi->mode & SPI_CS_HIGH));
Murali Karicheria88e34e2014-08-01 19:40:32 +0300408 internal_cs = false;
409 } else if (pdata->chip_sel &&
410 spi->chip_select < pdata->num_chipselect &&
411 pdata->chip_sel[spi->chip_select] != SPI_INTERN_CS) {
Grygorii Strashkoc0600142014-08-01 19:40:33 +0300412 spi->cs_gpio = pdata->chip_sel[spi->chip_select];
Grygorii Strashko8936dec2014-09-12 17:54:00 +0300413 retval = gpio_direction_output(
414 spi->cs_gpio, !(spi->mode & SPI_CS_HIGH));
Murali Karicheria88e34e2014-08-01 19:40:32 +0300415 internal_cs = false;
416 }
Brian Niebuhrbe884712010-09-03 12:15:28 +0530417
Grygorii Strashko3f2dad92014-08-21 18:25:05 +0300418 if (retval) {
419 dev_err(&spi->dev, "GPIO %d setup failed (%d)\n",
420 spi->cs_gpio, retval);
421 return retval;
422 }
Grygorii Strashkoc0600142014-08-01 19:40:33 +0300423
Grygorii Strashko3f2dad92014-08-21 18:25:05 +0300424 if (internal_cs)
425 set_io_bits(dspi->base + SPIPC0, 1 << spi->chip_select);
426 }
Murali Karicheria88e34e2014-08-01 19:40:32 +0300427
Brian Niebuhrbe884712010-09-03 12:15:28 +0530428 if (spi->mode & SPI_READY)
Sekhar Nori212d4b62010-10-11 10:41:39 +0530429 set_io_bits(dspi->base + SPIPC0, SPIPC0_SPIENA_MASK);
Brian Niebuhrbe884712010-09-03 12:15:28 +0530430
431 if (spi->mode & SPI_LOOP)
Sekhar Nori212d4b62010-10-11 10:41:39 +0530432 set_io_bits(dspi->base + SPIGCR1, SPIGCR1_LOOPBACK_MASK);
Brian Niebuhrbe884712010-09-03 12:15:28 +0530433 else
Sekhar Nori212d4b62010-10-11 10:41:39 +0530434 clear_io_bits(dspi->base + SPIGCR1, SPIGCR1_LOOPBACK_MASK);
Brian Niebuhrbe884712010-09-03 12:15:28 +0530435
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000436 return retval;
437}
438
Sekhar Nori212d4b62010-10-11 10:41:39 +0530439static int davinci_spi_check_error(struct davinci_spi *dspi, int int_status)
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000440{
Sekhar Nori212d4b62010-10-11 10:41:39 +0530441 struct device *sdev = dspi->bitbang.master->dev.parent;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000442
443 if (int_status & SPIFLG_TIMEOUT_MASK) {
444 dev_dbg(sdev, "SPI Time-out Error\n");
445 return -ETIMEDOUT;
446 }
447 if (int_status & SPIFLG_DESYNC_MASK) {
448 dev_dbg(sdev, "SPI Desynchronization Error\n");
449 return -EIO;
450 }
451 if (int_status & SPIFLG_BITERR_MASK) {
452 dev_dbg(sdev, "SPI Bit error\n");
453 return -EIO;
454 }
455
Sekhar Nori212d4b62010-10-11 10:41:39 +0530456 if (dspi->version == SPI_VERSION_2) {
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000457 if (int_status & SPIFLG_DLEN_ERR_MASK) {
458 dev_dbg(sdev, "SPI Data Length Error\n");
459 return -EIO;
460 }
461 if (int_status & SPIFLG_PARERR_MASK) {
462 dev_dbg(sdev, "SPI Parity Error\n");
463 return -EIO;
464 }
465 if (int_status & SPIFLG_OVRRUN_MASK) {
466 dev_dbg(sdev, "SPI Data Overrun error\n");
467 return -EIO;
468 }
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000469 if (int_status & SPIFLG_BUF_INIT_ACTIVE_MASK) {
470 dev_dbg(sdev, "SPI Buffer Init Active\n");
471 return -EBUSY;
472 }
473 }
474
475 return 0;
476}
477
478/**
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530479 * davinci_spi_process_events - check for and handle any SPI controller events
Sekhar Nori212d4b62010-10-11 10:41:39 +0530480 * @dspi: the controller data
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530481 *
482 * This function will check the SPIFLG register and handle any events that are
483 * detected there
484 */
Sekhar Nori212d4b62010-10-11 10:41:39 +0530485static int davinci_spi_process_events(struct davinci_spi *dspi)
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530486{
Sekhar Nori212d4b62010-10-11 10:41:39 +0530487 u32 buf, status, errors = 0, spidat1;
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530488
Sekhar Nori212d4b62010-10-11 10:41:39 +0530489 buf = ioread32(dspi->base + SPIBUF);
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530490
Sekhar Nori212d4b62010-10-11 10:41:39 +0530491 if (dspi->rcount > 0 && !(buf & SPIBUF_RXEMPTY_MASK)) {
492 dspi->get_rx(buf & 0xFFFF, dspi);
493 dspi->rcount--;
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530494 }
495
Sekhar Nori212d4b62010-10-11 10:41:39 +0530496 status = ioread32(dspi->base + SPIFLG);
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530497
498 if (unlikely(status & SPIFLG_ERROR_MASK)) {
499 errors = status & SPIFLG_ERROR_MASK;
500 goto out;
501 }
502
Sekhar Nori212d4b62010-10-11 10:41:39 +0530503 if (dspi->wcount > 0 && !(buf & SPIBUF_TXFULL_MASK)) {
504 spidat1 = ioread32(dspi->base + SPIDAT1);
505 dspi->wcount--;
506 spidat1 &= ~0xFFFF;
507 spidat1 |= 0xFFFF & dspi->get_tx(dspi);
508 iowrite32(spidat1, dspi->base + SPIDAT1);
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530509 }
510
511out:
512 return errors;
513}
514
Matt Porter048177c2012-08-22 21:09:36 -0400515static void davinci_spi_dma_rx_callback(void *data)
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530516{
Matt Porter048177c2012-08-22 21:09:36 -0400517 struct davinci_spi *dspi = (struct davinci_spi *)data;
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530518
Matt Porter048177c2012-08-22 21:09:36 -0400519 dspi->rcount = 0;
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530520
Matt Porter048177c2012-08-22 21:09:36 -0400521 if (!dspi->wcount && !dspi->rcount)
522 complete(&dspi->done);
523}
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530524
Matt Porter048177c2012-08-22 21:09:36 -0400525static void davinci_spi_dma_tx_callback(void *data)
526{
527 struct davinci_spi *dspi = (struct davinci_spi *)data;
528
529 dspi->wcount = 0;
530
531 if (!dspi->wcount && !dspi->rcount)
Sekhar Nori212d4b62010-10-11 10:41:39 +0530532 complete(&dspi->done);
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530533}
534
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530535/**
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000536 * davinci_spi_bufs - functions which will handle transfer data
537 * @spi: spi device on which data transfer to be done
538 * @t: spi transfer in which transfer info is filled
539 *
540 * This function will put data to be transferred into data register
541 * of SPI controller and then wait until the completion will be marked
542 * by the IRQ Handler.
543 */
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530544static int davinci_spi_bufs(struct spi_device *spi, struct spi_transfer *t)
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000545{
Sekhar Nori212d4b62010-10-11 10:41:39 +0530546 struct davinci_spi *dspi;
Matt Porter048177c2012-08-22 21:09:36 -0400547 int data_type, ret = -ENOMEM;
Sekhar Nori212d4b62010-10-11 10:41:39 +0530548 u32 tx_data, spidat1;
Brian Niebuhr839c9962010-08-23 16:39:19 +0530549 u32 errors = 0;
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530550 struct davinci_spi_config *spicfg;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000551 struct davinci_spi_platform_data *pdata;
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530552 unsigned uninitialized_var(rx_buf_count);
Matt Porter048177c2012-08-22 21:09:36 -0400553 void *dummy_buf = NULL;
554 struct scatterlist sg_rx, sg_tx;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000555
Sekhar Nori212d4b62010-10-11 10:41:39 +0530556 dspi = spi_master_get_devdata(spi->master);
Murali Karicheriaae71472012-12-11 16:20:39 -0500557 pdata = &dspi->pdata;
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530558 spicfg = (struct davinci_spi_config *)spi->controller_data;
559 if (!spicfg)
560 spicfg = &davinci_spi_default_cfg;
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530561
562 /* convert len to words based on bits_per_word */
Sekhar Nori212d4b62010-10-11 10:41:39 +0530563 data_type = dspi->bytes_per_word[spi->chip_select];
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000564
Sekhar Nori212d4b62010-10-11 10:41:39 +0530565 dspi->tx = t->tx_buf;
566 dspi->rx = t->rx_buf;
567 dspi->wcount = t->len / data_type;
568 dspi->rcount = dspi->wcount;
Brian Niebuhr7978b8c2010-08-13 10:11:03 +0530569
Sekhar Nori212d4b62010-10-11 10:41:39 +0530570 spidat1 = ioread32(dspi->base + SPIDAT1);
Brian Niebuhr839c9962010-08-23 16:39:19 +0530571
Sekhar Nori212d4b62010-10-11 10:41:39 +0530572 clear_io_bits(dspi->base + SPIGCR1, SPIGCR1_POWERDOWN_MASK);
573 set_io_bits(dspi->base + SPIGCR1, SPIGCR1_SPIENA_MASK);
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000574
Wolfram Sang16735d02013-11-14 14:32:02 -0800575 reinit_completion(&dspi->done);
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530576
577 if (spicfg->io_type == SPI_IO_TYPE_INTR)
Sekhar Nori212d4b62010-10-11 10:41:39 +0530578 set_io_bits(dspi->base + SPIINT, SPIINT_MASKINT);
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530579
580 if (spicfg->io_type != SPI_IO_TYPE_DMA) {
581 /* start the transfer */
Sekhar Nori212d4b62010-10-11 10:41:39 +0530582 dspi->wcount--;
583 tx_data = dspi->get_tx(dspi);
584 spidat1 &= 0xFFFF0000;
585 spidat1 |= tx_data & 0xFFFF;
586 iowrite32(spidat1, dspi->base + SPIDAT1);
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530587 } else {
Matt Porter048177c2012-08-22 21:09:36 -0400588 struct dma_slave_config dma_rx_conf = {
589 .direction = DMA_DEV_TO_MEM,
590 .src_addr = (unsigned long)dspi->pbase + SPIBUF,
591 .src_addr_width = data_type,
592 .src_maxburst = 1,
593 };
594 struct dma_slave_config dma_tx_conf = {
595 .direction = DMA_MEM_TO_DEV,
596 .dst_addr = (unsigned long)dspi->pbase + SPIDAT1,
597 .dst_addr_width = data_type,
598 .dst_maxburst = 1,
599 };
600 struct dma_async_tx_descriptor *rxdesc;
601 struct dma_async_tx_descriptor *txdesc;
602 void *buf;
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530603
Matt Porter048177c2012-08-22 21:09:36 -0400604 dummy_buf = kzalloc(t->len, GFP_KERNEL);
605 if (!dummy_buf)
606 goto err_alloc_dummy_buf;
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530607
Matt Porter048177c2012-08-22 21:09:36 -0400608 dmaengine_slave_config(dspi->dma_rx, &dma_rx_conf);
609 dmaengine_slave_config(dspi->dma_tx, &dma_tx_conf);
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530610
Matt Porter048177c2012-08-22 21:09:36 -0400611 sg_init_table(&sg_rx, 1);
612 if (!t->rx_buf)
613 buf = dummy_buf;
Michael Williamsonb1178b22011-03-14 11:49:02 -0400614 else
Matt Porter048177c2012-08-22 21:09:36 -0400615 buf = t->rx_buf;
616 t->rx_dma = dma_map_single(&spi->dev, buf,
617 t->len, DMA_FROM_DEVICE);
618 if (!t->rx_dma) {
619 ret = -EFAULT;
620 goto err_rx_map;
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530621 }
Matt Porter048177c2012-08-22 21:09:36 -0400622 sg_dma_address(&sg_rx) = t->rx_dma;
623 sg_dma_len(&sg_rx) = t->len;
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530624
Matt Porter048177c2012-08-22 21:09:36 -0400625 sg_init_table(&sg_tx, 1);
626 if (!t->tx_buf)
627 buf = dummy_buf;
628 else
629 buf = (void *)t->tx_buf;
630 t->tx_dma = dma_map_single(&spi->dev, buf,
Christian Eggers89c66ee2013-07-29 20:54:09 +0200631 t->len, DMA_TO_DEVICE);
Matt Porter048177c2012-08-22 21:09:36 -0400632 if (!t->tx_dma) {
633 ret = -EFAULT;
634 goto err_tx_map;
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530635 }
Matt Porter048177c2012-08-22 21:09:36 -0400636 sg_dma_address(&sg_tx) = t->tx_dma;
637 sg_dma_len(&sg_tx) = t->len;
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530638
Matt Porter048177c2012-08-22 21:09:36 -0400639 rxdesc = dmaengine_prep_slave_sg(dspi->dma_rx,
640 &sg_rx, 1, DMA_DEV_TO_MEM,
641 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
642 if (!rxdesc)
643 goto err_desc;
644
645 txdesc = dmaengine_prep_slave_sg(dspi->dma_tx,
646 &sg_tx, 1, DMA_MEM_TO_DEV,
647 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
648 if (!txdesc)
649 goto err_desc;
650
651 rxdesc->callback = davinci_spi_dma_rx_callback;
652 rxdesc->callback_param = (void *)dspi;
653 txdesc->callback = davinci_spi_dma_tx_callback;
654 txdesc->callback_param = (void *)dspi;
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530655
656 if (pdata->cshold_bug)
Sekhar Nori212d4b62010-10-11 10:41:39 +0530657 iowrite16(spidat1 >> 16, dspi->base + SPIDAT1 + 2);
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530658
Matt Porter048177c2012-08-22 21:09:36 -0400659 dmaengine_submit(rxdesc);
660 dmaengine_submit(txdesc);
661
662 dma_async_issue_pending(dspi->dma_rx);
663 dma_async_issue_pending(dspi->dma_tx);
664
Sekhar Nori212d4b62010-10-11 10:41:39 +0530665 set_io_bits(dspi->base + SPIINT, SPIINT_DMA_REQ_EN);
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530666 }
Brian Niebuhrcf90fe72010-08-20 17:02:49 +0530667
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530668 /* Wait for the transfer to complete */
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530669 if (spicfg->io_type != SPI_IO_TYPE_POLL) {
Sekhar Nori212d4b62010-10-11 10:41:39 +0530670 wait_for_completion_interruptible(&(dspi->done));
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530671 } else {
Sekhar Nori212d4b62010-10-11 10:41:39 +0530672 while (dspi->rcount > 0 || dspi->wcount > 0) {
673 errors = davinci_spi_process_events(dspi);
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530674 if (errors)
675 break;
676 cpu_relax();
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000677 }
678 }
679
Sekhar Nori212d4b62010-10-11 10:41:39 +0530680 clear_io_bits(dspi->base + SPIINT, SPIINT_MASKALL);
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530681 if (spicfg->io_type == SPI_IO_TYPE_DMA) {
Sekhar Nori212d4b62010-10-11 10:41:39 +0530682 clear_io_bits(dspi->base + SPIINT, SPIINT_DMA_REQ_EN);
Matt Porter048177c2012-08-22 21:09:36 -0400683
684 dma_unmap_single(&spi->dev, t->rx_dma,
685 t->len, DMA_FROM_DEVICE);
686 dma_unmap_single(&spi->dev, t->tx_dma,
687 t->len, DMA_TO_DEVICE);
688 kfree(dummy_buf);
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530689 }
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530690
Sekhar Nori212d4b62010-10-11 10:41:39 +0530691 clear_io_bits(dspi->base + SPIGCR1, SPIGCR1_SPIENA_MASK);
692 set_io_bits(dspi->base + SPIGCR1, SPIGCR1_POWERDOWN_MASK);
Brian Niebuhr3f27b572010-10-06 18:25:43 +0530693
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000694 /*
695 * Check for bit error, desync error,parity error,timeout error and
696 * receive overflow errors
697 */
Brian Niebuhr839c9962010-08-23 16:39:19 +0530698 if (errors) {
Sekhar Nori212d4b62010-10-11 10:41:39 +0530699 ret = davinci_spi_check_error(dspi, errors);
Brian Niebuhr839c9962010-08-23 16:39:19 +0530700 WARN(!ret, "%s: error reported but no error found!\n",
701 dev_name(&spi->dev));
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000702 return ret;
Brian Niebuhr839c9962010-08-23 16:39:19 +0530703 }
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000704
Sekhar Nori212d4b62010-10-11 10:41:39 +0530705 if (dspi->rcount != 0 || dspi->wcount != 0) {
Matt Porter048177c2012-08-22 21:09:36 -0400706 dev_err(&spi->dev, "SPI data transfer error\n");
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530707 return -EIO;
708 }
709
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000710 return t->len;
Matt Porter048177c2012-08-22 21:09:36 -0400711
712err_desc:
713 dma_unmap_single(&spi->dev, t->tx_dma, t->len, DMA_TO_DEVICE);
714err_tx_map:
715 dma_unmap_single(&spi->dev, t->rx_dma, t->len, DMA_FROM_DEVICE);
716err_rx_map:
717 kfree(dummy_buf);
718err_alloc_dummy_buf:
719 return ret;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000720}
721
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530722/**
Murali Karicheri32310aa2012-12-21 15:13:26 -0500723 * dummy_thread_fn - dummy thread function
724 * @irq: IRQ number for this SPI Master
725 * @context_data: structure for SPI Master controller davinci_spi
726 *
727 * This is to satisfy the request_threaded_irq() API so that the irq
728 * handler is called in interrupt context.
729 */
730static irqreturn_t dummy_thread_fn(s32 irq, void *data)
731{
732 return IRQ_HANDLED;
733}
734
735/**
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530736 * davinci_spi_irq - Interrupt handler for SPI Master Controller
737 * @irq: IRQ number for this SPI Master
738 * @context_data: structure for SPI Master controller davinci_spi
739 *
740 * ISR will determine that interrupt arrives either for READ or WRITE command.
741 * According to command it will do the appropriate action. It will check
742 * transfer length and if it is not zero then dispatch transfer command again.
743 * If transfer length is zero then it will indicate the COMPLETION so that
744 * davinci_spi_bufs function can go ahead.
745 */
Sekhar Nori212d4b62010-10-11 10:41:39 +0530746static irqreturn_t davinci_spi_irq(s32 irq, void *data)
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530747{
Sekhar Nori212d4b62010-10-11 10:41:39 +0530748 struct davinci_spi *dspi = data;
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530749 int status;
750
Sekhar Nori212d4b62010-10-11 10:41:39 +0530751 status = davinci_spi_process_events(dspi);
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530752 if (unlikely(status != 0))
Sekhar Nori212d4b62010-10-11 10:41:39 +0530753 clear_io_bits(dspi->base + SPIINT, SPIINT_MASKINT);
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530754
Sekhar Nori212d4b62010-10-11 10:41:39 +0530755 if ((!dspi->rcount && !dspi->wcount) || status)
756 complete(&dspi->done);
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530757
758 return IRQ_HANDLED;
759}
760
Sekhar Nori212d4b62010-10-11 10:41:39 +0530761static int davinci_spi_request_dma(struct davinci_spi *dspi)
Sekhar Nori903ca252010-10-01 14:51:40 +0530762{
Matt Porter048177c2012-08-22 21:09:36 -0400763 dma_cap_mask_t mask;
764 struct device *sdev = dspi->bitbang.master->dev.parent;
Sekhar Nori903ca252010-10-01 14:51:40 +0530765 int r;
766
Matt Porter048177c2012-08-22 21:09:36 -0400767 dma_cap_zero(mask);
768 dma_cap_set(DMA_SLAVE, mask);
769
770 dspi->dma_rx = dma_request_channel(mask, edma_filter_fn,
771 &dspi->dma_rx_chnum);
772 if (!dspi->dma_rx) {
773 dev_err(sdev, "request RX DMA channel failed\n");
774 r = -ENODEV;
Brian Niebuhr523c37e2010-10-04 17:35:34 +0530775 goto rx_dma_failed;
Sekhar Nori903ca252010-10-01 14:51:40 +0530776 }
777
Matt Porter048177c2012-08-22 21:09:36 -0400778 dspi->dma_tx = dma_request_channel(mask, edma_filter_fn,
779 &dspi->dma_tx_chnum);
780 if (!dspi->dma_tx) {
781 dev_err(sdev, "request TX DMA channel failed\n");
782 r = -ENODEV;
Brian Niebuhr523c37e2010-10-04 17:35:34 +0530783 goto tx_dma_failed;
Sekhar Nori903ca252010-10-01 14:51:40 +0530784 }
785
786 return 0;
Matt Porter048177c2012-08-22 21:09:36 -0400787
Brian Niebuhr523c37e2010-10-04 17:35:34 +0530788tx_dma_failed:
Matt Porter048177c2012-08-22 21:09:36 -0400789 dma_release_channel(dspi->dma_rx);
Brian Niebuhr523c37e2010-10-04 17:35:34 +0530790rx_dma_failed:
791 return r;
Sekhar Nori903ca252010-10-01 14:51:40 +0530792}
793
Murali Karicheriaae71472012-12-11 16:20:39 -0500794#if defined(CONFIG_OF)
795static const struct of_device_id davinci_spi_of_match[] = {
796 {
Manjunathappa, Prakash804413f2013-04-03 19:39:06 +0530797 .compatible = "ti,dm6441-spi",
Murali Karicheriaae71472012-12-11 16:20:39 -0500798 },
799 {
Manjunathappa, Prakash804413f2013-04-03 19:39:06 +0530800 .compatible = "ti,da830-spi",
Murali Karicheriaae71472012-12-11 16:20:39 -0500801 .data = (void *)SPI_VERSION_2,
802 },
803 { },
804};
Manjunathappa, Prakash0d2d0cc2013-02-25 16:14:07 +0530805MODULE_DEVICE_TABLE(of, davinci_spi_of_match);
Murali Karicheriaae71472012-12-11 16:20:39 -0500806
807/**
808 * spi_davinci_get_pdata - Get platform data from DTS binding
809 * @pdev: ptr to platform data
810 * @dspi: ptr to driver data
811 *
812 * Parses and populates pdata in dspi from device tree bindings.
813 *
814 * NOTE: Not all platform data params are supported currently.
815 */
816static int spi_davinci_get_pdata(struct platform_device *pdev,
817 struct davinci_spi *dspi)
818{
819 struct device_node *node = pdev->dev.of_node;
820 struct davinci_spi_platform_data *pdata;
821 unsigned int num_cs, intr_line = 0;
822 const struct of_device_id *match;
823
824 pdata = &dspi->pdata;
825
826 pdata->version = SPI_VERSION_1;
Axel Linb53b34f2014-02-06 11:45:08 +0800827 match = of_match_device(davinci_spi_of_match, &pdev->dev);
Murali Karicheriaae71472012-12-11 16:20:39 -0500828 if (!match)
829 return -ENODEV;
830
831 /* match data has the SPI version number for SPI_VERSION_2 */
832 if (match->data == (void *)SPI_VERSION_2)
833 pdata->version = SPI_VERSION_2;
834
835 /*
836 * default num_cs is 1 and all chipsel are internal to the chip
Murali Karicheria88e34e2014-08-01 19:40:32 +0300837 * indicated by chip_sel being NULL or cs_gpios being NULL or
838 * set to -ENOENT. num-cs includes internal as well as gpios.
Murali Karicheriaae71472012-12-11 16:20:39 -0500839 * indicated by chip_sel being NULL. GPIO based CS is not
840 * supported yet in DT bindings.
841 */
842 num_cs = 1;
843 of_property_read_u32(node, "num-cs", &num_cs);
844 pdata->num_chipselect = num_cs;
845 of_property_read_u32(node, "ti,davinci-spi-intr-line", &intr_line);
846 pdata->intr_line = intr_line;
847 return 0;
848}
849#else
Murali Karicheriaae71472012-12-11 16:20:39 -0500850static struct davinci_spi_platform_data
851 *spi_davinci_get_pdata(struct platform_device *pdev,
852 struct davinci_spi *dspi)
853{
854 return -ENODEV;
855}
856#endif
857
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000858/**
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000859 * davinci_spi_probe - probe function for SPI Master Controller
860 * @pdev: platform_device structure which contains plateform specific data
Brian Niebuhr035540f2010-10-06 18:32:40 +0530861 *
862 * According to Linux Device Model this function will be invoked by Linux
863 * with platform_device struct which contains the device specific info.
864 * This function will map the SPI controller's memory, register IRQ,
865 * Reset SPI controller and setting its registers to default value.
866 * It will invoke spi_bitbang_start to create work queue so that client driver
867 * can register transfer method to work queue.
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000868 */
Grant Likelyfd4a3192012-12-07 16:57:14 +0000869static int davinci_spi_probe(struct platform_device *pdev)
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000870{
871 struct spi_master *master;
Sekhar Nori212d4b62010-10-11 10:41:39 +0530872 struct davinci_spi *dspi;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000873 struct davinci_spi_platform_data *pdata;
Jingoo Han5b3bb592013-12-09 19:12:03 +0900874 struct resource *r;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000875 resource_size_t dma_rx_chan = SPI_NO_RESOURCE;
876 resource_size_t dma_tx_chan = SPI_NO_RESOURCE;
Grygorii Strashkoc0600142014-08-01 19:40:33 +0300877 int ret = 0;
Brian Niebuhrf34bd4c2010-09-03 11:56:35 +0530878 u32 spipc0;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000879
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000880 master = spi_alloc_master(&pdev->dev, sizeof(struct davinci_spi));
881 if (master == NULL) {
882 ret = -ENOMEM;
883 goto err;
884 }
885
Jingoo Han24b5a822013-05-23 19:20:40 +0900886 platform_set_drvdata(pdev, master);
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000887
Sekhar Nori212d4b62010-10-11 10:41:39 +0530888 dspi = spi_master_get_devdata(master);
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000889
Jingoo Han8074cf02013-07-30 16:58:59 +0900890 if (dev_get_platdata(&pdev->dev)) {
891 pdata = dev_get_platdata(&pdev->dev);
Murali Karicheriaae71472012-12-11 16:20:39 -0500892 dspi->pdata = *pdata;
893 } else {
894 /* update dspi pdata with that from the DT */
895 ret = spi_davinci_get_pdata(pdev, dspi);
896 if (ret < 0)
897 goto free_master;
898 }
899
900 /* pdata in dspi is now updated and point pdata to that */
901 pdata = &dspi->pdata;
902
Murali Karicheri7480e752014-07-31 20:33:14 +0300903 dspi->bytes_per_word = devm_kzalloc(&pdev->dev,
904 sizeof(*dspi->bytes_per_word) *
905 pdata->num_chipselect, GFP_KERNEL);
906 if (dspi->bytes_per_word == NULL) {
907 ret = -ENOMEM;
908 goto free_master;
909 }
910
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000911 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
912 if (r == NULL) {
913 ret = -ENOENT;
914 goto free_master;
915 }
916
Sekhar Nori212d4b62010-10-11 10:41:39 +0530917 dspi->pbase = r->start;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000918
Jingoo Han5b3bb592013-12-09 19:12:03 +0900919 dspi->base = devm_ioremap_resource(&pdev->dev, r);
920 if (IS_ERR(dspi->base)) {
921 ret = PTR_ERR(dspi->base);
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000922 goto free_master;
923 }
924
Sekhar Nori212d4b62010-10-11 10:41:39 +0530925 dspi->irq = platform_get_irq(pdev, 0);
926 if (dspi->irq <= 0) {
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530927 ret = -EINVAL;
Jingoo Han5b3bb592013-12-09 19:12:03 +0900928 goto free_master;
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530929 }
930
Jingoo Han5b3bb592013-12-09 19:12:03 +0900931 ret = devm_request_threaded_irq(&pdev->dev, dspi->irq, davinci_spi_irq,
932 dummy_thread_fn, 0, dev_name(&pdev->dev), dspi);
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530933 if (ret)
Jingoo Han5b3bb592013-12-09 19:12:03 +0900934 goto free_master;
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530935
Axel Lin94c69f72013-09-10 15:43:41 +0800936 dspi->bitbang.master = master;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000937
Jingoo Han5b3bb592013-12-09 19:12:03 +0900938 dspi->clk = devm_clk_get(&pdev->dev, NULL);
Sekhar Nori212d4b62010-10-11 10:41:39 +0530939 if (IS_ERR(dspi->clk)) {
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000940 ret = -ENODEV;
Jingoo Han5b3bb592013-12-09 19:12:03 +0900941 goto free_master;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000942 }
Murali Karicheriaae71472012-12-11 16:20:39 -0500943 clk_prepare_enable(dspi->clk);
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000944
Murali Karicheriaae71472012-12-11 16:20:39 -0500945 master->dev.of_node = pdev->dev.of_node;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000946 master->bus_num = pdev->id;
947 master->num_chipselect = pdata->num_chipselect;
Stephen Warren24778be2013-05-21 20:36:35 -0600948 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(2, 16);
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000949 master->setup = davinci_spi_setup;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000950
Sekhar Nori212d4b62010-10-11 10:41:39 +0530951 dspi->bitbang.chipselect = davinci_spi_chipselect;
952 dspi->bitbang.setup_transfer = davinci_spi_setup_transfer;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000953
Sekhar Nori212d4b62010-10-11 10:41:39 +0530954 dspi->version = pdata->version;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000955
Sekhar Nori212d4b62010-10-11 10:41:39 +0530956 dspi->bitbang.flags = SPI_NO_CS | SPI_LSB_FIRST | SPI_LOOP;
957 if (dspi->version == SPI_VERSION_2)
958 dspi->bitbang.flags |= SPI_READY;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000959
Grygorii Strashko8936dec2014-09-12 17:54:00 +0300960 if (pdev->dev.of_node) {
961 int i;
962
963 for (i = 0; i < pdata->num_chipselect; i++) {
964 int cs_gpio = of_get_named_gpio(pdev->dev.of_node,
965 "cs-gpios", i);
966
967 if (cs_gpio == -EPROBE_DEFER) {
968 ret = cs_gpio;
969 goto free_clk;
970 }
971
972 if (gpio_is_valid(cs_gpio)) {
973 ret = devm_gpio_request(&pdev->dev, cs_gpio,
974 dev_name(&pdev->dev));
975 if (ret)
976 goto free_clk;
977 }
978 }
979 }
980
Sekhar Nori903ca252010-10-01 14:51:40 +0530981 r = platform_get_resource(pdev, IORESOURCE_DMA, 0);
982 if (r)
983 dma_rx_chan = r->start;
984 r = platform_get_resource(pdev, IORESOURCE_DMA, 1);
985 if (r)
986 dma_tx_chan = r->start;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000987
Sekhar Nori212d4b62010-10-11 10:41:39 +0530988 dspi->bitbang.txrx_bufs = davinci_spi_bufs;
Sekhar Nori903ca252010-10-01 14:51:40 +0530989 if (dma_rx_chan != SPI_NO_RESOURCE &&
Michael Williamson2e3e2a52011-02-08 07:59:55 -0500990 dma_tx_chan != SPI_NO_RESOURCE) {
Matt Porter048177c2012-08-22 21:09:36 -0400991 dspi->dma_rx_chnum = dma_rx_chan;
992 dspi->dma_tx_chnum = dma_tx_chan;
Brian Niebuhr96fd8812010-09-27 22:23:23 +0530993
Sekhar Nori212d4b62010-10-11 10:41:39 +0530994 ret = davinci_spi_request_dma(dspi);
Sekhar Nori903ca252010-10-01 14:51:40 +0530995 if (ret)
996 goto free_clk;
997
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530998 dev_info(&pdev->dev, "DMA: supported\n");
Santosh Shilimkara4ee96e2013-09-30 14:52:59 -0400999 dev_info(&pdev->dev, "DMA: RX channel: %pa, TX channel: %pa, "
1000 "event queue: %d\n", &dma_rx_chan, &dma_tx_chan,
Michael Williamson2e3e2a52011-02-08 07:59:55 -05001001 pdata->dma_event_q);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001002 }
1003
Sekhar Nori212d4b62010-10-11 10:41:39 +05301004 dspi->get_rx = davinci_spi_rx_buf_u8;
1005 dspi->get_tx = davinci_spi_tx_buf_u8;
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001006
Sekhar Nori212d4b62010-10-11 10:41:39 +05301007 init_completion(&dspi->done);
Brian Niebuhre0d205e2010-09-02 16:52:06 +05301008
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001009 /* Reset In/OUT SPI module */
Sekhar Nori212d4b62010-10-11 10:41:39 +05301010 iowrite32(0, dspi->base + SPIGCR0);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001011 udelay(100);
Sekhar Nori212d4b62010-10-11 10:41:39 +05301012 iowrite32(1, dspi->base + SPIGCR0);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001013
Brian Niebuhrbe884712010-09-03 12:15:28 +05301014 /* Set up SPIPC0. CS and ENA init is done in davinci_spi_setup */
Brian Niebuhrf34bd4c2010-09-03 11:56:35 +05301015 spipc0 = SPIPC0_DIFUN_MASK | SPIPC0_DOFUN_MASK | SPIPC0_CLKFUN_MASK;
Sekhar Nori212d4b62010-10-11 10:41:39 +05301016 iowrite32(spipc0, dspi->base + SPIPC0);
Brian Niebuhrf34bd4c2010-09-03 11:56:35 +05301017
Brian Niebuhre0d205e2010-09-02 16:52:06 +05301018 if (pdata->intr_line)
Sekhar Nori212d4b62010-10-11 10:41:39 +05301019 iowrite32(SPI_INTLVL_1, dspi->base + SPILVL);
Brian Niebuhre0d205e2010-09-02 16:52:06 +05301020 else
Sekhar Nori212d4b62010-10-11 10:41:39 +05301021 iowrite32(SPI_INTLVL_0, dspi->base + SPILVL);
Brian Niebuhre0d205e2010-09-02 16:52:06 +05301022
Sekhar Nori212d4b62010-10-11 10:41:39 +05301023 iowrite32(CS_DEFAULT, dspi->base + SPIDEF);
Brian Niebuhr843a7132010-08-12 12:49:05 +05301024
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001025 /* master mode default */
Sekhar Nori212d4b62010-10-11 10:41:39 +05301026 set_io_bits(dspi->base + SPIGCR1, SPIGCR1_CLKMOD_MASK);
1027 set_io_bits(dspi->base + SPIGCR1, SPIGCR1_MASTER_MASK);
1028 set_io_bits(dspi->base + SPIGCR1, SPIGCR1_POWERDOWN_MASK);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001029
Sekhar Nori212d4b62010-10-11 10:41:39 +05301030 ret = spi_bitbang_start(&dspi->bitbang);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001031 if (ret)
Sekhar Nori903ca252010-10-01 14:51:40 +05301032 goto free_dma;
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001033
Sekhar Nori212d4b62010-10-11 10:41:39 +05301034 dev_info(&pdev->dev, "Controller at 0x%p\n", dspi->base);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001035
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001036 return ret;
1037
Sekhar Nori903ca252010-10-01 14:51:40 +05301038free_dma:
Matt Porter048177c2012-08-22 21:09:36 -04001039 dma_release_channel(dspi->dma_rx);
1040 dma_release_channel(dspi->dma_tx);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001041free_clk:
Murali Karicheriaae71472012-12-11 16:20:39 -05001042 clk_disable_unprepare(dspi->clk);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001043free_master:
Axel Lin94c69f72013-09-10 15:43:41 +08001044 spi_master_put(master);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001045err:
1046 return ret;
1047}
1048
1049/**
1050 * davinci_spi_remove - remove function for SPI Master Controller
1051 * @pdev: platform_device structure which contains plateform specific data
1052 *
1053 * This function will do the reverse action of davinci_spi_probe function
1054 * It will free the IRQ and SPI controller's memory region.
1055 * It will also call spi_bitbang_stop to destroy the work queue which was
1056 * created by spi_bitbang_start.
1057 */
Grant Likelyfd4a3192012-12-07 16:57:14 +00001058static int davinci_spi_remove(struct platform_device *pdev)
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001059{
Sekhar Nori212d4b62010-10-11 10:41:39 +05301060 struct davinci_spi *dspi;
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001061 struct spi_master *master;
1062
Jingoo Han24b5a822013-05-23 19:20:40 +09001063 master = platform_get_drvdata(pdev);
Sekhar Nori212d4b62010-10-11 10:41:39 +05301064 dspi = spi_master_get_devdata(master);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001065
Sekhar Nori212d4b62010-10-11 10:41:39 +05301066 spi_bitbang_stop(&dspi->bitbang);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001067
Murali Karicheriaae71472012-12-11 16:20:39 -05001068 clk_disable_unprepare(dspi->clk);
Axel Lin94c69f72013-09-10 15:43:41 +08001069 spi_master_put(master);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001070
1071 return 0;
1072}
1073
1074static struct platform_driver davinci_spi_driver = {
Brian Niebuhrd8c174c2010-10-06 18:47:16 +05301075 .driver = {
1076 .name = "spi_davinci",
1077 .owner = THIS_MODULE,
Axel Linb53b34f2014-02-06 11:45:08 +08001078 .of_match_table = of_match_ptr(davinci_spi_of_match),
Brian Niebuhrd8c174c2010-10-06 18:47:16 +05301079 },
Grant Likely940ab882011-10-05 11:29:49 -06001080 .probe = davinci_spi_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +00001081 .remove = davinci_spi_remove,
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001082};
Grant Likely940ab882011-10-05 11:29:49 -06001083module_platform_driver(davinci_spi_driver);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001084
1085MODULE_DESCRIPTION("TI DaVinci SPI Master Controller Driver");
1086MODULE_LICENSE("GPL");