2 * Driver for Broadcom BCM2835 auxiliary SPI Controllers
4 * the driver does not rely on the native chipselects at all
5 * but only uses the gpio type chipselects
7 * Based on: spi-bcm2835.c
9 * Copyright (C) 2015 Martin Sperl
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
22 #include <linux/clk.h>
23 #include <linux/completion.h>
24 #include <linux/delay.h>
25 #include <linux/err.h>
26 #include <linux/interrupt.h>
28 #include <linux/kernel.h>
29 #include <linux/module.h>
31 #include <linux/of_address.h>
32 #include <linux/of_device.h>
33 #include <linux/of_gpio.h>
34 #include <linux/of_irq.h>
35 #include <linux/regmap.h>
36 #include <linux/spi/spi.h>
37 #include <linux/spinlock.h>
40 * spi register defines
42 * note there is garbage in the "official" documentation,
43 * so some data is taken from the file:
44 * brcm_usrlib/dag/vmcsx/vcinclude/bcm2708_chip/aux_io.h
46 * http://www.broadcom.com/docs/support/videocore/Brcm_Android_ICS_Graphics_Stack.tar.gz
49 /* SPI register offsets */
50 #define BCM2835_AUX_SPI_CNTL0 0x00
51 #define BCM2835_AUX_SPI_CNTL1 0x04
52 #define BCM2835_AUX_SPI_STAT 0x08
53 #define BCM2835_AUX_SPI_PEEK 0x0C
54 #define BCM2835_AUX_SPI_IO 0x20
55 #define BCM2835_AUX_SPI_TXHOLD 0x30
57 /* Bitfields in CNTL0 */
58 #define BCM2835_AUX_SPI_CNTL0_SPEED 0xFFF00000
59 #define BCM2835_AUX_SPI_CNTL0_SPEED_MAX 0xFFF
60 #define BCM2835_AUX_SPI_CNTL0_SPEED_SHIFT 20
61 #define BCM2835_AUX_SPI_CNTL0_CS 0x000E0000
62 #define BCM2835_AUX_SPI_CNTL0_POSTINPUT 0x00010000
63 #define BCM2835_AUX_SPI_CNTL0_VAR_CS 0x00008000
64 #define BCM2835_AUX_SPI_CNTL0_VAR_WIDTH 0x00004000
65 #define BCM2835_AUX_SPI_CNTL0_DOUTHOLD 0x00003000
66 #define BCM2835_AUX_SPI_CNTL0_ENABLE 0x00000800
67 #define BCM2835_AUX_SPI_CNTL0_CPHA_IN 0x00000400
68 #define BCM2835_AUX_SPI_CNTL0_CLEARFIFO 0x00000200
69 #define BCM2835_AUX_SPI_CNTL0_CPHA_OUT 0x00000100
70 #define BCM2835_AUX_SPI_CNTL0_CPOL 0x00000080
71 #define BCM2835_AUX_SPI_CNTL0_MSBF_OUT 0x00000040
72 #define BCM2835_AUX_SPI_CNTL0_SHIFTLEN 0x0000003F
74 /* Bitfields in CNTL1 */
75 #define BCM2835_AUX_SPI_CNTL1_CSHIGH 0x00000700
76 #define BCM2835_AUX_SPI_CNTL1_IDLE 0x00000080
77 #define BCM2835_AUX_SPI_CNTL1_TXEMPTY 0x00000040
78 #define BCM2835_AUX_SPI_CNTL1_MSBF_IN 0x00000002
79 #define BCM2835_AUX_SPI_CNTL1_KEEP_IN 0x00000001
81 /* Bitfields in STAT */
82 #define BCM2835_AUX_SPI_STAT_TX_LVL 0xFF000000
83 #define BCM2835_AUX_SPI_STAT_RX_LVL 0x00FF0000
84 #define BCM2835_AUX_SPI_STAT_TX_FULL 0x00000400
85 #define BCM2835_AUX_SPI_STAT_TX_EMPTY 0x00000200
86 #define BCM2835_AUX_SPI_STAT_RX_FULL 0x00000100
87 #define BCM2835_AUX_SPI_STAT_RX_EMPTY 0x00000080
88 #define BCM2835_AUX_SPI_STAT_BUSY 0x00000040
89 #define BCM2835_AUX_SPI_STAT_BITCOUNT 0x0000003F
92 #define BCM2835_AUX_SPI_POLLING_LIMIT_US 30
93 #define BCM2835_AUX_SPI_POLLING_JIFFIES 2
95 #define BCM2835_AUX_SPI_MODE_BITS (SPI_CPOL | SPI_CPHA | SPI_CS_HIGH \
98 struct bcm2835aux_spi
{
110 static inline u32
bcm2835aux_rd(struct bcm2835aux_spi
*bs
, unsigned reg
)
112 return readl(bs
->regs
+ reg
);
115 static inline void bcm2835aux_wr(struct bcm2835aux_spi
*bs
, unsigned reg
,
118 writel(val
, bs
->regs
+ reg
);
121 static inline void bcm2835aux_rd_fifo(struct bcm2835aux_spi
*bs
)
124 int count
= min(bs
->rx_len
, 3);
126 data
= bcm2835aux_rd(bs
, BCM2835_AUX_SPI_IO
);
130 *bs
->rx_buf
++ = (data
>> 24) & 0xff;
133 *bs
->rx_buf
++ = (data
>> 16) & 0xff;
136 *bs
->rx_buf
++ = (data
>> 8) & 0xff;
139 *bs
->rx_buf
++ = (data
>> 0) & 0xff;
140 /* fallthrough - no default */
144 bs
->pending
-= count
;
147 static inline void bcm2835aux_wr_fifo(struct bcm2835aux_spi
*bs
)
154 /* gather up to 3 bytes to write to the FIFO */
155 count
= min(bs
->tx_len
, 3);
157 for (i
= 0; i
< count
; i
++) {
158 byte
= bs
->tx_buf
? *bs
->tx_buf
++ : 0;
159 data
|= byte
<< (8 * (2 - i
));
162 /* and set the variable bit-length */
163 data
|= (count
* 8) << 24;
165 /* and decrement length */
167 bs
->pending
+= count
;
169 /* write to the correct TX-register */
171 bcm2835aux_wr(bs
, BCM2835_AUX_SPI_TXHOLD
, data
);
173 bcm2835aux_wr(bs
, BCM2835_AUX_SPI_IO
, data
);
176 static void bcm2835aux_spi_reset_hw(struct bcm2835aux_spi
*bs
)
178 /* disable spi clearing fifo and interrupts */
179 bcm2835aux_wr(bs
, BCM2835_AUX_SPI_CNTL1
, 0);
180 bcm2835aux_wr(bs
, BCM2835_AUX_SPI_CNTL0
,
181 BCM2835_AUX_SPI_CNTL0_CLEARFIFO
);
184 static irqreturn_t
bcm2835aux_spi_interrupt(int irq
, void *dev_id
)
186 struct spi_master
*master
= dev_id
;
187 struct bcm2835aux_spi
*bs
= spi_master_get_devdata(master
);
188 irqreturn_t ret
= IRQ_NONE
;
190 /* check if we have data to read */
192 (!(bcm2835aux_rd(bs
, BCM2835_AUX_SPI_STAT
) &
193 BCM2835_AUX_SPI_STAT_RX_EMPTY
))) {
194 bcm2835aux_rd_fifo(bs
);
198 /* check if we have data to write */
200 (bs
->pending
< 12) &&
201 (!(bcm2835aux_rd(bs
, BCM2835_AUX_SPI_STAT
) &
202 BCM2835_AUX_SPI_STAT_TX_FULL
))) {
203 bcm2835aux_wr_fifo(bs
);
207 /* and check if we have reached "done" */
209 (!(bcm2835aux_rd(bs
, BCM2835_AUX_SPI_STAT
) &
210 BCM2835_AUX_SPI_STAT_BUSY
))) {
211 bcm2835aux_rd_fifo(bs
);
215 /* and if rx_len is 0 then wake up completion and disable spi */
217 bcm2835aux_spi_reset_hw(bs
);
218 complete(&master
->xfer_completion
);
225 static int __bcm2835aux_spi_transfer_one_irq(struct spi_master
*master
,
226 struct spi_device
*spi
,
227 struct spi_transfer
*tfr
)
229 struct bcm2835aux_spi
*bs
= spi_master_get_devdata(master
);
231 /* enable interrupts */
232 bcm2835aux_wr(bs
, BCM2835_AUX_SPI_CNTL1
, bs
->cntl
[1] |
233 BCM2835_AUX_SPI_CNTL1_TXEMPTY
|
234 BCM2835_AUX_SPI_CNTL1_IDLE
);
236 /* and wait for finish... */
240 static int bcm2835aux_spi_transfer_one_irq(struct spi_master
*master
,
241 struct spi_device
*spi
,
242 struct spi_transfer
*tfr
)
244 struct bcm2835aux_spi
*bs
= spi_master_get_devdata(master
);
246 /* fill in registers and fifos before enabling interrupts */
247 bcm2835aux_wr(bs
, BCM2835_AUX_SPI_CNTL1
, bs
->cntl
[1]);
248 bcm2835aux_wr(bs
, BCM2835_AUX_SPI_CNTL0
, bs
->cntl
[0]);
250 /* fill in tx fifo with data before enabling interrupts */
251 while ((bs
->tx_len
) &&
252 (bs
->pending
< 12) &&
253 (!(bcm2835aux_rd(bs
, BCM2835_AUX_SPI_STAT
) &
254 BCM2835_AUX_SPI_STAT_TX_FULL
))) {
255 bcm2835aux_wr_fifo(bs
);
258 /* now run the interrupt mode */
259 return __bcm2835aux_spi_transfer_one_irq(master
, spi
, tfr
);
262 static int bcm2835aux_spi_transfer_one_poll(struct spi_master
*master
,
263 struct spi_device
*spi
,
264 struct spi_transfer
*tfr
)
266 struct bcm2835aux_spi
*bs
= spi_master_get_devdata(master
);
267 unsigned long timeout
;
271 bcm2835aux_wr(bs
, BCM2835_AUX_SPI_CNTL1
, bs
->cntl
[1]);
272 bcm2835aux_wr(bs
, BCM2835_AUX_SPI_CNTL0
, bs
->cntl
[0]);
274 /* set the timeout */
275 timeout
= jiffies
+ BCM2835_AUX_SPI_POLLING_JIFFIES
;
277 /* loop until finished the transfer */
280 stat
= bcm2835aux_rd(bs
, BCM2835_AUX_SPI_STAT
);
282 /* fill in tx fifo with remaining data */
283 if ((bs
->tx_len
) && (!(stat
& BCM2835_AUX_SPI_STAT_TX_FULL
))) {
284 bcm2835aux_wr_fifo(bs
);
288 /* read data from fifo for both cases */
289 if (!(stat
& BCM2835_AUX_SPI_STAT_RX_EMPTY
)) {
290 bcm2835aux_rd_fifo(bs
);
293 if (!(stat
& BCM2835_AUX_SPI_STAT_BUSY
)) {
294 bcm2835aux_rd_fifo(bs
);
298 /* there is still data pending to read check the timeout */
299 if (bs
->rx_len
&& time_after(jiffies
, timeout
)) {
300 dev_dbg_ratelimited(&spi
->dev
,
301 "timeout period reached: jiffies: %lu remaining tx/rx: %d/%d - falling back to interrupt mode\n",
303 bs
->tx_len
, bs
->rx_len
);
304 /* forward to interrupt handler */
305 return __bcm2835aux_spi_transfer_one_irq(master
,
310 /* Transfer complete - reset SPI HW */
311 bcm2835aux_spi_reset_hw(bs
);
313 /* and return without waiting for completion */
317 static int bcm2835aux_spi_transfer_one(struct spi_master
*master
,
318 struct spi_device
*spi
,
319 struct spi_transfer
*tfr
)
321 struct bcm2835aux_spi
*bs
= spi_master_get_devdata(master
);
322 unsigned long spi_hz
, clk_hz
, speed
;
323 unsigned long spi_used_hz
;
324 unsigned long long xfer_time_us
;
326 /* calculate the registers to handle
328 * note that we use the variable data mode, which
329 * is not optimal for longer transfers as we waste registers
330 * resulting (potentially) in more interrupts when transferring
333 bs
->cntl
[0] = BCM2835_AUX_SPI_CNTL0_ENABLE
|
334 BCM2835_AUX_SPI_CNTL0_VAR_WIDTH
|
335 BCM2835_AUX_SPI_CNTL0_MSBF_OUT
;
336 bs
->cntl
[1] = BCM2835_AUX_SPI_CNTL1_MSBF_IN
;
339 spi_hz
= tfr
->speed_hz
;
340 clk_hz
= clk_get_rate(bs
->clk
);
342 if (spi_hz
>= clk_hz
/ 2) {
345 speed
= DIV_ROUND_UP(clk_hz
, 2 * spi_hz
) - 1;
346 if (speed
> BCM2835_AUX_SPI_CNTL0_SPEED_MAX
)
347 speed
= BCM2835_AUX_SPI_CNTL0_SPEED_MAX
;
348 } else { /* the slowest we can go */
349 speed
= BCM2835_AUX_SPI_CNTL0_SPEED_MAX
;
351 bs
->cntl
[0] |= speed
<< BCM2835_AUX_SPI_CNTL0_SPEED_SHIFT
;
353 spi_used_hz
= clk_hz
/ (2 * (speed
+ 1));
355 /* handle all the modes */
356 if (spi
->mode
& SPI_CPOL
)
357 bs
->cntl
[0] |= BCM2835_AUX_SPI_CNTL0_CPOL
;
358 if (spi
->mode
& SPI_CPHA
)
359 bs
->cntl
[0] |= BCM2835_AUX_SPI_CNTL0_CPHA_OUT
|
360 BCM2835_AUX_SPI_CNTL0_CPHA_IN
;
362 /* set transmit buffers and length */
363 bs
->tx_buf
= tfr
->tx_buf
;
364 bs
->rx_buf
= tfr
->rx_buf
;
365 bs
->tx_len
= tfr
->len
;
366 bs
->rx_len
= tfr
->len
;
369 /* calculate the estimated time in us the transfer runs
370 * note that there are are 2 idle clocks after each
371 * chunk getting transferred - in our case the chunk size
372 * is 3 bytes, so we approximate this by 9 bits/byte
374 xfer_time_us
= tfr
->len
* 9 * 1000000;
375 do_div(xfer_time_us
, spi_used_hz
);
377 /* run in polling mode for short transfers */
378 if (xfer_time_us
< BCM2835_AUX_SPI_POLLING_LIMIT_US
)
379 return bcm2835aux_spi_transfer_one_poll(master
, spi
, tfr
);
381 /* run in interrupt mode for all others */
382 return bcm2835aux_spi_transfer_one_irq(master
, spi
, tfr
);
385 static void bcm2835aux_spi_handle_err(struct spi_master
*master
,
386 struct spi_message
*msg
)
388 struct bcm2835aux_spi
*bs
= spi_master_get_devdata(master
);
390 bcm2835aux_spi_reset_hw(bs
);
393 static int bcm2835aux_spi_probe(struct platform_device
*pdev
)
395 struct spi_master
*master
;
396 struct bcm2835aux_spi
*bs
;
397 struct resource
*res
;
398 unsigned long clk_hz
;
401 master
= spi_alloc_master(&pdev
->dev
, sizeof(*bs
));
403 dev_err(&pdev
->dev
, "spi_alloc_master() failed\n");
407 platform_set_drvdata(pdev
, master
);
408 master
->mode_bits
= BCM2835_AUX_SPI_MODE_BITS
;
409 master
->bits_per_word_mask
= SPI_BPW_MASK(8);
410 master
->num_chipselect
= -1;
411 master
->transfer_one
= bcm2835aux_spi_transfer_one
;
412 master
->handle_err
= bcm2835aux_spi_handle_err
;
413 master
->dev
.of_node
= pdev
->dev
.of_node
;
415 bs
= spi_master_get_devdata(master
);
418 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
419 bs
->regs
= devm_ioremap_resource(&pdev
->dev
, res
);
420 if (IS_ERR(bs
->regs
)) {
421 err
= PTR_ERR(bs
->regs
);
425 bs
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
426 if ((!bs
->clk
) || (IS_ERR(bs
->clk
))) {
427 err
= PTR_ERR(bs
->clk
);
428 dev_err(&pdev
->dev
, "could not get clk: %d\n", err
);
432 bs
->irq
= platform_get_irq(pdev
, 0);
434 dev_err(&pdev
->dev
, "could not get IRQ: %d\n", bs
->irq
);
435 err
= bs
->irq
? bs
->irq
: -ENODEV
;
439 /* this also enables the HW block */
440 err
= clk_prepare_enable(bs
->clk
);
442 dev_err(&pdev
->dev
, "could not prepare clock: %d\n", err
);
446 /* just checking if the clock returns a sane value */
447 clk_hz
= clk_get_rate(bs
->clk
);
449 dev_err(&pdev
->dev
, "clock returns 0 Hz\n");
451 goto out_clk_disable
;
454 /* reset SPI-HW block */
455 bcm2835aux_spi_reset_hw(bs
);
457 err
= devm_request_irq(&pdev
->dev
, bs
->irq
,
458 bcm2835aux_spi_interrupt
,
460 dev_name(&pdev
->dev
), master
);
462 dev_err(&pdev
->dev
, "could not request IRQ: %d\n", err
);
463 goto out_clk_disable
;
466 err
= devm_spi_register_master(&pdev
->dev
, master
);
468 dev_err(&pdev
->dev
, "could not register SPI master: %d\n", err
);
469 goto out_clk_disable
;
475 clk_disable_unprepare(bs
->clk
);
477 spi_master_put(master
);
481 static int bcm2835aux_spi_remove(struct platform_device
*pdev
)
483 struct spi_master
*master
= platform_get_drvdata(pdev
);
484 struct bcm2835aux_spi
*bs
= spi_master_get_devdata(master
);
486 bcm2835aux_spi_reset_hw(bs
);
488 /* disable the HW block by releasing the clock */
489 clk_disable_unprepare(bs
->clk
);
494 static const struct of_device_id bcm2835aux_spi_match
[] = {
495 { .compatible
= "brcm,bcm2835-aux-spi", },
498 MODULE_DEVICE_TABLE(of
, bcm2835aux_spi_match
);
500 static struct platform_driver bcm2835aux_spi_driver
= {
502 .name
= "spi-bcm2835aux",
503 .of_match_table
= bcm2835aux_spi_match
,
505 .probe
= bcm2835aux_spi_probe
,
506 .remove
= bcm2835aux_spi_remove
,
508 module_platform_driver(bcm2835aux_spi_driver
);
510 MODULE_DESCRIPTION("SPI controller driver for Broadcom BCM2835 aux");
511 MODULE_AUTHOR("Martin Sperl <kernel@martin.sperl.org>");
512 MODULE_LICENSE("GPL v2");