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