2 * Marvell Armada-3700 SPI controller driver
4 * Copyright (C) 2016 Marvell Ltd.
6 * Author: Wilson Ding <dingwei@marvell.com>
7 * Author: Romain Perier <romain.perier@free-electrons.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/clk.h>
15 #include <linux/completion.h>
16 #include <linux/delay.h>
17 #include <linux/err.h>
18 #include <linux/interrupt.h>
20 #include <linux/kernel.h>
21 #include <linux/module.h>
23 #include <linux/of_irq.h>
24 #include <linux/of_device.h>
25 #include <linux/pinctrl/consumer.h>
26 #include <linux/spi/spi.h>
28 #define DRIVER_NAME "armada_3700_spi"
30 #define A3700_SPI_MAX_SPEED_HZ 100000000
31 #define A3700_SPI_MAX_PRESCALE 30
32 #define A3700_SPI_TIMEOUT 10
34 /* SPI Register Offest */
35 #define A3700_SPI_IF_CTRL_REG 0x00
36 #define A3700_SPI_IF_CFG_REG 0x04
37 #define A3700_SPI_DATA_OUT_REG 0x08
38 #define A3700_SPI_DATA_IN_REG 0x0C
39 #define A3700_SPI_IF_INST_REG 0x10
40 #define A3700_SPI_IF_ADDR_REG 0x14
41 #define A3700_SPI_IF_RMODE_REG 0x18
42 #define A3700_SPI_IF_HDR_CNT_REG 0x1C
43 #define A3700_SPI_IF_DIN_CNT_REG 0x20
44 #define A3700_SPI_IF_TIME_REG 0x24
45 #define A3700_SPI_INT_STAT_REG 0x28
46 #define A3700_SPI_INT_MASK_REG 0x2C
48 /* A3700_SPI_IF_CTRL_REG */
49 #define A3700_SPI_EN BIT(16)
50 #define A3700_SPI_ADDR_NOT_CONFIG BIT(12)
51 #define A3700_SPI_WFIFO_OVERFLOW BIT(11)
52 #define A3700_SPI_WFIFO_UNDERFLOW BIT(10)
53 #define A3700_SPI_RFIFO_OVERFLOW BIT(9)
54 #define A3700_SPI_RFIFO_UNDERFLOW BIT(8)
55 #define A3700_SPI_WFIFO_FULL BIT(7)
56 #define A3700_SPI_WFIFO_EMPTY BIT(6)
57 #define A3700_SPI_RFIFO_FULL BIT(5)
58 #define A3700_SPI_RFIFO_EMPTY BIT(4)
59 #define A3700_SPI_WFIFO_RDY BIT(3)
60 #define A3700_SPI_RFIFO_RDY BIT(2)
61 #define A3700_SPI_XFER_RDY BIT(1)
62 #define A3700_SPI_XFER_DONE BIT(0)
64 /* A3700_SPI_IF_CFG_REG */
65 #define A3700_SPI_WFIFO_THRS BIT(28)
66 #define A3700_SPI_RFIFO_THRS BIT(24)
67 #define A3700_SPI_AUTO_CS BIT(20)
68 #define A3700_SPI_DMA_RD_EN BIT(18)
69 #define A3700_SPI_FIFO_MODE BIT(17)
70 #define A3700_SPI_SRST BIT(16)
71 #define A3700_SPI_XFER_START BIT(15)
72 #define A3700_SPI_XFER_STOP BIT(14)
73 #define A3700_SPI_INST_PIN BIT(13)
74 #define A3700_SPI_ADDR_PIN BIT(12)
75 #define A3700_SPI_DATA_PIN1 BIT(11)
76 #define A3700_SPI_DATA_PIN0 BIT(10)
77 #define A3700_SPI_FIFO_FLUSH BIT(9)
78 #define A3700_SPI_RW_EN BIT(8)
79 #define A3700_SPI_CLK_POL BIT(7)
80 #define A3700_SPI_CLK_PHA BIT(6)
81 #define A3700_SPI_BYTE_LEN BIT(5)
82 #define A3700_SPI_CLK_PRESCALE BIT(0)
83 #define A3700_SPI_CLK_PRESCALE_MASK (0x1f)
84 #define A3700_SPI_CLK_EVEN_OFFS (0x10)
86 #define A3700_SPI_WFIFO_THRS_BIT 28
87 #define A3700_SPI_RFIFO_THRS_BIT 24
88 #define A3700_SPI_FIFO_THRS_MASK 0x7
90 #define A3700_SPI_DATA_PIN_MASK 0x3
92 /* A3700_SPI_IF_HDR_CNT_REG */
93 #define A3700_SPI_DUMMY_CNT_BIT 12
94 #define A3700_SPI_DUMMY_CNT_MASK 0x7
95 #define A3700_SPI_RMODE_CNT_BIT 8
96 #define A3700_SPI_RMODE_CNT_MASK 0x3
97 #define A3700_SPI_ADDR_CNT_BIT 4
98 #define A3700_SPI_ADDR_CNT_MASK 0x7
99 #define A3700_SPI_INSTR_CNT_BIT 0
100 #define A3700_SPI_INSTR_CNT_MASK 0x3
102 /* A3700_SPI_IF_TIME_REG */
103 #define A3700_SPI_CLK_CAPT_EDGE BIT(7)
106 struct spi_master
*master
;
117 struct completion done
;
120 static u32
spireg_read(struct a3700_spi
*a3700_spi
, u32 offset
)
122 return readl(a3700_spi
->base
+ offset
);
125 static void spireg_write(struct a3700_spi
*a3700_spi
, u32 offset
, u32 data
)
127 writel(data
, a3700_spi
->base
+ offset
);
130 static void a3700_spi_auto_cs_unset(struct a3700_spi
*a3700_spi
)
134 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
135 val
&= ~A3700_SPI_AUTO_CS
;
136 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
139 static void a3700_spi_activate_cs(struct a3700_spi
*a3700_spi
, unsigned int cs
)
143 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CTRL_REG
);
144 val
|= (A3700_SPI_EN
<< cs
);
145 spireg_write(a3700_spi
, A3700_SPI_IF_CTRL_REG
, val
);
148 static void a3700_spi_deactivate_cs(struct a3700_spi
*a3700_spi
,
153 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CTRL_REG
);
154 val
&= ~(A3700_SPI_EN
<< cs
);
155 spireg_write(a3700_spi
, A3700_SPI_IF_CTRL_REG
, val
);
158 static int a3700_spi_pin_mode_set(struct a3700_spi
*a3700_spi
,
159 unsigned int pin_mode
, bool receiving
)
163 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
164 val
&= ~(A3700_SPI_INST_PIN
| A3700_SPI_ADDR_PIN
);
165 val
&= ~(A3700_SPI_DATA_PIN0
| A3700_SPI_DATA_PIN1
);
168 case SPI_NBITS_SINGLE
:
171 val
|= A3700_SPI_DATA_PIN0
;
174 val
|= A3700_SPI_DATA_PIN1
;
175 /* RX during address reception uses 4-pin */
177 val
|= A3700_SPI_ADDR_PIN
;
180 dev_err(&a3700_spi
->master
->dev
, "wrong pin mode %u", pin_mode
);
184 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
189 static void a3700_spi_fifo_mode_set(struct a3700_spi
*a3700_spi
, bool enable
)
193 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
195 val
|= A3700_SPI_FIFO_MODE
;
197 val
&= ~A3700_SPI_FIFO_MODE
;
198 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
201 static void a3700_spi_mode_set(struct a3700_spi
*a3700_spi
,
202 unsigned int mode_bits
)
206 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
208 if (mode_bits
& SPI_CPOL
)
209 val
|= A3700_SPI_CLK_POL
;
211 val
&= ~A3700_SPI_CLK_POL
;
213 if (mode_bits
& SPI_CPHA
)
214 val
|= A3700_SPI_CLK_PHA
;
216 val
&= ~A3700_SPI_CLK_PHA
;
218 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
221 static void a3700_spi_clock_set(struct a3700_spi
*a3700_spi
,
222 unsigned int speed_hz
)
227 prescale
= DIV_ROUND_UP(clk_get_rate(a3700_spi
->clk
), speed_hz
);
229 /* For prescaler values over 15, we can only set it by steps of 2.
230 * Starting from A3700_SPI_CLK_EVEN_OFFS, we set values from 0 up to
231 * 30. We only use this range from 16 to 30.
234 prescale
= A3700_SPI_CLK_EVEN_OFFS
+ DIV_ROUND_UP(prescale
, 2);
236 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
237 val
= val
& ~A3700_SPI_CLK_PRESCALE_MASK
;
239 val
= val
| (prescale
& A3700_SPI_CLK_PRESCALE_MASK
);
240 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
243 val
= spireg_read(a3700_spi
, A3700_SPI_IF_TIME_REG
);
244 val
|= A3700_SPI_CLK_CAPT_EDGE
;
245 spireg_write(a3700_spi
, A3700_SPI_IF_TIME_REG
, val
);
249 static void a3700_spi_bytelen_set(struct a3700_spi
*a3700_spi
, unsigned int len
)
253 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
255 val
|= A3700_SPI_BYTE_LEN
;
257 val
&= ~A3700_SPI_BYTE_LEN
;
258 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
260 a3700_spi
->byte_len
= len
;
263 static int a3700_spi_fifo_flush(struct a3700_spi
*a3700_spi
)
265 int timeout
= A3700_SPI_TIMEOUT
;
268 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
269 val
|= A3700_SPI_FIFO_FLUSH
;
270 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
273 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
274 if (!(val
& A3700_SPI_FIFO_FLUSH
))
282 static int a3700_spi_init(struct a3700_spi
*a3700_spi
)
284 struct spi_master
*master
= a3700_spi
->master
;
289 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
290 val
|= A3700_SPI_SRST
;
291 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
293 udelay(A3700_SPI_TIMEOUT
);
295 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
296 val
&= ~A3700_SPI_SRST
;
297 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
299 /* Disable AUTO_CS and deactivate all chip-selects */
300 a3700_spi_auto_cs_unset(a3700_spi
);
301 for (i
= 0; i
< master
->num_chipselect
; i
++)
302 a3700_spi_deactivate_cs(a3700_spi
, i
);
304 /* Enable FIFO mode */
305 a3700_spi_fifo_mode_set(a3700_spi
, true);
308 a3700_spi_mode_set(a3700_spi
, master
->mode_bits
);
311 spireg_write(a3700_spi
, A3700_SPI_IF_HDR_CNT_REG
, 0);
312 spireg_write(a3700_spi
, A3700_SPI_IF_DIN_CNT_REG
, 0);
314 /* Mask the interrupts and clear cause bits */
315 spireg_write(a3700_spi
, A3700_SPI_INT_MASK_REG
, 0);
316 spireg_write(a3700_spi
, A3700_SPI_INT_STAT_REG
, ~0U);
321 static irqreturn_t
a3700_spi_interrupt(int irq
, void *dev_id
)
323 struct spi_master
*master
= dev_id
;
324 struct a3700_spi
*a3700_spi
;
327 a3700_spi
= spi_master_get_devdata(master
);
329 /* Get interrupt causes */
330 cause
= spireg_read(a3700_spi
, A3700_SPI_INT_STAT_REG
);
332 if (!cause
|| !(a3700_spi
->wait_mask
& cause
))
335 /* mask and acknowledge the SPI interrupts */
336 spireg_write(a3700_spi
, A3700_SPI_INT_MASK_REG
, 0);
337 spireg_write(a3700_spi
, A3700_SPI_INT_STAT_REG
, cause
);
339 /* Wake up the transfer */
340 complete(&a3700_spi
->done
);
345 static bool a3700_spi_wait_completion(struct spi_device
*spi
)
347 struct a3700_spi
*a3700_spi
;
348 unsigned int timeout
;
349 unsigned int ctrl_reg
;
350 unsigned long timeout_jiffies
;
352 a3700_spi
= spi_master_get_devdata(spi
->master
);
354 /* SPI interrupt is edge-triggered, which means an interrupt will
355 * be generated only when detecting a specific status bit changed
356 * from '0' to '1'. So when we start waiting for a interrupt, we
357 * need to check status bit in control reg first, if it is already 1,
358 * then we do not need to wait for interrupt
360 ctrl_reg
= spireg_read(a3700_spi
, A3700_SPI_IF_CTRL_REG
);
361 if (a3700_spi
->wait_mask
& ctrl_reg
)
364 reinit_completion(&a3700_spi
->done
);
366 spireg_write(a3700_spi
, A3700_SPI_INT_MASK_REG
,
367 a3700_spi
->wait_mask
);
369 timeout_jiffies
= msecs_to_jiffies(A3700_SPI_TIMEOUT
);
370 timeout
= wait_for_completion_timeout(&a3700_spi
->done
,
373 a3700_spi
->wait_mask
= 0;
378 /* there might be the case that right after we checked the
379 * status bits in this routine and before start to wait for
380 * interrupt by wait_for_completion_timeout, the interrupt
381 * happens, to avoid missing it we need to double check
382 * status bits in control reg, if it is already 1, then
383 * consider that we have the interrupt successfully and
386 ctrl_reg
= spireg_read(a3700_spi
, A3700_SPI_IF_CTRL_REG
);
387 if (a3700_spi
->wait_mask
& ctrl_reg
)
390 spireg_write(a3700_spi
, A3700_SPI_INT_MASK_REG
, 0);
392 /* Timeout was reached */
396 static bool a3700_spi_transfer_wait(struct spi_device
*spi
,
397 unsigned int bit_mask
)
399 struct a3700_spi
*a3700_spi
;
401 a3700_spi
= spi_master_get_devdata(spi
->master
);
402 a3700_spi
->wait_mask
= bit_mask
;
404 return a3700_spi_wait_completion(spi
);
407 static void a3700_spi_fifo_thres_set(struct a3700_spi
*a3700_spi
,
412 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
413 val
&= ~(A3700_SPI_FIFO_THRS_MASK
<< A3700_SPI_RFIFO_THRS_BIT
);
414 val
|= (bytes
- 1) << A3700_SPI_RFIFO_THRS_BIT
;
415 val
&= ~(A3700_SPI_FIFO_THRS_MASK
<< A3700_SPI_WFIFO_THRS_BIT
);
416 val
|= (7 - bytes
) << A3700_SPI_WFIFO_THRS_BIT
;
417 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
420 static void a3700_spi_transfer_setup(struct spi_device
*spi
,
421 struct spi_transfer
*xfer
)
423 struct a3700_spi
*a3700_spi
;
425 a3700_spi
= spi_master_get_devdata(spi
->master
);
427 a3700_spi_clock_set(a3700_spi
, xfer
->speed_hz
);
429 /* Use 4 bytes long transfers. Each transfer method has its way to deal
430 * with the remaining bytes for non 4-bytes aligned transfers.
432 a3700_spi_bytelen_set(a3700_spi
, 4);
434 /* Initialize the working buffers */
435 a3700_spi
->tx_buf
= xfer
->tx_buf
;
436 a3700_spi
->rx_buf
= xfer
->rx_buf
;
437 a3700_spi
->buf_len
= xfer
->len
;
440 static void a3700_spi_set_cs(struct spi_device
*spi
, bool enable
)
442 struct a3700_spi
*a3700_spi
= spi_master_get_devdata(spi
->master
);
445 a3700_spi_activate_cs(a3700_spi
, spi
->chip_select
);
447 a3700_spi_deactivate_cs(a3700_spi
, spi
->chip_select
);
450 static void a3700_spi_header_set(struct a3700_spi
*a3700_spi
)
452 unsigned int addr_cnt
;
455 /* Clear the header registers */
456 spireg_write(a3700_spi
, A3700_SPI_IF_INST_REG
, 0);
457 spireg_write(a3700_spi
, A3700_SPI_IF_ADDR_REG
, 0);
458 spireg_write(a3700_spi
, A3700_SPI_IF_RMODE_REG
, 0);
459 spireg_write(a3700_spi
, A3700_SPI_IF_HDR_CNT_REG
, 0);
461 /* Set header counters */
462 if (a3700_spi
->tx_buf
) {
464 * when tx data is not 4 bytes aligned, there will be unexpected
465 * bytes out of SPI output register, since it always shifts out
466 * as whole 4 bytes. This might cause incorrect transaction with
467 * some devices. To avoid that, use SPI header count feature to
468 * transfer up to 3 bytes of data first, and then make the rest
469 * of data 4-byte aligned.
471 addr_cnt
= a3700_spi
->buf_len
% 4;
473 val
= (addr_cnt
& A3700_SPI_ADDR_CNT_MASK
)
474 << A3700_SPI_ADDR_CNT_BIT
;
475 spireg_write(a3700_spi
, A3700_SPI_IF_HDR_CNT_REG
, val
);
477 /* Update the buffer length to be transferred */
478 a3700_spi
->buf_len
-= addr_cnt
;
480 /* transfer 1~3 bytes through address count */
483 val
= (val
<< 8) | a3700_spi
->tx_buf
[0];
486 spireg_write(a3700_spi
, A3700_SPI_IF_ADDR_REG
, val
);
491 static int a3700_is_wfifo_full(struct a3700_spi
*a3700_spi
)
495 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CTRL_REG
);
496 return (val
& A3700_SPI_WFIFO_FULL
);
499 static int a3700_spi_fifo_write(struct a3700_spi
*a3700_spi
)
503 while (!a3700_is_wfifo_full(a3700_spi
) && a3700_spi
->buf_len
) {
504 val
= *(u32
*)a3700_spi
->tx_buf
;
505 spireg_write(a3700_spi
, A3700_SPI_DATA_OUT_REG
, val
);
506 a3700_spi
->buf_len
-= 4;
507 a3700_spi
->tx_buf
+= 4;
513 static int a3700_is_rfifo_empty(struct a3700_spi
*a3700_spi
)
515 u32 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CTRL_REG
);
517 return (val
& A3700_SPI_RFIFO_EMPTY
);
520 static int a3700_spi_fifo_read(struct a3700_spi
*a3700_spi
)
524 while (!a3700_is_rfifo_empty(a3700_spi
) && a3700_spi
->buf_len
) {
525 val
= spireg_read(a3700_spi
, A3700_SPI_DATA_IN_REG
);
526 if (a3700_spi
->buf_len
>= 4) {
528 memcpy(a3700_spi
->rx_buf
, &val
, 4);
530 a3700_spi
->buf_len
-= 4;
531 a3700_spi
->rx_buf
+= 4;
534 * When remain bytes is not larger than 4, we should
535 * avoid memory overwriting and just write the left rx
538 while (a3700_spi
->buf_len
) {
539 *a3700_spi
->rx_buf
= val
& 0xff;
542 a3700_spi
->buf_len
--;
551 static void a3700_spi_transfer_abort_fifo(struct a3700_spi
*a3700_spi
)
553 int timeout
= A3700_SPI_TIMEOUT
;
556 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
557 val
|= A3700_SPI_XFER_STOP
;
558 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
561 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
562 if (!(val
& A3700_SPI_XFER_START
))
567 a3700_spi_fifo_flush(a3700_spi
);
569 val
&= ~A3700_SPI_XFER_STOP
;
570 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
573 static int a3700_spi_prepare_message(struct spi_master
*master
,
574 struct spi_message
*message
)
576 struct a3700_spi
*a3700_spi
= spi_master_get_devdata(master
);
577 struct spi_device
*spi
= message
->spi
;
580 ret
= clk_enable(a3700_spi
->clk
);
582 dev_err(&spi
->dev
, "failed to enable clk with error %d\n", ret
);
586 /* Flush the FIFOs */
587 ret
= a3700_spi_fifo_flush(a3700_spi
);
591 a3700_spi_mode_set(a3700_spi
, spi
->mode
);
596 static int a3700_spi_transfer_one_fifo(struct spi_master
*master
,
597 struct spi_device
*spi
,
598 struct spi_transfer
*xfer
)
600 struct a3700_spi
*a3700_spi
= spi_master_get_devdata(master
);
601 int ret
= 0, timeout
= A3700_SPI_TIMEOUT
;
602 unsigned int nbits
= 0, byte_len
;
605 /* Make sure we use FIFO mode */
606 a3700_spi_fifo_mode_set(a3700_spi
, true);
608 /* Configure FIFO thresholds */
609 byte_len
= xfer
->bits_per_word
>> 3;
610 a3700_spi_fifo_thres_set(a3700_spi
, byte_len
);
613 nbits
= xfer
->tx_nbits
;
614 else if (xfer
->rx_buf
)
615 nbits
= xfer
->rx_nbits
;
617 a3700_spi_pin_mode_set(a3700_spi
, nbits
, xfer
->rx_buf
? true : false);
619 /* Flush the FIFOs */
620 a3700_spi_fifo_flush(a3700_spi
);
622 /* Transfer first bytes of data when buffer is not 4-byte aligned */
623 a3700_spi_header_set(a3700_spi
);
626 /* Clear WFIFO, since it's last 2 bytes are shifted out during
629 spireg_write(a3700_spi
, A3700_SPI_DATA_OUT_REG
, 0);
631 /* Set read data length */
632 spireg_write(a3700_spi
, A3700_SPI_IF_DIN_CNT_REG
,
634 /* Start READ transfer */
635 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
636 val
&= ~A3700_SPI_RW_EN
;
637 val
|= A3700_SPI_XFER_START
;
638 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
639 } else if (xfer
->tx_buf
) {
640 /* Start Write transfer */
641 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
642 val
|= (A3700_SPI_XFER_START
| A3700_SPI_RW_EN
);
643 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
646 * If there are data to be written to the SPI device, xmit_data
647 * flag is set true; otherwise the instruction in SPI_INSTR does
648 * not require data to be written to the SPI device, then
649 * xmit_data flag is set false.
651 a3700_spi
->xmit_data
= (a3700_spi
->buf_len
!= 0);
654 while (a3700_spi
->buf_len
) {
655 if (a3700_spi
->tx_buf
) {
656 /* Wait wfifo ready */
657 if (!a3700_spi_transfer_wait(spi
,
658 A3700_SPI_WFIFO_RDY
)) {
660 "wait wfifo ready timed out\n");
664 /* Fill up the wfifo */
665 ret
= a3700_spi_fifo_write(a3700_spi
);
668 } else if (a3700_spi
->rx_buf
) {
669 /* Wait rfifo ready */
670 if (!a3700_spi_transfer_wait(spi
,
671 A3700_SPI_RFIFO_RDY
)) {
673 "wait rfifo ready timed out\n");
677 /* Drain out the rfifo */
678 ret
= a3700_spi_fifo_read(a3700_spi
);
685 * Stop a write transfer in fifo mode:
686 * - wait all the bytes in wfifo to be shifted out
687 * - set XFER_STOP bit
688 * - wait XFER_START bit clear
689 * - clear XFER_STOP bit
690 * Stop a read transfer in fifo mode:
691 * - the hardware is to reset the XFER_START bit
692 * after the number of bytes indicated in DIN_CNT
694 * - just wait XFER_START bit clear
696 if (a3700_spi
->tx_buf
) {
697 if (a3700_spi
->xmit_data
) {
699 * If there are data written to the SPI device, wait
700 * until SPI_WFIFO_EMPTY is 1 to wait for all data to
701 * transfer out of write FIFO.
703 if (!a3700_spi_transfer_wait(spi
,
704 A3700_SPI_WFIFO_EMPTY
)) {
705 dev_err(&spi
->dev
, "wait wfifo empty timed out\n");
710 if (!a3700_spi_transfer_wait(spi
, A3700_SPI_XFER_RDY
)) {
711 dev_err(&spi
->dev
, "wait xfer ready timed out\n");
715 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
716 val
|= A3700_SPI_XFER_STOP
;
717 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
721 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
722 if (!(val
& A3700_SPI_XFER_START
))
728 dev_err(&spi
->dev
, "wait transfer start clear timed out\n");
733 val
&= ~A3700_SPI_XFER_STOP
;
734 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
738 a3700_spi_transfer_abort_fifo(a3700_spi
);
740 spi_finalize_current_transfer(master
);
745 static int a3700_spi_transfer_one_full_duplex(struct spi_master
*master
,
746 struct spi_device
*spi
,
747 struct spi_transfer
*xfer
)
749 struct a3700_spi
*a3700_spi
= spi_master_get_devdata(master
);
752 /* Disable FIFO mode */
753 a3700_spi_fifo_mode_set(a3700_spi
, false);
755 while (a3700_spi
->buf_len
) {
757 /* When we have less than 4 bytes to transfer, switch to 1 byte
758 * mode. This is reset after each transfer
760 if (a3700_spi
->buf_len
< 4)
761 a3700_spi_bytelen_set(a3700_spi
, 1);
763 if (a3700_spi
->byte_len
== 1)
764 val
= *a3700_spi
->tx_buf
;
766 val
= *(u32
*)a3700_spi
->tx_buf
;
768 spireg_write(a3700_spi
, A3700_SPI_DATA_OUT_REG
, val
);
770 /* Wait for all the data to be shifted in / out */
771 while (!(spireg_read(a3700_spi
, A3700_SPI_IF_CTRL_REG
) &
772 A3700_SPI_XFER_DONE
))
775 val
= spireg_read(a3700_spi
, A3700_SPI_DATA_IN_REG
);
777 memcpy(a3700_spi
->rx_buf
, &val
, a3700_spi
->byte_len
);
779 a3700_spi
->buf_len
-= a3700_spi
->byte_len
;
780 a3700_spi
->tx_buf
+= a3700_spi
->byte_len
;
781 a3700_spi
->rx_buf
+= a3700_spi
->byte_len
;
785 spi_finalize_current_transfer(master
);
790 static int a3700_spi_transfer_one(struct spi_master
*master
,
791 struct spi_device
*spi
,
792 struct spi_transfer
*xfer
)
794 a3700_spi_transfer_setup(spi
, xfer
);
796 if (xfer
->tx_buf
&& xfer
->rx_buf
)
797 return a3700_spi_transfer_one_full_duplex(master
, spi
, xfer
);
799 return a3700_spi_transfer_one_fifo(master
, spi
, xfer
);
802 static int a3700_spi_unprepare_message(struct spi_master
*master
,
803 struct spi_message
*message
)
805 struct a3700_spi
*a3700_spi
= spi_master_get_devdata(master
);
807 clk_disable(a3700_spi
->clk
);
812 static const struct of_device_id a3700_spi_dt_ids
[] = {
813 { .compatible
= "marvell,armada-3700-spi", .data
= NULL
},
817 MODULE_DEVICE_TABLE(of
, a3700_spi_dt_ids
);
819 static int a3700_spi_probe(struct platform_device
*pdev
)
821 struct device
*dev
= &pdev
->dev
;
822 struct device_node
*of_node
= dev
->of_node
;
823 struct resource
*res
;
824 struct spi_master
*master
;
825 struct a3700_spi
*spi
;
829 master
= spi_alloc_master(dev
, sizeof(*spi
));
831 dev_err(dev
, "master allocation failed\n");
836 if (of_property_read_u32(of_node
, "num-cs", &num_cs
)) {
837 dev_err(dev
, "could not find num-cs\n");
842 master
->bus_num
= pdev
->id
;
843 master
->dev
.of_node
= of_node
;
844 master
->mode_bits
= SPI_MODE_3
;
845 master
->num_chipselect
= num_cs
;
846 master
->bits_per_word_mask
= SPI_BPW_MASK(8) | SPI_BPW_MASK(32);
847 master
->prepare_message
= a3700_spi_prepare_message
;
848 master
->transfer_one
= a3700_spi_transfer_one
;
849 master
->unprepare_message
= a3700_spi_unprepare_message
;
850 master
->set_cs
= a3700_spi_set_cs
;
851 master
->mode_bits
|= (SPI_RX_DUAL
| SPI_TX_DUAL
|
852 SPI_RX_QUAD
| SPI_TX_QUAD
);
854 platform_set_drvdata(pdev
, master
);
856 spi
= spi_master_get_devdata(master
);
857 memset(spi
, 0, sizeof(struct a3700_spi
));
859 spi
->master
= master
;
861 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
862 spi
->base
= devm_ioremap_resource(dev
, res
);
863 if (IS_ERR(spi
->base
)) {
864 ret
= PTR_ERR(spi
->base
);
868 irq
= platform_get_irq(pdev
, 0);
870 dev_err(dev
, "could not get irq: %d\n", irq
);
876 init_completion(&spi
->done
);
878 spi
->clk
= devm_clk_get(dev
, NULL
);
879 if (IS_ERR(spi
->clk
)) {
880 dev_err(dev
, "could not find clk: %ld\n", PTR_ERR(spi
->clk
));
884 ret
= clk_prepare(spi
->clk
);
886 dev_err(dev
, "could not prepare clk: %d\n", ret
);
890 master
->max_speed_hz
= min_t(unsigned long, A3700_SPI_MAX_SPEED_HZ
,
891 clk_get_rate(spi
->clk
));
892 master
->min_speed_hz
= DIV_ROUND_UP(clk_get_rate(spi
->clk
),
893 A3700_SPI_MAX_PRESCALE
);
895 ret
= a3700_spi_init(spi
);
899 ret
= devm_request_irq(dev
, spi
->irq
, a3700_spi_interrupt
, 0,
900 dev_name(dev
), master
);
902 dev_err(dev
, "could not request IRQ: %d\n", ret
);
906 ret
= devm_spi_register_master(dev
, master
);
908 dev_err(dev
, "Failed to register master\n");
915 clk_disable_unprepare(spi
->clk
);
917 spi_master_put(master
);
922 static int a3700_spi_remove(struct platform_device
*pdev
)
924 struct spi_master
*master
= platform_get_drvdata(pdev
);
925 struct a3700_spi
*spi
= spi_master_get_devdata(master
);
927 clk_unprepare(spi
->clk
);
932 static struct platform_driver a3700_spi_driver
= {
935 .of_match_table
= of_match_ptr(a3700_spi_dt_ids
),
937 .probe
= a3700_spi_probe
,
938 .remove
= a3700_spi_remove
,
941 module_platform_driver(a3700_spi_driver
);
943 MODULE_DESCRIPTION("Armada-3700 SPI driver");
944 MODULE_AUTHOR("Wilson Ding <dingwei@marvell.com>");
945 MODULE_LICENSE("GPL");
946 MODULE_ALIAS("platform:" DRIVER_NAME
);