blob: b9064434e0f747fffddc77e4c4d0e49232f96c2b [file] [log] [blame]
Kumar Galaccf06992006-05-20 15:00:15 -07001/*
Mingkai Hub36ece82010-10-12 18:18:31 +08002 * Freescale SPI controller driver.
Kumar Galaccf06992006-05-20 15:00:15 -07003 *
4 * Maintainer: Kumar Gala
5 *
6 * Copyright (C) 2006 Polycom, Inc.
Mingkai Hub36ece82010-10-12 18:18:31 +08007 * Copyright 2010 Freescale Semiconductor, Inc.
Kumar Galaccf06992006-05-20 15:00:15 -07008 *
Anton Vorontsov4c1fba442009-10-12 20:49:27 +04009 * CPM SPI and QE buffer descriptors mode support:
10 * Copyright (c) 2009 MontaVista Software, Inc.
11 * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12 *
Kumar Galaccf06992006-05-20 15:00:15 -070013 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
17 */
18#include <linux/module.h>
Kumar Galaccf06992006-05-20 15:00:15 -070019#include <linux/types.h>
20#include <linux/kernel.h>
Kumar Galaccf06992006-05-20 15:00:15 -070021#include <linux/interrupt.h>
22#include <linux/delay.h>
23#include <linux/irq.h>
Kumar Galaccf06992006-05-20 15:00:15 -070024#include <linux/spi/spi.h>
25#include <linux/spi/spi_bitbang.h>
26#include <linux/platform_device.h>
27#include <linux/fsl_devices.h>
Anton Vorontsov4c1fba442009-10-12 20:49:27 +040028#include <linux/dma-mapping.h>
29#include <linux/mm.h>
30#include <linux/mutex.h>
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -070031#include <linux/of.h>
32#include <linux/of_platform.h>
Andreas Larssone8beacb2013-02-15 16:52:21 +010033#include <linux/of_address.h>
34#include <linux/of_irq.h>
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -070035#include <linux/gpio.h>
36#include <linux/of_gpio.h>
Kumar Galaccf06992006-05-20 15:00:15 -070037
Grant Likelyca632f52011-06-06 01:16:30 -060038#include "spi-fsl-lib.h"
Andreas Larssone8beacb2013-02-15 16:52:21 +010039#include "spi-fsl-cpm.h"
40#include "spi-fsl-spi.h"
Kumar Galaccf06992006-05-20 15:00:15 -070041
Andreas Larssonc3f3e772013-02-15 16:52:24 +010042#define TYPE_FSL 0
43
44struct fsl_spi_match_data {
45 int type;
46};
47
48static struct fsl_spi_match_data of_fsl_spi_fsl_config = {
49 .type = TYPE_FSL,
50};
51
52static struct of_device_id of_fsl_spi_match[] = {
53 {
54 .compatible = "fsl,spi",
55 .data = &of_fsl_spi_fsl_config,
56 },
57 {}
58};
59MODULE_DEVICE_TABLE(of, of_fsl_spi_match);
60
61static int fsl_spi_get_type(struct device *dev)
62{
63 const struct of_device_id *match;
64
65 if (dev->of_node) {
66 match = of_match_node(of_fsl_spi_match, dev->of_node);
67 if (match && match->data)
68 return ((struct fsl_spi_match_data *)match->data)->type;
69 }
70 return TYPE_FSL;
71}
72
Mingkai Hub36ece82010-10-12 18:18:31 +080073static void fsl_spi_change_mode(struct spi_device *spi)
Anton Vorontsova35c1712009-10-12 20:49:24 +040074{
75 struct mpc8xxx_spi *mspi = spi_master_get_devdata(spi->master);
76 struct spi_mpc8xxx_cs *cs = spi->controller_state;
Mingkai Hub36ece82010-10-12 18:18:31 +080077 struct fsl_spi_reg *reg_base = mspi->reg_base;
78 __be32 __iomem *mode = &reg_base->mode;
Anton Vorontsova35c1712009-10-12 20:49:24 +040079 unsigned long flags;
80
81 if (cs->hw_mode == mpc8xxx_spi_read_reg(mode))
82 return;
83
84 /* Turn off IRQs locally to minimize time that SPI is disabled. */
85 local_irq_save(flags);
86
87 /* Turn off SPI unit prior changing mode */
88 mpc8xxx_spi_write_reg(mode, cs->hw_mode & ~SPMODE_ENABLE);
Anton Vorontsova35c1712009-10-12 20:49:24 +040089
Anton Vorontsov4c1fba442009-10-12 20:49:27 +040090 /* When in CPM mode, we need to reinit tx and rx. */
91 if (mspi->flags & SPI_CPM_MODE) {
Andreas Larssone8beacb2013-02-15 16:52:21 +010092 fsl_spi_cpm_reinit_txrx(mspi);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +040093 }
Joakim Tjernlundf9218c22010-05-22 02:18:02 -060094 mpc8xxx_spi_write_reg(mode, cs->hw_mode);
Anton Vorontsova35c1712009-10-12 20:49:24 +040095 local_irq_restore(flags);
96}
97
Mingkai Hub36ece82010-10-12 18:18:31 +080098static void fsl_spi_chipselect(struct spi_device *spi, int value)
Kumar Galaccf06992006-05-20 15:00:15 -070099{
Anton Vorontsov575c5802009-06-18 16:49:08 -0700100 struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(spi->master);
Kenth Eriksson5039a862012-03-30 17:05:30 +0200101 struct fsl_spi_platform_data *pdata;
Anton Vorontsov364fdbc2009-03-31 15:24:36 -0700102 bool pol = spi->mode & SPI_CS_HIGH;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700103 struct spi_mpc8xxx_cs *cs = spi->controller_state;
Kumar Galaccf06992006-05-20 15:00:15 -0700104
Kenth Eriksson5039a862012-03-30 17:05:30 +0200105 pdata = spi->dev.parent->parent->platform_data;
106
Kumar Galaccf06992006-05-20 15:00:15 -0700107 if (value == BITBANG_CS_INACTIVE) {
Anton Vorontsov364fdbc2009-03-31 15:24:36 -0700108 if (pdata->cs_control)
109 pdata->cs_control(spi, !pol);
Kumar Galaccf06992006-05-20 15:00:15 -0700110 }
111
112 if (value == BITBANG_CS_ACTIVE) {
Anton Vorontsov575c5802009-06-18 16:49:08 -0700113 mpc8xxx_spi->rx_shift = cs->rx_shift;
114 mpc8xxx_spi->tx_shift = cs->tx_shift;
115 mpc8xxx_spi->get_rx = cs->get_rx;
116 mpc8xxx_spi->get_tx = cs->get_tx;
Kumar Galaccf06992006-05-20 15:00:15 -0700117
Mingkai Hub36ece82010-10-12 18:18:31 +0800118 fsl_spi_change_mode(spi);
Kumar Galaccf06992006-05-20 15:00:15 -0700119
Anton Vorontsov364fdbc2009-03-31 15:24:36 -0700120 if (pdata->cs_control)
121 pdata->cs_control(spi, pol);
Kumar Galaccf06992006-05-20 15:00:15 -0700122 }
123}
124
Andreas Larssonb48c4e32013-02-15 16:52:23 +0100125static void fsl_spi_qe_cpu_set_shifts(u32 *rx_shift, u32 *tx_shift,
126 int bits_per_word, int msb_first)
127{
128 *rx_shift = 0;
129 *tx_shift = 0;
130 if (msb_first) {
131 if (bits_per_word <= 8) {
132 *rx_shift = 16;
133 *tx_shift = 24;
134 } else if (bits_per_word <= 16) {
135 *rx_shift = 16;
136 *tx_shift = 16;
137 }
138 } else {
139 if (bits_per_word <= 8)
140 *rx_shift = 8;
141 }
142}
143
Mingkai Hub36ece82010-10-12 18:18:31 +0800144static int mspi_apply_cpu_mode_quirks(struct spi_mpc8xxx_cs *cs,
145 struct spi_device *spi,
146 struct mpc8xxx_spi *mpc8xxx_spi,
147 int bits_per_word)
Joakim Tjernlund0398fb72010-05-14 09:14:26 +0000148{
149 cs->rx_shift = 0;
150 cs->tx_shift = 0;
151 if (bits_per_word <= 8) {
152 cs->get_rx = mpc8xxx_spi_rx_buf_u8;
153 cs->get_tx = mpc8xxx_spi_tx_buf_u8;
Joakim Tjernlund0398fb72010-05-14 09:14:26 +0000154 } else if (bits_per_word <= 16) {
155 cs->get_rx = mpc8xxx_spi_rx_buf_u16;
156 cs->get_tx = mpc8xxx_spi_tx_buf_u16;
Joakim Tjernlund0398fb72010-05-14 09:14:26 +0000157 } else if (bits_per_word <= 32) {
158 cs->get_rx = mpc8xxx_spi_rx_buf_u32;
159 cs->get_tx = mpc8xxx_spi_tx_buf_u32;
160 } else
161 return -EINVAL;
162
Andreas Larssonb48c4e32013-02-15 16:52:23 +0100163 if (mpc8xxx_spi->set_shifts)
164 mpc8xxx_spi->set_shifts(&cs->rx_shift, &cs->tx_shift,
165 bits_per_word,
166 !(spi->mode & SPI_LSB_FIRST));
167
Joakim Tjernlund0398fb72010-05-14 09:14:26 +0000168 mpc8xxx_spi->rx_shift = cs->rx_shift;
169 mpc8xxx_spi->tx_shift = cs->tx_shift;
170 mpc8xxx_spi->get_rx = cs->get_rx;
171 mpc8xxx_spi->get_tx = cs->get_tx;
172
173 return bits_per_word;
174}
175
Mingkai Hub36ece82010-10-12 18:18:31 +0800176static int mspi_apply_qe_mode_quirks(struct spi_mpc8xxx_cs *cs,
177 struct spi_device *spi,
178 int bits_per_word)
Joakim Tjernlund0398fb72010-05-14 09:14:26 +0000179{
180 /* QE uses Little Endian for words > 8
181 * so transform all words > 8 into 8 bits
182 * Unfortnatly that doesn't work for LSB so
183 * reject these for now */
184 /* Note: 32 bits word, LSB works iff
185 * tfcr/rfcr is set to CPMFCR_GBL */
186 if (spi->mode & SPI_LSB_FIRST &&
187 bits_per_word > 8)
188 return -EINVAL;
189 if (bits_per_word > 8)
190 return 8; /* pretend its 8 bits */
191 return bits_per_word;
192}
193
Mingkai Hub36ece82010-10-12 18:18:31 +0800194static int fsl_spi_setup_transfer(struct spi_device *spi,
195 struct spi_transfer *t)
Kumar Galaccf06992006-05-20 15:00:15 -0700196{
Anton Vorontsov575c5802009-06-18 16:49:08 -0700197 struct mpc8xxx_spi *mpc8xxx_spi;
Mingkai Hub36ece82010-10-12 18:18:31 +0800198 int bits_per_word = 0;
Joakim Tjernlund0398fb72010-05-14 09:14:26 +0000199 u8 pm;
Mingkai Hub36ece82010-10-12 18:18:31 +0800200 u32 hz = 0;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700201 struct spi_mpc8xxx_cs *cs = spi->controller_state;
Kumar Galaccf06992006-05-20 15:00:15 -0700202
Anton Vorontsov575c5802009-06-18 16:49:08 -0700203 mpc8xxx_spi = spi_master_get_devdata(spi->master);
Kumar Galaccf06992006-05-20 15:00:15 -0700204
205 if (t) {
206 bits_per_word = t->bits_per_word;
207 hz = t->speed_hz;
Kumar Galaccf06992006-05-20 15:00:15 -0700208 }
209
210 /* spi_transfer level calls that work per-word */
211 if (!bits_per_word)
212 bits_per_word = spi->bits_per_word;
213
214 /* Make sure its a bit width we support [4..16, 32] */
215 if ((bits_per_word < 4)
216 || ((bits_per_word > 16) && (bits_per_word != 32)))
217 return -EINVAL;
218
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700219 if (!hz)
220 hz = spi->max_speed_hz;
221
Joakim Tjernlund0398fb72010-05-14 09:14:26 +0000222 if (!(mpc8xxx_spi->flags & SPI_CPM_MODE))
223 bits_per_word = mspi_apply_cpu_mode_quirks(cs, spi,
224 mpc8xxx_spi,
225 bits_per_word);
226 else if (mpc8xxx_spi->flags & SPI_QE)
227 bits_per_word = mspi_apply_qe_mode_quirks(cs, spi,
228 bits_per_word);
Kumar Galaccf06992006-05-20 15:00:15 -0700229
Joakim Tjernlund0398fb72010-05-14 09:14:26 +0000230 if (bits_per_word < 0)
231 return bits_per_word;
Kumar Galaccf06992006-05-20 15:00:15 -0700232
233 if (bits_per_word == 32)
234 bits_per_word = 0;
235 else
236 bits_per_word = bits_per_word - 1;
237
Anton Vorontsov32421da2007-07-31 00:38:41 -0700238 /* mask out bits we are going to set */
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700239 cs->hw_mode &= ~(SPMODE_LEN(0xF) | SPMODE_DIV16
240 | SPMODE_PM(0xF));
Kumar Galaccf06992006-05-20 15:00:15 -0700241
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700242 cs->hw_mode |= SPMODE_LEN(bits_per_word);
Kumar Galaccf06992006-05-20 15:00:15 -0700243
Anton Vorontsov575c5802009-06-18 16:49:08 -0700244 if ((mpc8xxx_spi->spibrg / hz) > 64) {
Peter Korsgaard53604db2008-09-13 02:33:14 -0700245 cs->hw_mode |= SPMODE_DIV16;
Ernst Schwab4f4517c2010-02-16 21:02:57 -0700246 pm = (mpc8xxx_spi->spibrg - 1) / (hz * 64) + 1;
Anton Vorontsovfd8a11e2009-06-18 16:49:01 -0700247
248 WARN_ONCE(pm > 16, "%s: Requested speed is too low: %d Hz. "
249 "Will use %d Hz instead.\n", dev_name(&spi->dev),
Anton Vorontsov575c5802009-06-18 16:49:08 -0700250 hz, mpc8xxx_spi->spibrg / 1024);
Anton Vorontsovfd8a11e2009-06-18 16:49:01 -0700251 if (pm > 16)
Peter Korsgaard53604db2008-09-13 02:33:14 -0700252 pm = 16;
Mingkai Hub36ece82010-10-12 18:18:31 +0800253 } else {
Ernst Schwab4f4517c2010-02-16 21:02:57 -0700254 pm = (mpc8xxx_spi->spibrg - 1) / (hz * 4) + 1;
Mingkai Hub36ece82010-10-12 18:18:31 +0800255 }
Chen Gonga61f5342008-07-23 21:29:52 -0700256 if (pm)
257 pm--;
258
259 cs->hw_mode |= SPMODE_PM(pm);
David Brownelldccd5732007-07-17 04:04:02 -0700260
Mingkai Hub36ece82010-10-12 18:18:31 +0800261 fsl_spi_change_mode(spi);
Kumar Galaccf06992006-05-20 15:00:15 -0700262 return 0;
263}
264
Mingkai Hub36ece82010-10-12 18:18:31 +0800265static int fsl_spi_cpu_bufs(struct mpc8xxx_spi *mspi,
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400266 struct spi_transfer *t, unsigned int len)
267{
268 u32 word;
Mingkai Hub36ece82010-10-12 18:18:31 +0800269 struct fsl_spi_reg *reg_base = mspi->reg_base;
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400270
271 mspi->count = len;
272
273 /* enable rx ints */
Mingkai Hub36ece82010-10-12 18:18:31 +0800274 mpc8xxx_spi_write_reg(&reg_base->mask, SPIM_NE);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400275
276 /* transmit word */
277 word = mspi->get_tx(mspi);
Mingkai Hub36ece82010-10-12 18:18:31 +0800278 mpc8xxx_spi_write_reg(&reg_base->transmit, word);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400279
280 return 0;
281}
282
Mingkai Hub36ece82010-10-12 18:18:31 +0800283static int fsl_spi_bufs(struct spi_device *spi, struct spi_transfer *t,
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400284 bool is_dma_mapped)
285{
286 struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(spi->master);
Mingkai Hub36ece82010-10-12 18:18:31 +0800287 struct fsl_spi_reg *reg_base;
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400288 unsigned int len = t->len;
289 u8 bits_per_word;
290 int ret;
291
Mingkai Hub36ece82010-10-12 18:18:31 +0800292 reg_base = mpc8xxx_spi->reg_base;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700293 bits_per_word = spi->bits_per_word;
294 if (t->bits_per_word)
295 bits_per_word = t->bits_per_word;
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400296
Peter Korsgaardaa77d962008-09-13 02:33:15 -0700297 if (bits_per_word > 8) {
298 /* invalid length? */
299 if (len & 1)
300 return -EINVAL;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700301 len /= 2;
Peter Korsgaardaa77d962008-09-13 02:33:15 -0700302 }
303 if (bits_per_word > 16) {
304 /* invalid length? */
305 if (len & 1)
306 return -EINVAL;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700307 len /= 2;
Peter Korsgaardaa77d962008-09-13 02:33:15 -0700308 }
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400309
310 mpc8xxx_spi->tx = t->tx_buf;
311 mpc8xxx_spi->rx = t->rx_buf;
Peter Korsgaardaa77d962008-09-13 02:33:15 -0700312
Anton Vorontsov575c5802009-06-18 16:49:08 -0700313 INIT_COMPLETION(mpc8xxx_spi->done);
Kumar Galaccf06992006-05-20 15:00:15 -0700314
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400315 if (mpc8xxx_spi->flags & SPI_CPM_MODE)
Mingkai Hub36ece82010-10-12 18:18:31 +0800316 ret = fsl_spi_cpm_bufs(mpc8xxx_spi, t, is_dma_mapped);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400317 else
Mingkai Hub36ece82010-10-12 18:18:31 +0800318 ret = fsl_spi_cpu_bufs(mpc8xxx_spi, t, len);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400319 if (ret)
320 return ret;
Kumar Galaccf06992006-05-20 15:00:15 -0700321
Anton Vorontsov575c5802009-06-18 16:49:08 -0700322 wait_for_completion(&mpc8xxx_spi->done);
Kumar Galaccf06992006-05-20 15:00:15 -0700323
324 /* disable rx ints */
Mingkai Hub36ece82010-10-12 18:18:31 +0800325 mpc8xxx_spi_write_reg(&reg_base->mask, 0);
Kumar Galaccf06992006-05-20 15:00:15 -0700326
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400327 if (mpc8xxx_spi->flags & SPI_CPM_MODE)
Mingkai Hub36ece82010-10-12 18:18:31 +0800328 fsl_spi_cpm_bufs_complete(mpc8xxx_spi);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400329
Anton Vorontsov575c5802009-06-18 16:49:08 -0700330 return mpc8xxx_spi->count;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700331}
332
Mingkai Hub36ece82010-10-12 18:18:31 +0800333static void fsl_spi_do_one_msg(struct spi_message *m)
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700334{
335 struct spi_device *spi = m->spi;
336 struct spi_transfer *t;
337 unsigned int cs_change;
338 const int nsecs = 50;
339 int status;
340
341 cs_change = 1;
342 status = 0;
343 list_for_each_entry(t, &m->transfers, transfer_list) {
344 if (t->bits_per_word || t->speed_hz) {
345 /* Don't allow changes if CS is active */
346 status = -EINVAL;
347
348 if (cs_change)
Mingkai Hub36ece82010-10-12 18:18:31 +0800349 status = fsl_spi_setup_transfer(spi, t);
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700350 if (status < 0)
351 break;
352 }
353
354 if (cs_change) {
Mingkai Hub36ece82010-10-12 18:18:31 +0800355 fsl_spi_chipselect(spi, BITBANG_CS_ACTIVE);
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700356 ndelay(nsecs);
357 }
358 cs_change = t->cs_change;
359 if (t->len)
Mingkai Hub36ece82010-10-12 18:18:31 +0800360 status = fsl_spi_bufs(spi, t, m->is_dma_mapped);
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700361 if (status) {
362 status = -EMSGSIZE;
363 break;
364 }
365 m->actual_length += t->len;
366
367 if (t->delay_usecs)
368 udelay(t->delay_usecs);
369
370 if (cs_change) {
371 ndelay(nsecs);
Mingkai Hub36ece82010-10-12 18:18:31 +0800372 fsl_spi_chipselect(spi, BITBANG_CS_INACTIVE);
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700373 ndelay(nsecs);
374 }
375 }
376
377 m->status = status;
378 m->complete(m->context);
379
380 if (status || !cs_change) {
381 ndelay(nsecs);
Mingkai Hub36ece82010-10-12 18:18:31 +0800382 fsl_spi_chipselect(spi, BITBANG_CS_INACTIVE);
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700383 }
384
Mingkai Hub36ece82010-10-12 18:18:31 +0800385 fsl_spi_setup_transfer(spi, NULL);
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700386}
387
Mingkai Hub36ece82010-10-12 18:18:31 +0800388static int fsl_spi_setup(struct spi_device *spi)
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700389{
Anton Vorontsov575c5802009-06-18 16:49:08 -0700390 struct mpc8xxx_spi *mpc8xxx_spi;
Mingkai Hub36ece82010-10-12 18:18:31 +0800391 struct fsl_spi_reg *reg_base;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700392 int retval;
393 u32 hw_mode;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700394 struct spi_mpc8xxx_cs *cs = spi->controller_state;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700395
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700396 if (!spi->max_speed_hz)
397 return -EINVAL;
398
399 if (!cs) {
400 cs = kzalloc(sizeof *cs, GFP_KERNEL);
401 if (!cs)
402 return -ENOMEM;
403 spi->controller_state = cs;
404 }
Anton Vorontsov575c5802009-06-18 16:49:08 -0700405 mpc8xxx_spi = spi_master_get_devdata(spi->master);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700406
Mingkai Hub36ece82010-10-12 18:18:31 +0800407 reg_base = mpc8xxx_spi->reg_base;
408
Thomas Weber88393162010-03-16 11:47:56 +0100409 hw_mode = cs->hw_mode; /* Save original settings */
Mingkai Hub36ece82010-10-12 18:18:31 +0800410 cs->hw_mode = mpc8xxx_spi_read_reg(&reg_base->mode);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700411 /* mask out bits we are going to set */
412 cs->hw_mode &= ~(SPMODE_CP_BEGIN_EDGECLK | SPMODE_CI_INACTIVEHIGH
413 | SPMODE_REV | SPMODE_LOOP);
414
415 if (spi->mode & SPI_CPHA)
416 cs->hw_mode |= SPMODE_CP_BEGIN_EDGECLK;
417 if (spi->mode & SPI_CPOL)
418 cs->hw_mode |= SPMODE_CI_INACTIVEHIGH;
419 if (!(spi->mode & SPI_LSB_FIRST))
420 cs->hw_mode |= SPMODE_REV;
421 if (spi->mode & SPI_LOOP)
422 cs->hw_mode |= SPMODE_LOOP;
423
Mingkai Hub36ece82010-10-12 18:18:31 +0800424 retval = fsl_spi_setup_transfer(spi, NULL);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700425 if (retval < 0) {
426 cs->hw_mode = hw_mode; /* Restore settings */
427 return retval;
428 }
Andreas Larssonf482cd02013-02-15 16:52:22 +0100429
430 /* Initialize chipselect - might be active for SPI_CS_HIGH mode */
431 fsl_spi_chipselect(spi, BITBANG_CS_INACTIVE);
432
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700433 return 0;
Kumar Galaccf06992006-05-20 15:00:15 -0700434}
435
Mingkai Hub36ece82010-10-12 18:18:31 +0800436static void fsl_spi_cpu_irq(struct mpc8xxx_spi *mspi, u32 events)
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400437{
Mingkai Hub36ece82010-10-12 18:18:31 +0800438 struct fsl_spi_reg *reg_base = mspi->reg_base;
439
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400440 /* We need handle RX first */
441 if (events & SPIE_NE) {
Mingkai Hub36ece82010-10-12 18:18:31 +0800442 u32 rx_data = mpc8xxx_spi_read_reg(&reg_base->receive);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400443
444 if (mspi->rx)
445 mspi->get_rx(rx_data, mspi);
446 }
447
448 if ((events & SPIE_NF) == 0)
449 /* spin until TX is done */
450 while (((events =
Mingkai Hub36ece82010-10-12 18:18:31 +0800451 mpc8xxx_spi_read_reg(&reg_base->event)) &
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400452 SPIE_NF) == 0)
453 cpu_relax();
454
455 /* Clear the events */
Mingkai Hub36ece82010-10-12 18:18:31 +0800456 mpc8xxx_spi_write_reg(&reg_base->event, events);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400457
458 mspi->count -= 1;
459 if (mspi->count) {
460 u32 word = mspi->get_tx(mspi);
461
Mingkai Hub36ece82010-10-12 18:18:31 +0800462 mpc8xxx_spi_write_reg(&reg_base->transmit, word);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400463 } else {
464 complete(&mspi->done);
465 }
466}
467
Mingkai Hub36ece82010-10-12 18:18:31 +0800468static irqreturn_t fsl_spi_irq(s32 irq, void *context_data)
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400469{
470 struct mpc8xxx_spi *mspi = context_data;
471 irqreturn_t ret = IRQ_NONE;
472 u32 events;
Mingkai Hub36ece82010-10-12 18:18:31 +0800473 struct fsl_spi_reg *reg_base = mspi->reg_base;
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400474
475 /* Get interrupt events(tx/rx) */
Mingkai Hub36ece82010-10-12 18:18:31 +0800476 events = mpc8xxx_spi_read_reg(&reg_base->event);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400477 if (events)
478 ret = IRQ_HANDLED;
479
480 dev_dbg(mspi->dev, "%s: events %x\n", __func__, events);
481
482 if (mspi->flags & SPI_CPM_MODE)
Mingkai Hub36ece82010-10-12 18:18:31 +0800483 fsl_spi_cpm_irq(mspi, events);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400484 else
Mingkai Hub36ece82010-10-12 18:18:31 +0800485 fsl_spi_cpu_irq(mspi, events);
Kumar Galaccf06992006-05-20 15:00:15 -0700486
487 return ret;
488}
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400489
Mingkai Hub36ece82010-10-12 18:18:31 +0800490static void fsl_spi_remove(struct mpc8xxx_spi *mspi)
Anton Vorontsov87ec0e92009-10-12 20:49:25 +0400491{
Mingkai Hub36ece82010-10-12 18:18:31 +0800492 iounmap(mspi->reg_base);
493 fsl_spi_cpm_free(mspi);
Anton Vorontsov87ec0e92009-10-12 20:49:25 +0400494}
495
Grant Likelyfd4a3192012-12-07 16:57:14 +0000496static struct spi_master * fsl_spi_probe(struct device *dev,
Mingkai Hub36ece82010-10-12 18:18:31 +0800497 struct resource *mem, unsigned int irq)
Kumar Galaccf06992006-05-20 15:00:15 -0700498{
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700499 struct fsl_spi_platform_data *pdata = dev->platform_data;
Kumar Galaccf06992006-05-20 15:00:15 -0700500 struct spi_master *master;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700501 struct mpc8xxx_spi *mpc8xxx_spi;
Mingkai Hub36ece82010-10-12 18:18:31 +0800502 struct fsl_spi_reg *reg_base;
Kumar Galaccf06992006-05-20 15:00:15 -0700503 u32 regval;
504 int ret = 0;
505
Anton Vorontsov575c5802009-06-18 16:49:08 -0700506 master = spi_alloc_master(dev, sizeof(struct mpc8xxx_spi));
Kumar Galaccf06992006-05-20 15:00:15 -0700507 if (master == NULL) {
508 ret = -ENOMEM;
509 goto err;
510 }
511
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700512 dev_set_drvdata(dev, master);
Kumar Galaccf06992006-05-20 15:00:15 -0700513
Mingkai Hub36ece82010-10-12 18:18:31 +0800514 ret = mpc8xxx_spi_probe(dev, mem, irq);
515 if (ret)
516 goto err_probe;
David Brownelle7db06b2009-06-17 16:26:04 -0700517
Mingkai Hub36ece82010-10-12 18:18:31 +0800518 master->setup = fsl_spi_setup;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700519
Anton Vorontsov575c5802009-06-18 16:49:08 -0700520 mpc8xxx_spi = spi_master_get_devdata(master);
Mingkai Hub36ece82010-10-12 18:18:31 +0800521 mpc8xxx_spi->spi_do_one_msg = fsl_spi_do_one_msg;
522 mpc8xxx_spi->spi_remove = fsl_spi_remove;
Andreas Larssonc3f3e772013-02-15 16:52:24 +0100523 mpc8xxx_spi->type = fsl_spi_get_type(dev);
Mingkai Hub36ece82010-10-12 18:18:31 +0800524
525 ret = fsl_spi_cpm_init(mpc8xxx_spi);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400526 if (ret)
527 goto err_cpm_init;
528
Andreas Larssonb48c4e32013-02-15 16:52:23 +0100529 if (mpc8xxx_spi->flags & SPI_QE_CPU_MODE)
530 mpc8xxx_spi->set_shifts = fsl_spi_qe_cpu_set_shifts;
531
532 if (mpc8xxx_spi->set_shifts)
533 /* 8 bits per word and MSB first */
534 mpc8xxx_spi->set_shifts(&mpc8xxx_spi->rx_shift,
535 &mpc8xxx_spi->tx_shift, 8, 1);
Joakim Tjernlundf29ba282007-07-17 04:04:12 -0700536
Mingkai Hub36ece82010-10-12 18:18:31 +0800537 mpc8xxx_spi->reg_base = ioremap(mem->start, resource_size(mem));
538 if (mpc8xxx_spi->reg_base == NULL) {
Kumar Galaccf06992006-05-20 15:00:15 -0700539 ret = -ENOMEM;
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400540 goto err_ioremap;
Kumar Galaccf06992006-05-20 15:00:15 -0700541 }
542
Kumar Galaccf06992006-05-20 15:00:15 -0700543 /* Register for SPI Interrupt */
Mingkai Hub36ece82010-10-12 18:18:31 +0800544 ret = request_irq(mpc8xxx_spi->irq, fsl_spi_irq,
545 0, "fsl_spi", mpc8xxx_spi);
Kumar Galaccf06992006-05-20 15:00:15 -0700546
547 if (ret != 0)
Mingkai Hub36ece82010-10-12 18:18:31 +0800548 goto free_irq;
Kumar Galaccf06992006-05-20 15:00:15 -0700549
Mingkai Hub36ece82010-10-12 18:18:31 +0800550 reg_base = mpc8xxx_spi->reg_base;
Kumar Galaccf06992006-05-20 15:00:15 -0700551
552 /* SPI controller initializations */
Mingkai Hub36ece82010-10-12 18:18:31 +0800553 mpc8xxx_spi_write_reg(&reg_base->mode, 0);
554 mpc8xxx_spi_write_reg(&reg_base->mask, 0);
555 mpc8xxx_spi_write_reg(&reg_base->command, 0);
556 mpc8xxx_spi_write_reg(&reg_base->event, 0xffffffff);
Kumar Galaccf06992006-05-20 15:00:15 -0700557
558 /* Enable SPI interface */
559 regval = pdata->initial_spmode | SPMODE_INIT_VAL | SPMODE_ENABLE;
Anton Vorontsov87ec0e92009-10-12 20:49:25 +0400560 if (mpc8xxx_spi->flags & SPI_QE_CPU_MODE)
Joakim Tjernlundf29ba282007-07-17 04:04:12 -0700561 regval |= SPMODE_OP;
562
Mingkai Hub36ece82010-10-12 18:18:31 +0800563 mpc8xxx_spi_write_reg(&reg_base->mode, regval);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700564
565 ret = spi_register_master(master);
566 if (ret < 0)
567 goto unreg_master;
Kumar Galaccf06992006-05-20 15:00:15 -0700568
Mingkai Hub36ece82010-10-12 18:18:31 +0800569 dev_info(dev, "at 0x%p (irq = %d), %s mode\n", reg_base,
Anton Vorontsov87ec0e92009-10-12 20:49:25 +0400570 mpc8xxx_spi->irq, mpc8xxx_spi_strmode(mpc8xxx_spi->flags));
Kumar Galaccf06992006-05-20 15:00:15 -0700571
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700572 return master;
Kumar Galaccf06992006-05-20 15:00:15 -0700573
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700574unreg_master:
Anton Vorontsov575c5802009-06-18 16:49:08 -0700575 free_irq(mpc8xxx_spi->irq, mpc8xxx_spi);
Mingkai Hub36ece82010-10-12 18:18:31 +0800576free_irq:
577 iounmap(mpc8xxx_spi->reg_base);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400578err_ioremap:
Mingkai Hub36ece82010-10-12 18:18:31 +0800579 fsl_spi_cpm_free(mpc8xxx_spi);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400580err_cpm_init:
Mingkai Hub36ece82010-10-12 18:18:31 +0800581err_probe:
Kumar Galaccf06992006-05-20 15:00:15 -0700582 spi_master_put(master);
Kumar Galaccf06992006-05-20 15:00:15 -0700583err:
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700584 return ERR_PTR(ret);
Kumar Galaccf06992006-05-20 15:00:15 -0700585}
586
Mingkai Hub36ece82010-10-12 18:18:31 +0800587static void fsl_spi_cs_control(struct spi_device *spi, bool on)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700588{
Herton Ronaldo Krzesinski067aa482012-05-11 15:29:50 -0700589 struct device *dev = spi->dev.parent->parent;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700590 struct mpc8xxx_spi_probe_info *pinfo = to_of_pinfo(dev->platform_data);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700591 u16 cs = spi->chip_select;
592 int gpio = pinfo->gpios[cs];
593 bool alow = pinfo->alow_flags[cs];
594
595 gpio_set_value(gpio, on ^ alow);
596}
597
Mingkai Hub36ece82010-10-12 18:18:31 +0800598static int of_fsl_spi_get_chipselects(struct device *dev)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700599{
Grant Likely61c7a082010-04-13 16:12:29 -0700600 struct device_node *np = dev->of_node;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700601 struct fsl_spi_platform_data *pdata = dev->platform_data;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700602 struct mpc8xxx_spi_probe_info *pinfo = to_of_pinfo(pdata);
Grant Likelye80beb22013-02-12 17:48:37 +0000603 int ngpios;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700604 int i = 0;
605 int ret;
606
607 ngpios = of_gpio_count(np);
Grant Likelye80beb22013-02-12 17:48:37 +0000608 if (ngpios <= 0) {
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700609 /*
610 * SPI w/o chip-select line. One SPI device is still permitted
611 * though.
612 */
613 pdata->max_chipselect = 1;
614 return 0;
615 }
616
Roel Kluin02141542009-06-16 15:31:15 -0700617 pinfo->gpios = kmalloc(ngpios * sizeof(*pinfo->gpios), GFP_KERNEL);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700618 if (!pinfo->gpios)
619 return -ENOMEM;
Roel Kluin02141542009-06-16 15:31:15 -0700620 memset(pinfo->gpios, -1, ngpios * sizeof(*pinfo->gpios));
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700621
Roel Kluin02141542009-06-16 15:31:15 -0700622 pinfo->alow_flags = kzalloc(ngpios * sizeof(*pinfo->alow_flags),
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700623 GFP_KERNEL);
624 if (!pinfo->alow_flags) {
625 ret = -ENOMEM;
626 goto err_alloc_flags;
627 }
628
629 for (; i < ngpios; i++) {
630 int gpio;
631 enum of_gpio_flags flags;
632
633 gpio = of_get_gpio_flags(np, i, &flags);
634 if (!gpio_is_valid(gpio)) {
635 dev_err(dev, "invalid gpio #%d: %d\n", i, gpio);
Anton Vorontsov783058f2009-10-12 20:49:22 +0400636 ret = gpio;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700637 goto err_loop;
638 }
639
640 ret = gpio_request(gpio, dev_name(dev));
641 if (ret) {
642 dev_err(dev, "can't request gpio #%d: %d\n", i, ret);
643 goto err_loop;
644 }
645
646 pinfo->gpios[i] = gpio;
647 pinfo->alow_flags[i] = flags & OF_GPIO_ACTIVE_LOW;
648
649 ret = gpio_direction_output(pinfo->gpios[i],
650 pinfo->alow_flags[i]);
651 if (ret) {
652 dev_err(dev, "can't set output direction for gpio "
653 "#%d: %d\n", i, ret);
654 goto err_loop;
655 }
656 }
657
658 pdata->max_chipselect = ngpios;
Mingkai Hub36ece82010-10-12 18:18:31 +0800659 pdata->cs_control = fsl_spi_cs_control;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700660
661 return 0;
662
663err_loop:
664 while (i >= 0) {
665 if (gpio_is_valid(pinfo->gpios[i]))
666 gpio_free(pinfo->gpios[i]);
667 i--;
668 }
669
670 kfree(pinfo->alow_flags);
671 pinfo->alow_flags = NULL;
672err_alloc_flags:
673 kfree(pinfo->gpios);
674 pinfo->gpios = NULL;
675 return ret;
676}
677
Mingkai Hub36ece82010-10-12 18:18:31 +0800678static int of_fsl_spi_free_chipselects(struct device *dev)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700679{
680 struct fsl_spi_platform_data *pdata = dev->platform_data;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700681 struct mpc8xxx_spi_probe_info *pinfo = to_of_pinfo(pdata);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700682 int i;
683
684 if (!pinfo->gpios)
685 return 0;
686
687 for (i = 0; i < pdata->max_chipselect; i++) {
688 if (gpio_is_valid(pinfo->gpios[i]))
689 gpio_free(pinfo->gpios[i]);
690 }
691
692 kfree(pinfo->gpios);
693 kfree(pinfo->alow_flags);
694 return 0;
695}
696
Grant Likelyfd4a3192012-12-07 16:57:14 +0000697static int of_fsl_spi_probe(struct platform_device *ofdev)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700698{
699 struct device *dev = &ofdev->dev;
Grant Likely61c7a082010-04-13 16:12:29 -0700700 struct device_node *np = ofdev->dev.of_node;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700701 struct spi_master *master;
702 struct resource mem;
Andreas Larssone8beacb2013-02-15 16:52:21 +0100703 int irq;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700704 int ret = -ENOMEM;
705
Grant Likely18d306d2011-02-22 21:02:43 -0700706 ret = of_mpc8xxx_spi_probe(ofdev);
Mingkai Hub36ece82010-10-12 18:18:31 +0800707 if (ret)
708 return ret;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700709
Mingkai Hub36ece82010-10-12 18:18:31 +0800710 ret = of_fsl_spi_get_chipselects(dev);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700711 if (ret)
712 goto err;
713
714 ret = of_address_to_resource(np, 0, &mem);
715 if (ret)
716 goto err;
717
Andreas Larssone8beacb2013-02-15 16:52:21 +0100718 irq = irq_of_parse_and_map(np, 0);
719 if (!irq) {
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700720 ret = -EINVAL;
721 goto err;
722 }
723
Andreas Larssone8beacb2013-02-15 16:52:21 +0100724 master = fsl_spi_probe(dev, &mem, irq);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700725 if (IS_ERR(master)) {
726 ret = PTR_ERR(master);
727 goto err;
728 }
729
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700730 return 0;
731
732err:
Mingkai Hub36ece82010-10-12 18:18:31 +0800733 of_fsl_spi_free_chipselects(dev);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700734 return ret;
735}
736
Grant Likelyfd4a3192012-12-07 16:57:14 +0000737static int of_fsl_spi_remove(struct platform_device *ofdev)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700738{
739 int ret;
740
Anton Vorontsov575c5802009-06-18 16:49:08 -0700741 ret = mpc8xxx_spi_remove(&ofdev->dev);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700742 if (ret)
743 return ret;
Mingkai Hub36ece82010-10-12 18:18:31 +0800744 of_fsl_spi_free_chipselects(&ofdev->dev);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700745 return 0;
746}
747
Grant Likely18d306d2011-02-22 21:02:43 -0700748static struct platform_driver of_fsl_spi_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700749 .driver = {
Mingkai Hub36ece82010-10-12 18:18:31 +0800750 .name = "fsl_spi",
Grant Likely40182942010-04-13 16:13:02 -0700751 .owner = THIS_MODULE,
Mingkai Hub36ece82010-10-12 18:18:31 +0800752 .of_match_table = of_fsl_spi_match,
Grant Likely40182942010-04-13 16:13:02 -0700753 },
Mingkai Hub36ece82010-10-12 18:18:31 +0800754 .probe = of_fsl_spi_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +0000755 .remove = of_fsl_spi_remove,
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700756};
757
758#ifdef CONFIG_MPC832x_RDB
759/*
Mingkai Hub36ece82010-10-12 18:18:31 +0800760 * XXX XXX XXX
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700761 * This is "legacy" platform driver, was used by the MPC8323E-RDB boards
762 * only. The driver should go away soon, since newer MPC8323E-RDB's device
763 * tree can work with OpenFirmware driver. But for now we support old trees
764 * as well.
765 */
Grant Likelyfd4a3192012-12-07 16:57:14 +0000766static int plat_mpc8xxx_spi_probe(struct platform_device *pdev)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700767{
768 struct resource *mem;
Uwe Kleine-Könige9a172f2010-01-20 13:49:44 -0700769 int irq;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700770 struct spi_master *master;
771
772 if (!pdev->dev.platform_data)
773 return -EINVAL;
774
775 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
776 if (!mem)
777 return -EINVAL;
778
779 irq = platform_get_irq(pdev, 0);
Uwe Kleine-Könige9a172f2010-01-20 13:49:44 -0700780 if (irq <= 0)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700781 return -EINVAL;
782
Mingkai Hub36ece82010-10-12 18:18:31 +0800783 master = fsl_spi_probe(&pdev->dev, mem, irq);
Alexandru Gheorghiue4d43782013-03-14 11:07:31 +0200784 return PTR_RET(master);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700785}
786
Grant Likelyfd4a3192012-12-07 16:57:14 +0000787static int plat_mpc8xxx_spi_remove(struct platform_device *pdev)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700788{
Anton Vorontsov575c5802009-06-18 16:49:08 -0700789 return mpc8xxx_spi_remove(&pdev->dev);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700790}
791
Anton Vorontsov575c5802009-06-18 16:49:08 -0700792MODULE_ALIAS("platform:mpc8xxx_spi");
793static struct platform_driver mpc8xxx_spi_driver = {
794 .probe = plat_mpc8xxx_spi_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +0000795 .remove = plat_mpc8xxx_spi_remove,
Kumar Galaccf06992006-05-20 15:00:15 -0700796 .driver = {
Anton Vorontsov575c5802009-06-18 16:49:08 -0700797 .name = "mpc8xxx_spi",
Kay Sievers7e38c3c2008-04-10 21:29:20 -0700798 .owner = THIS_MODULE,
Kumar Galaccf06992006-05-20 15:00:15 -0700799 },
800};
801
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700802static bool legacy_driver_failed;
803
804static void __init legacy_driver_register(void)
805{
Anton Vorontsov575c5802009-06-18 16:49:08 -0700806 legacy_driver_failed = platform_driver_register(&mpc8xxx_spi_driver);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700807}
808
809static void __exit legacy_driver_unregister(void)
810{
811 if (legacy_driver_failed)
812 return;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700813 platform_driver_unregister(&mpc8xxx_spi_driver);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700814}
815#else
816static void __init legacy_driver_register(void) {}
817static void __exit legacy_driver_unregister(void) {}
818#endif /* CONFIG_MPC832x_RDB */
819
Mingkai Hub36ece82010-10-12 18:18:31 +0800820static int __init fsl_spi_init(void)
Kumar Galaccf06992006-05-20 15:00:15 -0700821{
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700822 legacy_driver_register();
Grant Likely18d306d2011-02-22 21:02:43 -0700823 return platform_driver_register(&of_fsl_spi_driver);
Kumar Galaccf06992006-05-20 15:00:15 -0700824}
Mingkai Hub36ece82010-10-12 18:18:31 +0800825module_init(fsl_spi_init);
Kumar Galaccf06992006-05-20 15:00:15 -0700826
Mingkai Hub36ece82010-10-12 18:18:31 +0800827static void __exit fsl_spi_exit(void)
Kumar Galaccf06992006-05-20 15:00:15 -0700828{
Grant Likely18d306d2011-02-22 21:02:43 -0700829 platform_driver_unregister(&of_fsl_spi_driver);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700830 legacy_driver_unregister();
Kumar Galaccf06992006-05-20 15:00:15 -0700831}
Mingkai Hub36ece82010-10-12 18:18:31 +0800832module_exit(fsl_spi_exit);
Kumar Galaccf06992006-05-20 15:00:15 -0700833
834MODULE_AUTHOR("Kumar Gala");
Mingkai Hub36ece82010-10-12 18:18:31 +0800835MODULE_DESCRIPTION("Simple Freescale SPI Driver");
Kumar Galaccf06992006-05-20 15:00:15 -0700836MODULE_LICENSE("GPL");