2 * Broadcom BCM63xx SPI controller support
4 * Copyright (C) 2009-2012 Florian Fainelli <florian@openwrt.org>
5 * Copyright (C) 2010 Tanguy Bouzeloc <tanguy.bouzeloc@efixo.com>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the
19 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 #include <linux/kernel.h>
23 #include <linux/init.h>
24 #include <linux/clk.h>
26 #include <linux/module.h>
27 #include <linux/platform_device.h>
28 #include <linux/delay.h>
29 #include <linux/interrupt.h>
30 #include <linux/spi/spi.h>
31 #include <linux/completion.h>
32 #include <linux/err.h>
33 #include <linux/workqueue.h>
34 #include <linux/pm_runtime.h>
36 #include <bcm63xx_dev_spi.h>
38 #define PFX KBUILD_MODNAME
40 #define BCM63XX_SPI_MAX_PREPEND 15
43 struct completion done
;
50 unsigned int msg_type_shift
;
51 unsigned int msg_ctl_width
;
55 const u8 __iomem
*rx_io
;
58 struct platform_device
*pdev
;
61 static inline u8
bcm_spi_readb(struct bcm63xx_spi
*bs
,
64 return bcm_readb(bs
->regs
+ bcm63xx_spireg(offset
));
67 static inline u16
bcm_spi_readw(struct bcm63xx_spi
*bs
,
70 return bcm_readw(bs
->regs
+ bcm63xx_spireg(offset
));
73 static inline void bcm_spi_writeb(struct bcm63xx_spi
*bs
,
74 u8 value
, unsigned int offset
)
76 bcm_writeb(value
, bs
->regs
+ bcm63xx_spireg(offset
));
79 static inline void bcm_spi_writew(struct bcm63xx_spi
*bs
,
80 u16 value
, unsigned int offset
)
82 bcm_writew(value
, bs
->regs
+ bcm63xx_spireg(offset
));
85 static const unsigned bcm63xx_spi_freq_table
[SPI_CLK_MASK
][2] = {
86 { 20000000, SPI_CLK_20MHZ
},
87 { 12500000, SPI_CLK_12_50MHZ
},
88 { 6250000, SPI_CLK_6_250MHZ
},
89 { 3125000, SPI_CLK_3_125MHZ
},
90 { 1563000, SPI_CLK_1_563MHZ
},
91 { 781000, SPI_CLK_0_781MHZ
},
92 { 391000, SPI_CLK_0_391MHZ
}
95 static void bcm63xx_spi_setup_transfer(struct spi_device
*spi
,
96 struct spi_transfer
*t
)
98 struct bcm63xx_spi
*bs
= spi_master_get_devdata(spi
->master
);
102 /* Find the closest clock configuration */
103 for (i
= 0; i
< SPI_CLK_MASK
; i
++) {
104 if (t
->speed_hz
>= bcm63xx_spi_freq_table
[i
][0]) {
105 clk_cfg
= bcm63xx_spi_freq_table
[i
][1];
110 /* No matching configuration found, default to lowest */
111 if (i
== SPI_CLK_MASK
)
112 clk_cfg
= SPI_CLK_0_391MHZ
;
114 /* clear existing clock configuration bits of the register */
115 reg
= bcm_spi_readb(bs
, SPI_CLK_CFG
);
116 reg
&= ~SPI_CLK_MASK
;
119 bcm_spi_writeb(bs
, reg
, SPI_CLK_CFG
);
120 dev_dbg(&spi
->dev
, "Setting clock register to %02x (hz %d)\n",
121 clk_cfg
, t
->speed_hz
);
124 /* the spi->mode bits understood by this driver: */
125 #define MODEBITS (SPI_CPOL | SPI_CPHA)
127 static int bcm63xx_txrx_bufs(struct spi_device
*spi
, struct spi_transfer
*first
,
128 unsigned int num_transfers
)
130 struct bcm63xx_spi
*bs
= spi_master_get_devdata(spi
->master
);
134 unsigned int i
, timeout
= 0, prepend_len
= 0, len
= 0;
135 struct spi_transfer
*t
= first
;
139 /* Disable the CMD_DONE interrupt */
140 bcm_spi_writeb(bs
, 0, SPI_INT_MASK
);
142 dev_dbg(&spi
->dev
, "txrx: tx %p, rx %p, len %d\n",
143 t
->tx_buf
, t
->rx_buf
, t
->len
);
145 if (num_transfers
> 1 && t
->tx_buf
&& t
->len
<= BCM63XX_SPI_MAX_PREPEND
)
146 prepend_len
= t
->len
;
148 /* prepare the buffer */
149 for (i
= 0; i
< num_transfers
; i
++) {
152 memcpy_toio(bs
->tx_io
+ len
, t
->tx_buf
, t
->len
);
154 /* don't prepend more than one tx */
161 /* prepend is half-duplex write only */
168 t
= list_entry(t
->transfer_list
.next
, struct spi_transfer
,
174 init_completion(&bs
->done
);
176 /* Fill in the Message control register */
177 msg_ctl
= (len
<< SPI_BYTE_CNT_SHIFT
);
179 if (do_rx
&& do_tx
&& prepend_len
== 0)
180 msg_ctl
|= (SPI_FD_RW
<< bs
->msg_type_shift
);
182 msg_ctl
|= (SPI_HD_R
<< bs
->msg_type_shift
);
184 msg_ctl
|= (SPI_HD_W
<< bs
->msg_type_shift
);
186 switch (bs
->msg_ctl_width
) {
188 bcm_spi_writeb(bs
, msg_ctl
, SPI_MSG_CTL
);
191 bcm_spi_writew(bs
, msg_ctl
, SPI_MSG_CTL
);
195 /* Issue the transfer */
196 cmd
= SPI_CMD_START_IMMEDIATE
;
197 cmd
|= (prepend_len
<< SPI_CMD_PREPEND_BYTE_CNT_SHIFT
);
198 cmd
|= (spi
->chip_select
<< SPI_CMD_DEVICE_ID_SHIFT
);
199 bcm_spi_writew(bs
, cmd
, SPI_CMD
);
201 /* Enable the CMD_DONE interrupt */
202 bcm_spi_writeb(bs
, SPI_INTR_CMD_DONE
, SPI_INT_MASK
);
204 timeout
= wait_for_completion_timeout(&bs
->done
, HZ
);
208 /* read out all data */
209 rx_tail
= bcm_spi_readb(bs
, SPI_RX_TAIL
);
211 if (do_rx
&& rx_tail
!= len
)
219 /* Read out all the data */
220 for (i
= 0; i
< num_transfers
; i
++) {
222 memcpy_fromio(t
->rx_buf
, bs
->rx_io
+ len
, t
->len
);
224 if (t
!= first
|| prepend_len
== 0)
227 t
= list_entry(t
->transfer_list
.next
, struct spi_transfer
,
234 static int bcm63xx_spi_prepare_transfer(struct spi_master
*master
)
236 struct bcm63xx_spi
*bs
= spi_master_get_devdata(master
);
238 pm_runtime_get_sync(&bs
->pdev
->dev
);
243 static int bcm63xx_spi_unprepare_transfer(struct spi_master
*master
)
245 struct bcm63xx_spi
*bs
= spi_master_get_devdata(master
);
247 pm_runtime_put(&bs
->pdev
->dev
);
252 static int bcm63xx_spi_transfer_one(struct spi_master
*master
,
253 struct spi_message
*m
)
255 struct bcm63xx_spi
*bs
= spi_master_get_devdata(master
);
256 struct spi_transfer
*t
, *first
= NULL
;
257 struct spi_device
*spi
= m
->spi
;
259 unsigned int n_transfers
= 0, total_len
= 0;
260 bool can_use_prepend
= false;
263 * This SPI controller does not support keeping CS active after a
265 * Work around this by merging as many transfers we can into one big
266 * full-duplex transfers.
268 list_for_each_entry(t
, &m
->transfers
, transfer_list
) {
275 if (n_transfers
== 2 && !first
->rx_buf
&& !t
->tx_buf
&&
276 first
->len
<= BCM63XX_SPI_MAX_PREPEND
)
277 can_use_prepend
= true;
278 else if (can_use_prepend
&& t
->tx_buf
)
279 can_use_prepend
= false;
281 /* we can only transfer one fifo worth of data */
282 if ((can_use_prepend
&&
283 total_len
> (bs
->fifo_size
+ BCM63XX_SPI_MAX_PREPEND
)) ||
284 (!can_use_prepend
&& total_len
> bs
->fifo_size
)) {
285 dev_err(&spi
->dev
, "unable to do transfers larger than FIFO size (%i > %i)\n",
286 total_len
, bs
->fifo_size
);
291 /* all combined transfers have to have the same speed */
292 if (t
->speed_hz
!= first
->speed_hz
) {
293 dev_err(&spi
->dev
, "unable to change speed between transfers\n");
298 /* CS will be deasserted directly after transfer */
299 if (t
->delay_usecs
) {
300 dev_err(&spi
->dev
, "unable to keep CS asserted after transfer\n");
306 list_is_last(&t
->transfer_list
, &m
->transfers
)) {
307 /* configure adapter for a new transfer */
308 bcm63xx_spi_setup_transfer(spi
, first
);
311 status
= bcm63xx_txrx_bufs(spi
, first
, n_transfers
);
315 m
->actual_length
+= total_len
;
320 can_use_prepend
= false;
325 spi_finalize_current_message(master
);
330 /* This driver supports single master mode only. Hence
331 * CMD_DONE is the only interrupt we care about
333 static irqreturn_t
bcm63xx_spi_interrupt(int irq
, void *dev_id
)
335 struct spi_master
*master
= (struct spi_master
*)dev_id
;
336 struct bcm63xx_spi
*bs
= spi_master_get_devdata(master
);
339 /* Read interupts and clear them immediately */
340 intr
= bcm_spi_readb(bs
, SPI_INT_STATUS
);
341 bcm_spi_writeb(bs
, SPI_INTR_CLEAR_ALL
, SPI_INT_STATUS
);
342 bcm_spi_writeb(bs
, 0, SPI_INT_MASK
);
344 /* A transfer completed */
345 if (intr
& SPI_INTR_CMD_DONE
)
352 static int bcm63xx_spi_probe(struct platform_device
*pdev
)
355 struct device
*dev
= &pdev
->dev
;
356 struct bcm63xx_spi_pdata
*pdata
= pdev
->dev
.platform_data
;
358 struct spi_master
*master
;
360 struct bcm63xx_spi
*bs
;
363 r
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
365 dev_err(dev
, "no iomem\n");
370 irq
= platform_get_irq(pdev
, 0);
372 dev_err(dev
, "no irq\n");
377 clk
= clk_get(dev
, "spi");
379 dev_err(dev
, "no clock for device\n");
384 master
= spi_alloc_master(dev
, sizeof(*bs
));
386 dev_err(dev
, "out of memory\n");
391 bs
= spi_master_get_devdata(master
);
393 platform_set_drvdata(pdev
, master
);
396 bs
->regs
= devm_ioremap_resource(&pdev
->dev
, r
);
397 if (IS_ERR(bs
->regs
)) {
398 ret
= PTR_ERR(bs
->regs
);
404 bs
->fifo_size
= pdata
->fifo_size
;
406 ret
= devm_request_irq(&pdev
->dev
, irq
, bcm63xx_spi_interrupt
, 0,
409 dev_err(dev
, "unable to request irq\n");
413 master
->bus_num
= pdata
->bus_num
;
414 master
->num_chipselect
= pdata
->num_chipselect
;
415 master
->prepare_transfer_hardware
= bcm63xx_spi_prepare_transfer
;
416 master
->unprepare_transfer_hardware
= bcm63xx_spi_unprepare_transfer
;
417 master
->transfer_one_message
= bcm63xx_spi_transfer_one
;
418 master
->mode_bits
= MODEBITS
;
419 master
->bits_per_word_mask
= SPI_BPW_MASK(8);
420 bs
->msg_type_shift
= pdata
->msg_type_shift
;
421 bs
->msg_ctl_width
= pdata
->msg_ctl_width
;
422 bs
->tx_io
= (u8
*)(bs
->regs
+ bcm63xx_spireg(SPI_MSG_DATA
));
423 bs
->rx_io
= (const u8
*)(bs
->regs
+ bcm63xx_spireg(SPI_RX_DATA
));
425 switch (bs
->msg_ctl_width
) {
430 dev_err(dev
, "unsupported MSG_CTL width: %d\n",
435 /* Initialize hardware */
436 clk_prepare_enable(bs
->clk
);
437 bcm_spi_writeb(bs
, SPI_INTR_CLEAR_ALL
, SPI_INT_STATUS
);
439 /* register and we are done */
440 ret
= spi_register_master(master
);
442 dev_err(dev
, "spi register failed\n");
443 goto out_clk_disable
;
446 dev_info(dev
, "at 0x%08x (irq %d, FIFOs size %d)\n",
447 r
->start
, irq
, bs
->fifo_size
);
452 clk_disable_unprepare(clk
);
454 spi_master_put(master
);
461 static int bcm63xx_spi_remove(struct platform_device
*pdev
)
463 struct spi_master
*master
= spi_master_get(platform_get_drvdata(pdev
));
464 struct bcm63xx_spi
*bs
= spi_master_get_devdata(master
);
466 spi_unregister_master(master
);
468 /* reset spi block */
469 bcm_spi_writeb(bs
, 0, SPI_INT_MASK
);
472 clk_disable_unprepare(bs
->clk
);
475 spi_master_put(master
);
481 static int bcm63xx_spi_suspend(struct device
*dev
)
483 struct spi_master
*master
=
484 platform_get_drvdata(to_platform_device(dev
));
485 struct bcm63xx_spi
*bs
= spi_master_get_devdata(master
);
487 spi_master_suspend(master
);
489 clk_disable_unprepare(bs
->clk
);
494 static int bcm63xx_spi_resume(struct device
*dev
)
496 struct spi_master
*master
=
497 platform_get_drvdata(to_platform_device(dev
));
498 struct bcm63xx_spi
*bs
= spi_master_get_devdata(master
);
500 clk_prepare_enable(bs
->clk
);
502 spi_master_resume(master
);
507 static const struct dev_pm_ops bcm63xx_spi_pm_ops
= {
508 .suspend
= bcm63xx_spi_suspend
,
509 .resume
= bcm63xx_spi_resume
,
512 #define BCM63XX_SPI_PM_OPS (&bcm63xx_spi_pm_ops)
514 #define BCM63XX_SPI_PM_OPS NULL
517 static struct platform_driver bcm63xx_spi_driver
= {
519 .name
= "bcm63xx-spi",
520 .owner
= THIS_MODULE
,
521 .pm
= BCM63XX_SPI_PM_OPS
,
523 .probe
= bcm63xx_spi_probe
,
524 .remove
= bcm63xx_spi_remove
,
527 module_platform_driver(bcm63xx_spi_driver
);
529 MODULE_ALIAS("platform:bcm63xx_spi");
530 MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>");
531 MODULE_AUTHOR("Tanguy Bouzeloc <tanguy.bouzeloc@efixo.com>");
532 MODULE_DESCRIPTION("Broadcom BCM63xx SPI Controller driver");
533 MODULE_LICENSE("GPL");