blob: b3707badb1e58c559350919bac55b9451325a6e6 [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)
Murali Karicheri365a7bb2014-09-16 14:25:05 +030068#define SPIDAT1_WDEL BIT(10)
Brian Niebuhrcfbc5d12010-08-12 12:27:33 +053069
70/* SPIGCR1 */
Sandeep Paulraj358934a2009-12-16 22:02:18 +000071#define SPIGCR1_CLKMOD_MASK BIT(1)
72#define SPIGCR1_MASTER_MASK BIT(0)
Brian Niebuhr3f27b572010-10-06 18:25:43 +053073#define SPIGCR1_POWERDOWN_MASK BIT(8)
Sandeep Paulraj358934a2009-12-16 22:02:18 +000074#define SPIGCR1_LOOPBACK_MASK BIT(16)
Sekhar Nori8e206f12010-08-20 16:20:49 +053075#define SPIGCR1_SPIENA_MASK BIT(24)
Sandeep Paulraj358934a2009-12-16 22:02:18 +000076
77/* SPIBUF */
78#define SPIBUF_TXFULL_MASK BIT(29)
79#define SPIBUF_RXEMPTY_MASK BIT(31)
80
Brian Niebuhr7abbf232010-08-19 15:07:38 +053081/* SPIDELAY */
82#define SPIDELAY_C2TDELAY_SHIFT 24
83#define SPIDELAY_C2TDELAY_MASK (0xFF << SPIDELAY_C2TDELAY_SHIFT)
84#define SPIDELAY_T2CDELAY_SHIFT 16
85#define SPIDELAY_T2CDELAY_MASK (0xFF << SPIDELAY_T2CDELAY_SHIFT)
86#define SPIDELAY_T2EDELAY_SHIFT 8
87#define SPIDELAY_T2EDELAY_MASK (0xFF << SPIDELAY_T2EDELAY_SHIFT)
88#define SPIDELAY_C2EDELAY_SHIFT 0
89#define SPIDELAY_C2EDELAY_MASK 0xFF
90
Sandeep Paulraj358934a2009-12-16 22:02:18 +000091/* Error Masks */
92#define SPIFLG_DLEN_ERR_MASK BIT(0)
93#define SPIFLG_TIMEOUT_MASK BIT(1)
94#define SPIFLG_PARERR_MASK BIT(2)
95#define SPIFLG_DESYNC_MASK BIT(3)
96#define SPIFLG_BITERR_MASK BIT(4)
97#define SPIFLG_OVRRUN_MASK BIT(6)
Sandeep Paulraj358934a2009-12-16 22:02:18 +000098#define SPIFLG_BUF_INIT_ACTIVE_MASK BIT(24)
Brian Niebuhr839c9962010-08-23 16:39:19 +053099#define SPIFLG_ERROR_MASK (SPIFLG_DLEN_ERR_MASK \
100 | SPIFLG_TIMEOUT_MASK | SPIFLG_PARERR_MASK \
101 | SPIFLG_DESYNC_MASK | SPIFLG_BITERR_MASK \
102 | SPIFLG_OVRRUN_MASK)
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000103
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000104#define SPIINT_DMA_REQ_EN BIT(16)
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000105
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000106/* SPI Controller registers */
107#define SPIGCR0 0x00
108#define SPIGCR1 0x04
109#define SPIINT 0x08
110#define SPILVL 0x0c
111#define SPIFLG 0x10
112#define SPIPC0 0x14
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000113#define SPIDAT1 0x3c
114#define SPIBUF 0x40
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000115#define SPIDELAY 0x48
116#define SPIDEF 0x4c
117#define SPIFMT0 0x50
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000118
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000119/* SPI Controller driver's private data. */
120struct davinci_spi {
121 struct spi_bitbang bitbang;
122 struct clk *clk;
123
124 u8 version;
125 resource_size_t pbase;
126 void __iomem *base;
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530127 u32 irq;
128 struct completion done;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000129
130 const void *tx;
131 void *rx;
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530132 int rcount;
133 int wcount;
Matt Porter048177c2012-08-22 21:09:36 -0400134
135 struct dma_chan *dma_rx;
136 struct dma_chan *dma_tx;
137 int dma_rx_chnum;
138 int dma_tx_chnum;
139
Murali Karicheriaae71472012-12-11 16:20:39 -0500140 struct davinci_spi_platform_data pdata;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000141
142 void (*get_rx)(u32 rx_data, struct davinci_spi *);
143 u32 (*get_tx)(struct davinci_spi *);
144
Murali Karicheri7480e752014-07-31 20:33:14 +0300145 u8 *bytes_per_word;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000146};
147
Brian Niebuhr53a31b02010-08-16 15:05:51 +0530148static struct davinci_spi_config davinci_spi_default_cfg;
149
Sekhar Nori212d4b62010-10-11 10:41:39 +0530150static void davinci_spi_rx_buf_u8(u32 data, struct davinci_spi *dspi)
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000151{
Sekhar Nori212d4b62010-10-11 10:41:39 +0530152 if (dspi->rx) {
153 u8 *rx = dspi->rx;
Brian Niebuhr53d454a2010-08-19 17:04:25 +0530154 *rx++ = (u8)data;
Sekhar Nori212d4b62010-10-11 10:41:39 +0530155 dspi->rx = rx;
Brian Niebuhr53d454a2010-08-19 17:04:25 +0530156 }
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000157}
158
Sekhar Nori212d4b62010-10-11 10:41:39 +0530159static void davinci_spi_rx_buf_u16(u32 data, struct davinci_spi *dspi)
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000160{
Sekhar Nori212d4b62010-10-11 10:41:39 +0530161 if (dspi->rx) {
162 u16 *rx = dspi->rx;
Brian Niebuhr53d454a2010-08-19 17:04:25 +0530163 *rx++ = (u16)data;
Sekhar Nori212d4b62010-10-11 10:41:39 +0530164 dspi->rx = rx;
Brian Niebuhr53d454a2010-08-19 17:04:25 +0530165 }
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000166}
167
Sekhar Nori212d4b62010-10-11 10:41:39 +0530168static u32 davinci_spi_tx_buf_u8(struct davinci_spi *dspi)
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000169{
Brian Niebuhr53d454a2010-08-19 17:04:25 +0530170 u32 data = 0;
Jingoo Han859c3372014-09-02 11:48:00 +0900171
Sekhar Nori212d4b62010-10-11 10:41:39 +0530172 if (dspi->tx) {
173 const u8 *tx = dspi->tx;
Jingoo Han859c3372014-09-02 11:48:00 +0900174
Brian Niebuhr53d454a2010-08-19 17:04:25 +0530175 data = *tx++;
Sekhar Nori212d4b62010-10-11 10:41:39 +0530176 dspi->tx = tx;
Brian Niebuhr53d454a2010-08-19 17:04:25 +0530177 }
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000178 return data;
179}
180
Sekhar Nori212d4b62010-10-11 10:41:39 +0530181static u32 davinci_spi_tx_buf_u16(struct davinci_spi *dspi)
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000182{
Brian Niebuhr53d454a2010-08-19 17:04:25 +0530183 u32 data = 0;
Jingoo Han859c3372014-09-02 11:48:00 +0900184
Sekhar Nori212d4b62010-10-11 10:41:39 +0530185 if (dspi->tx) {
186 const u16 *tx = dspi->tx;
Jingoo Han859c3372014-09-02 11:48:00 +0900187
Brian Niebuhr53d454a2010-08-19 17:04:25 +0530188 data = *tx++;
Sekhar Nori212d4b62010-10-11 10:41:39 +0530189 dspi->tx = tx;
Brian Niebuhr53d454a2010-08-19 17:04:25 +0530190 }
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000191 return data;
192}
193
194static inline void set_io_bits(void __iomem *addr, u32 bits)
195{
196 u32 v = ioread32(addr);
197
198 v |= bits;
199 iowrite32(v, addr);
200}
201
202static inline void clear_io_bits(void __iomem *addr, u32 bits)
203{
204 u32 v = ioread32(addr);
205
206 v &= ~bits;
207 iowrite32(v, addr);
208}
209
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000210/*
211 * Interface to control the chip select signal
212 */
213static void davinci_spi_chipselect(struct spi_device *spi, int value)
214{
Sekhar Nori212d4b62010-10-11 10:41:39 +0530215 struct davinci_spi *dspi;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000216 struct davinci_spi_platform_data *pdata;
Murali Karicheri365a7bb2014-09-16 14:25:05 +0300217 struct davinci_spi_config *spicfg = spi->controller_data;
Brian Niebuhr7978b8c2010-08-13 10:11:03 +0530218 u8 chip_sel = spi->chip_select;
Sekhar Nori212d4b62010-10-11 10:41:39 +0530219 u16 spidat1 = CS_DEFAULT;
Brian Niebuhr23853972010-08-13 10:57:44 +0530220 bool gpio_chipsel = false;
Murali Karicheria88e34e2014-08-01 19:40:32 +0300221 int gpio;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000222
Sekhar Nori212d4b62010-10-11 10:41:39 +0530223 dspi = spi_master_get_devdata(spi->master);
Murali Karicheriaae71472012-12-11 16:20:39 -0500224 pdata = &dspi->pdata;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000225
Grygorii Strashkoc0600142014-08-01 19:40:33 +0300226 if (spi->cs_gpio >= 0) {
Murali Karicheria88e34e2014-08-01 19:40:32 +0300227 /* SPI core parse and update master->cs_gpio */
Brian Niebuhr23853972010-08-13 10:57:44 +0530228 gpio_chipsel = true;
Murali Karicheria88e34e2014-08-01 19:40:32 +0300229 gpio = spi->cs_gpio;
Murali Karicheria88e34e2014-08-01 19:40:32 +0300230 }
Brian Niebuhr23853972010-08-13 10:57:44 +0530231
Murali Karicheri365a7bb2014-09-16 14:25:05 +0300232 /* program delay transfers if tx_delay is non zero */
233 if (spicfg->wdelay)
234 spidat1 |= SPIDAT1_WDEL;
235
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000236 /*
237 * Board specific chip select logic decides the polarity and cs
238 * line for the controller
239 */
Brian Niebuhr23853972010-08-13 10:57:44 +0530240 if (gpio_chipsel) {
241 if (value == BITBANG_CS_ACTIVE)
Grygorii Strashkoc0600142014-08-01 19:40:33 +0300242 gpio_set_value(gpio, spi->mode & SPI_CS_HIGH);
Brian Niebuhr23853972010-08-13 10:57:44 +0530243 else
Grygorii Strashkoc0600142014-08-01 19:40:33 +0300244 gpio_set_value(gpio, !(spi->mode & SPI_CS_HIGH));
Brian Niebuhr23853972010-08-13 10:57:44 +0530245 } else {
246 if (value == BITBANG_CS_ACTIVE) {
Sekhar Nori212d4b62010-10-11 10:41:39 +0530247 spidat1 |= SPIDAT1_CSHOLD_MASK;
248 spidat1 &= ~(0x1 << chip_sel);
Brian Niebuhr23853972010-08-13 10:57:44 +0530249 }
Brian Niebuhr23853972010-08-13 10:57:44 +0530250 }
Murali Karicheri365a7bb2014-09-16 14:25:05 +0300251
252 iowrite16(spidat1, dspi->base + SPIDAT1 + 2);
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000253}
254
255/**
Brian Niebuhr7fe00922010-08-13 13:27:23 +0530256 * davinci_spi_get_prescale - Calculates the correct prescale value
257 * @maxspeed_hz: the maximum rate the SPI clock can run at
258 *
259 * This function calculates the prescale value that generates a clock rate
260 * less than or equal to the specified maximum.
261 *
262 * Returns: calculated prescale - 1 for easy programming into SPI registers
263 * or negative error number if valid prescalar cannot be updated.
264 */
Sekhar Nori212d4b62010-10-11 10:41:39 +0530265static inline int davinci_spi_get_prescale(struct davinci_spi *dspi,
Brian Niebuhr7fe00922010-08-13 13:27:23 +0530266 u32 max_speed_hz)
267{
268 int ret;
269
Sekhar Nori212d4b62010-10-11 10:41:39 +0530270 ret = DIV_ROUND_UP(clk_get_rate(dspi->clk), max_speed_hz);
Brian Niebuhr7fe00922010-08-13 13:27:23 +0530271
272 if (ret < 3 || ret > 256)
273 return -EINVAL;
274
275 return ret - 1;
276}
277
278/**
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000279 * davinci_spi_setup_transfer - This functions will determine transfer method
280 * @spi: spi device on which data transfer to be done
281 * @t: spi transfer in which transfer info is filled
282 *
283 * This function determines data transfer method (8/16/32 bit transfer).
284 * It will also set the SPI Clock Control register according to
285 * SPI slave device freq.
286 */
287static int davinci_spi_setup_transfer(struct spi_device *spi,
288 struct spi_transfer *t)
289{
290
Sekhar Nori212d4b62010-10-11 10:41:39 +0530291 struct davinci_spi *dspi;
Brian Niebuhr25f33512010-08-19 12:15:22 +0530292 struct davinci_spi_config *spicfg;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000293 u8 bits_per_word = 0;
Sachin Kamat32ea3942013-09-11 16:05:04 +0530294 u32 hz = 0, spifmt = 0;
295 int prescale;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000296
Sekhar Nori212d4b62010-10-11 10:41:39 +0530297 dspi = spi_master_get_devdata(spi->master);
Murali Karicheri365a7bb2014-09-16 14:25:05 +0300298 spicfg = spi->controller_data;
Brian Niebuhr25f33512010-08-19 12:15:22 +0530299 if (!spicfg)
300 spicfg = &davinci_spi_default_cfg;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000301
302 if (t) {
303 bits_per_word = t->bits_per_word;
304 hz = t->speed_hz;
305 }
306
307 /* if bits_per_word is not set then set it default */
308 if (!bits_per_word)
309 bits_per_word = spi->bits_per_word;
310
311 /*
312 * Assign function pointer to appropriate transfer method
313 * 8bit, 16bit or 32bit transfer
314 */
Stephen Warren24778be2013-05-21 20:36:35 -0600315 if (bits_per_word <= 8) {
Sekhar Nori212d4b62010-10-11 10:41:39 +0530316 dspi->get_rx = davinci_spi_rx_buf_u8;
317 dspi->get_tx = davinci_spi_tx_buf_u8;
318 dspi->bytes_per_word[spi->chip_select] = 1;
Stephen Warren24778be2013-05-21 20:36:35 -0600319 } else {
Sekhar Nori212d4b62010-10-11 10:41:39 +0530320 dspi->get_rx = davinci_spi_rx_buf_u16;
321 dspi->get_tx = davinci_spi_tx_buf_u16;
322 dspi->bytes_per_word[spi->chip_select] = 2;
Stephen Warren24778be2013-05-21 20:36:35 -0600323 }
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000324
325 if (!hz)
326 hz = spi->max_speed_hz;
327
Brian Niebuhr25f33512010-08-19 12:15:22 +0530328 /* Set up SPIFMTn register, unique to this chipselect. */
329
Sekhar Nori212d4b62010-10-11 10:41:39 +0530330 prescale = davinci_spi_get_prescale(dspi, hz);
Brian Niebuhr7fe00922010-08-13 13:27:23 +0530331 if (prescale < 0)
332 return prescale;
333
Brian Niebuhr25f33512010-08-19 12:15:22 +0530334 spifmt = (prescale << SPIFMT_PRESCALE_SHIFT) | (bits_per_word & 0x1f);
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000335
Brian Niebuhr25f33512010-08-19 12:15:22 +0530336 if (spi->mode & SPI_LSB_FIRST)
337 spifmt |= SPIFMT_SHIFTDIR_MASK;
338
339 if (spi->mode & SPI_CPOL)
340 spifmt |= SPIFMT_POLARITY_MASK;
341
342 if (!(spi->mode & SPI_CPHA))
343 spifmt |= SPIFMT_PHASE_MASK;
344
345 /*
Murali Karicheri365a7bb2014-09-16 14:25:05 +0300346 * Assume wdelay is used only on SPI peripherals that has this field
347 * in SPIFMTn register and when it's configured from board file or DT.
348 */
349 if (spicfg->wdelay)
350 spifmt |= ((spicfg->wdelay << SPIFMT_WDELAY_SHIFT)
351 & SPIFMT_WDELAY_MASK);
352
353 /*
Brian Niebuhr25f33512010-08-19 12:15:22 +0530354 * Version 1 hardware supports two basic SPI modes:
355 * - Standard SPI mode uses 4 pins, with chipselect
356 * - 3 pin SPI is a 4 pin variant without CS (SPI_NO_CS)
357 * (distinct from SPI_3WIRE, with just one data wire;
358 * or similar variants without MOSI or without MISO)
359 *
360 * Version 2 hardware supports an optional handshaking signal,
361 * so it can support two more modes:
362 * - 5 pin SPI variant is standard SPI plus SPI_READY
363 * - 4 pin with enable is (SPI_READY | SPI_NO_CS)
364 */
365
Sekhar Nori212d4b62010-10-11 10:41:39 +0530366 if (dspi->version == SPI_VERSION_2) {
Brian Niebuhr25f33512010-08-19 12:15:22 +0530367
Brian Niebuhr7abbf232010-08-19 15:07:38 +0530368 u32 delay = 0;
369
Brian Niebuhr25f33512010-08-19 12:15:22 +0530370 if (spicfg->odd_parity)
371 spifmt |= SPIFMT_ODD_PARITY_MASK;
372
373 if (spicfg->parity_enable)
374 spifmt |= SPIFMT_PARITYENA_MASK;
375
Brian Niebuhr7abbf232010-08-19 15:07:38 +0530376 if (spicfg->timer_disable) {
Brian Niebuhr25f33512010-08-19 12:15:22 +0530377 spifmt |= SPIFMT_DISTIMER_MASK;
Brian Niebuhr7abbf232010-08-19 15:07:38 +0530378 } else {
379 delay |= (spicfg->c2tdelay << SPIDELAY_C2TDELAY_SHIFT)
380 & SPIDELAY_C2TDELAY_MASK;
381 delay |= (spicfg->t2cdelay << SPIDELAY_T2CDELAY_SHIFT)
382 & SPIDELAY_T2CDELAY_MASK;
383 }
Brian Niebuhr25f33512010-08-19 12:15:22 +0530384
Brian Niebuhr7abbf232010-08-19 15:07:38 +0530385 if (spi->mode & SPI_READY) {
Brian Niebuhr25f33512010-08-19 12:15:22 +0530386 spifmt |= SPIFMT_WAITENA_MASK;
Brian Niebuhr7abbf232010-08-19 15:07:38 +0530387 delay |= (spicfg->t2edelay << SPIDELAY_T2EDELAY_SHIFT)
388 & SPIDELAY_T2EDELAY_MASK;
389 delay |= (spicfg->c2edelay << SPIDELAY_C2EDELAY_SHIFT)
390 & SPIDELAY_C2EDELAY_MASK;
391 }
392
Sekhar Nori212d4b62010-10-11 10:41:39 +0530393 iowrite32(delay, dspi->base + SPIDELAY);
Brian Niebuhr25f33512010-08-19 12:15:22 +0530394 }
395
Sekhar Nori212d4b62010-10-11 10:41:39 +0530396 iowrite32(spifmt, dspi->base + SPIFMT0);
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000397
398 return 0;
399}
400
Murali Karicheri365a7bb2014-09-16 14:25:05 +0300401static int davinci_spi_of_setup(struct spi_device *spi)
402{
403 struct davinci_spi_config *spicfg = spi->controller_data;
404 struct device_node *np = spi->dev.of_node;
405 u32 prop;
406
407 if (spicfg == NULL && np) {
408 spicfg = kzalloc(sizeof(*spicfg), GFP_KERNEL);
409 if (!spicfg)
410 return -ENOMEM;
411 *spicfg = davinci_spi_default_cfg;
412 /* override with dt configured values */
413 if (!of_property_read_u32(np, "ti,spi-wdelay", &prop))
414 spicfg->wdelay = (u8)prop;
415 spi->controller_data = spicfg;
416 }
417
418 return 0;
419}
420
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000421/**
422 * davinci_spi_setup - This functions will set default transfer method
423 * @spi: spi device on which data transfer to be done
424 *
425 * This functions sets the default transfer method.
426 */
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000427static int davinci_spi_setup(struct spi_device *spi)
428{
Brian Niebuhrb23a5d42010-09-24 18:53:32 +0530429 int retval = 0;
Sekhar Nori212d4b62010-10-11 10:41:39 +0530430 struct davinci_spi *dspi;
Brian Niebuhrbe884712010-09-03 12:15:28 +0530431 struct davinci_spi_platform_data *pdata;
Murali Karicheria88e34e2014-08-01 19:40:32 +0300432 struct spi_master *master = spi->master;
433 struct device_node *np = spi->dev.of_node;
434 bool internal_cs = true;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000435
Sekhar Nori212d4b62010-10-11 10:41:39 +0530436 dspi = spi_master_get_devdata(spi->master);
Murali Karicheriaae71472012-12-11 16:20:39 -0500437 pdata = &dspi->pdata;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000438
Brian Niebuhrbe884712010-09-03 12:15:28 +0530439 if (!(spi->mode & SPI_NO_CS)) {
Murali Karicheria88e34e2014-08-01 19:40:32 +0300440 if (np && (master->cs_gpios != NULL) && (spi->cs_gpio >= 0)) {
Grygorii Strashko8936dec2014-09-12 17:54:00 +0300441 retval = gpio_direction_output(
442 spi->cs_gpio, !(spi->mode & SPI_CS_HIGH));
Murali Karicheria88e34e2014-08-01 19:40:32 +0300443 internal_cs = false;
444 } else if (pdata->chip_sel &&
445 spi->chip_select < pdata->num_chipselect &&
446 pdata->chip_sel[spi->chip_select] != SPI_INTERN_CS) {
Grygorii Strashkoc0600142014-08-01 19:40:33 +0300447 spi->cs_gpio = pdata->chip_sel[spi->chip_select];
Grygorii Strashko8936dec2014-09-12 17:54:00 +0300448 retval = gpio_direction_output(
449 spi->cs_gpio, !(spi->mode & SPI_CS_HIGH));
Murali Karicheria88e34e2014-08-01 19:40:32 +0300450 internal_cs = false;
451 }
Brian Niebuhrbe884712010-09-03 12:15:28 +0530452
Grygorii Strashko3f2dad92014-08-21 18:25:05 +0300453 if (retval) {
454 dev_err(&spi->dev, "GPIO %d setup failed (%d)\n",
455 spi->cs_gpio, retval);
456 return retval;
457 }
Grygorii Strashkoc0600142014-08-01 19:40:33 +0300458
Grygorii Strashko3f2dad92014-08-21 18:25:05 +0300459 if (internal_cs)
460 set_io_bits(dspi->base + SPIPC0, 1 << spi->chip_select);
461 }
Murali Karicheria88e34e2014-08-01 19:40:32 +0300462
Brian Niebuhrbe884712010-09-03 12:15:28 +0530463 if (spi->mode & SPI_READY)
Sekhar Nori212d4b62010-10-11 10:41:39 +0530464 set_io_bits(dspi->base + SPIPC0, SPIPC0_SPIENA_MASK);
Brian Niebuhrbe884712010-09-03 12:15:28 +0530465
466 if (spi->mode & SPI_LOOP)
Sekhar Nori212d4b62010-10-11 10:41:39 +0530467 set_io_bits(dspi->base + SPIGCR1, SPIGCR1_LOOPBACK_MASK);
Brian Niebuhrbe884712010-09-03 12:15:28 +0530468 else
Sekhar Nori212d4b62010-10-11 10:41:39 +0530469 clear_io_bits(dspi->base + SPIGCR1, SPIGCR1_LOOPBACK_MASK);
Brian Niebuhrbe884712010-09-03 12:15:28 +0530470
Murali Karicheri365a7bb2014-09-16 14:25:05 +0300471 return davinci_spi_of_setup(spi);
472}
473
474static void davinci_spi_cleanup(struct spi_device *spi)
475{
476 struct davinci_spi_config *spicfg = spi->controller_data;
477
478 spi->controller_data = NULL;
479 if (spi->dev.of_node)
480 kfree(spicfg);
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000481}
482
Sekhar Nori212d4b62010-10-11 10:41:39 +0530483static int davinci_spi_check_error(struct davinci_spi *dspi, int int_status)
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000484{
Sekhar Nori212d4b62010-10-11 10:41:39 +0530485 struct device *sdev = dspi->bitbang.master->dev.parent;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000486
487 if (int_status & SPIFLG_TIMEOUT_MASK) {
488 dev_dbg(sdev, "SPI Time-out Error\n");
489 return -ETIMEDOUT;
490 }
491 if (int_status & SPIFLG_DESYNC_MASK) {
492 dev_dbg(sdev, "SPI Desynchronization Error\n");
493 return -EIO;
494 }
495 if (int_status & SPIFLG_BITERR_MASK) {
496 dev_dbg(sdev, "SPI Bit error\n");
497 return -EIO;
498 }
499
Sekhar Nori212d4b62010-10-11 10:41:39 +0530500 if (dspi->version == SPI_VERSION_2) {
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000501 if (int_status & SPIFLG_DLEN_ERR_MASK) {
502 dev_dbg(sdev, "SPI Data Length Error\n");
503 return -EIO;
504 }
505 if (int_status & SPIFLG_PARERR_MASK) {
506 dev_dbg(sdev, "SPI Parity Error\n");
507 return -EIO;
508 }
509 if (int_status & SPIFLG_OVRRUN_MASK) {
510 dev_dbg(sdev, "SPI Data Overrun error\n");
511 return -EIO;
512 }
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000513 if (int_status & SPIFLG_BUF_INIT_ACTIVE_MASK) {
514 dev_dbg(sdev, "SPI Buffer Init Active\n");
515 return -EBUSY;
516 }
517 }
518
519 return 0;
520}
521
522/**
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530523 * davinci_spi_process_events - check for and handle any SPI controller events
Sekhar Nori212d4b62010-10-11 10:41:39 +0530524 * @dspi: the controller data
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530525 *
526 * This function will check the SPIFLG register and handle any events that are
527 * detected there
528 */
Sekhar Nori212d4b62010-10-11 10:41:39 +0530529static int davinci_spi_process_events(struct davinci_spi *dspi)
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530530{
Sekhar Nori212d4b62010-10-11 10:41:39 +0530531 u32 buf, status, errors = 0, spidat1;
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530532
Sekhar Nori212d4b62010-10-11 10:41:39 +0530533 buf = ioread32(dspi->base + SPIBUF);
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530534
Sekhar Nori212d4b62010-10-11 10:41:39 +0530535 if (dspi->rcount > 0 && !(buf & SPIBUF_RXEMPTY_MASK)) {
536 dspi->get_rx(buf & 0xFFFF, dspi);
537 dspi->rcount--;
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530538 }
539
Sekhar Nori212d4b62010-10-11 10:41:39 +0530540 status = ioread32(dspi->base + SPIFLG);
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530541
542 if (unlikely(status & SPIFLG_ERROR_MASK)) {
543 errors = status & SPIFLG_ERROR_MASK;
544 goto out;
545 }
546
Sekhar Nori212d4b62010-10-11 10:41:39 +0530547 if (dspi->wcount > 0 && !(buf & SPIBUF_TXFULL_MASK)) {
548 spidat1 = ioread32(dspi->base + SPIDAT1);
549 dspi->wcount--;
550 spidat1 &= ~0xFFFF;
551 spidat1 |= 0xFFFF & dspi->get_tx(dspi);
552 iowrite32(spidat1, dspi->base + SPIDAT1);
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530553 }
554
555out:
556 return errors;
557}
558
Matt Porter048177c2012-08-22 21:09:36 -0400559static void davinci_spi_dma_rx_callback(void *data)
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530560{
Matt Porter048177c2012-08-22 21:09:36 -0400561 struct davinci_spi *dspi = (struct davinci_spi *)data;
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530562
Matt Porter048177c2012-08-22 21:09:36 -0400563 dspi->rcount = 0;
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530564
Matt Porter048177c2012-08-22 21:09:36 -0400565 if (!dspi->wcount && !dspi->rcount)
566 complete(&dspi->done);
567}
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530568
Matt Porter048177c2012-08-22 21:09:36 -0400569static void davinci_spi_dma_tx_callback(void *data)
570{
571 struct davinci_spi *dspi = (struct davinci_spi *)data;
572
573 dspi->wcount = 0;
574
575 if (!dspi->wcount && !dspi->rcount)
Sekhar Nori212d4b62010-10-11 10:41:39 +0530576 complete(&dspi->done);
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530577}
578
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530579/**
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000580 * davinci_spi_bufs - functions which will handle transfer data
581 * @spi: spi device on which data transfer to be done
582 * @t: spi transfer in which transfer info is filled
583 *
584 * This function will put data to be transferred into data register
585 * of SPI controller and then wait until the completion will be marked
586 * by the IRQ Handler.
587 */
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530588static int davinci_spi_bufs(struct spi_device *spi, struct spi_transfer *t)
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000589{
Sekhar Nori212d4b62010-10-11 10:41:39 +0530590 struct davinci_spi *dspi;
Matt Porter048177c2012-08-22 21:09:36 -0400591 int data_type, ret = -ENOMEM;
Sekhar Nori212d4b62010-10-11 10:41:39 +0530592 u32 tx_data, spidat1;
Brian Niebuhr839c9962010-08-23 16:39:19 +0530593 u32 errors = 0;
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530594 struct davinci_spi_config *spicfg;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000595 struct davinci_spi_platform_data *pdata;
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530596 unsigned uninitialized_var(rx_buf_count);
Matt Porter048177c2012-08-22 21:09:36 -0400597 void *dummy_buf = NULL;
598 struct scatterlist sg_rx, sg_tx;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000599
Sekhar Nori212d4b62010-10-11 10:41:39 +0530600 dspi = spi_master_get_devdata(spi->master);
Murali Karicheriaae71472012-12-11 16:20:39 -0500601 pdata = &dspi->pdata;
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530602 spicfg = (struct davinci_spi_config *)spi->controller_data;
603 if (!spicfg)
604 spicfg = &davinci_spi_default_cfg;
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530605
606 /* convert len to words based on bits_per_word */
Sekhar Nori212d4b62010-10-11 10:41:39 +0530607 data_type = dspi->bytes_per_word[spi->chip_select];
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000608
Sekhar Nori212d4b62010-10-11 10:41:39 +0530609 dspi->tx = t->tx_buf;
610 dspi->rx = t->rx_buf;
611 dspi->wcount = t->len / data_type;
612 dspi->rcount = dspi->wcount;
Brian Niebuhr7978b8c2010-08-13 10:11:03 +0530613
Sekhar Nori212d4b62010-10-11 10:41:39 +0530614 spidat1 = ioread32(dspi->base + SPIDAT1);
Brian Niebuhr839c9962010-08-23 16:39:19 +0530615
Sekhar Nori212d4b62010-10-11 10:41:39 +0530616 clear_io_bits(dspi->base + SPIGCR1, SPIGCR1_POWERDOWN_MASK);
617 set_io_bits(dspi->base + SPIGCR1, SPIGCR1_SPIENA_MASK);
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000618
Wolfram Sang16735d02013-11-14 14:32:02 -0800619 reinit_completion(&dspi->done);
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530620
621 if (spicfg->io_type == SPI_IO_TYPE_INTR)
Sekhar Nori212d4b62010-10-11 10:41:39 +0530622 set_io_bits(dspi->base + SPIINT, SPIINT_MASKINT);
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530623
624 if (spicfg->io_type != SPI_IO_TYPE_DMA) {
625 /* start the transfer */
Sekhar Nori212d4b62010-10-11 10:41:39 +0530626 dspi->wcount--;
627 tx_data = dspi->get_tx(dspi);
628 spidat1 &= 0xFFFF0000;
629 spidat1 |= tx_data & 0xFFFF;
630 iowrite32(spidat1, dspi->base + SPIDAT1);
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530631 } else {
Matt Porter048177c2012-08-22 21:09:36 -0400632 struct dma_slave_config dma_rx_conf = {
633 .direction = DMA_DEV_TO_MEM,
634 .src_addr = (unsigned long)dspi->pbase + SPIBUF,
635 .src_addr_width = data_type,
636 .src_maxburst = 1,
637 };
638 struct dma_slave_config dma_tx_conf = {
639 .direction = DMA_MEM_TO_DEV,
640 .dst_addr = (unsigned long)dspi->pbase + SPIDAT1,
641 .dst_addr_width = data_type,
642 .dst_maxburst = 1,
643 };
644 struct dma_async_tx_descriptor *rxdesc;
645 struct dma_async_tx_descriptor *txdesc;
646 void *buf;
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530647
Matt Porter048177c2012-08-22 21:09:36 -0400648 dummy_buf = kzalloc(t->len, GFP_KERNEL);
649 if (!dummy_buf)
650 goto err_alloc_dummy_buf;
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530651
Matt Porter048177c2012-08-22 21:09:36 -0400652 dmaengine_slave_config(dspi->dma_rx, &dma_rx_conf);
653 dmaengine_slave_config(dspi->dma_tx, &dma_tx_conf);
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530654
Matt Porter048177c2012-08-22 21:09:36 -0400655 sg_init_table(&sg_rx, 1);
656 if (!t->rx_buf)
657 buf = dummy_buf;
Michael Williamsonb1178b22011-03-14 11:49:02 -0400658 else
Matt Porter048177c2012-08-22 21:09:36 -0400659 buf = t->rx_buf;
660 t->rx_dma = dma_map_single(&spi->dev, buf,
661 t->len, DMA_FROM_DEVICE);
662 if (!t->rx_dma) {
663 ret = -EFAULT;
664 goto err_rx_map;
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530665 }
Matt Porter048177c2012-08-22 21:09:36 -0400666 sg_dma_address(&sg_rx) = t->rx_dma;
667 sg_dma_len(&sg_rx) = t->len;
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530668
Matt Porter048177c2012-08-22 21:09:36 -0400669 sg_init_table(&sg_tx, 1);
670 if (!t->tx_buf)
671 buf = dummy_buf;
672 else
673 buf = (void *)t->tx_buf;
674 t->tx_dma = dma_map_single(&spi->dev, buf,
Christian Eggers89c66ee2013-07-29 20:54:09 +0200675 t->len, DMA_TO_DEVICE);
Matt Porter048177c2012-08-22 21:09:36 -0400676 if (!t->tx_dma) {
677 ret = -EFAULT;
678 goto err_tx_map;
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530679 }
Matt Porter048177c2012-08-22 21:09:36 -0400680 sg_dma_address(&sg_tx) = t->tx_dma;
681 sg_dma_len(&sg_tx) = t->len;
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530682
Matt Porter048177c2012-08-22 21:09:36 -0400683 rxdesc = dmaengine_prep_slave_sg(dspi->dma_rx,
684 &sg_rx, 1, DMA_DEV_TO_MEM,
685 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
686 if (!rxdesc)
687 goto err_desc;
688
689 txdesc = dmaengine_prep_slave_sg(dspi->dma_tx,
690 &sg_tx, 1, DMA_MEM_TO_DEV,
691 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
692 if (!txdesc)
693 goto err_desc;
694
695 rxdesc->callback = davinci_spi_dma_rx_callback;
696 rxdesc->callback_param = (void *)dspi;
697 txdesc->callback = davinci_spi_dma_tx_callback;
698 txdesc->callback_param = (void *)dspi;
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530699
700 if (pdata->cshold_bug)
Sekhar Nori212d4b62010-10-11 10:41:39 +0530701 iowrite16(spidat1 >> 16, dspi->base + SPIDAT1 + 2);
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530702
Matt Porter048177c2012-08-22 21:09:36 -0400703 dmaengine_submit(rxdesc);
704 dmaengine_submit(txdesc);
705
706 dma_async_issue_pending(dspi->dma_rx);
707 dma_async_issue_pending(dspi->dma_tx);
708
Sekhar Nori212d4b62010-10-11 10:41:39 +0530709 set_io_bits(dspi->base + SPIINT, SPIINT_DMA_REQ_EN);
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530710 }
Brian Niebuhrcf90fe72010-08-20 17:02:49 +0530711
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530712 /* Wait for the transfer to complete */
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530713 if (spicfg->io_type != SPI_IO_TYPE_POLL) {
Sekhar Nori212d4b62010-10-11 10:41:39 +0530714 wait_for_completion_interruptible(&(dspi->done));
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530715 } else {
Sekhar Nori212d4b62010-10-11 10:41:39 +0530716 while (dspi->rcount > 0 || dspi->wcount > 0) {
717 errors = davinci_spi_process_events(dspi);
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530718 if (errors)
719 break;
720 cpu_relax();
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000721 }
722 }
723
Sekhar Nori212d4b62010-10-11 10:41:39 +0530724 clear_io_bits(dspi->base + SPIINT, SPIINT_MASKALL);
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530725 if (spicfg->io_type == SPI_IO_TYPE_DMA) {
Sekhar Nori212d4b62010-10-11 10:41:39 +0530726 clear_io_bits(dspi->base + SPIINT, SPIINT_DMA_REQ_EN);
Matt Porter048177c2012-08-22 21:09:36 -0400727
728 dma_unmap_single(&spi->dev, t->rx_dma,
729 t->len, DMA_FROM_DEVICE);
730 dma_unmap_single(&spi->dev, t->tx_dma,
731 t->len, DMA_TO_DEVICE);
732 kfree(dummy_buf);
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530733 }
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530734
Sekhar Nori212d4b62010-10-11 10:41:39 +0530735 clear_io_bits(dspi->base + SPIGCR1, SPIGCR1_SPIENA_MASK);
736 set_io_bits(dspi->base + SPIGCR1, SPIGCR1_POWERDOWN_MASK);
Brian Niebuhr3f27b572010-10-06 18:25:43 +0530737
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000738 /*
739 * Check for bit error, desync error,parity error,timeout error and
740 * receive overflow errors
741 */
Brian Niebuhr839c9962010-08-23 16:39:19 +0530742 if (errors) {
Sekhar Nori212d4b62010-10-11 10:41:39 +0530743 ret = davinci_spi_check_error(dspi, errors);
Brian Niebuhr839c9962010-08-23 16:39:19 +0530744 WARN(!ret, "%s: error reported but no error found!\n",
745 dev_name(&spi->dev));
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000746 return ret;
Brian Niebuhr839c9962010-08-23 16:39:19 +0530747 }
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000748
Sekhar Nori212d4b62010-10-11 10:41:39 +0530749 if (dspi->rcount != 0 || dspi->wcount != 0) {
Matt Porter048177c2012-08-22 21:09:36 -0400750 dev_err(&spi->dev, "SPI data transfer error\n");
Brian Niebuhr87467bd2010-10-06 17:03:10 +0530751 return -EIO;
752 }
753
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000754 return t->len;
Matt Porter048177c2012-08-22 21:09:36 -0400755
756err_desc:
757 dma_unmap_single(&spi->dev, t->tx_dma, t->len, DMA_TO_DEVICE);
758err_tx_map:
759 dma_unmap_single(&spi->dev, t->rx_dma, t->len, DMA_FROM_DEVICE);
760err_rx_map:
761 kfree(dummy_buf);
762err_alloc_dummy_buf:
763 return ret;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000764}
765
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530766/**
Murali Karicheri32310aa2012-12-21 15:13:26 -0500767 * dummy_thread_fn - dummy thread function
768 * @irq: IRQ number for this SPI Master
769 * @context_data: structure for SPI Master controller davinci_spi
770 *
771 * This is to satisfy the request_threaded_irq() API so that the irq
772 * handler is called in interrupt context.
773 */
774static irqreturn_t dummy_thread_fn(s32 irq, void *data)
775{
776 return IRQ_HANDLED;
777}
778
779/**
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530780 * davinci_spi_irq - Interrupt handler for SPI Master Controller
781 * @irq: IRQ number for this SPI Master
782 * @context_data: structure for SPI Master controller davinci_spi
783 *
784 * ISR will determine that interrupt arrives either for READ or WRITE command.
785 * According to command it will do the appropriate action. It will check
786 * transfer length and if it is not zero then dispatch transfer command again.
787 * If transfer length is zero then it will indicate the COMPLETION so that
788 * davinci_spi_bufs function can go ahead.
789 */
Sekhar Nori212d4b62010-10-11 10:41:39 +0530790static irqreturn_t davinci_spi_irq(s32 irq, void *data)
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530791{
Sekhar Nori212d4b62010-10-11 10:41:39 +0530792 struct davinci_spi *dspi = data;
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530793 int status;
794
Sekhar Nori212d4b62010-10-11 10:41:39 +0530795 status = davinci_spi_process_events(dspi);
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530796 if (unlikely(status != 0))
Sekhar Nori212d4b62010-10-11 10:41:39 +0530797 clear_io_bits(dspi->base + SPIINT, SPIINT_MASKINT);
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530798
Sekhar Nori212d4b62010-10-11 10:41:39 +0530799 if ((!dspi->rcount && !dspi->wcount) || status)
800 complete(&dspi->done);
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530801
802 return IRQ_HANDLED;
803}
804
Sekhar Nori212d4b62010-10-11 10:41:39 +0530805static int davinci_spi_request_dma(struct davinci_spi *dspi)
Sekhar Nori903ca252010-10-01 14:51:40 +0530806{
Matt Porter048177c2012-08-22 21:09:36 -0400807 dma_cap_mask_t mask;
808 struct device *sdev = dspi->bitbang.master->dev.parent;
Sekhar Nori903ca252010-10-01 14:51:40 +0530809 int r;
810
Matt Porter048177c2012-08-22 21:09:36 -0400811 dma_cap_zero(mask);
812 dma_cap_set(DMA_SLAVE, mask);
813
814 dspi->dma_rx = dma_request_channel(mask, edma_filter_fn,
815 &dspi->dma_rx_chnum);
816 if (!dspi->dma_rx) {
817 dev_err(sdev, "request RX DMA channel failed\n");
818 r = -ENODEV;
Brian Niebuhr523c37e2010-10-04 17:35:34 +0530819 goto rx_dma_failed;
Sekhar Nori903ca252010-10-01 14:51:40 +0530820 }
821
Matt Porter048177c2012-08-22 21:09:36 -0400822 dspi->dma_tx = dma_request_channel(mask, edma_filter_fn,
823 &dspi->dma_tx_chnum);
824 if (!dspi->dma_tx) {
825 dev_err(sdev, "request TX DMA channel failed\n");
826 r = -ENODEV;
Brian Niebuhr523c37e2010-10-04 17:35:34 +0530827 goto tx_dma_failed;
Sekhar Nori903ca252010-10-01 14:51:40 +0530828 }
829
830 return 0;
Matt Porter048177c2012-08-22 21:09:36 -0400831
Brian Niebuhr523c37e2010-10-04 17:35:34 +0530832tx_dma_failed:
Matt Porter048177c2012-08-22 21:09:36 -0400833 dma_release_channel(dspi->dma_rx);
Brian Niebuhr523c37e2010-10-04 17:35:34 +0530834rx_dma_failed:
835 return r;
Sekhar Nori903ca252010-10-01 14:51:40 +0530836}
837
Murali Karicheriaae71472012-12-11 16:20:39 -0500838#if defined(CONFIG_OF)
839static const struct of_device_id davinci_spi_of_match[] = {
840 {
Manjunathappa, Prakash804413f2013-04-03 19:39:06 +0530841 .compatible = "ti,dm6441-spi",
Murali Karicheriaae71472012-12-11 16:20:39 -0500842 },
843 {
Manjunathappa, Prakash804413f2013-04-03 19:39:06 +0530844 .compatible = "ti,da830-spi",
Murali Karicheriaae71472012-12-11 16:20:39 -0500845 .data = (void *)SPI_VERSION_2,
846 },
847 { },
848};
Manjunathappa, Prakash0d2d0cc2013-02-25 16:14:07 +0530849MODULE_DEVICE_TABLE(of, davinci_spi_of_match);
Murali Karicheriaae71472012-12-11 16:20:39 -0500850
851/**
852 * spi_davinci_get_pdata - Get platform data from DTS binding
853 * @pdev: ptr to platform data
854 * @dspi: ptr to driver data
855 *
856 * Parses and populates pdata in dspi from device tree bindings.
857 *
858 * NOTE: Not all platform data params are supported currently.
859 */
860static int spi_davinci_get_pdata(struct platform_device *pdev,
861 struct davinci_spi *dspi)
862{
863 struct device_node *node = pdev->dev.of_node;
864 struct davinci_spi_platform_data *pdata;
865 unsigned int num_cs, intr_line = 0;
866 const struct of_device_id *match;
867
868 pdata = &dspi->pdata;
869
870 pdata->version = SPI_VERSION_1;
Axel Linb53b34f2014-02-06 11:45:08 +0800871 match = of_match_device(davinci_spi_of_match, &pdev->dev);
Murali Karicheriaae71472012-12-11 16:20:39 -0500872 if (!match)
873 return -ENODEV;
874
875 /* match data has the SPI version number for SPI_VERSION_2 */
876 if (match->data == (void *)SPI_VERSION_2)
877 pdata->version = SPI_VERSION_2;
878
879 /*
880 * default num_cs is 1 and all chipsel are internal to the chip
Murali Karicheria88e34e2014-08-01 19:40:32 +0300881 * indicated by chip_sel being NULL or cs_gpios being NULL or
882 * set to -ENOENT. num-cs includes internal as well as gpios.
Murali Karicheriaae71472012-12-11 16:20:39 -0500883 * indicated by chip_sel being NULL. GPIO based CS is not
884 * supported yet in DT bindings.
885 */
886 num_cs = 1;
887 of_property_read_u32(node, "num-cs", &num_cs);
888 pdata->num_chipselect = num_cs;
889 of_property_read_u32(node, "ti,davinci-spi-intr-line", &intr_line);
890 pdata->intr_line = intr_line;
891 return 0;
892}
893#else
Murali Karicheriaae71472012-12-11 16:20:39 -0500894static struct davinci_spi_platform_data
895 *spi_davinci_get_pdata(struct platform_device *pdev,
896 struct davinci_spi *dspi)
897{
898 return -ENODEV;
899}
900#endif
901
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000902/**
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000903 * davinci_spi_probe - probe function for SPI Master Controller
904 * @pdev: platform_device structure which contains plateform specific data
Brian Niebuhr035540f2010-10-06 18:32:40 +0530905 *
906 * According to Linux Device Model this function will be invoked by Linux
907 * with platform_device struct which contains the device specific info.
908 * This function will map the SPI controller's memory, register IRQ,
909 * Reset SPI controller and setting its registers to default value.
910 * It will invoke spi_bitbang_start to create work queue so that client driver
911 * can register transfer method to work queue.
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000912 */
Grant Likelyfd4a3192012-12-07 16:57:14 +0000913static int davinci_spi_probe(struct platform_device *pdev)
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000914{
915 struct spi_master *master;
Sekhar Nori212d4b62010-10-11 10:41:39 +0530916 struct davinci_spi *dspi;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000917 struct davinci_spi_platform_data *pdata;
Jingoo Han5b3bb592013-12-09 19:12:03 +0900918 struct resource *r;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000919 resource_size_t dma_rx_chan = SPI_NO_RESOURCE;
920 resource_size_t dma_tx_chan = SPI_NO_RESOURCE;
Grygorii Strashkoc0600142014-08-01 19:40:33 +0300921 int ret = 0;
Brian Niebuhrf34bd4c2010-09-03 11:56:35 +0530922 u32 spipc0;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000923
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000924 master = spi_alloc_master(&pdev->dev, sizeof(struct davinci_spi));
925 if (master == NULL) {
926 ret = -ENOMEM;
927 goto err;
928 }
929
Jingoo Han24b5a822013-05-23 19:20:40 +0900930 platform_set_drvdata(pdev, master);
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000931
Sekhar Nori212d4b62010-10-11 10:41:39 +0530932 dspi = spi_master_get_devdata(master);
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000933
Jingoo Han8074cf02013-07-30 16:58:59 +0900934 if (dev_get_platdata(&pdev->dev)) {
935 pdata = dev_get_platdata(&pdev->dev);
Murali Karicheriaae71472012-12-11 16:20:39 -0500936 dspi->pdata = *pdata;
937 } else {
938 /* update dspi pdata with that from the DT */
939 ret = spi_davinci_get_pdata(pdev, dspi);
940 if (ret < 0)
941 goto free_master;
942 }
943
944 /* pdata in dspi is now updated and point pdata to that */
945 pdata = &dspi->pdata;
946
Murali Karicheri7480e752014-07-31 20:33:14 +0300947 dspi->bytes_per_word = devm_kzalloc(&pdev->dev,
948 sizeof(*dspi->bytes_per_word) *
949 pdata->num_chipselect, GFP_KERNEL);
950 if (dspi->bytes_per_word == NULL) {
951 ret = -ENOMEM;
952 goto free_master;
953 }
954
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000955 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
956 if (r == NULL) {
957 ret = -ENOENT;
958 goto free_master;
959 }
960
Sekhar Nori212d4b62010-10-11 10:41:39 +0530961 dspi->pbase = r->start;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000962
Jingoo Han5b3bb592013-12-09 19:12:03 +0900963 dspi->base = devm_ioremap_resource(&pdev->dev, r);
964 if (IS_ERR(dspi->base)) {
965 ret = PTR_ERR(dspi->base);
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000966 goto free_master;
967 }
968
Sekhar Nori212d4b62010-10-11 10:41:39 +0530969 dspi->irq = platform_get_irq(pdev, 0);
970 if (dspi->irq <= 0) {
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530971 ret = -EINVAL;
Jingoo Han5b3bb592013-12-09 19:12:03 +0900972 goto free_master;
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530973 }
974
Jingoo Han5b3bb592013-12-09 19:12:03 +0900975 ret = devm_request_threaded_irq(&pdev->dev, dspi->irq, davinci_spi_irq,
976 dummy_thread_fn, 0, dev_name(&pdev->dev), dspi);
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530977 if (ret)
Jingoo Han5b3bb592013-12-09 19:12:03 +0900978 goto free_master;
Brian Niebuhre0d205e2010-09-02 16:52:06 +0530979
Axel Lin94c69f72013-09-10 15:43:41 +0800980 dspi->bitbang.master = master;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000981
Jingoo Han5b3bb592013-12-09 19:12:03 +0900982 dspi->clk = devm_clk_get(&pdev->dev, NULL);
Sekhar Nori212d4b62010-10-11 10:41:39 +0530983 if (IS_ERR(dspi->clk)) {
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000984 ret = -ENODEV;
Jingoo Han5b3bb592013-12-09 19:12:03 +0900985 goto free_master;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000986 }
Murali Karicheriaae71472012-12-11 16:20:39 -0500987 clk_prepare_enable(dspi->clk);
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000988
Murali Karicheriaae71472012-12-11 16:20:39 -0500989 master->dev.of_node = pdev->dev.of_node;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000990 master->bus_num = pdev->id;
991 master->num_chipselect = pdata->num_chipselect;
Stephen Warren24778be2013-05-21 20:36:35 -0600992 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(2, 16);
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000993 master->setup = davinci_spi_setup;
Murali Karicheri365a7bb2014-09-16 14:25:05 +0300994 master->cleanup = davinci_spi_cleanup;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000995
Sekhar Nori212d4b62010-10-11 10:41:39 +0530996 dspi->bitbang.chipselect = davinci_spi_chipselect;
997 dspi->bitbang.setup_transfer = davinci_spi_setup_transfer;
Sandeep Paulraj358934a2009-12-16 22:02:18 +0000998
Sekhar Nori212d4b62010-10-11 10:41:39 +0530999 dspi->version = pdata->version;
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001000
Sekhar Nori212d4b62010-10-11 10:41:39 +05301001 dspi->bitbang.flags = SPI_NO_CS | SPI_LSB_FIRST | SPI_LOOP;
1002 if (dspi->version == SPI_VERSION_2)
1003 dspi->bitbang.flags |= SPI_READY;
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001004
Grygorii Strashko8936dec2014-09-12 17:54:00 +03001005 if (pdev->dev.of_node) {
1006 int i;
1007
1008 for (i = 0; i < pdata->num_chipselect; i++) {
1009 int cs_gpio = of_get_named_gpio(pdev->dev.of_node,
1010 "cs-gpios", i);
1011
1012 if (cs_gpio == -EPROBE_DEFER) {
1013 ret = cs_gpio;
1014 goto free_clk;
1015 }
1016
1017 if (gpio_is_valid(cs_gpio)) {
1018 ret = devm_gpio_request(&pdev->dev, cs_gpio,
1019 dev_name(&pdev->dev));
1020 if (ret)
1021 goto free_clk;
1022 }
1023 }
1024 }
1025
Sekhar Nori903ca252010-10-01 14:51:40 +05301026 r = platform_get_resource(pdev, IORESOURCE_DMA, 0);
1027 if (r)
1028 dma_rx_chan = r->start;
1029 r = platform_get_resource(pdev, IORESOURCE_DMA, 1);
1030 if (r)
1031 dma_tx_chan = r->start;
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001032
Sekhar Nori212d4b62010-10-11 10:41:39 +05301033 dspi->bitbang.txrx_bufs = davinci_spi_bufs;
Sekhar Nori903ca252010-10-01 14:51:40 +05301034 if (dma_rx_chan != SPI_NO_RESOURCE &&
Michael Williamson2e3e2a52011-02-08 07:59:55 -05001035 dma_tx_chan != SPI_NO_RESOURCE) {
Matt Porter048177c2012-08-22 21:09:36 -04001036 dspi->dma_rx_chnum = dma_rx_chan;
1037 dspi->dma_tx_chnum = dma_tx_chan;
Brian Niebuhr96fd8812010-09-27 22:23:23 +05301038
Sekhar Nori212d4b62010-10-11 10:41:39 +05301039 ret = davinci_spi_request_dma(dspi);
Sekhar Nori903ca252010-10-01 14:51:40 +05301040 if (ret)
1041 goto free_clk;
1042
Brian Niebuhr87467bd2010-10-06 17:03:10 +05301043 dev_info(&pdev->dev, "DMA: supported\n");
Jingoo Han859c3372014-09-02 11:48:00 +09001044 dev_info(&pdev->dev, "DMA: RX channel: %pa, TX channel: %pa, event queue: %d\n",
1045 &dma_rx_chan, &dma_tx_chan,
Michael Williamson2e3e2a52011-02-08 07:59:55 -05001046 pdata->dma_event_q);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001047 }
1048
Sekhar Nori212d4b62010-10-11 10:41:39 +05301049 dspi->get_rx = davinci_spi_rx_buf_u8;
1050 dspi->get_tx = davinci_spi_tx_buf_u8;
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001051
Sekhar Nori212d4b62010-10-11 10:41:39 +05301052 init_completion(&dspi->done);
Brian Niebuhre0d205e2010-09-02 16:52:06 +05301053
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001054 /* Reset In/OUT SPI module */
Sekhar Nori212d4b62010-10-11 10:41:39 +05301055 iowrite32(0, dspi->base + SPIGCR0);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001056 udelay(100);
Sekhar Nori212d4b62010-10-11 10:41:39 +05301057 iowrite32(1, dspi->base + SPIGCR0);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001058
Brian Niebuhrbe884712010-09-03 12:15:28 +05301059 /* Set up SPIPC0. CS and ENA init is done in davinci_spi_setup */
Brian Niebuhrf34bd4c2010-09-03 11:56:35 +05301060 spipc0 = SPIPC0_DIFUN_MASK | SPIPC0_DOFUN_MASK | SPIPC0_CLKFUN_MASK;
Sekhar Nori212d4b62010-10-11 10:41:39 +05301061 iowrite32(spipc0, dspi->base + SPIPC0);
Brian Niebuhrf34bd4c2010-09-03 11:56:35 +05301062
Brian Niebuhre0d205e2010-09-02 16:52:06 +05301063 if (pdata->intr_line)
Sekhar Nori212d4b62010-10-11 10:41:39 +05301064 iowrite32(SPI_INTLVL_1, dspi->base + SPILVL);
Brian Niebuhre0d205e2010-09-02 16:52:06 +05301065 else
Sekhar Nori212d4b62010-10-11 10:41:39 +05301066 iowrite32(SPI_INTLVL_0, dspi->base + SPILVL);
Brian Niebuhre0d205e2010-09-02 16:52:06 +05301067
Sekhar Nori212d4b62010-10-11 10:41:39 +05301068 iowrite32(CS_DEFAULT, dspi->base + SPIDEF);
Brian Niebuhr843a7132010-08-12 12:49:05 +05301069
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001070 /* master mode default */
Sekhar Nori212d4b62010-10-11 10:41:39 +05301071 set_io_bits(dspi->base + SPIGCR1, SPIGCR1_CLKMOD_MASK);
1072 set_io_bits(dspi->base + SPIGCR1, SPIGCR1_MASTER_MASK);
1073 set_io_bits(dspi->base + SPIGCR1, SPIGCR1_POWERDOWN_MASK);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001074
Sekhar Nori212d4b62010-10-11 10:41:39 +05301075 ret = spi_bitbang_start(&dspi->bitbang);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001076 if (ret)
Sekhar Nori903ca252010-10-01 14:51:40 +05301077 goto free_dma;
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001078
Sekhar Nori212d4b62010-10-11 10:41:39 +05301079 dev_info(&pdev->dev, "Controller at 0x%p\n", dspi->base);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001080
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001081 return ret;
1082
Sekhar Nori903ca252010-10-01 14:51:40 +05301083free_dma:
Matt Porter048177c2012-08-22 21:09:36 -04001084 dma_release_channel(dspi->dma_rx);
1085 dma_release_channel(dspi->dma_tx);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001086free_clk:
Murali Karicheriaae71472012-12-11 16:20:39 -05001087 clk_disable_unprepare(dspi->clk);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001088free_master:
Axel Lin94c69f72013-09-10 15:43:41 +08001089 spi_master_put(master);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001090err:
1091 return ret;
1092}
1093
1094/**
1095 * davinci_spi_remove - remove function for SPI Master Controller
1096 * @pdev: platform_device structure which contains plateform specific data
1097 *
1098 * This function will do the reverse action of davinci_spi_probe function
1099 * It will free the IRQ and SPI controller's memory region.
1100 * It will also call spi_bitbang_stop to destroy the work queue which was
1101 * created by spi_bitbang_start.
1102 */
Grant Likelyfd4a3192012-12-07 16:57:14 +00001103static int davinci_spi_remove(struct platform_device *pdev)
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001104{
Sekhar Nori212d4b62010-10-11 10:41:39 +05301105 struct davinci_spi *dspi;
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001106 struct spi_master *master;
1107
Jingoo Han24b5a822013-05-23 19:20:40 +09001108 master = platform_get_drvdata(pdev);
Sekhar Nori212d4b62010-10-11 10:41:39 +05301109 dspi = spi_master_get_devdata(master);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001110
Sekhar Nori212d4b62010-10-11 10:41:39 +05301111 spi_bitbang_stop(&dspi->bitbang);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001112
Murali Karicheriaae71472012-12-11 16:20:39 -05001113 clk_disable_unprepare(dspi->clk);
Axel Lin94c69f72013-09-10 15:43:41 +08001114 spi_master_put(master);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001115
1116 return 0;
1117}
1118
1119static struct platform_driver davinci_spi_driver = {
Brian Niebuhrd8c174c2010-10-06 18:47:16 +05301120 .driver = {
1121 .name = "spi_davinci",
Axel Linb53b34f2014-02-06 11:45:08 +08001122 .of_match_table = of_match_ptr(davinci_spi_of_match),
Brian Niebuhrd8c174c2010-10-06 18:47:16 +05301123 },
Grant Likely940ab882011-10-05 11:29:49 -06001124 .probe = davinci_spi_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +00001125 .remove = davinci_spi_remove,
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001126};
Grant Likely940ab882011-10-05 11:29:49 -06001127module_platform_driver(davinci_spi_driver);
Sandeep Paulraj358934a2009-12-16 22:02:18 +00001128
1129MODULE_DESCRIPTION("TI DaVinci SPI Master Controller Driver");
1130MODULE_LICENSE("GPL");