blob: 7ada112bfd8542862181f6184242481cdce47847 [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 {
Sanchayan Maity1eaccf22016-11-22 12:31:30 +0530154 /* Length of transfer in words of DSPI_FIFO_SIZE */
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530155 u32 curr_xfer_len;
156
157 u32 *tx_dma_buf;
158 struct dma_chan *chan_tx;
159 dma_addr_t tx_dma_phys;
160 struct completion cmd_tx_complete;
161 struct dma_async_tx_descriptor *tx_desc;
162
163 u32 *rx_dma_buf;
164 struct dma_chan *chan_rx;
165 dma_addr_t rx_dma_phys;
166 struct completion cmd_rx_complete;
167 struct dma_async_tx_descriptor *rx_desc;
168};
169
Chao Fu349ad662013-08-16 11:08:55 +0800170struct fsl_dspi {
Chao Fu9298bc72015-01-27 16:27:22 +0530171 struct spi_master *master;
Chao Fu349ad662013-08-16 11:08:55 +0800172 struct platform_device *pdev;
173
Chao Fu1acbdeb2014-02-12 15:29:05 +0800174 struct regmap *regmap;
Chao Fu349ad662013-08-16 11:08:55 +0800175 int irq;
Chao Fu88386e82014-02-12 15:29:06 +0800176 struct clk *clk;
Chao Fu349ad662013-08-16 11:08:55 +0800177
Chao Fu88386e82014-02-12 15:29:06 +0800178 struct spi_transfer *cur_transfer;
Chao Fu9298bc72015-01-27 16:27:22 +0530179 struct spi_message *cur_msg;
Chao Fu349ad662013-08-16 11:08:55 +0800180 struct chip_data *cur_chip;
181 size_t len;
182 void *tx;
183 void *tx_end;
184 void *rx;
185 void *rx_end;
186 char dataflags;
187 u8 cs;
188 u16 void_write_data;
Chao Fu9298bc72015-01-27 16:27:22 +0530189 u32 cs_change;
LABBE Corentin94b968b2016-08-16 11:50:20 +0200190 const struct fsl_dspi_devtype_data *devtype_data;
Chao Fu349ad662013-08-16 11:08:55 +0800191
Chao Fu88386e82014-02-12 15:29:06 +0800192 wait_queue_head_t waitq;
193 u32 waitflags;
Haikun Wangc042af92015-06-09 19:45:37 +0800194
195 u32 spi_tcnt;
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530196 struct fsl_dspi_dma *dma;
Chao Fu349ad662013-08-16 11:08:55 +0800197};
198
Sanchayan Maityccf7d8e2016-11-22 12:31:31 +0530199static u32 dspi_data_to_pushr(struct fsl_dspi *dspi, int tx_word);
200
Chao Fu349ad662013-08-16 11:08:55 +0800201static inline int is_double_byte_mode(struct fsl_dspi *dspi)
202{
Chao Fu1acbdeb2014-02-12 15:29:05 +0800203 unsigned int val;
Chao Fu349ad662013-08-16 11:08:55 +0800204
Bhuvanchandra DVef22d162015-12-10 11:25:30 +0530205 regmap_read(dspi->regmap, SPI_CTAR(0), &val);
Chao Fu349ad662013-08-16 11:08:55 +0800206
Chao Fu1acbdeb2014-02-12 15:29:05 +0800207 return ((val & SPI_FRAME_BITS_MASK) == SPI_FRAME_BITS(8)) ? 0 : 1;
Chao Fu349ad662013-08-16 11:08:55 +0800208}
209
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530210static void dspi_tx_dma_callback(void *arg)
211{
212 struct fsl_dspi *dspi = arg;
213 struct fsl_dspi_dma *dma = dspi->dma;
214
215 complete(&dma->cmd_tx_complete);
216}
217
218static void dspi_rx_dma_callback(void *arg)
219{
220 struct fsl_dspi *dspi = arg;
221 struct fsl_dspi_dma *dma = dspi->dma;
222 int rx_word;
Sanchayan Maity1eaccf22016-11-22 12:31:30 +0530223 int i;
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530224 u16 d;
225
226 rx_word = is_double_byte_mode(dspi);
227
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530228 if (!(dspi->dataflags & TRAN_STATE_RX_VOID)) {
Sanchayan Maity1eaccf22016-11-22 12:31:30 +0530229 for (i = 0; i < dma->curr_xfer_len; i++) {
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530230 d = dspi->dma->rx_dma_buf[i];
231 rx_word ? (*(u16 *)dspi->rx = d) :
232 (*(u8 *)dspi->rx = d);
233 dspi->rx += rx_word + 1;
234 }
235 }
236
237 complete(&dma->cmd_rx_complete);
238}
239
240static int dspi_next_xfer_dma_submit(struct fsl_dspi *dspi)
241{
242 struct fsl_dspi_dma *dma = dspi->dma;
243 struct device *dev = &dspi->pdev->dev;
244 int time_left;
245 int tx_word;
Sanchayan Maity1eaccf22016-11-22 12:31:30 +0530246 int i;
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530247
248 tx_word = is_double_byte_mode(dspi);
249
Sanchayan Maityccf7d8e2016-11-22 12:31:31 +0530250 for (i = 0; i < dma->curr_xfer_len; i++) {
251 dspi->dma->tx_dma_buf[i] = dspi_data_to_pushr(dspi, tx_word);
252 if ((dspi->cs_change) && (!dspi->len))
253 dspi->dma->tx_dma_buf[i] &= ~SPI_PUSHR_CONT;
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530254 }
255
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530256 dma->tx_desc = dmaengine_prep_slave_single(dma->chan_tx,
257 dma->tx_dma_phys,
Sanchayan Maity1eaccf22016-11-22 12:31:30 +0530258 dma->curr_xfer_len *
259 DMA_SLAVE_BUSWIDTH_4_BYTES,
260 DMA_MEM_TO_DEV,
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530261 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
262 if (!dma->tx_desc) {
263 dev_err(dev, "Not able to get desc for DMA xfer\n");
264 return -EIO;
265 }
266
267 dma->tx_desc->callback = dspi_tx_dma_callback;
268 dma->tx_desc->callback_param = dspi;
269 if (dma_submit_error(dmaengine_submit(dma->tx_desc))) {
270 dev_err(dev, "DMA submit failed\n");
271 return -EINVAL;
272 }
273
274 dma->rx_desc = dmaengine_prep_slave_single(dma->chan_rx,
275 dma->rx_dma_phys,
Sanchayan Maity1eaccf22016-11-22 12:31:30 +0530276 dma->curr_xfer_len *
277 DMA_SLAVE_BUSWIDTH_4_BYTES,
278 DMA_DEV_TO_MEM,
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530279 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
280 if (!dma->rx_desc) {
281 dev_err(dev, "Not able to get desc for DMA xfer\n");
282 return -EIO;
283 }
284
285 dma->rx_desc->callback = dspi_rx_dma_callback;
286 dma->rx_desc->callback_param = dspi;
287 if (dma_submit_error(dmaengine_submit(dma->rx_desc))) {
288 dev_err(dev, "DMA submit failed\n");
289 return -EINVAL;
290 }
291
292 reinit_completion(&dspi->dma->cmd_rx_complete);
293 reinit_completion(&dspi->dma->cmd_tx_complete);
294
295 dma_async_issue_pending(dma->chan_rx);
296 dma_async_issue_pending(dma->chan_tx);
297
298 time_left = wait_for_completion_timeout(&dspi->dma->cmd_tx_complete,
299 DMA_COMPLETION_TIMEOUT);
300 if (time_left == 0) {
301 dev_err(dev, "DMA tx timeout\n");
302 dmaengine_terminate_all(dma->chan_tx);
303 dmaengine_terminate_all(dma->chan_rx);
304 return -ETIMEDOUT;
305 }
306
307 time_left = wait_for_completion_timeout(&dspi->dma->cmd_rx_complete,
308 DMA_COMPLETION_TIMEOUT);
309 if (time_left == 0) {
310 dev_err(dev, "DMA rx timeout\n");
311 dmaengine_terminate_all(dma->chan_tx);
312 dmaengine_terminate_all(dma->chan_rx);
313 return -ETIMEDOUT;
314 }
315
316 return 0;
317}
318
319static int dspi_dma_xfer(struct fsl_dspi *dspi)
320{
321 struct fsl_dspi_dma *dma = dspi->dma;
322 struct device *dev = &dspi->pdev->dev;
323 int curr_remaining_bytes;
324 int bytes_per_buffer;
Sanchayan Maity1eaccf22016-11-22 12:31:30 +0530325 int word = 1;
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530326 int ret = 0;
327
Sanchayan Maity1eaccf22016-11-22 12:31:30 +0530328 if (is_double_byte_mode(dspi))
329 word = 2;
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530330 curr_remaining_bytes = dspi->len;
Sanchayan Maity1eaccf22016-11-22 12:31:30 +0530331 bytes_per_buffer = DSPI_DMA_BUFSIZE / DSPI_FIFO_SIZE;
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530332 while (curr_remaining_bytes) {
333 /* Check if current transfer fits the DMA buffer */
Sanchayan Maity1eaccf22016-11-22 12:31:30 +0530334 dma->curr_xfer_len = curr_remaining_bytes / word;
335 if (dma->curr_xfer_len > bytes_per_buffer)
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530336 dma->curr_xfer_len = bytes_per_buffer;
337
338 ret = dspi_next_xfer_dma_submit(dspi);
339 if (ret) {
340 dev_err(dev, "DMA transfer failed\n");
341 goto exit;
342
343 } else {
Sanchayan Maity1eaccf22016-11-22 12:31:30 +0530344 curr_remaining_bytes -= dma->curr_xfer_len * word;
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530345 if (curr_remaining_bytes < 0)
346 curr_remaining_bytes = 0;
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530347 }
348 }
349
350exit:
351 return ret;
352}
353
354static int dspi_request_dma(struct fsl_dspi *dspi, phys_addr_t phy_addr)
355{
356 struct fsl_dspi_dma *dma;
357 struct dma_slave_config cfg;
358 struct device *dev = &dspi->pdev->dev;
359 int ret;
360
361 dma = devm_kzalloc(dev, sizeof(*dma), GFP_KERNEL);
362 if (!dma)
363 return -ENOMEM;
364
365 dma->chan_rx = dma_request_slave_channel(dev, "rx");
366 if (!dma->chan_rx) {
367 dev_err(dev, "rx dma channel not available\n");
368 ret = -ENODEV;
369 return ret;
370 }
371
372 dma->chan_tx = dma_request_slave_channel(dev, "tx");
373 if (!dma->chan_tx) {
374 dev_err(dev, "tx dma channel not available\n");
375 ret = -ENODEV;
376 goto err_tx_channel;
377 }
378
379 dma->tx_dma_buf = dma_alloc_coherent(dev, DSPI_DMA_BUFSIZE,
380 &dma->tx_dma_phys, GFP_KERNEL);
381 if (!dma->tx_dma_buf) {
382 ret = -ENOMEM;
383 goto err_tx_dma_buf;
384 }
385
386 dma->rx_dma_buf = dma_alloc_coherent(dev, DSPI_DMA_BUFSIZE,
387 &dma->rx_dma_phys, GFP_KERNEL);
388 if (!dma->rx_dma_buf) {
389 ret = -ENOMEM;
390 goto err_rx_dma_buf;
391 }
392
393 cfg.src_addr = phy_addr + SPI_POPR;
394 cfg.dst_addr = phy_addr + SPI_PUSHR;
395 cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
396 cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
397 cfg.src_maxburst = 1;
398 cfg.dst_maxburst = 1;
399
400 cfg.direction = DMA_DEV_TO_MEM;
401 ret = dmaengine_slave_config(dma->chan_rx, &cfg);
402 if (ret) {
403 dev_err(dev, "can't configure rx dma channel\n");
404 ret = -EINVAL;
405 goto err_slave_config;
406 }
407
408 cfg.direction = DMA_MEM_TO_DEV;
409 ret = dmaengine_slave_config(dma->chan_tx, &cfg);
410 if (ret) {
411 dev_err(dev, "can't configure tx dma channel\n");
412 ret = -EINVAL;
413 goto err_slave_config;
414 }
415
416 dspi->dma = dma;
417 init_completion(&dma->cmd_tx_complete);
418 init_completion(&dma->cmd_rx_complete);
419
420 return 0;
421
422err_slave_config:
Sanchayan Maity27d21e92016-11-22 12:31:32 +0530423 dma_free_coherent(dev, DSPI_DMA_BUFSIZE,
424 dma->rx_dma_buf, dma->rx_dma_phys);
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530425err_rx_dma_buf:
Sanchayan Maity27d21e92016-11-22 12:31:32 +0530426 dma_free_coherent(dev, DSPI_DMA_BUFSIZE,
427 dma->tx_dma_buf, dma->tx_dma_phys);
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530428err_tx_dma_buf:
429 dma_release_channel(dma->chan_tx);
430err_tx_channel:
431 dma_release_channel(dma->chan_rx);
432
433 devm_kfree(dev, dma);
434 dspi->dma = NULL;
435
436 return ret;
437}
438
439static void dspi_release_dma(struct fsl_dspi *dspi)
440{
441 struct fsl_dspi_dma *dma = dspi->dma;
442 struct device *dev = &dspi->pdev->dev;
443
444 if (dma) {
445 if (dma->chan_tx) {
446 dma_unmap_single(dev, dma->tx_dma_phys,
447 DSPI_DMA_BUFSIZE, DMA_TO_DEVICE);
448 dma_release_channel(dma->chan_tx);
449 }
450
451 if (dma->chan_rx) {
452 dma_unmap_single(dev, dma->rx_dma_phys,
453 DSPI_DMA_BUFSIZE, DMA_FROM_DEVICE);
454 dma_release_channel(dma->chan_rx);
455 }
456 }
457}
458
Chao Fu349ad662013-08-16 11:08:55 +0800459static void hz_to_spi_baud(char *pbr, char *br, int speed_hz,
460 unsigned long clkrate)
461{
462 /* Valid baud rate pre-scaler values */
463 int pbr_tbl[4] = {2, 3, 5, 7};
464 int brs[16] = { 2, 4, 6, 8,
465 16, 32, 64, 128,
466 256, 512, 1024, 2048,
467 4096, 8192, 16384, 32768 };
Aaron Brice6fd63082015-03-30 10:49:15 -0700468 int scale_needed, scale, minscale = INT_MAX;
469 int i, j;
Chao Fu349ad662013-08-16 11:08:55 +0800470
Aaron Brice6fd63082015-03-30 10:49:15 -0700471 scale_needed = clkrate / speed_hz;
Aaron Bricee689d6d2015-04-03 13:39:29 -0700472 if (clkrate % speed_hz)
473 scale_needed++;
Chao Fu349ad662013-08-16 11:08:55 +0800474
Aaron Brice6fd63082015-03-30 10:49:15 -0700475 for (i = 0; i < ARRAY_SIZE(brs); i++)
476 for (j = 0; j < ARRAY_SIZE(pbr_tbl); j++) {
477 scale = brs[i] * pbr_tbl[j];
478 if (scale >= scale_needed) {
479 if (scale < minscale) {
480 minscale = scale;
481 *br = i;
482 *pbr = j;
483 }
484 break;
Chao Fu349ad662013-08-16 11:08:55 +0800485 }
486 }
487
Aaron Brice6fd63082015-03-30 10:49:15 -0700488 if (minscale == INT_MAX) {
489 pr_warn("Can not find valid baud rate,speed_hz is %d,clkrate is %ld, we use the max prescaler value.\n",
490 speed_hz, clkrate);
491 *pbr = ARRAY_SIZE(pbr_tbl) - 1;
492 *br = ARRAY_SIZE(brs) - 1;
493 }
Chao Fu349ad662013-08-16 11:08:55 +0800494}
495
Aaron Brice95bf15f2015-04-03 13:39:31 -0700496static void ns_delay_scale(char *psc, char *sc, int delay_ns,
497 unsigned long clkrate)
498{
499 int pscale_tbl[4] = {1, 3, 5, 7};
500 int scale_needed, scale, minscale = INT_MAX;
501 int i, j;
502 u32 remainder;
503
504 scale_needed = div_u64_rem((u64)delay_ns * clkrate, NSEC_PER_SEC,
505 &remainder);
506 if (remainder)
507 scale_needed++;
508
509 for (i = 0; i < ARRAY_SIZE(pscale_tbl); i++)
510 for (j = 0; j <= SPI_CTAR_SCALE_BITS; j++) {
511 scale = pscale_tbl[i] * (2 << j);
512 if (scale >= scale_needed) {
513 if (scale < minscale) {
514 minscale = scale;
515 *psc = i;
516 *sc = j;
517 }
518 break;
519 }
520 }
521
522 if (minscale == INT_MAX) {
523 pr_warn("Cannot find correct scale values for %dns delay at clkrate %ld, using max prescaler value",
524 delay_ns, clkrate);
525 *psc = ARRAY_SIZE(pscale_tbl) - 1;
526 *sc = SPI_CTAR_SCALE_BITS;
527 }
Chao Fu349ad662013-08-16 11:08:55 +0800528}
529
Haikun Wangd1f4a382015-06-09 19:45:27 +0800530static u32 dspi_data_to_pushr(struct fsl_dspi *dspi, int tx_word)
531{
532 u16 d16;
533
534 if (!(dspi->dataflags & TRAN_STATE_TX_VOID))
535 d16 = tx_word ? *(u16 *)dspi->tx : *(u8 *)dspi->tx;
536 else
537 d16 = dspi->void_write_data;
538
539 dspi->tx += tx_word + 1;
540 dspi->len -= tx_word + 1;
541
542 return SPI_PUSHR_TXDATA(d16) |
543 SPI_PUSHR_PCS(dspi->cs) |
Bhuvanchandra DVef22d162015-12-10 11:25:30 +0530544 SPI_PUSHR_CTAS(0) |
Haikun Wangd1f4a382015-06-09 19:45:27 +0800545 SPI_PUSHR_CONT;
546}
547
548static void dspi_data_from_popr(struct fsl_dspi *dspi, int rx_word)
549{
550 u16 d;
551 unsigned int val;
552
553 regmap_read(dspi->regmap, SPI_POPR, &val);
554 d = SPI_POPR_RXDATA(val);
555
556 if (!(dspi->dataflags & TRAN_STATE_RX_VOID))
557 rx_word ? (*(u16 *)dspi->rx = d) : (*(u8 *)dspi->rx = d);
558
559 dspi->rx += rx_word + 1;
560}
561
562static int dspi_eoq_write(struct fsl_dspi *dspi)
Chao Fu349ad662013-08-16 11:08:55 +0800563{
564 int tx_count = 0;
565 int tx_word;
Chao Fu349ad662013-08-16 11:08:55 +0800566 u32 dspi_pushr = 0;
Chao Fu349ad662013-08-16 11:08:55 +0800567
568 tx_word = is_double_byte_mode(dspi);
569
Chao Fu349ad662013-08-16 11:08:55 +0800570 while (dspi->len && (tx_count < DSPI_FIFO_SIZE)) {
Haikun Wangd1f4a382015-06-09 19:45:27 +0800571 /* If we are in word mode, only have a single byte to transfer
572 * switch to byte mode temporarily. Will switch back at the
573 * end of the transfer.
574 */
575 if (tx_word && (dspi->len == 1)) {
576 dspi->dataflags |= TRAN_STATE_WORD_ODD_NUM;
Bhuvanchandra DVef22d162015-12-10 11:25:30 +0530577 regmap_update_bits(dspi->regmap, SPI_CTAR(0),
Haikun Wangd1f4a382015-06-09 19:45:27 +0800578 SPI_FRAME_BITS_MASK, SPI_FRAME_BITS(8));
579 tx_word = 0;
Chao Fu349ad662013-08-16 11:08:55 +0800580 }
581
Haikun Wangd1f4a382015-06-09 19:45:27 +0800582 dspi_pushr = dspi_data_to_pushr(dspi, tx_word);
583
Chao Fu349ad662013-08-16 11:08:55 +0800584 if (dspi->len == 0 || tx_count == DSPI_FIFO_SIZE - 1) {
585 /* last transfer in the transfer */
586 dspi_pushr |= SPI_PUSHR_EOQ;
Chao Fu9298bc72015-01-27 16:27:22 +0530587 if ((dspi->cs_change) && (!dspi->len))
588 dspi_pushr &= ~SPI_PUSHR_CONT;
Chao Fu349ad662013-08-16 11:08:55 +0800589 } else if (tx_word && (dspi->len == 1))
590 dspi_pushr |= SPI_PUSHR_EOQ;
591
Chao Fu1acbdeb2014-02-12 15:29:05 +0800592 regmap_write(dspi->regmap, SPI_PUSHR, dspi_pushr);
593
Chao Fu349ad662013-08-16 11:08:55 +0800594 tx_count++;
595 }
596
597 return tx_count * (tx_word + 1);
598}
599
Haikun Wangd1f4a382015-06-09 19:45:27 +0800600static int dspi_eoq_read(struct fsl_dspi *dspi)
Chao Fu349ad662013-08-16 11:08:55 +0800601{
602 int rx_count = 0;
603 int rx_word = is_double_byte_mode(dspi);
Chao Fu9298bc72015-01-27 16:27:22 +0530604
Chao Fu349ad662013-08-16 11:08:55 +0800605 while ((dspi->rx < dspi->rx_end)
606 && (rx_count < DSPI_FIFO_SIZE)) {
Haikun Wangd1f4a382015-06-09 19:45:27 +0800607 if (rx_word && (dspi->rx_end - dspi->rx) == 1)
608 rx_word = 0;
Chao Fu1acbdeb2014-02-12 15:29:05 +0800609
Haikun Wangd1f4a382015-06-09 19:45:27 +0800610 dspi_data_from_popr(dspi, rx_word);
Chao Fu349ad662013-08-16 11:08:55 +0800611 rx_count++;
612 }
613
614 return rx_count;
615}
616
Haikun Wangd1f4a382015-06-09 19:45:27 +0800617static int dspi_tcfq_write(struct fsl_dspi *dspi)
618{
619 int tx_word;
620 u32 dspi_pushr = 0;
621
622 tx_word = is_double_byte_mode(dspi);
623
624 if (tx_word && (dspi->len == 1)) {
625 dspi->dataflags |= TRAN_STATE_WORD_ODD_NUM;
Bhuvanchandra DVef22d162015-12-10 11:25:30 +0530626 regmap_update_bits(dspi->regmap, SPI_CTAR(0),
Haikun Wangd1f4a382015-06-09 19:45:27 +0800627 SPI_FRAME_BITS_MASK, SPI_FRAME_BITS(8));
628 tx_word = 0;
629 }
630
631 dspi_pushr = dspi_data_to_pushr(dspi, tx_word);
632
633 if ((dspi->cs_change) && (!dspi->len))
634 dspi_pushr &= ~SPI_PUSHR_CONT;
635
636 regmap_write(dspi->regmap, SPI_PUSHR, dspi_pushr);
637
638 return tx_word + 1;
639}
640
641static void dspi_tcfq_read(struct fsl_dspi *dspi)
642{
643 int rx_word = is_double_byte_mode(dspi);
644
645 if (rx_word && (dspi->rx_end - dspi->rx) == 1)
646 rx_word = 0;
647
648 dspi_data_from_popr(dspi, rx_word);
649}
650
Chao Fu9298bc72015-01-27 16:27:22 +0530651static int dspi_transfer_one_message(struct spi_master *master,
652 struct spi_message *message)
Chao Fu349ad662013-08-16 11:08:55 +0800653{
Chao Fu9298bc72015-01-27 16:27:22 +0530654 struct fsl_dspi *dspi = spi_master_get_devdata(master);
655 struct spi_device *spi = message->spi;
656 struct spi_transfer *transfer;
657 int status = 0;
Haikun Wangd1f4a382015-06-09 19:45:27 +0800658 enum dspi_trans_mode trans_mode;
Haikun Wangc042af92015-06-09 19:45:37 +0800659 u32 spi_tcr;
660
661 regmap_read(dspi->regmap, SPI_TCR, &spi_tcr);
662 dspi->spi_tcnt = SPI_TCR_GET_TCNT(spi_tcr);
Haikun Wangd1f4a382015-06-09 19:45:27 +0800663
Chao Fu9298bc72015-01-27 16:27:22 +0530664 message->actual_length = 0;
Chao Fu349ad662013-08-16 11:08:55 +0800665
Chao Fu9298bc72015-01-27 16:27:22 +0530666 list_for_each_entry(transfer, &message->transfers, transfer_list) {
667 dspi->cur_transfer = transfer;
668 dspi->cur_msg = message;
669 dspi->cur_chip = spi_get_ctldata(spi);
670 dspi->cs = spi->chip_select;
Haikun Wang9deef022015-05-13 18:12:15 +0800671 dspi->cs_change = 0;
Andrey Vostrikov92dc20d2016-04-05 15:33:14 +0300672 if (list_is_last(&dspi->cur_transfer->transfer_list,
673 &dspi->cur_msg->transfers) || transfer->cs_change)
Haikun Wang9deef022015-05-13 18:12:15 +0800674 dspi->cs_change = 1;
Chao Fu9298bc72015-01-27 16:27:22 +0530675 dspi->void_write_data = dspi->cur_chip->void_write_data;
Chao Fu349ad662013-08-16 11:08:55 +0800676
Chao Fu9298bc72015-01-27 16:27:22 +0530677 dspi->dataflags = 0;
678 dspi->tx = (void *)transfer->tx_buf;
679 dspi->tx_end = dspi->tx + transfer->len;
680 dspi->rx = transfer->rx_buf;
681 dspi->rx_end = dspi->rx + transfer->len;
682 dspi->len = transfer->len;
Chao Fu349ad662013-08-16 11:08:55 +0800683
Chao Fu9298bc72015-01-27 16:27:22 +0530684 if (!dspi->rx)
685 dspi->dataflags |= TRAN_STATE_RX_VOID;
Chao Fu349ad662013-08-16 11:08:55 +0800686
Chao Fu9298bc72015-01-27 16:27:22 +0530687 if (!dspi->tx)
688 dspi->dataflags |= TRAN_STATE_TX_VOID;
Chao Fu349ad662013-08-16 11:08:55 +0800689
Chao Fu9298bc72015-01-27 16:27:22 +0530690 regmap_write(dspi->regmap, SPI_MCR, dspi->cur_chip->mcr_val);
691 regmap_update_bits(dspi->regmap, SPI_MCR,
692 SPI_MCR_CLR_TXF | SPI_MCR_CLR_RXF,
693 SPI_MCR_CLR_TXF | SPI_MCR_CLR_RXF);
Bhuvanchandra DVef22d162015-12-10 11:25:30 +0530694 regmap_write(dspi->regmap, SPI_CTAR(0),
Chao Fu1acbdeb2014-02-12 15:29:05 +0800695 dspi->cur_chip->ctar_val);
Chao Fu349ad662013-08-16 11:08:55 +0800696
Haikun Wangd1f4a382015-06-09 19:45:27 +0800697 trans_mode = dspi->devtype_data->trans_mode;
698 switch (trans_mode) {
699 case DSPI_EOQ_MODE:
700 regmap_write(dspi->regmap, SPI_RSER, SPI_RSER_EOQFE);
Haikun Wangc042af92015-06-09 19:45:37 +0800701 dspi_eoq_write(dspi);
Haikun Wangd1f4a382015-06-09 19:45:27 +0800702 break;
703 case DSPI_TCFQ_MODE:
704 regmap_write(dspi->regmap, SPI_RSER, SPI_RSER_TCFQE);
Haikun Wangc042af92015-06-09 19:45:37 +0800705 dspi_tcfq_write(dspi);
Haikun Wangd1f4a382015-06-09 19:45:27 +0800706 break;
Sanchayan Maity90ba3702016-11-10 17:49:15 +0530707 case DSPI_DMA_MODE:
708 regmap_write(dspi->regmap, SPI_RSER,
709 SPI_RSER_TFFFE | SPI_RSER_TFFFD |
710 SPI_RSER_RFDFE | SPI_RSER_RFDFD);
711 status = dspi_dma_xfer(dspi);
Sanchayan Maity98114302016-11-17 17:46:48 +0530712 break;
Haikun Wangd1f4a382015-06-09 19:45:27 +0800713 default:
714 dev_err(&dspi->pdev->dev, "unsupported trans_mode %u\n",
715 trans_mode);
716 status = -EINVAL;
717 goto out;
718 }
Chao Fu349ad662013-08-16 11:08:55 +0800719
Sanchayan Maity98114302016-11-17 17:46:48 +0530720 if (trans_mode != DSPI_DMA_MODE) {
721 if (wait_event_interruptible(dspi->waitq,
722 dspi->waitflags))
723 dev_err(&dspi->pdev->dev,
724 "wait transfer complete fail!\n");
725 dspi->waitflags = 0;
726 }
Chao Fu349ad662013-08-16 11:08:55 +0800727
Chao Fu9298bc72015-01-27 16:27:22 +0530728 if (transfer->delay_usecs)
729 udelay(transfer->delay_usecs);
Chao Fu349ad662013-08-16 11:08:55 +0800730 }
731
Haikun Wangd1f4a382015-06-09 19:45:27 +0800732out:
Chao Fu9298bc72015-01-27 16:27:22 +0530733 message->status = status;
734 spi_finalize_current_message(master);
735
736 return status;
Chao Fu349ad662013-08-16 11:08:55 +0800737}
738
Chao Fu9298bc72015-01-27 16:27:22 +0530739static int dspi_setup(struct spi_device *spi)
Chao Fu349ad662013-08-16 11:08:55 +0800740{
741 struct chip_data *chip;
742 struct fsl_dspi *dspi = spi_master_get_devdata(spi->master);
Aaron Brice95bf15f2015-04-03 13:39:31 -0700743 u32 cs_sck_delay = 0, sck_cs_delay = 0;
744 unsigned char br = 0, pbr = 0, pcssck = 0, cssck = 0;
745 unsigned char pasc = 0, asc = 0, fmsz = 0;
746 unsigned long clkrate;
Chao Fu349ad662013-08-16 11:08:55 +0800747
Bhuvanchandra DVceadfd82015-01-31 22:03:25 +0530748 if ((spi->bits_per_word >= 4) && (spi->bits_per_word <= 16)) {
749 fmsz = spi->bits_per_word - 1;
750 } else {
751 pr_err("Invalid wordsize\n");
752 return -ENODEV;
753 }
754
Chao Fu349ad662013-08-16 11:08:55 +0800755 /* Only alloc on first setup */
756 chip = spi_get_ctldata(spi);
757 if (chip == NULL) {
Bhuvanchandra DV973fbce2015-01-27 16:27:20 +0530758 chip = kzalloc(sizeof(struct chip_data), GFP_KERNEL);
Chao Fu349ad662013-08-16 11:08:55 +0800759 if (!chip)
760 return -ENOMEM;
761 }
762
Aaron Brice95bf15f2015-04-03 13:39:31 -0700763 of_property_read_u32(spi->dev.of_node, "fsl,spi-cs-sck-delay",
764 &cs_sck_delay);
765
766 of_property_read_u32(spi->dev.of_node, "fsl,spi-sck-cs-delay",
767 &sck_cs_delay);
768
Chao Fu349ad662013-08-16 11:08:55 +0800769 chip->mcr_val = SPI_MCR_MASTER | SPI_MCR_PCSIS |
770 SPI_MCR_CLR_TXF | SPI_MCR_CLR_RXF;
Chao Fu349ad662013-08-16 11:08:55 +0800771
772 chip->void_write_data = 0;
773
Aaron Brice95bf15f2015-04-03 13:39:31 -0700774 clkrate = clk_get_rate(dspi->clk);
775 hz_to_spi_baud(&pbr, &br, spi->max_speed_hz, clkrate);
776
777 /* Set PCS to SCK delay scale values */
778 ns_delay_scale(&pcssck, &cssck, cs_sck_delay, clkrate);
779
780 /* Set After SCK delay scale values */
781 ns_delay_scale(&pasc, &asc, sck_cs_delay, clkrate);
Chao Fu349ad662013-08-16 11:08:55 +0800782
783 chip->ctar_val = SPI_CTAR_FMSZ(fmsz)
784 | SPI_CTAR_CPOL(spi->mode & SPI_CPOL ? 1 : 0)
785 | SPI_CTAR_CPHA(spi->mode & SPI_CPHA ? 1 : 0)
786 | SPI_CTAR_LSBFE(spi->mode & SPI_LSB_FIRST ? 1 : 0)
Aaron Brice95bf15f2015-04-03 13:39:31 -0700787 | SPI_CTAR_PCSSCK(pcssck)
788 | SPI_CTAR_CSSCK(cssck)
789 | SPI_CTAR_PASC(pasc)
790 | SPI_CTAR_ASC(asc)
Chao Fu349ad662013-08-16 11:08:55 +0800791 | SPI_CTAR_PBR(pbr)
792 | SPI_CTAR_BR(br);
793
794 spi_set_ctldata(spi, chip);
795
796 return 0;
797}
798
Bhuvanchandra DV973fbce2015-01-27 16:27:20 +0530799static void dspi_cleanup(struct spi_device *spi)
800{
801 struct chip_data *chip = spi_get_ctldata((struct spi_device *)spi);
802
803 dev_dbg(&spi->dev, "spi_device %u.%u cleanup\n",
804 spi->master->bus_num, spi->chip_select);
805
806 kfree(chip);
807}
808
Chao Fu349ad662013-08-16 11:08:55 +0800809static irqreturn_t dspi_interrupt(int irq, void *dev_id)
810{
811 struct fsl_dspi *dspi = (struct fsl_dspi *)dev_id;
Chao Fu9298bc72015-01-27 16:27:22 +0530812 struct spi_message *msg = dspi->cur_msg;
Haikun Wangd1f4a382015-06-09 19:45:27 +0800813 enum dspi_trans_mode trans_mode;
Haikun Wangc042af92015-06-09 19:45:37 +0800814 u32 spi_sr, spi_tcr;
815 u32 spi_tcnt, tcnt_diff;
816 int tx_word;
Chao Fu349ad662013-08-16 11:08:55 +0800817
Haikun Wangd1f4a382015-06-09 19:45:27 +0800818 regmap_read(dspi->regmap, SPI_SR, &spi_sr);
819 regmap_write(dspi->regmap, SPI_SR, spi_sr);
820
Chao Fu349ad662013-08-16 11:08:55 +0800821
Haikun Wangc042af92015-06-09 19:45:37 +0800822 if (spi_sr & (SPI_SR_EOQF | SPI_SR_TCFQF)) {
823 tx_word = is_double_byte_mode(dspi);
Chao Fu1acbdeb2014-02-12 15:29:05 +0800824
Haikun Wangc042af92015-06-09 19:45:37 +0800825 regmap_read(dspi->regmap, SPI_TCR, &spi_tcr);
826 spi_tcnt = SPI_TCR_GET_TCNT(spi_tcr);
827 /*
828 * The width of SPI Transfer Counter in SPI_TCR is 16bits,
829 * so the max couner is 65535. When the counter reach 65535,
830 * it will wrap around, counter reset to zero.
831 * spi_tcnt my be less than dspi->spi_tcnt, it means the
832 * counter already wrapped around.
833 * SPI Transfer Counter is a counter of transmitted frames.
834 * The size of frame maybe two bytes.
835 */
836 tcnt_diff = ((spi_tcnt + SPI_TCR_TCNT_MAX) - dspi->spi_tcnt)
837 % SPI_TCR_TCNT_MAX;
838 tcnt_diff *= (tx_word + 1);
839 if (dspi->dataflags & TRAN_STATE_WORD_ODD_NUM)
840 tcnt_diff--;
841
842 msg->actual_length += tcnt_diff;
843
844 dspi->spi_tcnt = spi_tcnt;
845
846 trans_mode = dspi->devtype_data->trans_mode;
Haikun Wangd1f4a382015-06-09 19:45:27 +0800847 switch (trans_mode) {
848 case DSPI_EOQ_MODE:
Haikun Wangc042af92015-06-09 19:45:37 +0800849 dspi_eoq_read(dspi);
Haikun Wangd1f4a382015-06-09 19:45:27 +0800850 break;
851 case DSPI_TCFQ_MODE:
Haikun Wangc042af92015-06-09 19:45:37 +0800852 dspi_tcfq_read(dspi);
Haikun Wangd1f4a382015-06-09 19:45:27 +0800853 break;
854 default:
855 dev_err(&dspi->pdev->dev, "unsupported trans_mode %u\n",
856 trans_mode);
Haikun Wangc042af92015-06-09 19:45:37 +0800857 return IRQ_HANDLED;
858 }
859
860 if (!dspi->len) {
861 if (dspi->dataflags & TRAN_STATE_WORD_ODD_NUM) {
862 regmap_update_bits(dspi->regmap,
Bhuvanchandra DVef22d162015-12-10 11:25:30 +0530863 SPI_CTAR(0),
Haikun Wangc042af92015-06-09 19:45:37 +0800864 SPI_FRAME_BITS_MASK,
865 SPI_FRAME_BITS(16));
866 dspi->dataflags &= ~TRAN_STATE_WORD_ODD_NUM;
867 }
868
869 dspi->waitflags = 1;
870 wake_up_interruptible(&dspi->waitq);
871 } else {
872 switch (trans_mode) {
873 case DSPI_EOQ_MODE:
874 dspi_eoq_write(dspi);
875 break;
876 case DSPI_TCFQ_MODE:
877 dspi_tcfq_write(dspi);
878 break;
879 default:
880 dev_err(&dspi->pdev->dev,
881 "unsupported trans_mode %u\n",
882 trans_mode);
883 }
Haikun Wangd1f4a382015-06-09 19:45:27 +0800884 }
885 }
Haikun Wangc042af92015-06-09 19:45:37 +0800886
Chao Fu349ad662013-08-16 11:08:55 +0800887 return IRQ_HANDLED;
888}
889
Jingoo Han790d1902014-05-07 16:45:41 +0900890static const struct of_device_id fsl_dspi_dt_ids[] = {
Haikun Wangd1f4a382015-06-09 19:45:27 +0800891 { .compatible = "fsl,vf610-dspi", .data = (void *)&vf610_data, },
892 { .compatible = "fsl,ls1021a-v1.0-dspi",
893 .data = (void *)&ls1021a_v1_data, },
894 { .compatible = "fsl,ls2085a-dspi", .data = (void *)&ls2085a_data, },
Chao Fu349ad662013-08-16 11:08:55 +0800895 { /* sentinel */ }
896};
897MODULE_DEVICE_TABLE(of, fsl_dspi_dt_ids);
898
899#ifdef CONFIG_PM_SLEEP
900static int dspi_suspend(struct device *dev)
901{
902 struct spi_master *master = dev_get_drvdata(dev);
903 struct fsl_dspi *dspi = spi_master_get_devdata(master);
904
905 spi_master_suspend(master);
906 clk_disable_unprepare(dspi->clk);
907
Mirza Krak432a17d2015-06-12 18:55:22 +0200908 pinctrl_pm_select_sleep_state(dev);
909
Chao Fu349ad662013-08-16 11:08:55 +0800910 return 0;
911}
912
913static int dspi_resume(struct device *dev)
914{
Chao Fu349ad662013-08-16 11:08:55 +0800915 struct spi_master *master = dev_get_drvdata(dev);
916 struct fsl_dspi *dspi = spi_master_get_devdata(master);
Fabio Estevam1c5ea2b2016-08-21 23:05:30 -0300917 int ret;
Chao Fu349ad662013-08-16 11:08:55 +0800918
Mirza Krak432a17d2015-06-12 18:55:22 +0200919 pinctrl_pm_select_default_state(dev);
920
Fabio Estevam1c5ea2b2016-08-21 23:05:30 -0300921 ret = clk_prepare_enable(dspi->clk);
922 if (ret)
923 return ret;
Chao Fu349ad662013-08-16 11:08:55 +0800924 spi_master_resume(master);
925
926 return 0;
927}
928#endif /* CONFIG_PM_SLEEP */
929
Jingoo Hanba811ad2014-02-26 10:30:14 +0900930static SIMPLE_DEV_PM_OPS(dspi_pm, dspi_suspend, dspi_resume);
Chao Fu349ad662013-08-16 11:08:55 +0800931
Xiubo Li409851c2014-10-09 11:27:45 +0800932static const struct regmap_config dspi_regmap_config = {
Chao Fu1acbdeb2014-02-12 15:29:05 +0800933 .reg_bits = 32,
934 .val_bits = 32,
935 .reg_stride = 4,
936 .max_register = 0x88,
Chao Fu349ad662013-08-16 11:08:55 +0800937};
938
939static int dspi_probe(struct platform_device *pdev)
940{
941 struct device_node *np = pdev->dev.of_node;
942 struct spi_master *master;
943 struct fsl_dspi *dspi;
944 struct resource *res;
Chao Fu1acbdeb2014-02-12 15:29:05 +0800945 void __iomem *base;
Chao Fu349ad662013-08-16 11:08:55 +0800946 int ret = 0, cs_num, bus_num;
947
948 master = spi_alloc_master(&pdev->dev, sizeof(struct fsl_dspi));
949 if (!master)
950 return -ENOMEM;
951
952 dspi = spi_master_get_devdata(master);
953 dspi->pdev = pdev;
Chao Fu9298bc72015-01-27 16:27:22 +0530954 dspi->master = master;
955
956 master->transfer = NULL;
957 master->setup = dspi_setup;
958 master->transfer_one_message = dspi_transfer_one_message;
959 master->dev.of_node = pdev->dev.of_node;
Chao Fu349ad662013-08-16 11:08:55 +0800960
Bhuvanchandra DV973fbce2015-01-27 16:27:20 +0530961 master->cleanup = dspi_cleanup;
Chao Fu349ad662013-08-16 11:08:55 +0800962 master->mode_bits = SPI_CPOL | SPI_CPHA;
963 master->bits_per_word_mask = SPI_BPW_MASK(4) | SPI_BPW_MASK(8) |
964 SPI_BPW_MASK(16);
965
966 ret = of_property_read_u32(np, "spi-num-chipselects", &cs_num);
967 if (ret < 0) {
968 dev_err(&pdev->dev, "can't get spi-num-chipselects\n");
969 goto out_master_put;
970 }
971 master->num_chipselect = cs_num;
972
973 ret = of_property_read_u32(np, "bus-num", &bus_num);
974 if (ret < 0) {
975 dev_err(&pdev->dev, "can't get bus-num\n");
976 goto out_master_put;
977 }
978 master->bus_num = bus_num;
979
LABBE Corentin53d89162016-08-16 11:50:21 +0200980 dspi->devtype_data = of_device_get_match_data(&pdev->dev);
Haikun Wangd1f4a382015-06-09 19:45:27 +0800981 if (!dspi->devtype_data) {
982 dev_err(&pdev->dev, "can't get devtype_data\n");
983 ret = -EFAULT;
984 goto out_master_put;
985 }
986
Chao Fu349ad662013-08-16 11:08:55 +0800987 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Chao Fu1acbdeb2014-02-12 15:29:05 +0800988 base = devm_ioremap_resource(&pdev->dev, res);
989 if (IS_ERR(base)) {
990 ret = PTR_ERR(base);
Chao Fu349ad662013-08-16 11:08:55 +0800991 goto out_master_put;
992 }
993
Haikun Wangd2233322015-04-24 18:54:47 +0800994 dspi->regmap = devm_regmap_init_mmio_clk(&pdev->dev, NULL, base,
Chao Fu1acbdeb2014-02-12 15:29:05 +0800995 &dspi_regmap_config);
996 if (IS_ERR(dspi->regmap)) {
997 dev_err(&pdev->dev, "failed to init regmap: %ld\n",
998 PTR_ERR(dspi->regmap));
999 return PTR_ERR(dspi->regmap);
1000 }
1001
Chao Fu349ad662013-08-16 11:08:55 +08001002 dspi->irq = platform_get_irq(pdev, 0);
1003 if (dspi->irq < 0) {
1004 dev_err(&pdev->dev, "can't get platform irq\n");
1005 ret = dspi->irq;
1006 goto out_master_put;
1007 }
1008
1009 ret = devm_request_irq(&pdev->dev, dspi->irq, dspi_interrupt, 0,
1010 pdev->name, dspi);
1011 if (ret < 0) {
1012 dev_err(&pdev->dev, "Unable to attach DSPI interrupt\n");
1013 goto out_master_put;
1014 }
1015
1016 dspi->clk = devm_clk_get(&pdev->dev, "dspi");
1017 if (IS_ERR(dspi->clk)) {
1018 ret = PTR_ERR(dspi->clk);
1019 dev_err(&pdev->dev, "unable to get clock\n");
1020 goto out_master_put;
1021 }
Fabio Estevam1c5ea2b2016-08-21 23:05:30 -03001022 ret = clk_prepare_enable(dspi->clk);
1023 if (ret)
1024 goto out_master_put;
Chao Fu349ad662013-08-16 11:08:55 +08001025
Sanchayan Maity90ba3702016-11-10 17:49:15 +05301026 if (dspi->devtype_data->trans_mode == DSPI_DMA_MODE) {
1027 if (dspi_request_dma(dspi, res->start)) {
1028 dev_err(&pdev->dev, "can't get dma channels\n");
1029 goto out_clk_put;
1030 }
1031 }
1032
Bhuvanchandra DV9419b202016-03-22 01:41:52 +05301033 master->max_speed_hz =
1034 clk_get_rate(dspi->clk) / dspi->devtype_data->max_clock_factor;
1035
Chao Fu349ad662013-08-16 11:08:55 +08001036 init_waitqueue_head(&dspi->waitq);
Axel Lin017145f2014-02-14 12:49:12 +08001037 platform_set_drvdata(pdev, master);
Chao Fu349ad662013-08-16 11:08:55 +08001038
Chao Fu9298bc72015-01-27 16:27:22 +05301039 ret = spi_register_master(master);
Chao Fu349ad662013-08-16 11:08:55 +08001040 if (ret != 0) {
1041 dev_err(&pdev->dev, "Problem registering DSPI master\n");
1042 goto out_clk_put;
1043 }
1044
Chao Fu349ad662013-08-16 11:08:55 +08001045 return ret;
1046
1047out_clk_put:
1048 clk_disable_unprepare(dspi->clk);
1049out_master_put:
1050 spi_master_put(master);
Chao Fu349ad662013-08-16 11:08:55 +08001051
1052 return ret;
1053}
1054
1055static int dspi_remove(struct platform_device *pdev)
1056{
Axel Lin017145f2014-02-14 12:49:12 +08001057 struct spi_master *master = platform_get_drvdata(pdev);
1058 struct fsl_dspi *dspi = spi_master_get_devdata(master);
Chao Fu349ad662013-08-16 11:08:55 +08001059
1060 /* Disconnect from the SPI framework */
Sanchayan Maity90ba3702016-11-10 17:49:15 +05301061 dspi_release_dma(dspi);
Wei Yongjun05209f42013-10-12 15:15:31 +08001062 clk_disable_unprepare(dspi->clk);
Chao Fu9298bc72015-01-27 16:27:22 +05301063 spi_unregister_master(dspi->master);
Chao Fu349ad662013-08-16 11:08:55 +08001064
1065 return 0;
1066}
1067
1068static struct platform_driver fsl_dspi_driver = {
1069 .driver.name = DRIVER_NAME,
1070 .driver.of_match_table = fsl_dspi_dt_ids,
1071 .driver.owner = THIS_MODULE,
1072 .driver.pm = &dspi_pm,
1073 .probe = dspi_probe,
1074 .remove = dspi_remove,
1075};
1076module_platform_driver(fsl_dspi_driver);
1077
1078MODULE_DESCRIPTION("Freescale DSPI Controller Driver");
Uwe Kleine-Königb444d1d2013-09-10 10:46:33 +02001079MODULE_LICENSE("GPL");
Chao Fu349ad662013-08-16 11:08:55 +08001080MODULE_ALIAS("platform:" DRIVER_NAME);