blob: bdf94cc7be1afe18c4939e39262c47a752c6d945 [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;
Lukas Wunner2ec6f202021-05-27 23:10:56 +0200443 bool initial_setup = false;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700444 int retval;
445 u32 hw_mode;
Axel Lind9f26742014-08-31 12:44:09 +0800446 struct spi_mpc8xxx_cs *cs = spi_get_ctldata(spi);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700447
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700448 if (!spi->max_speed_hz)
449 return -EINVAL;
450
451 if (!cs) {
Axel Lind9f26742014-08-31 12:44:09 +0800452 cs = kzalloc(sizeof(*cs), GFP_KERNEL);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700453 if (!cs)
454 return -ENOMEM;
Axel Lind9f26742014-08-31 12:44:09 +0800455 spi_set_ctldata(spi, cs);
Lukas Wunner2ec6f202021-05-27 23:10:56 +0200456 initial_setup = true;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700457 }
Anton Vorontsov575c5802009-06-18 16:49:08 -0700458 mpc8xxx_spi = spi_master_get_devdata(spi->master);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700459
Mingkai Hub36ece82010-10-12 18:18:31 +0800460 reg_base = mpc8xxx_spi->reg_base;
461
Thomas Weber88393162010-03-16 11:47:56 +0100462 hw_mode = cs->hw_mode; /* Save original settings */
Mingkai Hub36ece82010-10-12 18:18:31 +0800463 cs->hw_mode = mpc8xxx_spi_read_reg(&reg_base->mode);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700464 /* mask out bits we are going to set */
465 cs->hw_mode &= ~(SPMODE_CP_BEGIN_EDGECLK | SPMODE_CI_INACTIVEHIGH
466 | SPMODE_REV | SPMODE_LOOP);
467
468 if (spi->mode & SPI_CPHA)
469 cs->hw_mode |= SPMODE_CP_BEGIN_EDGECLK;
470 if (spi->mode & SPI_CPOL)
471 cs->hw_mode |= SPMODE_CI_INACTIVEHIGH;
472 if (!(spi->mode & SPI_LSB_FIRST))
473 cs->hw_mode |= SPMODE_REV;
474 if (spi->mode & SPI_LOOP)
475 cs->hw_mode |= SPMODE_LOOP;
476
Mingkai Hub36ece82010-10-12 18:18:31 +0800477 retval = fsl_spi_setup_transfer(spi, NULL);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700478 if (retval < 0) {
479 cs->hw_mode = hw_mode; /* Restore settings */
Lukas Wunner2ec6f202021-05-27 23:10:56 +0200480 if (initial_setup)
481 kfree(cs);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700482 return retval;
483 }
Andreas Larssonf482cd02013-02-15 16:52:22 +0100484
485 /* Initialize chipselect - might be active for SPI_CS_HIGH mode */
486 fsl_spi_chipselect(spi, BITBANG_CS_INACTIVE);
487
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700488 return 0;
Kumar Galaccf06992006-05-20 15:00:15 -0700489}
490
Andreas Larsson76a74982013-02-15 16:52:27 +0100491static void fsl_spi_cleanup(struct spi_device *spi)
492{
Axel Lind9f26742014-08-31 12:44:09 +0800493 struct spi_mpc8xxx_cs *cs = spi_get_ctldata(spi);
Andreas Larsson76a74982013-02-15 16:52:27 +0100494
Axel Lind9f26742014-08-31 12:44:09 +0800495 kfree(cs);
496 spi_set_ctldata(spi, NULL);
Andreas Larsson76a74982013-02-15 16:52:27 +0100497}
498
Mingkai Hub36ece82010-10-12 18:18:31 +0800499static void fsl_spi_cpu_irq(struct mpc8xxx_spi *mspi, u32 events)
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400500{
Luc Van Oostenryckdd67de82020-06-22 18:26:11 +0200501 struct fsl_spi_reg __iomem *reg_base = mspi->reg_base;
Mingkai Hub36ece82010-10-12 18:18:31 +0800502
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400503 /* We need handle RX first */
504 if (events & SPIE_NE) {
Mingkai Hub36ece82010-10-12 18:18:31 +0800505 u32 rx_data = mpc8xxx_spi_read_reg(&reg_base->receive);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400506
507 if (mspi->rx)
508 mspi->get_rx(rx_data, mspi);
509 }
510
511 if ((events & SPIE_NF) == 0)
512 /* spin until TX is done */
513 while (((events =
Mingkai Hub36ece82010-10-12 18:18:31 +0800514 mpc8xxx_spi_read_reg(&reg_base->event)) &
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400515 SPIE_NF) == 0)
516 cpu_relax();
517
518 /* Clear the events */
Mingkai Hub36ece82010-10-12 18:18:31 +0800519 mpc8xxx_spi_write_reg(&reg_base->event, events);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400520
521 mspi->count -= 1;
522 if (mspi->count) {
523 u32 word = mspi->get_tx(mspi);
524
Mingkai Hub36ece82010-10-12 18:18:31 +0800525 mpc8xxx_spi_write_reg(&reg_base->transmit, word);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400526 } else {
527 complete(&mspi->done);
528 }
529}
530
Mingkai Hub36ece82010-10-12 18:18:31 +0800531static irqreturn_t fsl_spi_irq(s32 irq, void *context_data)
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400532{
533 struct mpc8xxx_spi *mspi = context_data;
534 irqreturn_t ret = IRQ_NONE;
535 u32 events;
Luc Van Oostenryckdd67de82020-06-22 18:26:11 +0200536 struct fsl_spi_reg __iomem *reg_base = mspi->reg_base;
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400537
538 /* Get interrupt events(tx/rx) */
Mingkai Hub36ece82010-10-12 18:18:31 +0800539 events = mpc8xxx_spi_read_reg(&reg_base->event);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400540 if (events)
541 ret = IRQ_HANDLED;
542
543 dev_dbg(mspi->dev, "%s: events %x\n", __func__, events);
544
545 if (mspi->flags & SPI_CPM_MODE)
Mingkai Hub36ece82010-10-12 18:18:31 +0800546 fsl_spi_cpm_irq(mspi, events);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400547 else
Mingkai Hub36ece82010-10-12 18:18:31 +0800548 fsl_spi_cpu_irq(mspi, events);
Kumar Galaccf06992006-05-20 15:00:15 -0700549
550 return ret;
551}
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400552
Andreas Larsson447b0c72013-02-15 16:52:26 +0100553static void fsl_spi_grlib_cs_control(struct spi_device *spi, bool on)
554{
555 struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(spi->master);
Luc Van Oostenryckdd67de82020-06-22 18:26:11 +0200556 struct fsl_spi_reg __iomem *reg_base = mpc8xxx_spi->reg_base;
Andreas Larsson447b0c72013-02-15 16:52:26 +0100557 u32 slvsel;
558 u16 cs = spi->chip_select;
559
Linus Walleij0f0581b2019-08-04 02:35:39 +0200560 if (spi->cs_gpiod) {
561 gpiod_set_value(spi->cs_gpiod, on);
Andreas Larsson76a74982013-02-15 16:52:27 +0100562 } else if (cs < mpc8xxx_spi->native_chipselects) {
563 slvsel = mpc8xxx_spi_read_reg(&reg_base->slvsel);
564 slvsel = on ? (slvsel | (1 << cs)) : (slvsel & ~(1 << cs));
565 mpc8xxx_spi_write_reg(&reg_base->slvsel, slvsel);
566 }
Andreas Larsson447b0c72013-02-15 16:52:26 +0100567}
568
569static void fsl_spi_grlib_probe(struct device *dev)
570{
Jingoo Han8074cf02013-07-30 16:58:59 +0900571 struct fsl_spi_platform_data *pdata = dev_get_platdata(dev);
Andreas Larsson447b0c72013-02-15 16:52:26 +0100572 struct spi_master *master = dev_get_drvdata(dev);
573 struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(master);
Luc Van Oostenryckdd67de82020-06-22 18:26:11 +0200574 struct fsl_spi_reg __iomem *reg_base = mpc8xxx_spi->reg_base;
Andreas Larsson447b0c72013-02-15 16:52:26 +0100575 int mbits;
576 u32 capabilities;
577
578 capabilities = mpc8xxx_spi_read_reg(&reg_base->cap);
579
580 mpc8xxx_spi->set_shifts = fsl_spi_grlib_set_shifts;
581 mbits = SPCAP_MAXWLEN(capabilities);
582 if (mbits)
583 mpc8xxx_spi->max_bits_per_word = mbits + 1;
584
Andreas Larsson76a74982013-02-15 16:52:27 +0100585 mpc8xxx_spi->native_chipselects = 0;
Andreas Larsson447b0c72013-02-15 16:52:26 +0100586 if (SPCAP_SSEN(capabilities)) {
Andreas Larsson76a74982013-02-15 16:52:27 +0100587 mpc8xxx_spi->native_chipselects = SPCAP_SSSZ(capabilities);
Andreas Larsson447b0c72013-02-15 16:52:26 +0100588 mpc8xxx_spi_write_reg(&reg_base->slvsel, 0xffffffff);
589 }
Andreas Larsson76a74982013-02-15 16:52:27 +0100590 master->num_chipselect = mpc8xxx_spi->native_chipselects;
Andreas Larsson447b0c72013-02-15 16:52:26 +0100591 pdata->cs_control = fsl_spi_grlib_cs_control;
592}
593
Aishwarya R7cb88af2020-04-07 17:58:55 +0530594static struct spi_master *fsl_spi_probe(struct device *dev,
Mingkai Hub36ece82010-10-12 18:18:31 +0800595 struct resource *mem, unsigned int irq)
Kumar Galaccf06992006-05-20 15:00:15 -0700596{
Jingoo Han8074cf02013-07-30 16:58:59 +0900597 struct fsl_spi_platform_data *pdata = dev_get_platdata(dev);
Kumar Galaccf06992006-05-20 15:00:15 -0700598 struct spi_master *master;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700599 struct mpc8xxx_spi *mpc8xxx_spi;
Luc Van Oostenryckdd67de82020-06-22 18:26:11 +0200600 struct fsl_spi_reg __iomem *reg_base;
Kumar Galaccf06992006-05-20 15:00:15 -0700601 u32 regval;
602 int ret = 0;
603
Anton Vorontsov575c5802009-06-18 16:49:08 -0700604 master = spi_alloc_master(dev, sizeof(struct mpc8xxx_spi));
Kumar Galaccf06992006-05-20 15:00:15 -0700605 if (master == NULL) {
606 ret = -ENOMEM;
607 goto err;
608 }
609
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700610 dev_set_drvdata(dev, master);
Kumar Galaccf06992006-05-20 15:00:15 -0700611
Heiner Kallweitc592bec2014-12-03 07:56:17 +0100612 mpc8xxx_spi_probe(dev, mem, irq);
David Brownelle7db06b2009-06-17 16:26:04 -0700613
Mingkai Hub36ece82010-10-12 18:18:31 +0800614 master->setup = fsl_spi_setup;
Andreas Larsson76a74982013-02-15 16:52:27 +0100615 master->cleanup = fsl_spi_cleanup;
Heiner Kallweitc592bec2014-12-03 07:56:17 +0100616 master->transfer_one_message = fsl_spi_do_one_msg;
Linus Walleijf10690492019-11-28 09:37:16 +0100617 master->use_gpio_descriptors = true;
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700618
Anton Vorontsov575c5802009-06-18 16:49:08 -0700619 mpc8xxx_spi = spi_master_get_devdata(master);
Andreas Larsson8922a362013-02-15 16:52:25 +0100620 mpc8xxx_spi->max_bits_per_word = 32;
Andreas Larssonc3f3e772013-02-15 16:52:24 +0100621 mpc8xxx_spi->type = fsl_spi_get_type(dev);
Mingkai Hub36ece82010-10-12 18:18:31 +0800622
623 ret = fsl_spi_cpm_init(mpc8xxx_spi);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400624 if (ret)
625 goto err_cpm_init;
626
Heiner Kallweit4178b6b2015-08-26 21:21:50 +0200627 mpc8xxx_spi->reg_base = devm_ioremap_resource(dev, mem);
Axel Lin37c5db72015-08-30 18:35:51 +0800628 if (IS_ERR(mpc8xxx_spi->reg_base)) {
629 ret = PTR_ERR(mpc8xxx_spi->reg_base);
Heiner Kallweit4178b6b2015-08-26 21:21:50 +0200630 goto err_probe;
Andreas Larsson447b0c72013-02-15 16:52:26 +0100631 }
632
633 if (mpc8xxx_spi->type == TYPE_GRLIB)
634 fsl_spi_grlib_probe(dev);
635
Axel Linf7343942014-02-13 19:05:38 +0800636 master->bits_per_word_mask =
637 (SPI_BPW_RANGE_MASK(4, 16) | SPI_BPW_MASK(32)) &
638 SPI_BPW_RANGE_MASK(1, mpc8xxx_spi->max_bits_per_word);
639
Andreas Larssonb48c4e32013-02-15 16:52:23 +0100640 if (mpc8xxx_spi->flags & SPI_QE_CPU_MODE)
641 mpc8xxx_spi->set_shifts = fsl_spi_qe_cpu_set_shifts;
642
643 if (mpc8xxx_spi->set_shifts)
644 /* 8 bits per word and MSB first */
645 mpc8xxx_spi->set_shifts(&mpc8xxx_spi->rx_shift,
646 &mpc8xxx_spi->tx_shift, 8, 1);
Joakim Tjernlundf29ba282007-07-17 04:04:12 -0700647
Kumar Galaccf06992006-05-20 15:00:15 -0700648 /* Register for SPI Interrupt */
Heiner Kallweit4178b6b2015-08-26 21:21:50 +0200649 ret = devm_request_irq(dev, mpc8xxx_spi->irq, fsl_spi_irq,
650 0, "fsl_spi", mpc8xxx_spi);
Kumar Galaccf06992006-05-20 15:00:15 -0700651
652 if (ret != 0)
Heiner Kallweit4178b6b2015-08-26 21:21:50 +0200653 goto err_probe;
Kumar Galaccf06992006-05-20 15:00:15 -0700654
Mingkai Hub36ece82010-10-12 18:18:31 +0800655 reg_base = mpc8xxx_spi->reg_base;
Kumar Galaccf06992006-05-20 15:00:15 -0700656
657 /* SPI controller initializations */
Mingkai Hub36ece82010-10-12 18:18:31 +0800658 mpc8xxx_spi_write_reg(&reg_base->mode, 0);
659 mpc8xxx_spi_write_reg(&reg_base->mask, 0);
660 mpc8xxx_spi_write_reg(&reg_base->command, 0);
661 mpc8xxx_spi_write_reg(&reg_base->event, 0xffffffff);
Kumar Galaccf06992006-05-20 15:00:15 -0700662
663 /* Enable SPI interface */
664 regval = pdata->initial_spmode | SPMODE_INIT_VAL | SPMODE_ENABLE;
Andreas Larsson8922a362013-02-15 16:52:25 +0100665 if (mpc8xxx_spi->max_bits_per_word < 8) {
666 regval &= ~SPMODE_LEN(0xF);
667 regval |= SPMODE_LEN(mpc8xxx_spi->max_bits_per_word - 1);
668 }
Anton Vorontsov87ec0e92009-10-12 20:49:25 +0400669 if (mpc8xxx_spi->flags & SPI_QE_CPU_MODE)
Joakim Tjernlundf29ba282007-07-17 04:04:12 -0700670 regval |= SPMODE_OP;
671
Mingkai Hub36ece82010-10-12 18:18:31 +0800672 mpc8xxx_spi_write_reg(&reg_base->mode, regval);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700673
Heiner Kallweit4178b6b2015-08-26 21:21:50 +0200674 ret = devm_spi_register_master(dev, master);
Joakim Tjernlundc9bfcb32008-05-12 14:02:30 -0700675 if (ret < 0)
Heiner Kallweit4178b6b2015-08-26 21:21:50 +0200676 goto err_probe;
Kumar Galaccf06992006-05-20 15:00:15 -0700677
Mingkai Hub36ece82010-10-12 18:18:31 +0800678 dev_info(dev, "at 0x%p (irq = %d), %s mode\n", reg_base,
Anton Vorontsov87ec0e92009-10-12 20:49:25 +0400679 mpc8xxx_spi->irq, mpc8xxx_spi_strmode(mpc8xxx_spi->flags));
Kumar Galaccf06992006-05-20 15:00:15 -0700680
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700681 return master;
Kumar Galaccf06992006-05-20 15:00:15 -0700682
Heiner Kallweit4178b6b2015-08-26 21:21:50 +0200683err_probe:
Mingkai Hub36ece82010-10-12 18:18:31 +0800684 fsl_spi_cpm_free(mpc8xxx_spi);
Anton Vorontsov4c1fba442009-10-12 20:49:27 +0400685err_cpm_init:
Kumar Galaccf06992006-05-20 15:00:15 -0700686 spi_master_put(master);
Kumar Galaccf06992006-05-20 15:00:15 -0700687err:
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700688 return ERR_PTR(ret);
Kumar Galaccf06992006-05-20 15:00:15 -0700689}
690
Mingkai Hub36ece82010-10-12 18:18:31 +0800691static void fsl_spi_cs_control(struct spi_device *spi, bool on)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700692{
Linus Walleij0f0581b2019-08-04 02:35:39 +0200693 if (spi->cs_gpiod) {
694 gpiod_set_value(spi->cs_gpiod, on);
Rasmus Villemoes69b921a2019-03-06 10:32:05 +0000695 } else {
Linus Walleij0f0581b2019-08-04 02:35:39 +0200696 struct device *dev = spi->dev.parent->parent;
697 struct fsl_spi_platform_data *pdata = dev_get_platdata(dev);
698 struct mpc8xxx_spi_probe_info *pinfo = to_of_pinfo(pdata);
699
700 if (WARN_ON_ONCE(!pinfo->immr_spi_cs))
Rasmus Villemoes69b921a2019-03-06 10:32:05 +0000701 return;
Rasmus Villemoes9d2aa6d2021-01-30 15:35:45 +0100702 iowrite32be(on ? 0 : SPI_BOOT_SEL_BIT, pinfo->immr_spi_cs);
Rasmus Villemoes69b921a2019-03-06 10:32:05 +0000703 }
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700704}
705
Grant Likelyfd4a3192012-12-07 16:57:14 +0000706static int of_fsl_spi_probe(struct platform_device *ofdev)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700707{
708 struct device *dev = &ofdev->dev;
Grant Likely61c7a082010-04-13 16:12:29 -0700709 struct device_node *np = ofdev->dev.of_node;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700710 struct spi_master *master;
711 struct resource mem;
Christophe Leroy2f3d8032020-01-14 16:02:40 +0000712 int irq, type;
713 int ret;
Yang Yingliang5fed9fe2021-04-01 22:03:50 +0800714 bool spisel_boot = false;
715#if IS_ENABLED(CONFIG_FSL_SOC)
716 struct mpc8xxx_spi_probe_info *pinfo = NULL;
717#endif
718
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700719
Grant Likely18d306d2011-02-22 21:02:43 -0700720 ret = of_mpc8xxx_spi_probe(ofdev);
Mingkai Hub36ece82010-10-12 18:18:31 +0800721 if (ret)
722 return ret;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700723
Andreas Larsson447b0c72013-02-15 16:52:26 +0100724 type = fsl_spi_get_type(&ofdev->dev);
725 if (type == TYPE_FSL) {
Linus Walleij0f0581b2019-08-04 02:35:39 +0200726 struct fsl_spi_platform_data *pdata = dev_get_platdata(dev);
727#if IS_ENABLED(CONFIG_FSL_SOC)
Yang Yingliang5fed9fe2021-04-01 22:03:50 +0800728 pinfo = to_of_pinfo(pdata);
Linus Walleij0f0581b2019-08-04 02:35:39 +0200729
Rasmus Villemoes122541f2020-11-27 16:29:47 +0100730 spisel_boot = of_property_read_bool(np, "fsl,spisel_boot");
Linus Walleij0f0581b2019-08-04 02:35:39 +0200731 if (spisel_boot) {
732 pinfo->immr_spi_cs = ioremap(get_immrbase() + IMMR_SPI_CS_OFFSET, 4);
Christophe Leroy2f3d8032020-01-14 16:02:40 +0000733 if (!pinfo->immr_spi_cs)
734 return -ENOMEM;
Linus Walleij0f0581b2019-08-04 02:35:39 +0200735 }
736#endif
Linus Walleij72519532019-11-28 09:37:18 +0100737 /*
738 * Handle the case where we have one hardwired (always selected)
739 * device on the first "chipselect". Else we let the core code
740 * handle any GPIOs or native chip selects and assign the
741 * appropriate callback for dealing with the CS lines. This isn't
742 * supported on the GRLIB variant.
743 */
744 ret = gpiod_count(dev, "cs");
Rasmus Villemoes122541f2020-11-27 16:29:47 +0100745 if (ret < 0)
746 ret = 0;
747 if (ret == 0 && !spisel_boot) {
Linus Walleij72519532019-11-28 09:37:18 +0100748 pdata->max_chipselect = 1;
Rasmus Villemoes122541f2020-11-27 16:29:47 +0100749 } else {
750 pdata->max_chipselect = ret + spisel_boot;
Linus Walleij72519532019-11-28 09:37:18 +0100751 pdata->cs_control = fsl_spi_cs_control;
Rasmus Villemoes122541f2020-11-27 16:29:47 +0100752 }
Andreas Larsson447b0c72013-02-15 16:52:26 +0100753 }
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700754
755 ret = of_address_to_resource(np, 0, &mem);
756 if (ret)
Yang Yingliang5fed9fe2021-04-01 22:03:50 +0800757 goto unmap_out;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700758
Christophe Leroy63aa6a62019-12-12 17:47:24 +0000759 irq = platform_get_irq(ofdev, 0);
Yang Yingliang5fed9fe2021-04-01 22:03:50 +0800760 if (irq < 0) {
761 ret = irq;
762 goto unmap_out;
763 }
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700764
Andreas Larssone8beacb2013-02-15 16:52:21 +0100765 master = fsl_spi_probe(dev, &mem, irq);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700766
Christophe Leroy2f3d8032020-01-14 16:02:40 +0000767 return PTR_ERR_OR_ZERO(master);
Yang Yingliang5fed9fe2021-04-01 22:03:50 +0800768
769unmap_out:
770#if IS_ENABLED(CONFIG_FSL_SOC)
771 if (spisel_boot)
772 iounmap(pinfo->immr_spi_cs);
773#endif
774 return ret;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700775}
776
Grant Likelyfd4a3192012-12-07 16:57:14 +0000777static int of_fsl_spi_remove(struct platform_device *ofdev)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700778{
Jingoo Han24b5a822013-05-23 19:20:40 +0900779 struct spi_master *master = platform_get_drvdata(ofdev);
Andreas Larsson447b0c72013-02-15 16:52:26 +0100780 struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(master);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700781
Heiner Kallweit3c5395b2015-08-26 21:21:53 +0200782 fsl_spi_cpm_free(mpc8xxx_spi);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700783 return 0;
784}
785
Grant Likely18d306d2011-02-22 21:02:43 -0700786static struct platform_driver of_fsl_spi_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700787 .driver = {
Mingkai Hub36ece82010-10-12 18:18:31 +0800788 .name = "fsl_spi",
Mingkai Hub36ece82010-10-12 18:18:31 +0800789 .of_match_table = of_fsl_spi_match,
Grant Likely40182942010-04-13 16:13:02 -0700790 },
Mingkai Hub36ece82010-10-12 18:18:31 +0800791 .probe = of_fsl_spi_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +0000792 .remove = of_fsl_spi_remove,
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700793};
794
795#ifdef CONFIG_MPC832x_RDB
796/*
Mingkai Hub36ece82010-10-12 18:18:31 +0800797 * XXX XXX XXX
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700798 * This is "legacy" platform driver, was used by the MPC8323E-RDB boards
799 * only. The driver should go away soon, since newer MPC8323E-RDB's device
800 * tree can work with OpenFirmware driver. But for now we support old trees
801 * as well.
802 */
Grant Likelyfd4a3192012-12-07 16:57:14 +0000803static int plat_mpc8xxx_spi_probe(struct platform_device *pdev)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700804{
805 struct resource *mem;
Uwe Kleine-Könige9a172f2010-01-20 13:49:44 -0700806 int irq;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700807 struct spi_master *master;
808
Jingoo Han8074cf02013-07-30 16:58:59 +0900809 if (!dev_get_platdata(&pdev->dev))
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700810 return -EINVAL;
811
812 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
813 if (!mem)
814 return -EINVAL;
815
816 irq = platform_get_irq(pdev, 0);
Uwe Kleine-Könige9a172f2010-01-20 13:49:44 -0700817 if (irq <= 0)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700818 return -EINVAL;
819
Mingkai Hub36ece82010-10-12 18:18:31 +0800820 master = fsl_spi_probe(&pdev->dev, mem, irq);
Rusty Russell8c6ffba2013-07-15 11:20:32 +0930821 return PTR_ERR_OR_ZERO(master);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700822}
823
Grant Likelyfd4a3192012-12-07 16:57:14 +0000824static int plat_mpc8xxx_spi_remove(struct platform_device *pdev)
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700825{
Heiner Kallweit3c5395b2015-08-26 21:21:53 +0200826 struct spi_master *master = platform_get_drvdata(pdev);
827 struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(master);
828
829 fsl_spi_cpm_free(mpc8xxx_spi);
830
831 return 0;
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700832}
833
Anton Vorontsov575c5802009-06-18 16:49:08 -0700834MODULE_ALIAS("platform:mpc8xxx_spi");
835static struct platform_driver mpc8xxx_spi_driver = {
836 .probe = plat_mpc8xxx_spi_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +0000837 .remove = plat_mpc8xxx_spi_remove,
Kumar Galaccf06992006-05-20 15:00:15 -0700838 .driver = {
Anton Vorontsov575c5802009-06-18 16:49:08 -0700839 .name = "mpc8xxx_spi",
Kumar Galaccf06992006-05-20 15:00:15 -0700840 },
841};
842
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700843static bool legacy_driver_failed;
844
845static void __init legacy_driver_register(void)
846{
Anton Vorontsov575c5802009-06-18 16:49:08 -0700847 legacy_driver_failed = platform_driver_register(&mpc8xxx_spi_driver);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700848}
849
850static void __exit legacy_driver_unregister(void)
851{
852 if (legacy_driver_failed)
853 return;
Anton Vorontsov575c5802009-06-18 16:49:08 -0700854 platform_driver_unregister(&mpc8xxx_spi_driver);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700855}
856#else
857static void __init legacy_driver_register(void) {}
858static void __exit legacy_driver_unregister(void) {}
859#endif /* CONFIG_MPC832x_RDB */
860
Mingkai Hub36ece82010-10-12 18:18:31 +0800861static int __init fsl_spi_init(void)
Kumar Galaccf06992006-05-20 15:00:15 -0700862{
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700863 legacy_driver_register();
Grant Likely18d306d2011-02-22 21:02:43 -0700864 return platform_driver_register(&of_fsl_spi_driver);
Kumar Galaccf06992006-05-20 15:00:15 -0700865}
Mingkai Hub36ece82010-10-12 18:18:31 +0800866module_init(fsl_spi_init);
Kumar Galaccf06992006-05-20 15:00:15 -0700867
Mingkai Hub36ece82010-10-12 18:18:31 +0800868static void __exit fsl_spi_exit(void)
Kumar Galaccf06992006-05-20 15:00:15 -0700869{
Grant Likely18d306d2011-02-22 21:02:43 -0700870 platform_driver_unregister(&of_fsl_spi_driver);
Anton Vorontsov35b4b3c2009-03-31 15:24:37 -0700871 legacy_driver_unregister();
Kumar Galaccf06992006-05-20 15:00:15 -0700872}
Mingkai Hub36ece82010-10-12 18:18:31 +0800873module_exit(fsl_spi_exit);
Kumar Galaccf06992006-05-20 15:00:15 -0700874
875MODULE_AUTHOR("Kumar Gala");
Mingkai Hub36ece82010-10-12 18:18:31 +0800876MODULE_DESCRIPTION("Simple Freescale SPI Driver");
Kumar Galaccf06992006-05-20 15:00:15 -0700877MODULE_LICENSE("GPL");