blob: a5474ef9d2a0cf4ad7367ee1e0399fae2e982145 [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>
24#include <linux/err.h>
25#include <linux/gpio.h>
26#include <linux/init.h>
27#include <linux/interrupt.h>
28#include <linux/io.h>
29#include <linux/irq.h>
30#include <linux/kernel.h>
31#include <linux/module.h>
32#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070034#include <linux/spi/spi.h>
35#include <linux/spi/spi_bitbang.h>
36#include <linux/types.h>
Shawn Guo22a85e42011-07-10 01:16:41 +080037#include <linux/of.h>
38#include <linux/of_device.h>
39#include <linux/of_gpio.h>
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070040
Arnd Bergmann82906b12012-08-24 15:14:29 +020041#include <linux/platform_data/spi-imx.h>
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070042
43#define DRIVER_NAME "spi_imx"
44
45#define MXC_CSPIRXDATA 0x00
46#define MXC_CSPITXDATA 0x04
47#define MXC_CSPICTRL 0x08
48#define MXC_CSPIINT 0x0c
49#define MXC_RESET 0x1c
50
51/* generic defines to abstract from the different register layouts */
52#define MXC_INT_RR (1 << 0) /* Receive data ready interrupt */
53#define MXC_INT_TE (1 << 1) /* Transmit FIFO empty interrupt */
54
55struct spi_imx_config {
56 unsigned int speed_hz;
57 unsigned int bpw;
58 unsigned int mode;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +020059 u8 cs;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070060};
61
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +020062enum spi_imx_devtype {
Shawn Guo04ee5852011-07-10 01:16:39 +080063 IMX1_CSPI,
64 IMX21_CSPI,
65 IMX27_CSPI,
66 IMX31_CSPI,
67 IMX35_CSPI, /* CSPI on all i.mx except above */
68 IMX51_ECSPI, /* ECSPI on i.mx51 and later */
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +020069};
70
71struct spi_imx_data;
72
73struct spi_imx_devtype_data {
74 void (*intctrl)(struct spi_imx_data *, int);
75 int (*config)(struct spi_imx_data *, struct spi_imx_config *);
76 void (*trigger)(struct spi_imx_data *);
77 int (*rx_available)(struct spi_imx_data *);
Uwe Kleine-König1723e662010-09-10 09:19:18 +020078 void (*reset)(struct spi_imx_data *);
Shawn Guo04ee5852011-07-10 01:16:39 +080079 enum spi_imx_devtype devtype;
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +020080};
81
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070082struct spi_imx_data {
83 struct spi_bitbang bitbang;
84
85 struct completion xfer_done;
Uwe Kleine-Königcc4d22a2012-03-29 21:54:18 +020086 void __iomem *base;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070087 int irq;
Sascha Haueraa29d842012-03-07 09:30:22 +010088 struct clk *clk_per;
89 struct clk *clk_ipg;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070090 unsigned long spi_clk;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -070091
92 unsigned int count;
93 void (*tx)(struct spi_imx_data *);
94 void (*rx)(struct spi_imx_data *);
95 void *rx_buf;
96 const void *tx_buf;
97 unsigned int txfifo; /* number of words pushed in tx FIFO */
98
Uwe Kleine-König80023cb2012-05-21 21:49:35 +020099 const struct spi_imx_devtype_data *devtype_data;
Shawn Guoc2387cb2011-07-10 01:16:40 +0800100 int chipselect[0];
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700101};
102
Shawn Guo04ee5852011-07-10 01:16:39 +0800103static inline int is_imx27_cspi(struct spi_imx_data *d)
104{
105 return d->devtype_data->devtype == IMX27_CSPI;
106}
107
108static inline int is_imx35_cspi(struct spi_imx_data *d)
109{
110 return d->devtype_data->devtype == IMX35_CSPI;
111}
112
113static inline unsigned spi_imx_get_fifosize(struct spi_imx_data *d)
114{
115 return (d->devtype_data->devtype == IMX51_ECSPI) ? 64 : 8;
116}
117
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700118#define MXC_SPI_BUF_RX(type) \
119static void spi_imx_buf_rx_##type(struct spi_imx_data *spi_imx) \
120{ \
121 unsigned int val = readl(spi_imx->base + MXC_CSPIRXDATA); \
122 \
123 if (spi_imx->rx_buf) { \
124 *(type *)spi_imx->rx_buf = val; \
125 spi_imx->rx_buf += sizeof(type); \
126 } \
127}
128
129#define MXC_SPI_BUF_TX(type) \
130static void spi_imx_buf_tx_##type(struct spi_imx_data *spi_imx) \
131{ \
132 type val = 0; \
133 \
134 if (spi_imx->tx_buf) { \
135 val = *(type *)spi_imx->tx_buf; \
136 spi_imx->tx_buf += sizeof(type); \
137 } \
138 \
139 spi_imx->count -= sizeof(type); \
140 \
141 writel(val, spi_imx->base + MXC_CSPITXDATA); \
142}
143
144MXC_SPI_BUF_RX(u8)
145MXC_SPI_BUF_TX(u8)
146MXC_SPI_BUF_RX(u16)
147MXC_SPI_BUF_TX(u16)
148MXC_SPI_BUF_RX(u32)
149MXC_SPI_BUF_TX(u32)
150
151/* First entry is reserved, second entry is valid only if SDHC_SPIEN is set
152 * (which is currently not the case in this driver)
153 */
154static int mxc_clkdivs[] = {0, 3, 4, 6, 8, 12, 16, 24, 32, 48, 64, 96, 128, 192,
155 256, 384, 512, 768, 1024};
156
157/* MX21, MX27 */
158static unsigned int spi_imx_clkdiv_1(unsigned int fin,
Shawn Guo04ee5852011-07-10 01:16:39 +0800159 unsigned int fspi, unsigned int max)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700160{
Shawn Guo04ee5852011-07-10 01:16:39 +0800161 int i;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700162
163 for (i = 2; i < max; i++)
164 if (fspi * mxc_clkdivs[i] >= fin)
165 return i;
166
167 return max;
168}
169
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200170/* MX1, MX31, MX35, MX51 CSPI */
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700171static unsigned int spi_imx_clkdiv_2(unsigned int fin,
172 unsigned int fspi)
173{
174 int i, div = 4;
175
176 for (i = 0; i < 7; i++) {
177 if (fspi * div >= fin)
178 return i;
179 div <<= 1;
180 }
181
182 return 7;
183}
184
Shawn Guo66de7572011-07-10 01:16:37 +0800185#define MX51_ECSPI_CTRL 0x08
186#define MX51_ECSPI_CTRL_ENABLE (1 << 0)
187#define MX51_ECSPI_CTRL_XCH (1 << 2)
188#define MX51_ECSPI_CTRL_MODE_MASK (0xf << 4)
189#define MX51_ECSPI_CTRL_POSTDIV_OFFSET 8
190#define MX51_ECSPI_CTRL_PREDIV_OFFSET 12
191#define MX51_ECSPI_CTRL_CS(cs) ((cs) << 18)
192#define MX51_ECSPI_CTRL_BL_OFFSET 20
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200193
Shawn Guo66de7572011-07-10 01:16:37 +0800194#define MX51_ECSPI_CONFIG 0x0c
195#define MX51_ECSPI_CONFIG_SCLKPHA(cs) (1 << ((cs) + 0))
196#define MX51_ECSPI_CONFIG_SCLKPOL(cs) (1 << ((cs) + 4))
197#define MX51_ECSPI_CONFIG_SBBCTRL(cs) (1 << ((cs) + 8))
198#define MX51_ECSPI_CONFIG_SSBPOL(cs) (1 << ((cs) + 12))
Knut Wohlrabc09b8902012-09-25 13:21:57 +0200199#define MX51_ECSPI_CONFIG_SCLKCTL(cs) (1 << ((cs) + 20))
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200200
Shawn Guo66de7572011-07-10 01:16:37 +0800201#define MX51_ECSPI_INT 0x10
202#define MX51_ECSPI_INT_TEEN (1 << 0)
203#define MX51_ECSPI_INT_RREN (1 << 3)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200204
Shawn Guo66de7572011-07-10 01:16:37 +0800205#define MX51_ECSPI_STAT 0x18
206#define MX51_ECSPI_STAT_RR (1 << 3)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200207
208/* MX51 eCSPI */
Marek Vasut6fd8b852013-12-18 18:31:47 +0100209static unsigned int mx51_ecspi_clkdiv(unsigned int fin, unsigned int fspi,
210 unsigned int *fres)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200211{
212 /*
213 * there are two 4-bit dividers, the pre-divider divides by
214 * $pre, the post-divider by 2^$post
215 */
216 unsigned int pre, post;
217
218 if (unlikely(fspi > fin))
219 return 0;
220
221 post = fls(fin) - fls(fspi);
222 if (fin > fspi << post)
223 post++;
224
225 /* now we have: (fin <= fspi << post) with post being minimal */
226
227 post = max(4U, post) - 4;
228 if (unlikely(post > 0xf)) {
229 pr_err("%s: cannot set clock freq: %u (base freq: %u)\n",
230 __func__, fspi, fin);
231 return 0xff;
232 }
233
234 pre = DIV_ROUND_UP(fin, fspi << post) - 1;
235
236 pr_debug("%s: fin: %u, fspi: %u, post: %u, pre: %u\n",
237 __func__, fin, fspi, post, pre);
Marek Vasut6fd8b852013-12-18 18:31:47 +0100238
239 /* Resulting frequency for the SCLK line. */
240 *fres = (fin / (pre + 1)) >> post;
241
Shawn Guo66de7572011-07-10 01:16:37 +0800242 return (pre << MX51_ECSPI_CTRL_PREDIV_OFFSET) |
243 (post << MX51_ECSPI_CTRL_POSTDIV_OFFSET);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200244}
245
Shawn Guo66de7572011-07-10 01:16:37 +0800246static void __maybe_unused mx51_ecspi_intctrl(struct spi_imx_data *spi_imx, int enable)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200247{
248 unsigned val = 0;
249
250 if (enable & MXC_INT_TE)
Shawn Guo66de7572011-07-10 01:16:37 +0800251 val |= MX51_ECSPI_INT_TEEN;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200252
253 if (enable & MXC_INT_RR)
Shawn Guo66de7572011-07-10 01:16:37 +0800254 val |= MX51_ECSPI_INT_RREN;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200255
Shawn Guo66de7572011-07-10 01:16:37 +0800256 writel(val, spi_imx->base + MX51_ECSPI_INT);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200257}
258
Shawn Guo66de7572011-07-10 01:16:37 +0800259static void __maybe_unused mx51_ecspi_trigger(struct spi_imx_data *spi_imx)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200260{
261 u32 reg;
262
Shawn Guo66de7572011-07-10 01:16:37 +0800263 reg = readl(spi_imx->base + MX51_ECSPI_CTRL);
264 reg |= MX51_ECSPI_CTRL_XCH;
265 writel(reg, spi_imx->base + MX51_ECSPI_CTRL);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200266}
267
Shawn Guo66de7572011-07-10 01:16:37 +0800268static int __maybe_unused mx51_ecspi_config(struct spi_imx_data *spi_imx,
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200269 struct spi_imx_config *config)
270{
Shawn Guo66de7572011-07-10 01:16:37 +0800271 u32 ctrl = MX51_ECSPI_CTRL_ENABLE, cfg = 0;
Marek Vasut6fd8b852013-12-18 18:31:47 +0100272 u32 clk = config->speed_hz, delay;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200273
Sascha Hauerf020c392011-02-08 21:08:59 +0100274 /*
275 * The hardware seems to have a race condition when changing modes. The
276 * current assumption is that the selection of the channel arrives
277 * earlier in the hardware than the mode bits when they are written at
278 * the same time.
279 * So set master mode for all channels as we do not support slave mode.
280 */
Shawn Guo66de7572011-07-10 01:16:37 +0800281 ctrl |= MX51_ECSPI_CTRL_MODE_MASK;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200282
283 /* set clock speed */
Marek Vasut6fd8b852013-12-18 18:31:47 +0100284 ctrl |= mx51_ecspi_clkdiv(spi_imx->spi_clk, config->speed_hz, &clk);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200285
286 /* set chip select to use */
Shawn Guo66de7572011-07-10 01:16:37 +0800287 ctrl |= MX51_ECSPI_CTRL_CS(config->cs);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200288
Shawn Guo66de7572011-07-10 01:16:37 +0800289 ctrl |= (config->bpw - 1) << MX51_ECSPI_CTRL_BL_OFFSET;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200290
Shawn Guo66de7572011-07-10 01:16:37 +0800291 cfg |= MX51_ECSPI_CONFIG_SBBCTRL(config->cs);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200292
293 if (config->mode & SPI_CPHA)
Shawn Guo66de7572011-07-10 01:16:37 +0800294 cfg |= MX51_ECSPI_CONFIG_SCLKPHA(config->cs);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200295
Knut Wohlrabc09b8902012-09-25 13:21:57 +0200296 if (config->mode & SPI_CPOL) {
Shawn Guo66de7572011-07-10 01:16:37 +0800297 cfg |= MX51_ECSPI_CONFIG_SCLKPOL(config->cs);
Knut Wohlrabc09b8902012-09-25 13:21:57 +0200298 cfg |= MX51_ECSPI_CONFIG_SCLKCTL(config->cs);
299 }
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200300 if (config->mode & SPI_CS_HIGH)
Shawn Guo66de7572011-07-10 01:16:37 +0800301 cfg |= MX51_ECSPI_CONFIG_SSBPOL(config->cs);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200302
Shawn Guo66de7572011-07-10 01:16:37 +0800303 writel(ctrl, spi_imx->base + MX51_ECSPI_CTRL);
304 writel(cfg, spi_imx->base + MX51_ECSPI_CONFIG);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200305
Marek Vasut6fd8b852013-12-18 18:31:47 +0100306 /*
307 * Wait until the changes in the configuration register CONFIGREG
308 * propagate into the hardware. It takes exactly one tick of the
309 * SCLK clock, but we will wait two SCLK clock just to be sure. The
310 * effect of the delay it takes for the hardware to apply changes
311 * is noticable if the SCLK clock run very slow. In such a case, if
312 * the polarity of SCLK should be inverted, the GPIO ChipSelect might
313 * be asserted before the SCLK polarity changes, which would disrupt
314 * the SPI communication as the device on the other end would consider
315 * the change of SCLK polarity as a clock tick already.
316 */
317 delay = (2 * 1000000) / clk;
318 if (likely(delay < 10)) /* SCLK is faster than 100 kHz */
319 udelay(delay);
320 else /* SCLK is _very_ slow */
321 usleep_range(delay, delay + 10);
322
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200323 return 0;
324}
325
Shawn Guo66de7572011-07-10 01:16:37 +0800326static int __maybe_unused mx51_ecspi_rx_available(struct spi_imx_data *spi_imx)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200327{
Shawn Guo66de7572011-07-10 01:16:37 +0800328 return readl(spi_imx->base + MX51_ECSPI_STAT) & MX51_ECSPI_STAT_RR;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200329}
330
Shawn Guo66de7572011-07-10 01:16:37 +0800331static void __maybe_unused mx51_ecspi_reset(struct spi_imx_data *spi_imx)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200332{
333 /* drain receive buffer */
Shawn Guo66de7572011-07-10 01:16:37 +0800334 while (mx51_ecspi_rx_available(spi_imx))
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200335 readl(spi_imx->base + MXC_CSPIRXDATA);
336}
337
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700338#define MX31_INTREG_TEEN (1 << 0)
339#define MX31_INTREG_RREN (1 << 3)
340
341#define MX31_CSPICTRL_ENABLE (1 << 0)
342#define MX31_CSPICTRL_MASTER (1 << 1)
343#define MX31_CSPICTRL_XCH (1 << 2)
344#define MX31_CSPICTRL_POL (1 << 4)
345#define MX31_CSPICTRL_PHA (1 << 5)
346#define MX31_CSPICTRL_SSCTL (1 << 6)
347#define MX31_CSPICTRL_SSPOL (1 << 7)
348#define MX31_CSPICTRL_BC_SHIFT 8
349#define MX35_CSPICTRL_BL_SHIFT 20
350#define MX31_CSPICTRL_CS_SHIFT 24
351#define MX35_CSPICTRL_CS_SHIFT 12
352#define MX31_CSPICTRL_DR_SHIFT 16
353
354#define MX31_CSPISTATUS 0x14
355#define MX31_STATUS_RR (1 << 3)
356
357/* These functions also work for the i.MX35, but be aware that
358 * the i.MX35 has a slightly different register layout for bits
359 * we do not use here.
360 */
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200361static void __maybe_unused mx31_intctrl(struct spi_imx_data *spi_imx, int enable)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700362{
363 unsigned int val = 0;
364
365 if (enable & MXC_INT_TE)
366 val |= MX31_INTREG_TEEN;
367 if (enable & MXC_INT_RR)
368 val |= MX31_INTREG_RREN;
369
370 writel(val, spi_imx->base + MXC_CSPIINT);
371}
372
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200373static void __maybe_unused mx31_trigger(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700374{
375 unsigned int reg;
376
377 reg = readl(spi_imx->base + MXC_CSPICTRL);
378 reg |= MX31_CSPICTRL_XCH;
379 writel(reg, spi_imx->base + MXC_CSPICTRL);
380}
381
Shawn Guo2a64a902011-07-10 01:16:38 +0800382static int __maybe_unused mx31_config(struct spi_imx_data *spi_imx,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700383 struct spi_imx_config *config)
384{
385 unsigned int reg = MX31_CSPICTRL_ENABLE | MX31_CSPICTRL_MASTER;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200386 int cs = spi_imx->chipselect[config->cs];
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700387
388 reg |= spi_imx_clkdiv_2(spi_imx->spi_clk, config->speed_hz) <<
389 MX31_CSPICTRL_DR_SHIFT;
390
Shawn Guo04ee5852011-07-10 01:16:39 +0800391 if (is_imx35_cspi(spi_imx)) {
Shawn Guo2a64a902011-07-10 01:16:38 +0800392 reg |= (config->bpw - 1) << MX35_CSPICTRL_BL_SHIFT;
393 reg |= MX31_CSPICTRL_SSCTL;
394 } else {
395 reg |= (config->bpw - 1) << MX31_CSPICTRL_BC_SHIFT;
396 }
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700397
398 if (config->mode & SPI_CPHA)
399 reg |= MX31_CSPICTRL_PHA;
400 if (config->mode & SPI_CPOL)
401 reg |= MX31_CSPICTRL_POL;
402 if (config->mode & SPI_CS_HIGH)
403 reg |= MX31_CSPICTRL_SSPOL;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200404 if (cs < 0)
Shawn Guo2a64a902011-07-10 01:16:38 +0800405 reg |= (cs + 32) <<
Shawn Guo04ee5852011-07-10 01:16:39 +0800406 (is_imx35_cspi(spi_imx) ? MX35_CSPICTRL_CS_SHIFT :
407 MX31_CSPICTRL_CS_SHIFT);
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200408
409 writel(reg, spi_imx->base + MXC_CSPICTRL);
410
411 return 0;
412}
413
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200414static int __maybe_unused mx31_rx_available(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700415{
416 return readl(spi_imx->base + MX31_CSPISTATUS) & MX31_STATUS_RR;
417}
418
Shawn Guo2a64a902011-07-10 01:16:38 +0800419static void __maybe_unused mx31_reset(struct spi_imx_data *spi_imx)
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200420{
421 /* drain receive buffer */
Shawn Guo2a64a902011-07-10 01:16:38 +0800422 while (readl(spi_imx->base + MX31_CSPISTATUS) & MX31_STATUS_RR)
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200423 readl(spi_imx->base + MXC_CSPIRXDATA);
424}
425
Shawn Guo3451fb12011-07-10 01:16:36 +0800426#define MX21_INTREG_RR (1 << 4)
427#define MX21_INTREG_TEEN (1 << 9)
428#define MX21_INTREG_RREN (1 << 13)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700429
Shawn Guo3451fb12011-07-10 01:16:36 +0800430#define MX21_CSPICTRL_POL (1 << 5)
431#define MX21_CSPICTRL_PHA (1 << 6)
432#define MX21_CSPICTRL_SSPOL (1 << 8)
433#define MX21_CSPICTRL_XCH (1 << 9)
434#define MX21_CSPICTRL_ENABLE (1 << 10)
435#define MX21_CSPICTRL_MASTER (1 << 11)
436#define MX21_CSPICTRL_DR_SHIFT 14
437#define MX21_CSPICTRL_CS_SHIFT 19
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700438
Shawn Guo3451fb12011-07-10 01:16:36 +0800439static void __maybe_unused mx21_intctrl(struct spi_imx_data *spi_imx, int enable)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700440{
441 unsigned int val = 0;
442
443 if (enable & MXC_INT_TE)
Shawn Guo3451fb12011-07-10 01:16:36 +0800444 val |= MX21_INTREG_TEEN;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700445 if (enable & MXC_INT_RR)
Shawn Guo3451fb12011-07-10 01:16:36 +0800446 val |= MX21_INTREG_RREN;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700447
448 writel(val, spi_imx->base + MXC_CSPIINT);
449}
450
Shawn Guo3451fb12011-07-10 01:16:36 +0800451static void __maybe_unused mx21_trigger(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700452{
453 unsigned int reg;
454
455 reg = readl(spi_imx->base + MXC_CSPICTRL);
Shawn Guo3451fb12011-07-10 01:16:36 +0800456 reg |= MX21_CSPICTRL_XCH;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700457 writel(reg, spi_imx->base + MXC_CSPICTRL);
458}
459
Shawn Guo3451fb12011-07-10 01:16:36 +0800460static int __maybe_unused mx21_config(struct spi_imx_data *spi_imx,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700461 struct spi_imx_config *config)
462{
Shawn Guo3451fb12011-07-10 01:16:36 +0800463 unsigned int reg = MX21_CSPICTRL_ENABLE | MX21_CSPICTRL_MASTER;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200464 int cs = spi_imx->chipselect[config->cs];
Shawn Guo04ee5852011-07-10 01:16:39 +0800465 unsigned int max = is_imx27_cspi(spi_imx) ? 16 : 18;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700466
Shawn Guo04ee5852011-07-10 01:16:39 +0800467 reg |= spi_imx_clkdiv_1(spi_imx->spi_clk, config->speed_hz, max) <<
Shawn Guo3451fb12011-07-10 01:16:36 +0800468 MX21_CSPICTRL_DR_SHIFT;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700469 reg |= config->bpw - 1;
470
471 if (config->mode & SPI_CPHA)
Shawn Guo3451fb12011-07-10 01:16:36 +0800472 reg |= MX21_CSPICTRL_PHA;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700473 if (config->mode & SPI_CPOL)
Shawn Guo3451fb12011-07-10 01:16:36 +0800474 reg |= MX21_CSPICTRL_POL;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700475 if (config->mode & SPI_CS_HIGH)
Shawn Guo3451fb12011-07-10 01:16:36 +0800476 reg |= MX21_CSPICTRL_SSPOL;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200477 if (cs < 0)
Shawn Guo3451fb12011-07-10 01:16:36 +0800478 reg |= (cs + 32) << MX21_CSPICTRL_CS_SHIFT;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700479
480 writel(reg, spi_imx->base + MXC_CSPICTRL);
481
482 return 0;
483}
484
Shawn Guo3451fb12011-07-10 01:16:36 +0800485static int __maybe_unused mx21_rx_available(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700486{
Shawn Guo3451fb12011-07-10 01:16:36 +0800487 return readl(spi_imx->base + MXC_CSPIINT) & MX21_INTREG_RR;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700488}
489
Shawn Guo3451fb12011-07-10 01:16:36 +0800490static void __maybe_unused mx21_reset(struct spi_imx_data *spi_imx)
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200491{
492 writel(1, spi_imx->base + MXC_RESET);
493}
494
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700495#define MX1_INTREG_RR (1 << 3)
496#define MX1_INTREG_TEEN (1 << 8)
497#define MX1_INTREG_RREN (1 << 11)
498
499#define MX1_CSPICTRL_POL (1 << 4)
500#define MX1_CSPICTRL_PHA (1 << 5)
501#define MX1_CSPICTRL_XCH (1 << 8)
502#define MX1_CSPICTRL_ENABLE (1 << 9)
503#define MX1_CSPICTRL_MASTER (1 << 10)
504#define MX1_CSPICTRL_DR_SHIFT 13
505
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200506static void __maybe_unused mx1_intctrl(struct spi_imx_data *spi_imx, int enable)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700507{
508 unsigned int val = 0;
509
510 if (enable & MXC_INT_TE)
511 val |= MX1_INTREG_TEEN;
512 if (enable & MXC_INT_RR)
513 val |= MX1_INTREG_RREN;
514
515 writel(val, spi_imx->base + MXC_CSPIINT);
516}
517
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200518static void __maybe_unused mx1_trigger(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700519{
520 unsigned int reg;
521
522 reg = readl(spi_imx->base + MXC_CSPICTRL);
523 reg |= MX1_CSPICTRL_XCH;
524 writel(reg, spi_imx->base + MXC_CSPICTRL);
525}
526
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200527static int __maybe_unused mx1_config(struct spi_imx_data *spi_imx,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700528 struct spi_imx_config *config)
529{
530 unsigned int reg = MX1_CSPICTRL_ENABLE | MX1_CSPICTRL_MASTER;
531
532 reg |= spi_imx_clkdiv_2(spi_imx->spi_clk, config->speed_hz) <<
533 MX1_CSPICTRL_DR_SHIFT;
534 reg |= config->bpw - 1;
535
536 if (config->mode & SPI_CPHA)
537 reg |= MX1_CSPICTRL_PHA;
538 if (config->mode & SPI_CPOL)
539 reg |= MX1_CSPICTRL_POL;
540
541 writel(reg, spi_imx->base + MXC_CSPICTRL);
542
543 return 0;
544}
545
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200546static int __maybe_unused mx1_rx_available(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700547{
548 return readl(spi_imx->base + MXC_CSPIINT) & MX1_INTREG_RR;
549}
550
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200551static void __maybe_unused mx1_reset(struct spi_imx_data *spi_imx)
552{
553 writel(1, spi_imx->base + MXC_RESET);
554}
555
Shawn Guo04ee5852011-07-10 01:16:39 +0800556static struct spi_imx_devtype_data imx1_cspi_devtype_data = {
557 .intctrl = mx1_intctrl,
558 .config = mx1_config,
559 .trigger = mx1_trigger,
560 .rx_available = mx1_rx_available,
561 .reset = mx1_reset,
562 .devtype = IMX1_CSPI,
563};
564
565static struct spi_imx_devtype_data imx21_cspi_devtype_data = {
566 .intctrl = mx21_intctrl,
567 .config = mx21_config,
568 .trigger = mx21_trigger,
569 .rx_available = mx21_rx_available,
570 .reset = mx21_reset,
571 .devtype = IMX21_CSPI,
572};
573
574static struct spi_imx_devtype_data imx27_cspi_devtype_data = {
575 /* i.mx27 cspi shares the functions with i.mx21 one */
576 .intctrl = mx21_intctrl,
577 .config = mx21_config,
578 .trigger = mx21_trigger,
579 .rx_available = mx21_rx_available,
580 .reset = mx21_reset,
581 .devtype = IMX27_CSPI,
582};
583
584static struct spi_imx_devtype_data imx31_cspi_devtype_data = {
585 .intctrl = mx31_intctrl,
586 .config = mx31_config,
587 .trigger = mx31_trigger,
588 .rx_available = mx31_rx_available,
589 .reset = mx31_reset,
590 .devtype = IMX31_CSPI,
591};
592
593static struct spi_imx_devtype_data imx35_cspi_devtype_data = {
594 /* i.mx35 and later cspi shares the functions with i.mx31 one */
595 .intctrl = mx31_intctrl,
596 .config = mx31_config,
597 .trigger = mx31_trigger,
598 .rx_available = mx31_rx_available,
599 .reset = mx31_reset,
600 .devtype = IMX35_CSPI,
601};
602
603static struct spi_imx_devtype_data imx51_ecspi_devtype_data = {
604 .intctrl = mx51_ecspi_intctrl,
605 .config = mx51_ecspi_config,
606 .trigger = mx51_ecspi_trigger,
607 .rx_available = mx51_ecspi_rx_available,
608 .reset = mx51_ecspi_reset,
609 .devtype = IMX51_ECSPI,
610};
611
612static struct platform_device_id spi_imx_devtype[] = {
613 {
614 .name = "imx1-cspi",
615 .driver_data = (kernel_ulong_t) &imx1_cspi_devtype_data,
616 }, {
617 .name = "imx21-cspi",
618 .driver_data = (kernel_ulong_t) &imx21_cspi_devtype_data,
619 }, {
620 .name = "imx27-cspi",
621 .driver_data = (kernel_ulong_t) &imx27_cspi_devtype_data,
622 }, {
623 .name = "imx31-cspi",
624 .driver_data = (kernel_ulong_t) &imx31_cspi_devtype_data,
625 }, {
626 .name = "imx35-cspi",
627 .driver_data = (kernel_ulong_t) &imx35_cspi_devtype_data,
628 }, {
629 .name = "imx51-ecspi",
630 .driver_data = (kernel_ulong_t) &imx51_ecspi_devtype_data,
631 }, {
632 /* sentinel */
633 }
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200634};
635
Shawn Guo22a85e42011-07-10 01:16:41 +0800636static const struct of_device_id spi_imx_dt_ids[] = {
637 { .compatible = "fsl,imx1-cspi", .data = &imx1_cspi_devtype_data, },
638 { .compatible = "fsl,imx21-cspi", .data = &imx21_cspi_devtype_data, },
639 { .compatible = "fsl,imx27-cspi", .data = &imx27_cspi_devtype_data, },
640 { .compatible = "fsl,imx31-cspi", .data = &imx31_cspi_devtype_data, },
641 { .compatible = "fsl,imx35-cspi", .data = &imx35_cspi_devtype_data, },
642 { .compatible = "fsl,imx51-ecspi", .data = &imx51_ecspi_devtype_data, },
643 { /* sentinel */ }
644};
Niels de Vos27743e02013-07-29 09:38:05 +0200645MODULE_DEVICE_TABLE(of, spi_imx_dt_ids);
Shawn Guo22a85e42011-07-10 01:16:41 +0800646
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700647static void spi_imx_chipselect(struct spi_device *spi, int is_active)
648{
649 struct spi_imx_data *spi_imx = spi_master_get_devdata(spi->master);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700650 int gpio = spi_imx->chipselect[spi->chip_select];
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700651 int active = is_active != BITBANG_CS_INACTIVE;
652 int dev_is_lowactive = !(spi->mode & SPI_CS_HIGH);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700653
Hui Wang8b17e052012-07-13 10:51:29 +0800654 if (!gpio_is_valid(gpio))
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700655 return;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700656
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700657 gpio_set_value(gpio, dev_is_lowactive ^ active);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700658}
659
660static void spi_imx_push(struct spi_imx_data *spi_imx)
661{
Shawn Guo04ee5852011-07-10 01:16:39 +0800662 while (spi_imx->txfifo < spi_imx_get_fifosize(spi_imx)) {
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700663 if (!spi_imx->count)
664 break;
665 spi_imx->tx(spi_imx);
666 spi_imx->txfifo++;
667 }
668
Shawn Guoedd501bb2011-07-10 01:16:35 +0800669 spi_imx->devtype_data->trigger(spi_imx);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700670}
671
672static irqreturn_t spi_imx_isr(int irq, void *dev_id)
673{
674 struct spi_imx_data *spi_imx = dev_id;
675
Shawn Guoedd501bb2011-07-10 01:16:35 +0800676 while (spi_imx->devtype_data->rx_available(spi_imx)) {
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700677 spi_imx->rx(spi_imx);
678 spi_imx->txfifo--;
679 }
680
681 if (spi_imx->count) {
682 spi_imx_push(spi_imx);
683 return IRQ_HANDLED;
684 }
685
686 if (spi_imx->txfifo) {
687 /* No data left to push, but still waiting for rx data,
688 * enable receive data available interrupt.
689 */
Shawn Guoedd501bb2011-07-10 01:16:35 +0800690 spi_imx->devtype_data->intctrl(
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200691 spi_imx, MXC_INT_RR);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700692 return IRQ_HANDLED;
693 }
694
Shawn Guoedd501bb2011-07-10 01:16:35 +0800695 spi_imx->devtype_data->intctrl(spi_imx, 0);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700696 complete(&spi_imx->xfer_done);
697
698 return IRQ_HANDLED;
699}
700
701static int spi_imx_setupxfer(struct spi_device *spi,
702 struct spi_transfer *t)
703{
704 struct spi_imx_data *spi_imx = spi_master_get_devdata(spi->master);
705 struct spi_imx_config config;
706
707 config.bpw = t ? t->bits_per_word : spi->bits_per_word;
708 config.speed_hz = t ? t->speed_hz : spi->max_speed_hz;
709 config.mode = spi->mode;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200710 config.cs = spi->chip_select;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700711
Sascha Hauer462d26b2009-10-01 15:44:29 -0700712 if (!config.speed_hz)
713 config.speed_hz = spi->max_speed_hz;
714 if (!config.bpw)
715 config.bpw = spi->bits_per_word;
Sascha Hauer462d26b2009-10-01 15:44:29 -0700716
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700717 /* Initialize the functions for transfer */
718 if (config.bpw <= 8) {
719 spi_imx->rx = spi_imx_buf_rx_u8;
720 spi_imx->tx = spi_imx_buf_tx_u8;
721 } else if (config.bpw <= 16) {
722 spi_imx->rx = spi_imx_buf_rx_u16;
723 spi_imx->tx = spi_imx_buf_tx_u16;
Sachin Kamat60514262013-05-30 13:38:09 +0530724 } else {
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700725 spi_imx->rx = spi_imx_buf_rx_u32;
726 spi_imx->tx = spi_imx_buf_tx_u32;
Stephen Warren24778be2013-05-21 20:36:35 -0600727 }
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700728
Shawn Guoedd501bb2011-07-10 01:16:35 +0800729 spi_imx->devtype_data->config(spi_imx, &config);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700730
731 return 0;
732}
733
734static int spi_imx_transfer(struct spi_device *spi,
735 struct spi_transfer *transfer)
736{
737 struct spi_imx_data *spi_imx = spi_master_get_devdata(spi->master);
738
739 spi_imx->tx_buf = transfer->tx_buf;
740 spi_imx->rx_buf = transfer->rx_buf;
741 spi_imx->count = transfer->len;
742 spi_imx->txfifo = 0;
743
744 init_completion(&spi_imx->xfer_done);
745
746 spi_imx_push(spi_imx);
747
Shawn Guoedd501bb2011-07-10 01:16:35 +0800748 spi_imx->devtype_data->intctrl(spi_imx, MXC_INT_TE);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700749
750 wait_for_completion(&spi_imx->xfer_done);
751
752 return transfer->len;
753}
754
755static int spi_imx_setup(struct spi_device *spi)
756{
Sascha Hauer6c23e5d2009-10-01 15:44:29 -0700757 struct spi_imx_data *spi_imx = spi_master_get_devdata(spi->master);
758 int gpio = spi_imx->chipselect[spi->chip_select];
759
Alberto Panizzof4d4ecf2010-01-20 13:49:45 -0700760 dev_dbg(&spi->dev, "%s: mode %d, %u bpw, %d hz\n", __func__,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700761 spi->mode, spi->bits_per_word, spi->max_speed_hz);
762
Hui Wang8b17e052012-07-13 10:51:29 +0800763 if (gpio_is_valid(gpio))
Sascha Hauer6c23e5d2009-10-01 15:44:29 -0700764 gpio_direction_output(gpio, spi->mode & SPI_CS_HIGH ? 0 : 1);
765
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700766 spi_imx_chipselect(spi, BITBANG_CS_INACTIVE);
767
768 return 0;
769}
770
771static void spi_imx_cleanup(struct spi_device *spi)
772{
773}
774
Huang Shijie9e556dc2013-10-23 16:31:50 +0800775static int
776spi_imx_prepare_message(struct spi_master *master, struct spi_message *msg)
777{
778 struct spi_imx_data *spi_imx = spi_master_get_devdata(master);
779 int ret;
780
781 ret = clk_enable(spi_imx->clk_per);
782 if (ret)
783 return ret;
784
785 ret = clk_enable(spi_imx->clk_ipg);
786 if (ret) {
787 clk_disable(spi_imx->clk_per);
788 return ret;
789 }
790
791 return 0;
792}
793
794static int
795spi_imx_unprepare_message(struct spi_master *master, struct spi_message *msg)
796{
797 struct spi_imx_data *spi_imx = spi_master_get_devdata(master);
798
799 clk_disable(spi_imx->clk_ipg);
800 clk_disable(spi_imx->clk_per);
801 return 0;
802}
803
Grant Likelyfd4a3192012-12-07 16:57:14 +0000804static int spi_imx_probe(struct platform_device *pdev)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700805{
Shawn Guo22a85e42011-07-10 01:16:41 +0800806 struct device_node *np = pdev->dev.of_node;
807 const struct of_device_id *of_id =
808 of_match_device(spi_imx_dt_ids, &pdev->dev);
809 struct spi_imx_master *mxc_platform_info =
810 dev_get_platdata(&pdev->dev);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700811 struct spi_master *master;
812 struct spi_imx_data *spi_imx;
813 struct resource *res;
Shawn Guoc2387cb2011-07-10 01:16:40 +0800814 int i, ret, num_cs;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700815
Shawn Guo22a85e42011-07-10 01:16:41 +0800816 if (!np && !mxc_platform_info) {
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700817 dev_err(&pdev->dev, "can't get the platform data\n");
818 return -EINVAL;
819 }
820
Shawn Guo22a85e42011-07-10 01:16:41 +0800821 ret = of_property_read_u32(np, "fsl,spi-num-chipselects", &num_cs);
Lothar Waßmann39ec0d32012-04-03 15:03:44 +0200822 if (ret < 0) {
823 if (mxc_platform_info)
824 num_cs = mxc_platform_info->num_chipselect;
825 else
826 return ret;
827 }
Shawn Guo22a85e42011-07-10 01:16:41 +0800828
Shawn Guoc2387cb2011-07-10 01:16:40 +0800829 master = spi_alloc_master(&pdev->dev,
830 sizeof(struct spi_imx_data) + sizeof(int) * num_cs);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700831 if (!master)
832 return -ENOMEM;
833
834 platform_set_drvdata(pdev, master);
835
Stephen Warren24778be2013-05-21 20:36:35 -0600836 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 32);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700837 master->bus_num = pdev->id;
Shawn Guoc2387cb2011-07-10 01:16:40 +0800838 master->num_chipselect = num_cs;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700839
840 spi_imx = spi_master_get_devdata(master);
Axel Lin94c69f72013-09-10 15:43:41 +0800841 spi_imx->bitbang.master = master;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700842
843 for (i = 0; i < master->num_chipselect; i++) {
Shawn Guo22a85e42011-07-10 01:16:41 +0800844 int cs_gpio = of_get_named_gpio(np, "cs-gpios", i);
Hui Wang8b17e052012-07-13 10:51:29 +0800845 if (!gpio_is_valid(cs_gpio) && mxc_platform_info)
Shawn Guo22a85e42011-07-10 01:16:41 +0800846 cs_gpio = mxc_platform_info->chipselect[i];
Fabio Estevam4cc122a2011-09-15 17:21:15 -0300847
848 spi_imx->chipselect[i] = cs_gpio;
Hui Wang8b17e052012-07-13 10:51:29 +0800849 if (!gpio_is_valid(cs_gpio))
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700850 continue;
Fabio Estevam4cc122a2011-09-15 17:21:15 -0300851
Fabio Estevam130b82c2013-07-11 01:26:48 -0300852 ret = devm_gpio_request(&pdev->dev, spi_imx->chipselect[i],
853 DRIVER_NAME);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700854 if (ret) {
John Ognessbbd050a2009-11-24 16:53:07 +0000855 dev_err(&pdev->dev, "can't get cs gpios\n");
Fabio Estevam130b82c2013-07-11 01:26:48 -0300856 goto out_master_put;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700857 }
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700858 }
859
860 spi_imx->bitbang.chipselect = spi_imx_chipselect;
861 spi_imx->bitbang.setup_transfer = spi_imx_setupxfer;
862 spi_imx->bitbang.txrx_bufs = spi_imx_transfer;
863 spi_imx->bitbang.master->setup = spi_imx_setup;
864 spi_imx->bitbang.master->cleanup = spi_imx_cleanup;
Huang Shijie9e556dc2013-10-23 16:31:50 +0800865 spi_imx->bitbang.master->prepare_message = spi_imx_prepare_message;
866 spi_imx->bitbang.master->unprepare_message = spi_imx_unprepare_message;
Sascha Hauer3910f2c2009-10-01 15:44:30 -0700867 spi_imx->bitbang.master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700868
869 init_completion(&spi_imx->xfer_done);
870
Shawn Guo22a85e42011-07-10 01:16:41 +0800871 spi_imx->devtype_data = of_id ? of_id->data :
Shawn Guo04ee5852011-07-10 01:16:39 +0800872 (struct spi_imx_devtype_data *) pdev->id_entry->driver_data;
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200873
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700874 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Fabio Estevam130b82c2013-07-11 01:26:48 -0300875 spi_imx->base = devm_ioremap_resource(&pdev->dev, res);
876 if (IS_ERR(spi_imx->base)) {
877 ret = PTR_ERR(spi_imx->base);
878 goto out_master_put;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700879 }
880
881 spi_imx->irq = platform_get_irq(pdev, 0);
Richard Genoud73575932011-01-07 15:26:01 +0100882 if (spi_imx->irq < 0) {
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700883 ret = -EINVAL;
Fabio Estevam130b82c2013-07-11 01:26:48 -0300884 goto out_master_put;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700885 }
886
Fabio Estevam130b82c2013-07-11 01:26:48 -0300887 ret = devm_request_irq(&pdev->dev, spi_imx->irq, spi_imx_isr, 0,
888 DRIVER_NAME, spi_imx);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700889 if (ret) {
890 dev_err(&pdev->dev, "can't get irq%d: %d\n", spi_imx->irq, ret);
Fabio Estevam130b82c2013-07-11 01:26:48 -0300891 goto out_master_put;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700892 }
893
Sascha Haueraa29d842012-03-07 09:30:22 +0100894 spi_imx->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
895 if (IS_ERR(spi_imx->clk_ipg)) {
896 ret = PTR_ERR(spi_imx->clk_ipg);
Fabio Estevam130b82c2013-07-11 01:26:48 -0300897 goto out_master_put;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700898 }
899
Sascha Haueraa29d842012-03-07 09:30:22 +0100900 spi_imx->clk_per = devm_clk_get(&pdev->dev, "per");
901 if (IS_ERR(spi_imx->clk_per)) {
902 ret = PTR_ERR(spi_imx->clk_per);
Fabio Estevam130b82c2013-07-11 01:26:48 -0300903 goto out_master_put;
Sascha Haueraa29d842012-03-07 09:30:22 +0100904 }
905
Fabio Estevam83174622013-07-11 01:26:49 -0300906 ret = clk_prepare_enable(spi_imx->clk_per);
907 if (ret)
908 goto out_master_put;
909
910 ret = clk_prepare_enable(spi_imx->clk_ipg);
911 if (ret)
912 goto out_put_per;
Sascha Haueraa29d842012-03-07 09:30:22 +0100913
914 spi_imx->spi_clk = clk_get_rate(spi_imx->clk_per);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700915
Shawn Guoedd501bb2011-07-10 01:16:35 +0800916 spi_imx->devtype_data->reset(spi_imx);
Daniel Mackce1807b2009-11-19 19:01:42 +0000917
Shawn Guoedd501bb2011-07-10 01:16:35 +0800918 spi_imx->devtype_data->intctrl(spi_imx, 0);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700919
Shawn Guo22a85e42011-07-10 01:16:41 +0800920 master->dev.of_node = pdev->dev.of_node;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700921 ret = spi_bitbang_start(&spi_imx->bitbang);
922 if (ret) {
923 dev_err(&pdev->dev, "bitbang start failed with %d\n", ret);
924 goto out_clk_put;
925 }
926
927 dev_info(&pdev->dev, "probed\n");
928
Huang Shijie9e556dc2013-10-23 16:31:50 +0800929 clk_disable(spi_imx->clk_ipg);
930 clk_disable(spi_imx->clk_per);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700931 return ret;
932
933out_clk_put:
Sascha Haueraa29d842012-03-07 09:30:22 +0100934 clk_disable_unprepare(spi_imx->clk_ipg);
Fabio Estevam83174622013-07-11 01:26:49 -0300935out_put_per:
936 clk_disable_unprepare(spi_imx->clk_per);
Fabio Estevam130b82c2013-07-11 01:26:48 -0300937out_master_put:
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700938 spi_master_put(master);
Fabio Estevam130b82c2013-07-11 01:26:48 -0300939
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700940 return ret;
941}
942
Grant Likelyfd4a3192012-12-07 16:57:14 +0000943static int spi_imx_remove(struct platform_device *pdev)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700944{
945 struct spi_master *master = platform_get_drvdata(pdev);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700946 struct spi_imx_data *spi_imx = spi_master_get_devdata(master);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700947
948 spi_bitbang_stop(&spi_imx->bitbang);
949
950 writel(0, spi_imx->base + MXC_CSPICTRL);
Sascha Haueraa29d842012-03-07 09:30:22 +0100951 clk_disable_unprepare(spi_imx->clk_ipg);
Fabio Estevam83174622013-07-11 01:26:49 -0300952 clk_disable_unprepare(spi_imx->clk_per);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700953 spi_master_put(master);
954
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700955 return 0;
956}
957
958static struct platform_driver spi_imx_driver = {
959 .driver = {
960 .name = DRIVER_NAME,
961 .owner = THIS_MODULE,
Shawn Guo22a85e42011-07-10 01:16:41 +0800962 .of_match_table = spi_imx_dt_ids,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700963 },
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200964 .id_table = spi_imx_devtype,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700965 .probe = spi_imx_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +0000966 .remove = spi_imx_remove,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700967};
Grant Likely940ab882011-10-05 11:29:49 -0600968module_platform_driver(spi_imx_driver);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700969
970MODULE_DESCRIPTION("SPI Master Controller driver");
971MODULE_AUTHOR("Sascha Hauer, Pengutronix");
972MODULE_LICENSE("GPL");
Fabio Estevam3133fba32013-01-07 20:42:55 -0200973MODULE_ALIAS("platform:" DRIVER_NAME);