]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/spi/spi-mxs.c
Linux 3.19-rc1
[mirror_ubuntu-artful-kernel.git] / drivers / spi / spi-mxs.c
CommitLineData
646781d3
MV
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>
646781d3
MV
32#include <linux/ioport.h>
33#include <linux/of.h>
34#include <linux/of_device.h>
35#include <linux/of_gpio.h>
36#include <linux/platform_device.h>
37#include <linux/delay.h>
38#include <linux/interrupt.h>
39#include <linux/dma-mapping.h>
40#include <linux/dmaengine.h>
41#include <linux/highmem.h>
42#include <linux/clk.h>
43#include <linux/err.h>
44#include <linux/completion.h>
45#include <linux/gpio.h>
46#include <linux/regulator/consumer.h>
47#include <linux/module.h>
646781d3
MV
48#include <linux/stmp_device.h>
49#include <linux/spi/spi.h>
50#include <linux/spi/mxs-spi.h>
51
52#define DRIVER_NAME "mxs-spi"
53
010b4818
MV
54/* Use 10S timeout for very long transfers, it should suffice. */
55#define SSP_TIMEOUT 10000
646781d3 56
474afc04
MV
57#define SG_MAXLEN 0xff00
58
28cad125
TP
59/*
60 * Flags for txrx functions. More efficient that using an argument register for
61 * each one.
62 */
63#define TXRX_WRITE (1<<0) /* This is a write */
64#define TXRX_DEASSERT_CS (1<<1) /* De-assert CS at end of txrx */
65
646781d3
MV
66struct mxs_spi {
67 struct mxs_ssp ssp;
474afc04 68 struct completion c;
a560943e 69 unsigned int sck; /* Rate requested (vs actual) */
646781d3
MV
70};
71
72static int mxs_spi_setup_transfer(struct spi_device *dev,
aa9e0c6f 73 const struct spi_transfer *t)
646781d3
MV
74{
75 struct mxs_spi *spi = spi_master_get_devdata(dev->master);
76 struct mxs_ssp *ssp = &spi->ssp;
aa9e0c6f 77 const unsigned int hz = min(dev->max_speed_hz, t->speed_hz);
646781d3 78
646781d3 79 if (hz == 0) {
aa9e0c6f 80 dev_err(&dev->dev, "SPI clock rate of zero not allowed\n");
646781d3
MV
81 return -EINVAL;
82 }
83
a560943e
TP
84 if (hz != spi->sck) {
85 mxs_ssp_set_clk_rate(ssp, hz);
86 /*
87 * Save requested rate, hz, rather than the actual rate,
a44619c3 88 * ssp->clk_rate. Otherwise we would set the rate every transfer
a560943e
TP
89 * when the actual rate is not quite the same as requested rate.
90 */
91 spi->sck = hz;
92 /*
93 * Perhaps we should return an error if the actual clock is
94 * nowhere close to what was requested?
95 */
96 }
646781d3 97
58f46e41
TP
98 writel(BM_SSP_CTRL0_LOCK_CS,
99 ssp->base + HW_SSP_CTRL0 + STMP_OFFSET_REG_SET);
646781d3
MV
100
101 writel(BF_SSP_CTRL1_SSP_MODE(BV_SSP_CTRL1_SSP_MODE__SPI) |
aa9e0c6f
TP
102 BF_SSP_CTRL1_WORD_LENGTH(BV_SSP_CTRL1_WORD_LENGTH__EIGHT_BITS) |
103 ((dev->mode & SPI_CPOL) ? BM_SSP_CTRL1_POLARITY : 0) |
104 ((dev->mode & SPI_CPHA) ? BM_SSP_CTRL1_PHASE : 0),
105 ssp->base + HW_SSP_CTRL1(ssp));
646781d3
MV
106
107 writel(0x0, ssp->base + HW_SSP_CMD0);
108 writel(0x0, ssp->base + HW_SSP_CMD1);
109
110 return 0;
111}
112
42e182f8 113static u32 mxs_spi_cs_to_reg(unsigned cs)
646781d3 114{
42e182f8 115 u32 select = 0;
646781d3
MV
116
117 /*
118 * i.MX28 Datasheet: 17.10.1: HW_SSP_CTRL0
119 *
120 * The bits BM_SSP_CTRL0_WAIT_FOR_CMD and BM_SSP_CTRL0_WAIT_FOR_IRQ
121 * in HW_SSP_CTRL0 register do have multiple usage, please refer to
122 * the datasheet for further details. In SPI mode, they are used to
123 * toggle the chip-select lines (nCS pins).
124 */
125 if (cs & 1)
126 select |= BM_SSP_CTRL0_WAIT_FOR_CMD;
127 if (cs & 2)
128 select |= BM_SSP_CTRL0_WAIT_FOR_IRQ;
129
130 return select;
131}
132
646781d3
MV
133static int mxs_ssp_wait(struct mxs_spi *spi, int offset, int mask, bool set)
134{
f13639dc 135 const unsigned long timeout = jiffies + msecs_to_jiffies(SSP_TIMEOUT);
646781d3 136 struct mxs_ssp *ssp = &spi->ssp;
42e182f8 137 u32 reg;
646781d3 138
f13639dc 139 do {
646781d3
MV
140 reg = readl_relaxed(ssp->base + offset);
141
f13639dc
MV
142 if (!set)
143 reg = ~reg;
646781d3 144
f13639dc 145 reg &= mask;
646781d3 146
f13639dc
MV
147 if (reg == mask)
148 return 0;
149 } while (time_before(jiffies, timeout));
646781d3 150
f13639dc 151 return -ETIMEDOUT;
646781d3
MV
152}
153
474afc04
MV
154static void mxs_ssp_dma_irq_callback(void *param)
155{
156 struct mxs_spi *spi = param;
a7fa3219 157
474afc04
MV
158 complete(&spi->c);
159}
160
161static irqreturn_t mxs_ssp_irq_handler(int irq, void *dev_id)
162{
163 struct mxs_ssp *ssp = dev_id;
a7fa3219 164
474afc04
MV
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
0b782f70 172static int mxs_spi_txrx_dma(struct mxs_spi *spi,
474afc04 173 unsigned char *buf, int len,
28cad125 174 unsigned int flags)
474afc04
MV
175{
176 struct mxs_ssp *ssp = &spi->ssp;
010b4818
MV
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);
474afc04 181 int sg_count;
010b4818 182 int min, ret;
42e182f8 183 u32 ctrl0;
010b4818 184 struct page *vm_page;
010b4818 185 struct {
42e182f8 186 u32 pio[4];
010b4818
MV
187 struct scatterlist sg;
188 } *dma_xfer;
189
190 if (!len)
474afc04 191 return -EINVAL;
010b4818 192
a7fa3219 193 dma_xfer = kcalloc(sgs, sizeof(*dma_xfer), GFP_KERNEL);
010b4818
MV
194 if (!dma_xfer)
195 return -ENOMEM;
474afc04 196
16735d02 197 reinit_completion(&spi->c);
474afc04 198
0b782f70 199 /* Chip select was already programmed into CTRL0 */
010b4818 200 ctrl0 = readl(ssp->base + HW_SSP_CTRL0);
df23286e
TP
201 ctrl0 &= ~(BM_SSP_CTRL0_XFER_COUNT | BM_SSP_CTRL0_IGNORE_CRC |
202 BM_SSP_CTRL0_READ);
0b782f70 203 ctrl0 |= BM_SSP_CTRL0_DATA_XFER;
010b4818 204
28cad125 205 if (!(flags & TXRX_WRITE))
010b4818 206 ctrl0 |= BM_SSP_CTRL0_READ;
474afc04
MV
207
208 /* Queue the DMA data transfer. */
010b4818 209 for (sg_count = 0; sg_count < sgs; sg_count++) {
28cad125 210 /* Prepare the transfer descriptor. */
010b4818
MV
211 min = min(len, desc_len);
212
28cad125
TP
213 /*
214 * De-assert CS on last segment if flag is set (i.e., no more
215 * transfers will follow)
216 */
217 if ((sg_count + 1 == sgs) && (flags & TXRX_DEASSERT_CS))
010b4818
MV
218 ctrl0 |= BM_SSP_CTRL0_IGNORE_CRC;
219
ba486a2a
JL
220 if (ssp->devid == IMX23_SSP) {
221 ctrl0 &= ~BM_SSP_CTRL0_XFER_COUNT;
010b4818 222 ctrl0 |= min;
ba486a2a 223 }
010b4818
MV
224
225 dma_xfer[sg_count].pio[0] = ctrl0;
226 dma_xfer[sg_count].pio[3] = min;
227
228 if (vmalloced_buf) {
229 vm_page = vmalloc_to_page(buf);
230 if (!vm_page) {
231 ret = -ENOMEM;
232 goto err_vmalloc;
233 }
9e8987ac
CK
234
235 sg_init_table(&dma_xfer[sg_count].sg, 1);
236 sg_set_page(&dma_xfer[sg_count].sg, vm_page,
237 min, offset_in_page(buf));
010b4818 238 } else {
9e8987ac 239 sg_init_one(&dma_xfer[sg_count].sg, buf, min);
010b4818
MV
240 }
241
010b4818 242 ret = dma_map_sg(ssp->dev, &dma_xfer[sg_count].sg, 1,
28cad125 243 (flags & TXRX_WRITE) ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
010b4818
MV
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,
28cad125 263 (flags & TXRX_WRITE) ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM,
010b4818
MV
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 }
474afc04
MV
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));
474afc04
MV
287 if (!ret) {
288 dev_err(ssp->dev, "DMA transfer timeout\n");
289 ret = -ETIMEDOUT;
44968466 290 dmaengine_terminate_all(ssp->dmach);
010b4818 291 goto err_vmalloc;
474afc04
MV
292 }
293
294 ret = 0;
295
010b4818
MV
296err_vmalloc:
297 while (--sg_count >= 0) {
298err_mapped:
299 dma_unmap_sg(ssp->dev, &dma_xfer[sg_count].sg, 1,
28cad125 300 (flags & TXRX_WRITE) ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
474afc04
MV
301 }
302
010b4818
MV
303 kfree(dma_xfer);
304
474afc04
MV
305 return ret;
306}
307
0b782f70 308static int mxs_spi_txrx_pio(struct mxs_spi *spi,
646781d3 309 unsigned char *buf, int len,
28cad125 310 unsigned int flags)
646781d3
MV
311{
312 struct mxs_ssp *ssp = &spi->ssp;
313
75e73fa2
TP
314 writel(BM_SSP_CTRL0_IGNORE_CRC,
315 ssp->base + HW_SSP_CTRL0 + STMP_OFFSET_REG_CLR);
646781d3
MV
316
317 while (len--) {
28cad125 318 if (len == 0 && (flags & TXRX_DEASSERT_CS))
f5bc7384
TP
319 writel(BM_SSP_CTRL0_IGNORE_CRC,
320 ssp->base + HW_SSP_CTRL0 + STMP_OFFSET_REG_SET);
646781d3
MV
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
28cad125 331 if (flags & TXRX_WRITE)
646781d3
MV
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
28cad125 344 if (flags & TXRX_WRITE)
646781d3
MV
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
28cad125 350 if (!(flags & TXRX_WRITE)) {
646781d3
MV
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
370static 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;
9a7da6cc 375 struct spi_transfer *t;
28cad125 376 unsigned int flag;
646781d3 377 int status = 0;
646781d3 378
0b782f70
TP
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);
646781d3 384
9a7da6cc 385 list_for_each_entry(t, &m->transfers, transfer_list) {
646781d3
MV
386
387 status = mxs_spi_setup_transfer(m->spi, t);
388 if (status)
389 break;
390
28cad125
TP
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;
646781d3 394
474afc04
MV
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 */
727c10e3 404 if (t->len < 32) {
474afc04
MV
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)
0b782f70 410 status = mxs_spi_txrx_pio(spi,
474afc04 411 (void *)t->tx_buf,
28cad125 412 t->len, flag | TXRX_WRITE);
474afc04 413 if (t->rx_buf)
0b782f70 414 status = mxs_spi_txrx_pio(spi,
474afc04 415 t->rx_buf, t->len,
28cad125 416 flag);
474afc04
MV
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)
0b782f70 423 status = mxs_spi_txrx_dma(spi,
474afc04 424 (void *)t->tx_buf, t->len,
28cad125 425 flag | TXRX_WRITE);
474afc04 426 if (t->rx_buf)
0b782f70 427 status = mxs_spi_txrx_dma(spi,
474afc04 428 t->rx_buf, t->len,
28cad125 429 flag);
474afc04 430 }
646781d3 431
c895db0f
MV
432 if (status) {
433 stmp_reset_block(ssp->base);
646781d3 434 break;
c895db0f 435 }
646781d3 436
204e706f 437 m->actual_length += t->len;
646781d3
MV
438 }
439
d856f1eb 440 m->status = status;
646781d3
MV
441 spi_finalize_current_message(master);
442
443 return status;
444}
445
446static 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};
451MODULE_DEVICE_TABLE(of, mxs_spi_dt_ids);
452
fd4a319b 453static int mxs_spi_probe(struct platform_device *pdev)
646781d3
MV
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;
26aafa77 461 struct resource *iores;
646781d3
MV
462 struct clk *clk;
463 void __iomem *base;
26aafa77
SG
464 int devid, clk_freq;
465 int ret = 0, irq_err;
646781d3 466
e64d07a2
MV
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
646781d3 474 iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
474afc04 475 irq_err = platform_get_irq(pdev, 0);
796305a2 476 if (irq_err < 0)
cdd1945b 477 return irq_err;
646781d3 478
b0ee5605
TR
479 base = devm_ioremap_resource(&pdev->dev, iores);
480 if (IS_ERR(base))
481 return PTR_ERR(base);
646781d3 482
646781d3
MV
483 clk = devm_clk_get(&pdev->dev, NULL);
484 if (IS_ERR(clk))
485 return PTR_ERR(clk);
486
26aafa77
SG
487 devid = (enum mxs_ssp_id) of_id->data;
488 ret = of_property_read_u32(np, "clock-frequency",
489 &clk_freq);
490 if (ret)
e64d07a2 491 clk_freq = clk_freq_default;
646781d3
MV
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;
24778be2 498 master->bits_per_word_mask = SPI_BPW_MASK(8);
646781d3
MV
499 master->mode_bits = SPI_CPOL | SPI_CPHA;
500 master->num_chipselect = 3;
501 master->dev.of_node = np;
502 master->flags = SPI_MASTER_HALF_DUPLEX;
503
504 spi = spi_master_get_devdata(master);
505 ssp = &spi->ssp;
506 ssp->dev = &pdev->dev;
507 ssp->clk = clk;
508 ssp->base = base;
509 ssp->devid = devid;
474afc04 510
41682e03
MV
511 init_completion(&spi->c);
512
474afc04 513 ret = devm_request_irq(&pdev->dev, irq_err, mxs_ssp_irq_handler, 0,
617100c2 514 dev_name(&pdev->dev), ssp);
474afc04
MV
515 if (ret)
516 goto out_master_free;
517
26aafa77 518 ssp->dmach = dma_request_slave_channel(&pdev->dev, "rx-tx");
474afc04
MV
519 if (!ssp->dmach) {
520 dev_err(ssp->dev, "Failed to request DMA\n");
58ad60bb 521 ret = -ENODEV;
474afc04
MV
522 goto out_master_free;
523 }
646781d3 524
9c4a39af
FE
525 ret = clk_prepare_enable(ssp->clk);
526 if (ret)
527 goto out_dma_release;
528
e64d07a2 529 clk_set_rate(ssp->clk, clk_freq);
646781d3 530
8498bce9
FE
531 ret = stmp_reset_block(ssp->base);
532 if (ret)
533 goto out_disable_clk;
646781d3
MV
534
535 platform_set_drvdata(pdev, master);
536
33e195ac 537 ret = devm_spi_register_master(&pdev->dev, master);
646781d3
MV
538 if (ret) {
539 dev_err(&pdev->dev, "Cannot register SPI master, %d\n", ret);
9c4a39af 540 goto out_disable_clk;
646781d3
MV
541 }
542
543 return 0;
544
9c4a39af 545out_disable_clk:
646781d3 546 clk_disable_unprepare(ssp->clk);
9c4a39af 547out_dma_release:
e11933f6 548 dma_release_channel(ssp->dmach);
474afc04 549out_master_free:
646781d3
MV
550 spi_master_put(master);
551 return ret;
552}
553
fd4a319b 554static int mxs_spi_remove(struct platform_device *pdev)
646781d3
MV
555{
556 struct spi_master *master;
557 struct mxs_spi *spi;
558 struct mxs_ssp *ssp;
559
e322ce93 560 master = platform_get_drvdata(pdev);
646781d3
MV
561 spi = spi_master_get_devdata(master);
562 ssp = &spi->ssp;
563
646781d3 564 clk_disable_unprepare(ssp->clk);
e11933f6 565 dma_release_channel(ssp->dmach);
646781d3
MV
566
567 return 0;
568}
569
570static struct platform_driver mxs_spi_driver = {
571 .probe = mxs_spi_probe,
fd4a319b 572 .remove = mxs_spi_remove,
646781d3
MV
573 .driver = {
574 .name = DRIVER_NAME,
646781d3
MV
575 .of_match_table = mxs_spi_dt_ids,
576 },
577};
578
579module_platform_driver(mxs_spi_driver);
580
581MODULE_AUTHOR("Marek Vasut <marex@denx.de>");
582MODULE_DESCRIPTION("MXS SPI master driver");
583MODULE_LICENSE("GPL");
584MODULE_ALIAS("platform:mxs-spi");