blob: 5eaecbba06b7d8aab25d91364102789228b365df [file] [log] [blame]
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001/*
2 * Copyright 2004-2007 Freescale Semiconductor, Inc. All Rights Reserved.
3 * Copyright (C) 2008 Juergen Beisert
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the
16 * Free Software Foundation
17 * 51 Franklin Street, Fifth Floor
18 * Boston, MA 02110-1301, USA.
19 */
20
21#include <linux/clk.h>
22#include <linux/completion.h>
23#include <linux/delay.h>
Robin Gongf62cacc2014-09-11 09:18:44 +080024#include <linux/dmaengine.h>
25#include <linux/dma-mapping.h>
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070026#include <linux/err.h>
27#include <linux/gpio.h>
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070028#include <linux/interrupt.h>
29#include <linux/io.h>
30#include <linux/irq.h>
31#include <linux/kernel.h>
32#include <linux/module.h>
33#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070035#include <linux/spi/spi.h>
36#include <linux/spi/spi_bitbang.h>
37#include <linux/types.h>
Shawn Guo22a85e42011-07-10 01:16:41 +080038#include <linux/of.h>
39#include <linux/of_device.h>
40#include <linux/of_gpio.h>
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070041
Robin Gongf62cacc2014-09-11 09:18:44 +080042#include <linux/platform_data/dma-imx.h>
Arnd Bergmann82906b12012-08-24 15:14:29 +020043#include <linux/platform_data/spi-imx.h>
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070044
45#define DRIVER_NAME "spi_imx"
46
47#define MXC_CSPIRXDATA 0x00
48#define MXC_CSPITXDATA 0x04
49#define MXC_CSPICTRL 0x08
50#define MXC_CSPIINT 0x0c
51#define MXC_RESET 0x1c
52
53/* generic defines to abstract from the different register layouts */
54#define MXC_INT_RR (1 << 0) /* Receive data ready interrupt */
55#define MXC_INT_TE (1 << 1) /* Transmit FIFO empty interrupt */
56
Robin Gongf62cacc2014-09-11 09:18:44 +080057/* The maximum bytes that a sdma BD can transfer.*/
58#define MAX_SDMA_BD_BYTES (1 << 15)
59#define IMX_DMA_TIMEOUT (msecs_to_jiffies(3000))
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070060struct spi_imx_config {
61 unsigned int speed_hz;
62 unsigned int bpw;
63 unsigned int mode;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +020064 u8 cs;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070065};
66
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +020067enum spi_imx_devtype {
Shawn Guo04ee5852011-07-10 01:16:39 +080068 IMX1_CSPI,
69 IMX21_CSPI,
70 IMX27_CSPI,
71 IMX31_CSPI,
72 IMX35_CSPI, /* CSPI on all i.mx except above */
73 IMX51_ECSPI, /* ECSPI on i.mx51 and later */
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +020074};
75
76struct spi_imx_data;
77
78struct spi_imx_devtype_data {
79 void (*intctrl)(struct spi_imx_data *, int);
80 int (*config)(struct spi_imx_data *, struct spi_imx_config *);
81 void (*trigger)(struct spi_imx_data *);
82 int (*rx_available)(struct spi_imx_data *);
Uwe Kleine-König1723e662010-09-10 09:19:18 +020083 void (*reset)(struct spi_imx_data *);
Shawn Guo04ee5852011-07-10 01:16:39 +080084 enum spi_imx_devtype devtype;
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +020085};
86
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070087struct spi_imx_data {
88 struct spi_bitbang bitbang;
89
90 struct completion xfer_done;
Uwe Kleine-Königcc4d22a2012-03-29 21:54:18 +020091 void __iomem *base;
Sascha Haueraa29d8402012-03-07 09:30:22 +010092 struct clk *clk_per;
93 struct clk *clk_ipg;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070094 unsigned long spi_clk;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070095
96 unsigned int count;
97 void (*tx)(struct spi_imx_data *);
98 void (*rx)(struct spi_imx_data *);
99 void *rx_buf;
100 const void *tx_buf;
101 unsigned int txfifo; /* number of words pushed in tx FIFO */
102
Robin Gongf62cacc2014-09-11 09:18:44 +0800103 /* DMA */
104 unsigned int dma_is_inited;
105 unsigned int dma_finished;
106 bool usedma;
107 u32 rx_wml;
108 u32 tx_wml;
109 u32 rxt_wml;
110 struct completion dma_rx_completion;
111 struct completion dma_tx_completion;
112
Uwe Kleine-König80023cb2012-05-21 21:49:35 +0200113 const struct spi_imx_devtype_data *devtype_data;
Shawn Guoc2387cb2011-07-10 01:16:40 +0800114 int chipselect[0];
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700115};
116
Shawn Guo04ee5852011-07-10 01:16:39 +0800117static inline int is_imx27_cspi(struct spi_imx_data *d)
118{
119 return d->devtype_data->devtype == IMX27_CSPI;
120}
121
122static inline int is_imx35_cspi(struct spi_imx_data *d)
123{
124 return d->devtype_data->devtype == IMX35_CSPI;
125}
126
127static inline unsigned spi_imx_get_fifosize(struct spi_imx_data *d)
128{
129 return (d->devtype_data->devtype == IMX51_ECSPI) ? 64 : 8;
130}
131
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700132#define MXC_SPI_BUF_RX(type) \
133static void spi_imx_buf_rx_##type(struct spi_imx_data *spi_imx) \
134{ \
135 unsigned int val = readl(spi_imx->base + MXC_CSPIRXDATA); \
136 \
137 if (spi_imx->rx_buf) { \
138 *(type *)spi_imx->rx_buf = val; \
139 spi_imx->rx_buf += sizeof(type); \
140 } \
141}
142
143#define MXC_SPI_BUF_TX(type) \
144static void spi_imx_buf_tx_##type(struct spi_imx_data *spi_imx) \
145{ \
146 type val = 0; \
147 \
148 if (spi_imx->tx_buf) { \
149 val = *(type *)spi_imx->tx_buf; \
150 spi_imx->tx_buf += sizeof(type); \
151 } \
152 \
153 spi_imx->count -= sizeof(type); \
154 \
155 writel(val, spi_imx->base + MXC_CSPITXDATA); \
156}
157
158MXC_SPI_BUF_RX(u8)
159MXC_SPI_BUF_TX(u8)
160MXC_SPI_BUF_RX(u16)
161MXC_SPI_BUF_TX(u16)
162MXC_SPI_BUF_RX(u32)
163MXC_SPI_BUF_TX(u32)
164
165/* First entry is reserved, second entry is valid only if SDHC_SPIEN is set
166 * (which is currently not the case in this driver)
167 */
168static int mxc_clkdivs[] = {0, 3, 4, 6, 8, 12, 16, 24, 32, 48, 64, 96, 128, 192,
169 256, 384, 512, 768, 1024};
170
171/* MX21, MX27 */
172static unsigned int spi_imx_clkdiv_1(unsigned int fin,
Shawn Guo04ee5852011-07-10 01:16:39 +0800173 unsigned int fspi, unsigned int max)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700174{
Shawn Guo04ee5852011-07-10 01:16:39 +0800175 int i;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700176
177 for (i = 2; i < max; i++)
178 if (fspi * mxc_clkdivs[i] >= fin)
179 return i;
180
181 return max;
182}
183
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200184/* MX1, MX31, MX35, MX51 CSPI */
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700185static unsigned int spi_imx_clkdiv_2(unsigned int fin,
186 unsigned int fspi)
187{
188 int i, div = 4;
189
190 for (i = 0; i < 7; i++) {
191 if (fspi * div >= fin)
192 return i;
193 div <<= 1;
194 }
195
196 return 7;
197}
198
Robin Gongf62cacc2014-09-11 09:18:44 +0800199static bool spi_imx_can_dma(struct spi_master *master, struct spi_device *spi,
200 struct spi_transfer *transfer)
201{
202 struct spi_imx_data *spi_imx = spi_master_get_devdata(master);
203
204 if (spi_imx->dma_is_inited && (transfer->len > spi_imx->rx_wml)
205 && (transfer->len > spi_imx->tx_wml))
206 return true;
207 return false;
208}
209
Shawn Guo66de7572011-07-10 01:16:37 +0800210#define MX51_ECSPI_CTRL 0x08
211#define MX51_ECSPI_CTRL_ENABLE (1 << 0)
212#define MX51_ECSPI_CTRL_XCH (1 << 2)
Robin Gongf62cacc2014-09-11 09:18:44 +0800213#define MX51_ECSPI_CTRL_SMC (1 << 3)
Shawn Guo66de7572011-07-10 01:16:37 +0800214#define MX51_ECSPI_CTRL_MODE_MASK (0xf << 4)
215#define MX51_ECSPI_CTRL_POSTDIV_OFFSET 8
216#define MX51_ECSPI_CTRL_PREDIV_OFFSET 12
217#define MX51_ECSPI_CTRL_CS(cs) ((cs) << 18)
218#define MX51_ECSPI_CTRL_BL_OFFSET 20
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200219
Shawn Guo66de7572011-07-10 01:16:37 +0800220#define MX51_ECSPI_CONFIG 0x0c
221#define MX51_ECSPI_CONFIG_SCLKPHA(cs) (1 << ((cs) + 0))
222#define MX51_ECSPI_CONFIG_SCLKPOL(cs) (1 << ((cs) + 4))
223#define MX51_ECSPI_CONFIG_SBBCTRL(cs) (1 << ((cs) + 8))
224#define MX51_ECSPI_CONFIG_SSBPOL(cs) (1 << ((cs) + 12))
Knut Wohlrabc09b8902012-09-25 13:21:57 +0200225#define MX51_ECSPI_CONFIG_SCLKCTL(cs) (1 << ((cs) + 20))
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200226
Shawn Guo66de7572011-07-10 01:16:37 +0800227#define MX51_ECSPI_INT 0x10
228#define MX51_ECSPI_INT_TEEN (1 << 0)
229#define MX51_ECSPI_INT_RREN (1 << 3)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200230
Robin Gongf62cacc2014-09-11 09:18:44 +0800231#define MX51_ECSPI_DMA 0x14
232#define MX51_ECSPI_DMA_TX_WML_OFFSET 0
233#define MX51_ECSPI_DMA_TX_WML_MASK 0x3F
234#define MX51_ECSPI_DMA_RX_WML_OFFSET 16
235#define MX51_ECSPI_DMA_RX_WML_MASK (0x3F << 16)
236#define MX51_ECSPI_DMA_RXT_WML_OFFSET 24
237#define MX51_ECSPI_DMA_RXT_WML_MASK (0x3F << 24)
238
239#define MX51_ECSPI_DMA_TEDEN_OFFSET 7
240#define MX51_ECSPI_DMA_RXDEN_OFFSET 23
241#define MX51_ECSPI_DMA_RXTDEN_OFFSET 31
242
Shawn Guo66de7572011-07-10 01:16:37 +0800243#define MX51_ECSPI_STAT 0x18
244#define MX51_ECSPI_STAT_RR (1 << 3)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200245
246/* MX51 eCSPI */
Marek Vasut6fd8b852013-12-18 18:31:47 +0100247static unsigned int mx51_ecspi_clkdiv(unsigned int fin, unsigned int fspi,
248 unsigned int *fres)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200249{
250 /*
251 * there are two 4-bit dividers, the pre-divider divides by
252 * $pre, the post-divider by 2^$post
253 */
254 unsigned int pre, post;
255
256 if (unlikely(fspi > fin))
257 return 0;
258
259 post = fls(fin) - fls(fspi);
260 if (fin > fspi << post)
261 post++;
262
263 /* now we have: (fin <= fspi << post) with post being minimal */
264
265 post = max(4U, post) - 4;
266 if (unlikely(post > 0xf)) {
267 pr_err("%s: cannot set clock freq: %u (base freq: %u)\n",
268 __func__, fspi, fin);
269 return 0xff;
270 }
271
272 pre = DIV_ROUND_UP(fin, fspi << post) - 1;
273
274 pr_debug("%s: fin: %u, fspi: %u, post: %u, pre: %u\n",
275 __func__, fin, fspi, post, pre);
Marek Vasut6fd8b852013-12-18 18:31:47 +0100276
277 /* Resulting frequency for the SCLK line. */
278 *fres = (fin / (pre + 1)) >> post;
279
Shawn Guo66de7572011-07-10 01:16:37 +0800280 return (pre << MX51_ECSPI_CTRL_PREDIV_OFFSET) |
281 (post << MX51_ECSPI_CTRL_POSTDIV_OFFSET);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200282}
283
Shawn Guo66de7572011-07-10 01:16:37 +0800284static void __maybe_unused mx51_ecspi_intctrl(struct spi_imx_data *spi_imx, int enable)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200285{
286 unsigned val = 0;
287
288 if (enable & MXC_INT_TE)
Shawn Guo66de7572011-07-10 01:16:37 +0800289 val |= MX51_ECSPI_INT_TEEN;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200290
291 if (enable & MXC_INT_RR)
Shawn Guo66de7572011-07-10 01:16:37 +0800292 val |= MX51_ECSPI_INT_RREN;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200293
Shawn Guo66de7572011-07-10 01:16:37 +0800294 writel(val, spi_imx->base + MX51_ECSPI_INT);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200295}
296
Shawn Guo66de7572011-07-10 01:16:37 +0800297static void __maybe_unused mx51_ecspi_trigger(struct spi_imx_data *spi_imx)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200298{
Robin Gongf62cacc2014-09-11 09:18:44 +0800299 u32 reg = readl(spi_imx->base + MX51_ECSPI_CTRL);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200300
Robin Gongf62cacc2014-09-11 09:18:44 +0800301 if (!spi_imx->usedma)
302 reg |= MX51_ECSPI_CTRL_XCH;
303 else if (!spi_imx->dma_finished)
304 reg |= MX51_ECSPI_CTRL_SMC;
305 else
306 reg &= ~MX51_ECSPI_CTRL_SMC;
Shawn Guo66de7572011-07-10 01:16:37 +0800307 writel(reg, spi_imx->base + MX51_ECSPI_CTRL);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200308}
309
Shawn Guo66de7572011-07-10 01:16:37 +0800310static int __maybe_unused mx51_ecspi_config(struct spi_imx_data *spi_imx,
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200311 struct spi_imx_config *config)
312{
Robin Gongf62cacc2014-09-11 09:18:44 +0800313 u32 ctrl = MX51_ECSPI_CTRL_ENABLE, cfg = 0, dma = 0;
314 u32 tx_wml_cfg, rx_wml_cfg, rxt_wml_cfg;
Marek Vasut6fd8b852013-12-18 18:31:47 +0100315 u32 clk = config->speed_hz, delay;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200316
Sascha Hauerf020c392011-02-08 21:08:59 +0100317 /*
318 * The hardware seems to have a race condition when changing modes. The
319 * current assumption is that the selection of the channel arrives
320 * earlier in the hardware than the mode bits when they are written at
321 * the same time.
322 * So set master mode for all channels as we do not support slave mode.
323 */
Shawn Guo66de7572011-07-10 01:16:37 +0800324 ctrl |= MX51_ECSPI_CTRL_MODE_MASK;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200325
326 /* set clock speed */
Marek Vasut6fd8b852013-12-18 18:31:47 +0100327 ctrl |= mx51_ecspi_clkdiv(spi_imx->spi_clk, config->speed_hz, &clk);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200328
329 /* set chip select to use */
Shawn Guo66de7572011-07-10 01:16:37 +0800330 ctrl |= MX51_ECSPI_CTRL_CS(config->cs);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200331
Shawn Guo66de7572011-07-10 01:16:37 +0800332 ctrl |= (config->bpw - 1) << MX51_ECSPI_CTRL_BL_OFFSET;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200333
Shawn Guo66de7572011-07-10 01:16:37 +0800334 cfg |= MX51_ECSPI_CONFIG_SBBCTRL(config->cs);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200335
336 if (config->mode & SPI_CPHA)
Shawn Guo66de7572011-07-10 01:16:37 +0800337 cfg |= MX51_ECSPI_CONFIG_SCLKPHA(config->cs);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200338
Knut Wohlrabc09b8902012-09-25 13:21:57 +0200339 if (config->mode & SPI_CPOL) {
Shawn Guo66de7572011-07-10 01:16:37 +0800340 cfg |= MX51_ECSPI_CONFIG_SCLKPOL(config->cs);
Knut Wohlrabc09b8902012-09-25 13:21:57 +0200341 cfg |= MX51_ECSPI_CONFIG_SCLKCTL(config->cs);
342 }
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200343 if (config->mode & SPI_CS_HIGH)
Shawn Guo66de7572011-07-10 01:16:37 +0800344 cfg |= MX51_ECSPI_CONFIG_SSBPOL(config->cs);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200345
Shawn Guo66de7572011-07-10 01:16:37 +0800346 writel(ctrl, spi_imx->base + MX51_ECSPI_CTRL);
347 writel(cfg, spi_imx->base + MX51_ECSPI_CONFIG);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200348
Marek Vasut6fd8b852013-12-18 18:31:47 +0100349 /*
350 * Wait until the changes in the configuration register CONFIGREG
351 * propagate into the hardware. It takes exactly one tick of the
352 * SCLK clock, but we will wait two SCLK clock just to be sure. The
353 * effect of the delay it takes for the hardware to apply changes
354 * is noticable if the SCLK clock run very slow. In such a case, if
355 * the polarity of SCLK should be inverted, the GPIO ChipSelect might
356 * be asserted before the SCLK polarity changes, which would disrupt
357 * the SPI communication as the device on the other end would consider
358 * the change of SCLK polarity as a clock tick already.
359 */
360 delay = (2 * 1000000) / clk;
361 if (likely(delay < 10)) /* SCLK is faster than 100 kHz */
362 udelay(delay);
363 else /* SCLK is _very_ slow */
364 usleep_range(delay, delay + 10);
365
Robin Gongf62cacc2014-09-11 09:18:44 +0800366 /*
367 * Configure the DMA register: setup the watermark
368 * and enable DMA request.
369 */
370 if (spi_imx->dma_is_inited) {
371 dma = readl(spi_imx->base + MX51_ECSPI_DMA);
372
373 spi_imx->tx_wml = spi_imx_get_fifosize(spi_imx) / 2;
374 spi_imx->rx_wml = spi_imx_get_fifosize(spi_imx) / 2;
375 spi_imx->rxt_wml = spi_imx_get_fifosize(spi_imx) / 2;
376 rx_wml_cfg = spi_imx->rx_wml << MX51_ECSPI_DMA_RX_WML_OFFSET;
377 tx_wml_cfg = spi_imx->tx_wml << MX51_ECSPI_DMA_TX_WML_OFFSET;
378 rxt_wml_cfg = spi_imx->rxt_wml << MX51_ECSPI_DMA_RXT_WML_OFFSET;
379 dma = (dma & ~MX51_ECSPI_DMA_TX_WML_MASK
380 & ~MX51_ECSPI_DMA_RX_WML_MASK
381 & ~MX51_ECSPI_DMA_RXT_WML_MASK)
382 | rx_wml_cfg | tx_wml_cfg | rxt_wml_cfg
383 |(1 << MX51_ECSPI_DMA_TEDEN_OFFSET)
384 |(1 << MX51_ECSPI_DMA_RXDEN_OFFSET)
385 |(1 << MX51_ECSPI_DMA_RXTDEN_OFFSET);
386
387 writel(dma, spi_imx->base + MX51_ECSPI_DMA);
388 }
389
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200390 return 0;
391}
392
Shawn Guo66de7572011-07-10 01:16:37 +0800393static int __maybe_unused mx51_ecspi_rx_available(struct spi_imx_data *spi_imx)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200394{
Shawn Guo66de7572011-07-10 01:16:37 +0800395 return readl(spi_imx->base + MX51_ECSPI_STAT) & MX51_ECSPI_STAT_RR;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200396}
397
Shawn Guo66de7572011-07-10 01:16:37 +0800398static void __maybe_unused mx51_ecspi_reset(struct spi_imx_data *spi_imx)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200399{
400 /* drain receive buffer */
Shawn Guo66de7572011-07-10 01:16:37 +0800401 while (mx51_ecspi_rx_available(spi_imx))
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200402 readl(spi_imx->base + MXC_CSPIRXDATA);
403}
404
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700405#define MX31_INTREG_TEEN (1 << 0)
406#define MX31_INTREG_RREN (1 << 3)
407
408#define MX31_CSPICTRL_ENABLE (1 << 0)
409#define MX31_CSPICTRL_MASTER (1 << 1)
410#define MX31_CSPICTRL_XCH (1 << 2)
411#define MX31_CSPICTRL_POL (1 << 4)
412#define MX31_CSPICTRL_PHA (1 << 5)
413#define MX31_CSPICTRL_SSCTL (1 << 6)
414#define MX31_CSPICTRL_SSPOL (1 << 7)
415#define MX31_CSPICTRL_BC_SHIFT 8
416#define MX35_CSPICTRL_BL_SHIFT 20
417#define MX31_CSPICTRL_CS_SHIFT 24
418#define MX35_CSPICTRL_CS_SHIFT 12
419#define MX31_CSPICTRL_DR_SHIFT 16
420
421#define MX31_CSPISTATUS 0x14
422#define MX31_STATUS_RR (1 << 3)
423
424/* These functions also work for the i.MX35, but be aware that
425 * the i.MX35 has a slightly different register layout for bits
426 * we do not use here.
427 */
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200428static void __maybe_unused mx31_intctrl(struct spi_imx_data *spi_imx, int enable)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700429{
430 unsigned int val = 0;
431
432 if (enable & MXC_INT_TE)
433 val |= MX31_INTREG_TEEN;
434 if (enable & MXC_INT_RR)
435 val |= MX31_INTREG_RREN;
436
437 writel(val, spi_imx->base + MXC_CSPIINT);
438}
439
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200440static void __maybe_unused mx31_trigger(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700441{
442 unsigned int reg;
443
444 reg = readl(spi_imx->base + MXC_CSPICTRL);
445 reg |= MX31_CSPICTRL_XCH;
446 writel(reg, spi_imx->base + MXC_CSPICTRL);
447}
448
Shawn Guo2a64a902011-07-10 01:16:38 +0800449static int __maybe_unused mx31_config(struct spi_imx_data *spi_imx,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700450 struct spi_imx_config *config)
451{
452 unsigned int reg = MX31_CSPICTRL_ENABLE | MX31_CSPICTRL_MASTER;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200453 int cs = spi_imx->chipselect[config->cs];
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700454
455 reg |= spi_imx_clkdiv_2(spi_imx->spi_clk, config->speed_hz) <<
456 MX31_CSPICTRL_DR_SHIFT;
457
Shawn Guo04ee5852011-07-10 01:16:39 +0800458 if (is_imx35_cspi(spi_imx)) {
Shawn Guo2a64a902011-07-10 01:16:38 +0800459 reg |= (config->bpw - 1) << MX35_CSPICTRL_BL_SHIFT;
460 reg |= MX31_CSPICTRL_SSCTL;
461 } else {
462 reg |= (config->bpw - 1) << MX31_CSPICTRL_BC_SHIFT;
463 }
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700464
465 if (config->mode & SPI_CPHA)
466 reg |= MX31_CSPICTRL_PHA;
467 if (config->mode & SPI_CPOL)
468 reg |= MX31_CSPICTRL_POL;
469 if (config->mode & SPI_CS_HIGH)
470 reg |= MX31_CSPICTRL_SSPOL;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200471 if (cs < 0)
Shawn Guo2a64a902011-07-10 01:16:38 +0800472 reg |= (cs + 32) <<
Shawn Guo04ee5852011-07-10 01:16:39 +0800473 (is_imx35_cspi(spi_imx) ? MX35_CSPICTRL_CS_SHIFT :
474 MX31_CSPICTRL_CS_SHIFT);
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200475
476 writel(reg, spi_imx->base + MXC_CSPICTRL);
477
478 return 0;
479}
480
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200481static int __maybe_unused mx31_rx_available(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700482{
483 return readl(spi_imx->base + MX31_CSPISTATUS) & MX31_STATUS_RR;
484}
485
Shawn Guo2a64a902011-07-10 01:16:38 +0800486static void __maybe_unused mx31_reset(struct spi_imx_data *spi_imx)
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200487{
488 /* drain receive buffer */
Shawn Guo2a64a902011-07-10 01:16:38 +0800489 while (readl(spi_imx->base + MX31_CSPISTATUS) & MX31_STATUS_RR)
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200490 readl(spi_imx->base + MXC_CSPIRXDATA);
491}
492
Shawn Guo3451fb12011-07-10 01:16:36 +0800493#define MX21_INTREG_RR (1 << 4)
494#define MX21_INTREG_TEEN (1 << 9)
495#define MX21_INTREG_RREN (1 << 13)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700496
Shawn Guo3451fb12011-07-10 01:16:36 +0800497#define MX21_CSPICTRL_POL (1 << 5)
498#define MX21_CSPICTRL_PHA (1 << 6)
499#define MX21_CSPICTRL_SSPOL (1 << 8)
500#define MX21_CSPICTRL_XCH (1 << 9)
501#define MX21_CSPICTRL_ENABLE (1 << 10)
502#define MX21_CSPICTRL_MASTER (1 << 11)
503#define MX21_CSPICTRL_DR_SHIFT 14
504#define MX21_CSPICTRL_CS_SHIFT 19
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700505
Shawn Guo3451fb12011-07-10 01:16:36 +0800506static void __maybe_unused mx21_intctrl(struct spi_imx_data *spi_imx, int enable)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700507{
508 unsigned int val = 0;
509
510 if (enable & MXC_INT_TE)
Shawn Guo3451fb12011-07-10 01:16:36 +0800511 val |= MX21_INTREG_TEEN;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700512 if (enable & MXC_INT_RR)
Shawn Guo3451fb12011-07-10 01:16:36 +0800513 val |= MX21_INTREG_RREN;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700514
515 writel(val, spi_imx->base + MXC_CSPIINT);
516}
517
Shawn Guo3451fb12011-07-10 01:16:36 +0800518static void __maybe_unused mx21_trigger(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700519{
520 unsigned int reg;
521
522 reg = readl(spi_imx->base + MXC_CSPICTRL);
Shawn Guo3451fb12011-07-10 01:16:36 +0800523 reg |= MX21_CSPICTRL_XCH;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700524 writel(reg, spi_imx->base + MXC_CSPICTRL);
525}
526
Shawn Guo3451fb12011-07-10 01:16:36 +0800527static int __maybe_unused mx21_config(struct spi_imx_data *spi_imx,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700528 struct spi_imx_config *config)
529{
Shawn Guo3451fb12011-07-10 01:16:36 +0800530 unsigned int reg = MX21_CSPICTRL_ENABLE | MX21_CSPICTRL_MASTER;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200531 int cs = spi_imx->chipselect[config->cs];
Shawn Guo04ee5852011-07-10 01:16:39 +0800532 unsigned int max = is_imx27_cspi(spi_imx) ? 16 : 18;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700533
Shawn Guo04ee5852011-07-10 01:16:39 +0800534 reg |= spi_imx_clkdiv_1(spi_imx->spi_clk, config->speed_hz, max) <<
Shawn Guo3451fb12011-07-10 01:16:36 +0800535 MX21_CSPICTRL_DR_SHIFT;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700536 reg |= config->bpw - 1;
537
538 if (config->mode & SPI_CPHA)
Shawn Guo3451fb12011-07-10 01:16:36 +0800539 reg |= MX21_CSPICTRL_PHA;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700540 if (config->mode & SPI_CPOL)
Shawn Guo3451fb12011-07-10 01:16:36 +0800541 reg |= MX21_CSPICTRL_POL;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700542 if (config->mode & SPI_CS_HIGH)
Shawn Guo3451fb12011-07-10 01:16:36 +0800543 reg |= MX21_CSPICTRL_SSPOL;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200544 if (cs < 0)
Shawn Guo3451fb12011-07-10 01:16:36 +0800545 reg |= (cs + 32) << MX21_CSPICTRL_CS_SHIFT;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700546
547 writel(reg, spi_imx->base + MXC_CSPICTRL);
548
549 return 0;
550}
551
Shawn Guo3451fb12011-07-10 01:16:36 +0800552static int __maybe_unused mx21_rx_available(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700553{
Shawn Guo3451fb12011-07-10 01:16:36 +0800554 return readl(spi_imx->base + MXC_CSPIINT) & MX21_INTREG_RR;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700555}
556
Shawn Guo3451fb12011-07-10 01:16:36 +0800557static void __maybe_unused mx21_reset(struct spi_imx_data *spi_imx)
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200558{
559 writel(1, spi_imx->base + MXC_RESET);
560}
561
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700562#define MX1_INTREG_RR (1 << 3)
563#define MX1_INTREG_TEEN (1 << 8)
564#define MX1_INTREG_RREN (1 << 11)
565
566#define MX1_CSPICTRL_POL (1 << 4)
567#define MX1_CSPICTRL_PHA (1 << 5)
568#define MX1_CSPICTRL_XCH (1 << 8)
569#define MX1_CSPICTRL_ENABLE (1 << 9)
570#define MX1_CSPICTRL_MASTER (1 << 10)
571#define MX1_CSPICTRL_DR_SHIFT 13
572
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200573static void __maybe_unused mx1_intctrl(struct spi_imx_data *spi_imx, int enable)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700574{
575 unsigned int val = 0;
576
577 if (enable & MXC_INT_TE)
578 val |= MX1_INTREG_TEEN;
579 if (enable & MXC_INT_RR)
580 val |= MX1_INTREG_RREN;
581
582 writel(val, spi_imx->base + MXC_CSPIINT);
583}
584
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200585static void __maybe_unused mx1_trigger(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700586{
587 unsigned int reg;
588
589 reg = readl(spi_imx->base + MXC_CSPICTRL);
590 reg |= MX1_CSPICTRL_XCH;
591 writel(reg, spi_imx->base + MXC_CSPICTRL);
592}
593
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200594static int __maybe_unused mx1_config(struct spi_imx_data *spi_imx,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700595 struct spi_imx_config *config)
596{
597 unsigned int reg = MX1_CSPICTRL_ENABLE | MX1_CSPICTRL_MASTER;
598
599 reg |= spi_imx_clkdiv_2(spi_imx->spi_clk, config->speed_hz) <<
600 MX1_CSPICTRL_DR_SHIFT;
601 reg |= config->bpw - 1;
602
603 if (config->mode & SPI_CPHA)
604 reg |= MX1_CSPICTRL_PHA;
605 if (config->mode & SPI_CPOL)
606 reg |= MX1_CSPICTRL_POL;
607
608 writel(reg, spi_imx->base + MXC_CSPICTRL);
609
610 return 0;
611}
612
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200613static int __maybe_unused mx1_rx_available(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700614{
615 return readl(spi_imx->base + MXC_CSPIINT) & MX1_INTREG_RR;
616}
617
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200618static void __maybe_unused mx1_reset(struct spi_imx_data *spi_imx)
619{
620 writel(1, spi_imx->base + MXC_RESET);
621}
622
Shawn Guo04ee5852011-07-10 01:16:39 +0800623static struct spi_imx_devtype_data imx1_cspi_devtype_data = {
624 .intctrl = mx1_intctrl,
625 .config = mx1_config,
626 .trigger = mx1_trigger,
627 .rx_available = mx1_rx_available,
628 .reset = mx1_reset,
629 .devtype = IMX1_CSPI,
630};
631
632static struct spi_imx_devtype_data imx21_cspi_devtype_data = {
633 .intctrl = mx21_intctrl,
634 .config = mx21_config,
635 .trigger = mx21_trigger,
636 .rx_available = mx21_rx_available,
637 .reset = mx21_reset,
638 .devtype = IMX21_CSPI,
639};
640
641static struct spi_imx_devtype_data imx27_cspi_devtype_data = {
642 /* i.mx27 cspi shares the functions with i.mx21 one */
643 .intctrl = mx21_intctrl,
644 .config = mx21_config,
645 .trigger = mx21_trigger,
646 .rx_available = mx21_rx_available,
647 .reset = mx21_reset,
648 .devtype = IMX27_CSPI,
649};
650
651static struct spi_imx_devtype_data imx31_cspi_devtype_data = {
652 .intctrl = mx31_intctrl,
653 .config = mx31_config,
654 .trigger = mx31_trigger,
655 .rx_available = mx31_rx_available,
656 .reset = mx31_reset,
657 .devtype = IMX31_CSPI,
658};
659
660static struct spi_imx_devtype_data imx35_cspi_devtype_data = {
661 /* i.mx35 and later cspi shares the functions with i.mx31 one */
662 .intctrl = mx31_intctrl,
663 .config = mx31_config,
664 .trigger = mx31_trigger,
665 .rx_available = mx31_rx_available,
666 .reset = mx31_reset,
667 .devtype = IMX35_CSPI,
668};
669
670static struct spi_imx_devtype_data imx51_ecspi_devtype_data = {
671 .intctrl = mx51_ecspi_intctrl,
672 .config = mx51_ecspi_config,
673 .trigger = mx51_ecspi_trigger,
674 .rx_available = mx51_ecspi_rx_available,
675 .reset = mx51_ecspi_reset,
676 .devtype = IMX51_ECSPI,
677};
678
679static struct platform_device_id spi_imx_devtype[] = {
680 {
681 .name = "imx1-cspi",
682 .driver_data = (kernel_ulong_t) &imx1_cspi_devtype_data,
683 }, {
684 .name = "imx21-cspi",
685 .driver_data = (kernel_ulong_t) &imx21_cspi_devtype_data,
686 }, {
687 .name = "imx27-cspi",
688 .driver_data = (kernel_ulong_t) &imx27_cspi_devtype_data,
689 }, {
690 .name = "imx31-cspi",
691 .driver_data = (kernel_ulong_t) &imx31_cspi_devtype_data,
692 }, {
693 .name = "imx35-cspi",
694 .driver_data = (kernel_ulong_t) &imx35_cspi_devtype_data,
695 }, {
696 .name = "imx51-ecspi",
697 .driver_data = (kernel_ulong_t) &imx51_ecspi_devtype_data,
698 }, {
699 /* sentinel */
700 }
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200701};
702
Shawn Guo22a85e42011-07-10 01:16:41 +0800703static const struct of_device_id spi_imx_dt_ids[] = {
704 { .compatible = "fsl,imx1-cspi", .data = &imx1_cspi_devtype_data, },
705 { .compatible = "fsl,imx21-cspi", .data = &imx21_cspi_devtype_data, },
706 { .compatible = "fsl,imx27-cspi", .data = &imx27_cspi_devtype_data, },
707 { .compatible = "fsl,imx31-cspi", .data = &imx31_cspi_devtype_data, },
708 { .compatible = "fsl,imx35-cspi", .data = &imx35_cspi_devtype_data, },
709 { .compatible = "fsl,imx51-ecspi", .data = &imx51_ecspi_devtype_data, },
710 { /* sentinel */ }
711};
Niels de Vos27743e02013-07-29 09:38:05 +0200712MODULE_DEVICE_TABLE(of, spi_imx_dt_ids);
Shawn Guo22a85e42011-07-10 01:16:41 +0800713
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700714static void spi_imx_chipselect(struct spi_device *spi, int is_active)
715{
716 struct spi_imx_data *spi_imx = spi_master_get_devdata(spi->master);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700717 int gpio = spi_imx->chipselect[spi->chip_select];
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700718 int active = is_active != BITBANG_CS_INACTIVE;
719 int dev_is_lowactive = !(spi->mode & SPI_CS_HIGH);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700720
Hui Wang8b17e052012-07-13 10:51:29 +0800721 if (!gpio_is_valid(gpio))
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700722 return;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700723
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700724 gpio_set_value(gpio, dev_is_lowactive ^ active);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700725}
726
727static void spi_imx_push(struct spi_imx_data *spi_imx)
728{
Shawn Guo04ee5852011-07-10 01:16:39 +0800729 while (spi_imx->txfifo < spi_imx_get_fifosize(spi_imx)) {
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700730 if (!spi_imx->count)
731 break;
732 spi_imx->tx(spi_imx);
733 spi_imx->txfifo++;
734 }
735
Shawn Guoedd501bb2011-07-10 01:16:35 +0800736 spi_imx->devtype_data->trigger(spi_imx);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700737}
738
739static irqreturn_t spi_imx_isr(int irq, void *dev_id)
740{
741 struct spi_imx_data *spi_imx = dev_id;
742
Shawn Guoedd501bb2011-07-10 01:16:35 +0800743 while (spi_imx->devtype_data->rx_available(spi_imx)) {
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700744 spi_imx->rx(spi_imx);
745 spi_imx->txfifo--;
746 }
747
748 if (spi_imx->count) {
749 spi_imx_push(spi_imx);
750 return IRQ_HANDLED;
751 }
752
753 if (spi_imx->txfifo) {
754 /* No data left to push, but still waiting for rx data,
755 * enable receive data available interrupt.
756 */
Shawn Guoedd501bb2011-07-10 01:16:35 +0800757 spi_imx->devtype_data->intctrl(
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200758 spi_imx, MXC_INT_RR);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700759 return IRQ_HANDLED;
760 }
761
Shawn Guoedd501bb2011-07-10 01:16:35 +0800762 spi_imx->devtype_data->intctrl(spi_imx, 0);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700763 complete(&spi_imx->xfer_done);
764
765 return IRQ_HANDLED;
766}
767
768static int spi_imx_setupxfer(struct spi_device *spi,
769 struct spi_transfer *t)
770{
771 struct spi_imx_data *spi_imx = spi_master_get_devdata(spi->master);
772 struct spi_imx_config config;
773
774 config.bpw = t ? t->bits_per_word : spi->bits_per_word;
775 config.speed_hz = t ? t->speed_hz : spi->max_speed_hz;
776 config.mode = spi->mode;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200777 config.cs = spi->chip_select;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700778
Sascha Hauer462d26b2009-10-01 15:44:29 -0700779 if (!config.speed_hz)
780 config.speed_hz = spi->max_speed_hz;
781 if (!config.bpw)
782 config.bpw = spi->bits_per_word;
Sascha Hauer462d26b2009-10-01 15:44:29 -0700783
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700784 /* Initialize the functions for transfer */
785 if (config.bpw <= 8) {
786 spi_imx->rx = spi_imx_buf_rx_u8;
787 spi_imx->tx = spi_imx_buf_tx_u8;
788 } else if (config.bpw <= 16) {
789 spi_imx->rx = spi_imx_buf_rx_u16;
790 spi_imx->tx = spi_imx_buf_tx_u16;
Sachin Kamat60514262013-05-30 13:38:09 +0530791 } else {
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700792 spi_imx->rx = spi_imx_buf_rx_u32;
793 spi_imx->tx = spi_imx_buf_tx_u32;
Stephen Warren24778be2013-05-21 20:36:35 -0600794 }
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700795
Shawn Guoedd501bb2011-07-10 01:16:35 +0800796 spi_imx->devtype_data->config(spi_imx, &config);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700797
798 return 0;
799}
800
Robin Gongf62cacc2014-09-11 09:18:44 +0800801static void spi_imx_sdma_exit(struct spi_imx_data *spi_imx)
802{
803 struct spi_master *master = spi_imx->bitbang.master;
804
805 if (master->dma_rx) {
806 dma_release_channel(master->dma_rx);
807 master->dma_rx = NULL;
808 }
809
810 if (master->dma_tx) {
811 dma_release_channel(master->dma_tx);
812 master->dma_tx = NULL;
813 }
814
815 spi_imx->dma_is_inited = 0;
816}
817
818static int spi_imx_sdma_init(struct device *dev, struct spi_imx_data *spi_imx,
819 struct spi_master *master,
820 const struct resource *res)
821{
822 struct dma_slave_config slave_config = {};
823 int ret;
824
825 /* Prepare for TX DMA: */
826 master->dma_tx = dma_request_slave_channel(dev, "tx");
827 if (!master->dma_tx) {
828 dev_err(dev, "cannot get the TX DMA channel!\n");
829 ret = -EINVAL;
830 goto err;
831 }
832
833 slave_config.direction = DMA_MEM_TO_DEV;
834 slave_config.dst_addr = res->start + MXC_CSPITXDATA;
835 slave_config.dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
836 slave_config.dst_maxburst = spi_imx_get_fifosize(spi_imx) / 2;
837 ret = dmaengine_slave_config(master->dma_tx, &slave_config);
838 if (ret) {
839 dev_err(dev, "error in TX dma configuration.\n");
840 goto err;
841 }
842
843 /* Prepare for RX : */
844 master->dma_rx = dma_request_slave_channel(dev, "rx");
845 if (!master->dma_rx) {
846 dev_dbg(dev, "cannot get the DMA channel.\n");
847 ret = -EINVAL;
848 goto err;
849 }
850
851 slave_config.direction = DMA_DEV_TO_MEM;
852 slave_config.src_addr = res->start + MXC_CSPIRXDATA;
853 slave_config.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
854 slave_config.src_maxburst = spi_imx_get_fifosize(spi_imx) / 2;
855 ret = dmaengine_slave_config(master->dma_rx, &slave_config);
856 if (ret) {
857 dev_err(dev, "error in RX dma configuration.\n");
858 goto err;
859 }
860
861 init_completion(&spi_imx->dma_rx_completion);
862 init_completion(&spi_imx->dma_tx_completion);
863 master->can_dma = spi_imx_can_dma;
864 master->max_dma_len = MAX_SDMA_BD_BYTES;
865 spi_imx->bitbang.master->flags = SPI_MASTER_MUST_RX |
866 SPI_MASTER_MUST_TX;
867 spi_imx->dma_is_inited = 1;
868
869 return 0;
870err:
871 spi_imx_sdma_exit(spi_imx);
872 return ret;
873}
874
875static void spi_imx_dma_rx_callback(void *cookie)
876{
877 struct spi_imx_data *spi_imx = (struct spi_imx_data *)cookie;
878
879 complete(&spi_imx->dma_rx_completion);
880}
881
882static void spi_imx_dma_tx_callback(void *cookie)
883{
884 struct spi_imx_data *spi_imx = (struct spi_imx_data *)cookie;
885
886 complete(&spi_imx->dma_tx_completion);
887}
888
889static int spi_imx_dma_transfer(struct spi_imx_data *spi_imx,
890 struct spi_transfer *transfer)
891{
892 struct dma_async_tx_descriptor *desc_tx = NULL, *desc_rx = NULL;
893 int ret;
Nicholas Mc Guire56536a72015-02-02 03:30:35 -0500894 unsigned long timeout;
Robin Gongf62cacc2014-09-11 09:18:44 +0800895 u32 dma;
896 int left;
897 struct spi_master *master = spi_imx->bitbang.master;
898 struct sg_table *tx = &transfer->tx_sg, *rx = &transfer->rx_sg;
899
900 if (tx) {
901 desc_tx = dmaengine_prep_slave_sg(master->dma_tx,
902 tx->sgl, tx->nents, DMA_TO_DEVICE,
903 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
904 if (!desc_tx)
905 goto no_dma;
906
907 desc_tx->callback = spi_imx_dma_tx_callback;
908 desc_tx->callback_param = (void *)spi_imx;
909 dmaengine_submit(desc_tx);
910 }
911
912 if (rx) {
913 desc_rx = dmaengine_prep_slave_sg(master->dma_rx,
914 rx->sgl, rx->nents, DMA_FROM_DEVICE,
915 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
916 if (!desc_rx)
917 goto no_dma;
918
919 desc_rx->callback = spi_imx_dma_rx_callback;
920 desc_rx->callback_param = (void *)spi_imx;
921 dmaengine_submit(desc_rx);
922 }
923
924 reinit_completion(&spi_imx->dma_rx_completion);
925 reinit_completion(&spi_imx->dma_tx_completion);
926
927 /* Trigger the cspi module. */
928 spi_imx->dma_finished = 0;
929
930 dma = readl(spi_imx->base + MX51_ECSPI_DMA);
931 dma = dma & (~MX51_ECSPI_DMA_RXT_WML_MASK);
932 /* Change RX_DMA_LENGTH trigger dma fetch tail data */
933 left = transfer->len % spi_imx->rxt_wml;
934 if (left)
935 writel(dma | (left << MX51_ECSPI_DMA_RXT_WML_OFFSET),
936 spi_imx->base + MX51_ECSPI_DMA);
937 spi_imx->devtype_data->trigger(spi_imx);
938
939 dma_async_issue_pending(master->dma_tx);
940 dma_async_issue_pending(master->dma_rx);
941 /* Wait SDMA to finish the data transfer.*/
Nicholas Mc Guire56536a72015-02-02 03:30:35 -0500942 timeout = wait_for_completion_timeout(&spi_imx->dma_tx_completion,
Robin Gongf62cacc2014-09-11 09:18:44 +0800943 IMX_DMA_TIMEOUT);
Nicholas Mc Guire56536a72015-02-02 03:30:35 -0500944 if (!timeout) {
Robin Gongf62cacc2014-09-11 09:18:44 +0800945 pr_warn("%s %s: I/O Error in DMA TX\n",
946 dev_driver_string(&master->dev),
947 dev_name(&master->dev));
948 dmaengine_terminate_all(master->dma_tx);
949 } else {
Nicholas Mc Guire56536a72015-02-02 03:30:35 -0500950 timeout = wait_for_completion_timeout(
951 &spi_imx->dma_rx_completion, IMX_DMA_TIMEOUT);
952 if (!timeout) {
Robin Gongf62cacc2014-09-11 09:18:44 +0800953 pr_warn("%s %s: I/O Error in DMA RX\n",
954 dev_driver_string(&master->dev),
955 dev_name(&master->dev));
956 spi_imx->devtype_data->reset(spi_imx);
957 dmaengine_terminate_all(master->dma_rx);
958 }
959 writel(dma |
960 spi_imx->rxt_wml << MX51_ECSPI_DMA_RXT_WML_OFFSET,
961 spi_imx->base + MX51_ECSPI_DMA);
962 }
963
964 spi_imx->dma_finished = 1;
965 spi_imx->devtype_data->trigger(spi_imx);
966
Nicholas Mc Guire56536a72015-02-02 03:30:35 -0500967 if (!timeout)
Robin Gongf62cacc2014-09-11 09:18:44 +0800968 ret = -ETIMEDOUT;
Nicholas Mc Guire56536a72015-02-02 03:30:35 -0500969 else
Robin Gongf62cacc2014-09-11 09:18:44 +0800970 ret = transfer->len;
971
972 return ret;
973
974no_dma:
975 pr_warn_once("%s %s: DMA not available, falling back to PIO\n",
976 dev_driver_string(&master->dev),
977 dev_name(&master->dev));
978 return -EAGAIN;
979}
980
981static int spi_imx_pio_transfer(struct spi_device *spi,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700982 struct spi_transfer *transfer)
983{
984 struct spi_imx_data *spi_imx = spi_master_get_devdata(spi->master);
985
986 spi_imx->tx_buf = transfer->tx_buf;
987 spi_imx->rx_buf = transfer->rx_buf;
988 spi_imx->count = transfer->len;
989 spi_imx->txfifo = 0;
990
Axel Linaa0fe822014-02-09 11:06:04 +0800991 reinit_completion(&spi_imx->xfer_done);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700992
993 spi_imx_push(spi_imx);
994
Shawn Guoedd501bb2011-07-10 01:16:35 +0800995 spi_imx->devtype_data->intctrl(spi_imx, MXC_INT_TE);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700996
997 wait_for_completion(&spi_imx->xfer_done);
998
999 return transfer->len;
1000}
1001
Robin Gongf62cacc2014-09-11 09:18:44 +08001002static int spi_imx_transfer(struct spi_device *spi,
1003 struct spi_transfer *transfer)
1004{
1005 int ret;
1006 struct spi_imx_data *spi_imx = spi_master_get_devdata(spi->master);
1007
1008 if (spi_imx->bitbang.master->can_dma &&
1009 spi_imx_can_dma(spi_imx->bitbang.master, spi, transfer)) {
1010 spi_imx->usedma = true;
1011 ret = spi_imx_dma_transfer(spi_imx, transfer);
1012 if (ret != -EAGAIN)
1013 return ret;
1014 }
1015 spi_imx->usedma = false;
1016
1017 return spi_imx_pio_transfer(spi, transfer);
1018}
1019
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001020static int spi_imx_setup(struct spi_device *spi)
1021{
Sascha Hauer6c23e5d2009-10-01 15:44:29 -07001022 struct spi_imx_data *spi_imx = spi_master_get_devdata(spi->master);
1023 int gpio = spi_imx->chipselect[spi->chip_select];
1024
Alberto Panizzof4d4ecf2010-01-20 13:49:45 -07001025 dev_dbg(&spi->dev, "%s: mode %d, %u bpw, %d hz\n", __func__,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001026 spi->mode, spi->bits_per_word, spi->max_speed_hz);
1027
Hui Wang8b17e052012-07-13 10:51:29 +08001028 if (gpio_is_valid(gpio))
Sascha Hauer6c23e5d2009-10-01 15:44:29 -07001029 gpio_direction_output(gpio, spi->mode & SPI_CS_HIGH ? 0 : 1);
1030
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001031 spi_imx_chipselect(spi, BITBANG_CS_INACTIVE);
1032
1033 return 0;
1034}
1035
1036static void spi_imx_cleanup(struct spi_device *spi)
1037{
1038}
1039
Huang Shijie9e556dc2013-10-23 16:31:50 +08001040static int
1041spi_imx_prepare_message(struct spi_master *master, struct spi_message *msg)
1042{
1043 struct spi_imx_data *spi_imx = spi_master_get_devdata(master);
1044 int ret;
1045
1046 ret = clk_enable(spi_imx->clk_per);
1047 if (ret)
1048 return ret;
1049
1050 ret = clk_enable(spi_imx->clk_ipg);
1051 if (ret) {
1052 clk_disable(spi_imx->clk_per);
1053 return ret;
1054 }
1055
1056 return 0;
1057}
1058
1059static int
1060spi_imx_unprepare_message(struct spi_master *master, struct spi_message *msg)
1061{
1062 struct spi_imx_data *spi_imx = spi_master_get_devdata(master);
1063
1064 clk_disable(spi_imx->clk_ipg);
1065 clk_disable(spi_imx->clk_per);
1066 return 0;
1067}
1068
Grant Likelyfd4a3192012-12-07 16:57:14 +00001069static int spi_imx_probe(struct platform_device *pdev)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001070{
Shawn Guo22a85e42011-07-10 01:16:41 +08001071 struct device_node *np = pdev->dev.of_node;
1072 const struct of_device_id *of_id =
1073 of_match_device(spi_imx_dt_ids, &pdev->dev);
1074 struct spi_imx_master *mxc_platform_info =
1075 dev_get_platdata(&pdev->dev);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001076 struct spi_master *master;
1077 struct spi_imx_data *spi_imx;
1078 struct resource *res;
Fabio Estevam4b5d6aa2014-12-29 19:38:51 -02001079 int i, ret, num_cs, irq;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001080
Shawn Guo22a85e42011-07-10 01:16:41 +08001081 if (!np && !mxc_platform_info) {
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001082 dev_err(&pdev->dev, "can't get the platform data\n");
1083 return -EINVAL;
1084 }
1085
Shawn Guo22a85e42011-07-10 01:16:41 +08001086 ret = of_property_read_u32(np, "fsl,spi-num-chipselects", &num_cs);
Lothar Waßmann39ec0d32012-04-03 15:03:44 +02001087 if (ret < 0) {
1088 if (mxc_platform_info)
1089 num_cs = mxc_platform_info->num_chipselect;
1090 else
1091 return ret;
1092 }
Shawn Guo22a85e42011-07-10 01:16:41 +08001093
Shawn Guoc2387cb2011-07-10 01:16:40 +08001094 master = spi_alloc_master(&pdev->dev,
1095 sizeof(struct spi_imx_data) + sizeof(int) * num_cs);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001096 if (!master)
1097 return -ENOMEM;
1098
1099 platform_set_drvdata(pdev, master);
1100
Stephen Warren24778be2013-05-21 20:36:35 -06001101 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 32);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001102 master->bus_num = pdev->id;
Shawn Guoc2387cb2011-07-10 01:16:40 +08001103 master->num_chipselect = num_cs;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001104
1105 spi_imx = spi_master_get_devdata(master);
Axel Lin94c69f72013-09-10 15:43:41 +08001106 spi_imx->bitbang.master = master;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001107
1108 for (i = 0; i < master->num_chipselect; i++) {
Shawn Guo22a85e42011-07-10 01:16:41 +08001109 int cs_gpio = of_get_named_gpio(np, "cs-gpios", i);
Hui Wang8b17e052012-07-13 10:51:29 +08001110 if (!gpio_is_valid(cs_gpio) && mxc_platform_info)
Shawn Guo22a85e42011-07-10 01:16:41 +08001111 cs_gpio = mxc_platform_info->chipselect[i];
Fabio Estevam4cc122a2011-09-15 17:21:15 -03001112
1113 spi_imx->chipselect[i] = cs_gpio;
Hui Wang8b17e052012-07-13 10:51:29 +08001114 if (!gpio_is_valid(cs_gpio))
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001115 continue;
Fabio Estevam4cc122a2011-09-15 17:21:15 -03001116
Fabio Estevam130b82c2013-07-11 01:26:48 -03001117 ret = devm_gpio_request(&pdev->dev, spi_imx->chipselect[i],
1118 DRIVER_NAME);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001119 if (ret) {
John Ognessbbd050a2009-11-24 16:53:07 +00001120 dev_err(&pdev->dev, "can't get cs gpios\n");
Fabio Estevam130b82c2013-07-11 01:26:48 -03001121 goto out_master_put;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001122 }
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001123 }
1124
1125 spi_imx->bitbang.chipselect = spi_imx_chipselect;
1126 spi_imx->bitbang.setup_transfer = spi_imx_setupxfer;
1127 spi_imx->bitbang.txrx_bufs = spi_imx_transfer;
1128 spi_imx->bitbang.master->setup = spi_imx_setup;
1129 spi_imx->bitbang.master->cleanup = spi_imx_cleanup;
Huang Shijie9e556dc2013-10-23 16:31:50 +08001130 spi_imx->bitbang.master->prepare_message = spi_imx_prepare_message;
1131 spi_imx->bitbang.master->unprepare_message = spi_imx_unprepare_message;
Sascha Hauer3910f2c2009-10-01 15:44:30 -07001132 spi_imx->bitbang.master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001133
1134 init_completion(&spi_imx->xfer_done);
1135
Shawn Guo22a85e42011-07-10 01:16:41 +08001136 spi_imx->devtype_data = of_id ? of_id->data :
Shawn Guo04ee5852011-07-10 01:16:39 +08001137 (struct spi_imx_devtype_data *) pdev->id_entry->driver_data;
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +02001138
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001139 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Fabio Estevam130b82c2013-07-11 01:26:48 -03001140 spi_imx->base = devm_ioremap_resource(&pdev->dev, res);
1141 if (IS_ERR(spi_imx->base)) {
1142 ret = PTR_ERR(spi_imx->base);
1143 goto out_master_put;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001144 }
1145
Fabio Estevam4b5d6aa2014-12-29 19:38:51 -02001146 irq = platform_get_irq(pdev, 0);
1147 if (irq < 0) {
1148 ret = irq;
Fabio Estevam130b82c2013-07-11 01:26:48 -03001149 goto out_master_put;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001150 }
1151
Fabio Estevam4b5d6aa2014-12-29 19:38:51 -02001152 ret = devm_request_irq(&pdev->dev, irq, spi_imx_isr, 0,
Alexander Shiyan8fc39b52014-02-22 17:23:46 +04001153 dev_name(&pdev->dev), spi_imx);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001154 if (ret) {
Fabio Estevam4b5d6aa2014-12-29 19:38:51 -02001155 dev_err(&pdev->dev, "can't get irq%d: %d\n", irq, ret);
Fabio Estevam130b82c2013-07-11 01:26:48 -03001156 goto out_master_put;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001157 }
1158
Sascha Haueraa29d8402012-03-07 09:30:22 +01001159 spi_imx->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
1160 if (IS_ERR(spi_imx->clk_ipg)) {
1161 ret = PTR_ERR(spi_imx->clk_ipg);
Fabio Estevam130b82c2013-07-11 01:26:48 -03001162 goto out_master_put;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001163 }
1164
Sascha Haueraa29d8402012-03-07 09:30:22 +01001165 spi_imx->clk_per = devm_clk_get(&pdev->dev, "per");
1166 if (IS_ERR(spi_imx->clk_per)) {
1167 ret = PTR_ERR(spi_imx->clk_per);
Fabio Estevam130b82c2013-07-11 01:26:48 -03001168 goto out_master_put;
Sascha Haueraa29d8402012-03-07 09:30:22 +01001169 }
1170
Fabio Estevam83174622013-07-11 01:26:49 -03001171 ret = clk_prepare_enable(spi_imx->clk_per);
1172 if (ret)
1173 goto out_master_put;
1174
1175 ret = clk_prepare_enable(spi_imx->clk_ipg);
1176 if (ret)
1177 goto out_put_per;
Sascha Haueraa29d8402012-03-07 09:30:22 +01001178
1179 spi_imx->spi_clk = clk_get_rate(spi_imx->clk_per);
Robin Gongf62cacc2014-09-11 09:18:44 +08001180 /*
1181 * Only validated on i.mx6 now, can remove the constrain if validated on
1182 * other chips.
1183 */
1184 if (spi_imx->devtype_data == &imx51_ecspi_devtype_data
1185 && spi_imx_sdma_init(&pdev->dev, spi_imx, master, res))
1186 dev_err(&pdev->dev, "dma setup error,use pio instead\n");
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001187
Shawn Guoedd501bb2011-07-10 01:16:35 +08001188 spi_imx->devtype_data->reset(spi_imx);
Daniel Mackce1807b2009-11-19 19:01:42 +00001189
Shawn Guoedd501bb2011-07-10 01:16:35 +08001190 spi_imx->devtype_data->intctrl(spi_imx, 0);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001191
Shawn Guo22a85e42011-07-10 01:16:41 +08001192 master->dev.of_node = pdev->dev.of_node;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001193 ret = spi_bitbang_start(&spi_imx->bitbang);
1194 if (ret) {
1195 dev_err(&pdev->dev, "bitbang start failed with %d\n", ret);
1196 goto out_clk_put;
1197 }
1198
1199 dev_info(&pdev->dev, "probed\n");
1200
Huang Shijie9e556dc2013-10-23 16:31:50 +08001201 clk_disable(spi_imx->clk_ipg);
1202 clk_disable(spi_imx->clk_per);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001203 return ret;
1204
1205out_clk_put:
Sascha Haueraa29d8402012-03-07 09:30:22 +01001206 clk_disable_unprepare(spi_imx->clk_ipg);
Fabio Estevam83174622013-07-11 01:26:49 -03001207out_put_per:
1208 clk_disable_unprepare(spi_imx->clk_per);
Fabio Estevam130b82c2013-07-11 01:26:48 -03001209out_master_put:
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001210 spi_master_put(master);
Fabio Estevam130b82c2013-07-11 01:26:48 -03001211
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001212 return ret;
1213}
1214
Grant Likelyfd4a3192012-12-07 16:57:14 +00001215static int spi_imx_remove(struct platform_device *pdev)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001216{
1217 struct spi_master *master = platform_get_drvdata(pdev);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001218 struct spi_imx_data *spi_imx = spi_master_get_devdata(master);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001219
1220 spi_bitbang_stop(&spi_imx->bitbang);
1221
1222 writel(0, spi_imx->base + MXC_CSPICTRL);
Philippe De Muyterfd40dcc2014-02-27 10:16:15 +01001223 clk_unprepare(spi_imx->clk_ipg);
1224 clk_unprepare(spi_imx->clk_per);
Robin Gongf62cacc2014-09-11 09:18:44 +08001225 spi_imx_sdma_exit(spi_imx);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001226 spi_master_put(master);
1227
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001228 return 0;
1229}
1230
1231static struct platform_driver spi_imx_driver = {
1232 .driver = {
1233 .name = DRIVER_NAME,
Shawn Guo22a85e42011-07-10 01:16:41 +08001234 .of_match_table = spi_imx_dt_ids,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001235 },
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +02001236 .id_table = spi_imx_devtype,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001237 .probe = spi_imx_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +00001238 .remove = spi_imx_remove,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001239};
Grant Likely940ab882011-10-05 11:29:49 -06001240module_platform_driver(spi_imx_driver);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001241
1242MODULE_DESCRIPTION("SPI Master Controller driver");
1243MODULE_AUTHOR("Sascha Hauer, Pengutronix");
1244MODULE_LICENSE("GPL");
Fabio Estevam3133fba32013-01-07 20:42:55 -02001245MODULE_ALIAS("platform:" DRIVER_NAME);