blob: 91890b2d0978a11b130224c80ebc0edf2743018f [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 Haueraa29d842012-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 Bondarenkof8a87612015-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 Bondarenkof8a87612015-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{
Sascha Hauer2b0fd062016-02-24 09:20:27 +0100336 u32 ctrl = MX51_ECSPI_CTRL_ENABLE, cfg = 0;
Fabio Estevam9f6aa422015-12-03 23:23:24 -0200337 u32 clk = config->speed_hz, delay, reg;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200338
Sascha Hauerf020c392011-02-08 21:08:59 +0100339 /*
340 * The hardware seems to have a race condition when changing modes. The
341 * current assumption is that the selection of the channel arrives
342 * earlier in the hardware than the mode bits when they are written at
343 * the same time.
344 * So set master mode for all channels as we do not support slave mode.
345 */
Shawn Guo66de7572011-07-10 01:16:37 +0800346 ctrl |= MX51_ECSPI_CTRL_MODE_MASK;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200347
348 /* set clock speed */
Sascha Hauer6aa800c2016-02-17 14:28:48 +0100349 ctrl |= mx51_ecspi_clkdiv(spi_imx, config->speed_hz, &clk);
Anton Bondarenko4bfe9272016-02-19 08:43:03 +0100350 spi_imx->spi_bus_clk = clk;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200351
352 /* set chip select to use */
Shawn Guo66de7572011-07-10 01:16:37 +0800353 ctrl |= MX51_ECSPI_CTRL_CS(config->cs);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200354
Shawn Guo66de7572011-07-10 01:16:37 +0800355 ctrl |= (config->bpw - 1) << MX51_ECSPI_CTRL_BL_OFFSET;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200356
Shawn Guo66de7572011-07-10 01:16:37 +0800357 cfg |= MX51_ECSPI_CONFIG_SBBCTRL(config->cs);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200358
359 if (config->mode & SPI_CPHA)
Shawn Guo66de7572011-07-10 01:16:37 +0800360 cfg |= MX51_ECSPI_CONFIG_SCLKPHA(config->cs);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200361
Knut Wohlrabc09b8902012-09-25 13:21:57 +0200362 if (config->mode & SPI_CPOL) {
Shawn Guo66de7572011-07-10 01:16:37 +0800363 cfg |= MX51_ECSPI_CONFIG_SCLKPOL(config->cs);
Knut Wohlrabc09b8902012-09-25 13:21:57 +0200364 cfg |= MX51_ECSPI_CONFIG_SCLKCTL(config->cs);
365 }
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200366 if (config->mode & SPI_CS_HIGH)
Shawn Guo66de7572011-07-10 01:16:37 +0800367 cfg |= MX51_ECSPI_CONFIG_SSBPOL(config->cs);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200368
Sascha Hauerb03c3882016-02-24 09:20:32 +0100369 if (spi_imx->usedma)
370 ctrl |= MX51_ECSPI_CTRL_SMC;
371
Anton Bondarenkof677f172015-12-08 07:43:43 +0100372 /* CTRL register always go first to bring out controller from reset */
373 writel(ctrl, spi_imx->base + MX51_ECSPI_CTRL);
374
Fabio Estevam9f6aa422015-12-03 23:23:24 -0200375 reg = readl(spi_imx->base + MX51_ECSPI_TESTREG);
376 if (config->mode & SPI_LOOP)
377 reg |= MX51_ECSPI_TESTREG_LBC;
378 else
379 reg &= ~MX51_ECSPI_TESTREG_LBC;
380 writel(reg, spi_imx->base + MX51_ECSPI_TESTREG);
381
Shawn Guo66de7572011-07-10 01:16:37 +0800382 writel(cfg, spi_imx->base + MX51_ECSPI_CONFIG);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200383
Marek Vasut6fd8b852013-12-18 18:31:47 +0100384 /*
385 * Wait until the changes in the configuration register CONFIGREG
386 * propagate into the hardware. It takes exactly one tick of the
387 * SCLK clock, but we will wait two SCLK clock just to be sure. The
388 * effect of the delay it takes for the hardware to apply changes
389 * is noticable if the SCLK clock run very slow. In such a case, if
390 * the polarity of SCLK should be inverted, the GPIO ChipSelect might
391 * be asserted before the SCLK polarity changes, which would disrupt
392 * the SPI communication as the device on the other end would consider
393 * the change of SCLK polarity as a clock tick already.
394 */
395 delay = (2 * 1000000) / clk;
396 if (likely(delay < 10)) /* SCLK is faster than 100 kHz */
397 udelay(delay);
398 else /* SCLK is _very_ slow */
399 usleep_range(delay, delay + 10);
400
Robin Gongf62cacc2014-09-11 09:18:44 +0800401 /*
402 * Configure the DMA register: setup the watermark
403 * and enable DMA request.
404 */
Robin Gongf62cacc2014-09-11 09:18:44 +0800405
Sascha Hauerd629c2a2016-02-24 09:20:31 +0100406 writel(MX51_ECSPI_DMA_RX_WML(spi_imx->wml) |
407 MX51_ECSPI_DMA_TX_WML(spi_imx->wml) |
408 MX51_ECSPI_DMA_RXT_WML(spi_imx->wml) |
Sascha Hauer2b0fd062016-02-24 09:20:27 +0100409 MX51_ECSPI_DMA_TEDEN | MX51_ECSPI_DMA_RXDEN |
410 MX51_ECSPI_DMA_RXTDEN, spi_imx->base + MX51_ECSPI_DMA);
Robin Gongf62cacc2014-09-11 09:18:44 +0800411
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200412 return 0;
413}
414
Shawn Guo66de7572011-07-10 01:16:37 +0800415static int __maybe_unused mx51_ecspi_rx_available(struct spi_imx_data *spi_imx)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200416{
Shawn Guo66de7572011-07-10 01:16:37 +0800417 return readl(spi_imx->base + MX51_ECSPI_STAT) & MX51_ECSPI_STAT_RR;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200418}
419
Shawn Guo66de7572011-07-10 01:16:37 +0800420static void __maybe_unused mx51_ecspi_reset(struct spi_imx_data *spi_imx)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200421{
422 /* drain receive buffer */
Shawn Guo66de7572011-07-10 01:16:37 +0800423 while (mx51_ecspi_rx_available(spi_imx))
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200424 readl(spi_imx->base + MXC_CSPIRXDATA);
425}
426
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700427#define MX31_INTREG_TEEN (1 << 0)
428#define MX31_INTREG_RREN (1 << 3)
429
430#define MX31_CSPICTRL_ENABLE (1 << 0)
431#define MX31_CSPICTRL_MASTER (1 << 1)
432#define MX31_CSPICTRL_XCH (1 << 2)
433#define MX31_CSPICTRL_POL (1 << 4)
434#define MX31_CSPICTRL_PHA (1 << 5)
435#define MX31_CSPICTRL_SSCTL (1 << 6)
436#define MX31_CSPICTRL_SSPOL (1 << 7)
437#define MX31_CSPICTRL_BC_SHIFT 8
438#define MX35_CSPICTRL_BL_SHIFT 20
439#define MX31_CSPICTRL_CS_SHIFT 24
440#define MX35_CSPICTRL_CS_SHIFT 12
441#define MX31_CSPICTRL_DR_SHIFT 16
442
443#define MX31_CSPISTATUS 0x14
444#define MX31_STATUS_RR (1 << 3)
445
446/* These functions also work for the i.MX35, but be aware that
447 * the i.MX35 has a slightly different register layout for bits
448 * we do not use here.
449 */
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200450static void __maybe_unused mx31_intctrl(struct spi_imx_data *spi_imx, int enable)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700451{
452 unsigned int val = 0;
453
454 if (enable & MXC_INT_TE)
455 val |= MX31_INTREG_TEEN;
456 if (enable & MXC_INT_RR)
457 val |= MX31_INTREG_RREN;
458
459 writel(val, spi_imx->base + MXC_CSPIINT);
460}
461
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200462static void __maybe_unused mx31_trigger(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700463{
464 unsigned int reg;
465
466 reg = readl(spi_imx->base + MXC_CSPICTRL);
467 reg |= MX31_CSPICTRL_XCH;
468 writel(reg, spi_imx->base + MXC_CSPICTRL);
469}
470
Shawn Guo2a64a902011-07-10 01:16:38 +0800471static int __maybe_unused mx31_config(struct spi_imx_data *spi_imx,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700472 struct spi_imx_config *config)
473{
474 unsigned int reg = MX31_CSPICTRL_ENABLE | MX31_CSPICTRL_MASTER;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200475 int cs = spi_imx->chipselect[config->cs];
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700476
477 reg |= spi_imx_clkdiv_2(spi_imx->spi_clk, config->speed_hz) <<
478 MX31_CSPICTRL_DR_SHIFT;
479
Shawn Guo04ee5852011-07-10 01:16:39 +0800480 if (is_imx35_cspi(spi_imx)) {
Shawn Guo2a64a902011-07-10 01:16:38 +0800481 reg |= (config->bpw - 1) << MX35_CSPICTRL_BL_SHIFT;
482 reg |= MX31_CSPICTRL_SSCTL;
483 } else {
484 reg |= (config->bpw - 1) << MX31_CSPICTRL_BC_SHIFT;
485 }
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700486
487 if (config->mode & SPI_CPHA)
488 reg |= MX31_CSPICTRL_PHA;
489 if (config->mode & SPI_CPOL)
490 reg |= MX31_CSPICTRL_POL;
491 if (config->mode & SPI_CS_HIGH)
492 reg |= MX31_CSPICTRL_SSPOL;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200493 if (cs < 0)
Shawn Guo2a64a902011-07-10 01:16:38 +0800494 reg |= (cs + 32) <<
Shawn Guo04ee5852011-07-10 01:16:39 +0800495 (is_imx35_cspi(spi_imx) ? MX35_CSPICTRL_CS_SHIFT :
496 MX31_CSPICTRL_CS_SHIFT);
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200497
498 writel(reg, spi_imx->base + MXC_CSPICTRL);
499
500 return 0;
501}
502
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200503static int __maybe_unused mx31_rx_available(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700504{
505 return readl(spi_imx->base + MX31_CSPISTATUS) & MX31_STATUS_RR;
506}
507
Shawn Guo2a64a902011-07-10 01:16:38 +0800508static void __maybe_unused mx31_reset(struct spi_imx_data *spi_imx)
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200509{
510 /* drain receive buffer */
Shawn Guo2a64a902011-07-10 01:16:38 +0800511 while (readl(spi_imx->base + MX31_CSPISTATUS) & MX31_STATUS_RR)
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200512 readl(spi_imx->base + MXC_CSPIRXDATA);
513}
514
Shawn Guo3451fb12011-07-10 01:16:36 +0800515#define MX21_INTREG_RR (1 << 4)
516#define MX21_INTREG_TEEN (1 << 9)
517#define MX21_INTREG_RREN (1 << 13)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700518
Shawn Guo3451fb12011-07-10 01:16:36 +0800519#define MX21_CSPICTRL_POL (1 << 5)
520#define MX21_CSPICTRL_PHA (1 << 6)
521#define MX21_CSPICTRL_SSPOL (1 << 8)
522#define MX21_CSPICTRL_XCH (1 << 9)
523#define MX21_CSPICTRL_ENABLE (1 << 10)
524#define MX21_CSPICTRL_MASTER (1 << 11)
525#define MX21_CSPICTRL_DR_SHIFT 14
526#define MX21_CSPICTRL_CS_SHIFT 19
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700527
Shawn Guo3451fb12011-07-10 01:16:36 +0800528static void __maybe_unused mx21_intctrl(struct spi_imx_data *spi_imx, int enable)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700529{
530 unsigned int val = 0;
531
532 if (enable & MXC_INT_TE)
Shawn Guo3451fb12011-07-10 01:16:36 +0800533 val |= MX21_INTREG_TEEN;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700534 if (enable & MXC_INT_RR)
Shawn Guo3451fb12011-07-10 01:16:36 +0800535 val |= MX21_INTREG_RREN;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700536
537 writel(val, spi_imx->base + MXC_CSPIINT);
538}
539
Shawn Guo3451fb12011-07-10 01:16:36 +0800540static void __maybe_unused mx21_trigger(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700541{
542 unsigned int reg;
543
544 reg = readl(spi_imx->base + MXC_CSPICTRL);
Shawn Guo3451fb12011-07-10 01:16:36 +0800545 reg |= MX21_CSPICTRL_XCH;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700546 writel(reg, spi_imx->base + MXC_CSPICTRL);
547}
548
Shawn Guo3451fb12011-07-10 01:16:36 +0800549static int __maybe_unused mx21_config(struct spi_imx_data *spi_imx,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700550 struct spi_imx_config *config)
551{
Shawn Guo3451fb12011-07-10 01:16:36 +0800552 unsigned int reg = MX21_CSPICTRL_ENABLE | MX21_CSPICTRL_MASTER;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200553 int cs = spi_imx->chipselect[config->cs];
Shawn Guo04ee5852011-07-10 01:16:39 +0800554 unsigned int max = is_imx27_cspi(spi_imx) ? 16 : 18;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700555
Shawn Guo04ee5852011-07-10 01:16:39 +0800556 reg |= spi_imx_clkdiv_1(spi_imx->spi_clk, config->speed_hz, max) <<
Shawn Guo3451fb12011-07-10 01:16:36 +0800557 MX21_CSPICTRL_DR_SHIFT;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700558 reg |= config->bpw - 1;
559
560 if (config->mode & SPI_CPHA)
Shawn Guo3451fb12011-07-10 01:16:36 +0800561 reg |= MX21_CSPICTRL_PHA;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700562 if (config->mode & SPI_CPOL)
Shawn Guo3451fb12011-07-10 01:16:36 +0800563 reg |= MX21_CSPICTRL_POL;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700564 if (config->mode & SPI_CS_HIGH)
Shawn Guo3451fb12011-07-10 01:16:36 +0800565 reg |= MX21_CSPICTRL_SSPOL;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200566 if (cs < 0)
Shawn Guo3451fb12011-07-10 01:16:36 +0800567 reg |= (cs + 32) << MX21_CSPICTRL_CS_SHIFT;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700568
569 writel(reg, spi_imx->base + MXC_CSPICTRL);
570
571 return 0;
572}
573
Shawn Guo3451fb12011-07-10 01:16:36 +0800574static int __maybe_unused mx21_rx_available(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700575{
Shawn Guo3451fb12011-07-10 01:16:36 +0800576 return readl(spi_imx->base + MXC_CSPIINT) & MX21_INTREG_RR;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700577}
578
Shawn Guo3451fb12011-07-10 01:16:36 +0800579static void __maybe_unused mx21_reset(struct spi_imx_data *spi_imx)
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200580{
581 writel(1, spi_imx->base + MXC_RESET);
582}
583
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700584#define MX1_INTREG_RR (1 << 3)
585#define MX1_INTREG_TEEN (1 << 8)
586#define MX1_INTREG_RREN (1 << 11)
587
588#define MX1_CSPICTRL_POL (1 << 4)
589#define MX1_CSPICTRL_PHA (1 << 5)
590#define MX1_CSPICTRL_XCH (1 << 8)
591#define MX1_CSPICTRL_ENABLE (1 << 9)
592#define MX1_CSPICTRL_MASTER (1 << 10)
593#define MX1_CSPICTRL_DR_SHIFT 13
594
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200595static void __maybe_unused mx1_intctrl(struct spi_imx_data *spi_imx, int enable)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700596{
597 unsigned int val = 0;
598
599 if (enable & MXC_INT_TE)
600 val |= MX1_INTREG_TEEN;
601 if (enable & MXC_INT_RR)
602 val |= MX1_INTREG_RREN;
603
604 writel(val, spi_imx->base + MXC_CSPIINT);
605}
606
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200607static void __maybe_unused mx1_trigger(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700608{
609 unsigned int reg;
610
611 reg = readl(spi_imx->base + MXC_CSPICTRL);
612 reg |= MX1_CSPICTRL_XCH;
613 writel(reg, spi_imx->base + MXC_CSPICTRL);
614}
615
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200616static int __maybe_unused mx1_config(struct spi_imx_data *spi_imx,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700617 struct spi_imx_config *config)
618{
619 unsigned int reg = MX1_CSPICTRL_ENABLE | MX1_CSPICTRL_MASTER;
620
621 reg |= spi_imx_clkdiv_2(spi_imx->spi_clk, config->speed_hz) <<
622 MX1_CSPICTRL_DR_SHIFT;
623 reg |= config->bpw - 1;
624
625 if (config->mode & SPI_CPHA)
626 reg |= MX1_CSPICTRL_PHA;
627 if (config->mode & SPI_CPOL)
628 reg |= MX1_CSPICTRL_POL;
629
630 writel(reg, spi_imx->base + MXC_CSPICTRL);
631
632 return 0;
633}
634
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200635static int __maybe_unused mx1_rx_available(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700636{
637 return readl(spi_imx->base + MXC_CSPIINT) & MX1_INTREG_RR;
638}
639
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200640static void __maybe_unused mx1_reset(struct spi_imx_data *spi_imx)
641{
642 writel(1, spi_imx->base + MXC_RESET);
643}
644
Shawn Guo04ee5852011-07-10 01:16:39 +0800645static struct spi_imx_devtype_data imx1_cspi_devtype_data = {
646 .intctrl = mx1_intctrl,
647 .config = mx1_config,
648 .trigger = mx1_trigger,
649 .rx_available = mx1_rx_available,
650 .reset = mx1_reset,
651 .devtype = IMX1_CSPI,
652};
653
654static struct spi_imx_devtype_data imx21_cspi_devtype_data = {
655 .intctrl = mx21_intctrl,
656 .config = mx21_config,
657 .trigger = mx21_trigger,
658 .rx_available = mx21_rx_available,
659 .reset = mx21_reset,
660 .devtype = IMX21_CSPI,
661};
662
663static struct spi_imx_devtype_data imx27_cspi_devtype_data = {
664 /* i.mx27 cspi shares the functions with i.mx21 one */
665 .intctrl = mx21_intctrl,
666 .config = mx21_config,
667 .trigger = mx21_trigger,
668 .rx_available = mx21_rx_available,
669 .reset = mx21_reset,
670 .devtype = IMX27_CSPI,
671};
672
673static struct spi_imx_devtype_data imx31_cspi_devtype_data = {
674 .intctrl = mx31_intctrl,
675 .config = mx31_config,
676 .trigger = mx31_trigger,
677 .rx_available = mx31_rx_available,
678 .reset = mx31_reset,
679 .devtype = IMX31_CSPI,
680};
681
682static struct spi_imx_devtype_data imx35_cspi_devtype_data = {
683 /* i.mx35 and later cspi shares the functions with i.mx31 one */
684 .intctrl = mx31_intctrl,
685 .config = mx31_config,
686 .trigger = mx31_trigger,
687 .rx_available = mx31_rx_available,
688 .reset = mx31_reset,
689 .devtype = IMX35_CSPI,
690};
691
692static struct spi_imx_devtype_data imx51_ecspi_devtype_data = {
693 .intctrl = mx51_ecspi_intctrl,
694 .config = mx51_ecspi_config,
695 .trigger = mx51_ecspi_trigger,
696 .rx_available = mx51_ecspi_rx_available,
697 .reset = mx51_ecspi_reset,
698 .devtype = IMX51_ECSPI,
699};
700
Krzysztof Kozlowskidb1b8202015-05-02 00:44:04 +0900701static const struct platform_device_id spi_imx_devtype[] = {
Shawn Guo04ee5852011-07-10 01:16:39 +0800702 {
703 .name = "imx1-cspi",
704 .driver_data = (kernel_ulong_t) &imx1_cspi_devtype_data,
705 }, {
706 .name = "imx21-cspi",
707 .driver_data = (kernel_ulong_t) &imx21_cspi_devtype_data,
708 }, {
709 .name = "imx27-cspi",
710 .driver_data = (kernel_ulong_t) &imx27_cspi_devtype_data,
711 }, {
712 .name = "imx31-cspi",
713 .driver_data = (kernel_ulong_t) &imx31_cspi_devtype_data,
714 }, {
715 .name = "imx35-cspi",
716 .driver_data = (kernel_ulong_t) &imx35_cspi_devtype_data,
717 }, {
718 .name = "imx51-ecspi",
719 .driver_data = (kernel_ulong_t) &imx51_ecspi_devtype_data,
720 }, {
721 /* sentinel */
722 }
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200723};
724
Shawn Guo22a85e42011-07-10 01:16:41 +0800725static const struct of_device_id spi_imx_dt_ids[] = {
726 { .compatible = "fsl,imx1-cspi", .data = &imx1_cspi_devtype_data, },
727 { .compatible = "fsl,imx21-cspi", .data = &imx21_cspi_devtype_data, },
728 { .compatible = "fsl,imx27-cspi", .data = &imx27_cspi_devtype_data, },
729 { .compatible = "fsl,imx31-cspi", .data = &imx31_cspi_devtype_data, },
730 { .compatible = "fsl,imx35-cspi", .data = &imx35_cspi_devtype_data, },
731 { .compatible = "fsl,imx51-ecspi", .data = &imx51_ecspi_devtype_data, },
732 { /* sentinel */ }
733};
Niels de Vos27743e02013-07-29 09:38:05 +0200734MODULE_DEVICE_TABLE(of, spi_imx_dt_ids);
Shawn Guo22a85e42011-07-10 01:16:41 +0800735
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700736static void spi_imx_chipselect(struct spi_device *spi, int is_active)
737{
738 struct spi_imx_data *spi_imx = spi_master_get_devdata(spi->master);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700739 int gpio = spi_imx->chipselect[spi->chip_select];
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700740 int active = is_active != BITBANG_CS_INACTIVE;
741 int dev_is_lowactive = !(spi->mode & SPI_CS_HIGH);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700742
Hui Wang8b17e052012-07-13 10:51:29 +0800743 if (!gpio_is_valid(gpio))
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700744 return;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700745
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700746 gpio_set_value(gpio, dev_is_lowactive ^ active);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700747}
748
749static void spi_imx_push(struct spi_imx_data *spi_imx)
750{
Shawn Guo04ee5852011-07-10 01:16:39 +0800751 while (spi_imx->txfifo < spi_imx_get_fifosize(spi_imx)) {
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700752 if (!spi_imx->count)
753 break;
754 spi_imx->tx(spi_imx);
755 spi_imx->txfifo++;
756 }
757
Shawn Guoedd501bb2011-07-10 01:16:35 +0800758 spi_imx->devtype_data->trigger(spi_imx);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700759}
760
761static irqreturn_t spi_imx_isr(int irq, void *dev_id)
762{
763 struct spi_imx_data *spi_imx = dev_id;
764
Shawn Guoedd501bb2011-07-10 01:16:35 +0800765 while (spi_imx->devtype_data->rx_available(spi_imx)) {
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700766 spi_imx->rx(spi_imx);
767 spi_imx->txfifo--;
768 }
769
770 if (spi_imx->count) {
771 spi_imx_push(spi_imx);
772 return IRQ_HANDLED;
773 }
774
775 if (spi_imx->txfifo) {
776 /* No data left to push, but still waiting for rx data,
777 * enable receive data available interrupt.
778 */
Shawn Guoedd501bb2011-07-10 01:16:35 +0800779 spi_imx->devtype_data->intctrl(
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200780 spi_imx, MXC_INT_RR);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700781 return IRQ_HANDLED;
782 }
783
Shawn Guoedd501bb2011-07-10 01:16:35 +0800784 spi_imx->devtype_data->intctrl(spi_imx, 0);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700785 complete(&spi_imx->xfer_done);
786
787 return IRQ_HANDLED;
788}
789
Anton Bondarenkof12ae172016-02-24 09:20:29 +0100790static int spi_imx_dma_configure(struct spi_master *master,
791 int bytes_per_word)
792{
793 int ret;
794 enum dma_slave_buswidth buswidth;
795 struct dma_slave_config rx = {}, tx = {};
796 struct spi_imx_data *spi_imx = spi_master_get_devdata(master);
797
798 if (bytes_per_word == spi_imx->bytes_per_word)
799 /* Same as last time */
800 return 0;
801
802 switch (bytes_per_word) {
803 case 4:
804 buswidth = DMA_SLAVE_BUSWIDTH_4_BYTES;
805 break;
806 case 2:
807 buswidth = DMA_SLAVE_BUSWIDTH_2_BYTES;
808 break;
809 case 1:
810 buswidth = DMA_SLAVE_BUSWIDTH_1_BYTE;
811 break;
812 default:
813 return -EINVAL;
814 }
815
816 tx.direction = DMA_MEM_TO_DEV;
817 tx.dst_addr = spi_imx->base_phys + MXC_CSPITXDATA;
818 tx.dst_addr_width = buswidth;
819 tx.dst_maxburst = spi_imx->wml;
820 ret = dmaengine_slave_config(master->dma_tx, &tx);
821 if (ret) {
822 dev_err(spi_imx->dev, "TX dma configuration failed with %d\n", ret);
823 return ret;
824 }
825
826 rx.direction = DMA_DEV_TO_MEM;
827 rx.src_addr = spi_imx->base_phys + MXC_CSPIRXDATA;
828 rx.src_addr_width = buswidth;
829 rx.src_maxburst = spi_imx->wml;
830 ret = dmaengine_slave_config(master->dma_rx, &rx);
831 if (ret) {
832 dev_err(spi_imx->dev, "RX dma configuration failed with %d\n", ret);
833 return ret;
834 }
835
836 spi_imx->bytes_per_word = bytes_per_word;
837
838 return 0;
839}
840
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700841static int spi_imx_setupxfer(struct spi_device *spi,
842 struct spi_transfer *t)
843{
844 struct spi_imx_data *spi_imx = spi_master_get_devdata(spi->master);
845 struct spi_imx_config config;
Anton Bondarenkof12ae172016-02-24 09:20:29 +0100846 int ret;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700847
848 config.bpw = t ? t->bits_per_word : spi->bits_per_word;
849 config.speed_hz = t ? t->speed_hz : spi->max_speed_hz;
850 config.mode = spi->mode;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200851 config.cs = spi->chip_select;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700852
Sascha Hauer462d26b2009-10-01 15:44:29 -0700853 if (!config.speed_hz)
854 config.speed_hz = spi->max_speed_hz;
855 if (!config.bpw)
856 config.bpw = spi->bits_per_word;
Sascha Hauer462d26b2009-10-01 15:44:29 -0700857
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700858 /* Initialize the functions for transfer */
859 if (config.bpw <= 8) {
860 spi_imx->rx = spi_imx_buf_rx_u8;
861 spi_imx->tx = spi_imx_buf_tx_u8;
862 } else if (config.bpw <= 16) {
863 spi_imx->rx = spi_imx_buf_rx_u16;
864 spi_imx->tx = spi_imx_buf_tx_u16;
Sachin Kamat60514262013-05-30 13:38:09 +0530865 } else {
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700866 spi_imx->rx = spi_imx_buf_rx_u32;
867 spi_imx->tx = spi_imx_buf_tx_u32;
Stephen Warren24778be2013-05-21 20:36:35 -0600868 }
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700869
Sascha Hauerc008a802016-02-24 09:20:26 +0100870 if (spi_imx_can_dma(spi_imx->bitbang.master, spi, t))
871 spi_imx->usedma = 1;
872 else
873 spi_imx->usedma = 0;
874
Anton Bondarenkof12ae172016-02-24 09:20:29 +0100875 if (spi_imx->usedma) {
876 ret = spi_imx_dma_configure(spi->master,
877 spi_imx_bytes_per_word(config.bpw));
878 if (ret)
879 return ret;
880 }
881
Shawn Guoedd501bb2011-07-10 01:16:35 +0800882 spi_imx->devtype_data->config(spi_imx, &config);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700883
884 return 0;
885}
886
Robin Gongf62cacc2014-09-11 09:18:44 +0800887static void spi_imx_sdma_exit(struct spi_imx_data *spi_imx)
888{
889 struct spi_master *master = spi_imx->bitbang.master;
890
891 if (master->dma_rx) {
892 dma_release_channel(master->dma_rx);
893 master->dma_rx = NULL;
894 }
895
896 if (master->dma_tx) {
897 dma_release_channel(master->dma_tx);
898 master->dma_tx = NULL;
899 }
Robin Gongf62cacc2014-09-11 09:18:44 +0800900}
901
902static int spi_imx_sdma_init(struct device *dev, struct spi_imx_data *spi_imx,
Anton Bondarenkof12ae172016-02-24 09:20:29 +0100903 struct spi_master *master)
Robin Gongf62cacc2014-09-11 09:18:44 +0800904{
Robin Gongf62cacc2014-09-11 09:18:44 +0800905 int ret;
906
Robin Gonga02bb402015-02-03 10:25:53 +0800907 /* use pio mode for i.mx6dl chip TKT238285 */
908 if (of_machine_is_compatible("fsl,imx6dl"))
909 return 0;
910
Anton Bondarenko0dfbaa82015-12-05 17:57:01 +0100911 spi_imx->wml = spi_imx_get_fifosize(spi_imx) / 2;
912
Robin Gongf62cacc2014-09-11 09:18:44 +0800913 /* Prepare for TX DMA: */
Anton Bondarenko37600472015-12-08 07:43:45 +0100914 master->dma_tx = dma_request_slave_channel_reason(dev, "tx");
915 if (IS_ERR(master->dma_tx)) {
916 ret = PTR_ERR(master->dma_tx);
917 dev_dbg(dev, "can't get the TX DMA channel, error %d!\n", ret);
918 master->dma_tx = NULL;
Robin Gongf62cacc2014-09-11 09:18:44 +0800919 goto err;
920 }
921
Robin Gongf62cacc2014-09-11 09:18:44 +0800922 /* Prepare for RX : */
Anton Bondarenko37600472015-12-08 07:43:45 +0100923 master->dma_rx = dma_request_slave_channel_reason(dev, "rx");
924 if (IS_ERR(master->dma_rx)) {
925 ret = PTR_ERR(master->dma_rx);
926 dev_dbg(dev, "can't get the RX DMA channel, error %d\n", ret);
927 master->dma_rx = NULL;
Robin Gongf62cacc2014-09-11 09:18:44 +0800928 goto err;
929 }
930
Anton Bondarenkof12ae172016-02-24 09:20:29 +0100931 spi_imx_dma_configure(master, 1);
Robin Gongf62cacc2014-09-11 09:18:44 +0800932
933 init_completion(&spi_imx->dma_rx_completion);
934 init_completion(&spi_imx->dma_tx_completion);
935 master->can_dma = spi_imx_can_dma;
936 master->max_dma_len = MAX_SDMA_BD_BYTES;
937 spi_imx->bitbang.master->flags = SPI_MASTER_MUST_RX |
938 SPI_MASTER_MUST_TX;
Robin Gongf62cacc2014-09-11 09:18:44 +0800939
940 return 0;
941err:
942 spi_imx_sdma_exit(spi_imx);
943 return ret;
944}
945
946static void spi_imx_dma_rx_callback(void *cookie)
947{
948 struct spi_imx_data *spi_imx = (struct spi_imx_data *)cookie;
949
950 complete(&spi_imx->dma_rx_completion);
951}
952
953static void spi_imx_dma_tx_callback(void *cookie)
954{
955 struct spi_imx_data *spi_imx = (struct spi_imx_data *)cookie;
956
957 complete(&spi_imx->dma_tx_completion);
958}
959
Anton Bondarenko4bfe9272016-02-19 08:43:03 +0100960static int spi_imx_calculate_timeout(struct spi_imx_data *spi_imx, int size)
961{
962 unsigned long timeout = 0;
963
964 /* Time with actual data transfer and CS change delay related to HW */
965 timeout = (8 + 4) * size / spi_imx->spi_bus_clk;
966
967 /* Add extra second for scheduler related activities */
968 timeout += 1;
969
970 /* Double calculated timeout */
971 return msecs_to_jiffies(2 * timeout * MSEC_PER_SEC);
972}
973
Robin Gongf62cacc2014-09-11 09:18:44 +0800974static int spi_imx_dma_transfer(struct spi_imx_data *spi_imx,
975 struct spi_transfer *transfer)
976{
977 struct dma_async_tx_descriptor *desc_tx = NULL, *desc_rx = NULL;
978 int ret;
Anton Bondarenko4bfe9272016-02-19 08:43:03 +0100979 unsigned long transfer_timeout;
Nicholas Mc Guire56536a72015-02-02 03:30:35 -0500980 unsigned long timeout;
Robin Gongf62cacc2014-09-11 09:18:44 +0800981 struct spi_master *master = spi_imx->bitbang.master;
982 struct sg_table *tx = &transfer->tx_sg, *rx = &transfer->rx_sg;
983
984 if (tx) {
985 desc_tx = dmaengine_prep_slave_sg(master->dma_tx,
Stefan Agnere8361f72015-03-03 00:28:31 +0100986 tx->sgl, tx->nents, DMA_MEM_TO_DEV,
Robin Gongf62cacc2014-09-11 09:18:44 +0800987 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
988 if (!desc_tx)
Sascha Hauer99f1cf12016-02-23 10:23:50 +0100989 return -EINVAL;
Robin Gongf62cacc2014-09-11 09:18:44 +0800990
991 desc_tx->callback = spi_imx_dma_tx_callback;
992 desc_tx->callback_param = (void *)spi_imx;
993 dmaengine_submit(desc_tx);
994 }
995
996 if (rx) {
997 desc_rx = dmaengine_prep_slave_sg(master->dma_rx,
Stefan Agnere8361f72015-03-03 00:28:31 +0100998 rx->sgl, rx->nents, DMA_DEV_TO_MEM,
Robin Gongf62cacc2014-09-11 09:18:44 +0800999 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
Sascha Hauer99f1cf12016-02-23 10:23:50 +01001000 if (!desc_rx) {
1001 dmaengine_terminate_all(master->dma_tx);
1002 return -EINVAL;
1003 }
Robin Gongf62cacc2014-09-11 09:18:44 +08001004
1005 desc_rx->callback = spi_imx_dma_rx_callback;
1006 desc_rx->callback_param = (void *)spi_imx;
1007 dmaengine_submit(desc_rx);
1008 }
1009
1010 reinit_completion(&spi_imx->dma_rx_completion);
1011 reinit_completion(&spi_imx->dma_tx_completion);
1012
Anton Bondarenkofab44ef2015-12-05 17:57:00 +01001013 /*
1014 * Set these order to avoid potential RX overflow. The overflow may
1015 * happen if we enable SPI HW before starting RX DMA due to rescheduling
1016 * for another task and/or interrupt.
1017 * So RX DMA enabled first to make sure data would be read out from FIFO
1018 * ASAP. TX DMA enabled next to start filling TX FIFO with new data.
1019 * And finaly SPI HW enabled to start actual data transfer.
1020 */
1021 dma_async_issue_pending(master->dma_rx);
1022 dma_async_issue_pending(master->dma_tx);
Robin Gongf62cacc2014-09-11 09:18:44 +08001023
Anton Bondarenko4bfe9272016-02-19 08:43:03 +01001024 transfer_timeout = spi_imx_calculate_timeout(spi_imx, transfer->len);
1025
Robin Gongf62cacc2014-09-11 09:18:44 +08001026 /* Wait SDMA to finish the data transfer.*/
Nicholas Mc Guire56536a72015-02-02 03:30:35 -05001027 timeout = wait_for_completion_timeout(&spi_imx->dma_tx_completion,
Anton Bondarenko4bfe9272016-02-19 08:43:03 +01001028 transfer_timeout);
Nicholas Mc Guire56536a72015-02-02 03:30:35 -05001029 if (!timeout) {
Sascha Hauer6aa800c2016-02-17 14:28:48 +01001030 dev_err(spi_imx->dev, "I/O Error in DMA TX\n");
Robin Gongf62cacc2014-09-11 09:18:44 +08001031 dmaengine_terminate_all(master->dma_tx);
Anton Bondarenkoe47b33c2015-12-05 17:56:59 +01001032 dmaengine_terminate_all(master->dma_rx);
Robin Gongf62cacc2014-09-11 09:18:44 +08001033 } else {
Nicholas Mc Guire56536a72015-02-02 03:30:35 -05001034 timeout = wait_for_completion_timeout(
Anton Bondarenko4bfe9272016-02-19 08:43:03 +01001035 &spi_imx->dma_rx_completion, transfer_timeout);
Nicholas Mc Guire56536a72015-02-02 03:30:35 -05001036 if (!timeout) {
Sascha Hauer6aa800c2016-02-17 14:28:48 +01001037 dev_err(spi_imx->dev, "I/O Error in DMA RX\n");
Robin Gongf62cacc2014-09-11 09:18:44 +08001038 spi_imx->devtype_data->reset(spi_imx);
1039 dmaengine_terminate_all(master->dma_rx);
1040 }
Robin Gongf62cacc2014-09-11 09:18:44 +08001041 }
1042
Nicholas Mc Guire56536a72015-02-02 03:30:35 -05001043 if (!timeout)
Robin Gongf62cacc2014-09-11 09:18:44 +08001044 ret = -ETIMEDOUT;
Nicholas Mc Guire56536a72015-02-02 03:30:35 -05001045 else
Robin Gongf62cacc2014-09-11 09:18:44 +08001046 ret = transfer->len;
1047
1048 return ret;
Robin Gongf62cacc2014-09-11 09:18:44 +08001049}
1050
1051static int spi_imx_pio_transfer(struct spi_device *spi,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001052 struct spi_transfer *transfer)
1053{
1054 struct spi_imx_data *spi_imx = spi_master_get_devdata(spi->master);
1055
1056 spi_imx->tx_buf = transfer->tx_buf;
1057 spi_imx->rx_buf = transfer->rx_buf;
1058 spi_imx->count = transfer->len;
1059 spi_imx->txfifo = 0;
1060
Axel Linaa0fe822014-02-09 11:06:04 +08001061 reinit_completion(&spi_imx->xfer_done);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001062
1063 spi_imx_push(spi_imx);
1064
Shawn Guoedd501bb2011-07-10 01:16:35 +08001065 spi_imx->devtype_data->intctrl(spi_imx, MXC_INT_TE);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001066
1067 wait_for_completion(&spi_imx->xfer_done);
1068
1069 return transfer->len;
1070}
1071
Robin Gongf62cacc2014-09-11 09:18:44 +08001072static int spi_imx_transfer(struct spi_device *spi,
1073 struct spi_transfer *transfer)
1074{
Robin Gongf62cacc2014-09-11 09:18:44 +08001075 struct spi_imx_data *spi_imx = spi_master_get_devdata(spi->master);
1076
Sascha Hauerc008a802016-02-24 09:20:26 +01001077 if (spi_imx->usedma)
Sascha Hauer99f1cf12016-02-23 10:23:50 +01001078 return spi_imx_dma_transfer(spi_imx, transfer);
Sascha Hauerc008a802016-02-24 09:20:26 +01001079 else
1080 return spi_imx_pio_transfer(spi, transfer);
Robin Gongf62cacc2014-09-11 09:18:44 +08001081}
1082
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001083static int spi_imx_setup(struct spi_device *spi)
1084{
Sascha Hauer6c23e5d2009-10-01 15:44:29 -07001085 struct spi_imx_data *spi_imx = spi_master_get_devdata(spi->master);
1086 int gpio = spi_imx->chipselect[spi->chip_select];
1087
Alberto Panizzof4d4ecf2010-01-20 13:49:45 -07001088 dev_dbg(&spi->dev, "%s: mode %d, %u bpw, %d hz\n", __func__,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001089 spi->mode, spi->bits_per_word, spi->max_speed_hz);
1090
Hui Wang8b17e052012-07-13 10:51:29 +08001091 if (gpio_is_valid(gpio))
Sascha Hauer6c23e5d2009-10-01 15:44:29 -07001092 gpio_direction_output(gpio, spi->mode & SPI_CS_HIGH ? 0 : 1);
1093
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001094 spi_imx_chipselect(spi, BITBANG_CS_INACTIVE);
1095
1096 return 0;
1097}
1098
1099static void spi_imx_cleanup(struct spi_device *spi)
1100{
1101}
1102
Huang Shijie9e556dc2013-10-23 16:31:50 +08001103static int
1104spi_imx_prepare_message(struct spi_master *master, struct spi_message *msg)
1105{
1106 struct spi_imx_data *spi_imx = spi_master_get_devdata(master);
1107 int ret;
1108
1109 ret = clk_enable(spi_imx->clk_per);
1110 if (ret)
1111 return ret;
1112
1113 ret = clk_enable(spi_imx->clk_ipg);
1114 if (ret) {
1115 clk_disable(spi_imx->clk_per);
1116 return ret;
1117 }
1118
1119 return 0;
1120}
1121
1122static int
1123spi_imx_unprepare_message(struct spi_master *master, struct spi_message *msg)
1124{
1125 struct spi_imx_data *spi_imx = spi_master_get_devdata(master);
1126
1127 clk_disable(spi_imx->clk_ipg);
1128 clk_disable(spi_imx->clk_per);
1129 return 0;
1130}
1131
Grant Likelyfd4a3192012-12-07 16:57:14 +00001132static int spi_imx_probe(struct platform_device *pdev)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001133{
Shawn Guo22a85e42011-07-10 01:16:41 +08001134 struct device_node *np = pdev->dev.of_node;
1135 const struct of_device_id *of_id =
1136 of_match_device(spi_imx_dt_ids, &pdev->dev);
1137 struct spi_imx_master *mxc_platform_info =
1138 dev_get_platdata(&pdev->dev);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001139 struct spi_master *master;
1140 struct spi_imx_data *spi_imx;
1141 struct resource *res;
Fabio Estevam4b5d6aa2014-12-29 19:38:51 -02001142 int i, ret, num_cs, irq;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001143
Shawn Guo22a85e42011-07-10 01:16:41 +08001144 if (!np && !mxc_platform_info) {
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001145 dev_err(&pdev->dev, "can't get the platform data\n");
1146 return -EINVAL;
1147 }
1148
Shawn Guo22a85e42011-07-10 01:16:41 +08001149 ret = of_property_read_u32(np, "fsl,spi-num-chipselects", &num_cs);
Lothar Waßmann39ec0d32012-04-03 15:03:44 +02001150 if (ret < 0) {
1151 if (mxc_platform_info)
1152 num_cs = mxc_platform_info->num_chipselect;
1153 else
1154 return ret;
1155 }
Shawn Guo22a85e42011-07-10 01:16:41 +08001156
Shawn Guoc2387cb2011-07-10 01:16:40 +08001157 master = spi_alloc_master(&pdev->dev,
1158 sizeof(struct spi_imx_data) + sizeof(int) * num_cs);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001159 if (!master)
1160 return -ENOMEM;
1161
1162 platform_set_drvdata(pdev, master);
1163
Stephen Warren24778be2013-05-21 20:36:35 -06001164 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 32);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001165 master->bus_num = pdev->id;
Shawn Guoc2387cb2011-07-10 01:16:40 +08001166 master->num_chipselect = num_cs;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001167
1168 spi_imx = spi_master_get_devdata(master);
Axel Lin94c69f72013-09-10 15:43:41 +08001169 spi_imx->bitbang.master = master;
Sascha Hauer6aa800c2016-02-17 14:28:48 +01001170 spi_imx->dev = &pdev->dev;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001171
Anton Bondarenko4686d1c2015-12-08 07:43:44 +01001172 spi_imx->devtype_data = of_id ? of_id->data :
1173 (struct spi_imx_devtype_data *)pdev->id_entry->driver_data;
1174
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001175 for (i = 0; i < master->num_chipselect; i++) {
Shawn Guo22a85e42011-07-10 01:16:41 +08001176 int cs_gpio = of_get_named_gpio(np, "cs-gpios", i);
Hui Wang8b17e052012-07-13 10:51:29 +08001177 if (!gpio_is_valid(cs_gpio) && mxc_platform_info)
Shawn Guo22a85e42011-07-10 01:16:41 +08001178 cs_gpio = mxc_platform_info->chipselect[i];
Fabio Estevam4cc122a2011-09-15 17:21:15 -03001179
1180 spi_imx->chipselect[i] = cs_gpio;
Hui Wang8b17e052012-07-13 10:51:29 +08001181 if (!gpio_is_valid(cs_gpio))
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001182 continue;
Fabio Estevam4cc122a2011-09-15 17:21:15 -03001183
Fabio Estevam130b82c2013-07-11 01:26:48 -03001184 ret = devm_gpio_request(&pdev->dev, spi_imx->chipselect[i],
1185 DRIVER_NAME);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001186 if (ret) {
John Ognessbbd050a2009-11-24 16:53:07 +00001187 dev_err(&pdev->dev, "can't get cs gpios\n");
Fabio Estevam130b82c2013-07-11 01:26:48 -03001188 goto out_master_put;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001189 }
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001190 }
1191
1192 spi_imx->bitbang.chipselect = spi_imx_chipselect;
1193 spi_imx->bitbang.setup_transfer = spi_imx_setupxfer;
1194 spi_imx->bitbang.txrx_bufs = spi_imx_transfer;
1195 spi_imx->bitbang.master->setup = spi_imx_setup;
1196 spi_imx->bitbang.master->cleanup = spi_imx_cleanup;
Huang Shijie9e556dc2013-10-23 16:31:50 +08001197 spi_imx->bitbang.master->prepare_message = spi_imx_prepare_message;
1198 spi_imx->bitbang.master->unprepare_message = spi_imx_unprepare_message;
Anton Bondarenko4686d1c2015-12-08 07:43:44 +01001199 spi_imx->bitbang.master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH;
1200 if (is_imx51_ecspi(spi_imx))
1201 spi_imx->bitbang.master->mode_bits |= SPI_LOOP;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001202
1203 init_completion(&spi_imx->xfer_done);
1204
1205 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Fabio Estevam130b82c2013-07-11 01:26:48 -03001206 spi_imx->base = devm_ioremap_resource(&pdev->dev, res);
1207 if (IS_ERR(spi_imx->base)) {
1208 ret = PTR_ERR(spi_imx->base);
1209 goto out_master_put;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001210 }
Anton Bondarenkof12ae172016-02-24 09:20:29 +01001211 spi_imx->base_phys = res->start;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001212
Fabio Estevam4b5d6aa2014-12-29 19:38:51 -02001213 irq = platform_get_irq(pdev, 0);
1214 if (irq < 0) {
1215 ret = irq;
Fabio Estevam130b82c2013-07-11 01:26:48 -03001216 goto out_master_put;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001217 }
1218
Fabio Estevam4b5d6aa2014-12-29 19:38:51 -02001219 ret = devm_request_irq(&pdev->dev, irq, spi_imx_isr, 0,
Alexander Shiyan8fc39b52014-02-22 17:23:46 +04001220 dev_name(&pdev->dev), spi_imx);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001221 if (ret) {
Fabio Estevam4b5d6aa2014-12-29 19:38:51 -02001222 dev_err(&pdev->dev, "can't get irq%d: %d\n", irq, ret);
Fabio Estevam130b82c2013-07-11 01:26:48 -03001223 goto out_master_put;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001224 }
1225
Sascha Haueraa29d842012-03-07 09:30:22 +01001226 spi_imx->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
1227 if (IS_ERR(spi_imx->clk_ipg)) {
1228 ret = PTR_ERR(spi_imx->clk_ipg);
Fabio Estevam130b82c2013-07-11 01:26:48 -03001229 goto out_master_put;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001230 }
1231
Sascha Haueraa29d842012-03-07 09:30:22 +01001232 spi_imx->clk_per = devm_clk_get(&pdev->dev, "per");
1233 if (IS_ERR(spi_imx->clk_per)) {
1234 ret = PTR_ERR(spi_imx->clk_per);
Fabio Estevam130b82c2013-07-11 01:26:48 -03001235 goto out_master_put;
Sascha Haueraa29d842012-03-07 09:30:22 +01001236 }
1237
Fabio Estevam83174622013-07-11 01:26:49 -03001238 ret = clk_prepare_enable(spi_imx->clk_per);
1239 if (ret)
1240 goto out_master_put;
1241
1242 ret = clk_prepare_enable(spi_imx->clk_ipg);
1243 if (ret)
1244 goto out_put_per;
Sascha Haueraa29d842012-03-07 09:30:22 +01001245
1246 spi_imx->spi_clk = clk_get_rate(spi_imx->clk_per);
Robin Gongf62cacc2014-09-11 09:18:44 +08001247 /*
1248 * Only validated on i.mx6 now, can remove the constrain if validated on
1249 * other chips.
1250 */
Anton Bondarenko37600472015-12-08 07:43:45 +01001251 if (is_imx51_ecspi(spi_imx)) {
Anton Bondarenkof12ae172016-02-24 09:20:29 +01001252 ret = spi_imx_sdma_init(&pdev->dev, spi_imx, master);
Anton Bondarenkobf9af082015-12-08 07:43:46 +01001253 if (ret == -EPROBE_DEFER)
1254 goto out_clk_put;
1255
Anton Bondarenko37600472015-12-08 07:43:45 +01001256 if (ret < 0)
1257 dev_err(&pdev->dev, "dma setup error %d, use pio\n",
1258 ret);
1259 }
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001260
Shawn Guoedd501bb2011-07-10 01:16:35 +08001261 spi_imx->devtype_data->reset(spi_imx);
Daniel Mackce1807b2009-11-19 19:01:42 +00001262
Shawn Guoedd501bb2011-07-10 01:16:35 +08001263 spi_imx->devtype_data->intctrl(spi_imx, 0);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001264
Shawn Guo22a85e42011-07-10 01:16:41 +08001265 master->dev.of_node = pdev->dev.of_node;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001266 ret = spi_bitbang_start(&spi_imx->bitbang);
1267 if (ret) {
1268 dev_err(&pdev->dev, "bitbang start failed with %d\n", ret);
1269 goto out_clk_put;
1270 }
1271
1272 dev_info(&pdev->dev, "probed\n");
1273
Huang Shijie9e556dc2013-10-23 16:31:50 +08001274 clk_disable(spi_imx->clk_ipg);
1275 clk_disable(spi_imx->clk_per);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001276 return ret;
1277
1278out_clk_put:
Sascha Haueraa29d842012-03-07 09:30:22 +01001279 clk_disable_unprepare(spi_imx->clk_ipg);
Fabio Estevam83174622013-07-11 01:26:49 -03001280out_put_per:
1281 clk_disable_unprepare(spi_imx->clk_per);
Fabio Estevam130b82c2013-07-11 01:26:48 -03001282out_master_put:
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001283 spi_master_put(master);
Fabio Estevam130b82c2013-07-11 01:26:48 -03001284
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001285 return ret;
1286}
1287
Grant Likelyfd4a3192012-12-07 16:57:14 +00001288static int spi_imx_remove(struct platform_device *pdev)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001289{
1290 struct spi_master *master = platform_get_drvdata(pdev);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001291 struct spi_imx_data *spi_imx = spi_master_get_devdata(master);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001292
1293 spi_bitbang_stop(&spi_imx->bitbang);
1294
1295 writel(0, spi_imx->base + MXC_CSPICTRL);
Philippe De Muyterfd40dcc2014-02-27 10:16:15 +01001296 clk_unprepare(spi_imx->clk_ipg);
1297 clk_unprepare(spi_imx->clk_per);
Robin Gongf62cacc2014-09-11 09:18:44 +08001298 spi_imx_sdma_exit(spi_imx);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001299 spi_master_put(master);
1300
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001301 return 0;
1302}
1303
1304static struct platform_driver spi_imx_driver = {
1305 .driver = {
1306 .name = DRIVER_NAME,
Shawn Guo22a85e42011-07-10 01:16:41 +08001307 .of_match_table = spi_imx_dt_ids,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001308 },
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +02001309 .id_table = spi_imx_devtype,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001310 .probe = spi_imx_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +00001311 .remove = spi_imx_remove,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001312};
Grant Likely940ab882011-10-05 11:29:49 -06001313module_platform_driver(spi_imx_driver);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -07001314
1315MODULE_DESCRIPTION("SPI Master Controller driver");
1316MODULE_AUTHOR("Sascha Hauer, Pengutronix");
1317MODULE_LICENSE("GPL");
Fabio Estevam3133fba32013-01-07 20:42:55 -02001318MODULE_ALIAS("platform:" DRIVER_NAME);