blob: 4b6688630b9c3297ba4b861d7aed53993bcc6769 [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
41#include <mach/spi.h>
42
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 Haueraa29d8402012-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
Shawn Guoedd501bb2011-07-10 01:16:35 +080099 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))
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200199
Shawn Guo66de7572011-07-10 01:16:37 +0800200#define MX51_ECSPI_INT 0x10
201#define MX51_ECSPI_INT_TEEN (1 << 0)
202#define MX51_ECSPI_INT_RREN (1 << 3)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200203
Shawn Guo66de7572011-07-10 01:16:37 +0800204#define MX51_ECSPI_STAT 0x18
205#define MX51_ECSPI_STAT_RR (1 << 3)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200206
207/* MX51 eCSPI */
Shawn Guo66de7572011-07-10 01:16:37 +0800208static unsigned int mx51_ecspi_clkdiv(unsigned int fin, unsigned int fspi)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200209{
210 /*
211 * there are two 4-bit dividers, the pre-divider divides by
212 * $pre, the post-divider by 2^$post
213 */
214 unsigned int pre, post;
215
216 if (unlikely(fspi > fin))
217 return 0;
218
219 post = fls(fin) - fls(fspi);
220 if (fin > fspi << post)
221 post++;
222
223 /* now we have: (fin <= fspi << post) with post being minimal */
224
225 post = max(4U, post) - 4;
226 if (unlikely(post > 0xf)) {
227 pr_err("%s: cannot set clock freq: %u (base freq: %u)\n",
228 __func__, fspi, fin);
229 return 0xff;
230 }
231
232 pre = DIV_ROUND_UP(fin, fspi << post) - 1;
233
234 pr_debug("%s: fin: %u, fspi: %u, post: %u, pre: %u\n",
235 __func__, fin, fspi, post, pre);
Shawn Guo66de7572011-07-10 01:16:37 +0800236 return (pre << MX51_ECSPI_CTRL_PREDIV_OFFSET) |
237 (post << MX51_ECSPI_CTRL_POSTDIV_OFFSET);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200238}
239
Shawn Guo66de7572011-07-10 01:16:37 +0800240static void __maybe_unused mx51_ecspi_intctrl(struct spi_imx_data *spi_imx, int enable)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200241{
242 unsigned val = 0;
243
244 if (enable & MXC_INT_TE)
Shawn Guo66de7572011-07-10 01:16:37 +0800245 val |= MX51_ECSPI_INT_TEEN;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200246
247 if (enable & MXC_INT_RR)
Shawn Guo66de7572011-07-10 01:16:37 +0800248 val |= MX51_ECSPI_INT_RREN;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200249
Shawn Guo66de7572011-07-10 01:16:37 +0800250 writel(val, spi_imx->base + MX51_ECSPI_INT);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200251}
252
Shawn Guo66de7572011-07-10 01:16:37 +0800253static void __maybe_unused mx51_ecspi_trigger(struct spi_imx_data *spi_imx)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200254{
255 u32 reg;
256
Shawn Guo66de7572011-07-10 01:16:37 +0800257 reg = readl(spi_imx->base + MX51_ECSPI_CTRL);
258 reg |= MX51_ECSPI_CTRL_XCH;
259 writel(reg, spi_imx->base + MX51_ECSPI_CTRL);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200260}
261
Shawn Guo66de7572011-07-10 01:16:37 +0800262static int __maybe_unused mx51_ecspi_config(struct spi_imx_data *spi_imx,
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200263 struct spi_imx_config *config)
264{
Shawn Guo66de7572011-07-10 01:16:37 +0800265 u32 ctrl = MX51_ECSPI_CTRL_ENABLE, cfg = 0;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200266
Sascha Hauerf020c392011-02-08 21:08:59 +0100267 /*
268 * The hardware seems to have a race condition when changing modes. The
269 * current assumption is that the selection of the channel arrives
270 * earlier in the hardware than the mode bits when they are written at
271 * the same time.
272 * So set master mode for all channels as we do not support slave mode.
273 */
Shawn Guo66de7572011-07-10 01:16:37 +0800274 ctrl |= MX51_ECSPI_CTRL_MODE_MASK;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200275
276 /* set clock speed */
Shawn Guo66de7572011-07-10 01:16:37 +0800277 ctrl |= mx51_ecspi_clkdiv(spi_imx->spi_clk, config->speed_hz);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200278
279 /* set chip select to use */
Shawn Guo66de7572011-07-10 01:16:37 +0800280 ctrl |= MX51_ECSPI_CTRL_CS(config->cs);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200281
Shawn Guo66de7572011-07-10 01:16:37 +0800282 ctrl |= (config->bpw - 1) << MX51_ECSPI_CTRL_BL_OFFSET;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200283
Shawn Guo66de7572011-07-10 01:16:37 +0800284 cfg |= MX51_ECSPI_CONFIG_SBBCTRL(config->cs);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200285
286 if (config->mode & SPI_CPHA)
Shawn Guo66de7572011-07-10 01:16:37 +0800287 cfg |= MX51_ECSPI_CONFIG_SCLKPHA(config->cs);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200288
289 if (config->mode & SPI_CPOL)
Shawn Guo66de7572011-07-10 01:16:37 +0800290 cfg |= MX51_ECSPI_CONFIG_SCLKPOL(config->cs);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200291
292 if (config->mode & SPI_CS_HIGH)
Shawn Guo66de7572011-07-10 01:16:37 +0800293 cfg |= MX51_ECSPI_CONFIG_SSBPOL(config->cs);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200294
Shawn Guo66de7572011-07-10 01:16:37 +0800295 writel(ctrl, spi_imx->base + MX51_ECSPI_CTRL);
296 writel(cfg, spi_imx->base + MX51_ECSPI_CONFIG);
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200297
298 return 0;
299}
300
Shawn Guo66de7572011-07-10 01:16:37 +0800301static int __maybe_unused mx51_ecspi_rx_available(struct spi_imx_data *spi_imx)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200302{
Shawn Guo66de7572011-07-10 01:16:37 +0800303 return readl(spi_imx->base + MX51_ECSPI_STAT) & MX51_ECSPI_STAT_RR;
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200304}
305
Shawn Guo66de7572011-07-10 01:16:37 +0800306static void __maybe_unused mx51_ecspi_reset(struct spi_imx_data *spi_imx)
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200307{
308 /* drain receive buffer */
Shawn Guo66de7572011-07-10 01:16:37 +0800309 while (mx51_ecspi_rx_available(spi_imx))
Uwe Kleine-König0b599602010-09-09 21:02:48 +0200310 readl(spi_imx->base + MXC_CSPIRXDATA);
311}
312
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700313#define MX31_INTREG_TEEN (1 << 0)
314#define MX31_INTREG_RREN (1 << 3)
315
316#define MX31_CSPICTRL_ENABLE (1 << 0)
317#define MX31_CSPICTRL_MASTER (1 << 1)
318#define MX31_CSPICTRL_XCH (1 << 2)
319#define MX31_CSPICTRL_POL (1 << 4)
320#define MX31_CSPICTRL_PHA (1 << 5)
321#define MX31_CSPICTRL_SSCTL (1 << 6)
322#define MX31_CSPICTRL_SSPOL (1 << 7)
323#define MX31_CSPICTRL_BC_SHIFT 8
324#define MX35_CSPICTRL_BL_SHIFT 20
325#define MX31_CSPICTRL_CS_SHIFT 24
326#define MX35_CSPICTRL_CS_SHIFT 12
327#define MX31_CSPICTRL_DR_SHIFT 16
328
329#define MX31_CSPISTATUS 0x14
330#define MX31_STATUS_RR (1 << 3)
331
332/* These functions also work for the i.MX35, but be aware that
333 * the i.MX35 has a slightly different register layout for bits
334 * we do not use here.
335 */
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200336static void __maybe_unused mx31_intctrl(struct spi_imx_data *spi_imx, int enable)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700337{
338 unsigned int val = 0;
339
340 if (enable & MXC_INT_TE)
341 val |= MX31_INTREG_TEEN;
342 if (enable & MXC_INT_RR)
343 val |= MX31_INTREG_RREN;
344
345 writel(val, spi_imx->base + MXC_CSPIINT);
346}
347
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200348static void __maybe_unused mx31_trigger(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700349{
350 unsigned int reg;
351
352 reg = readl(spi_imx->base + MXC_CSPICTRL);
353 reg |= MX31_CSPICTRL_XCH;
354 writel(reg, spi_imx->base + MXC_CSPICTRL);
355}
356
Shawn Guo2a64a902011-07-10 01:16:38 +0800357static int __maybe_unused mx31_config(struct spi_imx_data *spi_imx,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700358 struct spi_imx_config *config)
359{
360 unsigned int reg = MX31_CSPICTRL_ENABLE | MX31_CSPICTRL_MASTER;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200361 int cs = spi_imx->chipselect[config->cs];
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700362
363 reg |= spi_imx_clkdiv_2(spi_imx->spi_clk, config->speed_hz) <<
364 MX31_CSPICTRL_DR_SHIFT;
365
Shawn Guo04ee5852011-07-10 01:16:39 +0800366 if (is_imx35_cspi(spi_imx)) {
Shawn Guo2a64a902011-07-10 01:16:38 +0800367 reg |= (config->bpw - 1) << MX35_CSPICTRL_BL_SHIFT;
368 reg |= MX31_CSPICTRL_SSCTL;
369 } else {
370 reg |= (config->bpw - 1) << MX31_CSPICTRL_BC_SHIFT;
371 }
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700372
373 if (config->mode & SPI_CPHA)
374 reg |= MX31_CSPICTRL_PHA;
375 if (config->mode & SPI_CPOL)
376 reg |= MX31_CSPICTRL_POL;
377 if (config->mode & SPI_CS_HIGH)
378 reg |= MX31_CSPICTRL_SSPOL;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200379 if (cs < 0)
Shawn Guo2a64a902011-07-10 01:16:38 +0800380 reg |= (cs + 32) <<
Shawn Guo04ee5852011-07-10 01:16:39 +0800381 (is_imx35_cspi(spi_imx) ? MX35_CSPICTRL_CS_SHIFT :
382 MX31_CSPICTRL_CS_SHIFT);
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200383
384 writel(reg, spi_imx->base + MXC_CSPICTRL);
385
386 return 0;
387}
388
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200389static int __maybe_unused mx31_rx_available(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700390{
391 return readl(spi_imx->base + MX31_CSPISTATUS) & MX31_STATUS_RR;
392}
393
Shawn Guo2a64a902011-07-10 01:16:38 +0800394static void __maybe_unused mx31_reset(struct spi_imx_data *spi_imx)
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200395{
396 /* drain receive buffer */
Shawn Guo2a64a902011-07-10 01:16:38 +0800397 while (readl(spi_imx->base + MX31_CSPISTATUS) & MX31_STATUS_RR)
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200398 readl(spi_imx->base + MXC_CSPIRXDATA);
399}
400
Shawn Guo3451fb12011-07-10 01:16:36 +0800401#define MX21_INTREG_RR (1 << 4)
402#define MX21_INTREG_TEEN (1 << 9)
403#define MX21_INTREG_RREN (1 << 13)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700404
Shawn Guo3451fb12011-07-10 01:16:36 +0800405#define MX21_CSPICTRL_POL (1 << 5)
406#define MX21_CSPICTRL_PHA (1 << 6)
407#define MX21_CSPICTRL_SSPOL (1 << 8)
408#define MX21_CSPICTRL_XCH (1 << 9)
409#define MX21_CSPICTRL_ENABLE (1 << 10)
410#define MX21_CSPICTRL_MASTER (1 << 11)
411#define MX21_CSPICTRL_DR_SHIFT 14
412#define MX21_CSPICTRL_CS_SHIFT 19
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700413
Shawn Guo3451fb12011-07-10 01:16:36 +0800414static void __maybe_unused mx21_intctrl(struct spi_imx_data *spi_imx, int enable)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700415{
416 unsigned int val = 0;
417
418 if (enable & MXC_INT_TE)
Shawn Guo3451fb12011-07-10 01:16:36 +0800419 val |= MX21_INTREG_TEEN;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700420 if (enable & MXC_INT_RR)
Shawn Guo3451fb12011-07-10 01:16:36 +0800421 val |= MX21_INTREG_RREN;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700422
423 writel(val, spi_imx->base + MXC_CSPIINT);
424}
425
Shawn Guo3451fb12011-07-10 01:16:36 +0800426static void __maybe_unused mx21_trigger(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700427{
428 unsigned int reg;
429
430 reg = readl(spi_imx->base + MXC_CSPICTRL);
Shawn Guo3451fb12011-07-10 01:16:36 +0800431 reg |= MX21_CSPICTRL_XCH;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700432 writel(reg, spi_imx->base + MXC_CSPICTRL);
433}
434
Shawn Guo3451fb12011-07-10 01:16:36 +0800435static int __maybe_unused mx21_config(struct spi_imx_data *spi_imx,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700436 struct spi_imx_config *config)
437{
Shawn Guo3451fb12011-07-10 01:16:36 +0800438 unsigned int reg = MX21_CSPICTRL_ENABLE | MX21_CSPICTRL_MASTER;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200439 int cs = spi_imx->chipselect[config->cs];
Shawn Guo04ee5852011-07-10 01:16:39 +0800440 unsigned int max = is_imx27_cspi(spi_imx) ? 16 : 18;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700441
Shawn Guo04ee5852011-07-10 01:16:39 +0800442 reg |= spi_imx_clkdiv_1(spi_imx->spi_clk, config->speed_hz, max) <<
Shawn Guo3451fb12011-07-10 01:16:36 +0800443 MX21_CSPICTRL_DR_SHIFT;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700444 reg |= config->bpw - 1;
445
446 if (config->mode & SPI_CPHA)
Shawn Guo3451fb12011-07-10 01:16:36 +0800447 reg |= MX21_CSPICTRL_PHA;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700448 if (config->mode & SPI_CPOL)
Shawn Guo3451fb12011-07-10 01:16:36 +0800449 reg |= MX21_CSPICTRL_POL;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700450 if (config->mode & SPI_CS_HIGH)
Shawn Guo3451fb12011-07-10 01:16:36 +0800451 reg |= MX21_CSPICTRL_SSPOL;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200452 if (cs < 0)
Shawn Guo3451fb12011-07-10 01:16:36 +0800453 reg |= (cs + 32) << MX21_CSPICTRL_CS_SHIFT;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700454
455 writel(reg, spi_imx->base + MXC_CSPICTRL);
456
457 return 0;
458}
459
Shawn Guo3451fb12011-07-10 01:16:36 +0800460static int __maybe_unused mx21_rx_available(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700461{
Shawn Guo3451fb12011-07-10 01:16:36 +0800462 return readl(spi_imx->base + MXC_CSPIINT) & MX21_INTREG_RR;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700463}
464
Shawn Guo3451fb12011-07-10 01:16:36 +0800465static void __maybe_unused mx21_reset(struct spi_imx_data *spi_imx)
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200466{
467 writel(1, spi_imx->base + MXC_RESET);
468}
469
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700470#define MX1_INTREG_RR (1 << 3)
471#define MX1_INTREG_TEEN (1 << 8)
472#define MX1_INTREG_RREN (1 << 11)
473
474#define MX1_CSPICTRL_POL (1 << 4)
475#define MX1_CSPICTRL_PHA (1 << 5)
476#define MX1_CSPICTRL_XCH (1 << 8)
477#define MX1_CSPICTRL_ENABLE (1 << 9)
478#define MX1_CSPICTRL_MASTER (1 << 10)
479#define MX1_CSPICTRL_DR_SHIFT 13
480
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200481static void __maybe_unused mx1_intctrl(struct spi_imx_data *spi_imx, int enable)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700482{
483 unsigned int val = 0;
484
485 if (enable & MXC_INT_TE)
486 val |= MX1_INTREG_TEEN;
487 if (enable & MXC_INT_RR)
488 val |= MX1_INTREG_RREN;
489
490 writel(val, spi_imx->base + MXC_CSPIINT);
491}
492
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200493static void __maybe_unused mx1_trigger(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700494{
495 unsigned int reg;
496
497 reg = readl(spi_imx->base + MXC_CSPICTRL);
498 reg |= MX1_CSPICTRL_XCH;
499 writel(reg, spi_imx->base + MXC_CSPICTRL);
500}
501
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200502static int __maybe_unused mx1_config(struct spi_imx_data *spi_imx,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700503 struct spi_imx_config *config)
504{
505 unsigned int reg = MX1_CSPICTRL_ENABLE | MX1_CSPICTRL_MASTER;
506
507 reg |= spi_imx_clkdiv_2(spi_imx->spi_clk, config->speed_hz) <<
508 MX1_CSPICTRL_DR_SHIFT;
509 reg |= config->bpw - 1;
510
511 if (config->mode & SPI_CPHA)
512 reg |= MX1_CSPICTRL_PHA;
513 if (config->mode & SPI_CPOL)
514 reg |= MX1_CSPICTRL_POL;
515
516 writel(reg, spi_imx->base + MXC_CSPICTRL);
517
518 return 0;
519}
520
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200521static int __maybe_unused mx1_rx_available(struct spi_imx_data *spi_imx)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700522{
523 return readl(spi_imx->base + MXC_CSPIINT) & MX1_INTREG_RR;
524}
525
Uwe Kleine-König1723e662010-09-10 09:19:18 +0200526static void __maybe_unused mx1_reset(struct spi_imx_data *spi_imx)
527{
528 writel(1, spi_imx->base + MXC_RESET);
529}
530
Shawn Guo04ee5852011-07-10 01:16:39 +0800531static struct spi_imx_devtype_data imx1_cspi_devtype_data = {
532 .intctrl = mx1_intctrl,
533 .config = mx1_config,
534 .trigger = mx1_trigger,
535 .rx_available = mx1_rx_available,
536 .reset = mx1_reset,
537 .devtype = IMX1_CSPI,
538};
539
540static struct spi_imx_devtype_data imx21_cspi_devtype_data = {
541 .intctrl = mx21_intctrl,
542 .config = mx21_config,
543 .trigger = mx21_trigger,
544 .rx_available = mx21_rx_available,
545 .reset = mx21_reset,
546 .devtype = IMX21_CSPI,
547};
548
549static struct spi_imx_devtype_data imx27_cspi_devtype_data = {
550 /* i.mx27 cspi shares the functions with i.mx21 one */
551 .intctrl = mx21_intctrl,
552 .config = mx21_config,
553 .trigger = mx21_trigger,
554 .rx_available = mx21_rx_available,
555 .reset = mx21_reset,
556 .devtype = IMX27_CSPI,
557};
558
559static struct spi_imx_devtype_data imx31_cspi_devtype_data = {
560 .intctrl = mx31_intctrl,
561 .config = mx31_config,
562 .trigger = mx31_trigger,
563 .rx_available = mx31_rx_available,
564 .reset = mx31_reset,
565 .devtype = IMX31_CSPI,
566};
567
568static struct spi_imx_devtype_data imx35_cspi_devtype_data = {
569 /* i.mx35 and later cspi shares the functions with i.mx31 one */
570 .intctrl = mx31_intctrl,
571 .config = mx31_config,
572 .trigger = mx31_trigger,
573 .rx_available = mx31_rx_available,
574 .reset = mx31_reset,
575 .devtype = IMX35_CSPI,
576};
577
578static struct spi_imx_devtype_data imx51_ecspi_devtype_data = {
579 .intctrl = mx51_ecspi_intctrl,
580 .config = mx51_ecspi_config,
581 .trigger = mx51_ecspi_trigger,
582 .rx_available = mx51_ecspi_rx_available,
583 .reset = mx51_ecspi_reset,
584 .devtype = IMX51_ECSPI,
585};
586
587static struct platform_device_id spi_imx_devtype[] = {
588 {
589 .name = "imx1-cspi",
590 .driver_data = (kernel_ulong_t) &imx1_cspi_devtype_data,
591 }, {
592 .name = "imx21-cspi",
593 .driver_data = (kernel_ulong_t) &imx21_cspi_devtype_data,
594 }, {
595 .name = "imx27-cspi",
596 .driver_data = (kernel_ulong_t) &imx27_cspi_devtype_data,
597 }, {
598 .name = "imx31-cspi",
599 .driver_data = (kernel_ulong_t) &imx31_cspi_devtype_data,
600 }, {
601 .name = "imx35-cspi",
602 .driver_data = (kernel_ulong_t) &imx35_cspi_devtype_data,
603 }, {
604 .name = "imx51-ecspi",
605 .driver_data = (kernel_ulong_t) &imx51_ecspi_devtype_data,
606 }, {
607 /* sentinel */
608 }
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200609};
610
Shawn Guo22a85e42011-07-10 01:16:41 +0800611static const struct of_device_id spi_imx_dt_ids[] = {
612 { .compatible = "fsl,imx1-cspi", .data = &imx1_cspi_devtype_data, },
613 { .compatible = "fsl,imx21-cspi", .data = &imx21_cspi_devtype_data, },
614 { .compatible = "fsl,imx27-cspi", .data = &imx27_cspi_devtype_data, },
615 { .compatible = "fsl,imx31-cspi", .data = &imx31_cspi_devtype_data, },
616 { .compatible = "fsl,imx35-cspi", .data = &imx35_cspi_devtype_data, },
617 { .compatible = "fsl,imx51-ecspi", .data = &imx51_ecspi_devtype_data, },
618 { /* sentinel */ }
619};
620
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700621static void spi_imx_chipselect(struct spi_device *spi, int is_active)
622{
623 struct spi_imx_data *spi_imx = spi_master_get_devdata(spi->master);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700624 int gpio = spi_imx->chipselect[spi->chip_select];
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700625 int active = is_active != BITBANG_CS_INACTIVE;
626 int dev_is_lowactive = !(spi->mode & SPI_CS_HIGH);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700627
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700628 if (gpio < 0)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700629 return;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700630
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700631 gpio_set_value(gpio, dev_is_lowactive ^ active);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700632}
633
634static void spi_imx_push(struct spi_imx_data *spi_imx)
635{
Shawn Guo04ee5852011-07-10 01:16:39 +0800636 while (spi_imx->txfifo < spi_imx_get_fifosize(spi_imx)) {
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700637 if (!spi_imx->count)
638 break;
639 spi_imx->tx(spi_imx);
640 spi_imx->txfifo++;
641 }
642
Shawn Guoedd501bb2011-07-10 01:16:35 +0800643 spi_imx->devtype_data->trigger(spi_imx);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700644}
645
646static irqreturn_t spi_imx_isr(int irq, void *dev_id)
647{
648 struct spi_imx_data *spi_imx = dev_id;
649
Shawn Guoedd501bb2011-07-10 01:16:35 +0800650 while (spi_imx->devtype_data->rx_available(spi_imx)) {
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700651 spi_imx->rx(spi_imx);
652 spi_imx->txfifo--;
653 }
654
655 if (spi_imx->count) {
656 spi_imx_push(spi_imx);
657 return IRQ_HANDLED;
658 }
659
660 if (spi_imx->txfifo) {
661 /* No data left to push, but still waiting for rx data,
662 * enable receive data available interrupt.
663 */
Shawn Guoedd501bb2011-07-10 01:16:35 +0800664 spi_imx->devtype_data->intctrl(
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200665 spi_imx, MXC_INT_RR);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700666 return IRQ_HANDLED;
667 }
668
Shawn Guoedd501bb2011-07-10 01:16:35 +0800669 spi_imx->devtype_data->intctrl(spi_imx, 0);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700670 complete(&spi_imx->xfer_done);
671
672 return IRQ_HANDLED;
673}
674
675static int spi_imx_setupxfer(struct spi_device *spi,
676 struct spi_transfer *t)
677{
678 struct spi_imx_data *spi_imx = spi_master_get_devdata(spi->master);
679 struct spi_imx_config config;
680
681 config.bpw = t ? t->bits_per_word : spi->bits_per_word;
682 config.speed_hz = t ? t->speed_hz : spi->max_speed_hz;
683 config.mode = spi->mode;
Uwe Kleine-König3b2aa892010-09-10 09:42:29 +0200684 config.cs = spi->chip_select;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700685
Sascha Hauer462d26b2009-10-01 15:44:29 -0700686 if (!config.speed_hz)
687 config.speed_hz = spi->max_speed_hz;
688 if (!config.bpw)
689 config.bpw = spi->bits_per_word;
690 if (!config.speed_hz)
691 config.speed_hz = spi->max_speed_hz;
692
Uwe Kleine-Könige6a0a8b2009-10-01 15:44:33 -0700693 /* Initialize the functions for transfer */
694 if (config.bpw <= 8) {
695 spi_imx->rx = spi_imx_buf_rx_u8;
696 spi_imx->tx = spi_imx_buf_tx_u8;
697 } else if (config.bpw <= 16) {
698 spi_imx->rx = spi_imx_buf_rx_u16;
699 spi_imx->tx = spi_imx_buf_tx_u16;
700 } else if (config.bpw <= 32) {
701 spi_imx->rx = spi_imx_buf_rx_u32;
702 spi_imx->tx = spi_imx_buf_tx_u32;
703 } else
704 BUG();
705
Shawn Guoedd501bb2011-07-10 01:16:35 +0800706 spi_imx->devtype_data->config(spi_imx, &config);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700707
708 return 0;
709}
710
711static int spi_imx_transfer(struct spi_device *spi,
712 struct spi_transfer *transfer)
713{
714 struct spi_imx_data *spi_imx = spi_master_get_devdata(spi->master);
715
716 spi_imx->tx_buf = transfer->tx_buf;
717 spi_imx->rx_buf = transfer->rx_buf;
718 spi_imx->count = transfer->len;
719 spi_imx->txfifo = 0;
720
721 init_completion(&spi_imx->xfer_done);
722
723 spi_imx_push(spi_imx);
724
Shawn Guoedd501bb2011-07-10 01:16:35 +0800725 spi_imx->devtype_data->intctrl(spi_imx, MXC_INT_TE);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700726
727 wait_for_completion(&spi_imx->xfer_done);
728
729 return transfer->len;
730}
731
732static int spi_imx_setup(struct spi_device *spi)
733{
Sascha Hauer6c23e5d2009-10-01 15:44:29 -0700734 struct spi_imx_data *spi_imx = spi_master_get_devdata(spi->master);
735 int gpio = spi_imx->chipselect[spi->chip_select];
736
Alberto Panizzof4d4ecf2010-01-20 13:49:45 -0700737 dev_dbg(&spi->dev, "%s: mode %d, %u bpw, %d hz\n", __func__,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700738 spi->mode, spi->bits_per_word, spi->max_speed_hz);
739
Sascha Hauer6c23e5d2009-10-01 15:44:29 -0700740 if (gpio >= 0)
741 gpio_direction_output(gpio, spi->mode & SPI_CS_HIGH ? 0 : 1);
742
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700743 spi_imx_chipselect(spi, BITBANG_CS_INACTIVE);
744
745 return 0;
746}
747
748static void spi_imx_cleanup(struct spi_device *spi)
749{
750}
751
Grant Likely965346e2009-12-13 01:03:12 -0700752static int __devinit spi_imx_probe(struct platform_device *pdev)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700753{
Shawn Guo22a85e42011-07-10 01:16:41 +0800754 struct device_node *np = pdev->dev.of_node;
755 const struct of_device_id *of_id =
756 of_match_device(spi_imx_dt_ids, &pdev->dev);
757 struct spi_imx_master *mxc_platform_info =
758 dev_get_platdata(&pdev->dev);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700759 struct spi_master *master;
760 struct spi_imx_data *spi_imx;
761 struct resource *res;
Shawn Guoc2387cb2011-07-10 01:16:40 +0800762 int i, ret, num_cs;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700763
Shawn Guo22a85e42011-07-10 01:16:41 +0800764 if (!np && !mxc_platform_info) {
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700765 dev_err(&pdev->dev, "can't get the platform data\n");
766 return -EINVAL;
767 }
768
Shawn Guo22a85e42011-07-10 01:16:41 +0800769 ret = of_property_read_u32(np, "fsl,spi-num-chipselects", &num_cs);
Lothar Waßmann39ec0d32012-04-03 15:03:44 +0200770 if (ret < 0) {
771 if (mxc_platform_info)
772 num_cs = mxc_platform_info->num_chipselect;
773 else
774 return ret;
775 }
Shawn Guo22a85e42011-07-10 01:16:41 +0800776
Shawn Guoc2387cb2011-07-10 01:16:40 +0800777 master = spi_alloc_master(&pdev->dev,
778 sizeof(struct spi_imx_data) + sizeof(int) * num_cs);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700779 if (!master)
780 return -ENOMEM;
781
782 platform_set_drvdata(pdev, master);
783
784 master->bus_num = pdev->id;
Shawn Guoc2387cb2011-07-10 01:16:40 +0800785 master->num_chipselect = num_cs;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700786
787 spi_imx = spi_master_get_devdata(master);
788 spi_imx->bitbang.master = spi_master_get(master);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700789
790 for (i = 0; i < master->num_chipselect; i++) {
Shawn Guo22a85e42011-07-10 01:16:41 +0800791 int cs_gpio = of_get_named_gpio(np, "cs-gpios", i);
Lothar Waßmann39ec0d32012-04-03 15:03:44 +0200792 if (cs_gpio < 0 && mxc_platform_info)
Shawn Guo22a85e42011-07-10 01:16:41 +0800793 cs_gpio = mxc_platform_info->chipselect[i];
Fabio Estevam4cc122a2011-09-15 17:21:15 -0300794
795 spi_imx->chipselect[i] = cs_gpio;
Shawn Guo22a85e42011-07-10 01:16:41 +0800796 if (cs_gpio < 0)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700797 continue;
Fabio Estevam4cc122a2011-09-15 17:21:15 -0300798
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700799 ret = gpio_request(spi_imx->chipselect[i], DRIVER_NAME);
800 if (ret) {
John Ognessbbd050a2009-11-24 16:53:07 +0000801 dev_err(&pdev->dev, "can't get cs gpios\n");
Axel Lin00ffc132012-01-10 15:27:36 +0800802 goto out_gpio_free;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700803 }
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700804 }
805
806 spi_imx->bitbang.chipselect = spi_imx_chipselect;
807 spi_imx->bitbang.setup_transfer = spi_imx_setupxfer;
808 spi_imx->bitbang.txrx_bufs = spi_imx_transfer;
809 spi_imx->bitbang.master->setup = spi_imx_setup;
810 spi_imx->bitbang.master->cleanup = spi_imx_cleanup;
Sascha Hauer3910f2c2009-10-01 15:44:30 -0700811 spi_imx->bitbang.master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700812
813 init_completion(&spi_imx->xfer_done);
814
Shawn Guo22a85e42011-07-10 01:16:41 +0800815 spi_imx->devtype_data = of_id ? of_id->data :
Shawn Guo04ee5852011-07-10 01:16:39 +0800816 (struct spi_imx_devtype_data *) pdev->id_entry->driver_data;
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200817
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700818 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
819 if (!res) {
820 dev_err(&pdev->dev, "can't get platform resource\n");
821 ret = -ENOMEM;
822 goto out_gpio_free;
823 }
824
825 if (!request_mem_region(res->start, resource_size(res), pdev->name)) {
826 dev_err(&pdev->dev, "request_mem_region failed\n");
827 ret = -EBUSY;
828 goto out_gpio_free;
829 }
830
831 spi_imx->base = ioremap(res->start, resource_size(res));
832 if (!spi_imx->base) {
833 ret = -EINVAL;
834 goto out_release_mem;
835 }
836
837 spi_imx->irq = platform_get_irq(pdev, 0);
Richard Genoud73575932011-01-07 15:26:01 +0100838 if (spi_imx->irq < 0) {
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700839 ret = -EINVAL;
840 goto out_iounmap;
841 }
842
843 ret = request_irq(spi_imx->irq, spi_imx_isr, 0, DRIVER_NAME, spi_imx);
844 if (ret) {
845 dev_err(&pdev->dev, "can't get irq%d: %d\n", spi_imx->irq, ret);
846 goto out_iounmap;
847 }
848
Sascha Haueraa29d8402012-03-07 09:30:22 +0100849 spi_imx->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
850 if (IS_ERR(spi_imx->clk_ipg)) {
851 ret = PTR_ERR(spi_imx->clk_ipg);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700852 goto out_free_irq;
853 }
854
Sascha Haueraa29d8402012-03-07 09:30:22 +0100855 spi_imx->clk_per = devm_clk_get(&pdev->dev, "per");
856 if (IS_ERR(spi_imx->clk_per)) {
857 ret = PTR_ERR(spi_imx->clk_per);
858 goto out_free_irq;
859 }
860
861 clk_prepare_enable(spi_imx->clk_per);
862 clk_prepare_enable(spi_imx->clk_ipg);
863
864 spi_imx->spi_clk = clk_get_rate(spi_imx->clk_per);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700865
Shawn Guoedd501bb2011-07-10 01:16:35 +0800866 spi_imx->devtype_data->reset(spi_imx);
Daniel Mackce1807b2009-11-19 19:01:42 +0000867
Shawn Guoedd501bb2011-07-10 01:16:35 +0800868 spi_imx->devtype_data->intctrl(spi_imx, 0);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700869
Shawn Guo22a85e42011-07-10 01:16:41 +0800870 master->dev.of_node = pdev->dev.of_node;
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700871 ret = spi_bitbang_start(&spi_imx->bitbang);
872 if (ret) {
873 dev_err(&pdev->dev, "bitbang start failed with %d\n", ret);
874 goto out_clk_put;
875 }
876
877 dev_info(&pdev->dev, "probed\n");
878
879 return ret;
880
881out_clk_put:
Sascha Haueraa29d8402012-03-07 09:30:22 +0100882 clk_disable_unprepare(spi_imx->clk_per);
883 clk_disable_unprepare(spi_imx->clk_ipg);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700884out_free_irq:
885 free_irq(spi_imx->irq, spi_imx);
886out_iounmap:
887 iounmap(spi_imx->base);
888out_release_mem:
889 release_mem_region(res->start, resource_size(res));
890out_gpio_free:
Axel Lin00ffc132012-01-10 15:27:36 +0800891 while (--i >= 0) {
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700892 if (spi_imx->chipselect[i] >= 0)
893 gpio_free(spi_imx->chipselect[i]);
Axel Lin00ffc132012-01-10 15:27:36 +0800894 }
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700895 spi_master_put(master);
896 kfree(master);
897 platform_set_drvdata(pdev, NULL);
898 return ret;
899}
900
Grant Likely965346e2009-12-13 01:03:12 -0700901static int __devexit spi_imx_remove(struct platform_device *pdev)
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700902{
903 struct spi_master *master = platform_get_drvdata(pdev);
904 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
905 struct spi_imx_data *spi_imx = spi_master_get_devdata(master);
906 int i;
907
908 spi_bitbang_stop(&spi_imx->bitbang);
909
910 writel(0, spi_imx->base + MXC_CSPICTRL);
Sascha Haueraa29d8402012-03-07 09:30:22 +0100911 clk_disable_unprepare(spi_imx->clk_per);
912 clk_disable_unprepare(spi_imx->clk_ipg);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700913 free_irq(spi_imx->irq, spi_imx);
914 iounmap(spi_imx->base);
915
916 for (i = 0; i < master->num_chipselect; i++)
917 if (spi_imx->chipselect[i] >= 0)
918 gpio_free(spi_imx->chipselect[i]);
919
920 spi_master_put(master);
921
922 release_mem_region(res->start, resource_size(res));
923
924 platform_set_drvdata(pdev, NULL);
925
926 return 0;
927}
928
929static struct platform_driver spi_imx_driver = {
930 .driver = {
931 .name = DRIVER_NAME,
932 .owner = THIS_MODULE,
Shawn Guo22a85e42011-07-10 01:16:41 +0800933 .of_match_table = spi_imx_dt_ids,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700934 },
Uwe Kleine-Königf4ba6312010-09-09 15:29:01 +0200935 .id_table = spi_imx_devtype,
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700936 .probe = spi_imx_probe,
Grant Likely965346e2009-12-13 01:03:12 -0700937 .remove = __devexit_p(spi_imx_remove),
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700938};
Grant Likely940ab882011-10-05 11:29:49 -0600939module_platform_driver(spi_imx_driver);
Uwe Kleine-König6cdeb002009-10-01 15:44:28 -0700940
941MODULE_DESCRIPTION("SPI Master Controller driver");
942MODULE_AUTHOR("Sascha Hauer, Pengutronix");
943MODULE_LICENSE("GPL");