blob: 22f7ce1279bd51d35bea6c388460325fcf6d1d22 [file] [log] [blame]
Chao Fu349ad662013-08-16 11:08:55 +08001/*
2 * drivers/spi/spi-fsl-dspi.c
3 *
4 * Copyright 2013 Freescale Semiconductor, Inc.
5 *
6 * Freescale DSPI driver
7 * This file contains a driver for the Freescale DSPI
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 */
15
Xiubo Lia3108362014-09-29 10:57:06 +080016#include <linux/clk.h>
17#include <linux/delay.h>
Sanchayan Maity90ba3702016-11-10 17:49:15 +053018#include <linux/dmaengine.h>
19#include <linux/dma-mapping.h>
Xiubo Lia3108362014-09-29 10:57:06 +080020#include <linux/err.h>
21#include <linux/errno.h>
22#include <linux/interrupt.h>
23#include <linux/io.h>
Chao Fu349ad662013-08-16 11:08:55 +080024#include <linux/kernel.h>
Aaron Brice95bf15f2015-04-03 13:39:31 -070025#include <linux/math64.h>
Chao Fu349ad662013-08-16 11:08:55 +080026#include <linux/module.h>
Chao Fu349ad662013-08-16 11:08:55 +080027#include <linux/of.h>
28#include <linux/of_device.h>
Mirza Krak432a17d2015-06-12 18:55:22 +020029#include <linux/pinctrl/consumer.h>
Xiubo Lia3108362014-09-29 10:57:06 +080030#include <linux/platform_device.h>
31#include <linux/pm_runtime.h>
32#include <linux/regmap.h>
33#include <linux/sched.h>
34#include <linux/spi/spi.h>
35#include <linux/spi/spi_bitbang.h>
Aaron Brice95bf15f2015-04-03 13:39:31 -070036#include <linux/time.h>
Chao Fu349ad662013-08-16 11:08:55 +080037
38#define DRIVER_NAME "fsl-dspi"
39
40#define TRAN_STATE_RX_VOID 0x01
41#define TRAN_STATE_TX_VOID 0x02
42#define TRAN_STATE_WORD_ODD_NUM 0x04
43
44#define DSPI_FIFO_SIZE 4
Sanchayan Maity90ba3702016-11-10 17:49:15 +053045#define DSPI_DMA_BUFSIZE (DSPI_FIFO_SIZE * 1024)
Chao Fu349ad662013-08-16 11:08:55 +080046
47#define SPI_MCR 0x00
48#define SPI_MCR_MASTER (1 << 31)
49#define SPI_MCR_PCSIS (0x3F << 16)
50#define SPI_MCR_CLR_TXF (1 << 11)
51#define SPI_MCR_CLR_RXF (1 << 10)
52
53#define SPI_TCR 0x08
Haikun Wangc042af92015-06-09 19:45:37 +080054#define SPI_TCR_GET_TCNT(x) (((x) & 0xffff0000) >> 16)
Chao Fu349ad662013-08-16 11:08:55 +080055
Alexander Stein5cc7b042014-11-04 09:20:18 +010056#define SPI_CTAR(x) (0x0c + (((x) & 0x3) * 4))
Chao Fu349ad662013-08-16 11:08:55 +080057#define SPI_CTAR_FMSZ(x) (((x) & 0x0000000f) << 27)
58#define SPI_CTAR_CPOL(x) ((x) << 26)
59#define SPI_CTAR_CPHA(x) ((x) << 25)
60#define SPI_CTAR_LSBFE(x) ((x) << 24)
Aaron Brice95bf15f2015-04-03 13:39:31 -070061#define SPI_CTAR_PCSSCK(x) (((x) & 0x00000003) << 22)
Chao Fu349ad662013-08-16 11:08:55 +080062#define SPI_CTAR_PASC(x) (((x) & 0x00000003) << 20)
63#define SPI_CTAR_PDT(x) (((x) & 0x00000003) << 18)
64#define SPI_CTAR_PBR(x) (((x) & 0x00000003) << 16)
65#define SPI_CTAR_CSSCK(x) (((x) & 0x0000000f) << 12)
66#define SPI_CTAR_ASC(x) (((x) & 0x0000000f) << 8)
67#define SPI_CTAR_DT(x) (((x) & 0x0000000f) << 4)
68#define SPI_CTAR_BR(x) ((x) & 0x0000000f)
Aaron Brice95bf15f2015-04-03 13:39:31 -070069#define SPI_CTAR_SCALE_BITS 0xf
Chao Fu349ad662013-08-16 11:08:55 +080070
71#define SPI_CTAR0_SLAVE 0x0c
72
73#define SPI_SR 0x2c
74#define SPI_SR_EOQF 0x10000000
Haikun Wangd1f4a382015-06-09 19:45:27 +080075#define SPI_SR_TCFQF 0x80000000
Chao Fu349ad662013-08-16 11:08:55 +080076
Sanchayan Maity90ba3702016-11-10 17:49:15 +053077#define SPI_RSER_TFFFE BIT(25)
78#define SPI_RSER_TFFFD BIT(24)
79#define SPI_RSER_RFDFE BIT(17)
80#define SPI_RSER_RFDFD BIT(16)
81
Chao Fu349ad662013-08-16 11:08:55 +080082#define SPI_RSER 0x30
83#define SPI_RSER_EOQFE 0x10000000
Haikun Wangd1f4a382015-06-09 19:45:27 +080084#define SPI_RSER_TCFQE 0x80000000
Chao Fu349ad662013-08-16 11:08:55 +080085
86#define SPI_PUSHR 0x34
87#define SPI_PUSHR_CONT (1 << 31)
Alexander Stein5cc7b042014-11-04 09:20:18 +010088#define SPI_PUSHR_CTAS(x) (((x) & 0x00000003) << 28)
Chao Fu349ad662013-08-16 11:08:55 +080089#define SPI_PUSHR_EOQ (1 << 27)
90#define SPI_PUSHR_CTCNT (1 << 26)
91#define SPI_PUSHR_PCS(x) (((1 << x) & 0x0000003f) << 16)
92#define SPI_PUSHR_TXDATA(x) ((x) & 0x0000ffff)
93
94#define SPI_PUSHR_SLAVE 0x34
95
96#define SPI_POPR 0x38
97#define SPI_POPR_RXDATA(x) ((x) & 0x0000ffff)
98
99#define SPI_TXFR0 0x3c
100#define SPI_TXFR1 0x40
101#define SPI_TXFR2 0x44
102#define SPI_TXFR3 0x48
103#define SPI_RXFR0 0x7c
104#define SPI_RXFR1 0x80
105#define SPI_RXFR2 0x84
106#define SPI_RXFR3 0x88
107
108#define SPI_FRAME_BITS(bits) SPI_CTAR_FMSZ((bits) - 1)
109#define SPI_FRAME_BITS_MASK SPI_CTAR_FMSZ(0xf)
110#define SPI_FRAME_BITS_16 SPI_CTAR_FMSZ(0xf)
111#define SPI_FRAME_BITS_8 SPI_CTAR_FMSZ(0x7)
112
113#define SPI_CS_INIT 0x01
114#define SPI_CS_ASSERT 0x02
115#define SPI_CS_DROP 0x04
116
Haikun Wangc042af92015-06-09 19:45:37 +0800117#define SPI_TCR_TCNT_MAX 0x10000
118
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530119#define DMA_COMPLETION_TIMEOUT msecs_to_jiffies(3000)
120
Chao Fu349ad662013-08-16 11:08:55 +0800121struct chip_data {
122 u32 mcr_val;
123 u32 ctar_val;
124 u16 void_write_data;
125};
126
Haikun Wangd1f4a382015-06-09 19:45:27 +0800127enum dspi_trans_mode {
128 DSPI_EOQ_MODE = 0,
129 DSPI_TCFQ_MODE,
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530130 DSPI_DMA_MODE,
Haikun Wangd1f4a382015-06-09 19:45:27 +0800131};
132
133struct fsl_dspi_devtype_data {
134 enum dspi_trans_mode trans_mode;
Bhuvanchandra DV9419b202016-03-22 01:41:52 +0530135 u8 max_clock_factor;
Haikun Wangd1f4a382015-06-09 19:45:27 +0800136};
137
138static const struct fsl_dspi_devtype_data vf610_data = {
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530139 .trans_mode = DSPI_DMA_MODE,
Bhuvanchandra DV9419b202016-03-22 01:41:52 +0530140 .max_clock_factor = 2,
Haikun Wangd1f4a382015-06-09 19:45:27 +0800141};
142
143static const struct fsl_dspi_devtype_data ls1021a_v1_data = {
144 .trans_mode = DSPI_TCFQ_MODE,
Bhuvanchandra DV9419b202016-03-22 01:41:52 +0530145 .max_clock_factor = 8,
Haikun Wangd1f4a382015-06-09 19:45:27 +0800146};
147
148static const struct fsl_dspi_devtype_data ls2085a_data = {
149 .trans_mode = DSPI_TCFQ_MODE,
Bhuvanchandra DV9419b202016-03-22 01:41:52 +0530150 .max_clock_factor = 8,
Haikun Wangd1f4a382015-06-09 19:45:27 +0800151};
152
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530153struct fsl_dspi_dma {
154 u32 curr_xfer_len;
155
156 u32 *tx_dma_buf;
157 struct dma_chan *chan_tx;
158 dma_addr_t tx_dma_phys;
159 struct completion cmd_tx_complete;
160 struct dma_async_tx_descriptor *tx_desc;
161
162 u32 *rx_dma_buf;
163 struct dma_chan *chan_rx;
164 dma_addr_t rx_dma_phys;
165 struct completion cmd_rx_complete;
166 struct dma_async_tx_descriptor *rx_desc;
167};
168
Chao Fu349ad662013-08-16 11:08:55 +0800169struct fsl_dspi {
Chao Fu9298bc72015-01-27 16:27:22 +0530170 struct spi_master *master;
Chao Fu349ad662013-08-16 11:08:55 +0800171 struct platform_device *pdev;
172
Chao Fu1acbdeb2014-02-12 15:29:05 +0800173 struct regmap *regmap;
Chao Fu349ad662013-08-16 11:08:55 +0800174 int irq;
Chao Fu88386e82014-02-12 15:29:06 +0800175 struct clk *clk;
Chao Fu349ad662013-08-16 11:08:55 +0800176
Chao Fu88386e82014-02-12 15:29:06 +0800177 struct spi_transfer *cur_transfer;
Chao Fu9298bc72015-01-27 16:27:22 +0530178 struct spi_message *cur_msg;
Chao Fu349ad662013-08-16 11:08:55 +0800179 struct chip_data *cur_chip;
180 size_t len;
181 void *tx;
182 void *tx_end;
183 void *rx;
184 void *rx_end;
185 char dataflags;
186 u8 cs;
187 u16 void_write_data;
Chao Fu9298bc72015-01-27 16:27:22 +0530188 u32 cs_change;
LABBE Corentin94b968b2016-08-16 11:50:20 +0200189 const struct fsl_dspi_devtype_data *devtype_data;
Chao Fu349ad662013-08-16 11:08:55 +0800190
Chao Fu88386e82014-02-12 15:29:06 +0800191 wait_queue_head_t waitq;
192 u32 waitflags;
Haikun Wangc042af92015-06-09 19:45:37 +0800193
194 u32 spi_tcnt;
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530195 struct fsl_dspi_dma *dma;
Chao Fu349ad662013-08-16 11:08:55 +0800196};
197
198static inline int is_double_byte_mode(struct fsl_dspi *dspi)
199{
Chao Fu1acbdeb2014-02-12 15:29:05 +0800200 unsigned int val;
Chao Fu349ad662013-08-16 11:08:55 +0800201
Bhuvanchandra DVef22d162015-12-10 11:25:30 +0530202 regmap_read(dspi->regmap, SPI_CTAR(0), &val);
Chao Fu349ad662013-08-16 11:08:55 +0800203
Chao Fu1acbdeb2014-02-12 15:29:05 +0800204 return ((val & SPI_FRAME_BITS_MASK) == SPI_FRAME_BITS(8)) ? 0 : 1;
Chao Fu349ad662013-08-16 11:08:55 +0800205}
206
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530207static void dspi_tx_dma_callback(void *arg)
208{
209 struct fsl_dspi *dspi = arg;
210 struct fsl_dspi_dma *dma = dspi->dma;
211
212 complete(&dma->cmd_tx_complete);
213}
214
215static void dspi_rx_dma_callback(void *arg)
216{
217 struct fsl_dspi *dspi = arg;
218 struct fsl_dspi_dma *dma = dspi->dma;
219 int rx_word;
220 int i, len;
221 u16 d;
222
223 rx_word = is_double_byte_mode(dspi);
224
225 len = rx_word ? (dma->curr_xfer_len / 2) : dma->curr_xfer_len;
226
227 if (!(dspi->dataflags & TRAN_STATE_RX_VOID)) {
228 for (i = 0; i < len; i++) {
229 d = dspi->dma->rx_dma_buf[i];
230 rx_word ? (*(u16 *)dspi->rx = d) :
231 (*(u8 *)dspi->rx = d);
232 dspi->rx += rx_word + 1;
233 }
234 }
235
236 complete(&dma->cmd_rx_complete);
237}
238
239static int dspi_next_xfer_dma_submit(struct fsl_dspi *dspi)
240{
241 struct fsl_dspi_dma *dma = dspi->dma;
242 struct device *dev = &dspi->pdev->dev;
243 int time_left;
244 int tx_word;
245 int i, len;
246 u16 val;
247
248 tx_word = is_double_byte_mode(dspi);
249
250 len = tx_word ? (dma->curr_xfer_len / 2) : dma->curr_xfer_len;
251
252 for (i = 0; i < len - 1; i++) {
253 val = tx_word ? *(u16 *) dspi->tx : *(u8 *) dspi->tx;
254 dspi->dma->tx_dma_buf[i] =
255 SPI_PUSHR_TXDATA(val) | SPI_PUSHR_PCS(dspi->cs) |
256 SPI_PUSHR_CTAS(0) | SPI_PUSHR_CONT;
257 dspi->tx += tx_word + 1;
258 }
259
260 val = tx_word ? *(u16 *) dspi->tx : *(u8 *) dspi->tx;
261 dspi->dma->tx_dma_buf[i] = SPI_PUSHR_TXDATA(val) |
262 SPI_PUSHR_PCS(dspi->cs) |
263 SPI_PUSHR_CTAS(0);
264 dspi->tx += tx_word + 1;
265
266 dma->tx_desc = dmaengine_prep_slave_single(dma->chan_tx,
267 dma->tx_dma_phys,
268 DSPI_DMA_BUFSIZE, DMA_MEM_TO_DEV,
269 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
270 if (!dma->tx_desc) {
271 dev_err(dev, "Not able to get desc for DMA xfer\n");
272 return -EIO;
273 }
274
275 dma->tx_desc->callback = dspi_tx_dma_callback;
276 dma->tx_desc->callback_param = dspi;
277 if (dma_submit_error(dmaengine_submit(dma->tx_desc))) {
278 dev_err(dev, "DMA submit failed\n");
279 return -EINVAL;
280 }
281
282 dma->rx_desc = dmaengine_prep_slave_single(dma->chan_rx,
283 dma->rx_dma_phys,
284 DSPI_DMA_BUFSIZE, DMA_DEV_TO_MEM,
285 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
286 if (!dma->rx_desc) {
287 dev_err(dev, "Not able to get desc for DMA xfer\n");
288 return -EIO;
289 }
290
291 dma->rx_desc->callback = dspi_rx_dma_callback;
292 dma->rx_desc->callback_param = dspi;
293 if (dma_submit_error(dmaengine_submit(dma->rx_desc))) {
294 dev_err(dev, "DMA submit failed\n");
295 return -EINVAL;
296 }
297
298 reinit_completion(&dspi->dma->cmd_rx_complete);
299 reinit_completion(&dspi->dma->cmd_tx_complete);
300
301 dma_async_issue_pending(dma->chan_rx);
302 dma_async_issue_pending(dma->chan_tx);
303
304 time_left = wait_for_completion_timeout(&dspi->dma->cmd_tx_complete,
305 DMA_COMPLETION_TIMEOUT);
306 if (time_left == 0) {
307 dev_err(dev, "DMA tx timeout\n");
308 dmaengine_terminate_all(dma->chan_tx);
309 dmaengine_terminate_all(dma->chan_rx);
310 return -ETIMEDOUT;
311 }
312
313 time_left = wait_for_completion_timeout(&dspi->dma->cmd_rx_complete,
314 DMA_COMPLETION_TIMEOUT);
315 if (time_left == 0) {
316 dev_err(dev, "DMA rx timeout\n");
317 dmaengine_terminate_all(dma->chan_tx);
318 dmaengine_terminate_all(dma->chan_rx);
319 return -ETIMEDOUT;
320 }
321
322 return 0;
323}
324
325static int dspi_dma_xfer(struct fsl_dspi *dspi)
326{
327 struct fsl_dspi_dma *dma = dspi->dma;
328 struct device *dev = &dspi->pdev->dev;
329 int curr_remaining_bytes;
330 int bytes_per_buffer;
331 int tx_word;
332 int ret = 0;
333
334 tx_word = is_double_byte_mode(dspi);
335 curr_remaining_bytes = dspi->len;
336 while (curr_remaining_bytes) {
337 /* Check if current transfer fits the DMA buffer */
338 dma->curr_xfer_len = curr_remaining_bytes;
339 bytes_per_buffer = DSPI_DMA_BUFSIZE /
340 (DSPI_FIFO_SIZE / (tx_word ? 2 : 1));
341 if (curr_remaining_bytes > bytes_per_buffer)
342 dma->curr_xfer_len = bytes_per_buffer;
343
344 ret = dspi_next_xfer_dma_submit(dspi);
345 if (ret) {
346 dev_err(dev, "DMA transfer failed\n");
347 goto exit;
348
349 } else {
350 curr_remaining_bytes -= dma->curr_xfer_len;
351 if (curr_remaining_bytes < 0)
352 curr_remaining_bytes = 0;
353 dspi->len = curr_remaining_bytes;
354 }
355 }
356
357exit:
358 return ret;
359}
360
361static int dspi_request_dma(struct fsl_dspi *dspi, phys_addr_t phy_addr)
362{
363 struct fsl_dspi_dma *dma;
364 struct dma_slave_config cfg;
365 struct device *dev = &dspi->pdev->dev;
366 int ret;
367
368 dma = devm_kzalloc(dev, sizeof(*dma), GFP_KERNEL);
369 if (!dma)
370 return -ENOMEM;
371
372 dma->chan_rx = dma_request_slave_channel(dev, "rx");
373 if (!dma->chan_rx) {
374 dev_err(dev, "rx dma channel not available\n");
375 ret = -ENODEV;
376 return ret;
377 }
378
379 dma->chan_tx = dma_request_slave_channel(dev, "tx");
380 if (!dma->chan_tx) {
381 dev_err(dev, "tx dma channel not available\n");
382 ret = -ENODEV;
383 goto err_tx_channel;
384 }
385
386 dma->tx_dma_buf = dma_alloc_coherent(dev, DSPI_DMA_BUFSIZE,
387 &dma->tx_dma_phys, GFP_KERNEL);
388 if (!dma->tx_dma_buf) {
389 ret = -ENOMEM;
390 goto err_tx_dma_buf;
391 }
392
393 dma->rx_dma_buf = dma_alloc_coherent(dev, DSPI_DMA_BUFSIZE,
394 &dma->rx_dma_phys, GFP_KERNEL);
395 if (!dma->rx_dma_buf) {
396 ret = -ENOMEM;
397 goto err_rx_dma_buf;
398 }
399
400 cfg.src_addr = phy_addr + SPI_POPR;
401 cfg.dst_addr = phy_addr + SPI_PUSHR;
402 cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
403 cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
404 cfg.src_maxburst = 1;
405 cfg.dst_maxburst = 1;
406
407 cfg.direction = DMA_DEV_TO_MEM;
408 ret = dmaengine_slave_config(dma->chan_rx, &cfg);
409 if (ret) {
410 dev_err(dev, "can't configure rx dma channel\n");
411 ret = -EINVAL;
412 goto err_slave_config;
413 }
414
415 cfg.direction = DMA_MEM_TO_DEV;
416 ret = dmaengine_slave_config(dma->chan_tx, &cfg);
417 if (ret) {
418 dev_err(dev, "can't configure tx dma channel\n");
419 ret = -EINVAL;
420 goto err_slave_config;
421 }
422
423 dspi->dma = dma;
424 init_completion(&dma->cmd_tx_complete);
425 init_completion(&dma->cmd_rx_complete);
426
427 return 0;
428
429err_slave_config:
Sanchayan Maity27d21e92016-11-22 12:31:32 +0530430 dma_free_coherent(dev, DSPI_DMA_BUFSIZE,
431 dma->rx_dma_buf, dma->rx_dma_phys);
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530432err_rx_dma_buf:
Sanchayan Maity27d21e92016-11-22 12:31:32 +0530433 dma_free_coherent(dev, DSPI_DMA_BUFSIZE,
434 dma->tx_dma_buf, dma->tx_dma_phys);
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530435err_tx_dma_buf:
436 dma_release_channel(dma->chan_tx);
437err_tx_channel:
438 dma_release_channel(dma->chan_rx);
439
440 devm_kfree(dev, dma);
441 dspi->dma = NULL;
442
443 return ret;
444}
445
446static void dspi_release_dma(struct fsl_dspi *dspi)
447{
448 struct fsl_dspi_dma *dma = dspi->dma;
449 struct device *dev = &dspi->pdev->dev;
450
451 if (dma) {
452 if (dma->chan_tx) {
453 dma_unmap_single(dev, dma->tx_dma_phys,
454 DSPI_DMA_BUFSIZE, DMA_TO_DEVICE);
455 dma_release_channel(dma->chan_tx);
456 }
457
458 if (dma->chan_rx) {
459 dma_unmap_single(dev, dma->rx_dma_phys,
460 DSPI_DMA_BUFSIZE, DMA_FROM_DEVICE);
461 dma_release_channel(dma->chan_rx);
462 }
463 }
464}
465
Chao Fu349ad662013-08-16 11:08:55 +0800466static void hz_to_spi_baud(char *pbr, char *br, int speed_hz,
467 unsigned long clkrate)
468{
469 /* Valid baud rate pre-scaler values */
470 int pbr_tbl[4] = {2, 3, 5, 7};
471 int brs[16] = { 2, 4, 6, 8,
472 16, 32, 64, 128,
473 256, 512, 1024, 2048,
474 4096, 8192, 16384, 32768 };
Aaron Brice6fd63082015-03-30 10:49:15 -0700475 int scale_needed, scale, minscale = INT_MAX;
476 int i, j;
Chao Fu349ad662013-08-16 11:08:55 +0800477
Aaron Brice6fd63082015-03-30 10:49:15 -0700478 scale_needed = clkrate / speed_hz;
Aaron Bricee689d6d2015-04-03 13:39:29 -0700479 if (clkrate % speed_hz)
480 scale_needed++;
Chao Fu349ad662013-08-16 11:08:55 +0800481
Aaron Brice6fd63082015-03-30 10:49:15 -0700482 for (i = 0; i < ARRAY_SIZE(brs); i++)
483 for (j = 0; j < ARRAY_SIZE(pbr_tbl); j++) {
484 scale = brs[i] * pbr_tbl[j];
485 if (scale >= scale_needed) {
486 if (scale < minscale) {
487 minscale = scale;
488 *br = i;
489 *pbr = j;
490 }
491 break;
Chao Fu349ad662013-08-16 11:08:55 +0800492 }
493 }
494
Aaron Brice6fd63082015-03-30 10:49:15 -0700495 if (minscale == INT_MAX) {
496 pr_warn("Can not find valid baud rate,speed_hz is %d,clkrate is %ld, we use the max prescaler value.\n",
497 speed_hz, clkrate);
498 *pbr = ARRAY_SIZE(pbr_tbl) - 1;
499 *br = ARRAY_SIZE(brs) - 1;
500 }
Chao Fu349ad662013-08-16 11:08:55 +0800501}
502
Aaron Brice95bf15f2015-04-03 13:39:31 -0700503static void ns_delay_scale(char *psc, char *sc, int delay_ns,
504 unsigned long clkrate)
505{
506 int pscale_tbl[4] = {1, 3, 5, 7};
507 int scale_needed, scale, minscale = INT_MAX;
508 int i, j;
509 u32 remainder;
510
511 scale_needed = div_u64_rem((u64)delay_ns * clkrate, NSEC_PER_SEC,
512 &remainder);
513 if (remainder)
514 scale_needed++;
515
516 for (i = 0; i < ARRAY_SIZE(pscale_tbl); i++)
517 for (j = 0; j <= SPI_CTAR_SCALE_BITS; j++) {
518 scale = pscale_tbl[i] * (2 << j);
519 if (scale >= scale_needed) {
520 if (scale < minscale) {
521 minscale = scale;
522 *psc = i;
523 *sc = j;
524 }
525 break;
526 }
527 }
528
529 if (minscale == INT_MAX) {
530 pr_warn("Cannot find correct scale values for %dns delay at clkrate %ld, using max prescaler value",
531 delay_ns, clkrate);
532 *psc = ARRAY_SIZE(pscale_tbl) - 1;
533 *sc = SPI_CTAR_SCALE_BITS;
534 }
Chao Fu349ad662013-08-16 11:08:55 +0800535}
536
Haikun Wangd1f4a382015-06-09 19:45:27 +0800537static u32 dspi_data_to_pushr(struct fsl_dspi *dspi, int tx_word)
538{
539 u16 d16;
540
541 if (!(dspi->dataflags & TRAN_STATE_TX_VOID))
542 d16 = tx_word ? *(u16 *)dspi->tx : *(u8 *)dspi->tx;
543 else
544 d16 = dspi->void_write_data;
545
546 dspi->tx += tx_word + 1;
547 dspi->len -= tx_word + 1;
548
549 return SPI_PUSHR_TXDATA(d16) |
550 SPI_PUSHR_PCS(dspi->cs) |
Bhuvanchandra DVef22d162015-12-10 11:25:30 +0530551 SPI_PUSHR_CTAS(0) |
Haikun Wangd1f4a382015-06-09 19:45:27 +0800552 SPI_PUSHR_CONT;
553}
554
555static void dspi_data_from_popr(struct fsl_dspi *dspi, int rx_word)
556{
557 u16 d;
558 unsigned int val;
559
560 regmap_read(dspi->regmap, SPI_POPR, &val);
561 d = SPI_POPR_RXDATA(val);
562
563 if (!(dspi->dataflags & TRAN_STATE_RX_VOID))
564 rx_word ? (*(u16 *)dspi->rx = d) : (*(u8 *)dspi->rx = d);
565
566 dspi->rx += rx_word + 1;
567}
568
569static int dspi_eoq_write(struct fsl_dspi *dspi)
Chao Fu349ad662013-08-16 11:08:55 +0800570{
571 int tx_count = 0;
572 int tx_word;
Chao Fu349ad662013-08-16 11:08:55 +0800573 u32 dspi_pushr = 0;
Chao Fu349ad662013-08-16 11:08:55 +0800574
575 tx_word = is_double_byte_mode(dspi);
576
Chao Fu349ad662013-08-16 11:08:55 +0800577 while (dspi->len && (tx_count < DSPI_FIFO_SIZE)) {
Haikun Wangd1f4a382015-06-09 19:45:27 +0800578 /* If we are in word mode, only have a single byte to transfer
579 * switch to byte mode temporarily. Will switch back at the
580 * end of the transfer.
581 */
582 if (tx_word && (dspi->len == 1)) {
583 dspi->dataflags |= TRAN_STATE_WORD_ODD_NUM;
Bhuvanchandra DVef22d162015-12-10 11:25:30 +0530584 regmap_update_bits(dspi->regmap, SPI_CTAR(0),
Haikun Wangd1f4a382015-06-09 19:45:27 +0800585 SPI_FRAME_BITS_MASK, SPI_FRAME_BITS(8));
586 tx_word = 0;
Chao Fu349ad662013-08-16 11:08:55 +0800587 }
588
Haikun Wangd1f4a382015-06-09 19:45:27 +0800589 dspi_pushr = dspi_data_to_pushr(dspi, tx_word);
590
Chao Fu349ad662013-08-16 11:08:55 +0800591 if (dspi->len == 0 || tx_count == DSPI_FIFO_SIZE - 1) {
592 /* last transfer in the transfer */
593 dspi_pushr |= SPI_PUSHR_EOQ;
Chao Fu9298bc72015-01-27 16:27:22 +0530594 if ((dspi->cs_change) && (!dspi->len))
595 dspi_pushr &= ~SPI_PUSHR_CONT;
Chao Fu349ad662013-08-16 11:08:55 +0800596 } else if (tx_word && (dspi->len == 1))
597 dspi_pushr |= SPI_PUSHR_EOQ;
598
Chao Fu1acbdeb2014-02-12 15:29:05 +0800599 regmap_write(dspi->regmap, SPI_PUSHR, dspi_pushr);
600
Chao Fu349ad662013-08-16 11:08:55 +0800601 tx_count++;
602 }
603
604 return tx_count * (tx_word + 1);
605}
606
Haikun Wangd1f4a382015-06-09 19:45:27 +0800607static int dspi_eoq_read(struct fsl_dspi *dspi)
Chao Fu349ad662013-08-16 11:08:55 +0800608{
609 int rx_count = 0;
610 int rx_word = is_double_byte_mode(dspi);
Chao Fu9298bc72015-01-27 16:27:22 +0530611
Chao Fu349ad662013-08-16 11:08:55 +0800612 while ((dspi->rx < dspi->rx_end)
613 && (rx_count < DSPI_FIFO_SIZE)) {
Haikun Wangd1f4a382015-06-09 19:45:27 +0800614 if (rx_word && (dspi->rx_end - dspi->rx) == 1)
615 rx_word = 0;
Chao Fu1acbdeb2014-02-12 15:29:05 +0800616
Haikun Wangd1f4a382015-06-09 19:45:27 +0800617 dspi_data_from_popr(dspi, rx_word);
Chao Fu349ad662013-08-16 11:08:55 +0800618 rx_count++;
619 }
620
621 return rx_count;
622}
623
Haikun Wangd1f4a382015-06-09 19:45:27 +0800624static int dspi_tcfq_write(struct fsl_dspi *dspi)
625{
626 int tx_word;
627 u32 dspi_pushr = 0;
628
629 tx_word = is_double_byte_mode(dspi);
630
631 if (tx_word && (dspi->len == 1)) {
632 dspi->dataflags |= TRAN_STATE_WORD_ODD_NUM;
Bhuvanchandra DVef22d162015-12-10 11:25:30 +0530633 regmap_update_bits(dspi->regmap, SPI_CTAR(0),
Haikun Wangd1f4a382015-06-09 19:45:27 +0800634 SPI_FRAME_BITS_MASK, SPI_FRAME_BITS(8));
635 tx_word = 0;
636 }
637
638 dspi_pushr = dspi_data_to_pushr(dspi, tx_word);
639
640 if ((dspi->cs_change) && (!dspi->len))
641 dspi_pushr &= ~SPI_PUSHR_CONT;
642
643 regmap_write(dspi->regmap, SPI_PUSHR, dspi_pushr);
644
645 return tx_word + 1;
646}
647
648static void dspi_tcfq_read(struct fsl_dspi *dspi)
649{
650 int rx_word = is_double_byte_mode(dspi);
651
652 if (rx_word && (dspi->rx_end - dspi->rx) == 1)
653 rx_word = 0;
654
655 dspi_data_from_popr(dspi, rx_word);
656}
657
Chao Fu9298bc72015-01-27 16:27:22 +0530658static int dspi_transfer_one_message(struct spi_master *master,
659 struct spi_message *message)
Chao Fu349ad662013-08-16 11:08:55 +0800660{
Chao Fu9298bc72015-01-27 16:27:22 +0530661 struct fsl_dspi *dspi = spi_master_get_devdata(master);
662 struct spi_device *spi = message->spi;
663 struct spi_transfer *transfer;
664 int status = 0;
Haikun Wangd1f4a382015-06-09 19:45:27 +0800665 enum dspi_trans_mode trans_mode;
Haikun Wangc042af92015-06-09 19:45:37 +0800666 u32 spi_tcr;
667
668 regmap_read(dspi->regmap, SPI_TCR, &spi_tcr);
669 dspi->spi_tcnt = SPI_TCR_GET_TCNT(spi_tcr);
Haikun Wangd1f4a382015-06-09 19:45:27 +0800670
Chao Fu9298bc72015-01-27 16:27:22 +0530671 message->actual_length = 0;
Chao Fu349ad662013-08-16 11:08:55 +0800672
Chao Fu9298bc72015-01-27 16:27:22 +0530673 list_for_each_entry(transfer, &message->transfers, transfer_list) {
674 dspi->cur_transfer = transfer;
675 dspi->cur_msg = message;
676 dspi->cur_chip = spi_get_ctldata(spi);
677 dspi->cs = spi->chip_select;
Haikun Wang9deef022015-05-13 18:12:15 +0800678 dspi->cs_change = 0;
Andrey Vostrikov92dc20d2016-04-05 15:33:14 +0300679 if (list_is_last(&dspi->cur_transfer->transfer_list,
680 &dspi->cur_msg->transfers) || transfer->cs_change)
Haikun Wang9deef022015-05-13 18:12:15 +0800681 dspi->cs_change = 1;
Chao Fu9298bc72015-01-27 16:27:22 +0530682 dspi->void_write_data = dspi->cur_chip->void_write_data;
Chao Fu349ad662013-08-16 11:08:55 +0800683
Chao Fu9298bc72015-01-27 16:27:22 +0530684 dspi->dataflags = 0;
685 dspi->tx = (void *)transfer->tx_buf;
686 dspi->tx_end = dspi->tx + transfer->len;
687 dspi->rx = transfer->rx_buf;
688 dspi->rx_end = dspi->rx + transfer->len;
689 dspi->len = transfer->len;
Chao Fu349ad662013-08-16 11:08:55 +0800690
Chao Fu9298bc72015-01-27 16:27:22 +0530691 if (!dspi->rx)
692 dspi->dataflags |= TRAN_STATE_RX_VOID;
Chao Fu349ad662013-08-16 11:08:55 +0800693
Chao Fu9298bc72015-01-27 16:27:22 +0530694 if (!dspi->tx)
695 dspi->dataflags |= TRAN_STATE_TX_VOID;
Chao Fu349ad662013-08-16 11:08:55 +0800696
Chao Fu9298bc72015-01-27 16:27:22 +0530697 regmap_write(dspi->regmap, SPI_MCR, dspi->cur_chip->mcr_val);
698 regmap_update_bits(dspi->regmap, SPI_MCR,
699 SPI_MCR_CLR_TXF | SPI_MCR_CLR_RXF,
700 SPI_MCR_CLR_TXF | SPI_MCR_CLR_RXF);
Bhuvanchandra DVef22d162015-12-10 11:25:30 +0530701 regmap_write(dspi->regmap, SPI_CTAR(0),
Chao Fu1acbdeb2014-02-12 15:29:05 +0800702 dspi->cur_chip->ctar_val);
Chao Fu349ad662013-08-16 11:08:55 +0800703
Haikun Wangd1f4a382015-06-09 19:45:27 +0800704 trans_mode = dspi->devtype_data->trans_mode;
705 switch (trans_mode) {
706 case DSPI_EOQ_MODE:
707 regmap_write(dspi->regmap, SPI_RSER, SPI_RSER_EOQFE);
Haikun Wangc042af92015-06-09 19:45:37 +0800708 dspi_eoq_write(dspi);
Haikun Wangd1f4a382015-06-09 19:45:27 +0800709 break;
710 case DSPI_TCFQ_MODE:
711 regmap_write(dspi->regmap, SPI_RSER, SPI_RSER_TCFQE);
Haikun Wangc042af92015-06-09 19:45:37 +0800712 dspi_tcfq_write(dspi);
Haikun Wangd1f4a382015-06-09 19:45:27 +0800713 break;
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530714 case DSPI_DMA_MODE:
715 regmap_write(dspi->regmap, SPI_RSER,
716 SPI_RSER_TFFFE | SPI_RSER_TFFFD |
717 SPI_RSER_RFDFE | SPI_RSER_RFDFD);
718 status = dspi_dma_xfer(dspi);
Sanchayan Maity98114302016-11-17 17:46:48 +0530719 break;
Haikun Wangd1f4a382015-06-09 19:45:27 +0800720 default:
721 dev_err(&dspi->pdev->dev, "unsupported trans_mode %u\n",
722 trans_mode);
723 status = -EINVAL;
724 goto out;
725 }
Chao Fu349ad662013-08-16 11:08:55 +0800726
Sanchayan Maity98114302016-11-17 17:46:48 +0530727 if (trans_mode != DSPI_DMA_MODE) {
728 if (wait_event_interruptible(dspi->waitq,
729 dspi->waitflags))
730 dev_err(&dspi->pdev->dev,
731 "wait transfer complete fail!\n");
732 dspi->waitflags = 0;
733 }
Chao Fu349ad662013-08-16 11:08:55 +0800734
Chao Fu9298bc72015-01-27 16:27:22 +0530735 if (transfer->delay_usecs)
736 udelay(transfer->delay_usecs);
Chao Fu349ad662013-08-16 11:08:55 +0800737 }
738
Haikun Wangd1f4a382015-06-09 19:45:27 +0800739out:
Chao Fu9298bc72015-01-27 16:27:22 +0530740 message->status = status;
741 spi_finalize_current_message(master);
742
743 return status;
Chao Fu349ad662013-08-16 11:08:55 +0800744}
745
Chao Fu9298bc72015-01-27 16:27:22 +0530746static int dspi_setup(struct spi_device *spi)
Chao Fu349ad662013-08-16 11:08:55 +0800747{
748 struct chip_data *chip;
749 struct fsl_dspi *dspi = spi_master_get_devdata(spi->master);
Aaron Brice95bf15f2015-04-03 13:39:31 -0700750 u32 cs_sck_delay = 0, sck_cs_delay = 0;
751 unsigned char br = 0, pbr = 0, pcssck = 0, cssck = 0;
752 unsigned char pasc = 0, asc = 0, fmsz = 0;
753 unsigned long clkrate;
Chao Fu349ad662013-08-16 11:08:55 +0800754
Bhuvanchandra DVceadfd82015-01-31 22:03:25 +0530755 if ((spi->bits_per_word >= 4) && (spi->bits_per_word <= 16)) {
756 fmsz = spi->bits_per_word - 1;
757 } else {
758 pr_err("Invalid wordsize\n");
759 return -ENODEV;
760 }
761
Chao Fu349ad662013-08-16 11:08:55 +0800762 /* Only alloc on first setup */
763 chip = spi_get_ctldata(spi);
764 if (chip == NULL) {
Bhuvanchandra DV973fbce2015-01-27 16:27:20 +0530765 chip = kzalloc(sizeof(struct chip_data), GFP_KERNEL);
Chao Fu349ad662013-08-16 11:08:55 +0800766 if (!chip)
767 return -ENOMEM;
768 }
769
Aaron Brice95bf15f2015-04-03 13:39:31 -0700770 of_property_read_u32(spi->dev.of_node, "fsl,spi-cs-sck-delay",
771 &cs_sck_delay);
772
773 of_property_read_u32(spi->dev.of_node, "fsl,spi-sck-cs-delay",
774 &sck_cs_delay);
775
Chao Fu349ad662013-08-16 11:08:55 +0800776 chip->mcr_val = SPI_MCR_MASTER | SPI_MCR_PCSIS |
777 SPI_MCR_CLR_TXF | SPI_MCR_CLR_RXF;
Chao Fu349ad662013-08-16 11:08:55 +0800778
779 chip->void_write_data = 0;
780
Aaron Brice95bf15f2015-04-03 13:39:31 -0700781 clkrate = clk_get_rate(dspi->clk);
782 hz_to_spi_baud(&pbr, &br, spi->max_speed_hz, clkrate);
783
784 /* Set PCS to SCK delay scale values */
785 ns_delay_scale(&pcssck, &cssck, cs_sck_delay, clkrate);
786
787 /* Set After SCK delay scale values */
788 ns_delay_scale(&pasc, &asc, sck_cs_delay, clkrate);
Chao Fu349ad662013-08-16 11:08:55 +0800789
790 chip->ctar_val = SPI_CTAR_FMSZ(fmsz)
791 | SPI_CTAR_CPOL(spi->mode & SPI_CPOL ? 1 : 0)
792 | SPI_CTAR_CPHA(spi->mode & SPI_CPHA ? 1 : 0)
793 | SPI_CTAR_LSBFE(spi->mode & SPI_LSB_FIRST ? 1 : 0)
Aaron Brice95bf15f2015-04-03 13:39:31 -0700794 | SPI_CTAR_PCSSCK(pcssck)
795 | SPI_CTAR_CSSCK(cssck)
796 | SPI_CTAR_PASC(pasc)
797 | SPI_CTAR_ASC(asc)
Chao Fu349ad662013-08-16 11:08:55 +0800798 | SPI_CTAR_PBR(pbr)
799 | SPI_CTAR_BR(br);
800
801 spi_set_ctldata(spi, chip);
802
803 return 0;
804}
805
Bhuvanchandra DV973fbce2015-01-27 16:27:20 +0530806static void dspi_cleanup(struct spi_device *spi)
807{
808 struct chip_data *chip = spi_get_ctldata((struct spi_device *)spi);
809
810 dev_dbg(&spi->dev, "spi_device %u.%u cleanup\n",
811 spi->master->bus_num, spi->chip_select);
812
813 kfree(chip);
814}
815
Chao Fu349ad662013-08-16 11:08:55 +0800816static irqreturn_t dspi_interrupt(int irq, void *dev_id)
817{
818 struct fsl_dspi *dspi = (struct fsl_dspi *)dev_id;
Chao Fu9298bc72015-01-27 16:27:22 +0530819 struct spi_message *msg = dspi->cur_msg;
Haikun Wangd1f4a382015-06-09 19:45:27 +0800820 enum dspi_trans_mode trans_mode;
Haikun Wangc042af92015-06-09 19:45:37 +0800821 u32 spi_sr, spi_tcr;
822 u32 spi_tcnt, tcnt_diff;
823 int tx_word;
Chao Fu349ad662013-08-16 11:08:55 +0800824
Haikun Wangd1f4a382015-06-09 19:45:27 +0800825 regmap_read(dspi->regmap, SPI_SR, &spi_sr);
826 regmap_write(dspi->regmap, SPI_SR, spi_sr);
827
Chao Fu349ad662013-08-16 11:08:55 +0800828
Haikun Wangc042af92015-06-09 19:45:37 +0800829 if (spi_sr & (SPI_SR_EOQF | SPI_SR_TCFQF)) {
830 tx_word = is_double_byte_mode(dspi);
Chao Fu1acbdeb2014-02-12 15:29:05 +0800831
Haikun Wangc042af92015-06-09 19:45:37 +0800832 regmap_read(dspi->regmap, SPI_TCR, &spi_tcr);
833 spi_tcnt = SPI_TCR_GET_TCNT(spi_tcr);
834 /*
835 * The width of SPI Transfer Counter in SPI_TCR is 16bits,
836 * so the max couner is 65535. When the counter reach 65535,
837 * it will wrap around, counter reset to zero.
838 * spi_tcnt my be less than dspi->spi_tcnt, it means the
839 * counter already wrapped around.
840 * SPI Transfer Counter is a counter of transmitted frames.
841 * The size of frame maybe two bytes.
842 */
843 tcnt_diff = ((spi_tcnt + SPI_TCR_TCNT_MAX) - dspi->spi_tcnt)
844 % SPI_TCR_TCNT_MAX;
845 tcnt_diff *= (tx_word + 1);
846 if (dspi->dataflags & TRAN_STATE_WORD_ODD_NUM)
847 tcnt_diff--;
848
849 msg->actual_length += tcnt_diff;
850
851 dspi->spi_tcnt = spi_tcnt;
852
853 trans_mode = dspi->devtype_data->trans_mode;
Haikun Wangd1f4a382015-06-09 19:45:27 +0800854 switch (trans_mode) {
855 case DSPI_EOQ_MODE:
Haikun Wangc042af92015-06-09 19:45:37 +0800856 dspi_eoq_read(dspi);
Haikun Wangd1f4a382015-06-09 19:45:27 +0800857 break;
858 case DSPI_TCFQ_MODE:
Haikun Wangc042af92015-06-09 19:45:37 +0800859 dspi_tcfq_read(dspi);
Haikun Wangd1f4a382015-06-09 19:45:27 +0800860 break;
861 default:
862 dev_err(&dspi->pdev->dev, "unsupported trans_mode %u\n",
863 trans_mode);
Haikun Wangc042af92015-06-09 19:45:37 +0800864 return IRQ_HANDLED;
865 }
866
867 if (!dspi->len) {
868 if (dspi->dataflags & TRAN_STATE_WORD_ODD_NUM) {
869 regmap_update_bits(dspi->regmap,
Bhuvanchandra DVef22d162015-12-10 11:25:30 +0530870 SPI_CTAR(0),
Haikun Wangc042af92015-06-09 19:45:37 +0800871 SPI_FRAME_BITS_MASK,
872 SPI_FRAME_BITS(16));
873 dspi->dataflags &= ~TRAN_STATE_WORD_ODD_NUM;
874 }
875
876 dspi->waitflags = 1;
877 wake_up_interruptible(&dspi->waitq);
878 } else {
879 switch (trans_mode) {
880 case DSPI_EOQ_MODE:
881 dspi_eoq_write(dspi);
882 break;
883 case DSPI_TCFQ_MODE:
884 dspi_tcfq_write(dspi);
885 break;
886 default:
887 dev_err(&dspi->pdev->dev,
888 "unsupported trans_mode %u\n",
889 trans_mode);
890 }
Haikun Wangd1f4a382015-06-09 19:45:27 +0800891 }
892 }
Haikun Wangc042af92015-06-09 19:45:37 +0800893
Chao Fu349ad662013-08-16 11:08:55 +0800894 return IRQ_HANDLED;
895}
896
Jingoo Han790d1902014-05-07 16:45:41 +0900897static const struct of_device_id fsl_dspi_dt_ids[] = {
Haikun Wangd1f4a382015-06-09 19:45:27 +0800898 { .compatible = "fsl,vf610-dspi", .data = (void *)&vf610_data, },
899 { .compatible = "fsl,ls1021a-v1.0-dspi",
900 .data = (void *)&ls1021a_v1_data, },
901 { .compatible = "fsl,ls2085a-dspi", .data = (void *)&ls2085a_data, },
Chao Fu349ad662013-08-16 11:08:55 +0800902 { /* sentinel */ }
903};
904MODULE_DEVICE_TABLE(of, fsl_dspi_dt_ids);
905
906#ifdef CONFIG_PM_SLEEP
907static int dspi_suspend(struct device *dev)
908{
909 struct spi_master *master = dev_get_drvdata(dev);
910 struct fsl_dspi *dspi = spi_master_get_devdata(master);
911
912 spi_master_suspend(master);
913 clk_disable_unprepare(dspi->clk);
914
Mirza Krak432a17d2015-06-12 18:55:22 +0200915 pinctrl_pm_select_sleep_state(dev);
916
Chao Fu349ad662013-08-16 11:08:55 +0800917 return 0;
918}
919
920static int dspi_resume(struct device *dev)
921{
Chao Fu349ad662013-08-16 11:08:55 +0800922 struct spi_master *master = dev_get_drvdata(dev);
923 struct fsl_dspi *dspi = spi_master_get_devdata(master);
Fabio Estevam1c5ea2b2016-08-21 23:05:30 -0300924 int ret;
Chao Fu349ad662013-08-16 11:08:55 +0800925
Mirza Krak432a17d2015-06-12 18:55:22 +0200926 pinctrl_pm_select_default_state(dev);
927
Fabio Estevam1c5ea2b2016-08-21 23:05:30 -0300928 ret = clk_prepare_enable(dspi->clk);
929 if (ret)
930 return ret;
Chao Fu349ad662013-08-16 11:08:55 +0800931 spi_master_resume(master);
932
933 return 0;
934}
935#endif /* CONFIG_PM_SLEEP */
936
Jingoo Hanba811ad2014-02-26 10:30:14 +0900937static SIMPLE_DEV_PM_OPS(dspi_pm, dspi_suspend, dspi_resume);
Chao Fu349ad662013-08-16 11:08:55 +0800938
Xiubo Li409851c2014-10-09 11:27:45 +0800939static const struct regmap_config dspi_regmap_config = {
Chao Fu1acbdeb2014-02-12 15:29:05 +0800940 .reg_bits = 32,
941 .val_bits = 32,
942 .reg_stride = 4,
943 .max_register = 0x88,
Chao Fu349ad662013-08-16 11:08:55 +0800944};
945
946static int dspi_probe(struct platform_device *pdev)
947{
948 struct device_node *np = pdev->dev.of_node;
949 struct spi_master *master;
950 struct fsl_dspi *dspi;
951 struct resource *res;
Chao Fu1acbdeb2014-02-12 15:29:05 +0800952 void __iomem *base;
Chao Fu349ad662013-08-16 11:08:55 +0800953 int ret = 0, cs_num, bus_num;
954
955 master = spi_alloc_master(&pdev->dev, sizeof(struct fsl_dspi));
956 if (!master)
957 return -ENOMEM;
958
959 dspi = spi_master_get_devdata(master);
960 dspi->pdev = pdev;
Chao Fu9298bc72015-01-27 16:27:22 +0530961 dspi->master = master;
962
963 master->transfer = NULL;
964 master->setup = dspi_setup;
965 master->transfer_one_message = dspi_transfer_one_message;
966 master->dev.of_node = pdev->dev.of_node;
Chao Fu349ad662013-08-16 11:08:55 +0800967
Bhuvanchandra DV973fbce2015-01-27 16:27:20 +0530968 master->cleanup = dspi_cleanup;
Chao Fu349ad662013-08-16 11:08:55 +0800969 master->mode_bits = SPI_CPOL | SPI_CPHA;
970 master->bits_per_word_mask = SPI_BPW_MASK(4) | SPI_BPW_MASK(8) |
971 SPI_BPW_MASK(16);
972
973 ret = of_property_read_u32(np, "spi-num-chipselects", &cs_num);
974 if (ret < 0) {
975 dev_err(&pdev->dev, "can't get spi-num-chipselects\n");
976 goto out_master_put;
977 }
978 master->num_chipselect = cs_num;
979
980 ret = of_property_read_u32(np, "bus-num", &bus_num);
981 if (ret < 0) {
982 dev_err(&pdev->dev, "can't get bus-num\n");
983 goto out_master_put;
984 }
985 master->bus_num = bus_num;
986
LABBE Corentin53d89162016-08-16 11:50:21 +0200987 dspi->devtype_data = of_device_get_match_data(&pdev->dev);
Haikun Wangd1f4a382015-06-09 19:45:27 +0800988 if (!dspi->devtype_data) {
989 dev_err(&pdev->dev, "can't get devtype_data\n");
990 ret = -EFAULT;
991 goto out_master_put;
992 }
993
Chao Fu349ad662013-08-16 11:08:55 +0800994 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Chao Fu1acbdeb2014-02-12 15:29:05 +0800995 base = devm_ioremap_resource(&pdev->dev, res);
996 if (IS_ERR(base)) {
997 ret = PTR_ERR(base);
Chao Fu349ad662013-08-16 11:08:55 +0800998 goto out_master_put;
999 }
1000
Haikun Wangd2233322015-04-24 18:54:47 +08001001 dspi->regmap = devm_regmap_init_mmio_clk(&pdev->dev, NULL, base,
Chao Fu1acbdeb2014-02-12 15:29:05 +08001002 &dspi_regmap_config);
1003 if (IS_ERR(dspi->regmap)) {
1004 dev_err(&pdev->dev, "failed to init regmap: %ld\n",
1005 PTR_ERR(dspi->regmap));
1006 return PTR_ERR(dspi->regmap);
1007 }
1008
Chao Fu349ad662013-08-16 11:08:55 +08001009 dspi->irq = platform_get_irq(pdev, 0);
1010 if (dspi->irq < 0) {
1011 dev_err(&pdev->dev, "can't get platform irq\n");
1012 ret = dspi->irq;
1013 goto out_master_put;
1014 }
1015
1016 ret = devm_request_irq(&pdev->dev, dspi->irq, dspi_interrupt, 0,
1017 pdev->name, dspi);
1018 if (ret < 0) {
1019 dev_err(&pdev->dev, "Unable to attach DSPI interrupt\n");
1020 goto out_master_put;
1021 }
1022
1023 dspi->clk = devm_clk_get(&pdev->dev, "dspi");
1024 if (IS_ERR(dspi->clk)) {
1025 ret = PTR_ERR(dspi->clk);
1026 dev_err(&pdev->dev, "unable to get clock\n");
1027 goto out_master_put;
1028 }
Fabio Estevam1c5ea2b2016-08-21 23:05:30 -03001029 ret = clk_prepare_enable(dspi->clk);
1030 if (ret)
1031 goto out_master_put;
Chao Fu349ad662013-08-16 11:08:55 +08001032
Sanchayan Maity90ba3702016-11-10 17:49:15 +05301033 if (dspi->devtype_data->trans_mode == DSPI_DMA_MODE) {
1034 if (dspi_request_dma(dspi, res->start)) {
1035 dev_err(&pdev->dev, "can't get dma channels\n");
1036 goto out_clk_put;
1037 }
1038 }
1039
Bhuvanchandra DV9419b202016-03-22 01:41:52 +05301040 master->max_speed_hz =
1041 clk_get_rate(dspi->clk) / dspi->devtype_data->max_clock_factor;
1042
Chao Fu349ad662013-08-16 11:08:55 +08001043 init_waitqueue_head(&dspi->waitq);
Axel Lin017145f2014-02-14 12:49:12 +08001044 platform_set_drvdata(pdev, master);
Chao Fu349ad662013-08-16 11:08:55 +08001045
Chao Fu9298bc72015-01-27 16:27:22 +05301046 ret = spi_register_master(master);
Chao Fu349ad662013-08-16 11:08:55 +08001047 if (ret != 0) {
1048 dev_err(&pdev->dev, "Problem registering DSPI master\n");
1049 goto out_clk_put;
1050 }
1051
Chao Fu349ad662013-08-16 11:08:55 +08001052 return ret;
1053
1054out_clk_put:
1055 clk_disable_unprepare(dspi->clk);
1056out_master_put:
1057 spi_master_put(master);
Chao Fu349ad662013-08-16 11:08:55 +08001058
1059 return ret;
1060}
1061
1062static int dspi_remove(struct platform_device *pdev)
1063{
Axel Lin017145f2014-02-14 12:49:12 +08001064 struct spi_master *master = platform_get_drvdata(pdev);
1065 struct fsl_dspi *dspi = spi_master_get_devdata(master);
Chao Fu349ad662013-08-16 11:08:55 +08001066
1067 /* Disconnect from the SPI framework */
Sanchayan Maity90ba3702016-11-10 17:49:15 +05301068 dspi_release_dma(dspi);
Wei Yongjun05209f42013-10-12 15:15:31 +08001069 clk_disable_unprepare(dspi->clk);
Chao Fu9298bc72015-01-27 16:27:22 +05301070 spi_unregister_master(dspi->master);
Chao Fu349ad662013-08-16 11:08:55 +08001071
1072 return 0;
1073}
1074
1075static struct platform_driver fsl_dspi_driver = {
1076 .driver.name = DRIVER_NAME,
1077 .driver.of_match_table = fsl_dspi_dt_ids,
1078 .driver.owner = THIS_MODULE,
1079 .driver.pm = &dspi_pm,
1080 .probe = dspi_probe,
1081 .remove = dspi_remove,
1082};
1083module_platform_driver(fsl_dspi_driver);
1084
1085MODULE_DESCRIPTION("Freescale DSPI Controller Driver");
Uwe Kleine-Königb444d1d2013-09-10 10:46:33 +02001086MODULE_LICENSE("GPL");
Chao Fu349ad662013-08-16 11:08:55 +08001087MODULE_ALIAS("platform:" DRIVER_NAME);