blob: 80374dfa970831d2617037c6c99243fcf8c234d5 [file] [log] [blame]
Kumar Galaccf06992006-05-20 15:00:15 -07001/*
Anton Vorontsov575c5802009-06-18 16:49:08 -07002 * MPC8xxx SPI controller driver.
Kumar Galaccf06992006-05-20 15:00:15 -07003 *
4 * Maintainer: Kumar Gala
5 *
6 * Copyright (C) 2006 Polycom, Inc.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 */
13#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/types.h>
16#include <linux/kernel.h>
Anton Vorontsovfd8a11e2009-06-18 16:49:01 -070017#include <linux/bug.h>
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -070018#include <linux/errno.h>
19#include <linux/err.h>
Anton Vorontsov9effb952009-06-18 16:49:05 -070020#include <linux/io.h>
Kumar Galaccf06992006-05-20 15:00:15 -070021#include <linux/completion.h>
22#include <linux/interrupt.h>
23#include <linux/delay.h>
24#include <linux/irq.h>
25#include <linux/device.h>
26#include <linux/spi/spi.h>
27#include <linux/spi/spi_bitbang.h>
28#include <linux/platform_device.h>
29#include <linux/fsl_devices.h>
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -070030#include <linux/of.h>
31#include <linux/of_platform.h>
32#include <linux/gpio.h>
33#include <linux/of_gpio.h>
34#include <linux/of_spi.h>
Kumar Galaccf06992006-05-20 15:00:15 -070035
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -070036#include <sysdev/fsl_soc.h>
Kumar Galaccf06992006-05-20 15:00:15 -070037#include <asm/irq.h>
Kumar Galaccf06992006-05-20 15:00:15 -070038
39/* SPI Controller registers */
Anton Vorontsov575c5802009-06-18 16:49:08 -070040struct mpc8xxx_spi_reg {
Kumar Galaccf06992006-05-20 15:00:15 -070041 u8 res1[0x20];
42 __be32 mode;
43 __be32 event;
44 __be32 mask;
45 __be32 command;
46 __be32 transmit;
47 __be32 receive;
48};
49
50/* SPI Controller mode register definitions */
Anton Vorontsov2a485d72007-07-31 00:38:45 -070051#define SPMODE_LOOP (1 << 30)
Kumar Galaccf06992006-05-20 15:00:15 -070052#define SPMODE_CI_INACTIVEHIGH (1 << 29)
53#define SPMODE_CP_BEGIN_EDGECLK (1 << 28)
54#define SPMODE_DIV16 (1 << 27)
55#define SPMODE_REV (1 << 26)
56#define SPMODE_MS (1 << 25)
57#define SPMODE_ENABLE (1 << 24)
58#define SPMODE_LEN(x) ((x) << 20)
59#define SPMODE_PM(x) ((x) << 16)
Joakim Tjernlundf29ba282007-07-17 04:04:12 -070060#define SPMODE_OP (1 << 14)
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -070061#define SPMODE_CG(x) ((x) << 7)
Kumar Galaccf06992006-05-20 15:00:15 -070062
63/*
64 * Default for SPI Mode:
65 * SPI MODE 0 (inactive low, phase middle, MSB, 8-bit length, slow clk
66 */
67#define SPMODE_INIT_VAL (SPMODE_CI_INACTIVEHIGH | SPMODE_DIV16 | SPMODE_REV | \
68 SPMODE_MS | SPMODE_LEN(7) | SPMODE_PM(0xf))
69
70/* SPIE register values */
71#define SPIE_NE 0x00000200 /* Not empty */
72#define SPIE_NF 0x00000100 /* Not full */
73
74/* SPIM register values */
75#define SPIM_NE 0x00000200 /* Not empty */
76#define SPIM_NF 0x00000100 /* Not full */
77
78/* SPI Controller driver's private data. */
Anton Vorontsov575c5802009-06-18 16:49:08 -070079struct mpc8xxx_spi {
80 struct mpc8xxx_spi_reg __iomem *base;
Kumar Galaccf06992006-05-20 15:00:15 -070081
82 /* rx & tx bufs from the spi_transfer */
83 const void *tx;
84 void *rx;
85
86 /* functions to deal with different sized buffers */
Anton Vorontsov575c5802009-06-18 16:49:08 -070087 void (*get_rx) (u32 rx_data, struct mpc8xxx_spi *);
88 u32(*get_tx) (struct mpc8xxx_spi *);
Kumar Galaccf06992006-05-20 15:00:15 -070089
90 unsigned int count;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -070091 unsigned int irq;
Kumar Galaccf06992006-05-20 15:00:15 -070092
93 unsigned nsecs; /* (clock cycle time)/2 */
94
Anton Vorontsove24a4d12007-08-10 13:01:01 -070095 u32 spibrg; /* SPIBRG input clock */
Joakim Tjernlundf29ba282007-07-17 04:04:12 -070096 u32 rx_shift; /* RX data reg shift when in qe mode */
97 u32 tx_shift; /* TX data reg shift when in qe mode */
98
Anton Vorontsov87ec0e92009-10-12 20:49:25 +040099 unsigned int flags;
100#define SPI_QE_CPU_MODE (1 << 0) /* QE CPU ("PIO") mode */
Joakim Tjernlundf29ba282007-07-17 04:04:12 -0700101
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700102 struct workqueue_struct *workqueue;
103 struct work_struct work;
104
105 struct list_head queue;
106 spinlock_t lock;
107
108 struct completion done;
109};
110
Anton Vorontsov575c5802009-06-18 16:49:08 -0700111struct spi_mpc8xxx_cs {
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700112 /* functions to deal with different sized buffers */
Anton Vorontsov575c5802009-06-18 16:49:08 -0700113 void (*get_rx) (u32 rx_data, struct mpc8xxx_spi *);
114 u32 (*get_tx) (struct mpc8xxx_spi *);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700115 u32 rx_shift; /* RX data reg shift when in qe mode */
116 u32 tx_shift; /* TX data reg shift when in qe mode */
117 u32 hw_mode; /* Holds HW mode register settings */
Kumar Galaccf06992006-05-20 15:00:15 -0700118};
119
Anton Vorontsov575c5802009-06-18 16:49:08 -0700120static inline void mpc8xxx_spi_write_reg(__be32 __iomem *reg, u32 val)
Kumar Galaccf06992006-05-20 15:00:15 -0700121{
122 out_be32(reg, val);
123}
124
Anton Vorontsov575c5802009-06-18 16:49:08 -0700125static inline u32 mpc8xxx_spi_read_reg(__be32 __iomem *reg)
Kumar Galaccf06992006-05-20 15:00:15 -0700126{
127 return in_be32(reg);
128}
129
130#define MPC83XX_SPI_RX_BUF(type) \
Anton Vorontsov34c8a202009-03-31 15:24:35 -0700131static \
Anton Vorontsov575c5802009-06-18 16:49:08 -0700132void mpc8xxx_spi_rx_buf_##type(u32 data, struct mpc8xxx_spi *mpc8xxx_spi) \
Kumar Galaccf06992006-05-20 15:00:15 -0700133{ \
Anton Vorontsov575c5802009-06-18 16:49:08 -0700134 type *rx = mpc8xxx_spi->rx; \
135 *rx++ = (type)(data >> mpc8xxx_spi->rx_shift); \
136 mpc8xxx_spi->rx = rx; \
Kumar Galaccf06992006-05-20 15:00:15 -0700137}
138
139#define MPC83XX_SPI_TX_BUF(type) \
Anton Vorontsov34c8a202009-03-31 15:24:35 -0700140static \
Anton Vorontsov575c5802009-06-18 16:49:08 -0700141u32 mpc8xxx_spi_tx_buf_##type(struct mpc8xxx_spi *mpc8xxx_spi) \
Kumar Galaccf06992006-05-20 15:00:15 -0700142{ \
143 u32 data; \
Anton Vorontsov575c5802009-06-18 16:49:08 -0700144 const type *tx = mpc8xxx_spi->tx; \
David Brownell4b1badf2006-12-29 16:48:39 -0800145 if (!tx) \
146 return 0; \
Anton Vorontsov575c5802009-06-18 16:49:08 -0700147 data = *tx++ << mpc8xxx_spi->tx_shift; \
148 mpc8xxx_spi->tx = tx; \
Kumar Galaccf06992006-05-20 15:00:15 -0700149 return data; \
150}
151
152MPC83XX_SPI_RX_BUF(u8)
153MPC83XX_SPI_RX_BUF(u16)
154MPC83XX_SPI_RX_BUF(u32)
155MPC83XX_SPI_TX_BUF(u8)
156MPC83XX_SPI_TX_BUF(u16)
157MPC83XX_SPI_TX_BUF(u32)
158
Anton Vorontsova35c1712009-10-12 20:49:24 +0400159static void mpc8xxx_spi_change_mode(struct spi_device *spi)
160{
161 struct mpc8xxx_spi *mspi = spi_master_get_devdata(spi->master);
162 struct spi_mpc8xxx_cs *cs = spi->controller_state;
163 __be32 __iomem *mode = &mspi->base->mode;
164 unsigned long flags;
165
166 if (cs->hw_mode == mpc8xxx_spi_read_reg(mode))
167 return;
168
169 /* Turn off IRQs locally to minimize time that SPI is disabled. */
170 local_irq_save(flags);
171
172 /* Turn off SPI unit prior changing mode */
173 mpc8xxx_spi_write_reg(mode, cs->hw_mode & ~SPMODE_ENABLE);
174 mpc8xxx_spi_write_reg(mode, cs->hw_mode);
175
176 local_irq_restore(flags);
177}
178
Anton Vorontsov575c5802009-06-18 16:49:08 -0700179static void mpc8xxx_spi_chipselect(struct spi_device *spi, int value)
Kumar Galaccf06992006-05-20 15:00:15 -0700180{
Anton Vorontsov575c5802009-06-18 16:49:08 -0700181 struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(spi->master);
Anton Vorontsov364fdbc2009-03-31 15:24:36 -0700182 struct fsl_spi_platform_data *pdata = spi->dev.parent->platform_data;
183 bool pol = spi->mode & SPI_CS_HIGH;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700184 struct spi_mpc8xxx_cs *cs = spi->controller_state;
Kumar Galaccf06992006-05-20 15:00:15 -0700185
Kumar Galaccf06992006-05-20 15:00:15 -0700186 if (value == BITBANG_CS_INACTIVE) {
Anton Vorontsov364fdbc2009-03-31 15:24:36 -0700187 if (pdata->cs_control)
188 pdata->cs_control(spi, !pol);
Kumar Galaccf06992006-05-20 15:00:15 -0700189 }
190
191 if (value == BITBANG_CS_ACTIVE) {
Anton Vorontsov575c5802009-06-18 16:49:08 -0700192 mpc8xxx_spi->rx_shift = cs->rx_shift;
193 mpc8xxx_spi->tx_shift = cs->tx_shift;
194 mpc8xxx_spi->get_rx = cs->get_rx;
195 mpc8xxx_spi->get_tx = cs->get_tx;
Kumar Galaccf06992006-05-20 15:00:15 -0700196
Anton Vorontsova35c1712009-10-12 20:49:24 +0400197 mpc8xxx_spi_change_mode(spi);
Kumar Galaccf06992006-05-20 15:00:15 -0700198
Anton Vorontsov364fdbc2009-03-31 15:24:36 -0700199 if (pdata->cs_control)
200 pdata->cs_control(spi, pol);
Kumar Galaccf06992006-05-20 15:00:15 -0700201 }
202}
203
204static
Anton Vorontsov575c5802009-06-18 16:49:08 -0700205int mpc8xxx_spi_setup_transfer(struct spi_device *spi, struct spi_transfer *t)
Kumar Galaccf06992006-05-20 15:00:15 -0700206{
Anton Vorontsov575c5802009-06-18 16:49:08 -0700207 struct mpc8xxx_spi *mpc8xxx_spi;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700208 u8 bits_per_word, pm;
Kumar Galaccf06992006-05-20 15:00:15 -0700209 u32 hz;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700210 struct spi_mpc8xxx_cs *cs = spi->controller_state;
Kumar Galaccf06992006-05-20 15:00:15 -0700211
Anton Vorontsov575c5802009-06-18 16:49:08 -0700212 mpc8xxx_spi = spi_master_get_devdata(spi->master);
Kumar Galaccf06992006-05-20 15:00:15 -0700213
214 if (t) {
215 bits_per_word = t->bits_per_word;
216 hz = t->speed_hz;
217 } else {
218 bits_per_word = 0;
219 hz = 0;
220 }
221
222 /* spi_transfer level calls that work per-word */
223 if (!bits_per_word)
224 bits_per_word = spi->bits_per_word;
225
226 /* Make sure its a bit width we support [4..16, 32] */
227 if ((bits_per_word < 4)
228 || ((bits_per_word > 16) && (bits_per_word != 32)))
229 return -EINVAL;
230
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700231 if (!hz)
232 hz = spi->max_speed_hz;
233
234 cs->rx_shift = 0;
235 cs->tx_shift = 0;
Kumar Galaccf06992006-05-20 15:00:15 -0700236 if (bits_per_word <= 8) {
Anton Vorontsov575c5802009-06-18 16:49:08 -0700237 cs->get_rx = mpc8xxx_spi_rx_buf_u8;
238 cs->get_tx = mpc8xxx_spi_tx_buf_u8;
Anton Vorontsov87ec0e92009-10-12 20:49:25 +0400239 if (mpc8xxx_spi->flags & SPI_QE_CPU_MODE) {
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700240 cs->rx_shift = 16;
241 cs->tx_shift = 24;
Joakim Tjernlundf29ba282007-07-17 04:04:12 -0700242 }
Kumar Galaccf06992006-05-20 15:00:15 -0700243 } else if (bits_per_word <= 16) {
Anton Vorontsov575c5802009-06-18 16:49:08 -0700244 cs->get_rx = mpc8xxx_spi_rx_buf_u16;
245 cs->get_tx = mpc8xxx_spi_tx_buf_u16;
Anton Vorontsov87ec0e92009-10-12 20:49:25 +0400246 if (mpc8xxx_spi->flags & SPI_QE_CPU_MODE) {
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700247 cs->rx_shift = 16;
248 cs->tx_shift = 16;
Joakim Tjernlundf29ba282007-07-17 04:04:12 -0700249 }
Kumar Galaccf06992006-05-20 15:00:15 -0700250 } else if (bits_per_word <= 32) {
Anton Vorontsov575c5802009-06-18 16:49:08 -0700251 cs->get_rx = mpc8xxx_spi_rx_buf_u32;
252 cs->get_tx = mpc8xxx_spi_tx_buf_u32;
Kumar Galaccf06992006-05-20 15:00:15 -0700253 } else
254 return -EINVAL;
255
Anton Vorontsov87ec0e92009-10-12 20:49:25 +0400256 if (mpc8xxx_spi->flags & SPI_QE_CPU_MODE &&
257 spi->mode & SPI_LSB_FIRST) {
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700258 cs->tx_shift = 0;
Anton Vorontsov35cc0b92007-07-31 00:38:42 -0700259 if (bits_per_word <= 8)
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700260 cs->rx_shift = 8;
Anton Vorontsov35cc0b92007-07-31 00:38:42 -0700261 else
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700262 cs->rx_shift = 0;
Anton Vorontsov35cc0b92007-07-31 00:38:42 -0700263 }
264
Anton Vorontsov575c5802009-06-18 16:49:08 -0700265 mpc8xxx_spi->rx_shift = cs->rx_shift;
266 mpc8xxx_spi->tx_shift = cs->tx_shift;
267 mpc8xxx_spi->get_rx = cs->get_rx;
268 mpc8xxx_spi->get_tx = cs->get_tx;
Kumar Galaccf06992006-05-20 15:00:15 -0700269
270 if (bits_per_word == 32)
271 bits_per_word = 0;
272 else
273 bits_per_word = bits_per_word - 1;
274
Anton Vorontsov32421da2007-07-31 00:38:41 -0700275 /* mask out bits we are going to set */
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700276 cs->hw_mode &= ~(SPMODE_LEN(0xF) | SPMODE_DIV16
277 | SPMODE_PM(0xF));
Kumar Galaccf06992006-05-20 15:00:15 -0700278
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700279 cs->hw_mode |= SPMODE_LEN(bits_per_word);
Kumar Galaccf06992006-05-20 15:00:15 -0700280
Anton Vorontsov575c5802009-06-18 16:49:08 -0700281 if ((mpc8xxx_spi->spibrg / hz) > 64) {
Peter Korsgaard53604db2008-09-13 02:33:14 -0700282 cs->hw_mode |= SPMODE_DIV16;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700283 pm = mpc8xxx_spi->spibrg / (hz * 64);
Anton Vorontsovfd8a11e2009-06-18 16:49:01 -0700284
285 WARN_ONCE(pm > 16, "%s: Requested speed is too low: %d Hz. "
286 "Will use %d Hz instead.\n", dev_name(&spi->dev),
Anton Vorontsov575c5802009-06-18 16:49:08 -0700287 hz, mpc8xxx_spi->spibrg / 1024);
Anton Vorontsovfd8a11e2009-06-18 16:49:01 -0700288 if (pm > 16)
Peter Korsgaard53604db2008-09-13 02:33:14 -0700289 pm = 16;
Chen Gonga61f5342008-07-23 21:29:52 -0700290 } else
Anton Vorontsov575c5802009-06-18 16:49:08 -0700291 pm = mpc8xxx_spi->spibrg / (hz * 4);
Chen Gonga61f5342008-07-23 21:29:52 -0700292 if (pm)
293 pm--;
294
295 cs->hw_mode |= SPMODE_PM(pm);
David Brownelldccd5732007-07-17 04:04:02 -0700296
Anton Vorontsova35c1712009-10-12 20:49:24 +0400297 mpc8xxx_spi_change_mode(spi);
Kumar Galaccf06992006-05-20 15:00:15 -0700298 return 0;
299}
300
Anton Vorontsov575c5802009-06-18 16:49:08 -0700301static int mpc8xxx_spi_bufs(struct spi_device *spi, struct spi_transfer *t)
Kumar Galaccf06992006-05-20 15:00:15 -0700302{
Anton Vorontsov575c5802009-06-18 16:49:08 -0700303 struct mpc8xxx_spi *mpc8xxx_spi;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700304 u32 word, len, bits_per_word;
Kumar Galaccf06992006-05-20 15:00:15 -0700305
Anton Vorontsov575c5802009-06-18 16:49:08 -0700306 mpc8xxx_spi = spi_master_get_devdata(spi->master);
Kumar Galaccf06992006-05-20 15:00:15 -0700307
Anton Vorontsov575c5802009-06-18 16:49:08 -0700308 mpc8xxx_spi->tx = t->tx_buf;
309 mpc8xxx_spi->rx = t->rx_buf;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700310 bits_per_word = spi->bits_per_word;
311 if (t->bits_per_word)
312 bits_per_word = t->bits_per_word;
313 len = t->len;
Peter Korsgaardaa77d962008-09-13 02:33:15 -0700314 if (bits_per_word > 8) {
315 /* invalid length? */
316 if (len & 1)
317 return -EINVAL;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700318 len /= 2;
Peter Korsgaardaa77d962008-09-13 02:33:15 -0700319 }
320 if (bits_per_word > 16) {
321 /* invalid length? */
322 if (len & 1)
323 return -EINVAL;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700324 len /= 2;
Peter Korsgaardaa77d962008-09-13 02:33:15 -0700325 }
Anton Vorontsov575c5802009-06-18 16:49:08 -0700326 mpc8xxx_spi->count = len;
Peter Korsgaardaa77d962008-09-13 02:33:15 -0700327
Anton Vorontsov575c5802009-06-18 16:49:08 -0700328 INIT_COMPLETION(mpc8xxx_spi->done);
Kumar Galaccf06992006-05-20 15:00:15 -0700329
330 /* enable rx ints */
Anton Vorontsov575c5802009-06-18 16:49:08 -0700331 mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->mask, SPIM_NE);
Kumar Galaccf06992006-05-20 15:00:15 -0700332
333 /* transmit word */
Anton Vorontsov575c5802009-06-18 16:49:08 -0700334 word = mpc8xxx_spi->get_tx(mpc8xxx_spi);
335 mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->transmit, word);
Kumar Galaccf06992006-05-20 15:00:15 -0700336
Anton Vorontsov575c5802009-06-18 16:49:08 -0700337 wait_for_completion(&mpc8xxx_spi->done);
Kumar Galaccf06992006-05-20 15:00:15 -0700338
339 /* disable rx ints */
Anton Vorontsov575c5802009-06-18 16:49:08 -0700340 mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->mask, 0);
Kumar Galaccf06992006-05-20 15:00:15 -0700341
Anton Vorontsov575c5802009-06-18 16:49:08 -0700342 return mpc8xxx_spi->count;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700343}
344
Anton Vorontsov575c5802009-06-18 16:49:08 -0700345static void mpc8xxx_spi_do_one_msg(struct spi_message *m)
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700346{
347 struct spi_device *spi = m->spi;
348 struct spi_transfer *t;
349 unsigned int cs_change;
350 const int nsecs = 50;
351 int status;
352
353 cs_change = 1;
354 status = 0;
355 list_for_each_entry(t, &m->transfers, transfer_list) {
356 if (t->bits_per_word || t->speed_hz) {
357 /* Don't allow changes if CS is active */
358 status = -EINVAL;
359
360 if (cs_change)
Anton Vorontsov575c5802009-06-18 16:49:08 -0700361 status = mpc8xxx_spi_setup_transfer(spi, t);
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700362 if (status < 0)
363 break;
364 }
365
366 if (cs_change) {
Anton Vorontsov575c5802009-06-18 16:49:08 -0700367 mpc8xxx_spi_chipselect(spi, BITBANG_CS_ACTIVE);
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700368 ndelay(nsecs);
369 }
370 cs_change = t->cs_change;
371 if (t->len)
Anton Vorontsov575c5802009-06-18 16:49:08 -0700372 status = mpc8xxx_spi_bufs(spi, t);
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700373 if (status) {
374 status = -EMSGSIZE;
375 break;
376 }
377 m->actual_length += t->len;
378
379 if (t->delay_usecs)
380 udelay(t->delay_usecs);
381
382 if (cs_change) {
383 ndelay(nsecs);
Anton Vorontsov575c5802009-06-18 16:49:08 -0700384 mpc8xxx_spi_chipselect(spi, BITBANG_CS_INACTIVE);
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700385 ndelay(nsecs);
386 }
387 }
388
389 m->status = status;
390 m->complete(m->context);
391
392 if (status || !cs_change) {
393 ndelay(nsecs);
Anton Vorontsov575c5802009-06-18 16:49:08 -0700394 mpc8xxx_spi_chipselect(spi, BITBANG_CS_INACTIVE);
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700395 }
396
Anton Vorontsov575c5802009-06-18 16:49:08 -0700397 mpc8xxx_spi_setup_transfer(spi, NULL);
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700398}
399
Anton Vorontsov575c5802009-06-18 16:49:08 -0700400static void mpc8xxx_spi_work(struct work_struct *work)
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700401{
Anton Vorontsov575c5802009-06-18 16:49:08 -0700402 struct mpc8xxx_spi *mpc8xxx_spi = container_of(work, struct mpc8xxx_spi,
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700403 work);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700404
Anton Vorontsov575c5802009-06-18 16:49:08 -0700405 spin_lock_irq(&mpc8xxx_spi->lock);
406 while (!list_empty(&mpc8xxx_spi->queue)) {
407 struct spi_message *m = container_of(mpc8xxx_spi->queue.next,
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700408 struct spi_message, queue);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700409
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700410 list_del_init(&m->queue);
Anton Vorontsov575c5802009-06-18 16:49:08 -0700411 spin_unlock_irq(&mpc8xxx_spi->lock);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700412
Anton Vorontsov575c5802009-06-18 16:49:08 -0700413 mpc8xxx_spi_do_one_msg(m);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700414
Anton Vorontsov575c5802009-06-18 16:49:08 -0700415 spin_lock_irq(&mpc8xxx_spi->lock);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700416 }
Anton Vorontsov575c5802009-06-18 16:49:08 -0700417 spin_unlock_irq(&mpc8xxx_spi->lock);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700418}
419
Anton Vorontsov575c5802009-06-18 16:49:08 -0700420static int mpc8xxx_spi_setup(struct spi_device *spi)
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700421{
Anton Vorontsov575c5802009-06-18 16:49:08 -0700422 struct mpc8xxx_spi *mpc8xxx_spi;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700423 int retval;
424 u32 hw_mode;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700425 struct spi_mpc8xxx_cs *cs = spi->controller_state;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700426
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700427 if (!spi->max_speed_hz)
428 return -EINVAL;
429
430 if (!cs) {
431 cs = kzalloc(sizeof *cs, GFP_KERNEL);
432 if (!cs)
433 return -ENOMEM;
434 spi->controller_state = cs;
435 }
Anton Vorontsov575c5802009-06-18 16:49:08 -0700436 mpc8xxx_spi = spi_master_get_devdata(spi->master);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700437
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700438 hw_mode = cs->hw_mode; /* Save orginal settings */
Anton Vorontsov575c5802009-06-18 16:49:08 -0700439 cs->hw_mode = mpc8xxx_spi_read_reg(&mpc8xxx_spi->base->mode);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700440 /* mask out bits we are going to set */
441 cs->hw_mode &= ~(SPMODE_CP_BEGIN_EDGECLK | SPMODE_CI_INACTIVEHIGH
442 | SPMODE_REV | SPMODE_LOOP);
443
444 if (spi->mode & SPI_CPHA)
445 cs->hw_mode |= SPMODE_CP_BEGIN_EDGECLK;
446 if (spi->mode & SPI_CPOL)
447 cs->hw_mode |= SPMODE_CI_INACTIVEHIGH;
448 if (!(spi->mode & SPI_LSB_FIRST))
449 cs->hw_mode |= SPMODE_REV;
450 if (spi->mode & SPI_LOOP)
451 cs->hw_mode |= SPMODE_LOOP;
452
Anton Vorontsov575c5802009-06-18 16:49:08 -0700453 retval = mpc8xxx_spi_setup_transfer(spi, NULL);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700454 if (retval < 0) {
455 cs->hw_mode = hw_mode; /* Restore settings */
456 return retval;
457 }
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700458 return 0;
Kumar Galaccf06992006-05-20 15:00:15 -0700459}
460
Anton Vorontsov575c5802009-06-18 16:49:08 -0700461static irqreturn_t mpc8xxx_spi_irq(s32 irq, void *context_data)
Kumar Galaccf06992006-05-20 15:00:15 -0700462{
Anton Vorontsov575c5802009-06-18 16:49:08 -0700463 struct mpc8xxx_spi *mpc8xxx_spi = context_data;
Kumar Galaccf06992006-05-20 15:00:15 -0700464 u32 event;
465 irqreturn_t ret = IRQ_NONE;
466
467 /* Get interrupt events(tx/rx) */
Anton Vorontsov575c5802009-06-18 16:49:08 -0700468 event = mpc8xxx_spi_read_reg(&mpc8xxx_spi->base->event);
Kumar Galaccf06992006-05-20 15:00:15 -0700469
470 /* We need handle RX first */
471 if (event & SPIE_NE) {
Anton Vorontsov575c5802009-06-18 16:49:08 -0700472 u32 rx_data = mpc8xxx_spi_read_reg(&mpc8xxx_spi->base->receive);
Kumar Galaccf06992006-05-20 15:00:15 -0700473
Anton Vorontsov575c5802009-06-18 16:49:08 -0700474 if (mpc8xxx_spi->rx)
475 mpc8xxx_spi->get_rx(rx_data, mpc8xxx_spi);
Kumar Galaccf06992006-05-20 15:00:15 -0700476
477 ret = IRQ_HANDLED;
478 }
479
480 if ((event & SPIE_NF) == 0)
481 /* spin until TX is done */
482 while (((event =
Anton Vorontsov575c5802009-06-18 16:49:08 -0700483 mpc8xxx_spi_read_reg(&mpc8xxx_spi->base->event)) &
Kumar Galaccf06992006-05-20 15:00:15 -0700484 SPIE_NF) == 0)
Anton Vorontsov9effb952009-06-18 16:49:05 -0700485 cpu_relax();
Kumar Galaccf06992006-05-20 15:00:15 -0700486
Anton Vorontsov575c5802009-06-18 16:49:08 -0700487 mpc8xxx_spi->count -= 1;
488 if (mpc8xxx_spi->count) {
489 u32 word = mpc8xxx_spi->get_tx(mpc8xxx_spi);
490 mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->transmit, word);
Kumar Galaccf06992006-05-20 15:00:15 -0700491 } else {
Anton Vorontsov575c5802009-06-18 16:49:08 -0700492 complete(&mpc8xxx_spi->done);
Kumar Galaccf06992006-05-20 15:00:15 -0700493 }
494
495 /* Clear the events */
Anton Vorontsov575c5802009-06-18 16:49:08 -0700496 mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->event, event);
Kumar Galaccf06992006-05-20 15:00:15 -0700497
498 return ret;
499}
Anton Vorontsov575c5802009-06-18 16:49:08 -0700500static int mpc8xxx_spi_transfer(struct spi_device *spi,
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700501 struct spi_message *m)
502{
Anton Vorontsov575c5802009-06-18 16:49:08 -0700503 struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(spi->master);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700504 unsigned long flags;
505
506 m->actual_length = 0;
507 m->status = -EINPROGRESS;
508
Anton Vorontsov575c5802009-06-18 16:49:08 -0700509 spin_lock_irqsave(&mpc8xxx_spi->lock, flags);
510 list_add_tail(&m->queue, &mpc8xxx_spi->queue);
511 queue_work(mpc8xxx_spi->workqueue, &mpc8xxx_spi->work);
512 spin_unlock_irqrestore(&mpc8xxx_spi->lock, flags);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700513
514 return 0;
515}
516
517
Anton Vorontsov575c5802009-06-18 16:49:08 -0700518static void mpc8xxx_spi_cleanup(struct spi_device *spi)
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700519{
520 kfree(spi->controller_state);
521}
Kumar Galaccf06992006-05-20 15:00:15 -0700522
Anton Vorontsov87ec0e92009-10-12 20:49:25 +0400523static const char *mpc8xxx_spi_strmode(unsigned int flags)
524{
525 if (flags & SPI_QE_CPU_MODE)
526 return "QE CPU";
527 return "CPU";
528}
529
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700530static struct spi_master * __devinit
Anton Vorontsov575c5802009-06-18 16:49:08 -0700531mpc8xxx_spi_probe(struct device *dev, struct resource *mem, unsigned int irq)
Kumar Galaccf06992006-05-20 15:00:15 -0700532{
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700533 struct fsl_spi_platform_data *pdata = dev->platform_data;
Kumar Galaccf06992006-05-20 15:00:15 -0700534 struct spi_master *master;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700535 struct mpc8xxx_spi *mpc8xxx_spi;
Kumar Galaccf06992006-05-20 15:00:15 -0700536 u32 regval;
537 int ret = 0;
538
Anton Vorontsov575c5802009-06-18 16:49:08 -0700539 master = spi_alloc_master(dev, sizeof(struct mpc8xxx_spi));
Kumar Galaccf06992006-05-20 15:00:15 -0700540 if (master == NULL) {
541 ret = -ENOMEM;
542 goto err;
543 }
544
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700545 dev_set_drvdata(dev, master);
Kumar Galaccf06992006-05-20 15:00:15 -0700546
David Brownelle7db06b2009-06-17 16:26:04 -0700547 /* the spi->mode bits understood by this driver: */
548 master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH
549 | SPI_LSB_FIRST | SPI_LOOP;
550
Anton Vorontsov575c5802009-06-18 16:49:08 -0700551 master->setup = mpc8xxx_spi_setup;
552 master->transfer = mpc8xxx_spi_transfer;
553 master->cleanup = mpc8xxx_spi_cleanup;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700554
Anton Vorontsov575c5802009-06-18 16:49:08 -0700555 mpc8xxx_spi = spi_master_get_devdata(master);
Anton Vorontsov575c5802009-06-18 16:49:08 -0700556 mpc8xxx_spi->get_rx = mpc8xxx_spi_rx_buf_u8;
557 mpc8xxx_spi->get_tx = mpc8xxx_spi_tx_buf_u8;
Anton Vorontsov87ec0e92009-10-12 20:49:25 +0400558 mpc8xxx_spi->flags = pdata->flags;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700559 mpc8xxx_spi->spibrg = pdata->sysclk;
Anton Vorontsove24a4d12007-08-10 13:01:01 -0700560
Anton Vorontsov575c5802009-06-18 16:49:08 -0700561 mpc8xxx_spi->rx_shift = 0;
562 mpc8xxx_spi->tx_shift = 0;
Anton Vorontsov87ec0e92009-10-12 20:49:25 +0400563 if (mpc8xxx_spi->flags & SPI_QE_CPU_MODE) {
Anton Vorontsov575c5802009-06-18 16:49:08 -0700564 mpc8xxx_spi->rx_shift = 16;
565 mpc8xxx_spi->tx_shift = 24;
Joakim Tjernlundf29ba282007-07-17 04:04:12 -0700566 }
567
Anton Vorontsov575c5802009-06-18 16:49:08 -0700568 init_completion(&mpc8xxx_spi->done);
Kumar Galaccf06992006-05-20 15:00:15 -0700569
Anton Vorontsov575c5802009-06-18 16:49:08 -0700570 mpc8xxx_spi->base = ioremap(mem->start, mem->end - mem->start + 1);
571 if (mpc8xxx_spi->base == NULL) {
Kumar Galaccf06992006-05-20 15:00:15 -0700572 ret = -ENOMEM;
573 goto put_master;
574 }
575
Anton Vorontsov575c5802009-06-18 16:49:08 -0700576 mpc8xxx_spi->irq = irq;
Kumar Galaccf06992006-05-20 15:00:15 -0700577
578 /* Register for SPI Interrupt */
Anton Vorontsov575c5802009-06-18 16:49:08 -0700579 ret = request_irq(mpc8xxx_spi->irq, mpc8xxx_spi_irq,
580 0, "mpc8xxx_spi", mpc8xxx_spi);
Kumar Galaccf06992006-05-20 15:00:15 -0700581
582 if (ret != 0)
583 goto unmap_io;
584
585 master->bus_num = pdata->bus_num;
586 master->num_chipselect = pdata->max_chipselect;
587
588 /* SPI controller initializations */
Anton Vorontsov575c5802009-06-18 16:49:08 -0700589 mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->mode, 0);
590 mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->mask, 0);
591 mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->command, 0);
592 mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->event, 0xffffffff);
Kumar Galaccf06992006-05-20 15:00:15 -0700593
594 /* Enable SPI interface */
595 regval = pdata->initial_spmode | SPMODE_INIT_VAL | SPMODE_ENABLE;
Anton Vorontsov87ec0e92009-10-12 20:49:25 +0400596 if (mpc8xxx_spi->flags & SPI_QE_CPU_MODE)
Joakim Tjernlundf29ba282007-07-17 04:04:12 -0700597 regval |= SPMODE_OP;
598
Anton Vorontsov575c5802009-06-18 16:49:08 -0700599 mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->mode, regval);
600 spin_lock_init(&mpc8xxx_spi->lock);
601 init_completion(&mpc8xxx_spi->done);
602 INIT_WORK(&mpc8xxx_spi->work, mpc8xxx_spi_work);
603 INIT_LIST_HEAD(&mpc8xxx_spi->queue);
Kumar Galaccf06992006-05-20 15:00:15 -0700604
Anton Vorontsov575c5802009-06-18 16:49:08 -0700605 mpc8xxx_spi->workqueue = create_singlethread_workqueue(
Kay Sievers6c7377a2009-03-24 16:38:21 -0700606 dev_name(master->dev.parent));
Anton Vorontsov575c5802009-06-18 16:49:08 -0700607 if (mpc8xxx_spi->workqueue == NULL) {
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700608 ret = -EBUSY;
Kumar Galaccf06992006-05-20 15:00:15 -0700609 goto free_irq;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700610 }
611
612 ret = spi_register_master(master);
613 if (ret < 0)
614 goto unreg_master;
Kumar Galaccf06992006-05-20 15:00:15 -0700615
Anton Vorontsov87ec0e92009-10-12 20:49:25 +0400616 dev_info(dev, "at 0x%p (irq = %d), %s mode\n", mpc8xxx_spi->base,
617 mpc8xxx_spi->irq, mpc8xxx_spi_strmode(mpc8xxx_spi->flags));
Kumar Galaccf06992006-05-20 15:00:15 -0700618
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700619 return master;
Kumar Galaccf06992006-05-20 15:00:15 -0700620
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700621unreg_master:
Anton Vorontsov575c5802009-06-18 16:49:08 -0700622 destroy_workqueue(mpc8xxx_spi->workqueue);
Kumar Galaccf06992006-05-20 15:00:15 -0700623free_irq:
Anton Vorontsov575c5802009-06-18 16:49:08 -0700624 free_irq(mpc8xxx_spi->irq, mpc8xxx_spi);
Kumar Galaccf06992006-05-20 15:00:15 -0700625unmap_io:
Anton Vorontsov575c5802009-06-18 16:49:08 -0700626 iounmap(mpc8xxx_spi->base);
Kumar Galaccf06992006-05-20 15:00:15 -0700627put_master:
628 spi_master_put(master);
Kumar Galaccf06992006-05-20 15:00:15 -0700629err:
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700630 return ERR_PTR(ret);
Kumar Galaccf06992006-05-20 15:00:15 -0700631}
632
Anton Vorontsov575c5802009-06-18 16:49:08 -0700633static int __devexit mpc8xxx_spi_remove(struct device *dev)
Kumar Galaccf06992006-05-20 15:00:15 -0700634{
Anton Vorontsov575c5802009-06-18 16:49:08 -0700635 struct mpc8xxx_spi *mpc8xxx_spi;
Kumar Galaccf06992006-05-20 15:00:15 -0700636 struct spi_master *master;
637
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700638 master = dev_get_drvdata(dev);
Anton Vorontsov575c5802009-06-18 16:49:08 -0700639 mpc8xxx_spi = spi_master_get_devdata(master);
Kumar Galaccf06992006-05-20 15:00:15 -0700640
Anton Vorontsov575c5802009-06-18 16:49:08 -0700641 flush_workqueue(mpc8xxx_spi->workqueue);
642 destroy_workqueue(mpc8xxx_spi->workqueue);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700643 spi_unregister_master(master);
644
Anton Vorontsov575c5802009-06-18 16:49:08 -0700645 free_irq(mpc8xxx_spi->irq, mpc8xxx_spi);
646 iounmap(mpc8xxx_spi->base);
Kumar Galaccf06992006-05-20 15:00:15 -0700647
648 return 0;
649}
650
Anton Vorontsov575c5802009-06-18 16:49:08 -0700651struct mpc8xxx_spi_probe_info {
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700652 struct fsl_spi_platform_data pdata;
653 int *gpios;
654 bool *alow_flags;
655};
656
Anton Vorontsov575c5802009-06-18 16:49:08 -0700657static struct mpc8xxx_spi_probe_info *
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700658to_of_pinfo(struct fsl_spi_platform_data *pdata)
659{
Anton Vorontsov575c5802009-06-18 16:49:08 -0700660 return container_of(pdata, struct mpc8xxx_spi_probe_info, pdata);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700661}
662
Anton Vorontsov575c5802009-06-18 16:49:08 -0700663static void mpc8xxx_spi_cs_control(struct spi_device *spi, bool on)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700664{
665 struct device *dev = spi->dev.parent;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700666 struct mpc8xxx_spi_probe_info *pinfo = to_of_pinfo(dev->platform_data);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700667 u16 cs = spi->chip_select;
668 int gpio = pinfo->gpios[cs];
669 bool alow = pinfo->alow_flags[cs];
670
671 gpio_set_value(gpio, on ^ alow);
672}
673
Anton Vorontsov575c5802009-06-18 16:49:08 -0700674static int of_mpc8xxx_spi_get_chipselects(struct device *dev)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700675{
676 struct device_node *np = dev_archdata_get_node(&dev->archdata);
677 struct fsl_spi_platform_data *pdata = dev->platform_data;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700678 struct mpc8xxx_spi_probe_info *pinfo = to_of_pinfo(pdata);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700679 unsigned int ngpios;
680 int i = 0;
681 int ret;
682
683 ngpios = of_gpio_count(np);
684 if (!ngpios) {
685 /*
686 * SPI w/o chip-select line. One SPI device is still permitted
687 * though.
688 */
689 pdata->max_chipselect = 1;
690 return 0;
691 }
692
Roel Kluin02141542009-06-16 15:31:15 -0700693 pinfo->gpios = kmalloc(ngpios * sizeof(*pinfo->gpios), GFP_KERNEL);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700694 if (!pinfo->gpios)
695 return -ENOMEM;
Roel Kluin02141542009-06-16 15:31:15 -0700696 memset(pinfo->gpios, -1, ngpios * sizeof(*pinfo->gpios));
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700697
Roel Kluin02141542009-06-16 15:31:15 -0700698 pinfo->alow_flags = kzalloc(ngpios * sizeof(*pinfo->alow_flags),
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700699 GFP_KERNEL);
700 if (!pinfo->alow_flags) {
701 ret = -ENOMEM;
702 goto err_alloc_flags;
703 }
704
705 for (; i < ngpios; i++) {
706 int gpio;
707 enum of_gpio_flags flags;
708
709 gpio = of_get_gpio_flags(np, i, &flags);
710 if (!gpio_is_valid(gpio)) {
711 dev_err(dev, "invalid gpio #%d: %d\n", i, gpio);
Anton Vorontsov783058f2009-10-12 20:49:22 +0400712 ret = gpio;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700713 goto err_loop;
714 }
715
716 ret = gpio_request(gpio, dev_name(dev));
717 if (ret) {
718 dev_err(dev, "can't request gpio #%d: %d\n", i, ret);
719 goto err_loop;
720 }
721
722 pinfo->gpios[i] = gpio;
723 pinfo->alow_flags[i] = flags & OF_GPIO_ACTIVE_LOW;
724
725 ret = gpio_direction_output(pinfo->gpios[i],
726 pinfo->alow_flags[i]);
727 if (ret) {
728 dev_err(dev, "can't set output direction for gpio "
729 "#%d: %d\n", i, ret);
730 goto err_loop;
731 }
732 }
733
734 pdata->max_chipselect = ngpios;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700735 pdata->cs_control = mpc8xxx_spi_cs_control;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700736
737 return 0;
738
739err_loop:
740 while (i >= 0) {
741 if (gpio_is_valid(pinfo->gpios[i]))
742 gpio_free(pinfo->gpios[i]);
743 i--;
744 }
745
746 kfree(pinfo->alow_flags);
747 pinfo->alow_flags = NULL;
748err_alloc_flags:
749 kfree(pinfo->gpios);
750 pinfo->gpios = NULL;
751 return ret;
752}
753
Anton Vorontsov575c5802009-06-18 16:49:08 -0700754static int of_mpc8xxx_spi_free_chipselects(struct device *dev)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700755{
756 struct fsl_spi_platform_data *pdata = dev->platform_data;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700757 struct mpc8xxx_spi_probe_info *pinfo = to_of_pinfo(pdata);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700758 int i;
759
760 if (!pinfo->gpios)
761 return 0;
762
763 for (i = 0; i < pdata->max_chipselect; i++) {
764 if (gpio_is_valid(pinfo->gpios[i]))
765 gpio_free(pinfo->gpios[i]);
766 }
767
768 kfree(pinfo->gpios);
769 kfree(pinfo->alow_flags);
770 return 0;
771}
772
Anton Vorontsov575c5802009-06-18 16:49:08 -0700773static int __devinit of_mpc8xxx_spi_probe(struct of_device *ofdev,
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700774 const struct of_device_id *ofid)
775{
776 struct device *dev = &ofdev->dev;
777 struct device_node *np = ofdev->node;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700778 struct mpc8xxx_spi_probe_info *pinfo;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700779 struct fsl_spi_platform_data *pdata;
780 struct spi_master *master;
781 struct resource mem;
782 struct resource irq;
783 const void *prop;
784 int ret = -ENOMEM;
785
786 pinfo = kzalloc(sizeof(*pinfo), GFP_KERNEL);
787 if (!pinfo)
788 return -ENOMEM;
789
790 pdata = &pinfo->pdata;
791 dev->platform_data = pdata;
792
793 /* Allocate bus num dynamically. */
794 pdata->bus_num = -1;
795
796 /* SPI controller is either clocked from QE or SoC clock. */
797 pdata->sysclk = get_brgfreq();
798 if (pdata->sysclk == -1) {
799 pdata->sysclk = fsl_get_sys_freq();
800 if (pdata->sysclk == -1) {
801 ret = -ENODEV;
802 goto err_clk;
803 }
804 }
805
806 prop = of_get_property(np, "mode", NULL);
807 if (prop && !strcmp(prop, "cpu-qe"))
Anton Vorontsov87ec0e92009-10-12 20:49:25 +0400808 pdata->flags = SPI_QE_CPU_MODE;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700809
Anton Vorontsov575c5802009-06-18 16:49:08 -0700810 ret = of_mpc8xxx_spi_get_chipselects(dev);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700811 if (ret)
812 goto err;
813
814 ret = of_address_to_resource(np, 0, &mem);
815 if (ret)
816 goto err;
817
818 ret = of_irq_to_resource(np, 0, &irq);
819 if (!ret) {
820 ret = -EINVAL;
821 goto err;
822 }
823
Anton Vorontsov575c5802009-06-18 16:49:08 -0700824 master = mpc8xxx_spi_probe(dev, &mem, irq.start);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700825 if (IS_ERR(master)) {
826 ret = PTR_ERR(master);
827 goto err;
828 }
829
830 of_register_spi_devices(master, np);
831
832 return 0;
833
834err:
Anton Vorontsov575c5802009-06-18 16:49:08 -0700835 of_mpc8xxx_spi_free_chipselects(dev);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700836err_clk:
837 kfree(pinfo);
838 return ret;
839}
840
Anton Vorontsov575c5802009-06-18 16:49:08 -0700841static int __devexit of_mpc8xxx_spi_remove(struct of_device *ofdev)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700842{
843 int ret;
844
Anton Vorontsov575c5802009-06-18 16:49:08 -0700845 ret = mpc8xxx_spi_remove(&ofdev->dev);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700846 if (ret)
847 return ret;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700848 of_mpc8xxx_spi_free_chipselects(&ofdev->dev);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700849 return 0;
850}
851
Anton Vorontsov575c5802009-06-18 16:49:08 -0700852static const struct of_device_id of_mpc8xxx_spi_match[] = {
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700853 { .compatible = "fsl,spi" },
854 {},
855};
Anton Vorontsov575c5802009-06-18 16:49:08 -0700856MODULE_DEVICE_TABLE(of, of_mpc8xxx_spi_match);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700857
Anton Vorontsov575c5802009-06-18 16:49:08 -0700858static struct of_platform_driver of_mpc8xxx_spi_driver = {
859 .name = "mpc8xxx_spi",
860 .match_table = of_mpc8xxx_spi_match,
861 .probe = of_mpc8xxx_spi_probe,
862 .remove = __devexit_p(of_mpc8xxx_spi_remove),
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700863};
864
865#ifdef CONFIG_MPC832x_RDB
866/*
867 * XXX XXX XXX
868 * This is "legacy" platform driver, was used by the MPC8323E-RDB boards
869 * only. The driver should go away soon, since newer MPC8323E-RDB's device
870 * tree can work with OpenFirmware driver. But for now we support old trees
871 * as well.
872 */
Anton Vorontsov575c5802009-06-18 16:49:08 -0700873static int __devinit plat_mpc8xxx_spi_probe(struct platform_device *pdev)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700874{
875 struct resource *mem;
876 unsigned int irq;
877 struct spi_master *master;
878
879 if (!pdev->dev.platform_data)
880 return -EINVAL;
881
882 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
883 if (!mem)
884 return -EINVAL;
885
886 irq = platform_get_irq(pdev, 0);
887 if (!irq)
888 return -EINVAL;
889
Anton Vorontsov575c5802009-06-18 16:49:08 -0700890 master = mpc8xxx_spi_probe(&pdev->dev, mem, irq);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700891 if (IS_ERR(master))
892 return PTR_ERR(master);
893 return 0;
894}
895
Anton Vorontsov575c5802009-06-18 16:49:08 -0700896static int __devexit plat_mpc8xxx_spi_remove(struct platform_device *pdev)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700897{
Anton Vorontsov575c5802009-06-18 16:49:08 -0700898 return mpc8xxx_spi_remove(&pdev->dev);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700899}
900
Anton Vorontsov575c5802009-06-18 16:49:08 -0700901MODULE_ALIAS("platform:mpc8xxx_spi");
902static struct platform_driver mpc8xxx_spi_driver = {
903 .probe = plat_mpc8xxx_spi_probe,
904 .remove = __exit_p(plat_mpc8xxx_spi_remove),
Kumar Galaccf06992006-05-20 15:00:15 -0700905 .driver = {
Anton Vorontsov575c5802009-06-18 16:49:08 -0700906 .name = "mpc8xxx_spi",
Kay Sievers7e38c3c2008-04-10 21:29:20 -0700907 .owner = THIS_MODULE,
Kumar Galaccf06992006-05-20 15:00:15 -0700908 },
909};
910
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700911static bool legacy_driver_failed;
912
913static void __init legacy_driver_register(void)
914{
Anton Vorontsov575c5802009-06-18 16:49:08 -0700915 legacy_driver_failed = platform_driver_register(&mpc8xxx_spi_driver);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700916}
917
918static void __exit legacy_driver_unregister(void)
919{
920 if (legacy_driver_failed)
921 return;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700922 platform_driver_unregister(&mpc8xxx_spi_driver);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700923}
924#else
925static void __init legacy_driver_register(void) {}
926static void __exit legacy_driver_unregister(void) {}
927#endif /* CONFIG_MPC832x_RDB */
928
Anton Vorontsov575c5802009-06-18 16:49:08 -0700929static int __init mpc8xxx_spi_init(void)
Kumar Galaccf06992006-05-20 15:00:15 -0700930{
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700931 legacy_driver_register();
Anton Vorontsov575c5802009-06-18 16:49:08 -0700932 return of_register_platform_driver(&of_mpc8xxx_spi_driver);
Kumar Galaccf06992006-05-20 15:00:15 -0700933}
934
Anton Vorontsov575c5802009-06-18 16:49:08 -0700935static void __exit mpc8xxx_spi_exit(void)
Kumar Galaccf06992006-05-20 15:00:15 -0700936{
Anton Vorontsov575c5802009-06-18 16:49:08 -0700937 of_unregister_platform_driver(&of_mpc8xxx_spi_driver);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700938 legacy_driver_unregister();
Kumar Galaccf06992006-05-20 15:00:15 -0700939}
940
Anton Vorontsov575c5802009-06-18 16:49:08 -0700941module_init(mpc8xxx_spi_init);
942module_exit(mpc8xxx_spi_exit);
Kumar Galaccf06992006-05-20 15:00:15 -0700943
944MODULE_AUTHOR("Kumar Gala");
Anton Vorontsov575c5802009-06-18 16:49:08 -0700945MODULE_DESCRIPTION("Simple MPC8xxx SPI Driver");
Kumar Galaccf06992006-05-20 15:00:15 -0700946MODULE_LICENSE("GPL");