blob: 6d8e0a05a53554b4393752a6a6cad93b6276d548 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Kumar Galaccf06992006-05-20 15:00:15 -07002/*
Mingkai Hub36ece82010-10-12 18:18:31 +08003 * Freescale SPI controller driver.
Kumar Galaccf06992006-05-20 15:00:15 -07004 *
5 * Maintainer: Kumar Gala
6 *
7 * Copyright (C) 2006 Polycom, Inc.
Mingkai Hub36ece82010-10-12 18:18:31 +08008 * Copyright 2010 Freescale Semiconductor, Inc.
Kumar Galaccf06992006-05-20 15:00:15 -07009 *
Anton Vorontsov4c1fba442009-10-12 20:49:27 +040010 * CPM SPI and QE buffer descriptors mode support:
11 * Copyright (c) 2009 MontaVista Software, Inc.
12 * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
13 *
Andreas Larsson447b0c72013-02-15 16:52:26 +010014 * GRLIB support:
15 * Copyright (c) 2012 Aeroflex Gaisler AB.
16 * Author: Andreas Larsson <andreas@gaisler.com>
Kumar Galaccf06992006-05-20 15:00:15 -070017 */
Kumar Galaccf06992006-05-20 15:00:15 -070018#include <linux/delay.h>
Anton Vorontsov4c1fba442009-10-12 20:49:27 +040019#include <linux/dma-mapping.h>
Xiubo Lia3108362014-09-29 10:57:06 +080020#include <linux/fsl_devices.h>
Linus Walleij0f0581b2019-08-04 02:35:39 +020021#include <linux/gpio/consumer.h>
Xiubo Lia3108362014-09-29 10:57:06 +080022#include <linux/interrupt.h>
23#include <linux/irq.h>
24#include <linux/kernel.h>
Anton Vorontsov4c1fba442009-10-12 20:49:27 +040025#include <linux/mm.h>
Xiubo Lia3108362014-09-29 10:57:06 +080026#include <linux/module.h>
Anton Vorontsov4c1fba442009-10-12 20:49:27 +040027#include <linux/mutex.h>
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -070028#include <linux/of.h>
Andreas Larssone8beacb2013-02-15 16:52:21 +010029#include <linux/of_address.h>
30#include <linux/of_irq.h>
Xiubo Lia3108362014-09-29 10:57:06 +080031#include <linux/of_platform.h>
32#include <linux/platform_device.h>
33#include <linux/spi/spi.h>
34#include <linux/spi/spi_bitbang.h>
35#include <linux/types.h>
Kumar Galaccf06992006-05-20 15:00:15 -070036
Rasmus Villemoes69b921a2019-03-06 10:32:05 +000037#ifdef CONFIG_FSL_SOC
38#include <sysdev/fsl_soc.h>
39#endif
40
41/* Specific to the MPC8306/MPC8309 */
42#define IMMR_SPI_CS_OFFSET 0x14c
43#define SPI_BOOT_SEL_BIT 0x80000000
44
Grant Likelyca632f52011-06-06 01:16:30 -060045#include "spi-fsl-lib.h"
Andreas Larssone8beacb2013-02-15 16:52:21 +010046#include "spi-fsl-cpm.h"
47#include "spi-fsl-spi.h"
Kumar Galaccf06992006-05-20 15:00:15 -070048
Andreas Larssonc3f3e772013-02-15 16:52:24 +010049#define TYPE_FSL 0
Andreas Larsson447b0c72013-02-15 16:52:26 +010050#define TYPE_GRLIB 1
Andreas Larssonc3f3e772013-02-15 16:52:24 +010051
52struct fsl_spi_match_data {
53 int type;
54};
55
56static struct fsl_spi_match_data of_fsl_spi_fsl_config = {
57 .type = TYPE_FSL,
58};
59
Andreas Larsson447b0c72013-02-15 16:52:26 +010060static struct fsl_spi_match_data of_fsl_spi_grlib_config = {
61 .type = TYPE_GRLIB,
62};
63
Jingoo Han3aea9012014-06-03 21:03:59 +090064static const struct of_device_id of_fsl_spi_match[] = {
Andreas Larssonc3f3e772013-02-15 16:52:24 +010065 {
66 .compatible = "fsl,spi",
67 .data = &of_fsl_spi_fsl_config,
68 },
Andreas Larsson447b0c72013-02-15 16:52:26 +010069 {
70 .compatible = "aeroflexgaisler,spictrl",
71 .data = &of_fsl_spi_grlib_config,
72 },
Andreas Larssonc3f3e772013-02-15 16:52:24 +010073 {}
74};
75MODULE_DEVICE_TABLE(of, of_fsl_spi_match);
76
77static int fsl_spi_get_type(struct device *dev)
78{
79 const struct of_device_id *match;
80
81 if (dev->of_node) {
82 match = of_match_node(of_fsl_spi_match, dev->of_node);
83 if (match && match->data)
84 return ((struct fsl_spi_match_data *)match->data)->type;
85 }
86 return TYPE_FSL;
87}
88
Mingkai Hub36ece82010-10-12 18:18:31 +080089static void fsl_spi_change_mode(struct spi_device *spi)
Anton Vorontsova35c1712009-10-12 20:49:24 +040090{
91 struct mpc8xxx_spi *mspi = spi_master_get_devdata(spi->master);
92 struct spi_mpc8xxx_cs *cs = spi->controller_state;
Luc Van Oostenryckdd67de82020-06-22 18:26:11 +020093 struct fsl_spi_reg __iomem *reg_base = mspi->reg_base;
Mingkai Hub36ece82010-10-12 18:18:31 +080094 __be32 __iomem *mode = &reg_base->mode;
Anton Vorontsova35c1712009-10-12 20:49:24 +040095 unsigned long flags;
96
97 if (cs->hw_mode == mpc8xxx_spi_read_reg(mode))
98 return;
99
100 /* Turn off IRQs locally to minimize time that SPI is disabled. */
101 local_irq_save(flags);
102
103 /* Turn off SPI unit prior changing mode */
104 mpc8xxx_spi_write_reg(mode, cs->hw_mode & ~SPMODE_ENABLE);
Anton Vorontsova35c1712009-10-12 20:49:24 +0400105
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400106 /* When in CPM mode, we need to reinit tx and rx. */
107 if (mspi->flags & SPI_CPM_MODE) {
Andreas Larssone8beacb2013-02-15 16:52:21 +0100108 fsl_spi_cpm_reinit_txrx(mspi);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400109 }
Joakim Tjernlundf9218c22010-05-22 02:18:02 -0600110 mpc8xxx_spi_write_reg(mode, cs->hw_mode);
Anton Vorontsova35c1712009-10-12 20:49:24 +0400111 local_irq_restore(flags);
112}
113
Mingkai Hub36ece82010-10-12 18:18:31 +0800114static void fsl_spi_chipselect(struct spi_device *spi, int value)
Kumar Galaccf06992006-05-20 15:00:15 -0700115{
Anton Vorontsov575c5802009-06-18 16:49:08 -0700116 struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(spi->master);
Kenth Eriksson5039a862012-03-30 17:05:30 +0200117 struct fsl_spi_platform_data *pdata;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700118 struct spi_mpc8xxx_cs *cs = spi->controller_state;
Kumar Galaccf06992006-05-20 15:00:15 -0700119
Kenth Eriksson5039a862012-03-30 17:05:30 +0200120 pdata = spi->dev.parent->parent->platform_data;
121
Kumar Galaccf06992006-05-20 15:00:15 -0700122 if (value == BITBANG_CS_INACTIVE) {
Anton Vorontsov364fdbc2009-03-31 15:24:36 -0700123 if (pdata->cs_control)
Christophe Leroy7a2da5d2021-01-14 13:09:37 +0000124 pdata->cs_control(spi, false);
Kumar Galaccf06992006-05-20 15:00:15 -0700125 }
126
127 if (value == BITBANG_CS_ACTIVE) {
Anton Vorontsov575c5802009-06-18 16:49:08 -0700128 mpc8xxx_spi->rx_shift = cs->rx_shift;
129 mpc8xxx_spi->tx_shift = cs->tx_shift;
130 mpc8xxx_spi->get_rx = cs->get_rx;
131 mpc8xxx_spi->get_tx = cs->get_tx;
Kumar Galaccf06992006-05-20 15:00:15 -0700132
Mingkai Hub36ece82010-10-12 18:18:31 +0800133 fsl_spi_change_mode(spi);
Kumar Galaccf06992006-05-20 15:00:15 -0700134
Anton Vorontsov364fdbc2009-03-31 15:24:36 -0700135 if (pdata->cs_control)
Christophe Leroy7a2da5d2021-01-14 13:09:37 +0000136 pdata->cs_control(spi, true);
Kumar Galaccf06992006-05-20 15:00:15 -0700137 }
138}
139
Andreas Larssonb48c4e32013-02-15 16:52:23 +0100140static void fsl_spi_qe_cpu_set_shifts(u32 *rx_shift, u32 *tx_shift,
141 int bits_per_word, int msb_first)
142{
143 *rx_shift = 0;
144 *tx_shift = 0;
145 if (msb_first) {
146 if (bits_per_word <= 8) {
147 *rx_shift = 16;
148 *tx_shift = 24;
149 } else if (bits_per_word <= 16) {
150 *rx_shift = 16;
151 *tx_shift = 16;
152 }
153 } else {
154 if (bits_per_word <= 8)
155 *rx_shift = 8;
156 }
157}
158
Andreas Larsson447b0c72013-02-15 16:52:26 +0100159static void fsl_spi_grlib_set_shifts(u32 *rx_shift, u32 *tx_shift,
160 int bits_per_word, int msb_first)
161{
162 *rx_shift = 0;
163 *tx_shift = 0;
164 if (bits_per_word <= 16) {
165 if (msb_first) {
166 *rx_shift = 16; /* LSB in bit 16 */
167 *tx_shift = 32 - bits_per_word; /* MSB in bit 31 */
168 } else {
169 *rx_shift = 16 - bits_per_word; /* MSB in bit 15 */
170 }
171 }
172}
173
Mingkai Hub36ece82010-10-12 18:18:31 +0800174static int mspi_apply_cpu_mode_quirks(struct spi_mpc8xxx_cs *cs,
175 struct spi_device *spi,
176 struct mpc8xxx_spi *mpc8xxx_spi,
177 int bits_per_word)
Joakim Tjernlund0398fb72010-05-14 09:14:26 +0000178{
179 cs->rx_shift = 0;
180 cs->tx_shift = 0;
181 if (bits_per_word <= 8) {
182 cs->get_rx = mpc8xxx_spi_rx_buf_u8;
183 cs->get_tx = mpc8xxx_spi_tx_buf_u8;
Joakim Tjernlund0398fb72010-05-14 09:14:26 +0000184 } else if (bits_per_word <= 16) {
185 cs->get_rx = mpc8xxx_spi_rx_buf_u16;
186 cs->get_tx = mpc8xxx_spi_tx_buf_u16;
Joakim Tjernlund0398fb72010-05-14 09:14:26 +0000187 } else if (bits_per_word <= 32) {
188 cs->get_rx = mpc8xxx_spi_rx_buf_u32;
189 cs->get_tx = mpc8xxx_spi_tx_buf_u32;
190 } else
191 return -EINVAL;
192
Andreas Larssonb48c4e32013-02-15 16:52:23 +0100193 if (mpc8xxx_spi->set_shifts)
194 mpc8xxx_spi->set_shifts(&cs->rx_shift, &cs->tx_shift,
195 bits_per_word,
196 !(spi->mode & SPI_LSB_FIRST));
197
Joakim Tjernlund0398fb72010-05-14 09:14:26 +0000198 mpc8xxx_spi->rx_shift = cs->rx_shift;
199 mpc8xxx_spi->tx_shift = cs->tx_shift;
200 mpc8xxx_spi->get_rx = cs->get_rx;
201 mpc8xxx_spi->get_tx = cs->get_tx;
202
203 return bits_per_word;
204}
205
Mingkai Hub36ece82010-10-12 18:18:31 +0800206static int mspi_apply_qe_mode_quirks(struct spi_mpc8xxx_cs *cs,
207 struct spi_device *spi,
208 int bits_per_word)
Joakim Tjernlund0398fb72010-05-14 09:14:26 +0000209{
210 /* QE uses Little Endian for words > 8
211 * so transform all words > 8 into 8 bits
212 * Unfortnatly that doesn't work for LSB so
213 * reject these for now */
214 /* Note: 32 bits word, LSB works iff
215 * tfcr/rfcr is set to CPMFCR_GBL */
216 if (spi->mode & SPI_LSB_FIRST &&
217 bits_per_word > 8)
218 return -EINVAL;
219 if (bits_per_word > 8)
220 return 8; /* pretend its 8 bits */
221 return bits_per_word;
222}
223
Mingkai Hub36ece82010-10-12 18:18:31 +0800224static int fsl_spi_setup_transfer(struct spi_device *spi,
225 struct spi_transfer *t)
Kumar Galaccf06992006-05-20 15:00:15 -0700226{
Anton Vorontsov575c5802009-06-18 16:49:08 -0700227 struct mpc8xxx_spi *mpc8xxx_spi;
Mingkai Hub36ece82010-10-12 18:18:31 +0800228 int bits_per_word = 0;
Joakim Tjernlund0398fb72010-05-14 09:14:26 +0000229 u8 pm;
Mingkai Hub36ece82010-10-12 18:18:31 +0800230 u32 hz = 0;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700231 struct spi_mpc8xxx_cs *cs = spi->controller_state;
Kumar Galaccf06992006-05-20 15:00:15 -0700232
Anton Vorontsov575c5802009-06-18 16:49:08 -0700233 mpc8xxx_spi = spi_master_get_devdata(spi->master);
Kumar Galaccf06992006-05-20 15:00:15 -0700234
235 if (t) {
236 bits_per_word = t->bits_per_word;
237 hz = t->speed_hz;
Kumar Galaccf06992006-05-20 15:00:15 -0700238 }
239
240 /* spi_transfer level calls that work per-word */
241 if (!bits_per_word)
242 bits_per_word = spi->bits_per_word;
243
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700244 if (!hz)
245 hz = spi->max_speed_hz;
246
Joakim Tjernlund0398fb72010-05-14 09:14:26 +0000247 if (!(mpc8xxx_spi->flags & SPI_CPM_MODE))
248 bits_per_word = mspi_apply_cpu_mode_quirks(cs, spi,
249 mpc8xxx_spi,
250 bits_per_word);
251 else if (mpc8xxx_spi->flags & SPI_QE)
252 bits_per_word = mspi_apply_qe_mode_quirks(cs, spi,
253 bits_per_word);
Kumar Galaccf06992006-05-20 15:00:15 -0700254
Joakim Tjernlund0398fb72010-05-14 09:14:26 +0000255 if (bits_per_word < 0)
256 return bits_per_word;
Kumar Galaccf06992006-05-20 15:00:15 -0700257
258 if (bits_per_word == 32)
259 bits_per_word = 0;
260 else
261 bits_per_word = bits_per_word - 1;
262
Anton Vorontsov32421da2007-07-31 00:38:41 -0700263 /* mask out bits we are going to set */
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700264 cs->hw_mode &= ~(SPMODE_LEN(0xF) | SPMODE_DIV16
265 | SPMODE_PM(0xF));
Kumar Galaccf06992006-05-20 15:00:15 -0700266
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700267 cs->hw_mode |= SPMODE_LEN(bits_per_word);
Kumar Galaccf06992006-05-20 15:00:15 -0700268
Anton Vorontsov575c5802009-06-18 16:49:08 -0700269 if ((mpc8xxx_spi->spibrg / hz) > 64) {
Peter Korsgaard53604db2008-09-13 02:33:14 -0700270 cs->hw_mode |= SPMODE_DIV16;
Ernst Schwab4f4517c2010-02-16 21:02:57 -0700271 pm = (mpc8xxx_spi->spibrg - 1) / (hz * 64) + 1;
Markus Elfring31ae7792017-01-13 13:50:21 +0100272 WARN_ONCE(pm > 16,
273 "%s: Requested speed is too low: %d Hz. Will use %d Hz instead.\n",
274 dev_name(&spi->dev), hz, mpc8xxx_spi->spibrg / 1024);
Anton Vorontsovfd8a11e2009-06-18 16:49:01 -0700275 if (pm > 16)
Peter Korsgaard53604db2008-09-13 02:33:14 -0700276 pm = 16;
Mingkai Hub36ece82010-10-12 18:18:31 +0800277 } else {
Ernst Schwab4f4517c2010-02-16 21:02:57 -0700278 pm = (mpc8xxx_spi->spibrg - 1) / (hz * 4) + 1;
Mingkai Hub36ece82010-10-12 18:18:31 +0800279 }
Chen Gonga61f5342008-07-23 21:29:52 -0700280 if (pm)
281 pm--;
282
283 cs->hw_mode |= SPMODE_PM(pm);
David Brownelldccd5732007-07-17 04:04:02 -0700284
Mingkai Hub36ece82010-10-12 18:18:31 +0800285 fsl_spi_change_mode(spi);
Kumar Galaccf06992006-05-20 15:00:15 -0700286 return 0;
287}
288
Mingkai Hub36ece82010-10-12 18:18:31 +0800289static int fsl_spi_cpu_bufs(struct mpc8xxx_spi *mspi,
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400290 struct spi_transfer *t, unsigned int len)
291{
292 u32 word;
Luc Van Oostenryckdd67de82020-06-22 18:26:11 +0200293 struct fsl_spi_reg __iomem *reg_base = mspi->reg_base;
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400294
295 mspi->count = len;
296
297 /* enable rx ints */
Mingkai Hub36ece82010-10-12 18:18:31 +0800298 mpc8xxx_spi_write_reg(&reg_base->mask, SPIM_NE);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400299
300 /* transmit word */
301 word = mspi->get_tx(mspi);
Mingkai Hub36ece82010-10-12 18:18:31 +0800302 mpc8xxx_spi_write_reg(&reg_base->transmit, word);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400303
304 return 0;
305}
306
Mingkai Hub36ece82010-10-12 18:18:31 +0800307static int fsl_spi_bufs(struct spi_device *spi, struct spi_transfer *t,
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400308 bool is_dma_mapped)
309{
310 struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(spi->master);
Luc Van Oostenryckdd67de82020-06-22 18:26:11 +0200311 struct fsl_spi_reg __iomem *reg_base;
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400312 unsigned int len = t->len;
313 u8 bits_per_word;
314 int ret;
315
Mingkai Hub36ece82010-10-12 18:18:31 +0800316 reg_base = mpc8xxx_spi->reg_base;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700317 bits_per_word = spi->bits_per_word;
318 if (t->bits_per_word)
319 bits_per_word = t->bits_per_word;
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400320
Peter Korsgaardaa77d962008-09-13 02:33:15 -0700321 if (bits_per_word > 8) {
322 /* invalid length? */
323 if (len & 1)
324 return -EINVAL;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700325 len /= 2;
Peter Korsgaardaa77d962008-09-13 02:33:15 -0700326 }
327 if (bits_per_word > 16) {
328 /* invalid length? */
329 if (len & 1)
330 return -EINVAL;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700331 len /= 2;
Peter Korsgaardaa77d962008-09-13 02:33:15 -0700332 }
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400333
334 mpc8xxx_spi->tx = t->tx_buf;
335 mpc8xxx_spi->rx = t->rx_buf;
Peter Korsgaardaa77d962008-09-13 02:33:15 -0700336
Wolfram Sang16735d02013-11-14 14:32:02 -0800337 reinit_completion(&mpc8xxx_spi->done);
Kumar Galaccf06992006-05-20 15:00:15 -0700338
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400339 if (mpc8xxx_spi->flags & SPI_CPM_MODE)
Mingkai Hub36ece82010-10-12 18:18:31 +0800340 ret = fsl_spi_cpm_bufs(mpc8xxx_spi, t, is_dma_mapped);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400341 else
Mingkai Hub36ece82010-10-12 18:18:31 +0800342 ret = fsl_spi_cpu_bufs(mpc8xxx_spi, t, len);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400343 if (ret)
344 return ret;
Kumar Galaccf06992006-05-20 15:00:15 -0700345
Anton Vorontsov575c5802009-06-18 16:49:08 -0700346 wait_for_completion(&mpc8xxx_spi->done);
Kumar Galaccf06992006-05-20 15:00:15 -0700347
348 /* disable rx ints */
Mingkai Hub36ece82010-10-12 18:18:31 +0800349 mpc8xxx_spi_write_reg(&reg_base->mask, 0);
Kumar Galaccf06992006-05-20 15:00:15 -0700350
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400351 if (mpc8xxx_spi->flags & SPI_CPM_MODE)
Mingkai Hub36ece82010-10-12 18:18:31 +0800352 fsl_spi_cpm_bufs_complete(mpc8xxx_spi);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400353
Anton Vorontsov575c5802009-06-18 16:49:08 -0700354 return mpc8xxx_spi->count;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700355}
356
Heiner Kallweitc592bec2014-12-03 07:56:17 +0100357static int fsl_spi_do_one_msg(struct spi_master *master,
358 struct spi_message *m)
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700359{
Rasmus Villemoesaf0e6242019-03-27 14:30:52 +0000360 struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(master);
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700361 struct spi_device *spi = m->spi;
Stefan Roese4302a5962014-01-31 13:44:59 +0100362 struct spi_transfer *t, *first;
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700363 unsigned int cs_change;
364 const int nsecs = 50;
Rasmus Villemoesa798a702019-03-27 14:30:51 +0000365 int status, last_bpw;
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700366
Rasmus Villemoesaf0e6242019-03-27 14:30:52 +0000367 /*
368 * In CPU mode, optimize large byte transfers to use larger
369 * bits_per_word values to reduce number of interrupts taken.
370 */
371 if (!(mpc8xxx_spi->flags & SPI_CPM_MODE)) {
372 list_for_each_entry(t, &m->transfers, transfer_list) {
373 if (t->len < 256 || t->bits_per_word != 8)
374 continue;
375 if ((t->len & 3) == 0)
376 t->bits_per_word = 32;
377 else if ((t->len & 1) == 0)
378 t->bits_per_word = 16;
379 }
380 }
381
Stefan Roese4302a5962014-01-31 13:44:59 +0100382 /* Don't allow changes if CS is active */
Rasmus Villemoes17ecffa2019-03-27 14:30:51 +0000383 cs_change = 1;
Stefan Roese4302a5962014-01-31 13:44:59 +0100384 list_for_each_entry(t, &m->transfers, transfer_list) {
Rasmus Villemoes17ecffa2019-03-27 14:30:51 +0000385 if (cs_change)
386 first = t;
387 cs_change = t->cs_change;
Rasmus Villemoesa798a702019-03-27 14:30:51 +0000388 if (first->speed_hz != t->speed_hz) {
Stefan Roese4302a5962014-01-31 13:44:59 +0100389 dev_err(&spi->dev,
Rasmus Villemoesa798a702019-03-27 14:30:51 +0000390 "speed_hz cannot change while CS is active\n");
Fabio Estevam75c41082014-12-04 11:15:47 -0200391 return -EINVAL;
Stefan Roese4302a5962014-01-31 13:44:59 +0100392 }
393 }
394
Rasmus Villemoesa798a702019-03-27 14:30:51 +0000395 last_bpw = -1;
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700396 cs_change = 1;
Stefan Roese4302a5962014-01-31 13:44:59 +0100397 status = -EINVAL;
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700398 list_for_each_entry(t, &m->transfers, transfer_list) {
Rasmus Villemoesa798a702019-03-27 14:30:51 +0000399 if (cs_change || last_bpw != t->bits_per_word)
Rasmus Villemoes24c36362019-03-27 14:30:50 +0000400 status = fsl_spi_setup_transfer(spi, t);
401 if (status < 0)
402 break;
Rasmus Villemoesa798a702019-03-27 14:30:51 +0000403 last_bpw = t->bits_per_word;
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700404
405 if (cs_change) {
Mingkai Hub36ece82010-10-12 18:18:31 +0800406 fsl_spi_chipselect(spi, BITBANG_CS_ACTIVE);
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700407 ndelay(nsecs);
408 }
409 cs_change = t->cs_change;
410 if (t->len)
Mingkai Hub36ece82010-10-12 18:18:31 +0800411 status = fsl_spi_bufs(spi, t, m->is_dma_mapped);
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700412 if (status) {
413 status = -EMSGSIZE;
414 break;
415 }
416 m->actual_length += t->len;
417
Alexandru Ardeleane74dc5c2019-09-26 13:51:37 +0300418 spi_transfer_delay_exec(t);
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700419
420 if (cs_change) {
421 ndelay(nsecs);
Mingkai Hub36ece82010-10-12 18:18:31 +0800422 fsl_spi_chipselect(spi, BITBANG_CS_INACTIVE);
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700423 ndelay(nsecs);
424 }
425 }
426
427 m->status = status;
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700428
429 if (status || !cs_change) {
430 ndelay(nsecs);
Mingkai Hub36ece82010-10-12 18:18:31 +0800431 fsl_spi_chipselect(spi, BITBANG_CS_INACTIVE);
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700432 }
433
Mingkai Hub36ece82010-10-12 18:18:31 +0800434 fsl_spi_setup_transfer(spi, NULL);
Christophe Leroy44a04212019-05-22 11:00:36 +0000435 spi_finalize_current_message(master);
Heiner Kallweitc592bec2014-12-03 07:56:17 +0100436 return 0;
Anton Vorontsovb9b9af12009-06-18 16:49:06 -0700437}
438
Mingkai Hub36ece82010-10-12 18:18:31 +0800439static int fsl_spi_setup(struct spi_device *spi)
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700440{
Anton Vorontsov575c5802009-06-18 16:49:08 -0700441 struct mpc8xxx_spi *mpc8xxx_spi;
Luc Van Oostenryckdd67de82020-06-22 18:26:11 +0200442 struct fsl_spi_reg __iomem *reg_base;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700443 int retval;
444 u32 hw_mode;
Axel Lind9f26742014-08-31 12:44:09 +0800445 struct spi_mpc8xxx_cs *cs = spi_get_ctldata(spi);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700446
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700447 if (!spi->max_speed_hz)
448 return -EINVAL;
449
450 if (!cs) {
Axel Lind9f26742014-08-31 12:44:09 +0800451 cs = kzalloc(sizeof(*cs), GFP_KERNEL);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700452 if (!cs)
453 return -ENOMEM;
Axel Lind9f26742014-08-31 12:44:09 +0800454 spi_set_ctldata(spi, cs);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700455 }
Anton Vorontsov575c5802009-06-18 16:49:08 -0700456 mpc8xxx_spi = spi_master_get_devdata(spi->master);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700457
Mingkai Hub36ece82010-10-12 18:18:31 +0800458 reg_base = mpc8xxx_spi->reg_base;
459
Thomas Weber88393162010-03-16 11:47:56 +0100460 hw_mode = cs->hw_mode; /* Save original settings */
Mingkai Hub36ece82010-10-12 18:18:31 +0800461 cs->hw_mode = mpc8xxx_spi_read_reg(&reg_base->mode);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700462 /* mask out bits we are going to set */
463 cs->hw_mode &= ~(SPMODE_CP_BEGIN_EDGECLK | SPMODE_CI_INACTIVEHIGH
464 | SPMODE_REV | SPMODE_LOOP);
465
466 if (spi->mode & SPI_CPHA)
467 cs->hw_mode |= SPMODE_CP_BEGIN_EDGECLK;
468 if (spi->mode & SPI_CPOL)
469 cs->hw_mode |= SPMODE_CI_INACTIVEHIGH;
470 if (!(spi->mode & SPI_LSB_FIRST))
471 cs->hw_mode |= SPMODE_REV;
472 if (spi->mode & SPI_LOOP)
473 cs->hw_mode |= SPMODE_LOOP;
474
Mingkai Hub36ece82010-10-12 18:18:31 +0800475 retval = fsl_spi_setup_transfer(spi, NULL);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700476 if (retval < 0) {
477 cs->hw_mode = hw_mode; /* Restore settings */
478 return retval;
479 }
Andreas Larssonf482cd02013-02-15 16:52:22 +0100480
481 /* Initialize chipselect - might be active for SPI_CS_HIGH mode */
482 fsl_spi_chipselect(spi, BITBANG_CS_INACTIVE);
483
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700484 return 0;
Kumar Galaccf06992006-05-20 15:00:15 -0700485}
486
Andreas Larsson76a74982013-02-15 16:52:27 +0100487static void fsl_spi_cleanup(struct spi_device *spi)
488{
Axel Lind9f26742014-08-31 12:44:09 +0800489 struct spi_mpc8xxx_cs *cs = spi_get_ctldata(spi);
Andreas Larsson76a74982013-02-15 16:52:27 +0100490
Axel Lind9f26742014-08-31 12:44:09 +0800491 kfree(cs);
492 spi_set_ctldata(spi, NULL);
Andreas Larsson76a74982013-02-15 16:52:27 +0100493}
494
Mingkai Hub36ece82010-10-12 18:18:31 +0800495static void fsl_spi_cpu_irq(struct mpc8xxx_spi *mspi, u32 events)
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400496{
Luc Van Oostenryckdd67de82020-06-22 18:26:11 +0200497 struct fsl_spi_reg __iomem *reg_base = mspi->reg_base;
Mingkai Hub36ece82010-10-12 18:18:31 +0800498
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400499 /* We need handle RX first */
500 if (events & SPIE_NE) {
Mingkai Hub36ece82010-10-12 18:18:31 +0800501 u32 rx_data = mpc8xxx_spi_read_reg(&reg_base->receive);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400502
503 if (mspi->rx)
504 mspi->get_rx(rx_data, mspi);
505 }
506
507 if ((events & SPIE_NF) == 0)
508 /* spin until TX is done */
509 while (((events =
Mingkai Hub36ece82010-10-12 18:18:31 +0800510 mpc8xxx_spi_read_reg(&reg_base->event)) &
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400511 SPIE_NF) == 0)
512 cpu_relax();
513
514 /* Clear the events */
Mingkai Hub36ece82010-10-12 18:18:31 +0800515 mpc8xxx_spi_write_reg(&reg_base->event, events);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400516
517 mspi->count -= 1;
518 if (mspi->count) {
519 u32 word = mspi->get_tx(mspi);
520
Mingkai Hub36ece82010-10-12 18:18:31 +0800521 mpc8xxx_spi_write_reg(&reg_base->transmit, word);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400522 } else {
523 complete(&mspi->done);
524 }
525}
526
Mingkai Hub36ece82010-10-12 18:18:31 +0800527static irqreturn_t fsl_spi_irq(s32 irq, void *context_data)
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400528{
529 struct mpc8xxx_spi *mspi = context_data;
530 irqreturn_t ret = IRQ_NONE;
531 u32 events;
Luc Van Oostenryckdd67de82020-06-22 18:26:11 +0200532 struct fsl_spi_reg __iomem *reg_base = mspi->reg_base;
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400533
534 /* Get interrupt events(tx/rx) */
Mingkai Hub36ece82010-10-12 18:18:31 +0800535 events = mpc8xxx_spi_read_reg(&reg_base->event);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400536 if (events)
537 ret = IRQ_HANDLED;
538
539 dev_dbg(mspi->dev, "%s: events %x\n", __func__, events);
540
541 if (mspi->flags & SPI_CPM_MODE)
Mingkai Hub36ece82010-10-12 18:18:31 +0800542 fsl_spi_cpm_irq(mspi, events);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400543 else
Mingkai Hub36ece82010-10-12 18:18:31 +0800544 fsl_spi_cpu_irq(mspi, events);
Kumar Galaccf06992006-05-20 15:00:15 -0700545
546 return ret;
547}
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400548
Andreas Larsson447b0c72013-02-15 16:52:26 +0100549static void fsl_spi_grlib_cs_control(struct spi_device *spi, bool on)
550{
551 struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(spi->master);
Luc Van Oostenryckdd67de82020-06-22 18:26:11 +0200552 struct fsl_spi_reg __iomem *reg_base = mpc8xxx_spi->reg_base;
Andreas Larsson447b0c72013-02-15 16:52:26 +0100553 u32 slvsel;
554 u16 cs = spi->chip_select;
555
Linus Walleij0f0581b2019-08-04 02:35:39 +0200556 if (spi->cs_gpiod) {
557 gpiod_set_value(spi->cs_gpiod, on);
Andreas Larsson76a74982013-02-15 16:52:27 +0100558 } else if (cs < mpc8xxx_spi->native_chipselects) {
559 slvsel = mpc8xxx_spi_read_reg(&reg_base->slvsel);
560 slvsel = on ? (slvsel | (1 << cs)) : (slvsel & ~(1 << cs));
561 mpc8xxx_spi_write_reg(&reg_base->slvsel, slvsel);
562 }
Andreas Larsson447b0c72013-02-15 16:52:26 +0100563}
564
565static void fsl_spi_grlib_probe(struct device *dev)
566{
Jingoo Han8074cf02013-07-30 16:58:59 +0900567 struct fsl_spi_platform_data *pdata = dev_get_platdata(dev);
Andreas Larsson447b0c72013-02-15 16:52:26 +0100568 struct spi_master *master = dev_get_drvdata(dev);
569 struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(master);
Luc Van Oostenryckdd67de82020-06-22 18:26:11 +0200570 struct fsl_spi_reg __iomem *reg_base = mpc8xxx_spi->reg_base;
Andreas Larsson447b0c72013-02-15 16:52:26 +0100571 int mbits;
572 u32 capabilities;
573
574 capabilities = mpc8xxx_spi_read_reg(&reg_base->cap);
575
576 mpc8xxx_spi->set_shifts = fsl_spi_grlib_set_shifts;
577 mbits = SPCAP_MAXWLEN(capabilities);
578 if (mbits)
579 mpc8xxx_spi->max_bits_per_word = mbits + 1;
580
Andreas Larsson76a74982013-02-15 16:52:27 +0100581 mpc8xxx_spi->native_chipselects = 0;
Andreas Larsson447b0c72013-02-15 16:52:26 +0100582 if (SPCAP_SSEN(capabilities)) {
Andreas Larsson76a74982013-02-15 16:52:27 +0100583 mpc8xxx_spi->native_chipselects = SPCAP_SSSZ(capabilities);
Andreas Larsson447b0c72013-02-15 16:52:26 +0100584 mpc8xxx_spi_write_reg(&reg_base->slvsel, 0xffffffff);
585 }
Andreas Larsson76a74982013-02-15 16:52:27 +0100586 master->num_chipselect = mpc8xxx_spi->native_chipselects;
Andreas Larsson447b0c72013-02-15 16:52:26 +0100587 pdata->cs_control = fsl_spi_grlib_cs_control;
588}
589
Aishwarya R7cb88af2020-04-07 17:58:55 +0530590static struct spi_master *fsl_spi_probe(struct device *dev,
Mingkai Hub36ece82010-10-12 18:18:31 +0800591 struct resource *mem, unsigned int irq)
Kumar Galaccf06992006-05-20 15:00:15 -0700592{
Jingoo Han8074cf02013-07-30 16:58:59 +0900593 struct fsl_spi_platform_data *pdata = dev_get_platdata(dev);
Kumar Galaccf06992006-05-20 15:00:15 -0700594 struct spi_master *master;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700595 struct mpc8xxx_spi *mpc8xxx_spi;
Luc Van Oostenryckdd67de82020-06-22 18:26:11 +0200596 struct fsl_spi_reg __iomem *reg_base;
Kumar Galaccf06992006-05-20 15:00:15 -0700597 u32 regval;
598 int ret = 0;
599
Anton Vorontsov575c5802009-06-18 16:49:08 -0700600 master = spi_alloc_master(dev, sizeof(struct mpc8xxx_spi));
Kumar Galaccf06992006-05-20 15:00:15 -0700601 if (master == NULL) {
602 ret = -ENOMEM;
603 goto err;
604 }
605
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700606 dev_set_drvdata(dev, master);
Kumar Galaccf06992006-05-20 15:00:15 -0700607
Heiner Kallweitc592bec2014-12-03 07:56:17 +0100608 mpc8xxx_spi_probe(dev, mem, irq);
David Brownelle7db06b2009-06-17 16:26:04 -0700609
Mingkai Hub36ece82010-10-12 18:18:31 +0800610 master->setup = fsl_spi_setup;
Andreas Larsson76a74982013-02-15 16:52:27 +0100611 master->cleanup = fsl_spi_cleanup;
Heiner Kallweitc592bec2014-12-03 07:56:17 +0100612 master->transfer_one_message = fsl_spi_do_one_msg;
Linus Walleijf10690492019-11-28 09:37:16 +0100613 master->use_gpio_descriptors = true;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700614
Anton Vorontsov575c5802009-06-18 16:49:08 -0700615 mpc8xxx_spi = spi_master_get_devdata(master);
Andreas Larsson8922a362013-02-15 16:52:25 +0100616 mpc8xxx_spi->max_bits_per_word = 32;
Andreas Larssonc3f3e772013-02-15 16:52:24 +0100617 mpc8xxx_spi->type = fsl_spi_get_type(dev);
Mingkai Hub36ece82010-10-12 18:18:31 +0800618
619 ret = fsl_spi_cpm_init(mpc8xxx_spi);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400620 if (ret)
621 goto err_cpm_init;
622
Heiner Kallweit4178b6b2015-08-26 21:21:50 +0200623 mpc8xxx_spi->reg_base = devm_ioremap_resource(dev, mem);
Axel Lin37c5db72015-08-30 18:35:51 +0800624 if (IS_ERR(mpc8xxx_spi->reg_base)) {
625 ret = PTR_ERR(mpc8xxx_spi->reg_base);
Heiner Kallweit4178b6b2015-08-26 21:21:50 +0200626 goto err_probe;
Andreas Larsson447b0c72013-02-15 16:52:26 +0100627 }
628
629 if (mpc8xxx_spi->type == TYPE_GRLIB)
630 fsl_spi_grlib_probe(dev);
631
Axel Linf7343942014-02-13 19:05:38 +0800632 master->bits_per_word_mask =
633 (SPI_BPW_RANGE_MASK(4, 16) | SPI_BPW_MASK(32)) &
634 SPI_BPW_RANGE_MASK(1, mpc8xxx_spi->max_bits_per_word);
635
Andreas Larssonb48c4e32013-02-15 16:52:23 +0100636 if (mpc8xxx_spi->flags & SPI_QE_CPU_MODE)
637 mpc8xxx_spi->set_shifts = fsl_spi_qe_cpu_set_shifts;
638
639 if (mpc8xxx_spi->set_shifts)
640 /* 8 bits per word and MSB first */
641 mpc8xxx_spi->set_shifts(&mpc8xxx_spi->rx_shift,
642 &mpc8xxx_spi->tx_shift, 8, 1);
Joakim Tjernlundf29ba282007-07-17 04:04:12 -0700643
Kumar Galaccf06992006-05-20 15:00:15 -0700644 /* Register for SPI Interrupt */
Heiner Kallweit4178b6b2015-08-26 21:21:50 +0200645 ret = devm_request_irq(dev, mpc8xxx_spi->irq, fsl_spi_irq,
646 0, "fsl_spi", mpc8xxx_spi);
Kumar Galaccf06992006-05-20 15:00:15 -0700647
648 if (ret != 0)
Heiner Kallweit4178b6b2015-08-26 21:21:50 +0200649 goto err_probe;
Kumar Galaccf06992006-05-20 15:00:15 -0700650
Mingkai Hub36ece82010-10-12 18:18:31 +0800651 reg_base = mpc8xxx_spi->reg_base;
Kumar Galaccf06992006-05-20 15:00:15 -0700652
653 /* SPI controller initializations */
Mingkai Hub36ece82010-10-12 18:18:31 +0800654 mpc8xxx_spi_write_reg(&reg_base->mode, 0);
655 mpc8xxx_spi_write_reg(&reg_base->mask, 0);
656 mpc8xxx_spi_write_reg(&reg_base->command, 0);
657 mpc8xxx_spi_write_reg(&reg_base->event, 0xffffffff);
Kumar Galaccf06992006-05-20 15:00:15 -0700658
659 /* Enable SPI interface */
660 regval = pdata->initial_spmode | SPMODE_INIT_VAL | SPMODE_ENABLE;
Andreas Larsson8922a362013-02-15 16:52:25 +0100661 if (mpc8xxx_spi->max_bits_per_word < 8) {
662 regval &= ~SPMODE_LEN(0xF);
663 regval |= SPMODE_LEN(mpc8xxx_spi->max_bits_per_word - 1);
664 }
Anton Vorontsov87ec0e92009-10-12 20:49:25 +0400665 if (mpc8xxx_spi->flags & SPI_QE_CPU_MODE)
Joakim Tjernlundf29ba282007-07-17 04:04:12 -0700666 regval |= SPMODE_OP;
667
Mingkai Hub36ece82010-10-12 18:18:31 +0800668 mpc8xxx_spi_write_reg(&reg_base->mode, regval);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700669
Heiner Kallweit4178b6b2015-08-26 21:21:50 +0200670 ret = devm_spi_register_master(dev, master);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700671 if (ret < 0)
Heiner Kallweit4178b6b2015-08-26 21:21:50 +0200672 goto err_probe;
Kumar Galaccf06992006-05-20 15:00:15 -0700673
Mingkai Hub36ece82010-10-12 18:18:31 +0800674 dev_info(dev, "at 0x%p (irq = %d), %s mode\n", reg_base,
Anton Vorontsov87ec0e92009-10-12 20:49:25 +0400675 mpc8xxx_spi->irq, mpc8xxx_spi_strmode(mpc8xxx_spi->flags));
Kumar Galaccf06992006-05-20 15:00:15 -0700676
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700677 return master;
Kumar Galaccf06992006-05-20 15:00:15 -0700678
Heiner Kallweit4178b6b2015-08-26 21:21:50 +0200679err_probe:
Mingkai Hub36ece82010-10-12 18:18:31 +0800680 fsl_spi_cpm_free(mpc8xxx_spi);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400681err_cpm_init:
Kumar Galaccf06992006-05-20 15:00:15 -0700682 spi_master_put(master);
Kumar Galaccf06992006-05-20 15:00:15 -0700683err:
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700684 return ERR_PTR(ret);
Kumar Galaccf06992006-05-20 15:00:15 -0700685}
686
Mingkai Hub36ece82010-10-12 18:18:31 +0800687static void fsl_spi_cs_control(struct spi_device *spi, bool on)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700688{
Linus Walleij0f0581b2019-08-04 02:35:39 +0200689 if (spi->cs_gpiod) {
690 gpiod_set_value(spi->cs_gpiod, on);
Rasmus Villemoes69b921a2019-03-06 10:32:05 +0000691 } else {
Linus Walleij0f0581b2019-08-04 02:35:39 +0200692 struct device *dev = spi->dev.parent->parent;
693 struct fsl_spi_platform_data *pdata = dev_get_platdata(dev);
694 struct mpc8xxx_spi_probe_info *pinfo = to_of_pinfo(pdata);
695
696 if (WARN_ON_ONCE(!pinfo->immr_spi_cs))
Rasmus Villemoes69b921a2019-03-06 10:32:05 +0000697 return;
698 iowrite32be(on ? SPI_BOOT_SEL_BIT : 0, pinfo->immr_spi_cs);
699 }
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700700}
701
Grant Likelyfd4a3192012-12-07 16:57:14 +0000702static int of_fsl_spi_probe(struct platform_device *ofdev)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700703{
704 struct device *dev = &ofdev->dev;
Grant Likely61c7a082010-04-13 16:12:29 -0700705 struct device_node *np = ofdev->dev.of_node;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700706 struct spi_master *master;
707 struct resource mem;
Christophe Leroy2f3d8032020-01-14 16:02:40 +0000708 int irq, type;
709 int ret;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700710
Grant Likely18d306d2011-02-22 21:02:43 -0700711 ret = of_mpc8xxx_spi_probe(ofdev);
Mingkai Hub36ece82010-10-12 18:18:31 +0800712 if (ret)
713 return ret;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700714
Andreas Larsson447b0c72013-02-15 16:52:26 +0100715 type = fsl_spi_get_type(&ofdev->dev);
716 if (type == TYPE_FSL) {
Linus Walleij0f0581b2019-08-04 02:35:39 +0200717 struct fsl_spi_platform_data *pdata = dev_get_platdata(dev);
Rasmus Villemoes122541f2020-11-27 16:29:47 +0100718 bool spisel_boot = false;
Linus Walleij0f0581b2019-08-04 02:35:39 +0200719#if IS_ENABLED(CONFIG_FSL_SOC)
720 struct mpc8xxx_spi_probe_info *pinfo = to_of_pinfo(pdata);
Linus Walleij0f0581b2019-08-04 02:35:39 +0200721
Rasmus Villemoes122541f2020-11-27 16:29:47 +0100722 spisel_boot = of_property_read_bool(np, "fsl,spisel_boot");
Linus Walleij0f0581b2019-08-04 02:35:39 +0200723 if (spisel_boot) {
724 pinfo->immr_spi_cs = ioremap(get_immrbase() + IMMR_SPI_CS_OFFSET, 4);
Christophe Leroy2f3d8032020-01-14 16:02:40 +0000725 if (!pinfo->immr_spi_cs)
726 return -ENOMEM;
Linus Walleij0f0581b2019-08-04 02:35:39 +0200727 }
728#endif
Linus Walleij72519532019-11-28 09:37:18 +0100729 /*
730 * Handle the case where we have one hardwired (always selected)
731 * device on the first "chipselect". Else we let the core code
732 * handle any GPIOs or native chip selects and assign the
733 * appropriate callback for dealing with the CS lines. This isn't
734 * supported on the GRLIB variant.
735 */
736 ret = gpiod_count(dev, "cs");
Rasmus Villemoes122541f2020-11-27 16:29:47 +0100737 if (ret < 0)
738 ret = 0;
739 if (ret == 0 && !spisel_boot) {
Linus Walleij72519532019-11-28 09:37:18 +0100740 pdata->max_chipselect = 1;
Rasmus Villemoes122541f2020-11-27 16:29:47 +0100741 } else {
742 pdata->max_chipselect = ret + spisel_boot;
Linus Walleij72519532019-11-28 09:37:18 +0100743 pdata->cs_control = fsl_spi_cs_control;
Rasmus Villemoes122541f2020-11-27 16:29:47 +0100744 }
Andreas Larsson447b0c72013-02-15 16:52:26 +0100745 }
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700746
747 ret = of_address_to_resource(np, 0, &mem);
748 if (ret)
Christophe Leroy2f3d8032020-01-14 16:02:40 +0000749 return ret;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700750
Christophe Leroy63aa6a62019-12-12 17:47:24 +0000751 irq = platform_get_irq(ofdev, 0);
Christophe Leroy2f3d8032020-01-14 16:02:40 +0000752 if (irq < 0)
753 return irq;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700754
Andreas Larssone8beacb2013-02-15 16:52:21 +0100755 master = fsl_spi_probe(dev, &mem, irq);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700756
Christophe Leroy2f3d8032020-01-14 16:02:40 +0000757 return PTR_ERR_OR_ZERO(master);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700758}
759
Grant Likelyfd4a3192012-12-07 16:57:14 +0000760static int of_fsl_spi_remove(struct platform_device *ofdev)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700761{
Jingoo Han24b5a822013-05-23 19:20:40 +0900762 struct spi_master *master = platform_get_drvdata(ofdev);
Andreas Larsson447b0c72013-02-15 16:52:26 +0100763 struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(master);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700764
Heiner Kallweit3c5395b2015-08-26 21:21:53 +0200765 fsl_spi_cpm_free(mpc8xxx_spi);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700766 return 0;
767}
768
Grant Likely18d306d2011-02-22 21:02:43 -0700769static struct platform_driver of_fsl_spi_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700770 .driver = {
Mingkai Hub36ece82010-10-12 18:18:31 +0800771 .name = "fsl_spi",
Mingkai Hub36ece82010-10-12 18:18:31 +0800772 .of_match_table = of_fsl_spi_match,
Grant Likely40182942010-04-13 16:13:02 -0700773 },
Mingkai Hub36ece82010-10-12 18:18:31 +0800774 .probe = of_fsl_spi_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +0000775 .remove = of_fsl_spi_remove,
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700776};
777
778#ifdef CONFIG_MPC832x_RDB
779/*
Mingkai Hub36ece82010-10-12 18:18:31 +0800780 * XXX XXX XXX
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700781 * This is "legacy" platform driver, was used by the MPC8323E-RDB boards
782 * only. The driver should go away soon, since newer MPC8323E-RDB's device
783 * tree can work with OpenFirmware driver. But for now we support old trees
784 * as well.
785 */
Grant Likelyfd4a3192012-12-07 16:57:14 +0000786static int plat_mpc8xxx_spi_probe(struct platform_device *pdev)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700787{
788 struct resource *mem;
Uwe Kleine-Könige9a172f2010-01-20 13:49:44 -0700789 int irq;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700790 struct spi_master *master;
791
Jingoo Han8074cf02013-07-30 16:58:59 +0900792 if (!dev_get_platdata(&pdev->dev))
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700793 return -EINVAL;
794
795 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
796 if (!mem)
797 return -EINVAL;
798
799 irq = platform_get_irq(pdev, 0);
Uwe Kleine-Könige9a172f2010-01-20 13:49:44 -0700800 if (irq <= 0)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700801 return -EINVAL;
802
Mingkai Hub36ece82010-10-12 18:18:31 +0800803 master = fsl_spi_probe(&pdev->dev, mem, irq);
Rusty Russell8c6ffba2013-07-15 11:20:32 +0930804 return PTR_ERR_OR_ZERO(master);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700805}
806
Grant Likelyfd4a3192012-12-07 16:57:14 +0000807static int plat_mpc8xxx_spi_remove(struct platform_device *pdev)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700808{
Heiner Kallweit3c5395b2015-08-26 21:21:53 +0200809 struct spi_master *master = platform_get_drvdata(pdev);
810 struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(master);
811
812 fsl_spi_cpm_free(mpc8xxx_spi);
813
814 return 0;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700815}
816
Anton Vorontsov575c5802009-06-18 16:49:08 -0700817MODULE_ALIAS("platform:mpc8xxx_spi");
818static struct platform_driver mpc8xxx_spi_driver = {
819 .probe = plat_mpc8xxx_spi_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +0000820 .remove = plat_mpc8xxx_spi_remove,
Kumar Galaccf06992006-05-20 15:00:15 -0700821 .driver = {
Anton Vorontsov575c5802009-06-18 16:49:08 -0700822 .name = "mpc8xxx_spi",
Kumar Galaccf06992006-05-20 15:00:15 -0700823 },
824};
825
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700826static bool legacy_driver_failed;
827
828static void __init legacy_driver_register(void)
829{
Anton Vorontsov575c5802009-06-18 16:49:08 -0700830 legacy_driver_failed = platform_driver_register(&mpc8xxx_spi_driver);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700831}
832
833static void __exit legacy_driver_unregister(void)
834{
835 if (legacy_driver_failed)
836 return;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700837 platform_driver_unregister(&mpc8xxx_spi_driver);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700838}
839#else
840static void __init legacy_driver_register(void) {}
841static void __exit legacy_driver_unregister(void) {}
842#endif /* CONFIG_MPC832x_RDB */
843
Mingkai Hub36ece82010-10-12 18:18:31 +0800844static int __init fsl_spi_init(void)
Kumar Galaccf06992006-05-20 15:00:15 -0700845{
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700846 legacy_driver_register();
Grant Likely18d306d2011-02-22 21:02:43 -0700847 return platform_driver_register(&of_fsl_spi_driver);
Kumar Galaccf06992006-05-20 15:00:15 -0700848}
Mingkai Hub36ece82010-10-12 18:18:31 +0800849module_init(fsl_spi_init);
Kumar Galaccf06992006-05-20 15:00:15 -0700850
Mingkai Hub36ece82010-10-12 18:18:31 +0800851static void __exit fsl_spi_exit(void)
Kumar Galaccf06992006-05-20 15:00:15 -0700852{
Grant Likely18d306d2011-02-22 21:02:43 -0700853 platform_driver_unregister(&of_fsl_spi_driver);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700854 legacy_driver_unregister();
Kumar Galaccf06992006-05-20 15:00:15 -0700855}
Mingkai Hub36ece82010-10-12 18:18:31 +0800856module_exit(fsl_spi_exit);
Kumar Galaccf06992006-05-20 15:00:15 -0700857
858MODULE_AUTHOR("Kumar Gala");
Mingkai Hub36ece82010-10-12 18:18:31 +0800859MODULE_DESCRIPTION("Simple Freescale SPI Driver");
Kumar Galaccf06992006-05-20 15:00:15 -0700860MODULE_LICENSE("GPL");