Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 2 | /* |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 3 | * Freescale SPI controller driver. |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 4 | * |
| 5 | * Maintainer: Kumar Gala |
| 6 | * |
| 7 | * Copyright (C) 2006 Polycom, Inc. |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 8 | * Copyright 2010 Freescale Semiconductor, Inc. |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 9 | * |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 10 | * 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 Larsson | 447b0c7 | 2013-02-15 16:52:26 +0100 | [diff] [blame] | 14 | * GRLIB support: |
| 15 | * Copyright (c) 2012 Aeroflex Gaisler AB. |
| 16 | * Author: Andreas Larsson <andreas@gaisler.com> |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 17 | */ |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 18 | #include <linux/delay.h> |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 19 | #include <linux/dma-mapping.h> |
Xiubo Li | a310836 | 2014-09-29 10:57:06 +0800 | [diff] [blame] | 20 | #include <linux/fsl_devices.h> |
Linus Walleij | 0f0581b | 2019-08-04 02:35:39 +0200 | [diff] [blame] | 21 | #include <linux/gpio/consumer.h> |
Xiubo Li | a310836 | 2014-09-29 10:57:06 +0800 | [diff] [blame] | 22 | #include <linux/interrupt.h> |
| 23 | #include <linux/irq.h> |
| 24 | #include <linux/kernel.h> |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 25 | #include <linux/mm.h> |
Xiubo Li | a310836 | 2014-09-29 10:57:06 +0800 | [diff] [blame] | 26 | #include <linux/module.h> |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 27 | #include <linux/mutex.h> |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 28 | #include <linux/of.h> |
Andreas Larsson | e8beacb | 2013-02-15 16:52:21 +0100 | [diff] [blame] | 29 | #include <linux/of_address.h> |
| 30 | #include <linux/of_irq.h> |
Xiubo Li | a310836 | 2014-09-29 10:57:06 +0800 | [diff] [blame] | 31 | #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 Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 36 | |
Rasmus Villemoes | 69b921a | 2019-03-06 10:32:05 +0000 | [diff] [blame] | 37 | #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 Likely | ca632f5 | 2011-06-06 01:16:30 -0600 | [diff] [blame] | 45 | #include "spi-fsl-lib.h" |
Andreas Larsson | e8beacb | 2013-02-15 16:52:21 +0100 | [diff] [blame] | 46 | #include "spi-fsl-cpm.h" |
| 47 | #include "spi-fsl-spi.h" |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 48 | |
Andreas Larsson | c3f3e77 | 2013-02-15 16:52:24 +0100 | [diff] [blame] | 49 | #define TYPE_FSL 0 |
Andreas Larsson | 447b0c7 | 2013-02-15 16:52:26 +0100 | [diff] [blame] | 50 | #define TYPE_GRLIB 1 |
Andreas Larsson | c3f3e77 | 2013-02-15 16:52:24 +0100 | [diff] [blame] | 51 | |
| 52 | struct fsl_spi_match_data { |
| 53 | int type; |
| 54 | }; |
| 55 | |
| 56 | static struct fsl_spi_match_data of_fsl_spi_fsl_config = { |
| 57 | .type = TYPE_FSL, |
| 58 | }; |
| 59 | |
Andreas Larsson | 447b0c7 | 2013-02-15 16:52:26 +0100 | [diff] [blame] | 60 | static struct fsl_spi_match_data of_fsl_spi_grlib_config = { |
| 61 | .type = TYPE_GRLIB, |
| 62 | }; |
| 63 | |
Jingoo Han | 3aea901 | 2014-06-03 21:03:59 +0900 | [diff] [blame] | 64 | static const struct of_device_id of_fsl_spi_match[] = { |
Andreas Larsson | c3f3e77 | 2013-02-15 16:52:24 +0100 | [diff] [blame] | 65 | { |
| 66 | .compatible = "fsl,spi", |
| 67 | .data = &of_fsl_spi_fsl_config, |
| 68 | }, |
Andreas Larsson | 447b0c7 | 2013-02-15 16:52:26 +0100 | [diff] [blame] | 69 | { |
| 70 | .compatible = "aeroflexgaisler,spictrl", |
| 71 | .data = &of_fsl_spi_grlib_config, |
| 72 | }, |
Andreas Larsson | c3f3e77 | 2013-02-15 16:52:24 +0100 | [diff] [blame] | 73 | {} |
| 74 | }; |
| 75 | MODULE_DEVICE_TABLE(of, of_fsl_spi_match); |
| 76 | |
| 77 | static 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 Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 89 | static void fsl_spi_change_mode(struct spi_device *spi) |
Anton Vorontsov | a35c171 | 2009-10-12 20:49:24 +0400 | [diff] [blame] | 90 | { |
| 91 | struct mpc8xxx_spi *mspi = spi_master_get_devdata(spi->master); |
| 92 | struct spi_mpc8xxx_cs *cs = spi->controller_state; |
Luc Van Oostenryck | dd67de8 | 2020-06-22 18:26:11 +0200 | [diff] [blame] | 93 | struct fsl_spi_reg __iomem *reg_base = mspi->reg_base; |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 94 | __be32 __iomem *mode = ®_base->mode; |
Anton Vorontsov | a35c171 | 2009-10-12 20:49:24 +0400 | [diff] [blame] | 95 | 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 Vorontsov | a35c171 | 2009-10-12 20:49:24 +0400 | [diff] [blame] | 105 | |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 106 | /* When in CPM mode, we need to reinit tx and rx. */ |
| 107 | if (mspi->flags & SPI_CPM_MODE) { |
Andreas Larsson | e8beacb | 2013-02-15 16:52:21 +0100 | [diff] [blame] | 108 | fsl_spi_cpm_reinit_txrx(mspi); |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 109 | } |
Joakim Tjernlund | f9218c2 | 2010-05-22 02:18:02 -0600 | [diff] [blame] | 110 | mpc8xxx_spi_write_reg(mode, cs->hw_mode); |
Anton Vorontsov | a35c171 | 2009-10-12 20:49:24 +0400 | [diff] [blame] | 111 | local_irq_restore(flags); |
| 112 | } |
| 113 | |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 114 | static void fsl_spi_chipselect(struct spi_device *spi, int value) |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 115 | { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 116 | struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(spi->master); |
Kenth Eriksson | 5039a86 | 2012-03-30 17:05:30 +0200 | [diff] [blame] | 117 | struct fsl_spi_platform_data *pdata; |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 118 | struct spi_mpc8xxx_cs *cs = spi->controller_state; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 119 | |
Kenth Eriksson | 5039a86 | 2012-03-30 17:05:30 +0200 | [diff] [blame] | 120 | pdata = spi->dev.parent->parent->platform_data; |
| 121 | |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 122 | if (value == BITBANG_CS_INACTIVE) { |
Anton Vorontsov | 364fdbc | 2009-03-31 15:24:36 -0700 | [diff] [blame] | 123 | if (pdata->cs_control) |
Christophe Leroy | 7a2da5d | 2021-01-14 13:09:37 +0000 | [diff] [blame] | 124 | pdata->cs_control(spi, false); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | if (value == BITBANG_CS_ACTIVE) { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 128 | 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 Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 132 | |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 133 | fsl_spi_change_mode(spi); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 134 | |
Anton Vorontsov | 364fdbc | 2009-03-31 15:24:36 -0700 | [diff] [blame] | 135 | if (pdata->cs_control) |
Christophe Leroy | 7a2da5d | 2021-01-14 13:09:37 +0000 | [diff] [blame] | 136 | pdata->cs_control(spi, true); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 137 | } |
| 138 | } |
| 139 | |
Andreas Larsson | b48c4e3 | 2013-02-15 16:52:23 +0100 | [diff] [blame] | 140 | static 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 Larsson | 447b0c7 | 2013-02-15 16:52:26 +0100 | [diff] [blame] | 159 | static 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 Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 174 | static 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 Tjernlund | 0398fb7 | 2010-05-14 09:14:26 +0000 | [diff] [blame] | 178 | { |
| 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 Tjernlund | 0398fb7 | 2010-05-14 09:14:26 +0000 | [diff] [blame] | 184 | } 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 Tjernlund | 0398fb7 | 2010-05-14 09:14:26 +0000 | [diff] [blame] | 187 | } 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 Larsson | b48c4e3 | 2013-02-15 16:52:23 +0100 | [diff] [blame] | 193 | 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 Tjernlund | 0398fb7 | 2010-05-14 09:14:26 +0000 | [diff] [blame] | 198 | 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 Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 206 | static int mspi_apply_qe_mode_quirks(struct spi_mpc8xxx_cs *cs, |
| 207 | struct spi_device *spi, |
| 208 | int bits_per_word) |
Joakim Tjernlund | 0398fb7 | 2010-05-14 09:14:26 +0000 | [diff] [blame] | 209 | { |
| 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 Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 224 | static int fsl_spi_setup_transfer(struct spi_device *spi, |
| 225 | struct spi_transfer *t) |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 226 | { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 227 | struct mpc8xxx_spi *mpc8xxx_spi; |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 228 | int bits_per_word = 0; |
Joakim Tjernlund | 0398fb7 | 2010-05-14 09:14:26 +0000 | [diff] [blame] | 229 | u8 pm; |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 230 | u32 hz = 0; |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 231 | struct spi_mpc8xxx_cs *cs = spi->controller_state; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 232 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 233 | mpc8xxx_spi = spi_master_get_devdata(spi->master); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 234 | |
| 235 | if (t) { |
| 236 | bits_per_word = t->bits_per_word; |
| 237 | hz = t->speed_hz; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 238 | } |
| 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 Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 244 | if (!hz) |
| 245 | hz = spi->max_speed_hz; |
| 246 | |
Joakim Tjernlund | 0398fb7 | 2010-05-14 09:14:26 +0000 | [diff] [blame] | 247 | 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 Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 254 | |
Joakim Tjernlund | 0398fb7 | 2010-05-14 09:14:26 +0000 | [diff] [blame] | 255 | if (bits_per_word < 0) |
| 256 | return bits_per_word; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 257 | |
| 258 | if (bits_per_word == 32) |
| 259 | bits_per_word = 0; |
| 260 | else |
| 261 | bits_per_word = bits_per_word - 1; |
| 262 | |
Anton Vorontsov | 32421da | 2007-07-31 00:38:41 -0700 | [diff] [blame] | 263 | /* mask out bits we are going to set */ |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 264 | cs->hw_mode &= ~(SPMODE_LEN(0xF) | SPMODE_DIV16 |
| 265 | | SPMODE_PM(0xF)); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 266 | |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 267 | cs->hw_mode |= SPMODE_LEN(bits_per_word); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 268 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 269 | if ((mpc8xxx_spi->spibrg / hz) > 64) { |
Peter Korsgaard | 53604db | 2008-09-13 02:33:14 -0700 | [diff] [blame] | 270 | cs->hw_mode |= SPMODE_DIV16; |
Ernst Schwab | 4f4517c | 2010-02-16 21:02:57 -0700 | [diff] [blame] | 271 | pm = (mpc8xxx_spi->spibrg - 1) / (hz * 64) + 1; |
Markus Elfring | 31ae779 | 2017-01-13 13:50:21 +0100 | [diff] [blame] | 272 | 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 Vorontsov | fd8a11e | 2009-06-18 16:49:01 -0700 | [diff] [blame] | 275 | if (pm > 16) |
Peter Korsgaard | 53604db | 2008-09-13 02:33:14 -0700 | [diff] [blame] | 276 | pm = 16; |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 277 | } else { |
Ernst Schwab | 4f4517c | 2010-02-16 21:02:57 -0700 | [diff] [blame] | 278 | pm = (mpc8xxx_spi->spibrg - 1) / (hz * 4) + 1; |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 279 | } |
Chen Gong | a61f534 | 2008-07-23 21:29:52 -0700 | [diff] [blame] | 280 | if (pm) |
| 281 | pm--; |
| 282 | |
| 283 | cs->hw_mode |= SPMODE_PM(pm); |
David Brownell | dccd573 | 2007-07-17 04:04:02 -0700 | [diff] [blame] | 284 | |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 285 | fsl_spi_change_mode(spi); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 286 | return 0; |
| 287 | } |
| 288 | |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 289 | static int fsl_spi_cpu_bufs(struct mpc8xxx_spi *mspi, |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 290 | struct spi_transfer *t, unsigned int len) |
| 291 | { |
| 292 | u32 word; |
Luc Van Oostenryck | dd67de8 | 2020-06-22 18:26:11 +0200 | [diff] [blame] | 293 | struct fsl_spi_reg __iomem *reg_base = mspi->reg_base; |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 294 | |
| 295 | mspi->count = len; |
| 296 | |
| 297 | /* enable rx ints */ |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 298 | mpc8xxx_spi_write_reg(®_base->mask, SPIM_NE); |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 299 | |
| 300 | /* transmit word */ |
| 301 | word = mspi->get_tx(mspi); |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 302 | mpc8xxx_spi_write_reg(®_base->transmit, word); |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 303 | |
| 304 | return 0; |
| 305 | } |
| 306 | |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 307 | static int fsl_spi_bufs(struct spi_device *spi, struct spi_transfer *t, |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 308 | bool is_dma_mapped) |
| 309 | { |
| 310 | struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(spi->master); |
Luc Van Oostenryck | dd67de8 | 2020-06-22 18:26:11 +0200 | [diff] [blame] | 311 | struct fsl_spi_reg __iomem *reg_base; |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 312 | unsigned int len = t->len; |
| 313 | u8 bits_per_word; |
| 314 | int ret; |
| 315 | |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 316 | reg_base = mpc8xxx_spi->reg_base; |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 317 | bits_per_word = spi->bits_per_word; |
| 318 | if (t->bits_per_word) |
| 319 | bits_per_word = t->bits_per_word; |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 320 | |
Peter Korsgaard | aa77d96 | 2008-09-13 02:33:15 -0700 | [diff] [blame] | 321 | if (bits_per_word > 8) { |
| 322 | /* invalid length? */ |
| 323 | if (len & 1) |
| 324 | return -EINVAL; |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 325 | len /= 2; |
Peter Korsgaard | aa77d96 | 2008-09-13 02:33:15 -0700 | [diff] [blame] | 326 | } |
| 327 | if (bits_per_word > 16) { |
| 328 | /* invalid length? */ |
| 329 | if (len & 1) |
| 330 | return -EINVAL; |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 331 | len /= 2; |
Peter Korsgaard | aa77d96 | 2008-09-13 02:33:15 -0700 | [diff] [blame] | 332 | } |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 333 | |
| 334 | mpc8xxx_spi->tx = t->tx_buf; |
| 335 | mpc8xxx_spi->rx = t->rx_buf; |
Peter Korsgaard | aa77d96 | 2008-09-13 02:33:15 -0700 | [diff] [blame] | 336 | |
Wolfram Sang | 16735d0 | 2013-11-14 14:32:02 -0800 | [diff] [blame] | 337 | reinit_completion(&mpc8xxx_spi->done); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 338 | |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 339 | if (mpc8xxx_spi->flags & SPI_CPM_MODE) |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 340 | ret = fsl_spi_cpm_bufs(mpc8xxx_spi, t, is_dma_mapped); |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 341 | else |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 342 | ret = fsl_spi_cpu_bufs(mpc8xxx_spi, t, len); |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 343 | if (ret) |
| 344 | return ret; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 345 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 346 | wait_for_completion(&mpc8xxx_spi->done); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 347 | |
| 348 | /* disable rx ints */ |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 349 | mpc8xxx_spi_write_reg(®_base->mask, 0); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 350 | |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 351 | if (mpc8xxx_spi->flags & SPI_CPM_MODE) |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 352 | fsl_spi_cpm_bufs_complete(mpc8xxx_spi); |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 353 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 354 | return mpc8xxx_spi->count; |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 355 | } |
| 356 | |
Heiner Kallweit | c592bec | 2014-12-03 07:56:17 +0100 | [diff] [blame] | 357 | static int fsl_spi_do_one_msg(struct spi_master *master, |
| 358 | struct spi_message *m) |
Anton Vorontsov | b9b9af1 | 2009-06-18 16:49:06 -0700 | [diff] [blame] | 359 | { |
Rasmus Villemoes | af0e624 | 2019-03-27 14:30:52 +0000 | [diff] [blame] | 360 | struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(master); |
Anton Vorontsov | b9b9af1 | 2009-06-18 16:49:06 -0700 | [diff] [blame] | 361 | struct spi_device *spi = m->spi; |
Stefan Roese | 4302a596 | 2014-01-31 13:44:59 +0100 | [diff] [blame] | 362 | struct spi_transfer *t, *first; |
Anton Vorontsov | b9b9af1 | 2009-06-18 16:49:06 -0700 | [diff] [blame] | 363 | unsigned int cs_change; |
| 364 | const int nsecs = 50; |
Rasmus Villemoes | a798a70 | 2019-03-27 14:30:51 +0000 | [diff] [blame] | 365 | int status, last_bpw; |
Anton Vorontsov | b9b9af1 | 2009-06-18 16:49:06 -0700 | [diff] [blame] | 366 | |
Rasmus Villemoes | af0e624 | 2019-03-27 14:30:52 +0000 | [diff] [blame] | 367 | /* |
| 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 Roese | 4302a596 | 2014-01-31 13:44:59 +0100 | [diff] [blame] | 382 | /* Don't allow changes if CS is active */ |
Rasmus Villemoes | 17ecffa | 2019-03-27 14:30:51 +0000 | [diff] [blame] | 383 | cs_change = 1; |
Stefan Roese | 4302a596 | 2014-01-31 13:44:59 +0100 | [diff] [blame] | 384 | list_for_each_entry(t, &m->transfers, transfer_list) { |
Rasmus Villemoes | 17ecffa | 2019-03-27 14:30:51 +0000 | [diff] [blame] | 385 | if (cs_change) |
| 386 | first = t; |
| 387 | cs_change = t->cs_change; |
Rasmus Villemoes | a798a70 | 2019-03-27 14:30:51 +0000 | [diff] [blame] | 388 | if (first->speed_hz != t->speed_hz) { |
Stefan Roese | 4302a596 | 2014-01-31 13:44:59 +0100 | [diff] [blame] | 389 | dev_err(&spi->dev, |
Rasmus Villemoes | a798a70 | 2019-03-27 14:30:51 +0000 | [diff] [blame] | 390 | "speed_hz cannot change while CS is active\n"); |
Fabio Estevam | 75c4108 | 2014-12-04 11:15:47 -0200 | [diff] [blame] | 391 | return -EINVAL; |
Stefan Roese | 4302a596 | 2014-01-31 13:44:59 +0100 | [diff] [blame] | 392 | } |
| 393 | } |
| 394 | |
Rasmus Villemoes | a798a70 | 2019-03-27 14:30:51 +0000 | [diff] [blame] | 395 | last_bpw = -1; |
Anton Vorontsov | b9b9af1 | 2009-06-18 16:49:06 -0700 | [diff] [blame] | 396 | cs_change = 1; |
Stefan Roese | 4302a596 | 2014-01-31 13:44:59 +0100 | [diff] [blame] | 397 | status = -EINVAL; |
Anton Vorontsov | b9b9af1 | 2009-06-18 16:49:06 -0700 | [diff] [blame] | 398 | list_for_each_entry(t, &m->transfers, transfer_list) { |
Rasmus Villemoes | a798a70 | 2019-03-27 14:30:51 +0000 | [diff] [blame] | 399 | if (cs_change || last_bpw != t->bits_per_word) |
Rasmus Villemoes | 24c3636 | 2019-03-27 14:30:50 +0000 | [diff] [blame] | 400 | status = fsl_spi_setup_transfer(spi, t); |
| 401 | if (status < 0) |
| 402 | break; |
Rasmus Villemoes | a798a70 | 2019-03-27 14:30:51 +0000 | [diff] [blame] | 403 | last_bpw = t->bits_per_word; |
Anton Vorontsov | b9b9af1 | 2009-06-18 16:49:06 -0700 | [diff] [blame] | 404 | |
| 405 | if (cs_change) { |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 406 | fsl_spi_chipselect(spi, BITBANG_CS_ACTIVE); |
Anton Vorontsov | b9b9af1 | 2009-06-18 16:49:06 -0700 | [diff] [blame] | 407 | ndelay(nsecs); |
| 408 | } |
| 409 | cs_change = t->cs_change; |
| 410 | if (t->len) |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 411 | status = fsl_spi_bufs(spi, t, m->is_dma_mapped); |
Anton Vorontsov | b9b9af1 | 2009-06-18 16:49:06 -0700 | [diff] [blame] | 412 | if (status) { |
| 413 | status = -EMSGSIZE; |
| 414 | break; |
| 415 | } |
| 416 | m->actual_length += t->len; |
| 417 | |
Alexandru Ardelean | e74dc5c | 2019-09-26 13:51:37 +0300 | [diff] [blame] | 418 | spi_transfer_delay_exec(t); |
Anton Vorontsov | b9b9af1 | 2009-06-18 16:49:06 -0700 | [diff] [blame] | 419 | |
| 420 | if (cs_change) { |
| 421 | ndelay(nsecs); |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 422 | fsl_spi_chipselect(spi, BITBANG_CS_INACTIVE); |
Anton Vorontsov | b9b9af1 | 2009-06-18 16:49:06 -0700 | [diff] [blame] | 423 | ndelay(nsecs); |
| 424 | } |
| 425 | } |
| 426 | |
| 427 | m->status = status; |
Anton Vorontsov | b9b9af1 | 2009-06-18 16:49:06 -0700 | [diff] [blame] | 428 | |
| 429 | if (status || !cs_change) { |
| 430 | ndelay(nsecs); |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 431 | fsl_spi_chipselect(spi, BITBANG_CS_INACTIVE); |
Anton Vorontsov | b9b9af1 | 2009-06-18 16:49:06 -0700 | [diff] [blame] | 432 | } |
| 433 | |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 434 | fsl_spi_setup_transfer(spi, NULL); |
Christophe Leroy | 44a0421 | 2019-05-22 11:00:36 +0000 | [diff] [blame] | 435 | spi_finalize_current_message(master); |
Heiner Kallweit | c592bec | 2014-12-03 07:56:17 +0100 | [diff] [blame] | 436 | return 0; |
Anton Vorontsov | b9b9af1 | 2009-06-18 16:49:06 -0700 | [diff] [blame] | 437 | } |
| 438 | |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 439 | static int fsl_spi_setup(struct spi_device *spi) |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 440 | { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 441 | struct mpc8xxx_spi *mpc8xxx_spi; |
Luc Van Oostenryck | dd67de8 | 2020-06-22 18:26:11 +0200 | [diff] [blame] | 442 | struct fsl_spi_reg __iomem *reg_base; |
Lukas Wunner | 2ec6f20 | 2021-05-27 23:10:56 +0200 | [diff] [blame] | 443 | bool initial_setup = false; |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 444 | int retval; |
| 445 | u32 hw_mode; |
Axel Lin | d9f2674 | 2014-08-31 12:44:09 +0800 | [diff] [blame] | 446 | struct spi_mpc8xxx_cs *cs = spi_get_ctldata(spi); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 447 | |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 448 | if (!spi->max_speed_hz) |
| 449 | return -EINVAL; |
| 450 | |
| 451 | if (!cs) { |
Axel Lin | d9f2674 | 2014-08-31 12:44:09 +0800 | [diff] [blame] | 452 | cs = kzalloc(sizeof(*cs), GFP_KERNEL); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 453 | if (!cs) |
| 454 | return -ENOMEM; |
Axel Lin | d9f2674 | 2014-08-31 12:44:09 +0800 | [diff] [blame] | 455 | spi_set_ctldata(spi, cs); |
Lukas Wunner | 2ec6f20 | 2021-05-27 23:10:56 +0200 | [diff] [blame] | 456 | initial_setup = true; |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 457 | } |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 458 | mpc8xxx_spi = spi_master_get_devdata(spi->master); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 459 | |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 460 | reg_base = mpc8xxx_spi->reg_base; |
| 461 | |
Thomas Weber | 8839316 | 2010-03-16 11:47:56 +0100 | [diff] [blame] | 462 | hw_mode = cs->hw_mode; /* Save original settings */ |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 463 | cs->hw_mode = mpc8xxx_spi_read_reg(®_base->mode); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 464 | /* 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 Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 477 | retval = fsl_spi_setup_transfer(spi, NULL); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 478 | if (retval < 0) { |
| 479 | cs->hw_mode = hw_mode; /* Restore settings */ |
Lukas Wunner | 2ec6f20 | 2021-05-27 23:10:56 +0200 | [diff] [blame] | 480 | if (initial_setup) |
| 481 | kfree(cs); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 482 | return retval; |
| 483 | } |
Andreas Larsson | f482cd0 | 2013-02-15 16:52:22 +0100 | [diff] [blame] | 484 | |
| 485 | /* Initialize chipselect - might be active for SPI_CS_HIGH mode */ |
| 486 | fsl_spi_chipselect(spi, BITBANG_CS_INACTIVE); |
| 487 | |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 488 | return 0; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 489 | } |
| 490 | |
Andreas Larsson | 76a7498 | 2013-02-15 16:52:27 +0100 | [diff] [blame] | 491 | static void fsl_spi_cleanup(struct spi_device *spi) |
| 492 | { |
Axel Lin | d9f2674 | 2014-08-31 12:44:09 +0800 | [diff] [blame] | 493 | struct spi_mpc8xxx_cs *cs = spi_get_ctldata(spi); |
Andreas Larsson | 76a7498 | 2013-02-15 16:52:27 +0100 | [diff] [blame] | 494 | |
Axel Lin | d9f2674 | 2014-08-31 12:44:09 +0800 | [diff] [blame] | 495 | kfree(cs); |
| 496 | spi_set_ctldata(spi, NULL); |
Andreas Larsson | 76a7498 | 2013-02-15 16:52:27 +0100 | [diff] [blame] | 497 | } |
| 498 | |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 499 | static void fsl_spi_cpu_irq(struct mpc8xxx_spi *mspi, u32 events) |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 500 | { |
Luc Van Oostenryck | dd67de8 | 2020-06-22 18:26:11 +0200 | [diff] [blame] | 501 | struct fsl_spi_reg __iomem *reg_base = mspi->reg_base; |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 502 | |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 503 | /* We need handle RX first */ |
| 504 | if (events & SPIE_NE) { |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 505 | u32 rx_data = mpc8xxx_spi_read_reg(®_base->receive); |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 506 | |
| 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 Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 514 | mpc8xxx_spi_read_reg(®_base->event)) & |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 515 | SPIE_NF) == 0) |
| 516 | cpu_relax(); |
| 517 | |
| 518 | /* Clear the events */ |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 519 | mpc8xxx_spi_write_reg(®_base->event, events); |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 520 | |
| 521 | mspi->count -= 1; |
| 522 | if (mspi->count) { |
| 523 | u32 word = mspi->get_tx(mspi); |
| 524 | |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 525 | mpc8xxx_spi_write_reg(®_base->transmit, word); |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 526 | } else { |
| 527 | complete(&mspi->done); |
| 528 | } |
| 529 | } |
| 530 | |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 531 | static irqreturn_t fsl_spi_irq(s32 irq, void *context_data) |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 532 | { |
| 533 | struct mpc8xxx_spi *mspi = context_data; |
| 534 | irqreturn_t ret = IRQ_NONE; |
| 535 | u32 events; |
Luc Van Oostenryck | dd67de8 | 2020-06-22 18:26:11 +0200 | [diff] [blame] | 536 | struct fsl_spi_reg __iomem *reg_base = mspi->reg_base; |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 537 | |
| 538 | /* Get interrupt events(tx/rx) */ |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 539 | events = mpc8xxx_spi_read_reg(®_base->event); |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 540 | 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 Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 546 | fsl_spi_cpm_irq(mspi, events); |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 547 | else |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 548 | fsl_spi_cpu_irq(mspi, events); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 549 | |
| 550 | return ret; |
| 551 | } |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 552 | |
Andreas Larsson | 447b0c7 | 2013-02-15 16:52:26 +0100 | [diff] [blame] | 553 | static 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 Oostenryck | dd67de8 | 2020-06-22 18:26:11 +0200 | [diff] [blame] | 556 | struct fsl_spi_reg __iomem *reg_base = mpc8xxx_spi->reg_base; |
Andreas Larsson | 447b0c7 | 2013-02-15 16:52:26 +0100 | [diff] [blame] | 557 | u32 slvsel; |
| 558 | u16 cs = spi->chip_select; |
| 559 | |
Linus Walleij | 0f0581b | 2019-08-04 02:35:39 +0200 | [diff] [blame] | 560 | if (spi->cs_gpiod) { |
| 561 | gpiod_set_value(spi->cs_gpiod, on); |
Andreas Larsson | 76a7498 | 2013-02-15 16:52:27 +0100 | [diff] [blame] | 562 | } else if (cs < mpc8xxx_spi->native_chipselects) { |
| 563 | slvsel = mpc8xxx_spi_read_reg(®_base->slvsel); |
| 564 | slvsel = on ? (slvsel | (1 << cs)) : (slvsel & ~(1 << cs)); |
| 565 | mpc8xxx_spi_write_reg(®_base->slvsel, slvsel); |
| 566 | } |
Andreas Larsson | 447b0c7 | 2013-02-15 16:52:26 +0100 | [diff] [blame] | 567 | } |
| 568 | |
| 569 | static void fsl_spi_grlib_probe(struct device *dev) |
| 570 | { |
Jingoo Han | 8074cf0 | 2013-07-30 16:58:59 +0900 | [diff] [blame] | 571 | struct fsl_spi_platform_data *pdata = dev_get_platdata(dev); |
Andreas Larsson | 447b0c7 | 2013-02-15 16:52:26 +0100 | [diff] [blame] | 572 | struct spi_master *master = dev_get_drvdata(dev); |
| 573 | struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(master); |
Luc Van Oostenryck | dd67de8 | 2020-06-22 18:26:11 +0200 | [diff] [blame] | 574 | struct fsl_spi_reg __iomem *reg_base = mpc8xxx_spi->reg_base; |
Andreas Larsson | 447b0c7 | 2013-02-15 16:52:26 +0100 | [diff] [blame] | 575 | int mbits; |
| 576 | u32 capabilities; |
| 577 | |
| 578 | capabilities = mpc8xxx_spi_read_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 Larsson | 76a7498 | 2013-02-15 16:52:27 +0100 | [diff] [blame] | 585 | mpc8xxx_spi->native_chipselects = 0; |
Andreas Larsson | 447b0c7 | 2013-02-15 16:52:26 +0100 | [diff] [blame] | 586 | if (SPCAP_SSEN(capabilities)) { |
Andreas Larsson | 76a7498 | 2013-02-15 16:52:27 +0100 | [diff] [blame] | 587 | mpc8xxx_spi->native_chipselects = SPCAP_SSSZ(capabilities); |
Andreas Larsson | 447b0c7 | 2013-02-15 16:52:26 +0100 | [diff] [blame] | 588 | mpc8xxx_spi_write_reg(®_base->slvsel, 0xffffffff); |
| 589 | } |
Andreas Larsson | 76a7498 | 2013-02-15 16:52:27 +0100 | [diff] [blame] | 590 | master->num_chipselect = mpc8xxx_spi->native_chipselects; |
Andreas Larsson | 447b0c7 | 2013-02-15 16:52:26 +0100 | [diff] [blame] | 591 | pdata->cs_control = fsl_spi_grlib_cs_control; |
| 592 | } |
| 593 | |
Aishwarya R | 7cb88af | 2020-04-07 17:58:55 +0530 | [diff] [blame] | 594 | static struct spi_master *fsl_spi_probe(struct device *dev, |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 595 | struct resource *mem, unsigned int irq) |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 596 | { |
Jingoo Han | 8074cf0 | 2013-07-30 16:58:59 +0900 | [diff] [blame] | 597 | struct fsl_spi_platform_data *pdata = dev_get_platdata(dev); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 598 | struct spi_master *master; |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 599 | struct mpc8xxx_spi *mpc8xxx_spi; |
Luc Van Oostenryck | dd67de8 | 2020-06-22 18:26:11 +0200 | [diff] [blame] | 600 | struct fsl_spi_reg __iomem *reg_base; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 601 | u32 regval; |
| 602 | int ret = 0; |
| 603 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 604 | master = spi_alloc_master(dev, sizeof(struct mpc8xxx_spi)); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 605 | if (master == NULL) { |
| 606 | ret = -ENOMEM; |
| 607 | goto err; |
| 608 | } |
| 609 | |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 610 | dev_set_drvdata(dev, master); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 611 | |
Heiner Kallweit | c592bec | 2014-12-03 07:56:17 +0100 | [diff] [blame] | 612 | mpc8xxx_spi_probe(dev, mem, irq); |
David Brownell | e7db06b | 2009-06-17 16:26:04 -0700 | [diff] [blame] | 613 | |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 614 | master->setup = fsl_spi_setup; |
Andreas Larsson | 76a7498 | 2013-02-15 16:52:27 +0100 | [diff] [blame] | 615 | master->cleanup = fsl_spi_cleanup; |
Heiner Kallweit | c592bec | 2014-12-03 07:56:17 +0100 | [diff] [blame] | 616 | master->transfer_one_message = fsl_spi_do_one_msg; |
Linus Walleij | f1069049 | 2019-11-28 09:37:16 +0100 | [diff] [blame] | 617 | master->use_gpio_descriptors = true; |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 618 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 619 | mpc8xxx_spi = spi_master_get_devdata(master); |
Andreas Larsson | 8922a36 | 2013-02-15 16:52:25 +0100 | [diff] [blame] | 620 | mpc8xxx_spi->max_bits_per_word = 32; |
Andreas Larsson | c3f3e77 | 2013-02-15 16:52:24 +0100 | [diff] [blame] | 621 | mpc8xxx_spi->type = fsl_spi_get_type(dev); |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 622 | |
| 623 | ret = fsl_spi_cpm_init(mpc8xxx_spi); |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 624 | if (ret) |
| 625 | goto err_cpm_init; |
| 626 | |
Heiner Kallweit | 4178b6b | 2015-08-26 21:21:50 +0200 | [diff] [blame] | 627 | mpc8xxx_spi->reg_base = devm_ioremap_resource(dev, mem); |
Axel Lin | 37c5db7 | 2015-08-30 18:35:51 +0800 | [diff] [blame] | 628 | if (IS_ERR(mpc8xxx_spi->reg_base)) { |
| 629 | ret = PTR_ERR(mpc8xxx_spi->reg_base); |
Heiner Kallweit | 4178b6b | 2015-08-26 21:21:50 +0200 | [diff] [blame] | 630 | goto err_probe; |
Andreas Larsson | 447b0c7 | 2013-02-15 16:52:26 +0100 | [diff] [blame] | 631 | } |
| 632 | |
| 633 | if (mpc8xxx_spi->type == TYPE_GRLIB) |
| 634 | fsl_spi_grlib_probe(dev); |
| 635 | |
Axel Lin | f734394 | 2014-02-13 19:05:38 +0800 | [diff] [blame] | 636 | 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 Larsson | b48c4e3 | 2013-02-15 16:52:23 +0100 | [diff] [blame] | 640 | 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 Tjernlund | f29ba28 | 2007-07-17 04:04:12 -0700 | [diff] [blame] | 647 | |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 648 | /* Register for SPI Interrupt */ |
Heiner Kallweit | 4178b6b | 2015-08-26 21:21:50 +0200 | [diff] [blame] | 649 | ret = devm_request_irq(dev, mpc8xxx_spi->irq, fsl_spi_irq, |
| 650 | 0, "fsl_spi", mpc8xxx_spi); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 651 | |
| 652 | if (ret != 0) |
Heiner Kallweit | 4178b6b | 2015-08-26 21:21:50 +0200 | [diff] [blame] | 653 | goto err_probe; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 654 | |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 655 | reg_base = mpc8xxx_spi->reg_base; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 656 | |
| 657 | /* SPI controller initializations */ |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 658 | mpc8xxx_spi_write_reg(®_base->mode, 0); |
| 659 | mpc8xxx_spi_write_reg(®_base->mask, 0); |
| 660 | mpc8xxx_spi_write_reg(®_base->command, 0); |
| 661 | mpc8xxx_spi_write_reg(®_base->event, 0xffffffff); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 662 | |
| 663 | /* Enable SPI interface */ |
| 664 | regval = pdata->initial_spmode | SPMODE_INIT_VAL | SPMODE_ENABLE; |
Andreas Larsson | 8922a36 | 2013-02-15 16:52:25 +0100 | [diff] [blame] | 665 | 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 Vorontsov | 87ec0e9 | 2009-10-12 20:49:25 +0400 | [diff] [blame] | 669 | if (mpc8xxx_spi->flags & SPI_QE_CPU_MODE) |
Joakim Tjernlund | f29ba28 | 2007-07-17 04:04:12 -0700 | [diff] [blame] | 670 | regval |= SPMODE_OP; |
| 671 | |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 672 | mpc8xxx_spi_write_reg(®_base->mode, regval); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 673 | |
Heiner Kallweit | 4178b6b | 2015-08-26 21:21:50 +0200 | [diff] [blame] | 674 | ret = devm_spi_register_master(dev, master); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 675 | if (ret < 0) |
Heiner Kallweit | 4178b6b | 2015-08-26 21:21:50 +0200 | [diff] [blame] | 676 | goto err_probe; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 677 | |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 678 | dev_info(dev, "at 0x%p (irq = %d), %s mode\n", reg_base, |
Anton Vorontsov | 87ec0e9 | 2009-10-12 20:49:25 +0400 | [diff] [blame] | 679 | mpc8xxx_spi->irq, mpc8xxx_spi_strmode(mpc8xxx_spi->flags)); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 680 | |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 681 | return master; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 682 | |
Heiner Kallweit | 4178b6b | 2015-08-26 21:21:50 +0200 | [diff] [blame] | 683 | err_probe: |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 684 | fsl_spi_cpm_free(mpc8xxx_spi); |
Anton Vorontsov | 4c1fba44 | 2009-10-12 20:49:27 +0400 | [diff] [blame] | 685 | err_cpm_init: |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 686 | spi_master_put(master); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 687 | err: |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 688 | return ERR_PTR(ret); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 689 | } |
| 690 | |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 691 | static void fsl_spi_cs_control(struct spi_device *spi, bool on) |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 692 | { |
Linus Walleij | 0f0581b | 2019-08-04 02:35:39 +0200 | [diff] [blame] | 693 | if (spi->cs_gpiod) { |
| 694 | gpiod_set_value(spi->cs_gpiod, on); |
Rasmus Villemoes | 69b921a | 2019-03-06 10:32:05 +0000 | [diff] [blame] | 695 | } else { |
Linus Walleij | 0f0581b | 2019-08-04 02:35:39 +0200 | [diff] [blame] | 696 | 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 Villemoes | 69b921a | 2019-03-06 10:32:05 +0000 | [diff] [blame] | 701 | return; |
Rasmus Villemoes | 9d2aa6d | 2021-01-30 15:35:45 +0100 | [diff] [blame] | 702 | iowrite32be(on ? 0 : SPI_BOOT_SEL_BIT, pinfo->immr_spi_cs); |
Rasmus Villemoes | 69b921a | 2019-03-06 10:32:05 +0000 | [diff] [blame] | 703 | } |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 704 | } |
| 705 | |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 706 | static int of_fsl_spi_probe(struct platform_device *ofdev) |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 707 | { |
| 708 | struct device *dev = &ofdev->dev; |
Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 709 | struct device_node *np = ofdev->dev.of_node; |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 710 | struct spi_master *master; |
| 711 | struct resource mem; |
Christophe Leroy | 2f3d803 | 2020-01-14 16:02:40 +0000 | [diff] [blame] | 712 | int irq, type; |
| 713 | int ret; |
Yang Yingliang | 5fed9fe | 2021-04-01 22:03:50 +0800 | [diff] [blame] | 714 | bool spisel_boot = false; |
| 715 | #if IS_ENABLED(CONFIG_FSL_SOC) |
| 716 | struct mpc8xxx_spi_probe_info *pinfo = NULL; |
| 717 | #endif |
| 718 | |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 719 | |
Grant Likely | 18d306d | 2011-02-22 21:02:43 -0700 | [diff] [blame] | 720 | ret = of_mpc8xxx_spi_probe(ofdev); |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 721 | if (ret) |
| 722 | return ret; |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 723 | |
Andreas Larsson | 447b0c7 | 2013-02-15 16:52:26 +0100 | [diff] [blame] | 724 | type = fsl_spi_get_type(&ofdev->dev); |
| 725 | if (type == TYPE_FSL) { |
Linus Walleij | 0f0581b | 2019-08-04 02:35:39 +0200 | [diff] [blame] | 726 | struct fsl_spi_platform_data *pdata = dev_get_platdata(dev); |
| 727 | #if IS_ENABLED(CONFIG_FSL_SOC) |
Yang Yingliang | 5fed9fe | 2021-04-01 22:03:50 +0800 | [diff] [blame] | 728 | pinfo = to_of_pinfo(pdata); |
Linus Walleij | 0f0581b | 2019-08-04 02:35:39 +0200 | [diff] [blame] | 729 | |
Rasmus Villemoes | 122541f | 2020-11-27 16:29:47 +0100 | [diff] [blame] | 730 | spisel_boot = of_property_read_bool(np, "fsl,spisel_boot"); |
Linus Walleij | 0f0581b | 2019-08-04 02:35:39 +0200 | [diff] [blame] | 731 | if (spisel_boot) { |
| 732 | pinfo->immr_spi_cs = ioremap(get_immrbase() + IMMR_SPI_CS_OFFSET, 4); |
Christophe Leroy | 2f3d803 | 2020-01-14 16:02:40 +0000 | [diff] [blame] | 733 | if (!pinfo->immr_spi_cs) |
| 734 | return -ENOMEM; |
Linus Walleij | 0f0581b | 2019-08-04 02:35:39 +0200 | [diff] [blame] | 735 | } |
| 736 | #endif |
Linus Walleij | 7251953 | 2019-11-28 09:37:18 +0100 | [diff] [blame] | 737 | /* |
| 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 Villemoes | 122541f | 2020-11-27 16:29:47 +0100 | [diff] [blame] | 745 | if (ret < 0) |
| 746 | ret = 0; |
| 747 | if (ret == 0 && !spisel_boot) { |
Linus Walleij | 7251953 | 2019-11-28 09:37:18 +0100 | [diff] [blame] | 748 | pdata->max_chipselect = 1; |
Rasmus Villemoes | 122541f | 2020-11-27 16:29:47 +0100 | [diff] [blame] | 749 | } else { |
| 750 | pdata->max_chipselect = ret + spisel_boot; |
Linus Walleij | 7251953 | 2019-11-28 09:37:18 +0100 | [diff] [blame] | 751 | pdata->cs_control = fsl_spi_cs_control; |
Rasmus Villemoes | 122541f | 2020-11-27 16:29:47 +0100 | [diff] [blame] | 752 | } |
Andreas Larsson | 447b0c7 | 2013-02-15 16:52:26 +0100 | [diff] [blame] | 753 | } |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 754 | |
| 755 | ret = of_address_to_resource(np, 0, &mem); |
| 756 | if (ret) |
Yang Yingliang | 5fed9fe | 2021-04-01 22:03:50 +0800 | [diff] [blame] | 757 | goto unmap_out; |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 758 | |
Christophe Leroy | 63aa6a6 | 2019-12-12 17:47:24 +0000 | [diff] [blame] | 759 | irq = platform_get_irq(ofdev, 0); |
Yang Yingliang | 5fed9fe | 2021-04-01 22:03:50 +0800 | [diff] [blame] | 760 | if (irq < 0) { |
| 761 | ret = irq; |
| 762 | goto unmap_out; |
| 763 | } |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 764 | |
Andreas Larsson | e8beacb | 2013-02-15 16:52:21 +0100 | [diff] [blame] | 765 | master = fsl_spi_probe(dev, &mem, irq); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 766 | |
Christophe Leroy | 2f3d803 | 2020-01-14 16:02:40 +0000 | [diff] [blame] | 767 | return PTR_ERR_OR_ZERO(master); |
Yang Yingliang | 5fed9fe | 2021-04-01 22:03:50 +0800 | [diff] [blame] | 768 | |
| 769 | unmap_out: |
| 770 | #if IS_ENABLED(CONFIG_FSL_SOC) |
| 771 | if (spisel_boot) |
| 772 | iounmap(pinfo->immr_spi_cs); |
| 773 | #endif |
| 774 | return ret; |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 775 | } |
| 776 | |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 777 | static int of_fsl_spi_remove(struct platform_device *ofdev) |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 778 | { |
Jingoo Han | 24b5a82 | 2013-05-23 19:20:40 +0900 | [diff] [blame] | 779 | struct spi_master *master = platform_get_drvdata(ofdev); |
Andreas Larsson | 447b0c7 | 2013-02-15 16:52:26 +0100 | [diff] [blame] | 780 | struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(master); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 781 | |
Heiner Kallweit | 3c5395b | 2015-08-26 21:21:53 +0200 | [diff] [blame] | 782 | fsl_spi_cpm_free(mpc8xxx_spi); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 783 | return 0; |
| 784 | } |
| 785 | |
Grant Likely | 18d306d | 2011-02-22 21:02:43 -0700 | [diff] [blame] | 786 | static struct platform_driver of_fsl_spi_driver = { |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 787 | .driver = { |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 788 | .name = "fsl_spi", |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 789 | .of_match_table = of_fsl_spi_match, |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 790 | }, |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 791 | .probe = of_fsl_spi_probe, |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 792 | .remove = of_fsl_spi_remove, |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 793 | }; |
| 794 | |
| 795 | #ifdef CONFIG_MPC832x_RDB |
| 796 | /* |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 797 | * XXX XXX XXX |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 798 | * 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 Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 803 | static int plat_mpc8xxx_spi_probe(struct platform_device *pdev) |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 804 | { |
| 805 | struct resource *mem; |
Uwe Kleine-König | e9a172f | 2010-01-20 13:49:44 -0700 | [diff] [blame] | 806 | int irq; |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 807 | struct spi_master *master; |
| 808 | |
Jingoo Han | 8074cf0 | 2013-07-30 16:58:59 +0900 | [diff] [blame] | 809 | if (!dev_get_platdata(&pdev->dev)) |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 810 | 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önig | e9a172f | 2010-01-20 13:49:44 -0700 | [diff] [blame] | 817 | if (irq <= 0) |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 818 | return -EINVAL; |
| 819 | |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 820 | master = fsl_spi_probe(&pdev->dev, mem, irq); |
Rusty Russell | 8c6ffba | 2013-07-15 11:20:32 +0930 | [diff] [blame] | 821 | return PTR_ERR_OR_ZERO(master); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 822 | } |
| 823 | |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 824 | static int plat_mpc8xxx_spi_remove(struct platform_device *pdev) |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 825 | { |
Heiner Kallweit | 3c5395b | 2015-08-26 21:21:53 +0200 | [diff] [blame] | 826 | 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 Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 832 | } |
| 833 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 834 | MODULE_ALIAS("platform:mpc8xxx_spi"); |
| 835 | static struct platform_driver mpc8xxx_spi_driver = { |
| 836 | .probe = plat_mpc8xxx_spi_probe, |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 837 | .remove = plat_mpc8xxx_spi_remove, |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 838 | .driver = { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 839 | .name = "mpc8xxx_spi", |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 840 | }, |
| 841 | }; |
| 842 | |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 843 | static bool legacy_driver_failed; |
| 844 | |
| 845 | static void __init legacy_driver_register(void) |
| 846 | { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 847 | legacy_driver_failed = platform_driver_register(&mpc8xxx_spi_driver); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 848 | } |
| 849 | |
| 850 | static void __exit legacy_driver_unregister(void) |
| 851 | { |
| 852 | if (legacy_driver_failed) |
| 853 | return; |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 854 | platform_driver_unregister(&mpc8xxx_spi_driver); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 855 | } |
| 856 | #else |
| 857 | static void __init legacy_driver_register(void) {} |
| 858 | static void __exit legacy_driver_unregister(void) {} |
| 859 | #endif /* CONFIG_MPC832x_RDB */ |
| 860 | |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 861 | static int __init fsl_spi_init(void) |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 862 | { |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 863 | legacy_driver_register(); |
Grant Likely | 18d306d | 2011-02-22 21:02:43 -0700 | [diff] [blame] | 864 | return platform_driver_register(&of_fsl_spi_driver); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 865 | } |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 866 | module_init(fsl_spi_init); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 867 | |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 868 | static void __exit fsl_spi_exit(void) |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 869 | { |
Grant Likely | 18d306d | 2011-02-22 21:02:43 -0700 | [diff] [blame] | 870 | platform_driver_unregister(&of_fsl_spi_driver); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 871 | legacy_driver_unregister(); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 872 | } |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 873 | module_exit(fsl_spi_exit); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 874 | |
| 875 | MODULE_AUTHOR("Kumar Gala"); |
Mingkai Hu | b36ece8 | 2010-10-12 18:18:31 +0800 | [diff] [blame] | 876 | MODULE_DESCRIPTION("Simple Freescale SPI Driver"); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 877 | MODULE_LICENSE("GPL"); |