blob: bc64700b514dfc64472f9287a2e2d3a3c6a327d2 [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:
430 devm_kfree(dev, dma->rx_dma_buf);
431err_rx_dma_buf:
432 devm_kfree(dev, dma->tx_dma_buf);
433err_tx_dma_buf:
434 dma_release_channel(dma->chan_tx);
435err_tx_channel:
436 dma_release_channel(dma->chan_rx);
437
438 devm_kfree(dev, dma);
439 dspi->dma = NULL;
440
441 return ret;
442}
443
444static void dspi_release_dma(struct fsl_dspi *dspi)
445{
446 struct fsl_dspi_dma *dma = dspi->dma;
447 struct device *dev = &dspi->pdev->dev;
448
449 if (dma) {
450 if (dma->chan_tx) {
451 dma_unmap_single(dev, dma->tx_dma_phys,
452 DSPI_DMA_BUFSIZE, DMA_TO_DEVICE);
453 dma_release_channel(dma->chan_tx);
454 }
455
456 if (dma->chan_rx) {
457 dma_unmap_single(dev, dma->rx_dma_phys,
458 DSPI_DMA_BUFSIZE, DMA_FROM_DEVICE);
459 dma_release_channel(dma->chan_rx);
460 }
461 }
462}
463
Chao Fu349ad662013-08-16 11:08:55 +0800464static void hz_to_spi_baud(char *pbr, char *br, int speed_hz,
465 unsigned long clkrate)
466{
467 /* Valid baud rate pre-scaler values */
468 int pbr_tbl[4] = {2, 3, 5, 7};
469 int brs[16] = { 2, 4, 6, 8,
470 16, 32, 64, 128,
471 256, 512, 1024, 2048,
472 4096, 8192, 16384, 32768 };
Aaron Brice6fd63082015-03-30 10:49:15 -0700473 int scale_needed, scale, minscale = INT_MAX;
474 int i, j;
Chao Fu349ad662013-08-16 11:08:55 +0800475
Aaron Brice6fd63082015-03-30 10:49:15 -0700476 scale_needed = clkrate / speed_hz;
Aaron Bricee689d6d2015-04-03 13:39:29 -0700477 if (clkrate % speed_hz)
478 scale_needed++;
Chao Fu349ad662013-08-16 11:08:55 +0800479
Aaron Brice6fd63082015-03-30 10:49:15 -0700480 for (i = 0; i < ARRAY_SIZE(brs); i++)
481 for (j = 0; j < ARRAY_SIZE(pbr_tbl); j++) {
482 scale = brs[i] * pbr_tbl[j];
483 if (scale >= scale_needed) {
484 if (scale < minscale) {
485 minscale = scale;
486 *br = i;
487 *pbr = j;
488 }
489 break;
Chao Fu349ad662013-08-16 11:08:55 +0800490 }
491 }
492
Aaron Brice6fd63082015-03-30 10:49:15 -0700493 if (minscale == INT_MAX) {
494 pr_warn("Can not find valid baud rate,speed_hz is %d,clkrate is %ld, we use the max prescaler value.\n",
495 speed_hz, clkrate);
496 *pbr = ARRAY_SIZE(pbr_tbl) - 1;
497 *br = ARRAY_SIZE(brs) - 1;
498 }
Chao Fu349ad662013-08-16 11:08:55 +0800499}
500
Aaron Brice95bf15f2015-04-03 13:39:31 -0700501static void ns_delay_scale(char *psc, char *sc, int delay_ns,
502 unsigned long clkrate)
503{
504 int pscale_tbl[4] = {1, 3, 5, 7};
505 int scale_needed, scale, minscale = INT_MAX;
506 int i, j;
507 u32 remainder;
508
509 scale_needed = div_u64_rem((u64)delay_ns * clkrate, NSEC_PER_SEC,
510 &remainder);
511 if (remainder)
512 scale_needed++;
513
514 for (i = 0; i < ARRAY_SIZE(pscale_tbl); i++)
515 for (j = 0; j <= SPI_CTAR_SCALE_BITS; j++) {
516 scale = pscale_tbl[i] * (2 << j);
517 if (scale >= scale_needed) {
518 if (scale < minscale) {
519 minscale = scale;
520 *psc = i;
521 *sc = j;
522 }
523 break;
524 }
525 }
526
527 if (minscale == INT_MAX) {
528 pr_warn("Cannot find correct scale values for %dns delay at clkrate %ld, using max prescaler value",
529 delay_ns, clkrate);
530 *psc = ARRAY_SIZE(pscale_tbl) - 1;
531 *sc = SPI_CTAR_SCALE_BITS;
532 }
Chao Fu349ad662013-08-16 11:08:55 +0800533}
534
Haikun Wangd1f4a382015-06-09 19:45:27 +0800535static u32 dspi_data_to_pushr(struct fsl_dspi *dspi, int tx_word)
536{
537 u16 d16;
538
539 if (!(dspi->dataflags & TRAN_STATE_TX_VOID))
540 d16 = tx_word ? *(u16 *)dspi->tx : *(u8 *)dspi->tx;
541 else
542 d16 = dspi->void_write_data;
543
544 dspi->tx += tx_word + 1;
545 dspi->len -= tx_word + 1;
546
547 return SPI_PUSHR_TXDATA(d16) |
548 SPI_PUSHR_PCS(dspi->cs) |
Bhuvanchandra DVef22d162015-12-10 11:25:30 +0530549 SPI_PUSHR_CTAS(0) |
Haikun Wangd1f4a382015-06-09 19:45:27 +0800550 SPI_PUSHR_CONT;
551}
552
553static void dspi_data_from_popr(struct fsl_dspi *dspi, int rx_word)
554{
555 u16 d;
556 unsigned int val;
557
558 regmap_read(dspi->regmap, SPI_POPR, &val);
559 d = SPI_POPR_RXDATA(val);
560
561 if (!(dspi->dataflags & TRAN_STATE_RX_VOID))
562 rx_word ? (*(u16 *)dspi->rx = d) : (*(u8 *)dspi->rx = d);
563
564 dspi->rx += rx_word + 1;
565}
566
567static int dspi_eoq_write(struct fsl_dspi *dspi)
Chao Fu349ad662013-08-16 11:08:55 +0800568{
569 int tx_count = 0;
570 int tx_word;
Chao Fu349ad662013-08-16 11:08:55 +0800571 u32 dspi_pushr = 0;
Chao Fu349ad662013-08-16 11:08:55 +0800572
573 tx_word = is_double_byte_mode(dspi);
574
Chao Fu349ad662013-08-16 11:08:55 +0800575 while (dspi->len && (tx_count < DSPI_FIFO_SIZE)) {
Haikun Wangd1f4a382015-06-09 19:45:27 +0800576 /* If we are in word mode, only have a single byte to transfer
577 * switch to byte mode temporarily. Will switch back at the
578 * end of the transfer.
579 */
580 if (tx_word && (dspi->len == 1)) {
581 dspi->dataflags |= TRAN_STATE_WORD_ODD_NUM;
Bhuvanchandra DVef22d162015-12-10 11:25:30 +0530582 regmap_update_bits(dspi->regmap, SPI_CTAR(0),
Haikun Wangd1f4a382015-06-09 19:45:27 +0800583 SPI_FRAME_BITS_MASK, SPI_FRAME_BITS(8));
584 tx_word = 0;
Chao Fu349ad662013-08-16 11:08:55 +0800585 }
586
Haikun Wangd1f4a382015-06-09 19:45:27 +0800587 dspi_pushr = dspi_data_to_pushr(dspi, tx_word);
588
Chao Fu349ad662013-08-16 11:08:55 +0800589 if (dspi->len == 0 || tx_count == DSPI_FIFO_SIZE - 1) {
590 /* last transfer in the transfer */
591 dspi_pushr |= SPI_PUSHR_EOQ;
Chao Fu9298bc72015-01-27 16:27:22 +0530592 if ((dspi->cs_change) && (!dspi->len))
593 dspi_pushr &= ~SPI_PUSHR_CONT;
Chao Fu349ad662013-08-16 11:08:55 +0800594 } else if (tx_word && (dspi->len == 1))
595 dspi_pushr |= SPI_PUSHR_EOQ;
596
Chao Fu1acbdeb2014-02-12 15:29:05 +0800597 regmap_write(dspi->regmap, SPI_PUSHR, dspi_pushr);
598
Chao Fu349ad662013-08-16 11:08:55 +0800599 tx_count++;
600 }
601
602 return tx_count * (tx_word + 1);
603}
604
Haikun Wangd1f4a382015-06-09 19:45:27 +0800605static int dspi_eoq_read(struct fsl_dspi *dspi)
Chao Fu349ad662013-08-16 11:08:55 +0800606{
607 int rx_count = 0;
608 int rx_word = is_double_byte_mode(dspi);
Chao Fu9298bc72015-01-27 16:27:22 +0530609
Chao Fu349ad662013-08-16 11:08:55 +0800610 while ((dspi->rx < dspi->rx_end)
611 && (rx_count < DSPI_FIFO_SIZE)) {
Haikun Wangd1f4a382015-06-09 19:45:27 +0800612 if (rx_word && (dspi->rx_end - dspi->rx) == 1)
613 rx_word = 0;
Chao Fu1acbdeb2014-02-12 15:29:05 +0800614
Haikun Wangd1f4a382015-06-09 19:45:27 +0800615 dspi_data_from_popr(dspi, rx_word);
Chao Fu349ad662013-08-16 11:08:55 +0800616 rx_count++;
617 }
618
619 return rx_count;
620}
621
Haikun Wangd1f4a382015-06-09 19:45:27 +0800622static int dspi_tcfq_write(struct fsl_dspi *dspi)
623{
624 int tx_word;
625 u32 dspi_pushr = 0;
626
627 tx_word = is_double_byte_mode(dspi);
628
629 if (tx_word && (dspi->len == 1)) {
630 dspi->dataflags |= TRAN_STATE_WORD_ODD_NUM;
Bhuvanchandra DVef22d162015-12-10 11:25:30 +0530631 regmap_update_bits(dspi->regmap, SPI_CTAR(0),
Haikun Wangd1f4a382015-06-09 19:45:27 +0800632 SPI_FRAME_BITS_MASK, SPI_FRAME_BITS(8));
633 tx_word = 0;
634 }
635
636 dspi_pushr = dspi_data_to_pushr(dspi, tx_word);
637
638 if ((dspi->cs_change) && (!dspi->len))
639 dspi_pushr &= ~SPI_PUSHR_CONT;
640
641 regmap_write(dspi->regmap, SPI_PUSHR, dspi_pushr);
642
643 return tx_word + 1;
644}
645
646static void dspi_tcfq_read(struct fsl_dspi *dspi)
647{
648 int rx_word = is_double_byte_mode(dspi);
649
650 if (rx_word && (dspi->rx_end - dspi->rx) == 1)
651 rx_word = 0;
652
653 dspi_data_from_popr(dspi, rx_word);
654}
655
Chao Fu9298bc72015-01-27 16:27:22 +0530656static int dspi_transfer_one_message(struct spi_master *master,
657 struct spi_message *message)
Chao Fu349ad662013-08-16 11:08:55 +0800658{
Chao Fu9298bc72015-01-27 16:27:22 +0530659 struct fsl_dspi *dspi = spi_master_get_devdata(master);
660 struct spi_device *spi = message->spi;
661 struct spi_transfer *transfer;
662 int status = 0;
Haikun Wangd1f4a382015-06-09 19:45:27 +0800663 enum dspi_trans_mode trans_mode;
Haikun Wangc042af92015-06-09 19:45:37 +0800664 u32 spi_tcr;
665
666 regmap_read(dspi->regmap, SPI_TCR, &spi_tcr);
667 dspi->spi_tcnt = SPI_TCR_GET_TCNT(spi_tcr);
Haikun Wangd1f4a382015-06-09 19:45:27 +0800668
Chao Fu9298bc72015-01-27 16:27:22 +0530669 message->actual_length = 0;
Chao Fu349ad662013-08-16 11:08:55 +0800670
Chao Fu9298bc72015-01-27 16:27:22 +0530671 list_for_each_entry(transfer, &message->transfers, transfer_list) {
672 dspi->cur_transfer = transfer;
673 dspi->cur_msg = message;
674 dspi->cur_chip = spi_get_ctldata(spi);
675 dspi->cs = spi->chip_select;
Haikun Wang9deef022015-05-13 18:12:15 +0800676 dspi->cs_change = 0;
Andrey Vostrikov92dc20d2016-04-05 15:33:14 +0300677 if (list_is_last(&dspi->cur_transfer->transfer_list,
678 &dspi->cur_msg->transfers) || transfer->cs_change)
Haikun Wang9deef022015-05-13 18:12:15 +0800679 dspi->cs_change = 1;
Chao Fu9298bc72015-01-27 16:27:22 +0530680 dspi->void_write_data = dspi->cur_chip->void_write_data;
Chao Fu349ad662013-08-16 11:08:55 +0800681
Chao Fu9298bc72015-01-27 16:27:22 +0530682 dspi->dataflags = 0;
683 dspi->tx = (void *)transfer->tx_buf;
684 dspi->tx_end = dspi->tx + transfer->len;
685 dspi->rx = transfer->rx_buf;
686 dspi->rx_end = dspi->rx + transfer->len;
687 dspi->len = transfer->len;
Chao Fu349ad662013-08-16 11:08:55 +0800688
Chao Fu9298bc72015-01-27 16:27:22 +0530689 if (!dspi->rx)
690 dspi->dataflags |= TRAN_STATE_RX_VOID;
Chao Fu349ad662013-08-16 11:08:55 +0800691
Chao Fu9298bc72015-01-27 16:27:22 +0530692 if (!dspi->tx)
693 dspi->dataflags |= TRAN_STATE_TX_VOID;
Chao Fu349ad662013-08-16 11:08:55 +0800694
Chao Fu9298bc72015-01-27 16:27:22 +0530695 regmap_write(dspi->regmap, SPI_MCR, dspi->cur_chip->mcr_val);
696 regmap_update_bits(dspi->regmap, SPI_MCR,
697 SPI_MCR_CLR_TXF | SPI_MCR_CLR_RXF,
698 SPI_MCR_CLR_TXF | SPI_MCR_CLR_RXF);
Bhuvanchandra DVef22d162015-12-10 11:25:30 +0530699 regmap_write(dspi->regmap, SPI_CTAR(0),
Chao Fu1acbdeb2014-02-12 15:29:05 +0800700 dspi->cur_chip->ctar_val);
Chao Fu349ad662013-08-16 11:08:55 +0800701
Haikun Wangd1f4a382015-06-09 19:45:27 +0800702 trans_mode = dspi->devtype_data->trans_mode;
703 switch (trans_mode) {
704 case DSPI_EOQ_MODE:
705 regmap_write(dspi->regmap, SPI_RSER, SPI_RSER_EOQFE);
Haikun Wangc042af92015-06-09 19:45:37 +0800706 dspi_eoq_write(dspi);
Haikun Wangd1f4a382015-06-09 19:45:27 +0800707 break;
708 case DSPI_TCFQ_MODE:
709 regmap_write(dspi->regmap, SPI_RSER, SPI_RSER_TCFQE);
Haikun Wangc042af92015-06-09 19:45:37 +0800710 dspi_tcfq_write(dspi);
Haikun Wangd1f4a382015-06-09 19:45:27 +0800711 break;
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530712 case DSPI_DMA_MODE:
713 regmap_write(dspi->regmap, SPI_RSER,
714 SPI_RSER_TFFFE | SPI_RSER_TFFFD |
715 SPI_RSER_RFDFE | SPI_RSER_RFDFD);
716 status = dspi_dma_xfer(dspi);
717 goto out;
Haikun Wangd1f4a382015-06-09 19:45:27 +0800718 default:
719 dev_err(&dspi->pdev->dev, "unsupported trans_mode %u\n",
720 trans_mode);
721 status = -EINVAL;
722 goto out;
723 }
Chao Fu349ad662013-08-16 11:08:55 +0800724
Chao Fu9298bc72015-01-27 16:27:22 +0530725 if (wait_event_interruptible(dspi->waitq, dspi->waitflags))
726 dev_err(&dspi->pdev->dev, "wait transfer complete fail!\n");
727 dspi->waitflags = 0;
Chao Fu349ad662013-08-16 11:08:55 +0800728
Chao Fu9298bc72015-01-27 16:27:22 +0530729 if (transfer->delay_usecs)
730 udelay(transfer->delay_usecs);
Chao Fu349ad662013-08-16 11:08:55 +0800731 }
732
Haikun Wangd1f4a382015-06-09 19:45:27 +0800733out:
Chao Fu9298bc72015-01-27 16:27:22 +0530734 message->status = status;
735 spi_finalize_current_message(master);
736
737 return status;
Chao Fu349ad662013-08-16 11:08:55 +0800738}
739
Chao Fu9298bc72015-01-27 16:27:22 +0530740static int dspi_setup(struct spi_device *spi)
Chao Fu349ad662013-08-16 11:08:55 +0800741{
742 struct chip_data *chip;
743 struct fsl_dspi *dspi = spi_master_get_devdata(spi->master);
Aaron Brice95bf15f2015-04-03 13:39:31 -0700744 u32 cs_sck_delay = 0, sck_cs_delay = 0;
745 unsigned char br = 0, pbr = 0, pcssck = 0, cssck = 0;
746 unsigned char pasc = 0, asc = 0, fmsz = 0;
747 unsigned long clkrate;
Chao Fu349ad662013-08-16 11:08:55 +0800748
Bhuvanchandra DVceadfd82015-01-31 22:03:25 +0530749 if ((spi->bits_per_word >= 4) && (spi->bits_per_word <= 16)) {
750 fmsz = spi->bits_per_word - 1;
751 } else {
752 pr_err("Invalid wordsize\n");
753 return -ENODEV;
754 }
755
Chao Fu349ad662013-08-16 11:08:55 +0800756 /* Only alloc on first setup */
757 chip = spi_get_ctldata(spi);
758 if (chip == NULL) {
Bhuvanchandra DV973fbce2015-01-27 16:27:20 +0530759 chip = kzalloc(sizeof(struct chip_data), GFP_KERNEL);
Chao Fu349ad662013-08-16 11:08:55 +0800760 if (!chip)
761 return -ENOMEM;
762 }
763
Aaron Brice95bf15f2015-04-03 13:39:31 -0700764 of_property_read_u32(spi->dev.of_node, "fsl,spi-cs-sck-delay",
765 &cs_sck_delay);
766
767 of_property_read_u32(spi->dev.of_node, "fsl,spi-sck-cs-delay",
768 &sck_cs_delay);
769
Chao Fu349ad662013-08-16 11:08:55 +0800770 chip->mcr_val = SPI_MCR_MASTER | SPI_MCR_PCSIS |
771 SPI_MCR_CLR_TXF | SPI_MCR_CLR_RXF;
Chao Fu349ad662013-08-16 11:08:55 +0800772
773 chip->void_write_data = 0;
774
Aaron Brice95bf15f2015-04-03 13:39:31 -0700775 clkrate = clk_get_rate(dspi->clk);
776 hz_to_spi_baud(&pbr, &br, spi->max_speed_hz, clkrate);
777
778 /* Set PCS to SCK delay scale values */
779 ns_delay_scale(&pcssck, &cssck, cs_sck_delay, clkrate);
780
781 /* Set After SCK delay scale values */
782 ns_delay_scale(&pasc, &asc, sck_cs_delay, clkrate);
Chao Fu349ad662013-08-16 11:08:55 +0800783
784 chip->ctar_val = SPI_CTAR_FMSZ(fmsz)
785 | SPI_CTAR_CPOL(spi->mode & SPI_CPOL ? 1 : 0)
786 | SPI_CTAR_CPHA(spi->mode & SPI_CPHA ? 1 : 0)
787 | SPI_CTAR_LSBFE(spi->mode & SPI_LSB_FIRST ? 1 : 0)
Aaron Brice95bf15f2015-04-03 13:39:31 -0700788 | SPI_CTAR_PCSSCK(pcssck)
789 | SPI_CTAR_CSSCK(cssck)
790 | SPI_CTAR_PASC(pasc)
791 | SPI_CTAR_ASC(asc)
Chao Fu349ad662013-08-16 11:08:55 +0800792 | SPI_CTAR_PBR(pbr)
793 | SPI_CTAR_BR(br);
794
795 spi_set_ctldata(spi, chip);
796
797 return 0;
798}
799
Bhuvanchandra DV973fbce2015-01-27 16:27:20 +0530800static void dspi_cleanup(struct spi_device *spi)
801{
802 struct chip_data *chip = spi_get_ctldata((struct spi_device *)spi);
803
804 dev_dbg(&spi->dev, "spi_device %u.%u cleanup\n",
805 spi->master->bus_num, spi->chip_select);
806
807 kfree(chip);
808}
809
Chao Fu349ad662013-08-16 11:08:55 +0800810static irqreturn_t dspi_interrupt(int irq, void *dev_id)
811{
812 struct fsl_dspi *dspi = (struct fsl_dspi *)dev_id;
Chao Fu9298bc72015-01-27 16:27:22 +0530813 struct spi_message *msg = dspi->cur_msg;
Haikun Wangd1f4a382015-06-09 19:45:27 +0800814 enum dspi_trans_mode trans_mode;
Haikun Wangc042af92015-06-09 19:45:37 +0800815 u32 spi_sr, spi_tcr;
816 u32 spi_tcnt, tcnt_diff;
817 int tx_word;
Chao Fu349ad662013-08-16 11:08:55 +0800818
Haikun Wangd1f4a382015-06-09 19:45:27 +0800819 regmap_read(dspi->regmap, SPI_SR, &spi_sr);
820 regmap_write(dspi->regmap, SPI_SR, spi_sr);
821
Chao Fu349ad662013-08-16 11:08:55 +0800822
Haikun Wangc042af92015-06-09 19:45:37 +0800823 if (spi_sr & (SPI_SR_EOQF | SPI_SR_TCFQF)) {
824 tx_word = is_double_byte_mode(dspi);
Chao Fu1acbdeb2014-02-12 15:29:05 +0800825
Haikun Wangc042af92015-06-09 19:45:37 +0800826 regmap_read(dspi->regmap, SPI_TCR, &spi_tcr);
827 spi_tcnt = SPI_TCR_GET_TCNT(spi_tcr);
828 /*
829 * The width of SPI Transfer Counter in SPI_TCR is 16bits,
830 * so the max couner is 65535. When the counter reach 65535,
831 * it will wrap around, counter reset to zero.
832 * spi_tcnt my be less than dspi->spi_tcnt, it means the
833 * counter already wrapped around.
834 * SPI Transfer Counter is a counter of transmitted frames.
835 * The size of frame maybe two bytes.
836 */
837 tcnt_diff = ((spi_tcnt + SPI_TCR_TCNT_MAX) - dspi->spi_tcnt)
838 % SPI_TCR_TCNT_MAX;
839 tcnt_diff *= (tx_word + 1);
840 if (dspi->dataflags & TRAN_STATE_WORD_ODD_NUM)
841 tcnt_diff--;
842
843 msg->actual_length += tcnt_diff;
844
845 dspi->spi_tcnt = spi_tcnt;
846
847 trans_mode = dspi->devtype_data->trans_mode;
Haikun Wangd1f4a382015-06-09 19:45:27 +0800848 switch (trans_mode) {
849 case DSPI_EOQ_MODE:
Haikun Wangc042af92015-06-09 19:45:37 +0800850 dspi_eoq_read(dspi);
Haikun Wangd1f4a382015-06-09 19:45:27 +0800851 break;
852 case DSPI_TCFQ_MODE:
Haikun Wangc042af92015-06-09 19:45:37 +0800853 dspi_tcfq_read(dspi);
Haikun Wangd1f4a382015-06-09 19:45:27 +0800854 break;
855 default:
856 dev_err(&dspi->pdev->dev, "unsupported trans_mode %u\n",
857 trans_mode);
Haikun Wangc042af92015-06-09 19:45:37 +0800858 return IRQ_HANDLED;
859 }
860
861 if (!dspi->len) {
862 if (dspi->dataflags & TRAN_STATE_WORD_ODD_NUM) {
863 regmap_update_bits(dspi->regmap,
Bhuvanchandra DVef22d162015-12-10 11:25:30 +0530864 SPI_CTAR(0),
Haikun Wangc042af92015-06-09 19:45:37 +0800865 SPI_FRAME_BITS_MASK,
866 SPI_FRAME_BITS(16));
867 dspi->dataflags &= ~TRAN_STATE_WORD_ODD_NUM;
868 }
869
870 dspi->waitflags = 1;
871 wake_up_interruptible(&dspi->waitq);
872 } else {
873 switch (trans_mode) {
874 case DSPI_EOQ_MODE:
875 dspi_eoq_write(dspi);
876 break;
877 case DSPI_TCFQ_MODE:
878 dspi_tcfq_write(dspi);
879 break;
880 default:
881 dev_err(&dspi->pdev->dev,
882 "unsupported trans_mode %u\n",
883 trans_mode);
884 }
Haikun Wangd1f4a382015-06-09 19:45:27 +0800885 }
886 }
Haikun Wangc042af92015-06-09 19:45:37 +0800887
Chao Fu349ad662013-08-16 11:08:55 +0800888 return IRQ_HANDLED;
889}
890
Jingoo Han790d1902014-05-07 16:45:41 +0900891static const struct of_device_id fsl_dspi_dt_ids[] = {
Haikun Wangd1f4a382015-06-09 19:45:27 +0800892 { .compatible = "fsl,vf610-dspi", .data = (void *)&vf610_data, },
893 { .compatible = "fsl,ls1021a-v1.0-dspi",
894 .data = (void *)&ls1021a_v1_data, },
895 { .compatible = "fsl,ls2085a-dspi", .data = (void *)&ls2085a_data, },
Chao Fu349ad662013-08-16 11:08:55 +0800896 { /* sentinel */ }
897};
898MODULE_DEVICE_TABLE(of, fsl_dspi_dt_ids);
899
900#ifdef CONFIG_PM_SLEEP
901static int dspi_suspend(struct device *dev)
902{
903 struct spi_master *master = dev_get_drvdata(dev);
904 struct fsl_dspi *dspi = spi_master_get_devdata(master);
905
906 spi_master_suspend(master);
907 clk_disable_unprepare(dspi->clk);
908
Mirza Krak432a17d2015-06-12 18:55:22 +0200909 pinctrl_pm_select_sleep_state(dev);
910
Chao Fu349ad662013-08-16 11:08:55 +0800911 return 0;
912}
913
914static int dspi_resume(struct device *dev)
915{
Chao Fu349ad662013-08-16 11:08:55 +0800916 struct spi_master *master = dev_get_drvdata(dev);
917 struct fsl_dspi *dspi = spi_master_get_devdata(master);
Fabio Estevam1c5ea2b2016-08-21 23:05:30 -0300918 int ret;
Chao Fu349ad662013-08-16 11:08:55 +0800919
Mirza Krak432a17d2015-06-12 18:55:22 +0200920 pinctrl_pm_select_default_state(dev);
921
Fabio Estevam1c5ea2b2016-08-21 23:05:30 -0300922 ret = clk_prepare_enable(dspi->clk);
923 if (ret)
924 return ret;
Chao Fu349ad662013-08-16 11:08:55 +0800925 spi_master_resume(master);
926
927 return 0;
928}
929#endif /* CONFIG_PM_SLEEP */
930
Jingoo Hanba811ad2014-02-26 10:30:14 +0900931static SIMPLE_DEV_PM_OPS(dspi_pm, dspi_suspend, dspi_resume);
Chao Fu349ad662013-08-16 11:08:55 +0800932
Xiubo Li409851c2014-10-09 11:27:45 +0800933static const struct regmap_config dspi_regmap_config = {
Chao Fu1acbdeb2014-02-12 15:29:05 +0800934 .reg_bits = 32,
935 .val_bits = 32,
936 .reg_stride = 4,
937 .max_register = 0x88,
Chao Fu349ad662013-08-16 11:08:55 +0800938};
939
940static int dspi_probe(struct platform_device *pdev)
941{
942 struct device_node *np = pdev->dev.of_node;
943 struct spi_master *master;
944 struct fsl_dspi *dspi;
945 struct resource *res;
Chao Fu1acbdeb2014-02-12 15:29:05 +0800946 void __iomem *base;
Chao Fu349ad662013-08-16 11:08:55 +0800947 int ret = 0, cs_num, bus_num;
948
949 master = spi_alloc_master(&pdev->dev, sizeof(struct fsl_dspi));
950 if (!master)
951 return -ENOMEM;
952
953 dspi = spi_master_get_devdata(master);
954 dspi->pdev = pdev;
Chao Fu9298bc72015-01-27 16:27:22 +0530955 dspi->master = master;
956
957 master->transfer = NULL;
958 master->setup = dspi_setup;
959 master->transfer_one_message = dspi_transfer_one_message;
960 master->dev.of_node = pdev->dev.of_node;
Chao Fu349ad662013-08-16 11:08:55 +0800961
Bhuvanchandra DV973fbce2015-01-27 16:27:20 +0530962 master->cleanup = dspi_cleanup;
Chao Fu349ad662013-08-16 11:08:55 +0800963 master->mode_bits = SPI_CPOL | SPI_CPHA;
964 master->bits_per_word_mask = SPI_BPW_MASK(4) | SPI_BPW_MASK(8) |
965 SPI_BPW_MASK(16);
966
967 ret = of_property_read_u32(np, "spi-num-chipselects", &cs_num);
968 if (ret < 0) {
969 dev_err(&pdev->dev, "can't get spi-num-chipselects\n");
970 goto out_master_put;
971 }
972 master->num_chipselect = cs_num;
973
974 ret = of_property_read_u32(np, "bus-num", &bus_num);
975 if (ret < 0) {
976 dev_err(&pdev->dev, "can't get bus-num\n");
977 goto out_master_put;
978 }
979 master->bus_num = bus_num;
980
LABBE Corentin53d89162016-08-16 11:50:21 +0200981 dspi->devtype_data = of_device_get_match_data(&pdev->dev);
Haikun Wangd1f4a382015-06-09 19:45:27 +0800982 if (!dspi->devtype_data) {
983 dev_err(&pdev->dev, "can't get devtype_data\n");
984 ret = -EFAULT;
985 goto out_master_put;
986 }
987
Chao Fu349ad662013-08-16 11:08:55 +0800988 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Chao Fu1acbdeb2014-02-12 15:29:05 +0800989 base = devm_ioremap_resource(&pdev->dev, res);
990 if (IS_ERR(base)) {
991 ret = PTR_ERR(base);
Chao Fu349ad662013-08-16 11:08:55 +0800992 goto out_master_put;
993 }
994
Haikun Wangd2233322015-04-24 18:54:47 +0800995 dspi->regmap = devm_regmap_init_mmio_clk(&pdev->dev, NULL, base,
Chao Fu1acbdeb2014-02-12 15:29:05 +0800996 &dspi_regmap_config);
997 if (IS_ERR(dspi->regmap)) {
998 dev_err(&pdev->dev, "failed to init regmap: %ld\n",
999 PTR_ERR(dspi->regmap));
1000 return PTR_ERR(dspi->regmap);
1001 }
1002
Chao Fu349ad662013-08-16 11:08:55 +08001003 dspi->irq = platform_get_irq(pdev, 0);
1004 if (dspi->irq < 0) {
1005 dev_err(&pdev->dev, "can't get platform irq\n");
1006 ret = dspi->irq;
1007 goto out_master_put;
1008 }
1009
1010 ret = devm_request_irq(&pdev->dev, dspi->irq, dspi_interrupt, 0,
1011 pdev->name, dspi);
1012 if (ret < 0) {
1013 dev_err(&pdev->dev, "Unable to attach DSPI interrupt\n");
1014 goto out_master_put;
1015 }
1016
1017 dspi->clk = devm_clk_get(&pdev->dev, "dspi");
1018 if (IS_ERR(dspi->clk)) {
1019 ret = PTR_ERR(dspi->clk);
1020 dev_err(&pdev->dev, "unable to get clock\n");
1021 goto out_master_put;
1022 }
Fabio Estevam1c5ea2b2016-08-21 23:05:30 -03001023 ret = clk_prepare_enable(dspi->clk);
1024 if (ret)
1025 goto out_master_put;
Chao Fu349ad662013-08-16 11:08:55 +08001026
Sanchayan Maity90ba3702016-11-10 17:49:15 +05301027 if (dspi->devtype_data->trans_mode == DSPI_DMA_MODE) {
1028 if (dspi_request_dma(dspi, res->start)) {
1029 dev_err(&pdev->dev, "can't get dma channels\n");
1030 goto out_clk_put;
1031 }
1032 }
1033
Bhuvanchandra DV9419b202016-03-22 01:41:52 +05301034 master->max_speed_hz =
1035 clk_get_rate(dspi->clk) / dspi->devtype_data->max_clock_factor;
1036
Chao Fu349ad662013-08-16 11:08:55 +08001037 init_waitqueue_head(&dspi->waitq);
Axel Lin017145f2014-02-14 12:49:12 +08001038 platform_set_drvdata(pdev, master);
Chao Fu349ad662013-08-16 11:08:55 +08001039
Chao Fu9298bc72015-01-27 16:27:22 +05301040 ret = spi_register_master(master);
Chao Fu349ad662013-08-16 11:08:55 +08001041 if (ret != 0) {
1042 dev_err(&pdev->dev, "Problem registering DSPI master\n");
1043 goto out_clk_put;
1044 }
1045
Chao Fu349ad662013-08-16 11:08:55 +08001046 return ret;
1047
1048out_clk_put:
1049 clk_disable_unprepare(dspi->clk);
1050out_master_put:
1051 spi_master_put(master);
Chao Fu349ad662013-08-16 11:08:55 +08001052
1053 return ret;
1054}
1055
1056static int dspi_remove(struct platform_device *pdev)
1057{
Axel Lin017145f2014-02-14 12:49:12 +08001058 struct spi_master *master = platform_get_drvdata(pdev);
1059 struct fsl_dspi *dspi = spi_master_get_devdata(master);
Chao Fu349ad662013-08-16 11:08:55 +08001060
1061 /* Disconnect from the SPI framework */
Sanchayan Maity90ba3702016-11-10 17:49:15 +05301062 dspi_release_dma(dspi);
Wei Yongjun05209f42013-10-12 15:15:31 +08001063 clk_disable_unprepare(dspi->clk);
Chao Fu9298bc72015-01-27 16:27:22 +05301064 spi_unregister_master(dspi->master);
Chao Fu349ad662013-08-16 11:08:55 +08001065
1066 return 0;
1067}
1068
1069static struct platform_driver fsl_dspi_driver = {
1070 .driver.name = DRIVER_NAME,
1071 .driver.of_match_table = fsl_dspi_dt_ids,
1072 .driver.owner = THIS_MODULE,
1073 .driver.pm = &dspi_pm,
1074 .probe = dspi_probe,
1075 .remove = dspi_remove,
1076};
1077module_platform_driver(fsl_dspi_driver);
1078
1079MODULE_DESCRIPTION("Freescale DSPI Controller Driver");
Uwe Kleine-Königb444d1d2013-09-10 10:46:33 +02001080MODULE_LICENSE("GPL");
Chao Fu349ad662013-08-16 11:08:55 +08001081MODULE_ALIAS("platform:" DRIVER_NAME);