1 // SPDX-License-Identifier: GPL-2.0-only
3 * Marvell Armada-3700 SPI controller driver
5 * Copyright (C) 2016 Marvell Ltd.
7 * Author: Wilson Ding <dingwei@marvell.com>
8 * Author: Romain Perier <romain.perier@free-electrons.com>
11 #include <linux/clk.h>
12 #include <linux/completion.h>
13 #include <linux/delay.h>
14 #include <linux/err.h>
15 #include <linux/interrupt.h>
17 #include <linux/kernel.h>
18 #include <linux/module.h>
20 #include <linux/platform_device.h>
21 #include <linux/pinctrl/consumer.h>
22 #include <linux/spi/spi.h>
24 #define DRIVER_NAME "armada_3700_spi"
26 #define A3700_SPI_MAX_SPEED_HZ 100000000
27 #define A3700_SPI_MAX_PRESCALE 30
28 #define A3700_SPI_TIMEOUT 10
30 /* SPI Register Offest */
31 #define A3700_SPI_IF_CTRL_REG 0x00
32 #define A3700_SPI_IF_CFG_REG 0x04
33 #define A3700_SPI_DATA_OUT_REG 0x08
34 #define A3700_SPI_DATA_IN_REG 0x0C
35 #define A3700_SPI_IF_INST_REG 0x10
36 #define A3700_SPI_IF_ADDR_REG 0x14
37 #define A3700_SPI_IF_RMODE_REG 0x18
38 #define A3700_SPI_IF_HDR_CNT_REG 0x1C
39 #define A3700_SPI_IF_DIN_CNT_REG 0x20
40 #define A3700_SPI_IF_TIME_REG 0x24
41 #define A3700_SPI_INT_STAT_REG 0x28
42 #define A3700_SPI_INT_MASK_REG 0x2C
44 /* A3700_SPI_IF_CTRL_REG */
45 #define A3700_SPI_EN BIT(16)
46 #define A3700_SPI_ADDR_NOT_CONFIG BIT(12)
47 #define A3700_SPI_WFIFO_OVERFLOW BIT(11)
48 #define A3700_SPI_WFIFO_UNDERFLOW BIT(10)
49 #define A3700_SPI_RFIFO_OVERFLOW BIT(9)
50 #define A3700_SPI_RFIFO_UNDERFLOW BIT(8)
51 #define A3700_SPI_WFIFO_FULL BIT(7)
52 #define A3700_SPI_WFIFO_EMPTY BIT(6)
53 #define A3700_SPI_RFIFO_FULL BIT(5)
54 #define A3700_SPI_RFIFO_EMPTY BIT(4)
55 #define A3700_SPI_WFIFO_RDY BIT(3)
56 #define A3700_SPI_RFIFO_RDY BIT(2)
57 #define A3700_SPI_XFER_RDY BIT(1)
58 #define A3700_SPI_XFER_DONE BIT(0)
60 /* A3700_SPI_IF_CFG_REG */
61 #define A3700_SPI_WFIFO_THRS BIT(28)
62 #define A3700_SPI_RFIFO_THRS BIT(24)
63 #define A3700_SPI_AUTO_CS BIT(20)
64 #define A3700_SPI_DMA_RD_EN BIT(18)
65 #define A3700_SPI_FIFO_MODE BIT(17)
66 #define A3700_SPI_SRST BIT(16)
67 #define A3700_SPI_XFER_START BIT(15)
68 #define A3700_SPI_XFER_STOP BIT(14)
69 #define A3700_SPI_INST_PIN BIT(13)
70 #define A3700_SPI_ADDR_PIN BIT(12)
71 #define A3700_SPI_DATA_PIN1 BIT(11)
72 #define A3700_SPI_DATA_PIN0 BIT(10)
73 #define A3700_SPI_FIFO_FLUSH BIT(9)
74 #define A3700_SPI_RW_EN BIT(8)
75 #define A3700_SPI_CLK_POL BIT(7)
76 #define A3700_SPI_CLK_PHA BIT(6)
77 #define A3700_SPI_BYTE_LEN BIT(5)
78 #define A3700_SPI_CLK_PRESCALE BIT(0)
79 #define A3700_SPI_CLK_PRESCALE_MASK (0x1f)
80 #define A3700_SPI_CLK_EVEN_OFFS (0x10)
82 #define A3700_SPI_WFIFO_THRS_BIT 28
83 #define A3700_SPI_RFIFO_THRS_BIT 24
84 #define A3700_SPI_FIFO_THRS_MASK 0x7
86 #define A3700_SPI_DATA_PIN_MASK 0x3
88 /* A3700_SPI_IF_HDR_CNT_REG */
89 #define A3700_SPI_DUMMY_CNT_BIT 12
90 #define A3700_SPI_DUMMY_CNT_MASK 0x7
91 #define A3700_SPI_RMODE_CNT_BIT 8
92 #define A3700_SPI_RMODE_CNT_MASK 0x3
93 #define A3700_SPI_ADDR_CNT_BIT 4
94 #define A3700_SPI_ADDR_CNT_MASK 0x7
95 #define A3700_SPI_INSTR_CNT_BIT 0
96 #define A3700_SPI_INSTR_CNT_MASK 0x3
98 /* A3700_SPI_IF_TIME_REG */
99 #define A3700_SPI_CLK_CAPT_EDGE BIT(7)
102 struct spi_controller
*host
;
113 struct completion done
;
116 static u32
spireg_read(struct a3700_spi
*a3700_spi
, u32 offset
)
118 return readl(a3700_spi
->base
+ offset
);
121 static void spireg_write(struct a3700_spi
*a3700_spi
, u32 offset
, u32 data
)
123 writel(data
, a3700_spi
->base
+ offset
);
126 static void a3700_spi_auto_cs_unset(struct a3700_spi
*a3700_spi
)
130 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
131 val
&= ~A3700_SPI_AUTO_CS
;
132 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
135 static void a3700_spi_activate_cs(struct a3700_spi
*a3700_spi
, unsigned int cs
)
139 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CTRL_REG
);
140 val
|= (A3700_SPI_EN
<< cs
);
141 spireg_write(a3700_spi
, A3700_SPI_IF_CTRL_REG
, val
);
144 static void a3700_spi_deactivate_cs(struct a3700_spi
*a3700_spi
,
149 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CTRL_REG
);
150 val
&= ~(A3700_SPI_EN
<< cs
);
151 spireg_write(a3700_spi
, A3700_SPI_IF_CTRL_REG
, val
);
154 static int a3700_spi_pin_mode_set(struct a3700_spi
*a3700_spi
,
155 unsigned int pin_mode
, bool receiving
)
159 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
160 val
&= ~(A3700_SPI_INST_PIN
| A3700_SPI_ADDR_PIN
);
161 val
&= ~(A3700_SPI_DATA_PIN0
| A3700_SPI_DATA_PIN1
);
164 case SPI_NBITS_SINGLE
:
167 val
|= A3700_SPI_DATA_PIN0
;
170 val
|= A3700_SPI_DATA_PIN1
;
171 /* RX during address reception uses 4-pin */
173 val
|= A3700_SPI_ADDR_PIN
;
176 dev_err(&a3700_spi
->host
->dev
, "wrong pin mode %u", pin_mode
);
180 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
185 static void a3700_spi_fifo_mode_set(struct a3700_spi
*a3700_spi
, bool enable
)
189 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
191 val
|= A3700_SPI_FIFO_MODE
;
193 val
&= ~A3700_SPI_FIFO_MODE
;
194 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
197 static void a3700_spi_mode_set(struct a3700_spi
*a3700_spi
,
198 unsigned int mode_bits
)
202 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
204 if (mode_bits
& SPI_CPOL
)
205 val
|= A3700_SPI_CLK_POL
;
207 val
&= ~A3700_SPI_CLK_POL
;
209 if (mode_bits
& SPI_CPHA
)
210 val
|= A3700_SPI_CLK_PHA
;
212 val
&= ~A3700_SPI_CLK_PHA
;
214 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
217 static void a3700_spi_clock_set(struct a3700_spi
*a3700_spi
,
218 unsigned int speed_hz
)
223 prescale
= DIV_ROUND_UP(clk_get_rate(a3700_spi
->clk
), speed_hz
);
225 /* For prescaler values over 15, we can only set it by steps of 2.
226 * Starting from A3700_SPI_CLK_EVEN_OFFS, we set values from 0 up to
227 * 30. We only use this range from 16 to 30.
230 prescale
= A3700_SPI_CLK_EVEN_OFFS
+ DIV_ROUND_UP(prescale
, 2);
232 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
233 val
= val
& ~A3700_SPI_CLK_PRESCALE_MASK
;
235 val
= val
| (prescale
& A3700_SPI_CLK_PRESCALE_MASK
);
236 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
239 val
= spireg_read(a3700_spi
, A3700_SPI_IF_TIME_REG
);
240 val
|= A3700_SPI_CLK_CAPT_EDGE
;
241 spireg_write(a3700_spi
, A3700_SPI_IF_TIME_REG
, val
);
245 static void a3700_spi_bytelen_set(struct a3700_spi
*a3700_spi
, unsigned int len
)
249 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
251 val
|= A3700_SPI_BYTE_LEN
;
253 val
&= ~A3700_SPI_BYTE_LEN
;
254 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
256 a3700_spi
->byte_len
= len
;
259 static int a3700_spi_fifo_flush(struct a3700_spi
*a3700_spi
)
261 int timeout
= A3700_SPI_TIMEOUT
;
264 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
265 val
|= A3700_SPI_FIFO_FLUSH
;
266 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
269 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
270 if (!(val
& A3700_SPI_FIFO_FLUSH
))
278 static void a3700_spi_init(struct a3700_spi
*a3700_spi
)
280 struct spi_controller
*host
= a3700_spi
->host
;
285 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
286 val
|= A3700_SPI_SRST
;
287 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
289 udelay(A3700_SPI_TIMEOUT
);
291 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
292 val
&= ~A3700_SPI_SRST
;
293 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
295 /* Disable AUTO_CS and deactivate all chip-selects */
296 a3700_spi_auto_cs_unset(a3700_spi
);
297 for (i
= 0; i
< host
->num_chipselect
; i
++)
298 a3700_spi_deactivate_cs(a3700_spi
, i
);
300 /* Enable FIFO mode */
301 a3700_spi_fifo_mode_set(a3700_spi
, true);
304 a3700_spi_mode_set(a3700_spi
, host
->mode_bits
);
307 spireg_write(a3700_spi
, A3700_SPI_IF_HDR_CNT_REG
, 0);
308 spireg_write(a3700_spi
, A3700_SPI_IF_DIN_CNT_REG
, 0);
310 /* Mask the interrupts and clear cause bits */
311 spireg_write(a3700_spi
, A3700_SPI_INT_MASK_REG
, 0);
312 spireg_write(a3700_spi
, A3700_SPI_INT_STAT_REG
, ~0U);
315 static irqreturn_t
a3700_spi_interrupt(int irq
, void *dev_id
)
317 struct spi_controller
*host
= dev_id
;
318 struct a3700_spi
*a3700_spi
;
321 a3700_spi
= spi_controller_get_devdata(host
);
323 /* Get interrupt causes */
324 cause
= spireg_read(a3700_spi
, A3700_SPI_INT_STAT_REG
);
326 if (!cause
|| !(a3700_spi
->wait_mask
& cause
))
329 /* mask and acknowledge the SPI interrupts */
330 spireg_write(a3700_spi
, A3700_SPI_INT_MASK_REG
, 0);
331 spireg_write(a3700_spi
, A3700_SPI_INT_STAT_REG
, cause
);
333 /* Wake up the transfer */
334 complete(&a3700_spi
->done
);
339 static bool a3700_spi_wait_completion(struct spi_device
*spi
)
341 struct a3700_spi
*a3700_spi
;
342 unsigned long time_left
;
343 unsigned int ctrl_reg
;
344 unsigned long timeout_jiffies
;
346 a3700_spi
= spi_controller_get_devdata(spi
->controller
);
348 /* SPI interrupt is edge-triggered, which means an interrupt will
349 * be generated only when detecting a specific status bit changed
350 * from '0' to '1'. So when we start waiting for a interrupt, we
351 * need to check status bit in control reg first, if it is already 1,
352 * then we do not need to wait for interrupt
354 ctrl_reg
= spireg_read(a3700_spi
, A3700_SPI_IF_CTRL_REG
);
355 if (a3700_spi
->wait_mask
& ctrl_reg
)
358 reinit_completion(&a3700_spi
->done
);
360 spireg_write(a3700_spi
, A3700_SPI_INT_MASK_REG
,
361 a3700_spi
->wait_mask
);
363 timeout_jiffies
= msecs_to_jiffies(A3700_SPI_TIMEOUT
);
364 time_left
= wait_for_completion_timeout(&a3700_spi
->done
,
367 a3700_spi
->wait_mask
= 0;
372 /* there might be the case that right after we checked the
373 * status bits in this routine and before start to wait for
374 * interrupt by wait_for_completion_timeout, the interrupt
375 * happens, to avoid missing it we need to double check
376 * status bits in control reg, if it is already 1, then
377 * consider that we have the interrupt successfully and
380 ctrl_reg
= spireg_read(a3700_spi
, A3700_SPI_IF_CTRL_REG
);
381 if (a3700_spi
->wait_mask
& ctrl_reg
)
384 spireg_write(a3700_spi
, A3700_SPI_INT_MASK_REG
, 0);
386 /* Timeout was reached */
390 static bool a3700_spi_transfer_wait(struct spi_device
*spi
,
391 unsigned int bit_mask
)
393 struct a3700_spi
*a3700_spi
;
395 a3700_spi
= spi_controller_get_devdata(spi
->controller
);
396 a3700_spi
->wait_mask
= bit_mask
;
398 return a3700_spi_wait_completion(spi
);
401 static void a3700_spi_fifo_thres_set(struct a3700_spi
*a3700_spi
,
406 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
407 val
&= ~(A3700_SPI_FIFO_THRS_MASK
<< A3700_SPI_RFIFO_THRS_BIT
);
408 val
|= (bytes
- 1) << A3700_SPI_RFIFO_THRS_BIT
;
409 val
&= ~(A3700_SPI_FIFO_THRS_MASK
<< A3700_SPI_WFIFO_THRS_BIT
);
410 val
|= (7 - bytes
) << A3700_SPI_WFIFO_THRS_BIT
;
411 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
414 static void a3700_spi_transfer_setup(struct spi_device
*spi
,
415 struct spi_transfer
*xfer
)
417 struct a3700_spi
*a3700_spi
;
419 a3700_spi
= spi_controller_get_devdata(spi
->controller
);
421 a3700_spi_clock_set(a3700_spi
, xfer
->speed_hz
);
423 /* Use 4 bytes long transfers. Each transfer method has its way to deal
424 * with the remaining bytes for non 4-bytes aligned transfers.
426 a3700_spi_bytelen_set(a3700_spi
, 4);
428 /* Initialize the working buffers */
429 a3700_spi
->tx_buf
= xfer
->tx_buf
;
430 a3700_spi
->rx_buf
= xfer
->rx_buf
;
431 a3700_spi
->buf_len
= xfer
->len
;
434 static void a3700_spi_set_cs(struct spi_device
*spi
, bool enable
)
436 struct a3700_spi
*a3700_spi
= spi_controller_get_devdata(spi
->controller
);
439 a3700_spi_activate_cs(a3700_spi
, spi_get_chipselect(spi
, 0));
441 a3700_spi_deactivate_cs(a3700_spi
, spi_get_chipselect(spi
, 0));
444 static void a3700_spi_header_set(struct a3700_spi
*a3700_spi
)
446 unsigned int addr_cnt
;
449 /* Clear the header registers */
450 spireg_write(a3700_spi
, A3700_SPI_IF_INST_REG
, 0);
451 spireg_write(a3700_spi
, A3700_SPI_IF_ADDR_REG
, 0);
452 spireg_write(a3700_spi
, A3700_SPI_IF_RMODE_REG
, 0);
453 spireg_write(a3700_spi
, A3700_SPI_IF_HDR_CNT_REG
, 0);
455 /* Set header counters */
456 if (a3700_spi
->tx_buf
) {
458 * when tx data is not 4 bytes aligned, there will be unexpected
459 * bytes out of SPI output register, since it always shifts out
460 * as whole 4 bytes. This might cause incorrect transaction with
461 * some devices. To avoid that, use SPI header count feature to
462 * transfer up to 3 bytes of data first, and then make the rest
463 * of data 4-byte aligned.
465 addr_cnt
= a3700_spi
->buf_len
% 4;
467 val
= (addr_cnt
& A3700_SPI_ADDR_CNT_MASK
)
468 << A3700_SPI_ADDR_CNT_BIT
;
469 spireg_write(a3700_spi
, A3700_SPI_IF_HDR_CNT_REG
, val
);
471 /* Update the buffer length to be transferred */
472 a3700_spi
->buf_len
-= addr_cnt
;
474 /* transfer 1~3 bytes through address count */
477 val
= (val
<< 8) | a3700_spi
->tx_buf
[0];
480 spireg_write(a3700_spi
, A3700_SPI_IF_ADDR_REG
, val
);
485 static int a3700_is_wfifo_full(struct a3700_spi
*a3700_spi
)
489 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CTRL_REG
);
490 return (val
& A3700_SPI_WFIFO_FULL
);
493 static int a3700_spi_fifo_write(struct a3700_spi
*a3700_spi
)
497 while (!a3700_is_wfifo_full(a3700_spi
) && a3700_spi
->buf_len
) {
498 val
= *(u32
*)a3700_spi
->tx_buf
;
499 spireg_write(a3700_spi
, A3700_SPI_DATA_OUT_REG
, cpu_to_le32(val
));
500 a3700_spi
->buf_len
-= 4;
501 a3700_spi
->tx_buf
+= 4;
507 static int a3700_is_rfifo_empty(struct a3700_spi
*a3700_spi
)
509 u32 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CTRL_REG
);
511 return (val
& A3700_SPI_RFIFO_EMPTY
);
514 static int a3700_spi_fifo_read(struct a3700_spi
*a3700_spi
)
518 while (!a3700_is_rfifo_empty(a3700_spi
) && a3700_spi
->buf_len
) {
519 val
= spireg_read(a3700_spi
, A3700_SPI_DATA_IN_REG
);
520 if (a3700_spi
->buf_len
>= 4) {
521 val
= le32_to_cpu(val
);
522 memcpy(a3700_spi
->rx_buf
, &val
, 4);
524 a3700_spi
->buf_len
-= 4;
525 a3700_spi
->rx_buf
+= 4;
528 * When remain bytes is not larger than 4, we should
529 * avoid memory overwriting and just write the left rx
532 while (a3700_spi
->buf_len
) {
533 *a3700_spi
->rx_buf
= val
& 0xff;
536 a3700_spi
->buf_len
--;
545 static void a3700_spi_transfer_abort_fifo(struct a3700_spi
*a3700_spi
)
547 int timeout
= A3700_SPI_TIMEOUT
;
550 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
551 val
|= A3700_SPI_XFER_STOP
;
552 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
555 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
556 if (!(val
& A3700_SPI_XFER_START
))
561 a3700_spi_fifo_flush(a3700_spi
);
563 val
&= ~A3700_SPI_XFER_STOP
;
564 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
567 static int a3700_spi_prepare_message(struct spi_controller
*host
,
568 struct spi_message
*message
)
570 struct a3700_spi
*a3700_spi
= spi_controller_get_devdata(host
);
571 struct spi_device
*spi
= message
->spi
;
574 ret
= clk_enable(a3700_spi
->clk
);
576 dev_err(&spi
->dev
, "failed to enable clk with error %d\n", ret
);
580 /* Flush the FIFOs */
581 ret
= a3700_spi_fifo_flush(a3700_spi
);
585 a3700_spi_mode_set(a3700_spi
, spi
->mode
);
590 static int a3700_spi_transfer_one_fifo(struct spi_controller
*host
,
591 struct spi_device
*spi
,
592 struct spi_transfer
*xfer
)
594 struct a3700_spi
*a3700_spi
= spi_controller_get_devdata(host
);
595 int ret
= 0, timeout
= A3700_SPI_TIMEOUT
;
596 unsigned int nbits
= 0, byte_len
;
599 /* Make sure we use FIFO mode */
600 a3700_spi_fifo_mode_set(a3700_spi
, true);
602 /* Configure FIFO thresholds */
603 byte_len
= xfer
->bits_per_word
>> 3;
604 a3700_spi_fifo_thres_set(a3700_spi
, byte_len
);
607 nbits
= xfer
->tx_nbits
;
608 else if (xfer
->rx_buf
)
609 nbits
= xfer
->rx_nbits
;
611 a3700_spi_pin_mode_set(a3700_spi
, nbits
, xfer
->rx_buf
? true : false);
613 /* Flush the FIFOs */
614 a3700_spi_fifo_flush(a3700_spi
);
616 /* Transfer first bytes of data when buffer is not 4-byte aligned */
617 a3700_spi_header_set(a3700_spi
);
620 /* Clear WFIFO, since it's last 2 bytes are shifted out during
623 spireg_write(a3700_spi
, A3700_SPI_DATA_OUT_REG
, 0);
625 /* Set read data length */
626 spireg_write(a3700_spi
, A3700_SPI_IF_DIN_CNT_REG
,
628 /* Start READ transfer */
629 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
630 val
&= ~A3700_SPI_RW_EN
;
631 val
|= A3700_SPI_XFER_START
;
632 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
633 } else if (xfer
->tx_buf
) {
634 /* Start Write transfer */
635 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
636 val
|= (A3700_SPI_XFER_START
| A3700_SPI_RW_EN
);
637 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
640 * If there are data to be written to the SPI device, xmit_data
641 * flag is set true; otherwise the instruction in SPI_INSTR does
642 * not require data to be written to the SPI device, then
643 * xmit_data flag is set false.
645 a3700_spi
->xmit_data
= (a3700_spi
->buf_len
!= 0);
648 while (a3700_spi
->buf_len
) {
649 if (a3700_spi
->tx_buf
) {
650 /* Wait wfifo ready */
651 if (!a3700_spi_transfer_wait(spi
,
652 A3700_SPI_WFIFO_RDY
)) {
654 "wait wfifo ready timed out\n");
658 /* Fill up the wfifo */
659 ret
= a3700_spi_fifo_write(a3700_spi
);
662 } else if (a3700_spi
->rx_buf
) {
663 /* Wait rfifo ready */
664 if (!a3700_spi_transfer_wait(spi
,
665 A3700_SPI_RFIFO_RDY
)) {
667 "wait rfifo ready timed out\n");
671 /* Drain out the rfifo */
672 ret
= a3700_spi_fifo_read(a3700_spi
);
679 * Stop a write transfer in fifo mode:
680 * - wait all the bytes in wfifo to be shifted out
681 * - set XFER_STOP bit
682 * - wait XFER_START bit clear
683 * - clear XFER_STOP bit
684 * Stop a read transfer in fifo mode:
685 * - the hardware is to reset the XFER_START bit
686 * after the number of bytes indicated in DIN_CNT
688 * - just wait XFER_START bit clear
690 if (a3700_spi
->tx_buf
) {
691 if (a3700_spi
->xmit_data
) {
693 * If there are data written to the SPI device, wait
694 * until SPI_WFIFO_EMPTY is 1 to wait for all data to
695 * transfer out of write FIFO.
697 if (!a3700_spi_transfer_wait(spi
,
698 A3700_SPI_WFIFO_EMPTY
)) {
699 dev_err(&spi
->dev
, "wait wfifo empty timed out\n");
704 if (!a3700_spi_transfer_wait(spi
, A3700_SPI_XFER_RDY
)) {
705 dev_err(&spi
->dev
, "wait xfer ready timed out\n");
709 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
710 val
|= A3700_SPI_XFER_STOP
;
711 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
715 val
= spireg_read(a3700_spi
, A3700_SPI_IF_CFG_REG
);
716 if (!(val
& A3700_SPI_XFER_START
))
722 dev_err(&spi
->dev
, "wait transfer start clear timed out\n");
727 val
&= ~A3700_SPI_XFER_STOP
;
728 spireg_write(a3700_spi
, A3700_SPI_IF_CFG_REG
, val
);
732 a3700_spi_transfer_abort_fifo(a3700_spi
);
734 spi_finalize_current_transfer(host
);
739 static int a3700_spi_transfer_one_full_duplex(struct spi_controller
*host
,
740 struct spi_device
*spi
,
741 struct spi_transfer
*xfer
)
743 struct a3700_spi
*a3700_spi
= spi_controller_get_devdata(host
);
746 /* Disable FIFO mode */
747 a3700_spi_fifo_mode_set(a3700_spi
, false);
749 while (a3700_spi
->buf_len
) {
751 /* When we have less than 4 bytes to transfer, switch to 1 byte
752 * mode. This is reset after each transfer
754 if (a3700_spi
->buf_len
< 4)
755 a3700_spi_bytelen_set(a3700_spi
, 1);
757 if (a3700_spi
->byte_len
== 1)
758 val
= *a3700_spi
->tx_buf
;
760 val
= *(u32
*)a3700_spi
->tx_buf
;
762 spireg_write(a3700_spi
, A3700_SPI_DATA_OUT_REG
, val
);
764 /* Wait for all the data to be shifted in / out */
765 while (!(spireg_read(a3700_spi
, A3700_SPI_IF_CTRL_REG
) &
766 A3700_SPI_XFER_DONE
))
769 val
= spireg_read(a3700_spi
, A3700_SPI_DATA_IN_REG
);
771 memcpy(a3700_spi
->rx_buf
, &val
, a3700_spi
->byte_len
);
773 a3700_spi
->buf_len
-= a3700_spi
->byte_len
;
774 a3700_spi
->tx_buf
+= a3700_spi
->byte_len
;
775 a3700_spi
->rx_buf
+= a3700_spi
->byte_len
;
779 spi_finalize_current_transfer(host
);
784 static int a3700_spi_transfer_one(struct spi_controller
*host
,
785 struct spi_device
*spi
,
786 struct spi_transfer
*xfer
)
788 a3700_spi_transfer_setup(spi
, xfer
);
790 if (xfer
->tx_buf
&& xfer
->rx_buf
)
791 return a3700_spi_transfer_one_full_duplex(host
, spi
, xfer
);
793 return a3700_spi_transfer_one_fifo(host
, spi
, xfer
);
796 static int a3700_spi_unprepare_message(struct spi_controller
*host
,
797 struct spi_message
*message
)
799 struct a3700_spi
*a3700_spi
= spi_controller_get_devdata(host
);
801 clk_disable(a3700_spi
->clk
);
806 static const struct of_device_id a3700_spi_dt_ids
[] = {
807 { .compatible
= "marvell,armada-3700-spi", .data
= NULL
},
811 MODULE_DEVICE_TABLE(of
, a3700_spi_dt_ids
);
813 static int a3700_spi_probe(struct platform_device
*pdev
)
815 struct device
*dev
= &pdev
->dev
;
816 struct device_node
*of_node
= dev
->of_node
;
817 struct spi_controller
*host
;
818 struct a3700_spi
*spi
;
822 host
= spi_alloc_host(dev
, sizeof(*spi
));
824 dev_err(dev
, "host allocation failed\n");
829 if (of_property_read_u32(of_node
, "num-cs", &num_cs
)) {
830 dev_err(dev
, "could not find num-cs\n");
835 host
->bus_num
= pdev
->id
;
836 host
->dev
.of_node
= of_node
;
837 host
->mode_bits
= SPI_MODE_3
;
838 host
->num_chipselect
= num_cs
;
839 host
->bits_per_word_mask
= SPI_BPW_MASK(8) | SPI_BPW_MASK(32);
840 host
->prepare_message
= a3700_spi_prepare_message
;
841 host
->transfer_one
= a3700_spi_transfer_one
;
842 host
->unprepare_message
= a3700_spi_unprepare_message
;
843 host
->set_cs
= a3700_spi_set_cs
;
844 host
->mode_bits
|= (SPI_RX_DUAL
| SPI_TX_DUAL
|
845 SPI_RX_QUAD
| SPI_TX_QUAD
);
847 platform_set_drvdata(pdev
, host
);
849 spi
= spi_controller_get_devdata(host
);
853 spi
->base
= devm_platform_ioremap_resource(pdev
, 0);
854 if (IS_ERR(spi
->base
)) {
855 ret
= PTR_ERR(spi
->base
);
859 irq
= platform_get_irq(pdev
, 0);
866 init_completion(&spi
->done
);
868 spi
->clk
= devm_clk_get_prepared(dev
, NULL
);
869 if (IS_ERR(spi
->clk
)) {
870 dev_err(dev
, "could not find clk: %ld\n", PTR_ERR(spi
->clk
));
874 host
->max_speed_hz
= min_t(unsigned long, A3700_SPI_MAX_SPEED_HZ
,
875 clk_get_rate(spi
->clk
));
876 host
->min_speed_hz
= DIV_ROUND_UP(clk_get_rate(spi
->clk
),
877 A3700_SPI_MAX_PRESCALE
);
881 ret
= devm_request_irq(dev
, spi
->irq
, a3700_spi_interrupt
, 0,
882 dev_name(dev
), host
);
884 dev_err(dev
, "could not request IRQ: %d\n", ret
);
888 ret
= devm_spi_register_controller(dev
, host
);
890 dev_err(dev
, "Failed to register host\n");
897 spi_controller_put(host
);
902 static struct platform_driver a3700_spi_driver
= {
905 .of_match_table
= of_match_ptr(a3700_spi_dt_ids
),
907 .probe
= a3700_spi_probe
,
910 module_platform_driver(a3700_spi_driver
);
912 MODULE_DESCRIPTION("Armada-3700 SPI driver");
913 MODULE_AUTHOR("Wilson Ding <dingwei@marvell.com>");
914 MODULE_LICENSE("GPL");
915 MODULE_ALIAS("platform:" DRIVER_NAME
);