blob: b79d70d6dabfe18086f16ffc69ee2c5879298760 [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)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070059struct spi_imx_config {
60 unsigned int speed_hz;
61 unsigned int bpw;
62 unsigned int mode;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +020063 u8 cs;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070064};
65
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +020066enum spi_imx_devtype {
Shawn Guo04ee5852011-07-10 01:16:39 +080067 IMX1_CSPI,
68 IMX21_CSPI,
69 IMX27_CSPI,
70 IMX31_CSPI,
71 IMX35_CSPI, /* CSPI on all i.mx except above */
72 IMX51_ECSPI, /* ECSPI on i.mx51 and later */
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +020073};
74
75struct spi_imx_data;
76
77struct spi_imx_devtype_data {
78 void (*intctrl)(struct spi_imx_data *, int);
79 int (*config)(struct spi_imx_data *, struct spi_imx_config *);
80 void (*trigger)(struct spi_imx_data *);
81 int (*rx_available)(struct spi_imx_data *);
Uwe Kleine-König1723e662010-09-10 09:19:18 +020082 void (*reset)(struct spi_imx_data *);
Shawn Guo04ee5852011-07-10 01:16:39 +080083 enum spi_imx_devtype devtype;
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +020084};
85
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070086struct spi_imx_data {
87 struct spi_bitbang bitbang;
Sascha Hauer6aa800c2016-02-17 14:28:48 +010088 struct device *dev;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070089
90 struct completion xfer_done;
Uwe Kleine-Königcc4d22a2012-03-29 21:54:18 +020091 void __iomem *base;
Anton Bondarenkof12ae172016-02-24 09:20:29 +010092 unsigned long base_phys;
93
Sascha Haueraa29d8402012-03-07 09:30:22 +010094 struct clk *clk_per;
95 struct clk *clk_ipg;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070096 unsigned long spi_clk;
Anton Bondarenko4bfe9272016-02-19 08:43:03 +010097 unsigned int spi_bus_clk;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070098
Anton Bondarenkof12ae172016-02-24 09:20:29 +010099 unsigned int bytes_per_word;
100
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700101 unsigned int count;
102 void (*tx)(struct spi_imx_data *);
103 void (*rx)(struct spi_imx_data *);
104 void *rx_buf;
105 const void *tx_buf;
106 unsigned int txfifo; /* number of words pushed in tx FIFO */
107
Robin Gongf62cacc2014-09-11 09:18:44 +0800108 /* DMA */
Robin Gongf62cacc2014-09-11 09:18:44 +0800109 bool usedma;
Anton Bondarenko0dfbaa82015-12-05 17:57:01 +0100110 u32 wml;
Robin Gongf62cacc2014-09-11 09:18:44 +0800111 struct completion dma_rx_completion;
112 struct completion dma_tx_completion;
113
Uwe Kleine-König80023cb2012-05-21 21:49:35 +0200114 const struct spi_imx_devtype_data *devtype_data;
Shawn Guoc2387cb2011-07-10 01:16:40 +0800115 int chipselect[0];
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700116};
117
Shawn Guo04ee5852011-07-10 01:16:39 +0800118static inline int is_imx27_cspi(struct spi_imx_data *d)
119{
120 return d->devtype_data->devtype == IMX27_CSPI;
121}
122
123static inline int is_imx35_cspi(struct spi_imx_data *d)
124{
125 return d->devtype_data->devtype == IMX35_CSPI;
126}
127
Anton Bondarenkof8a876172015-12-05 17:57:02 +0100128static inline int is_imx51_ecspi(struct spi_imx_data *d)
129{
130 return d->devtype_data->devtype == IMX51_ECSPI;
131}
132
Shawn Guo04ee5852011-07-10 01:16:39 +0800133static inline unsigned spi_imx_get_fifosize(struct spi_imx_data *d)
134{
Anton Bondarenkof8a876172015-12-05 17:57:02 +0100135 return is_imx51_ecspi(d) ? 64 : 8;
Shawn Guo04ee5852011-07-10 01:16:39 +0800136}
137
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700138#define MXC_SPI_BUF_RX(type) \
139static void spi_imx_buf_rx_##type(struct spi_imx_data *spi_imx) \
140{ \
141 unsigned int val = readl(spi_imx->base + MXC_CSPIRXDATA); \
142 \
143 if (spi_imx->rx_buf) { \
144 *(type *)spi_imx->rx_buf = val; \
145 spi_imx->rx_buf += sizeof(type); \
146 } \
147}
148
149#define MXC_SPI_BUF_TX(type) \
150static void spi_imx_buf_tx_##type(struct spi_imx_data *spi_imx) \
151{ \
152 type val = 0; \
153 \
154 if (spi_imx->tx_buf) { \
155 val = *(type *)spi_imx->tx_buf; \
156 spi_imx->tx_buf += sizeof(type); \
157 } \
158 \
159 spi_imx->count -= sizeof(type); \
160 \
161 writel(val, spi_imx->base + MXC_CSPITXDATA); \
162}
163
164MXC_SPI_BUF_RX(u8)
165MXC_SPI_BUF_TX(u8)
166MXC_SPI_BUF_RX(u16)
167MXC_SPI_BUF_TX(u16)
168MXC_SPI_BUF_RX(u32)
169MXC_SPI_BUF_TX(u32)
170
171/* First entry is reserved, second entry is valid only if SDHC_SPIEN is set
172 * (which is currently not the case in this driver)
173 */
174static int mxc_clkdivs[] = {0, 3, 4, 6, 8, 12, 16, 24, 32, 48, 64, 96, 128, 192,
175 256, 384, 512, 768, 1024};
176
177/* MX21, MX27 */
178static unsigned int spi_imx_clkdiv_1(unsigned int fin,
Shawn Guo04ee5852011-07-10 01:16:39 +0800179 unsigned int fspi, unsigned int max)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700180{
Shawn Guo04ee5852011-07-10 01:16:39 +0800181 int i;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700182
183 for (i = 2; i < max; i++)
184 if (fspi * mxc_clkdivs[i] >= fin)
185 return i;
186
187 return max;
188}
189
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200190/* MX1, MX31, MX35, MX51 CSPI */
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700191static unsigned int spi_imx_clkdiv_2(unsigned int fin,
192 unsigned int fspi)
193{
194 int i, div = 4;
195
196 for (i = 0; i < 7; i++) {
197 if (fspi * div >= fin)
198 return i;
199 div <<= 1;
200 }
201
202 return 7;
203}
204
Anton Bondarenkof12ae172016-02-24 09:20:29 +0100205static int spi_imx_bytes_per_word(const int bpw)
206{
207 return DIV_ROUND_UP(bpw, BITS_PER_BYTE);
208}
209
Robin Gongf62cacc2014-09-11 09:18:44 +0800210static bool spi_imx_can_dma(struct spi_master *master, struct spi_device *spi,
211 struct spi_transfer *transfer)
212{
213 struct spi_imx_data *spi_imx = spi_master_get_devdata(master);
Anton Bondarenkof12ae172016-02-24 09:20:29 +0100214 unsigned int bpw = transfer->bits_per_word;
Robin Gongf62cacc2014-09-11 09:18:44 +0800215
Anton Bondarenkof12ae172016-02-24 09:20:29 +0100216 if (!master->dma_rx)
217 return false;
218
219 if (!bpw)
220 bpw = spi->bits_per_word;
221
222 bpw = spi_imx_bytes_per_word(bpw);
223
224 if (bpw != 1 && bpw != 2 && bpw != 4)
225 return false;
226
227 if (transfer->len < spi_imx->wml * bpw)
228 return false;
229
230 if (transfer->len % (spi_imx->wml * bpw))
231 return false;
232
233 return true;
Robin Gongf62cacc2014-09-11 09:18:44 +0800234}
235
Shawn Guo66de7572011-07-10 01:16:37 +0800236#define MX51_ECSPI_CTRL 0x08
237#define MX51_ECSPI_CTRL_ENABLE (1 << 0)
238#define MX51_ECSPI_CTRL_XCH (1 << 2)
Robin Gongf62cacc2014-09-11 09:18:44 +0800239#define MX51_ECSPI_CTRL_SMC (1 << 3)
Shawn Guo66de7572011-07-10 01:16:37 +0800240#define MX51_ECSPI_CTRL_MODE_MASK (0xf << 4)
241#define MX51_ECSPI_CTRL_POSTDIV_OFFSET 8
242#define MX51_ECSPI_CTRL_PREDIV_OFFSET 12
243#define MX51_ECSPI_CTRL_CS(cs) ((cs) << 18)
244#define MX51_ECSPI_CTRL_BL_OFFSET 20
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200245
Shawn Guo66de7572011-07-10 01:16:37 +0800246#define MX51_ECSPI_CONFIG 0x0c
247#define MX51_ECSPI_CONFIG_SCLKPHA(cs) (1 << ((cs) + 0))
248#define MX51_ECSPI_CONFIG_SCLKPOL(cs) (1 << ((cs) + 4))
249#define MX51_ECSPI_CONFIG_SBBCTRL(cs) (1 << ((cs) + 8))
250#define MX51_ECSPI_CONFIG_SSBPOL(cs) (1 << ((cs) + 12))
Knut Wohlrabc09b8902012-09-25 13:21:57 +0200251#define MX51_ECSPI_CONFIG_SCLKCTL(cs) (1 << ((cs) + 20))
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200252
Shawn Guo66de7572011-07-10 01:16:37 +0800253#define MX51_ECSPI_INT 0x10
254#define MX51_ECSPI_INT_TEEN (1 << 0)
255#define MX51_ECSPI_INT_RREN (1 << 3)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200256
Robin Gongf62cacc2014-09-11 09:18:44 +0800257#define MX51_ECSPI_DMA 0x14
Sascha Hauerd629c2a2016-02-24 09:20:31 +0100258#define MX51_ECSPI_DMA_TX_WML(wml) ((wml) & 0x3f)
259#define MX51_ECSPI_DMA_RX_WML(wml) (((wml) & 0x3f) << 16)
260#define MX51_ECSPI_DMA_RXT_WML(wml) (((wml) & 0x3f) << 24)
Robin Gongf62cacc2014-09-11 09:18:44 +0800261
Sascha Hauer2b0fd062016-02-24 09:20:27 +0100262#define MX51_ECSPI_DMA_TEDEN (1 << 7)
263#define MX51_ECSPI_DMA_RXDEN (1 << 23)
264#define MX51_ECSPI_DMA_RXTDEN (1 << 31)
Robin Gongf62cacc2014-09-11 09:18:44 +0800265
Shawn Guo66de7572011-07-10 01:16:37 +0800266#define MX51_ECSPI_STAT 0x18
267#define MX51_ECSPI_STAT_RR (1 << 3)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200268
Fabio Estevam9f6aa422015-12-03 23:23:24 -0200269#define MX51_ECSPI_TESTREG 0x20
270#define MX51_ECSPI_TESTREG_LBC BIT(31)
271
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200272/* MX51 eCSPI */
Sascha Hauer6aa800c2016-02-17 14:28:48 +0100273static unsigned int mx51_ecspi_clkdiv(struct spi_imx_data *spi_imx,
274 unsigned int fspi, unsigned int *fres)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200275{
276 /*
277 * there are two 4-bit dividers, the pre-divider divides by
278 * $pre, the post-divider by 2^$post
279 */
280 unsigned int pre, post;
Sascha Hauer6aa800c2016-02-17 14:28:48 +0100281 unsigned int fin = spi_imx->spi_clk;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200282
283 if (unlikely(fspi > fin))
284 return 0;
285
286 post = fls(fin) - fls(fspi);
287 if (fin > fspi << post)
288 post++;
289
290 /* now we have: (fin <= fspi << post) with post being minimal */
291
292 post = max(4U, post) - 4;
293 if (unlikely(post > 0xf)) {
Sascha Hauer6aa800c2016-02-17 14:28:48 +0100294 dev_err(spi_imx->dev, "cannot set clock freq: %u (base freq: %u)\n",
295 fspi, fin);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200296 return 0xff;
297 }
298
299 pre = DIV_ROUND_UP(fin, fspi << post) - 1;
300
Sascha Hauer6aa800c2016-02-17 14:28:48 +0100301 dev_dbg(spi_imx->dev, "%s: fin: %u, fspi: %u, post: %u, pre: %u\n",
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200302 __func__, fin, fspi, post, pre);
Marek Vasut6fd8b852013-12-18 18:31:47 +0100303
304 /* Resulting frequency for the SCLK line. */
305 *fres = (fin / (pre + 1)) >> post;
306
Shawn Guo66de7572011-07-10 01:16:37 +0800307 return (pre << MX51_ECSPI_CTRL_PREDIV_OFFSET) |
308 (post << MX51_ECSPI_CTRL_POSTDIV_OFFSET);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200309}
310
Shawn Guo66de7572011-07-10 01:16:37 +0800311static void __maybe_unused mx51_ecspi_intctrl(struct spi_imx_data *spi_imx, int enable)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200312{
313 unsigned val = 0;
314
315 if (enable & MXC_INT_TE)
Shawn Guo66de7572011-07-10 01:16:37 +0800316 val |= MX51_ECSPI_INT_TEEN;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200317
318 if (enable & MXC_INT_RR)
Shawn Guo66de7572011-07-10 01:16:37 +0800319 val |= MX51_ECSPI_INT_RREN;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200320
Shawn Guo66de7572011-07-10 01:16:37 +0800321 writel(val, spi_imx->base + MX51_ECSPI_INT);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200322}
323
Shawn Guo66de7572011-07-10 01:16:37 +0800324static void __maybe_unused mx51_ecspi_trigger(struct spi_imx_data *spi_imx)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200325{
Sascha Hauerb03c3882016-02-24 09:20:32 +0100326 u32 reg;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200327
Sascha Hauerb03c3882016-02-24 09:20:32 +0100328 reg = readl(spi_imx->base + MX51_ECSPI_CTRL);
329 reg |= MX51_ECSPI_CTRL_XCH;
Shawn Guo66de7572011-07-10 01:16:37 +0800330 writel(reg, spi_imx->base + MX51_ECSPI_CTRL);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200331}
332
Shawn Guo66de7572011-07-10 01:16:37 +0800333static int __maybe_unused mx51_ecspi_config(struct spi_imx_data *spi_imx,
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200334 struct spi_imx_config *config)
335{
Knut Wohlrab793c7f92016-03-15 14:24:36 +0100336 u32 ctrl = MX51_ECSPI_CTRL_ENABLE;
Fabio Estevam9f6aa422015-12-03 23:23:24 -0200337 u32 clk = config->speed_hz, delay, reg;
Knut Wohlrab793c7f92016-03-15 14:24:36 +0100338 u32 cfg = readl(spi_imx->base + MX51_ECSPI_CONFIG);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200339
Sascha Hauerf020c392011-02-08 21:08:59 +0100340 /*
341 * The hardware seems to have a race condition when changing modes. The
342 * current assumption is that the selection of the channel arrives
343 * earlier in the hardware than the mode bits when they are written at
344 * the same time.
345 * So set master mode for all channels as we do not support slave mode.
346 */
Shawn Guo66de7572011-07-10 01:16:37 +0800347 ctrl |= MX51_ECSPI_CTRL_MODE_MASK;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200348
349 /* set clock speed */
Sascha Hauer6aa800c2016-02-17 14:28:48 +0100350 ctrl |= mx51_ecspi_clkdiv(spi_imx, config->speed_hz, &clk);
Anton Bondarenko4bfe9272016-02-19 08:43:03 +0100351 spi_imx->spi_bus_clk = clk;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200352
353 /* set chip select to use */
Shawn Guo66de7572011-07-10 01:16:37 +0800354 ctrl |= MX51_ECSPI_CTRL_CS(config->cs);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200355
Shawn Guo66de7572011-07-10 01:16:37 +0800356 ctrl |= (config->bpw - 1) << MX51_ECSPI_CTRL_BL_OFFSET;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200357
Shawn Guo66de7572011-07-10 01:16:37 +0800358 cfg |= MX51_ECSPI_CONFIG_SBBCTRL(config->cs);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200359
360 if (config->mode & SPI_CPHA)
Shawn Guo66de7572011-07-10 01:16:37 +0800361 cfg |= MX51_ECSPI_CONFIG_SCLKPHA(config->cs);
Knut Wohlrab793c7f92016-03-15 14:24:36 +0100362 else
363 cfg &= ~MX51_ECSPI_CONFIG_SCLKPHA(config->cs);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200364
Knut Wohlrabc09b8902012-09-25 13:21:57 +0200365 if (config->mode & SPI_CPOL) {
Shawn Guo66de7572011-07-10 01:16:37 +0800366 cfg |= MX51_ECSPI_CONFIG_SCLKPOL(config->cs);
Knut Wohlrabc09b8902012-09-25 13:21:57 +0200367 cfg |= MX51_ECSPI_CONFIG_SCLKCTL(config->cs);
Knut Wohlrab793c7f92016-03-15 14:24:36 +0100368 } else {
369 cfg &= ~MX51_ECSPI_CONFIG_SCLKPOL(config->cs);
370 cfg &= ~MX51_ECSPI_CONFIG_SCLKCTL(config->cs);
Knut Wohlrabc09b8902012-09-25 13:21:57 +0200371 }
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200372 if (config->mode & SPI_CS_HIGH)
Shawn Guo66de7572011-07-10 01:16:37 +0800373 cfg |= MX51_ECSPI_CONFIG_SSBPOL(config->cs);
Knut Wohlrab793c7f92016-03-15 14:24:36 +0100374 else
375 cfg &= ~MX51_ECSPI_CONFIG_SSBPOL(config->cs);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200376
Sascha Hauerb03c3882016-02-24 09:20:32 +0100377 if (spi_imx->usedma)
378 ctrl |= MX51_ECSPI_CTRL_SMC;
379
Anton Bondarenkof677f172015-12-08 07:43:43 +0100380 /* CTRL register always go first to bring out controller from reset */
381 writel(ctrl, spi_imx->base + MX51_ECSPI_CTRL);
382
Fabio Estevam9f6aa422015-12-03 23:23:24 -0200383 reg = readl(spi_imx->base + MX51_ECSPI_TESTREG);
384 if (config->mode & SPI_LOOP)
385 reg |= MX51_ECSPI_TESTREG_LBC;
386 else
387 reg &= ~MX51_ECSPI_TESTREG_LBC;
388 writel(reg, spi_imx->base + MX51_ECSPI_TESTREG);
389
Shawn Guo66de7572011-07-10 01:16:37 +0800390 writel(cfg, spi_imx->base + MX51_ECSPI_CONFIG);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200391
Marek Vasut6fd8b852013-12-18 18:31:47 +0100392 /*
393 * Wait until the changes in the configuration register CONFIGREG
394 * propagate into the hardware. It takes exactly one tick of the
395 * SCLK clock, but we will wait two SCLK clock just to be sure. The
396 * effect of the delay it takes for the hardware to apply changes
397 * is noticable if the SCLK clock run very slow. In such a case, if
398 * the polarity of SCLK should be inverted, the GPIO ChipSelect might
399 * be asserted before the SCLK polarity changes, which would disrupt
400 * the SPI communication as the device on the other end would consider
401 * the change of SCLK polarity as a clock tick already.
402 */
403 delay = (2 * 1000000) / clk;
404 if (likely(delay < 10)) /* SCLK is faster than 100 kHz */
405 udelay(delay);
406 else /* SCLK is _very_ slow */
407 usleep_range(delay, delay + 10);
408
Robin Gongf62cacc2014-09-11 09:18:44 +0800409 /*
410 * Configure the DMA register: setup the watermark
411 * and enable DMA request.
412 */
Robin Gongf62cacc2014-09-11 09:18:44 +0800413
Sascha Hauerd629c2a2016-02-24 09:20:31 +0100414 writel(MX51_ECSPI_DMA_RX_WML(spi_imx->wml) |
415 MX51_ECSPI_DMA_TX_WML(spi_imx->wml) |
416 MX51_ECSPI_DMA_RXT_WML(spi_imx->wml) |
Sascha Hauer2b0fd062016-02-24 09:20:27 +0100417 MX51_ECSPI_DMA_TEDEN | MX51_ECSPI_DMA_RXDEN |
418 MX51_ECSPI_DMA_RXTDEN, spi_imx->base + MX51_ECSPI_DMA);
Robin Gongf62cacc2014-09-11 09:18:44 +0800419
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200420 return 0;
421}
422
Shawn Guo66de7572011-07-10 01:16:37 +0800423static int __maybe_unused mx51_ecspi_rx_available(struct spi_imx_data *spi_imx)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200424{
Shawn Guo66de7572011-07-10 01:16:37 +0800425 return readl(spi_imx->base + MX51_ECSPI_STAT) & MX51_ECSPI_STAT_RR;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200426}
427
Shawn Guo66de7572011-07-10 01:16:37 +0800428static void __maybe_unused mx51_ecspi_reset(struct spi_imx_data *spi_imx)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200429{
430 /* drain receive buffer */
Shawn Guo66de7572011-07-10 01:16:37 +0800431 while (mx51_ecspi_rx_available(spi_imx))
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200432 readl(spi_imx->base + MXC_CSPIRXDATA);
433}
434
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700435#define MX31_INTREG_TEEN (1 << 0)
436#define MX31_INTREG_RREN (1 << 3)
437
438#define MX31_CSPICTRL_ENABLE (1 << 0)
439#define MX31_CSPICTRL_MASTER (1 << 1)
440#define MX31_CSPICTRL_XCH (1 << 2)
441#define MX31_CSPICTRL_POL (1 << 4)
442#define MX31_CSPICTRL_PHA (1 << 5)
443#define MX31_CSPICTRL_SSCTL (1 << 6)
444#define MX31_CSPICTRL_SSPOL (1 << 7)
445#define MX31_CSPICTRL_BC_SHIFT 8
446#define MX35_CSPICTRL_BL_SHIFT 20
447#define MX31_CSPICTRL_CS_SHIFT 24
448#define MX35_CSPICTRL_CS_SHIFT 12
449#define MX31_CSPICTRL_DR_SHIFT 16
450
451#define MX31_CSPISTATUS 0x14
452#define MX31_STATUS_RR (1 << 3)
453
454/* These functions also work for the i.MX35, but be aware that
455 * the i.MX35 has a slightly different register layout for bits
456 * we do not use here.
457 */
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200458static void __maybe_unused mx31_intctrl(struct spi_imx_data *spi_imx, int enable)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700459{
460 unsigned int val = 0;
461
462 if (enable & MXC_INT_TE)
463 val |= MX31_INTREG_TEEN;
464 if (enable & MXC_INT_RR)
465 val |= MX31_INTREG_RREN;
466
467 writel(val, spi_imx->base + MXC_CSPIINT);
468}
469
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200470static void __maybe_unused mx31_trigger(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700471{
472 unsigned int reg;
473
474 reg = readl(spi_imx->base + MXC_CSPICTRL);
475 reg |= MX31_CSPICTRL_XCH;
476 writel(reg, spi_imx->base + MXC_CSPICTRL);
477}
478
Shawn Guo2a64a902011-07-10 01:16:38 +0800479static int __maybe_unused mx31_config(struct spi_imx_data *spi_imx,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700480 struct spi_imx_config *config)
481{
482 unsigned int reg = MX31_CSPICTRL_ENABLE | MX31_CSPICTRL_MASTER;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200483 int cs = spi_imx->chipselect[config->cs];
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700484
485 reg |= spi_imx_clkdiv_2(spi_imx->spi_clk, config->speed_hz) <<
486 MX31_CSPICTRL_DR_SHIFT;
487
Shawn Guo04ee5852011-07-10 01:16:39 +0800488 if (is_imx35_cspi(spi_imx)) {
Shawn Guo2a64a902011-07-10 01:16:38 +0800489 reg |= (config->bpw - 1) << MX35_CSPICTRL_BL_SHIFT;
490 reg |= MX31_CSPICTRL_SSCTL;
491 } else {
492 reg |= (config->bpw - 1) << MX31_CSPICTRL_BC_SHIFT;
493 }
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700494
495 if (config->mode & SPI_CPHA)
496 reg |= MX31_CSPICTRL_PHA;
497 if (config->mode & SPI_CPOL)
498 reg |= MX31_CSPICTRL_POL;
499 if (config->mode & SPI_CS_HIGH)
500 reg |= MX31_CSPICTRL_SSPOL;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200501 if (cs < 0)
Shawn Guo2a64a902011-07-10 01:16:38 +0800502 reg |= (cs + 32) <<
Shawn Guo04ee5852011-07-10 01:16:39 +0800503 (is_imx35_cspi(spi_imx) ? MX35_CSPICTRL_CS_SHIFT :
504 MX31_CSPICTRL_CS_SHIFT);
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200505
506 writel(reg, spi_imx->base + MXC_CSPICTRL);
507
508 return 0;
509}
510
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200511static int __maybe_unused mx31_rx_available(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700512{
513 return readl(spi_imx->base + MX31_CSPISTATUS) & MX31_STATUS_RR;
514}
515
Shawn Guo2a64a902011-07-10 01:16:38 +0800516static void __maybe_unused mx31_reset(struct spi_imx_data *spi_imx)
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200517{
518 /* drain receive buffer */
Shawn Guo2a64a902011-07-10 01:16:38 +0800519 while (readl(spi_imx->base + MX31_CSPISTATUS) & MX31_STATUS_RR)
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200520 readl(spi_imx->base + MXC_CSPIRXDATA);
521}
522
Shawn Guo3451fb12011-07-10 01:16:36 +0800523#define MX21_INTREG_RR (1 << 4)
524#define MX21_INTREG_TEEN (1 << 9)
525#define MX21_INTREG_RREN (1 << 13)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700526
Shawn Guo3451fb12011-07-10 01:16:36 +0800527#define MX21_CSPICTRL_POL (1 << 5)
528#define MX21_CSPICTRL_PHA (1 << 6)
529#define MX21_CSPICTRL_SSPOL (1 << 8)
530#define MX21_CSPICTRL_XCH (1 << 9)
531#define MX21_CSPICTRL_ENABLE (1 << 10)
532#define MX21_CSPICTRL_MASTER (1 << 11)
533#define MX21_CSPICTRL_DR_SHIFT 14
534#define MX21_CSPICTRL_CS_SHIFT 19
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700535
Shawn Guo3451fb12011-07-10 01:16:36 +0800536static void __maybe_unused mx21_intctrl(struct spi_imx_data *spi_imx, int enable)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700537{
538 unsigned int val = 0;
539
540 if (enable & MXC_INT_TE)
Shawn Guo3451fb12011-07-10 01:16:36 +0800541 val |= MX21_INTREG_TEEN;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700542 if (enable & MXC_INT_RR)
Shawn Guo3451fb12011-07-10 01:16:36 +0800543 val |= MX21_INTREG_RREN;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700544
545 writel(val, spi_imx->base + MXC_CSPIINT);
546}
547
Shawn Guo3451fb12011-07-10 01:16:36 +0800548static void __maybe_unused mx21_trigger(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700549{
550 unsigned int reg;
551
552 reg = readl(spi_imx->base + MXC_CSPICTRL);
Shawn Guo3451fb12011-07-10 01:16:36 +0800553 reg |= MX21_CSPICTRL_XCH;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700554 writel(reg, spi_imx->base + MXC_CSPICTRL);
555}
556
Shawn Guo3451fb12011-07-10 01:16:36 +0800557static int __maybe_unused mx21_config(struct spi_imx_data *spi_imx,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700558 struct spi_imx_config *config)
559{
Shawn Guo3451fb12011-07-10 01:16:36 +0800560 unsigned int reg = MX21_CSPICTRL_ENABLE | MX21_CSPICTRL_MASTER;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200561 int cs = spi_imx->chipselect[config->cs];
Shawn Guo04ee5852011-07-10 01:16:39 +0800562 unsigned int max = is_imx27_cspi(spi_imx) ? 16 : 18;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700563
Shawn Guo04ee5852011-07-10 01:16:39 +0800564 reg |= spi_imx_clkdiv_1(spi_imx->spi_clk, config->speed_hz, max) <<
Shawn Guo3451fb12011-07-10 01:16:36 +0800565 MX21_CSPICTRL_DR_SHIFT;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700566 reg |= config->bpw - 1;
567
568 if (config->mode & SPI_CPHA)
Shawn Guo3451fb12011-07-10 01:16:36 +0800569 reg |= MX21_CSPICTRL_PHA;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700570 if (config->mode & SPI_CPOL)
Shawn Guo3451fb12011-07-10 01:16:36 +0800571 reg |= MX21_CSPICTRL_POL;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700572 if (config->mode & SPI_CS_HIGH)
Shawn Guo3451fb12011-07-10 01:16:36 +0800573 reg |= MX21_CSPICTRL_SSPOL;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200574 if (cs < 0)
Shawn Guo3451fb12011-07-10 01:16:36 +0800575 reg |= (cs + 32) << MX21_CSPICTRL_CS_SHIFT;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700576
577 writel(reg, spi_imx->base + MXC_CSPICTRL);
578
579 return 0;
580}
581
Shawn Guo3451fb12011-07-10 01:16:36 +0800582static int __maybe_unused mx21_rx_available(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700583{
Shawn Guo3451fb12011-07-10 01:16:36 +0800584 return readl(spi_imx->base + MXC_CSPIINT) & MX21_INTREG_RR;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700585}
586
Shawn Guo3451fb12011-07-10 01:16:36 +0800587static void __maybe_unused mx21_reset(struct spi_imx_data *spi_imx)
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200588{
589 writel(1, spi_imx->base + MXC_RESET);
590}
591
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700592#define MX1_INTREG_RR (1 << 3)
593#define MX1_INTREG_TEEN (1 << 8)
594#define MX1_INTREG_RREN (1 << 11)
595
596#define MX1_CSPICTRL_POL (1 << 4)
597#define MX1_CSPICTRL_PHA (1 << 5)
598#define MX1_CSPICTRL_XCH (1 << 8)
599#define MX1_CSPICTRL_ENABLE (1 << 9)
600#define MX1_CSPICTRL_MASTER (1 << 10)
601#define MX1_CSPICTRL_DR_SHIFT 13
602
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200603static void __maybe_unused mx1_intctrl(struct spi_imx_data *spi_imx, int enable)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700604{
605 unsigned int val = 0;
606
607 if (enable & MXC_INT_TE)
608 val |= MX1_INTREG_TEEN;
609 if (enable & MXC_INT_RR)
610 val |= MX1_INTREG_RREN;
611
612 writel(val, spi_imx->base + MXC_CSPIINT);
613}
614
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200615static void __maybe_unused mx1_trigger(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700616{
617 unsigned int reg;
618
619 reg = readl(spi_imx->base + MXC_CSPICTRL);
620 reg |= MX1_CSPICTRL_XCH;
621 writel(reg, spi_imx->base + MXC_CSPICTRL);
622}
623
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200624static int __maybe_unused mx1_config(struct spi_imx_data *spi_imx,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700625 struct spi_imx_config *config)
626{
627 unsigned int reg = MX1_CSPICTRL_ENABLE | MX1_CSPICTRL_MASTER;
628
629 reg |= spi_imx_clkdiv_2(spi_imx->spi_clk, config->speed_hz) <<
630 MX1_CSPICTRL_DR_SHIFT;
631 reg |= config->bpw - 1;
632
633 if (config->mode & SPI_CPHA)
634 reg |= MX1_CSPICTRL_PHA;
635 if (config->mode & SPI_CPOL)
636 reg |= MX1_CSPICTRL_POL;
637
638 writel(reg, spi_imx->base + MXC_CSPICTRL);
639
640 return 0;
641}
642
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200643static int __maybe_unused mx1_rx_available(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700644{
645 return readl(spi_imx->base + MXC_CSPIINT) & MX1_INTREG_RR;
646}
647
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200648static void __maybe_unused mx1_reset(struct spi_imx_data *spi_imx)
649{
650 writel(1, spi_imx->base + MXC_RESET);
651}
652
Shawn Guo04ee5852011-07-10 01:16:39 +0800653static struct spi_imx_devtype_data imx1_cspi_devtype_data = {
654 .intctrl = mx1_intctrl,
655 .config = mx1_config,
656 .trigger = mx1_trigger,
657 .rx_available = mx1_rx_available,
658 .reset = mx1_reset,
659 .devtype = IMX1_CSPI,
660};
661
662static struct spi_imx_devtype_data imx21_cspi_devtype_data = {
663 .intctrl = mx21_intctrl,
664 .config = mx21_config,
665 .trigger = mx21_trigger,
666 .rx_available = mx21_rx_available,
667 .reset = mx21_reset,
668 .devtype = IMX21_CSPI,
669};
670
671static struct spi_imx_devtype_data imx27_cspi_devtype_data = {
672 /* i.mx27 cspi shares the functions with i.mx21 one */
673 .intctrl = mx21_intctrl,
674 .config = mx21_config,
675 .trigger = mx21_trigger,
676 .rx_available = mx21_rx_available,
677 .reset = mx21_reset,
678 .devtype = IMX27_CSPI,
679};
680
681static struct spi_imx_devtype_data imx31_cspi_devtype_data = {
682 .intctrl = mx31_intctrl,
683 .config = mx31_config,
684 .trigger = mx31_trigger,
685 .rx_available = mx31_rx_available,
686 .reset = mx31_reset,
687 .devtype = IMX31_CSPI,
688};
689
690static struct spi_imx_devtype_data imx35_cspi_devtype_data = {
691 /* i.mx35 and later cspi shares the functions with i.mx31 one */
692 .intctrl = mx31_intctrl,
693 .config = mx31_config,
694 .trigger = mx31_trigger,
695 .rx_available = mx31_rx_available,
696 .reset = mx31_reset,
697 .devtype = IMX35_CSPI,
698};
699
700static struct spi_imx_devtype_data imx51_ecspi_devtype_data = {
701 .intctrl = mx51_ecspi_intctrl,
702 .config = mx51_ecspi_config,
703 .trigger = mx51_ecspi_trigger,
704 .rx_available = mx51_ecspi_rx_available,
705 .reset = mx51_ecspi_reset,
706 .devtype = IMX51_ECSPI,
707};
708
Krzysztof Kozlowskidb1b8202015-05-02 00:44:04 +0900709static const struct platform_device_id spi_imx_devtype[] = {
Shawn Guo04ee5852011-07-10 01:16:39 +0800710 {
711 .name = "imx1-cspi",
712 .driver_data = (kernel_ulong_t) &imx1_cspi_devtype_data,
713 }, {
714 .name = "imx21-cspi",
715 .driver_data = (kernel_ulong_t) &imx21_cspi_devtype_data,
716 }, {
717 .name = "imx27-cspi",
718 .driver_data = (kernel_ulong_t) &imx27_cspi_devtype_data,
719 }, {
720 .name = "imx31-cspi",
721 .driver_data = (kernel_ulong_t) &imx31_cspi_devtype_data,
722 }, {
723 .name = "imx35-cspi",
724 .driver_data = (kernel_ulong_t) &imx35_cspi_devtype_data,
725 }, {
726 .name = "imx51-ecspi",
727 .driver_data = (kernel_ulong_t) &imx51_ecspi_devtype_data,
728 }, {
729 /* sentinel */
730 }
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200731};
732
Shawn Guo22a85e42011-07-10 01:16:41 +0800733static const struct of_device_id spi_imx_dt_ids[] = {
734 { .compatible = "fsl,imx1-cspi", .data = &imx1_cspi_devtype_data, },
735 { .compatible = "fsl,imx21-cspi", .data = &imx21_cspi_devtype_data, },
736 { .compatible = "fsl,imx27-cspi", .data = &imx27_cspi_devtype_data, },
737 { .compatible = "fsl,imx31-cspi", .data = &imx31_cspi_devtype_data, },
738 { .compatible = "fsl,imx35-cspi", .data = &imx35_cspi_devtype_data, },
739 { .compatible = "fsl,imx51-ecspi", .data = &imx51_ecspi_devtype_data, },
740 { /* sentinel */ }
741};
Niels de Vos27743e02013-07-29 09:38:05 +0200742MODULE_DEVICE_TABLE(of, spi_imx_dt_ids);
Shawn Guo22a85e42011-07-10 01:16:41 +0800743
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700744static void spi_imx_chipselect(struct spi_device *spi, int is_active)
745{
746 struct spi_imx_data *spi_imx = spi_master_get_devdata(spi->master);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700747 int gpio = spi_imx->chipselect[spi->chip_select];
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700748 int active = is_active != BITBANG_CS_INACTIVE;
749 int dev_is_lowactive = !(spi->mode & SPI_CS_HIGH);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700750
Hui Wang8b17e052012-07-13 10:51:29 +0800751 if (!gpio_is_valid(gpio))
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700752 return;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700753
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700754 gpio_set_value(gpio, dev_is_lowactive ^ active);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700755}
756
757static void spi_imx_push(struct spi_imx_data *spi_imx)
758{
Shawn Guo04ee5852011-07-10 01:16:39 +0800759 while (spi_imx->txfifo < spi_imx_get_fifosize(spi_imx)) {
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700760 if (!spi_imx->count)
761 break;
762 spi_imx->tx(spi_imx);
763 spi_imx->txfifo++;
764 }
765
Shawn Guoedd501bb2011-07-10 01:16:35 +0800766 spi_imx->devtype_data->trigger(spi_imx);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700767}
768
769static irqreturn_t spi_imx_isr(int irq, void *dev_id)
770{
771 struct spi_imx_data *spi_imx = dev_id;
772
Shawn Guoedd501bb2011-07-10 01:16:35 +0800773 while (spi_imx->devtype_data->rx_available(spi_imx)) {
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700774 spi_imx->rx(spi_imx);
775 spi_imx->txfifo--;
776 }
777
778 if (spi_imx->count) {
779 spi_imx_push(spi_imx);
780 return IRQ_HANDLED;
781 }
782
783 if (spi_imx->txfifo) {
784 /* No data left to push, but still waiting for rx data,
785 * enable receive data available interrupt.
786 */
Shawn Guoedd501bb2011-07-10 01:16:35 +0800787 spi_imx->devtype_data->intctrl(
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200788 spi_imx, MXC_INT_RR);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700789 return IRQ_HANDLED;
790 }
791
Shawn Guoedd501bb2011-07-10 01:16:35 +0800792 spi_imx->devtype_data->intctrl(spi_imx, 0);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700793 complete(&spi_imx->xfer_done);
794
795 return IRQ_HANDLED;
796}
797
Anton Bondarenkof12ae172016-02-24 09:20:29 +0100798static int spi_imx_dma_configure(struct spi_master *master,
799 int bytes_per_word)
800{
801 int ret;
802 enum dma_slave_buswidth buswidth;
803 struct dma_slave_config rx = {}, tx = {};
804 struct spi_imx_data *spi_imx = spi_master_get_devdata(master);
805
806 if (bytes_per_word == spi_imx->bytes_per_word)
807 /* Same as last time */
808 return 0;
809
810 switch (bytes_per_word) {
811 case 4:
812 buswidth = DMA_SLAVE_BUSWIDTH_4_BYTES;
813 break;
814 case 2:
815 buswidth = DMA_SLAVE_BUSWIDTH_2_BYTES;
816 break;
817 case 1:
818 buswidth = DMA_SLAVE_BUSWIDTH_1_BYTE;
819 break;
820 default:
821 return -EINVAL;
822 }
823
824 tx.direction = DMA_MEM_TO_DEV;
825 tx.dst_addr = spi_imx->base_phys + MXC_CSPITXDATA;
826 tx.dst_addr_width = buswidth;
827 tx.dst_maxburst = spi_imx->wml;
828 ret = dmaengine_slave_config(master->dma_tx, &tx);
829 if (ret) {
830 dev_err(spi_imx->dev, "TX dma configuration failed with %d\n", ret);
831 return ret;
832 }
833
834 rx.direction = DMA_DEV_TO_MEM;
835 rx.src_addr = spi_imx->base_phys + MXC_CSPIRXDATA;
836 rx.src_addr_width = buswidth;
837 rx.src_maxburst = spi_imx->wml;
838 ret = dmaengine_slave_config(master->dma_rx, &rx);
839 if (ret) {
840 dev_err(spi_imx->dev, "RX dma configuration failed with %d\n", ret);
841 return ret;
842 }
843
844 spi_imx->bytes_per_word = bytes_per_word;
845
846 return 0;
847}
848
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700849static int spi_imx_setupxfer(struct spi_device *spi,
850 struct spi_transfer *t)
851{
852 struct spi_imx_data *spi_imx = spi_master_get_devdata(spi->master);
853 struct spi_imx_config config;
Anton Bondarenkof12ae172016-02-24 09:20:29 +0100854 int ret;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700855
856 config.bpw = t ? t->bits_per_word : spi->bits_per_word;
857 config.speed_hz = t ? t->speed_hz : spi->max_speed_hz;
858 config.mode = spi->mode;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200859 config.cs = spi->chip_select;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700860
Sascha Hauer462d26b2009-10-01 15:44:29 -0700861 if (!config.speed_hz)
862 config.speed_hz = spi->max_speed_hz;
863 if (!config.bpw)
864 config.bpw = spi->bits_per_word;
Sascha Hauer462d26b2009-10-01 15:44:29 -0700865
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700866 /* Initialize the functions for transfer */
867 if (config.bpw <= 8) {
868 spi_imx->rx = spi_imx_buf_rx_u8;
869 spi_imx->tx = spi_imx_buf_tx_u8;
870 } else if (config.bpw <= 16) {
871 spi_imx->rx = spi_imx_buf_rx_u16;
872 spi_imx->tx = spi_imx_buf_tx_u16;
Sachin Kamat60514262013-05-30 13:38:09 +0530873 } else {
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700874 spi_imx->rx = spi_imx_buf_rx_u32;
875 spi_imx->tx = spi_imx_buf_tx_u32;
Stephen Warren24778be2013-05-21 20:36:35 -0600876 }
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700877
Sascha Hauerc008a802016-02-24 09:20:26 +0100878 if (spi_imx_can_dma(spi_imx->bitbang.master, spi, t))
879 spi_imx->usedma = 1;
880 else
881 spi_imx->usedma = 0;
882
Anton Bondarenkof12ae172016-02-24 09:20:29 +0100883 if (spi_imx->usedma) {
884 ret = spi_imx_dma_configure(spi->master,
885 spi_imx_bytes_per_word(config.bpw));
886 if (ret)
887 return ret;
888 }
889
Shawn Guoedd501bb2011-07-10 01:16:35 +0800890 spi_imx->devtype_data->config(spi_imx, &config);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700891
892 return 0;
893}
894
Robin Gongf62cacc2014-09-11 09:18:44 +0800895static void spi_imx_sdma_exit(struct spi_imx_data *spi_imx)
896{
897 struct spi_master *master = spi_imx->bitbang.master;
898
899 if (master->dma_rx) {
900 dma_release_channel(master->dma_rx);
901 master->dma_rx = NULL;
902 }
903
904 if (master->dma_tx) {
905 dma_release_channel(master->dma_tx);
906 master->dma_tx = NULL;
907 }
Robin Gongf62cacc2014-09-11 09:18:44 +0800908}
909
910static int spi_imx_sdma_init(struct device *dev, struct spi_imx_data *spi_imx,
Anton Bondarenkof12ae172016-02-24 09:20:29 +0100911 struct spi_master *master)
Robin Gongf62cacc2014-09-11 09:18:44 +0800912{
Robin Gongf62cacc2014-09-11 09:18:44 +0800913 int ret;
914
Robin Gonga02bb402015-02-03 10:25:53 +0800915 /* use pio mode for i.mx6dl chip TKT238285 */
916 if (of_machine_is_compatible("fsl,imx6dl"))
917 return 0;
918
Anton Bondarenko0dfbaa82015-12-05 17:57:01 +0100919 spi_imx->wml = spi_imx_get_fifosize(spi_imx) / 2;
920
Robin Gongf62cacc2014-09-11 09:18:44 +0800921 /* Prepare for TX DMA: */
Anton Bondarenko37600472015-12-08 07:43:45 +0100922 master->dma_tx = dma_request_slave_channel_reason(dev, "tx");
923 if (IS_ERR(master->dma_tx)) {
924 ret = PTR_ERR(master->dma_tx);
925 dev_dbg(dev, "can't get the TX DMA channel, error %d!\n", ret);
926 master->dma_tx = NULL;
Robin Gongf62cacc2014-09-11 09:18:44 +0800927 goto err;
928 }
929
Robin Gongf62cacc2014-09-11 09:18:44 +0800930 /* Prepare for RX : */
Anton Bondarenko37600472015-12-08 07:43:45 +0100931 master->dma_rx = dma_request_slave_channel_reason(dev, "rx");
932 if (IS_ERR(master->dma_rx)) {
933 ret = PTR_ERR(master->dma_rx);
934 dev_dbg(dev, "can't get the RX DMA channel, error %d\n", ret);
935 master->dma_rx = NULL;
Robin Gongf62cacc2014-09-11 09:18:44 +0800936 goto err;
937 }
938
Anton Bondarenkof12ae172016-02-24 09:20:29 +0100939 spi_imx_dma_configure(master, 1);
Robin Gongf62cacc2014-09-11 09:18:44 +0800940
941 init_completion(&spi_imx->dma_rx_completion);
942 init_completion(&spi_imx->dma_tx_completion);
943 master->can_dma = spi_imx_can_dma;
944 master->max_dma_len = MAX_SDMA_BD_BYTES;
945 spi_imx->bitbang.master->flags = SPI_MASTER_MUST_RX |
946 SPI_MASTER_MUST_TX;
Robin Gongf62cacc2014-09-11 09:18:44 +0800947
948 return 0;
949err:
950 spi_imx_sdma_exit(spi_imx);
951 return ret;
952}
953
954static void spi_imx_dma_rx_callback(void *cookie)
955{
956 struct spi_imx_data *spi_imx = (struct spi_imx_data *)cookie;
957
958 complete(&spi_imx->dma_rx_completion);
959}
960
961static void spi_imx_dma_tx_callback(void *cookie)
962{
963 struct spi_imx_data *spi_imx = (struct spi_imx_data *)cookie;
964
965 complete(&spi_imx->dma_tx_completion);
966}
967
Anton Bondarenko4bfe9272016-02-19 08:43:03 +0100968static int spi_imx_calculate_timeout(struct spi_imx_data *spi_imx, int size)
969{
970 unsigned long timeout = 0;
971
972 /* Time with actual data transfer and CS change delay related to HW */
973 timeout = (8 + 4) * size / spi_imx->spi_bus_clk;
974
975 /* Add extra second for scheduler related activities */
976 timeout += 1;
977
978 /* Double calculated timeout */
979 return msecs_to_jiffies(2 * timeout * MSEC_PER_SEC);
980}
981
Robin Gongf62cacc2014-09-11 09:18:44 +0800982static int spi_imx_dma_transfer(struct spi_imx_data *spi_imx,
983 struct spi_transfer *transfer)
984{
Sascha Hauer6b6192c2016-02-24 09:20:33 +0100985 struct dma_async_tx_descriptor *desc_tx, *desc_rx;
Anton Bondarenko4bfe9272016-02-19 08:43:03 +0100986 unsigned long transfer_timeout;
Nicholas Mc Guire56536a72015-02-02 03:30:35 -0500987 unsigned long timeout;
Robin Gongf62cacc2014-09-11 09:18:44 +0800988 struct spi_master *master = spi_imx->bitbang.master;
989 struct sg_table *tx = &transfer->tx_sg, *rx = &transfer->rx_sg;
990
Anton Bondarenkofab44ef2015-12-05 17:57:00 +0100991 /*
Sascha Hauer6b6192c2016-02-24 09:20:33 +0100992 * The TX DMA setup starts the transfer, so make sure RX is configured
993 * before TX.
Anton Bondarenkofab44ef2015-12-05 17:57:00 +0100994 */
Sascha Hauer6b6192c2016-02-24 09:20:33 +0100995 desc_rx = dmaengine_prep_slave_sg(master->dma_rx,
996 rx->sgl, rx->nents, DMA_DEV_TO_MEM,
997 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
998 if (!desc_rx)
999 return -EINVAL;
1000
1001 desc_rx->callback = spi_imx_dma_rx_callback;
1002 desc_rx->callback_param = (void *)spi_imx;
1003 dmaengine_submit(desc_rx);
1004 reinit_completion(&spi_imx->dma_rx_completion);
Anton Bondarenkofab44ef2015-12-05 17:57:00 +01001005 dma_async_issue_pending(master->dma_rx);
Sascha Hauer6b6192c2016-02-24 09:20:33 +01001006
1007 desc_tx = dmaengine_prep_slave_sg(master->dma_tx,
1008 tx->sgl, tx->nents, DMA_MEM_TO_DEV,
1009 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1010 if (!desc_tx) {
1011 dmaengine_terminate_all(master->dma_tx);
1012 return -EINVAL;
1013 }
1014
1015 desc_tx->callback = spi_imx_dma_tx_callback;
1016 desc_tx->callback_param = (void *)spi_imx;
1017 dmaengine_submit(desc_tx);
1018 reinit_completion(&spi_imx->dma_tx_completion);
Anton Bondarenkofab44ef2015-12-05 17:57:00 +01001019 dma_async_issue_pending(master->dma_tx);
Robin Gongf62cacc2014-09-11 09:18:44 +08001020
Anton Bondarenko4bfe9272016-02-19 08:43:03 +01001021 transfer_timeout = spi_imx_calculate_timeout(spi_imx, transfer->len);
1022
Robin Gongf62cacc2014-09-11 09:18:44 +08001023 /* Wait SDMA to finish the data transfer.*/
Nicholas Mc Guire56536a72015-02-02 03:30:35 -05001024 timeout = wait_for_completion_timeout(&spi_imx->dma_tx_completion,
Anton Bondarenko4bfe9272016-02-19 08:43:03 +01001025 transfer_timeout);
Nicholas Mc Guire56536a72015-02-02 03:30:35 -05001026 if (!timeout) {
Sascha Hauer6aa800c2016-02-17 14:28:48 +01001027 dev_err(spi_imx->dev, "I/O Error in DMA TX\n");
Robin Gongf62cacc2014-09-11 09:18:44 +08001028 dmaengine_terminate_all(master->dma_tx);
Anton Bondarenkoe47b33c2015-12-05 17:56:59 +01001029 dmaengine_terminate_all(master->dma_rx);
Sascha Hauer6b6192c2016-02-24 09:20:33 +01001030 return -ETIMEDOUT;
Robin Gongf62cacc2014-09-11 09:18:44 +08001031 }
1032
Sascha Hauer6b6192c2016-02-24 09:20:33 +01001033 timeout = wait_for_completion_timeout(&spi_imx->dma_rx_completion,
1034 transfer_timeout);
1035 if (!timeout) {
1036 dev_err(&master->dev, "I/O Error in DMA RX\n");
1037 spi_imx->devtype_data->reset(spi_imx);
1038 dmaengine_terminate_all(master->dma_rx);
1039 return -ETIMEDOUT;
1040 }
Robin Gongf62cacc2014-09-11 09:18:44 +08001041
Sascha Hauer6b6192c2016-02-24 09:20:33 +01001042 return transfer->len;
Robin Gongf62cacc2014-09-11 09:18:44 +08001043}
1044
1045static int spi_imx_pio_transfer(struct spi_device *spi,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001046 struct spi_transfer *transfer)
1047{
1048 struct spi_imx_data *spi_imx = spi_master_get_devdata(spi->master);
1049
1050 spi_imx->tx_buf = transfer->tx_buf;
1051 spi_imx->rx_buf = transfer->rx_buf;
1052 spi_imx->count = transfer->len;
1053 spi_imx->txfifo = 0;
1054
Axel Linaa0fe822014-02-09 11:06:04 +08001055 reinit_completion(&spi_imx->xfer_done);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001056
1057 spi_imx_push(spi_imx);
1058
Shawn Guoedd501bb2011-07-10 01:16:35 +08001059 spi_imx->devtype_data->intctrl(spi_imx, MXC_INT_TE);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001060
1061 wait_for_completion(&spi_imx->xfer_done);
1062
1063 return transfer->len;
1064}
1065
Robin Gongf62cacc2014-09-11 09:18:44 +08001066static int spi_imx_transfer(struct spi_device *spi,
1067 struct spi_transfer *transfer)
1068{
Robin Gongf62cacc2014-09-11 09:18:44 +08001069 struct spi_imx_data *spi_imx = spi_master_get_devdata(spi->master);
1070
Sascha Hauerc008a802016-02-24 09:20:26 +01001071 if (spi_imx->usedma)
Sascha Hauer99f1cf12016-02-23 10:23:50 +01001072 return spi_imx_dma_transfer(spi_imx, transfer);
Sascha Hauerc008a802016-02-24 09:20:26 +01001073 else
1074 return spi_imx_pio_transfer(spi, transfer);
Robin Gongf62cacc2014-09-11 09:18:44 +08001075}
1076
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001077static int spi_imx_setup(struct spi_device *spi)
1078{
Sascha Hauer6c23e5d2009-10-01 15:44:29 -07001079 struct spi_imx_data *spi_imx = spi_master_get_devdata(spi->master);
1080 int gpio = spi_imx->chipselect[spi->chip_select];
1081
Alberto Panizzof4d4ecf2010-01-20 13:49:45 -07001082 dev_dbg(&spi->dev, "%s: mode %d, %u bpw, %d hz\n", __func__,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001083 spi->mode, spi->bits_per_word, spi->max_speed_hz);
1084
Hui Wang8b17e052012-07-13 10:51:29 +08001085 if (gpio_is_valid(gpio))
Sascha Hauer6c23e5d2009-10-01 15:44:29 -07001086 gpio_direction_output(gpio, spi->mode & SPI_CS_HIGH ? 0 : 1);
1087
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001088 spi_imx_chipselect(spi, BITBANG_CS_INACTIVE);
1089
1090 return 0;
1091}
1092
1093static void spi_imx_cleanup(struct spi_device *spi)
1094{
1095}
1096
Huang Shijie9e556dc2013-10-23 16:31:50 +08001097static int
1098spi_imx_prepare_message(struct spi_master *master, struct spi_message *msg)
1099{
1100 struct spi_imx_data *spi_imx = spi_master_get_devdata(master);
1101 int ret;
1102
1103 ret = clk_enable(spi_imx->clk_per);
1104 if (ret)
1105 return ret;
1106
1107 ret = clk_enable(spi_imx->clk_ipg);
1108 if (ret) {
1109 clk_disable(spi_imx->clk_per);
1110 return ret;
1111 }
1112
1113 return 0;
1114}
1115
1116static int
1117spi_imx_unprepare_message(struct spi_master *master, struct spi_message *msg)
1118{
1119 struct spi_imx_data *spi_imx = spi_master_get_devdata(master);
1120
1121 clk_disable(spi_imx->clk_ipg);
1122 clk_disable(spi_imx->clk_per);
1123 return 0;
1124}
1125
Grant Likelyfd4a3192012-12-07 16:57:14 +00001126static int spi_imx_probe(struct platform_device *pdev)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001127{
Shawn Guo22a85e42011-07-10 01:16:41 +08001128 struct device_node *np = pdev->dev.of_node;
1129 const struct of_device_id *of_id =
1130 of_match_device(spi_imx_dt_ids, &pdev->dev);
1131 struct spi_imx_master *mxc_platform_info =
1132 dev_get_platdata(&pdev->dev);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001133 struct spi_master *master;
1134 struct spi_imx_data *spi_imx;
1135 struct resource *res;
Fabio Estevam4b5d6aa2014-12-29 19:38:51 -02001136 int i, ret, num_cs, irq;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001137
Shawn Guo22a85e42011-07-10 01:16:41 +08001138 if (!np && !mxc_platform_info) {
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001139 dev_err(&pdev->dev, "can't get the platform data\n");
1140 return -EINVAL;
1141 }
1142
Shawn Guo22a85e42011-07-10 01:16:41 +08001143 ret = of_property_read_u32(np, "fsl,spi-num-chipselects", &num_cs);
Lothar Waßmann39ec0d32012-04-03 15:03:44 +02001144 if (ret < 0) {
1145 if (mxc_platform_info)
1146 num_cs = mxc_platform_info->num_chipselect;
1147 else
1148 return ret;
1149 }
Shawn Guo22a85e42011-07-10 01:16:41 +08001150
Shawn Guoc2387cb2011-07-10 01:16:40 +08001151 master = spi_alloc_master(&pdev->dev,
1152 sizeof(struct spi_imx_data) + sizeof(int) * num_cs);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001153 if (!master)
1154 return -ENOMEM;
1155
1156 platform_set_drvdata(pdev, master);
1157
Stephen Warren24778be2013-05-21 20:36:35 -06001158 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 32);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001159 master->bus_num = pdev->id;
Shawn Guoc2387cb2011-07-10 01:16:40 +08001160 master->num_chipselect = num_cs;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001161
1162 spi_imx = spi_master_get_devdata(master);
Axel Lin94c69f72013-09-10 15:43:41 +08001163 spi_imx->bitbang.master = master;
Sascha Hauer6aa800c2016-02-17 14:28:48 +01001164 spi_imx->dev = &pdev->dev;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001165
Anton Bondarenko4686d1c2015-12-08 07:43:44 +01001166 spi_imx->devtype_data = of_id ? of_id->data :
1167 (struct spi_imx_devtype_data *)pdev->id_entry->driver_data;
1168
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001169 for (i = 0; i < master->num_chipselect; i++) {
Shawn Guo22a85e42011-07-10 01:16:41 +08001170 int cs_gpio = of_get_named_gpio(np, "cs-gpios", i);
Hui Wang8b17e052012-07-13 10:51:29 +08001171 if (!gpio_is_valid(cs_gpio) && mxc_platform_info)
Shawn Guo22a85e42011-07-10 01:16:41 +08001172 cs_gpio = mxc_platform_info->chipselect[i];
Fabio Estevam4cc122a2011-09-15 17:21:15 -03001173
1174 spi_imx->chipselect[i] = cs_gpio;
Hui Wang8b17e052012-07-13 10:51:29 +08001175 if (!gpio_is_valid(cs_gpio))
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001176 continue;
Fabio Estevam4cc122a2011-09-15 17:21:15 -03001177
Fabio Estevam130b82c2013-07-11 01:26:48 -03001178 ret = devm_gpio_request(&pdev->dev, spi_imx->chipselect[i],
1179 DRIVER_NAME);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001180 if (ret) {
John Ognessbbd050a2009-11-24 16:53:07 +00001181 dev_err(&pdev->dev, "can't get cs gpios\n");
Fabio Estevam130b82c2013-07-11 01:26:48 -03001182 goto out_master_put;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001183 }
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001184 }
1185
1186 spi_imx->bitbang.chipselect = spi_imx_chipselect;
1187 spi_imx->bitbang.setup_transfer = spi_imx_setupxfer;
1188 spi_imx->bitbang.txrx_bufs = spi_imx_transfer;
1189 spi_imx->bitbang.master->setup = spi_imx_setup;
1190 spi_imx->bitbang.master->cleanup = spi_imx_cleanup;
Huang Shijie9e556dc2013-10-23 16:31:50 +08001191 spi_imx->bitbang.master->prepare_message = spi_imx_prepare_message;
1192 spi_imx->bitbang.master->unprepare_message = spi_imx_unprepare_message;
Anton Bondarenko4686d1c2015-12-08 07:43:44 +01001193 spi_imx->bitbang.master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH;
1194 if (is_imx51_ecspi(spi_imx))
1195 spi_imx->bitbang.master->mode_bits |= SPI_LOOP;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001196
1197 init_completion(&spi_imx->xfer_done);
1198
1199 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Fabio Estevam130b82c2013-07-11 01:26:48 -03001200 spi_imx->base = devm_ioremap_resource(&pdev->dev, res);
1201 if (IS_ERR(spi_imx->base)) {
1202 ret = PTR_ERR(spi_imx->base);
1203 goto out_master_put;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001204 }
Anton Bondarenkof12ae172016-02-24 09:20:29 +01001205 spi_imx->base_phys = res->start;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001206
Fabio Estevam4b5d6aa2014-12-29 19:38:51 -02001207 irq = platform_get_irq(pdev, 0);
1208 if (irq < 0) {
1209 ret = irq;
Fabio Estevam130b82c2013-07-11 01:26:48 -03001210 goto out_master_put;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001211 }
1212
Fabio Estevam4b5d6aa2014-12-29 19:38:51 -02001213 ret = devm_request_irq(&pdev->dev, irq, spi_imx_isr, 0,
Alexander Shiyan8fc39b52014-02-22 17:23:46 +04001214 dev_name(&pdev->dev), spi_imx);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001215 if (ret) {
Fabio Estevam4b5d6aa2014-12-29 19:38:51 -02001216 dev_err(&pdev->dev, "can't get irq%d: %d\n", irq, ret);
Fabio Estevam130b82c2013-07-11 01:26:48 -03001217 goto out_master_put;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001218 }
1219
Sascha Haueraa29d8402012-03-07 09:30:22 +01001220 spi_imx->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
1221 if (IS_ERR(spi_imx->clk_ipg)) {
1222 ret = PTR_ERR(spi_imx->clk_ipg);
Fabio Estevam130b82c2013-07-11 01:26:48 -03001223 goto out_master_put;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001224 }
1225
Sascha Haueraa29d8402012-03-07 09:30:22 +01001226 spi_imx->clk_per = devm_clk_get(&pdev->dev, "per");
1227 if (IS_ERR(spi_imx->clk_per)) {
1228 ret = PTR_ERR(spi_imx->clk_per);
Fabio Estevam130b82c2013-07-11 01:26:48 -03001229 goto out_master_put;
Sascha Haueraa29d8402012-03-07 09:30:22 +01001230 }
1231
Fabio Estevam83174622013-07-11 01:26:49 -03001232 ret = clk_prepare_enable(spi_imx->clk_per);
1233 if (ret)
1234 goto out_master_put;
1235
1236 ret = clk_prepare_enable(spi_imx->clk_ipg);
1237 if (ret)
1238 goto out_put_per;
Sascha Haueraa29d8402012-03-07 09:30:22 +01001239
1240 spi_imx->spi_clk = clk_get_rate(spi_imx->clk_per);
Robin Gongf62cacc2014-09-11 09:18:44 +08001241 /*
1242 * Only validated on i.mx6 now, can remove the constrain if validated on
1243 * other chips.
1244 */
Anton Bondarenko37600472015-12-08 07:43:45 +01001245 if (is_imx51_ecspi(spi_imx)) {
Anton Bondarenkof12ae172016-02-24 09:20:29 +01001246 ret = spi_imx_sdma_init(&pdev->dev, spi_imx, master);
Anton Bondarenkobf9af082015-12-08 07:43:46 +01001247 if (ret == -EPROBE_DEFER)
1248 goto out_clk_put;
1249
Anton Bondarenko37600472015-12-08 07:43:45 +01001250 if (ret < 0)
1251 dev_err(&pdev->dev, "dma setup error %d, use pio\n",
1252 ret);
1253 }
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001254
Shawn Guoedd501bb2011-07-10 01:16:35 +08001255 spi_imx->devtype_data->reset(spi_imx);
Daniel Mackce1807b2009-11-19 19:01:42 +00001256
Shawn Guoedd501bb2011-07-10 01:16:35 +08001257 spi_imx->devtype_data->intctrl(spi_imx, 0);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001258
Shawn Guo22a85e42011-07-10 01:16:41 +08001259 master->dev.of_node = pdev->dev.of_node;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001260 ret = spi_bitbang_start(&spi_imx->bitbang);
1261 if (ret) {
1262 dev_err(&pdev->dev, "bitbang start failed with %d\n", ret);
1263 goto out_clk_put;
1264 }
1265
1266 dev_info(&pdev->dev, "probed\n");
1267
Huang Shijie9e556dc2013-10-23 16:31:50 +08001268 clk_disable(spi_imx->clk_ipg);
1269 clk_disable(spi_imx->clk_per);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001270 return ret;
1271
1272out_clk_put:
Sascha Haueraa29d8402012-03-07 09:30:22 +01001273 clk_disable_unprepare(spi_imx->clk_ipg);
Fabio Estevam83174622013-07-11 01:26:49 -03001274out_put_per:
1275 clk_disable_unprepare(spi_imx->clk_per);
Fabio Estevam130b82c2013-07-11 01:26:48 -03001276out_master_put:
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001277 spi_master_put(master);
Fabio Estevam130b82c2013-07-11 01:26:48 -03001278
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001279 return ret;
1280}
1281
Grant Likelyfd4a3192012-12-07 16:57:14 +00001282static int spi_imx_remove(struct platform_device *pdev)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001283{
1284 struct spi_master *master = platform_get_drvdata(pdev);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001285 struct spi_imx_data *spi_imx = spi_master_get_devdata(master);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001286
1287 spi_bitbang_stop(&spi_imx->bitbang);
1288
1289 writel(0, spi_imx->base + MXC_CSPICTRL);
Philippe De Muyterfd40dcc2014-02-27 10:16:15 +01001290 clk_unprepare(spi_imx->clk_ipg);
1291 clk_unprepare(spi_imx->clk_per);
Robin Gongf62cacc2014-09-11 09:18:44 +08001292 spi_imx_sdma_exit(spi_imx);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001293 spi_master_put(master);
1294
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001295 return 0;
1296}
1297
1298static struct platform_driver spi_imx_driver = {
1299 .driver = {
1300 .name = DRIVER_NAME,
Shawn Guo22a85e42011-07-10 01:16:41 +08001301 .of_match_table = spi_imx_dt_ids,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001302 },
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +02001303 .id_table = spi_imx_devtype,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001304 .probe = spi_imx_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +00001305 .remove = spi_imx_remove,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001306};
Grant Likely940ab882011-10-05 11:29:49 -06001307module_platform_driver(spi_imx_driver);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001308
1309MODULE_DESCRIPTION("SPI Master Controller driver");
1310MODULE_AUTHOR("Sascha Hauer, Pengutronix");
1311MODULE_LICENSE("GPL");
Fabio Estevam3133fba32013-01-07 20:42:55 -02001312MODULE_ALIAS("platform:" DRIVER_NAME);