Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Freescale MXS SPI master driver |
| 3 | * |
| 4 | * Copyright 2012 DENX Software Engineering, GmbH. |
| 5 | * Copyright 2012 Freescale Semiconductor, Inc. |
| 6 | * Copyright 2008 Embedded Alley Solutions, Inc All Rights Reserved. |
| 7 | * |
| 8 | * Rework and transition to new API by: |
| 9 | * Marek Vasut <marex@denx.de> |
| 10 | * |
| 11 | * Based on previous attempt by: |
| 12 | * Fabio Estevam <fabio.estevam@freescale.com> |
| 13 | * |
| 14 | * Based on code from U-Boot bootloader by: |
| 15 | * Marek Vasut <marex@denx.de> |
| 16 | * |
| 17 | * Based on spi-stmp.c, which is: |
| 18 | * Author: Dmitry Pervushin <dimka@embeddedalley.com> |
| 19 | * |
| 20 | * This program is free software; you can redistribute it and/or modify |
| 21 | * it under the terms of the GNU General Public License as published by |
| 22 | * the Free Software Foundation; either version 2 of the License, or |
| 23 | * (at your option) any later version. |
| 24 | * |
| 25 | * This program is distributed in the hope that it will be useful, |
| 26 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 27 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 28 | * GNU General Public License for more details. |
| 29 | */ |
| 30 | |
| 31 | #include <linux/kernel.h> |
| 32 | #include <linux/init.h> |
| 33 | #include <linux/ioport.h> |
| 34 | #include <linux/of.h> |
| 35 | #include <linux/of_device.h> |
| 36 | #include <linux/of_gpio.h> |
| 37 | #include <linux/platform_device.h> |
| 38 | #include <linux/delay.h> |
| 39 | #include <linux/interrupt.h> |
| 40 | #include <linux/dma-mapping.h> |
| 41 | #include <linux/dmaengine.h> |
| 42 | #include <linux/highmem.h> |
| 43 | #include <linux/clk.h> |
| 44 | #include <linux/err.h> |
| 45 | #include <linux/completion.h> |
| 46 | #include <linux/gpio.h> |
| 47 | #include <linux/regulator/consumer.h> |
| 48 | #include <linux/module.h> |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 49 | #include <linux/stmp_device.h> |
| 50 | #include <linux/spi/spi.h> |
| 51 | #include <linux/spi/mxs-spi.h> |
| 52 | |
| 53 | #define DRIVER_NAME "mxs-spi" |
| 54 | |
Marek Vasut | 010b481 | 2012-09-04 04:40:15 +0200 | [diff] [blame] | 55 | /* Use 10S timeout for very long transfers, it should suffice. */ |
| 56 | #define SSP_TIMEOUT 10000 |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 57 | |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 58 | #define SG_MAXLEN 0xff00 |
| 59 | |
Trent Piepho | 28cad12 | 2013-10-01 13:14:50 -0700 | [diff] [blame] | 60 | /* |
| 61 | * Flags for txrx functions. More efficient that using an argument register for |
| 62 | * each one. |
| 63 | */ |
| 64 | #define TXRX_WRITE (1<<0) /* This is a write */ |
| 65 | #define TXRX_DEASSERT_CS (1<<1) /* De-assert CS at end of txrx */ |
| 66 | |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 67 | struct mxs_spi { |
| 68 | struct mxs_ssp ssp; |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 69 | struct completion c; |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 70 | }; |
| 71 | |
| 72 | static int mxs_spi_setup_transfer(struct spi_device *dev, |
| 73 | struct spi_transfer *t) |
| 74 | { |
| 75 | struct mxs_spi *spi = spi_master_get_devdata(dev->master); |
| 76 | struct mxs_ssp *ssp = &spi->ssp; |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 77 | uint32_t hz = 0; |
| 78 | |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 79 | hz = dev->max_speed_hz; |
| 80 | if (t && t->speed_hz) |
| 81 | hz = min(hz, t->speed_hz); |
| 82 | if (hz == 0) { |
| 83 | dev_err(&dev->dev, "Cannot continue with zero clock\n"); |
| 84 | return -EINVAL; |
| 85 | } |
| 86 | |
| 87 | mxs_ssp_set_clk_rate(ssp, hz); |
| 88 | |
Trent Piepho | 58f46e4 | 2013-10-01 13:14:25 -0700 | [diff] [blame] | 89 | writel(BM_SSP_CTRL0_LOCK_CS, |
| 90 | ssp->base + HW_SSP_CTRL0 + STMP_OFFSET_REG_SET); |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 91 | writel(BF_SSP_CTRL1_SSP_MODE(BV_SSP_CTRL1_SSP_MODE__SPI) | |
| 92 | BF_SSP_CTRL1_WORD_LENGTH |
| 93 | (BV_SSP_CTRL1_WORD_LENGTH__EIGHT_BITS) | |
| 94 | ((dev->mode & SPI_CPOL) ? BM_SSP_CTRL1_POLARITY : 0) | |
| 95 | ((dev->mode & SPI_CPHA) ? BM_SSP_CTRL1_PHASE : 0), |
| 96 | ssp->base + HW_SSP_CTRL1(ssp)); |
| 97 | |
| 98 | writel(0x0, ssp->base + HW_SSP_CMD0); |
| 99 | writel(0x0, ssp->base + HW_SSP_CMD1); |
| 100 | |
| 101 | return 0; |
| 102 | } |
| 103 | |
| 104 | static int mxs_spi_setup(struct spi_device *dev) |
| 105 | { |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 106 | if (!dev->bits_per_word) |
| 107 | dev->bits_per_word = 8; |
| 108 | |
| 109 | if (dev->mode & ~(SPI_CPOL | SPI_CPHA)) |
| 110 | return -EINVAL; |
| 111 | |
Trent Piepho | 9c97e34 | 2013-10-01 13:15:25 -0700 | [diff] [blame^] | 112 | return 0; |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | static uint32_t mxs_spi_cs_to_reg(unsigned cs) |
| 116 | { |
| 117 | uint32_t select = 0; |
| 118 | |
| 119 | /* |
| 120 | * i.MX28 Datasheet: 17.10.1: HW_SSP_CTRL0 |
| 121 | * |
| 122 | * The bits BM_SSP_CTRL0_WAIT_FOR_CMD and BM_SSP_CTRL0_WAIT_FOR_IRQ |
| 123 | * in HW_SSP_CTRL0 register do have multiple usage, please refer to |
| 124 | * the datasheet for further details. In SPI mode, they are used to |
| 125 | * toggle the chip-select lines (nCS pins). |
| 126 | */ |
| 127 | if (cs & 1) |
| 128 | select |= BM_SSP_CTRL0_WAIT_FOR_CMD; |
| 129 | if (cs & 2) |
| 130 | select |= BM_SSP_CTRL0_WAIT_FOR_IRQ; |
| 131 | |
| 132 | return select; |
| 133 | } |
| 134 | |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 135 | static int mxs_ssp_wait(struct mxs_spi *spi, int offset, int mask, bool set) |
| 136 | { |
Marek Vasut | f13639d | 2012-09-04 04:40:18 +0200 | [diff] [blame] | 137 | const unsigned long timeout = jiffies + msecs_to_jiffies(SSP_TIMEOUT); |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 138 | struct mxs_ssp *ssp = &spi->ssp; |
| 139 | uint32_t reg; |
| 140 | |
Marek Vasut | f13639d | 2012-09-04 04:40:18 +0200 | [diff] [blame] | 141 | do { |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 142 | reg = readl_relaxed(ssp->base + offset); |
| 143 | |
Marek Vasut | f13639d | 2012-09-04 04:40:18 +0200 | [diff] [blame] | 144 | if (!set) |
| 145 | reg = ~reg; |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 146 | |
Marek Vasut | f13639d | 2012-09-04 04:40:18 +0200 | [diff] [blame] | 147 | reg &= mask; |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 148 | |
Marek Vasut | f13639d | 2012-09-04 04:40:18 +0200 | [diff] [blame] | 149 | if (reg == mask) |
| 150 | return 0; |
| 151 | } while (time_before(jiffies, timeout)); |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 152 | |
Marek Vasut | f13639d | 2012-09-04 04:40:18 +0200 | [diff] [blame] | 153 | return -ETIMEDOUT; |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 154 | } |
| 155 | |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 156 | static void mxs_ssp_dma_irq_callback(void *param) |
| 157 | { |
| 158 | struct mxs_spi *spi = param; |
| 159 | complete(&spi->c); |
| 160 | } |
| 161 | |
| 162 | static irqreturn_t mxs_ssp_irq_handler(int irq, void *dev_id) |
| 163 | { |
| 164 | struct mxs_ssp *ssp = dev_id; |
| 165 | dev_err(ssp->dev, "%s[%i] CTRL1=%08x STATUS=%08x\n", |
| 166 | __func__, __LINE__, |
| 167 | readl(ssp->base + HW_SSP_CTRL1(ssp)), |
| 168 | readl(ssp->base + HW_SSP_STATUS(ssp))); |
| 169 | return IRQ_HANDLED; |
| 170 | } |
| 171 | |
Trent Piepho | 0b782f7 | 2013-10-01 13:15:04 -0700 | [diff] [blame] | 172 | static int mxs_spi_txrx_dma(struct mxs_spi *spi, |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 173 | unsigned char *buf, int len, |
Trent Piepho | 28cad12 | 2013-10-01 13:14:50 -0700 | [diff] [blame] | 174 | unsigned int flags) |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 175 | { |
| 176 | struct mxs_ssp *ssp = &spi->ssp; |
Marek Vasut | 010b481 | 2012-09-04 04:40:15 +0200 | [diff] [blame] | 177 | struct dma_async_tx_descriptor *desc = NULL; |
| 178 | const bool vmalloced_buf = is_vmalloc_addr(buf); |
| 179 | const int desc_len = vmalloced_buf ? PAGE_SIZE : SG_MAXLEN; |
| 180 | const int sgs = DIV_ROUND_UP(len, desc_len); |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 181 | int sg_count; |
Marek Vasut | 010b481 | 2012-09-04 04:40:15 +0200 | [diff] [blame] | 182 | int min, ret; |
| 183 | uint32_t ctrl0; |
| 184 | struct page *vm_page; |
| 185 | void *sg_buf; |
| 186 | struct { |
| 187 | uint32_t pio[4]; |
| 188 | struct scatterlist sg; |
| 189 | } *dma_xfer; |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 190 | |
Marek Vasut | 010b481 | 2012-09-04 04:40:15 +0200 | [diff] [blame] | 191 | if (!len) |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 192 | return -EINVAL; |
Marek Vasut | 010b481 | 2012-09-04 04:40:15 +0200 | [diff] [blame] | 193 | |
| 194 | dma_xfer = kzalloc(sizeof(*dma_xfer) * sgs, GFP_KERNEL); |
| 195 | if (!dma_xfer) |
| 196 | return -ENOMEM; |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 197 | |
Marek Vasut | 41682e0 | 2012-08-24 04:56:27 +0200 | [diff] [blame] | 198 | INIT_COMPLETION(spi->c); |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 199 | |
Trent Piepho | 0b782f7 | 2013-10-01 13:15:04 -0700 | [diff] [blame] | 200 | /* Chip select was already programmed into CTRL0 */ |
Marek Vasut | 010b481 | 2012-09-04 04:40:15 +0200 | [diff] [blame] | 201 | ctrl0 = readl(ssp->base + HW_SSP_CTRL0); |
Trent Piepho | df23286 | 2013-10-01 13:14:57 -0700 | [diff] [blame] | 202 | ctrl0 &= ~(BM_SSP_CTRL0_XFER_COUNT | BM_SSP_CTRL0_IGNORE_CRC | |
| 203 | BM_SSP_CTRL0_READ); |
Trent Piepho | 0b782f7 | 2013-10-01 13:15:04 -0700 | [diff] [blame] | 204 | ctrl0 |= BM_SSP_CTRL0_DATA_XFER; |
Marek Vasut | 010b481 | 2012-09-04 04:40:15 +0200 | [diff] [blame] | 205 | |
Trent Piepho | 28cad12 | 2013-10-01 13:14:50 -0700 | [diff] [blame] | 206 | if (!(flags & TXRX_WRITE)) |
Marek Vasut | 010b481 | 2012-09-04 04:40:15 +0200 | [diff] [blame] | 207 | ctrl0 |= BM_SSP_CTRL0_READ; |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 208 | |
| 209 | /* Queue the DMA data transfer. */ |
Marek Vasut | 010b481 | 2012-09-04 04:40:15 +0200 | [diff] [blame] | 210 | for (sg_count = 0; sg_count < sgs; sg_count++) { |
Trent Piepho | 28cad12 | 2013-10-01 13:14:50 -0700 | [diff] [blame] | 211 | /* Prepare the transfer descriptor. */ |
Marek Vasut | 010b481 | 2012-09-04 04:40:15 +0200 | [diff] [blame] | 212 | min = min(len, desc_len); |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 213 | |
Trent Piepho | 28cad12 | 2013-10-01 13:14:50 -0700 | [diff] [blame] | 214 | /* |
| 215 | * De-assert CS on last segment if flag is set (i.e., no more |
| 216 | * transfers will follow) |
| 217 | */ |
| 218 | if ((sg_count + 1 == sgs) && (flags & TXRX_DEASSERT_CS)) |
Marek Vasut | 010b481 | 2012-09-04 04:40:15 +0200 | [diff] [blame] | 219 | ctrl0 |= BM_SSP_CTRL0_IGNORE_CRC; |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 220 | |
Juha Lumme | ba486a2 | 2012-12-26 14:48:51 +0900 | [diff] [blame] | 221 | if (ssp->devid == IMX23_SSP) { |
| 222 | ctrl0 &= ~BM_SSP_CTRL0_XFER_COUNT; |
Marek Vasut | 010b481 | 2012-09-04 04:40:15 +0200 | [diff] [blame] | 223 | ctrl0 |= min; |
Juha Lumme | ba486a2 | 2012-12-26 14:48:51 +0900 | [diff] [blame] | 224 | } |
Marek Vasut | 010b481 | 2012-09-04 04:40:15 +0200 | [diff] [blame] | 225 | |
| 226 | dma_xfer[sg_count].pio[0] = ctrl0; |
| 227 | dma_xfer[sg_count].pio[3] = min; |
| 228 | |
| 229 | if (vmalloced_buf) { |
| 230 | vm_page = vmalloc_to_page(buf); |
| 231 | if (!vm_page) { |
| 232 | ret = -ENOMEM; |
| 233 | goto err_vmalloc; |
| 234 | } |
| 235 | sg_buf = page_address(vm_page) + |
| 236 | ((size_t)buf & ~PAGE_MASK); |
| 237 | } else { |
| 238 | sg_buf = buf; |
| 239 | } |
| 240 | |
| 241 | sg_init_one(&dma_xfer[sg_count].sg, sg_buf, min); |
| 242 | ret = dma_map_sg(ssp->dev, &dma_xfer[sg_count].sg, 1, |
Trent Piepho | 28cad12 | 2013-10-01 13:14:50 -0700 | [diff] [blame] | 243 | (flags & TXRX_WRITE) ? DMA_TO_DEVICE : DMA_FROM_DEVICE); |
Marek Vasut | 010b481 | 2012-09-04 04:40:15 +0200 | [diff] [blame] | 244 | |
| 245 | len -= min; |
| 246 | buf += min; |
| 247 | |
| 248 | /* Queue the PIO register write transfer. */ |
| 249 | desc = dmaengine_prep_slave_sg(ssp->dmach, |
| 250 | (struct scatterlist *)dma_xfer[sg_count].pio, |
| 251 | (ssp->devid == IMX23_SSP) ? 1 : 4, |
| 252 | DMA_TRANS_NONE, |
| 253 | sg_count ? DMA_PREP_INTERRUPT : 0); |
| 254 | if (!desc) { |
| 255 | dev_err(ssp->dev, |
| 256 | "Failed to get PIO reg. write descriptor.\n"); |
| 257 | ret = -EINVAL; |
| 258 | goto err_mapped; |
| 259 | } |
| 260 | |
| 261 | desc = dmaengine_prep_slave_sg(ssp->dmach, |
| 262 | &dma_xfer[sg_count].sg, 1, |
Trent Piepho | 28cad12 | 2013-10-01 13:14:50 -0700 | [diff] [blame] | 263 | (flags & TXRX_WRITE) ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM, |
Marek Vasut | 010b481 | 2012-09-04 04:40:15 +0200 | [diff] [blame] | 264 | DMA_PREP_INTERRUPT | DMA_CTRL_ACK); |
| 265 | |
| 266 | if (!desc) { |
| 267 | dev_err(ssp->dev, |
| 268 | "Failed to get DMA data write descriptor.\n"); |
| 269 | ret = -EINVAL; |
| 270 | goto err_mapped; |
| 271 | } |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 272 | } |
| 273 | |
| 274 | /* |
| 275 | * The last descriptor must have this callback, |
| 276 | * to finish the DMA transaction. |
| 277 | */ |
| 278 | desc->callback = mxs_ssp_dma_irq_callback; |
| 279 | desc->callback_param = spi; |
| 280 | |
| 281 | /* Start the transfer. */ |
| 282 | dmaengine_submit(desc); |
| 283 | dma_async_issue_pending(ssp->dmach); |
| 284 | |
| 285 | ret = wait_for_completion_timeout(&spi->c, |
| 286 | msecs_to_jiffies(SSP_TIMEOUT)); |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 287 | if (!ret) { |
| 288 | dev_err(ssp->dev, "DMA transfer timeout\n"); |
| 289 | ret = -ETIMEDOUT; |
Marek Vasut | 4496846 | 2012-10-14 04:32:56 +0200 | [diff] [blame] | 290 | dmaengine_terminate_all(ssp->dmach); |
Marek Vasut | 010b481 | 2012-09-04 04:40:15 +0200 | [diff] [blame] | 291 | goto err_vmalloc; |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 292 | } |
| 293 | |
| 294 | ret = 0; |
| 295 | |
Marek Vasut | 010b481 | 2012-09-04 04:40:15 +0200 | [diff] [blame] | 296 | err_vmalloc: |
| 297 | while (--sg_count >= 0) { |
| 298 | err_mapped: |
| 299 | dma_unmap_sg(ssp->dev, &dma_xfer[sg_count].sg, 1, |
Trent Piepho | 28cad12 | 2013-10-01 13:14:50 -0700 | [diff] [blame] | 300 | (flags & TXRX_WRITE) ? DMA_TO_DEVICE : DMA_FROM_DEVICE); |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 301 | } |
| 302 | |
Marek Vasut | 010b481 | 2012-09-04 04:40:15 +0200 | [diff] [blame] | 303 | kfree(dma_xfer); |
| 304 | |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 305 | return ret; |
| 306 | } |
| 307 | |
Trent Piepho | 0b782f7 | 2013-10-01 13:15:04 -0700 | [diff] [blame] | 308 | static int mxs_spi_txrx_pio(struct mxs_spi *spi, |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 309 | unsigned char *buf, int len, |
Trent Piepho | 28cad12 | 2013-10-01 13:14:50 -0700 | [diff] [blame] | 310 | unsigned int flags) |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 311 | { |
| 312 | struct mxs_ssp *ssp = &spi->ssp; |
| 313 | |
Trent Piepho | 75e73fa | 2013-10-01 13:14:39 -0700 | [diff] [blame] | 314 | writel(BM_SSP_CTRL0_IGNORE_CRC, |
| 315 | ssp->base + HW_SSP_CTRL0 + STMP_OFFSET_REG_CLR); |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 316 | |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 317 | while (len--) { |
Trent Piepho | 28cad12 | 2013-10-01 13:14:50 -0700 | [diff] [blame] | 318 | if (len == 0 && (flags & TXRX_DEASSERT_CS)) |
Trent Piepho | f5bc738 | 2013-10-01 13:14:32 -0700 | [diff] [blame] | 319 | writel(BM_SSP_CTRL0_IGNORE_CRC, |
| 320 | ssp->base + HW_SSP_CTRL0 + STMP_OFFSET_REG_SET); |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 321 | |
| 322 | if (ssp->devid == IMX23_SSP) { |
| 323 | writel(BM_SSP_CTRL0_XFER_COUNT, |
| 324 | ssp->base + HW_SSP_CTRL0 + STMP_OFFSET_REG_CLR); |
| 325 | writel(1, |
| 326 | ssp->base + HW_SSP_CTRL0 + STMP_OFFSET_REG_SET); |
| 327 | } else { |
| 328 | writel(1, ssp->base + HW_SSP_XFER_SIZE); |
| 329 | } |
| 330 | |
Trent Piepho | 28cad12 | 2013-10-01 13:14:50 -0700 | [diff] [blame] | 331 | if (flags & TXRX_WRITE) |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 332 | writel(BM_SSP_CTRL0_READ, |
| 333 | ssp->base + HW_SSP_CTRL0 + STMP_OFFSET_REG_CLR); |
| 334 | else |
| 335 | writel(BM_SSP_CTRL0_READ, |
| 336 | ssp->base + HW_SSP_CTRL0 + STMP_OFFSET_REG_SET); |
| 337 | |
| 338 | writel(BM_SSP_CTRL0_RUN, |
| 339 | ssp->base + HW_SSP_CTRL0 + STMP_OFFSET_REG_SET); |
| 340 | |
| 341 | if (mxs_ssp_wait(spi, HW_SSP_CTRL0, BM_SSP_CTRL0_RUN, 1)) |
| 342 | return -ETIMEDOUT; |
| 343 | |
Trent Piepho | 28cad12 | 2013-10-01 13:14:50 -0700 | [diff] [blame] | 344 | if (flags & TXRX_WRITE) |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 345 | writel(*buf, ssp->base + HW_SSP_DATA(ssp)); |
| 346 | |
| 347 | writel(BM_SSP_CTRL0_DATA_XFER, |
| 348 | ssp->base + HW_SSP_CTRL0 + STMP_OFFSET_REG_SET); |
| 349 | |
Trent Piepho | 28cad12 | 2013-10-01 13:14:50 -0700 | [diff] [blame] | 350 | if (!(flags & TXRX_WRITE)) { |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 351 | if (mxs_ssp_wait(spi, HW_SSP_STATUS(ssp), |
| 352 | BM_SSP_STATUS_FIFO_EMPTY, 0)) |
| 353 | return -ETIMEDOUT; |
| 354 | |
| 355 | *buf = (readl(ssp->base + HW_SSP_DATA(ssp)) & 0xff); |
| 356 | } |
| 357 | |
| 358 | if (mxs_ssp_wait(spi, HW_SSP_CTRL0, BM_SSP_CTRL0_RUN, 0)) |
| 359 | return -ETIMEDOUT; |
| 360 | |
| 361 | buf++; |
| 362 | } |
| 363 | |
| 364 | if (len <= 0) |
| 365 | return 0; |
| 366 | |
| 367 | return -ETIMEDOUT; |
| 368 | } |
| 369 | |
| 370 | static int mxs_spi_transfer_one(struct spi_master *master, |
| 371 | struct spi_message *m) |
| 372 | { |
| 373 | struct mxs_spi *spi = spi_master_get_devdata(master); |
| 374 | struct mxs_ssp *ssp = &spi->ssp; |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 375 | struct spi_transfer *t, *tmp_t; |
Trent Piepho | 28cad12 | 2013-10-01 13:14:50 -0700 | [diff] [blame] | 376 | unsigned int flag; |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 377 | int status = 0; |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 378 | |
Trent Piepho | 0b782f7 | 2013-10-01 13:15:04 -0700 | [diff] [blame] | 379 | /* Program CS register bits here, it will be used for all transfers. */ |
| 380 | writel(BM_SSP_CTRL0_WAIT_FOR_CMD | BM_SSP_CTRL0_WAIT_FOR_IRQ, |
| 381 | ssp->base + HW_SSP_CTRL0 + STMP_OFFSET_REG_CLR); |
| 382 | writel(mxs_spi_cs_to_reg(m->spi->chip_select), |
| 383 | ssp->base + HW_SSP_CTRL0 + STMP_OFFSET_REG_SET); |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 384 | |
| 385 | list_for_each_entry_safe(t, tmp_t, &m->transfers, transfer_list) { |
| 386 | |
| 387 | status = mxs_spi_setup_transfer(m->spi, t); |
| 388 | if (status) |
| 389 | break; |
| 390 | |
Trent Piepho | 28cad12 | 2013-10-01 13:14:50 -0700 | [diff] [blame] | 391 | /* De-assert on last transfer, inverted by cs_change flag */ |
| 392 | flag = (&t->transfer_list == m->transfers.prev) ^ t->cs_change ? |
| 393 | TXRX_DEASSERT_CS : 0; |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 394 | |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 395 | /* |
| 396 | * Small blocks can be transfered via PIO. |
| 397 | * Measured by empiric means: |
| 398 | * |
| 399 | * dd if=/dev/mtdblock0 of=/dev/null bs=1024k count=1 |
| 400 | * |
| 401 | * DMA only: 2.164808 seconds, 473.0KB/s |
| 402 | * Combined: 1.676276 seconds, 610.9KB/s |
| 403 | */ |
Marek Vasut | 727c10e | 2012-09-04 04:40:17 +0200 | [diff] [blame] | 404 | if (t->len < 32) { |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 405 | writel(BM_SSP_CTRL1_DMA_ENABLE, |
| 406 | ssp->base + HW_SSP_CTRL1(ssp) + |
| 407 | STMP_OFFSET_REG_CLR); |
| 408 | |
| 409 | if (t->tx_buf) |
Trent Piepho | 0b782f7 | 2013-10-01 13:15:04 -0700 | [diff] [blame] | 410 | status = mxs_spi_txrx_pio(spi, |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 411 | (void *)t->tx_buf, |
Trent Piepho | 28cad12 | 2013-10-01 13:14:50 -0700 | [diff] [blame] | 412 | t->len, flag | TXRX_WRITE); |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 413 | if (t->rx_buf) |
Trent Piepho | 0b782f7 | 2013-10-01 13:15:04 -0700 | [diff] [blame] | 414 | status = mxs_spi_txrx_pio(spi, |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 415 | t->rx_buf, t->len, |
Trent Piepho | 28cad12 | 2013-10-01 13:14:50 -0700 | [diff] [blame] | 416 | flag); |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 417 | } else { |
| 418 | writel(BM_SSP_CTRL1_DMA_ENABLE, |
| 419 | ssp->base + HW_SSP_CTRL1(ssp) + |
| 420 | STMP_OFFSET_REG_SET); |
| 421 | |
| 422 | if (t->tx_buf) |
Trent Piepho | 0b782f7 | 2013-10-01 13:15:04 -0700 | [diff] [blame] | 423 | status = mxs_spi_txrx_dma(spi, |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 424 | (void *)t->tx_buf, t->len, |
Trent Piepho | 28cad12 | 2013-10-01 13:14:50 -0700 | [diff] [blame] | 425 | flag | TXRX_WRITE); |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 426 | if (t->rx_buf) |
Trent Piepho | 0b782f7 | 2013-10-01 13:15:04 -0700 | [diff] [blame] | 427 | status = mxs_spi_txrx_dma(spi, |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 428 | t->rx_buf, t->len, |
Trent Piepho | 28cad12 | 2013-10-01 13:14:50 -0700 | [diff] [blame] | 429 | flag); |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 430 | } |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 431 | |
Marek Vasut | c895db0 | 2012-08-24 04:34:18 +0200 | [diff] [blame] | 432 | if (status) { |
| 433 | stmp_reset_block(ssp->base); |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 434 | break; |
Marek Vasut | c895db0 | 2012-08-24 04:34:18 +0200 | [diff] [blame] | 435 | } |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 436 | |
Marek Vasut | 204e706 | 2012-09-04 04:40:16 +0200 | [diff] [blame] | 437 | m->actual_length += t->len; |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 438 | } |
| 439 | |
Marek Vasut | d856f1eb | 2012-10-14 04:32:55 +0200 | [diff] [blame] | 440 | m->status = status; |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 441 | spi_finalize_current_message(master); |
| 442 | |
| 443 | return status; |
| 444 | } |
| 445 | |
| 446 | static const struct of_device_id mxs_spi_dt_ids[] = { |
| 447 | { .compatible = "fsl,imx23-spi", .data = (void *) IMX23_SSP, }, |
| 448 | { .compatible = "fsl,imx28-spi", .data = (void *) IMX28_SSP, }, |
| 449 | { /* sentinel */ } |
| 450 | }; |
| 451 | MODULE_DEVICE_TABLE(of, mxs_spi_dt_ids); |
| 452 | |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 453 | static int mxs_spi_probe(struct platform_device *pdev) |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 454 | { |
| 455 | const struct of_device_id *of_id = |
| 456 | of_match_device(mxs_spi_dt_ids, &pdev->dev); |
| 457 | struct device_node *np = pdev->dev.of_node; |
| 458 | struct spi_master *master; |
| 459 | struct mxs_spi *spi; |
| 460 | struct mxs_ssp *ssp; |
Shawn Guo | 26aafa7 | 2013-02-26 11:07:32 +0800 | [diff] [blame] | 461 | struct resource *iores; |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 462 | struct clk *clk; |
| 463 | void __iomem *base; |
Shawn Guo | 26aafa7 | 2013-02-26 11:07:32 +0800 | [diff] [blame] | 464 | int devid, clk_freq; |
| 465 | int ret = 0, irq_err; |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 466 | |
Marek Vasut | e64d07a | 2012-08-22 22:38:35 +0200 | [diff] [blame] | 467 | /* |
| 468 | * Default clock speed for the SPI core. 160MHz seems to |
| 469 | * work reasonably well with most SPI flashes, so use this |
| 470 | * as a default. Override with "clock-frequency" DT prop. |
| 471 | */ |
| 472 | const int clk_freq_default = 160000000; |
| 473 | |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 474 | iores = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 475 | irq_err = platform_get_irq(pdev, 0); |
Fabio Estevam | 796305a | 2013-07-21 22:29:54 -0300 | [diff] [blame] | 476 | if (irq_err < 0) |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 477 | return -EINVAL; |
| 478 | |
Thierry Reding | b0ee560 | 2013-01-21 11:09:18 +0100 | [diff] [blame] | 479 | base = devm_ioremap_resource(&pdev->dev, iores); |
| 480 | if (IS_ERR(base)) |
| 481 | return PTR_ERR(base); |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 482 | |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 483 | clk = devm_clk_get(&pdev->dev, NULL); |
| 484 | if (IS_ERR(clk)) |
| 485 | return PTR_ERR(clk); |
| 486 | |
Shawn Guo | 26aafa7 | 2013-02-26 11:07:32 +0800 | [diff] [blame] | 487 | devid = (enum mxs_ssp_id) of_id->data; |
| 488 | ret = of_property_read_u32(np, "clock-frequency", |
| 489 | &clk_freq); |
| 490 | if (ret) |
Marek Vasut | e64d07a | 2012-08-22 22:38:35 +0200 | [diff] [blame] | 491 | clk_freq = clk_freq_default; |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 492 | |
| 493 | master = spi_alloc_master(&pdev->dev, sizeof(*spi)); |
| 494 | if (!master) |
| 495 | return -ENOMEM; |
| 496 | |
| 497 | master->transfer_one_message = mxs_spi_transfer_one; |
| 498 | master->setup = mxs_spi_setup; |
Stephen Warren | 24778be | 2013-05-21 20:36:35 -0600 | [diff] [blame] | 499 | master->bits_per_word_mask = SPI_BPW_MASK(8); |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 500 | master->mode_bits = SPI_CPOL | SPI_CPHA; |
| 501 | master->num_chipselect = 3; |
| 502 | master->dev.of_node = np; |
| 503 | master->flags = SPI_MASTER_HALF_DUPLEX; |
| 504 | |
| 505 | spi = spi_master_get_devdata(master); |
| 506 | ssp = &spi->ssp; |
| 507 | ssp->dev = &pdev->dev; |
| 508 | ssp->clk = clk; |
| 509 | ssp->base = base; |
| 510 | ssp->devid = devid; |
| 511 | |
Marek Vasut | 41682e0 | 2012-08-24 04:56:27 +0200 | [diff] [blame] | 512 | init_completion(&spi->c); |
| 513 | |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 514 | ret = devm_request_irq(&pdev->dev, irq_err, mxs_ssp_irq_handler, 0, |
| 515 | DRIVER_NAME, ssp); |
| 516 | if (ret) |
| 517 | goto out_master_free; |
| 518 | |
Shawn Guo | 26aafa7 | 2013-02-26 11:07:32 +0800 | [diff] [blame] | 519 | ssp->dmach = dma_request_slave_channel(&pdev->dev, "rx-tx"); |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 520 | if (!ssp->dmach) { |
| 521 | dev_err(ssp->dev, "Failed to request DMA\n"); |
Wei Yongjun | 58ad60b | 2013-04-03 21:06:40 +0800 | [diff] [blame] | 522 | ret = -ENODEV; |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 523 | goto out_master_free; |
| 524 | } |
| 525 | |
Fabio Estevam | 9c4a39a | 2013-07-10 00:16:28 -0300 | [diff] [blame] | 526 | ret = clk_prepare_enable(ssp->clk); |
| 527 | if (ret) |
| 528 | goto out_dma_release; |
| 529 | |
Marek Vasut | e64d07a | 2012-08-22 22:38:35 +0200 | [diff] [blame] | 530 | clk_set_rate(ssp->clk, clk_freq); |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 531 | |
Fabio Estevam | 8498bce | 2013-07-10 00:16:29 -0300 | [diff] [blame] | 532 | ret = stmp_reset_block(ssp->base); |
| 533 | if (ret) |
| 534 | goto out_disable_clk; |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 535 | |
| 536 | platform_set_drvdata(pdev, master); |
| 537 | |
| 538 | ret = spi_register_master(master); |
| 539 | if (ret) { |
| 540 | dev_err(&pdev->dev, "Cannot register SPI master, %d\n", ret); |
Fabio Estevam | 9c4a39a | 2013-07-10 00:16:28 -0300 | [diff] [blame] | 541 | goto out_disable_clk; |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 542 | } |
| 543 | |
| 544 | return 0; |
| 545 | |
Fabio Estevam | 9c4a39a | 2013-07-10 00:16:28 -0300 | [diff] [blame] | 546 | out_disable_clk: |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 547 | clk_disable_unprepare(ssp->clk); |
Fabio Estevam | 9c4a39a | 2013-07-10 00:16:28 -0300 | [diff] [blame] | 548 | out_dma_release: |
Fabio Estevam | e11933f | 2013-07-10 00:16:27 -0300 | [diff] [blame] | 549 | dma_release_channel(ssp->dmach); |
Marek Vasut | 474afc0 | 2012-08-03 17:26:13 +0200 | [diff] [blame] | 550 | out_master_free: |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 551 | spi_master_put(master); |
| 552 | return ret; |
| 553 | } |
| 554 | |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 555 | static int mxs_spi_remove(struct platform_device *pdev) |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 556 | { |
| 557 | struct spi_master *master; |
| 558 | struct mxs_spi *spi; |
| 559 | struct mxs_ssp *ssp; |
| 560 | |
Guenter Roeck | 7d520d2 | 2012-08-24 11:03:02 -0700 | [diff] [blame] | 561 | master = spi_master_get(platform_get_drvdata(pdev)); |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 562 | spi = spi_master_get_devdata(master); |
| 563 | ssp = &spi->ssp; |
| 564 | |
| 565 | spi_unregister_master(master); |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 566 | clk_disable_unprepare(ssp->clk); |
Fabio Estevam | e11933f | 2013-07-10 00:16:27 -0300 | [diff] [blame] | 567 | dma_release_channel(ssp->dmach); |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 568 | spi_master_put(master); |
| 569 | |
| 570 | return 0; |
| 571 | } |
| 572 | |
| 573 | static struct platform_driver mxs_spi_driver = { |
| 574 | .probe = mxs_spi_probe, |
Grant Likely | fd4a319 | 2012-12-07 16:57:14 +0000 | [diff] [blame] | 575 | .remove = mxs_spi_remove, |
Marek Vasut | 646781d | 2012-08-03 17:26:11 +0200 | [diff] [blame] | 576 | .driver = { |
| 577 | .name = DRIVER_NAME, |
| 578 | .owner = THIS_MODULE, |
| 579 | .of_match_table = mxs_spi_dt_ids, |
| 580 | }, |
| 581 | }; |
| 582 | |
| 583 | module_platform_driver(mxs_spi_driver); |
| 584 | |
| 585 | MODULE_AUTHOR("Marek Vasut <marex@denx.de>"); |
| 586 | MODULE_DESCRIPTION("MXS SPI master driver"); |
| 587 | MODULE_LICENSE("GPL"); |
| 588 | MODULE_ALIAS("platform:mxs-spi"); |