Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 2 | /* |
| 3 | * MPC512x PSC in SPI mode driver. |
| 4 | * |
| 5 | * Copyright (C) 2007,2008 Freescale Semiconductor Inc. |
| 6 | * Original port from 52xx driver: |
| 7 | * Hongjun Chen <hong-jun.chen@freescale.com> |
| 8 | * |
| 9 | * Fork of mpc52xx_psc_spi.c: |
| 10 | * Copyright (C) 2006 TOPTICA Photonics AG., Dragos Carp |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/kernel.h> |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 15 | #include <linux/errno.h> |
| 16 | #include <linux/interrupt.h> |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 17 | #include <linux/completion.h> |
| 18 | #include <linux/io.h> |
Rob Herring | 60a6c82 | 2023-02-17 14:45:42 -0600 | [diff] [blame] | 19 | #include <linux/platform_device.h> |
Andy Shevchenko | 289c084 | 2023-03-06 20:31:14 +0200 | [diff] [blame] | 20 | #include <linux/property.h> |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 21 | #include <linux/delay.h> |
| 22 | #include <linux/clk.h> |
| 23 | #include <linux/spi/spi.h> |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 24 | #include <asm/mpc52xx_psc.h> |
| 25 | |
Uwe Kleine-König | 8bf9609 | 2015-07-14 11:19:56 +0200 | [diff] [blame] | 26 | enum { |
| 27 | TYPE_MPC5121, |
| 28 | TYPE_MPC5125, |
| 29 | }; |
| 30 | |
| 31 | /* |
| 32 | * This macro abstracts the differences in the PSC register layout between |
| 33 | * MPC5121 (which uses a struct mpc52xx_psc) and MPC5125 (using mpc5125_psc). |
| 34 | */ |
| 35 | #define psc_addr(mps, regname) ({ \ |
Uwe Kleine-König | 1f2112a | 2015-07-21 10:30:42 +0200 | [diff] [blame] | 36 | void *__ret = NULL; \ |
| 37 | switch (mps->type) { \ |
Uwe Kleine-König | 8bf9609 | 2015-07-14 11:19:56 +0200 | [diff] [blame] | 38 | case TYPE_MPC5121: { \ |
| 39 | struct mpc52xx_psc __iomem *psc = mps->psc; \ |
| 40 | __ret = &psc->regname; \ |
| 41 | }; \ |
| 42 | break; \ |
| 43 | case TYPE_MPC5125: { \ |
| 44 | struct mpc5125_psc __iomem *psc = mps->psc; \ |
| 45 | __ret = &psc->regname; \ |
| 46 | }; \ |
| 47 | break; \ |
| 48 | } \ |
| 49 | __ret; }) |
| 50 | |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 51 | struct mpc512x_psc_spi { |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 52 | /* driver internal data */ |
Uwe Kleine-König | 8bf9609 | 2015-07-14 11:19:56 +0200 | [diff] [blame] | 53 | int type; |
| 54 | void __iomem *psc; |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 55 | struct mpc512x_psc_fifo __iomem *fifo; |
| 56 | unsigned int irq; |
| 57 | u8 bits_per_word; |
Gerhard Sittig | a81a509 | 2013-08-06 22:43:41 +0200 | [diff] [blame] | 58 | u32 mclk_rate; |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 59 | |
Gerhard Sittig | c36e93a | 2013-06-03 14:03:49 +0200 | [diff] [blame] | 60 | struct completion txisrdone; |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 61 | }; |
| 62 | |
| 63 | /* controller state */ |
| 64 | struct mpc512x_psc_spi_cs { |
| 65 | int bits_per_word; |
| 66 | int speed_hz; |
| 67 | }; |
| 68 | |
| 69 | /* set clock freq, clock ramp, bits per work |
| 70 | * if t is NULL then reset the values to the default values |
| 71 | */ |
| 72 | static int mpc512x_psc_spi_transfer_setup(struct spi_device *spi, |
| 73 | struct spi_transfer *t) |
| 74 | { |
| 75 | struct mpc512x_psc_spi_cs *cs = spi->controller_state; |
| 76 | |
| 77 | cs->speed_hz = (t && t->speed_hz) |
| 78 | ? t->speed_hz : spi->max_speed_hz; |
| 79 | cs->bits_per_word = (t && t->bits_per_word) |
| 80 | ? t->bits_per_word : spi->bits_per_word; |
| 81 | cs->bits_per_word = ((cs->bits_per_word + 7) / 8) * 8; |
| 82 | return 0; |
| 83 | } |
| 84 | |
| 85 | static void mpc512x_psc_spi_activate_cs(struct spi_device *spi) |
| 86 | { |
| 87 | struct mpc512x_psc_spi_cs *cs = spi->controller_state; |
| 88 | struct mpc512x_psc_spi *mps = spi_master_get_devdata(spi->master); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 89 | u32 sicr; |
| 90 | u32 ccr; |
Gerhard Sittig | a81a509 | 2013-08-06 22:43:41 +0200 | [diff] [blame] | 91 | int speed; |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 92 | u16 bclkdiv; |
| 93 | |
Uwe Kleine-König | 8bf9609 | 2015-07-14 11:19:56 +0200 | [diff] [blame] | 94 | sicr = in_be32(psc_addr(mps, sicr)); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 95 | |
| 96 | /* Set clock phase and polarity */ |
| 97 | if (spi->mode & SPI_CPHA) |
| 98 | sicr |= 0x00001000; |
| 99 | else |
| 100 | sicr &= ~0x00001000; |
| 101 | |
| 102 | if (spi->mode & SPI_CPOL) |
| 103 | sicr |= 0x00002000; |
| 104 | else |
| 105 | sicr &= ~0x00002000; |
| 106 | |
| 107 | if (spi->mode & SPI_LSB_FIRST) |
| 108 | sicr |= 0x10000000; |
| 109 | else |
| 110 | sicr &= ~0x10000000; |
Uwe Kleine-König | 8bf9609 | 2015-07-14 11:19:56 +0200 | [diff] [blame] | 111 | out_be32(psc_addr(mps, sicr), sicr); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 112 | |
Uwe Kleine-König | 8bf9609 | 2015-07-14 11:19:56 +0200 | [diff] [blame] | 113 | ccr = in_be32(psc_addr(mps, ccr)); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 114 | ccr &= 0xFF000000; |
Gerhard Sittig | a81a509 | 2013-08-06 22:43:41 +0200 | [diff] [blame] | 115 | speed = cs->speed_hz; |
| 116 | if (!speed) |
| 117 | speed = 1000000; /* default 1MHz */ |
| 118 | bclkdiv = (mps->mclk_rate / speed) - 1; |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 119 | |
| 120 | ccr |= (((bclkdiv & 0xff) << 16) | (((bclkdiv >> 8) & 0xff) << 8)); |
Uwe Kleine-König | 8bf9609 | 2015-07-14 11:19:56 +0200 | [diff] [blame] | 121 | out_be32(psc_addr(mps, ccr), ccr); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 122 | mps->bits_per_word = cs->bits_per_word; |
| 123 | |
Amit Kumar Mahapatra via Alsa-devel | 9e264f3f | 2023-03-10 23:02:03 +0530 | [diff] [blame] | 124 | if (spi_get_csgpiod(spi, 0)) { |
Rob Herring | 0472590 | 2023-02-17 14:45:40 -0600 | [diff] [blame] | 125 | /* gpiolib will deal with the inversion */ |
Amit Kumar Mahapatra via Alsa-devel | 9e264f3f | 2023-03-10 23:02:03 +0530 | [diff] [blame] | 126 | gpiod_set_value(spi_get_csgpiod(spi, 0), 1); |
Linus Walleij | 2818824 | 2022-01-20 01:26:00 +0100 | [diff] [blame] | 127 | } |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | static void mpc512x_psc_spi_deactivate_cs(struct spi_device *spi) |
| 131 | { |
Amit Kumar Mahapatra via Alsa-devel | 9e264f3f | 2023-03-10 23:02:03 +0530 | [diff] [blame] | 132 | if (spi_get_csgpiod(spi, 0)) { |
Rob Herring | 0472590 | 2023-02-17 14:45:40 -0600 | [diff] [blame] | 133 | /* gpiolib will deal with the inversion */ |
Amit Kumar Mahapatra via Alsa-devel | 9e264f3f | 2023-03-10 23:02:03 +0530 | [diff] [blame] | 134 | gpiod_set_value(spi_get_csgpiod(spi, 0), 0); |
Linus Walleij | 2818824 | 2022-01-20 01:26:00 +0100 | [diff] [blame] | 135 | } |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | /* extract and scale size field in txsz or rxsz */ |
| 139 | #define MPC512x_PSC_FIFO_SZ(sz) ((sz & 0x7ff) << 2); |
| 140 | |
| 141 | #define EOFBYTE 1 |
| 142 | |
| 143 | static int mpc512x_psc_spi_transfer_rxtx(struct spi_device *spi, |
| 144 | struct spi_transfer *t) |
| 145 | { |
| 146 | struct mpc512x_psc_spi *mps = spi_master_get_devdata(spi->master); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 147 | struct mpc512x_psc_fifo __iomem *fifo = mps->fifo; |
Gerhard Sittig | c36e93a | 2013-06-03 14:03:49 +0200 | [diff] [blame] | 148 | size_t tx_len = t->len; |
Gerhard Sittig | 5df24ea | 2013-06-03 14:03:50 +0200 | [diff] [blame] | 149 | size_t rx_len = t->len; |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 150 | u8 *tx_buf = (u8 *)t->tx_buf; |
| 151 | u8 *rx_buf = (u8 *)t->rx_buf; |
| 152 | |
| 153 | if (!tx_buf && !rx_buf && t->len) |
| 154 | return -EINVAL; |
| 155 | |
Gerhard Sittig | 5df24ea | 2013-06-03 14:03:50 +0200 | [diff] [blame] | 156 | while (rx_len || tx_len) { |
Gerhard Sittig | c36e93a | 2013-06-03 14:03:49 +0200 | [diff] [blame] | 157 | size_t txcount; |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 158 | u8 data; |
| 159 | size_t fifosz; |
Gerhard Sittig | c36e93a | 2013-06-03 14:03:49 +0200 | [diff] [blame] | 160 | size_t rxcount; |
Gerhard Sittig | 5df24ea | 2013-06-03 14:03:50 +0200 | [diff] [blame] | 161 | int rxtries; |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 162 | |
| 163 | /* |
Gerhard Sittig | 5df24ea | 2013-06-03 14:03:50 +0200 | [diff] [blame] | 164 | * send the TX bytes in as large a chunk as possible |
| 165 | * but neither exceed the TX nor the RX FIFOs |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 166 | */ |
| 167 | fifosz = MPC512x_PSC_FIFO_SZ(in_be32(&fifo->txsz)); |
Gerhard Sittig | c36e93a | 2013-06-03 14:03:49 +0200 | [diff] [blame] | 168 | txcount = min(fifosz, tx_len); |
Gerhard Sittig | 5df24ea | 2013-06-03 14:03:50 +0200 | [diff] [blame] | 169 | fifosz = MPC512x_PSC_FIFO_SZ(in_be32(&fifo->rxsz)); |
| 170 | fifosz -= in_be32(&fifo->rxcnt) + 1; |
| 171 | txcount = min(fifosz, txcount); |
| 172 | if (txcount) { |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 173 | |
Gerhard Sittig | 5df24ea | 2013-06-03 14:03:50 +0200 | [diff] [blame] | 174 | /* fill the TX FIFO */ |
| 175 | while (txcount-- > 0) { |
| 176 | data = tx_buf ? *tx_buf++ : 0; |
| 177 | if (tx_len == EOFBYTE && t->cs_change) |
| 178 | setbits32(&fifo->txcmd, |
| 179 | MPC512x_PSC_FIFO_EOF); |
| 180 | out_8(&fifo->txdata_8, data); |
| 181 | tx_len--; |
| 182 | } |
| 183 | |
| 184 | /* have the ISR trigger when the TX FIFO is empty */ |
Wolfram Sang | 16735d0 | 2013-11-14 14:32:02 -0800 | [diff] [blame] | 185 | reinit_completion(&mps->txisrdone); |
Gerhard Sittig | 5df24ea | 2013-06-03 14:03:50 +0200 | [diff] [blame] | 186 | out_be32(&fifo->txisr, MPC512x_PSC_FIFO_EMPTY); |
| 187 | out_be32(&fifo->tximr, MPC512x_PSC_FIFO_EMPTY); |
| 188 | wait_for_completion(&mps->txisrdone); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 189 | } |
| 190 | |
Gerhard Sittig | 5df24ea | 2013-06-03 14:03:50 +0200 | [diff] [blame] | 191 | /* |
| 192 | * consume as much RX data as the FIFO holds, while we |
| 193 | * iterate over the transfer's TX data length |
| 194 | * |
| 195 | * only insist in draining all the remaining RX bytes |
| 196 | * when the TX bytes were exhausted (that's at the very |
| 197 | * end of this transfer, not when still iterating over |
| 198 | * the transfer's chunks) |
| 199 | */ |
| 200 | rxtries = 50; |
| 201 | do { |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 202 | |
Gerhard Sittig | 5df24ea | 2013-06-03 14:03:50 +0200 | [diff] [blame] | 203 | /* |
| 204 | * grab whatever was in the FIFO when we started |
| 205 | * looking, don't bother fetching what was added to |
| 206 | * the FIFO while we read from it -- we'll return |
| 207 | * here eventually and prefer sending out remaining |
| 208 | * TX data |
| 209 | */ |
| 210 | fifosz = in_be32(&fifo->rxcnt); |
| 211 | rxcount = min(fifosz, rx_len); |
| 212 | while (rxcount-- > 0) { |
| 213 | data = in_8(&fifo->rxdata_8); |
| 214 | if (rx_buf) |
| 215 | *rx_buf++ = data; |
| 216 | rx_len--; |
| 217 | } |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 218 | |
Gerhard Sittig | 5df24ea | 2013-06-03 14:03:50 +0200 | [diff] [blame] | 219 | /* |
| 220 | * come back later if there still is TX data to send, |
| 221 | * bail out of the RX drain loop if all of the TX data |
| 222 | * was sent and all of the RX data was received (i.e. |
| 223 | * when the transmission has completed) |
| 224 | */ |
| 225 | if (tx_len) |
| 226 | break; |
| 227 | if (!rx_len) |
| 228 | break; |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 229 | |
Gerhard Sittig | 5df24ea | 2013-06-03 14:03:50 +0200 | [diff] [blame] | 230 | /* |
| 231 | * TX data transmission has completed while RX data |
| 232 | * is still pending -- that's a transient situation |
| 233 | * which depends on wire speed and specific |
| 234 | * hardware implementation details (buffering) yet |
| 235 | * should resolve very quickly |
| 236 | * |
| 237 | * just yield for a moment to not hog the CPU for |
| 238 | * too long when running SPI at low speed |
| 239 | * |
| 240 | * the timeout range is rather arbitrary and tries |
| 241 | * to balance throughput against system load; the |
| 242 | * chosen values result in a minimal timeout of 50 |
| 243 | * times 10us and thus work at speeds as low as |
| 244 | * some 20kbps, while the maximum timeout at the |
| 245 | * transfer's end could be 5ms _if_ nothing else |
| 246 | * ticks in the system _and_ RX data still wasn't |
| 247 | * received, which only occurs in situations that |
| 248 | * are exceptional; removing the unpredictability |
| 249 | * of the timeout either decreases throughput |
| 250 | * (longer timeouts), or puts more load on the |
| 251 | * system (fixed short timeouts) or requires the |
| 252 | * use of a timeout API instead of a counter and an |
| 253 | * unknown inner delay |
| 254 | */ |
| 255 | usleep_range(10, 100); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 256 | |
Gerhard Sittig | 5df24ea | 2013-06-03 14:03:50 +0200 | [diff] [blame] | 257 | } while (--rxtries > 0); |
| 258 | if (!tx_len && rx_len && !rxtries) { |
| 259 | /* |
| 260 | * not enough RX bytes even after several retries |
| 261 | * and the resulting rather long timeout? |
| 262 | */ |
| 263 | rxcount = in_be32(&fifo->rxcnt); |
| 264 | dev_warn(&spi->dev, |
| 265 | "short xfer, missing %zd RX bytes, FIFO level %zd\n", |
| 266 | rx_len, rxcount); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 267 | } |
| 268 | |
Gerhard Sittig | 5df24ea | 2013-06-03 14:03:50 +0200 | [diff] [blame] | 269 | /* |
| 270 | * drain and drop RX data which "should not be there" in |
| 271 | * the first place, for undisturbed transmission this turns |
| 272 | * into a NOP (except for the FIFO level fetch) |
| 273 | */ |
| 274 | if (!tx_len && !rx_len) { |
| 275 | while (in_be32(&fifo->rxcnt)) |
| 276 | in_8(&fifo->rxdata_8); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 277 | } |
Gerhard Sittig | 5df24ea | 2013-06-03 14:03:50 +0200 | [diff] [blame] | 278 | |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 279 | } |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 280 | return 0; |
| 281 | } |
| 282 | |
Gerhard Sittig | 8508589 | 2013-06-03 14:03:51 +0200 | [diff] [blame] | 283 | static int mpc512x_psc_spi_msg_xfer(struct spi_master *master, |
| 284 | struct spi_message *m) |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 285 | { |
Gerhard Sittig | 8508589 | 2013-06-03 14:03:51 +0200 | [diff] [blame] | 286 | struct spi_device *spi; |
| 287 | unsigned cs_change; |
| 288 | int status; |
| 289 | struct spi_transfer *t; |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 290 | |
Gerhard Sittig | 8508589 | 2013-06-03 14:03:51 +0200 | [diff] [blame] | 291 | spi = m->spi; |
| 292 | cs_change = 1; |
| 293 | status = 0; |
| 294 | list_for_each_entry(t, &m->transfers, transfer_list) { |
Jarkko Nikula | 85c1912 | 2015-09-15 16:26:19 +0300 | [diff] [blame] | 295 | status = mpc512x_psc_spi_transfer_setup(spi, t); |
| 296 | if (status < 0) |
| 297 | break; |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 298 | |
Gerhard Sittig | 8508589 | 2013-06-03 14:03:51 +0200 | [diff] [blame] | 299 | if (cs_change) |
| 300 | mpc512x_psc_spi_activate_cs(spi); |
| 301 | cs_change = t->cs_change; |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 302 | |
Gerhard Sittig | 8508589 | 2013-06-03 14:03:51 +0200 | [diff] [blame] | 303 | status = mpc512x_psc_spi_transfer_rxtx(spi, t); |
| 304 | if (status) |
| 305 | break; |
| 306 | m->actual_length += t->len; |
| 307 | |
Alexandru Ardelean | e74dc5c | 2019-09-26 13:51:37 +0300 | [diff] [blame] | 308 | spi_transfer_delay_exec(t); |
Gerhard Sittig | 8508589 | 2013-06-03 14:03:51 +0200 | [diff] [blame] | 309 | |
| 310 | if (cs_change) |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 311 | mpc512x_psc_spi_deactivate_cs(spi); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 312 | } |
Gerhard Sittig | 8508589 | 2013-06-03 14:03:51 +0200 | [diff] [blame] | 313 | |
| 314 | m->status = status; |
Axel Lin | 0a6d387 | 2014-04-02 22:21:04 +0800 | [diff] [blame] | 315 | if (m->complete) |
| 316 | m->complete(m->context); |
Gerhard Sittig | 8508589 | 2013-06-03 14:03:51 +0200 | [diff] [blame] | 317 | |
| 318 | if (status || !cs_change) |
| 319 | mpc512x_psc_spi_deactivate_cs(spi); |
| 320 | |
| 321 | mpc512x_psc_spi_transfer_setup(spi, NULL); |
| 322 | |
| 323 | spi_finalize_current_message(master); |
| 324 | return status; |
| 325 | } |
| 326 | |
| 327 | static int mpc512x_psc_spi_prep_xfer_hw(struct spi_master *master) |
| 328 | { |
| 329 | struct mpc512x_psc_spi *mps = spi_master_get_devdata(master); |
Gerhard Sittig | 8508589 | 2013-06-03 14:03:51 +0200 | [diff] [blame] | 330 | |
| 331 | dev_dbg(&master->dev, "%s()\n", __func__); |
| 332 | |
| 333 | /* Zero MR2 */ |
Uwe Kleine-König | 8bf9609 | 2015-07-14 11:19:56 +0200 | [diff] [blame] | 334 | in_8(psc_addr(mps, mr2)); |
| 335 | out_8(psc_addr(mps, mr2), 0x0); |
Gerhard Sittig | 8508589 | 2013-06-03 14:03:51 +0200 | [diff] [blame] | 336 | |
| 337 | /* enable transmitter/receiver */ |
Uwe Kleine-König | 8bf9609 | 2015-07-14 11:19:56 +0200 | [diff] [blame] | 338 | out_8(psc_addr(mps, command), MPC52xx_PSC_TX_ENABLE | MPC52xx_PSC_RX_ENABLE); |
Gerhard Sittig | 8508589 | 2013-06-03 14:03:51 +0200 | [diff] [blame] | 339 | |
| 340 | return 0; |
| 341 | } |
| 342 | |
| 343 | static int mpc512x_psc_spi_unprep_xfer_hw(struct spi_master *master) |
| 344 | { |
| 345 | struct mpc512x_psc_spi *mps = spi_master_get_devdata(master); |
Gerhard Sittig | 8508589 | 2013-06-03 14:03:51 +0200 | [diff] [blame] | 346 | struct mpc512x_psc_fifo __iomem *fifo = mps->fifo; |
| 347 | |
| 348 | dev_dbg(&master->dev, "%s()\n", __func__); |
| 349 | |
| 350 | /* disable transmitter/receiver and fifo interrupt */ |
Uwe Kleine-König | 8bf9609 | 2015-07-14 11:19:56 +0200 | [diff] [blame] | 351 | out_8(psc_addr(mps, command), MPC52xx_PSC_TX_DISABLE | MPC52xx_PSC_RX_DISABLE); |
Gerhard Sittig | 8508589 | 2013-06-03 14:03:51 +0200 | [diff] [blame] | 352 | out_be32(&fifo->tximr, 0); |
| 353 | |
| 354 | return 0; |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 355 | } |
| 356 | |
| 357 | static int mpc512x_psc_spi_setup(struct spi_device *spi) |
| 358 | { |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 359 | struct mpc512x_psc_spi_cs *cs = spi->controller_state; |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 360 | |
| 361 | if (spi->bits_per_word % 8) |
| 362 | return -EINVAL; |
| 363 | |
| 364 | if (!cs) { |
Zhiqi Song | 722cb2b | 2021-05-18 09:38:17 +0800 | [diff] [blame] | 365 | cs = kzalloc(sizeof(*cs), GFP_KERNEL); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 366 | if (!cs) |
| 367 | return -ENOMEM; |
Anatolij Gustschin | 86e9874 | 2013-04-01 17:29:21 +0200 | [diff] [blame] | 368 | |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 369 | spi->controller_state = cs; |
| 370 | } |
| 371 | |
| 372 | cs->bits_per_word = spi->bits_per_word; |
| 373 | cs->speed_hz = spi->max_speed_hz; |
| 374 | |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 375 | return 0; |
| 376 | } |
| 377 | |
| 378 | static void mpc512x_psc_spi_cleanup(struct spi_device *spi) |
| 379 | { |
| 380 | kfree(spi->controller_state); |
| 381 | } |
| 382 | |
| 383 | static int mpc512x_psc_spi_port_config(struct spi_master *master, |
| 384 | struct mpc512x_psc_spi *mps) |
| 385 | { |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 386 | struct mpc512x_psc_fifo __iomem *fifo = mps->fifo; |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 387 | u32 sicr; |
| 388 | u32 ccr; |
Gerhard Sittig | a81a509 | 2013-08-06 22:43:41 +0200 | [diff] [blame] | 389 | int speed; |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 390 | u16 bclkdiv; |
| 391 | |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 392 | /* Reset the PSC into a known state */ |
Uwe Kleine-König | 8bf9609 | 2015-07-14 11:19:56 +0200 | [diff] [blame] | 393 | out_8(psc_addr(mps, command), MPC52xx_PSC_RST_RX); |
| 394 | out_8(psc_addr(mps, command), MPC52xx_PSC_RST_TX); |
| 395 | out_8(psc_addr(mps, command), MPC52xx_PSC_TX_DISABLE | MPC52xx_PSC_RX_DISABLE); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 396 | |
| 397 | /* Disable psc interrupts all useful interrupts are in fifo */ |
Uwe Kleine-König | 8bf9609 | 2015-07-14 11:19:56 +0200 | [diff] [blame] | 398 | out_be16(psc_addr(mps, isr_imr.imr), 0); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 399 | |
| 400 | /* Disable fifo interrupts, will be enabled later */ |
| 401 | out_be32(&fifo->tximr, 0); |
| 402 | out_be32(&fifo->rximr, 0); |
| 403 | |
| 404 | /* Setup fifo slice address and size */ |
| 405 | /*out_be32(&fifo->txsz, 0x0fe00004);*/ |
| 406 | /*out_be32(&fifo->rxsz, 0x0ff00004);*/ |
| 407 | |
| 408 | sicr = 0x01000000 | /* SIM = 0001 -- 8 bit */ |
| 409 | 0x00800000 | /* GenClk = 1 -- internal clk */ |
| 410 | 0x00008000 | /* SPI = 1 */ |
| 411 | 0x00004000 | /* MSTR = 1 -- SPI master */ |
| 412 | 0x00000800; /* UseEOF = 1 -- SS low until EOF */ |
| 413 | |
Uwe Kleine-König | 8bf9609 | 2015-07-14 11:19:56 +0200 | [diff] [blame] | 414 | out_be32(psc_addr(mps, sicr), sicr); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 415 | |
Uwe Kleine-König | 8bf9609 | 2015-07-14 11:19:56 +0200 | [diff] [blame] | 416 | ccr = in_be32(psc_addr(mps, ccr)); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 417 | ccr &= 0xFF000000; |
Gerhard Sittig | a81a509 | 2013-08-06 22:43:41 +0200 | [diff] [blame] | 418 | speed = 1000000; /* default 1MHz */ |
| 419 | bclkdiv = (mps->mclk_rate / speed) - 1; |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 420 | ccr |= (((bclkdiv & 0xff) << 16) | (((bclkdiv >> 8) & 0xff) << 8)); |
Uwe Kleine-König | 8bf9609 | 2015-07-14 11:19:56 +0200 | [diff] [blame] | 421 | out_be32(psc_addr(mps, ccr), ccr); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 422 | |
| 423 | /* Set 2ms DTL delay */ |
Uwe Kleine-König | 8bf9609 | 2015-07-14 11:19:56 +0200 | [diff] [blame] | 424 | out_8(psc_addr(mps, ctur), 0x00); |
| 425 | out_8(psc_addr(mps, ctlr), 0x82); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 426 | |
| 427 | /* we don't use the alarms */ |
| 428 | out_be32(&fifo->rxalarm, 0xfff); |
| 429 | out_be32(&fifo->txalarm, 0); |
| 430 | |
| 431 | /* Enable FIFO slices for Rx/Tx */ |
| 432 | out_be32(&fifo->rxcmd, |
| 433 | MPC512x_PSC_FIFO_ENABLE_SLICE | MPC512x_PSC_FIFO_ENABLE_DMA); |
| 434 | out_be32(&fifo->txcmd, |
| 435 | MPC512x_PSC_FIFO_ENABLE_SLICE | MPC512x_PSC_FIFO_ENABLE_DMA); |
| 436 | |
| 437 | mps->bits_per_word = 8; |
| 438 | |
Gerhard Sittig | a81a509 | 2013-08-06 22:43:41 +0200 | [diff] [blame] | 439 | return 0; |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 440 | } |
| 441 | |
| 442 | static irqreturn_t mpc512x_psc_spi_isr(int irq, void *dev_id) |
| 443 | { |
| 444 | struct mpc512x_psc_spi *mps = (struct mpc512x_psc_spi *)dev_id; |
| 445 | struct mpc512x_psc_fifo __iomem *fifo = mps->fifo; |
| 446 | |
Gerhard Sittig | 8508589 | 2013-06-03 14:03:51 +0200 | [diff] [blame] | 447 | /* clear interrupt and wake up the rx/tx routine */ |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 448 | if (in_be32(&fifo->txisr) & |
| 449 | in_be32(&fifo->tximr) & MPC512x_PSC_FIFO_EMPTY) { |
| 450 | out_be32(&fifo->txisr, MPC512x_PSC_FIFO_EMPTY); |
| 451 | out_be32(&fifo->tximr, 0); |
Gerhard Sittig | c36e93a | 2013-06-03 14:03:49 +0200 | [diff] [blame] | 452 | complete(&mps->txisrdone); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 453 | return IRQ_HANDLED; |
| 454 | } |
| 455 | return IRQ_NONE; |
| 456 | } |
| 457 | |
Rob Herring | 60a6c82 | 2023-02-17 14:45:42 -0600 | [diff] [blame] | 458 | static int mpc512x_psc_spi_of_probe(struct platform_device *pdev) |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 459 | { |
Rob Herring | 60a6c82 | 2023-02-17 14:45:42 -0600 | [diff] [blame] | 460 | struct device *dev = &pdev->dev; |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 461 | struct mpc512x_psc_spi *mps; |
| 462 | struct spi_master *master; |
| 463 | int ret; |
| 464 | void *tempp; |
Gerhard Sittig | a81a509 | 2013-08-06 22:43:41 +0200 | [diff] [blame] | 465 | struct clk *clk; |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 466 | |
Rob Herring | 0160233 | 2023-02-17 14:45:41 -0600 | [diff] [blame] | 467 | master = devm_spi_alloc_master(dev, sizeof(*mps)); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 468 | if (master == NULL) |
| 469 | return -ENOMEM; |
| 470 | |
| 471 | dev_set_drvdata(dev, master); |
| 472 | mps = spi_master_get_devdata(master); |
Rob Herring | 60a6c82 | 2023-02-17 14:45:42 -0600 | [diff] [blame] | 473 | mps->type = (int)device_get_match_data(dev); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 474 | |
Anatolij Gustschin | c88dd34 | 2013-01-14 21:27:00 +0100 | [diff] [blame] | 475 | master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH | SPI_LSB_FIRST; |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 476 | master->setup = mpc512x_psc_spi_setup; |
Gerhard Sittig | 8508589 | 2013-06-03 14:03:51 +0200 | [diff] [blame] | 477 | master->prepare_transfer_hardware = mpc512x_psc_spi_prep_xfer_hw; |
| 478 | master->transfer_one_message = mpc512x_psc_spi_msg_xfer; |
| 479 | master->unprepare_transfer_hardware = mpc512x_psc_spi_unprep_xfer_hw; |
Linus Walleij | 2818824 | 2022-01-20 01:26:00 +0100 | [diff] [blame] | 480 | master->use_gpio_descriptors = true; |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 481 | master->cleanup = mpc512x_psc_spi_cleanup; |
Andy Shevchenko | 289c084 | 2023-03-06 20:31:14 +0200 | [diff] [blame] | 482 | |
| 483 | device_set_node(&master->dev, dev_fwnode(dev)); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 484 | |
Rob Herring | 60a6c82 | 2023-02-17 14:45:42 -0600 | [diff] [blame] | 485 | tempp = devm_platform_get_and_ioremap_resource(pdev, 0, NULL); |
Andy Shevchenko | ee493fa | 2023-03-06 20:31:11 +0200 | [diff] [blame] | 486 | if (IS_ERR(tempp)) |
| 487 | return dev_err_probe(dev, PTR_ERR(tempp), "could not ioremap I/O port range\n"); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 488 | mps->psc = tempp; |
| 489 | mps->fifo = |
| 490 | (struct mpc512x_psc_fifo *)(tempp + sizeof(struct mpc52xx_psc)); |
Rob Herring | 60a6c82 | 2023-02-17 14:45:42 -0600 | [diff] [blame] | 491 | |
| 492 | mps->irq = platform_get_irq(pdev, 0); |
Andy Shevchenko | 208ee58 | 2023-03-06 20:31:12 +0200 | [diff] [blame] | 493 | if (mps->irq < 0) |
| 494 | return mps->irq; |
| 495 | |
Jingoo Han | e1d0cd4 | 2013-12-18 10:31:15 +0900 | [diff] [blame] | 496 | ret = devm_request_irq(dev, mps->irq, mpc512x_psc_spi_isr, IRQF_SHARED, |
| 497 | "mpc512x-psc-spi", mps); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 498 | if (ret) |
Rob Herring | 0160233 | 2023-02-17 14:45:41 -0600 | [diff] [blame] | 499 | return ret; |
Gerhard Sittig | 8508589 | 2013-06-03 14:03:51 +0200 | [diff] [blame] | 500 | init_completion(&mps->txisrdone); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 501 | |
Andy Shevchenko | 9e21720 | 2023-03-06 20:31:13 +0200 | [diff] [blame] | 502 | clk = devm_clk_get_enabled(dev, "mclk"); |
Rob Herring | 0160233 | 2023-02-17 14:45:41 -0600 | [diff] [blame] | 503 | if (IS_ERR(clk)) |
| 504 | return PTR_ERR(clk); |
| 505 | |
Gerhard Sittig | a81a509 | 2013-08-06 22:43:41 +0200 | [diff] [blame] | 506 | mps->mclk_rate = clk_get_rate(clk); |
| 507 | |
Andy Shevchenko | 9e21720 | 2023-03-06 20:31:13 +0200 | [diff] [blame] | 508 | clk = devm_clk_get_enabled(dev, "ipg"); |
| 509 | if (IS_ERR(clk)) |
| 510 | return PTR_ERR(clk); |
Gerhard Sittig | dff148a | 2013-11-30 23:51:28 +0100 | [diff] [blame] | 511 | |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 512 | ret = mpc512x_psc_spi_port_config(master, mps); |
| 513 | if (ret < 0) |
Andy Shevchenko | 21d19e6 | 2023-03-10 13:15:44 +0200 | [diff] [blame] | 514 | return ret; |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 515 | |
Andy Shevchenko | 21d19e6 | 2023-03-10 13:15:44 +0200 | [diff] [blame] | 516 | return devm_spi_register_master(dev, master); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 517 | } |
| 518 | |
Fabian Frederick | 0935540 | 2015-03-16 20:20:31 +0100 | [diff] [blame] | 519 | static const struct of_device_id mpc512x_psc_spi_of_match[] = { |
Uwe Kleine-König | 8bf9609 | 2015-07-14 11:19:56 +0200 | [diff] [blame] | 520 | { .compatible = "fsl,mpc5121-psc-spi", .data = (void *)TYPE_MPC5121 }, |
| 521 | { .compatible = "fsl,mpc5125-psc-spi", .data = (void *)TYPE_MPC5125 }, |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 522 | {}, |
| 523 | }; |
| 524 | |
| 525 | MODULE_DEVICE_TABLE(of, mpc512x_psc_spi_of_match); |
| 526 | |
Grant Likely | 18d306d | 2011-02-22 21:02:43 -0700 | [diff] [blame] | 527 | static struct platform_driver mpc512x_psc_spi_of_driver = { |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 528 | .probe = mpc512x_psc_spi_of_probe, |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 529 | .driver = { |
| 530 | .name = "mpc512x-psc-spi", |
Anatolij Gustschin | ef7f2e8 | 2010-05-31 18:34:54 +0200 | [diff] [blame] | 531 | .of_match_table = mpc512x_psc_spi_of_match, |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 532 | }, |
| 533 | }; |
Grant Likely | 940ab88 | 2011-10-05 11:29:49 -0600 | [diff] [blame] | 534 | module_platform_driver(mpc512x_psc_spi_of_driver); |
Anatolij Gustschin | 6e27388f1b | 2010-04-30 13:21:27 +0000 | [diff] [blame] | 535 | |
| 536 | MODULE_AUTHOR("John Rigby"); |
| 537 | MODULE_DESCRIPTION("MPC512x PSC SPI Driver"); |
| 538 | MODULE_LICENSE("GPL"); |