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.
18 #include <linux/kernel.h>
19 #include <linux/clk.h>
21 #include <linux/module.h>
22 #include <linux/platform_device.h>
23 #include <linux/delay.h>
24 #include <linux/interrupt.h>
25 #include <linux/spi/spi.h>
26 #include <linux/completion.h>
27 #include <linux/err.h>
28 #include <linux/pm_runtime.h>
30 #include <bcm63xx_dev_spi.h>
32 #define BCM63XX_SPI_MAX_PREPEND 15
35 struct completion done
;
42 unsigned int msg_type_shift
;
43 unsigned int msg_ctl_width
;
47 const u8 __iomem
*rx_io
;
50 struct platform_device
*pdev
;
53 static inline u8
bcm_spi_readb(struct bcm63xx_spi
*bs
,
56 return bcm_readb(bs
->regs
+ bcm63xx_spireg(offset
));
59 static inline u16
bcm_spi_readw(struct bcm63xx_spi
*bs
,
62 return bcm_readw(bs
->regs
+ bcm63xx_spireg(offset
));
65 static inline void bcm_spi_writeb(struct bcm63xx_spi
*bs
,
66 u8 value
, unsigned int offset
)
68 bcm_writeb(value
, bs
->regs
+ bcm63xx_spireg(offset
));
71 static inline void bcm_spi_writew(struct bcm63xx_spi
*bs
,
72 u16 value
, unsigned int offset
)
74 bcm_writew(value
, bs
->regs
+ bcm63xx_spireg(offset
));
77 static const unsigned bcm63xx_spi_freq_table
[SPI_CLK_MASK
][2] = {
78 { 20000000, SPI_CLK_20MHZ
},
79 { 12500000, SPI_CLK_12_50MHZ
},
80 { 6250000, SPI_CLK_6_250MHZ
},
81 { 3125000, SPI_CLK_3_125MHZ
},
82 { 1563000, SPI_CLK_1_563MHZ
},
83 { 781000, SPI_CLK_0_781MHZ
},
84 { 391000, SPI_CLK_0_391MHZ
}
87 static void bcm63xx_spi_setup_transfer(struct spi_device
*spi
,
88 struct spi_transfer
*t
)
90 struct bcm63xx_spi
*bs
= spi_master_get_devdata(spi
->master
);
94 /* Find the closest clock configuration */
95 for (i
= 0; i
< SPI_CLK_MASK
; i
++) {
96 if (t
->speed_hz
>= bcm63xx_spi_freq_table
[i
][0]) {
97 clk_cfg
= bcm63xx_spi_freq_table
[i
][1];
102 /* No matching configuration found, default to lowest */
103 if (i
== SPI_CLK_MASK
)
104 clk_cfg
= SPI_CLK_0_391MHZ
;
106 /* clear existing clock configuration bits of the register */
107 reg
= bcm_spi_readb(bs
, SPI_CLK_CFG
);
108 reg
&= ~SPI_CLK_MASK
;
111 bcm_spi_writeb(bs
, reg
, SPI_CLK_CFG
);
112 dev_dbg(&spi
->dev
, "Setting clock register to %02x (hz %d)\n",
113 clk_cfg
, t
->speed_hz
);
116 /* the spi->mode bits understood by this driver: */
117 #define MODEBITS (SPI_CPOL | SPI_CPHA)
119 static int bcm63xx_txrx_bufs(struct spi_device
*spi
, struct spi_transfer
*first
,
120 unsigned int num_transfers
)
122 struct bcm63xx_spi
*bs
= spi_master_get_devdata(spi
->master
);
126 unsigned int i
, timeout
= 0, prepend_len
= 0, len
= 0;
127 struct spi_transfer
*t
= first
;
131 /* Disable the CMD_DONE interrupt */
132 bcm_spi_writeb(bs
, 0, SPI_INT_MASK
);
134 dev_dbg(&spi
->dev
, "txrx: tx %p, rx %p, len %d\n",
135 t
->tx_buf
, t
->rx_buf
, t
->len
);
137 if (num_transfers
> 1 && t
->tx_buf
&& t
->len
<= BCM63XX_SPI_MAX_PREPEND
)
138 prepend_len
= t
->len
;
140 /* prepare the buffer */
141 for (i
= 0; i
< num_transfers
; i
++) {
144 memcpy_toio(bs
->tx_io
+ len
, t
->tx_buf
, t
->len
);
146 /* don't prepend more than one tx */
153 /* prepend is half-duplex write only */
160 t
= list_entry(t
->transfer_list
.next
, struct spi_transfer
,
164 reinit_completion(&bs
->done
);
166 /* Fill in the Message control register */
167 msg_ctl
= (len
<< SPI_BYTE_CNT_SHIFT
);
169 if (do_rx
&& do_tx
&& prepend_len
== 0)
170 msg_ctl
|= (SPI_FD_RW
<< bs
->msg_type_shift
);
172 msg_ctl
|= (SPI_HD_R
<< bs
->msg_type_shift
);
174 msg_ctl
|= (SPI_HD_W
<< bs
->msg_type_shift
);
176 switch (bs
->msg_ctl_width
) {
178 bcm_spi_writeb(bs
, msg_ctl
, SPI_MSG_CTL
);
181 bcm_spi_writew(bs
, msg_ctl
, SPI_MSG_CTL
);
185 /* Issue the transfer */
186 cmd
= SPI_CMD_START_IMMEDIATE
;
187 cmd
|= (prepend_len
<< SPI_CMD_PREPEND_BYTE_CNT_SHIFT
);
188 cmd
|= (spi
->chip_select
<< SPI_CMD_DEVICE_ID_SHIFT
);
189 bcm_spi_writew(bs
, cmd
, SPI_CMD
);
191 /* Enable the CMD_DONE interrupt */
192 bcm_spi_writeb(bs
, SPI_INTR_CMD_DONE
, SPI_INT_MASK
);
194 timeout
= wait_for_completion_timeout(&bs
->done
, HZ
);
203 /* Read out all the data */
204 for (i
= 0; i
< num_transfers
; i
++) {
206 memcpy_fromio(t
->rx_buf
, bs
->rx_io
+ len
, t
->len
);
208 if (t
!= first
|| prepend_len
== 0)
211 t
= list_entry(t
->transfer_list
.next
, struct spi_transfer
,
218 static int bcm63xx_spi_transfer_one(struct spi_master
*master
,
219 struct spi_message
*m
)
221 struct bcm63xx_spi
*bs
= spi_master_get_devdata(master
);
222 struct spi_transfer
*t
, *first
= NULL
;
223 struct spi_device
*spi
= m
->spi
;
225 unsigned int n_transfers
= 0, total_len
= 0;
226 bool can_use_prepend
= false;
229 * This SPI controller does not support keeping CS active after a
231 * Work around this by merging as many transfers we can into one big
232 * full-duplex transfers.
234 list_for_each_entry(t
, &m
->transfers
, transfer_list
) {
241 if (n_transfers
== 2 && !first
->rx_buf
&& !t
->tx_buf
&&
242 first
->len
<= BCM63XX_SPI_MAX_PREPEND
)
243 can_use_prepend
= true;
244 else if (can_use_prepend
&& t
->tx_buf
)
245 can_use_prepend
= false;
247 /* we can only transfer one fifo worth of data */
248 if ((can_use_prepend
&&
249 total_len
> (bs
->fifo_size
+ BCM63XX_SPI_MAX_PREPEND
)) ||
250 (!can_use_prepend
&& total_len
> bs
->fifo_size
)) {
251 dev_err(&spi
->dev
, "unable to do transfers larger than FIFO size (%i > %i)\n",
252 total_len
, bs
->fifo_size
);
257 /* all combined transfers have to have the same speed */
258 if (t
->speed_hz
!= first
->speed_hz
) {
259 dev_err(&spi
->dev
, "unable to change speed between transfers\n");
264 /* CS will be deasserted directly after transfer */
265 if (t
->delay_usecs
) {
266 dev_err(&spi
->dev
, "unable to keep CS asserted after transfer\n");
272 list_is_last(&t
->transfer_list
, &m
->transfers
)) {
273 /* configure adapter for a new transfer */
274 bcm63xx_spi_setup_transfer(spi
, first
);
277 status
= bcm63xx_txrx_bufs(spi
, first
, n_transfers
);
281 m
->actual_length
+= total_len
;
286 can_use_prepend
= false;
291 spi_finalize_current_message(master
);
296 /* This driver supports single master mode only. Hence
297 * CMD_DONE is the only interrupt we care about
299 static irqreturn_t
bcm63xx_spi_interrupt(int irq
, void *dev_id
)
301 struct spi_master
*master
= (struct spi_master
*)dev_id
;
302 struct bcm63xx_spi
*bs
= spi_master_get_devdata(master
);
305 /* Read interupts and clear them immediately */
306 intr
= bcm_spi_readb(bs
, SPI_INT_STATUS
);
307 bcm_spi_writeb(bs
, SPI_INTR_CLEAR_ALL
, SPI_INT_STATUS
);
308 bcm_spi_writeb(bs
, 0, SPI_INT_MASK
);
310 /* A transfer completed */
311 if (intr
& SPI_INTR_CMD_DONE
)
318 static int bcm63xx_spi_probe(struct platform_device
*pdev
)
321 struct device
*dev
= &pdev
->dev
;
322 struct bcm63xx_spi_pdata
*pdata
= dev_get_platdata(&pdev
->dev
);
324 struct spi_master
*master
;
326 struct bcm63xx_spi
*bs
;
329 irq
= platform_get_irq(pdev
, 0);
331 dev_err(dev
, "no irq\n");
335 clk
= devm_clk_get(dev
, "spi");
337 dev_err(dev
, "no clock for device\n");
341 master
= spi_alloc_master(dev
, sizeof(*bs
));
343 dev_err(dev
, "out of memory\n");
347 bs
= spi_master_get_devdata(master
);
348 init_completion(&bs
->done
);
350 platform_set_drvdata(pdev
, master
);
353 r
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
354 bs
->regs
= devm_ioremap_resource(&pdev
->dev
, r
);
355 if (IS_ERR(bs
->regs
)) {
356 ret
= PTR_ERR(bs
->regs
);
362 bs
->fifo_size
= pdata
->fifo_size
;
364 ret
= devm_request_irq(&pdev
->dev
, irq
, bcm63xx_spi_interrupt
, 0,
367 dev_err(dev
, "unable to request irq\n");
371 master
->bus_num
= pdata
->bus_num
;
372 master
->num_chipselect
= pdata
->num_chipselect
;
373 master
->transfer_one_message
= bcm63xx_spi_transfer_one
;
374 master
->mode_bits
= MODEBITS
;
375 master
->bits_per_word_mask
= SPI_BPW_MASK(8);
376 master
->auto_runtime_pm
= true;
377 bs
->msg_type_shift
= pdata
->msg_type_shift
;
378 bs
->msg_ctl_width
= pdata
->msg_ctl_width
;
379 bs
->tx_io
= (u8
*)(bs
->regs
+ bcm63xx_spireg(SPI_MSG_DATA
));
380 bs
->rx_io
= (const u8
*)(bs
->regs
+ bcm63xx_spireg(SPI_RX_DATA
));
382 switch (bs
->msg_ctl_width
) {
387 dev_err(dev
, "unsupported MSG_CTL width: %d\n",
392 /* Initialize hardware */
393 ret
= clk_prepare_enable(bs
->clk
);
397 bcm_spi_writeb(bs
, SPI_INTR_CLEAR_ALL
, SPI_INT_STATUS
);
399 /* register and we are done */
400 ret
= devm_spi_register_master(dev
, master
);
402 dev_err(dev
, "spi register failed\n");
403 goto out_clk_disable
;
406 dev_info(dev
, "at 0x%08x (irq %d, FIFOs size %d)\n",
407 r
->start
, irq
, bs
->fifo_size
);
412 clk_disable_unprepare(clk
);
414 spi_master_put(master
);
418 static int bcm63xx_spi_remove(struct platform_device
*pdev
)
420 struct spi_master
*master
= platform_get_drvdata(pdev
);
421 struct bcm63xx_spi
*bs
= spi_master_get_devdata(master
);
423 /* reset spi block */
424 bcm_spi_writeb(bs
, 0, SPI_INT_MASK
);
427 clk_disable_unprepare(bs
->clk
);
432 #ifdef CONFIG_PM_SLEEP
433 static int bcm63xx_spi_suspend(struct device
*dev
)
435 struct spi_master
*master
= dev_get_drvdata(dev
);
436 struct bcm63xx_spi
*bs
= spi_master_get_devdata(master
);
438 spi_master_suspend(master
);
440 clk_disable_unprepare(bs
->clk
);
445 static int bcm63xx_spi_resume(struct device
*dev
)
447 struct spi_master
*master
= dev_get_drvdata(dev
);
448 struct bcm63xx_spi
*bs
= spi_master_get_devdata(master
);
451 ret
= clk_prepare_enable(bs
->clk
);
455 spi_master_resume(master
);
461 static const struct dev_pm_ops bcm63xx_spi_pm_ops
= {
462 SET_SYSTEM_SLEEP_PM_OPS(bcm63xx_spi_suspend
, bcm63xx_spi_resume
)
465 static struct platform_driver bcm63xx_spi_driver
= {
467 .name
= "bcm63xx-spi",
468 .pm
= &bcm63xx_spi_pm_ops
,
470 .probe
= bcm63xx_spi_probe
,
471 .remove
= bcm63xx_spi_remove
,
474 module_platform_driver(bcm63xx_spi_driver
);
476 MODULE_ALIAS("platform:bcm63xx_spi");
477 MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>");
478 MODULE_AUTHOR("Tanguy Bouzeloc <tanguy.bouzeloc@efixo.com>");
479 MODULE_DESCRIPTION("Broadcom BCM63xx SPI Controller driver");
480 MODULE_LICENSE("GPL");