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;
51 unsigned int msg_type_shift;
52 unsigned int msg_ctl_width;
56 const u8 __iomem *rx_io;
59 struct platform_device *pdev;
62 static inline u8 bcm_spi_readb(struct bcm63xx_spi *bs,
65 return bcm_readb(bs->regs + bcm63xx_spireg(offset));
68 static inline u16 bcm_spi_readw(struct bcm63xx_spi *bs,
71 return bcm_readw(bs->regs + bcm63xx_spireg(offset));
74 static inline void bcm_spi_writeb(struct bcm63xx_spi *bs,
75 u8 value, unsigned int offset)
77 bcm_writeb(value, bs->regs + bcm63xx_spireg(offset));
80 static inline void bcm_spi_writew(struct bcm63xx_spi *bs,
81 u16 value, unsigned int offset)
83 bcm_writew(value, bs->regs + bcm63xx_spireg(offset));
86 static const unsigned bcm63xx_spi_freq_table[SPI_CLK_MASK][2] = {
87 { 20000000, SPI_CLK_20MHZ },
88 { 12500000, SPI_CLK_12_50MHZ },
89 { 6250000, SPI_CLK_6_250MHZ },
90 { 3125000, SPI_CLK_3_125MHZ },
91 { 1563000, SPI_CLK_1_563MHZ },
92 { 781000, SPI_CLK_0_781MHZ },
93 { 391000, SPI_CLK_0_391MHZ }
96 static int bcm63xx_spi_check_transfer(struct spi_device *spi,
97 struct spi_transfer *t)
101 bits_per_word = (t) ? t->bits_per_word : spi->bits_per_word;
102 if (bits_per_word != 8) {
103 dev_err(&spi->dev, "%s, unsupported bits_per_word=%d\n",
104 __func__, bits_per_word);
108 if (spi->chip_select > spi->master->num_chipselect) {
109 dev_err(&spi->dev, "%s, unsupported slave %d\n",
110 __func__, spi->chip_select);
117 static void bcm63xx_spi_setup_transfer(struct spi_device *spi,
118 struct spi_transfer *t)
120 struct bcm63xx_spi *bs = spi_master_get_devdata(spi->master);
125 hz = (t) ? t->speed_hz : spi->max_speed_hz;
127 /* Find the closest clock configuration */
128 for (i = 0; i < SPI_CLK_MASK; i++) {
129 if (hz >= bcm63xx_spi_freq_table[i][0]) {
130 clk_cfg = bcm63xx_spi_freq_table[i][1];
135 /* No matching configuration found, default to lowest */
136 if (i == SPI_CLK_MASK)
137 clk_cfg = SPI_CLK_0_391MHZ;
139 /* clear existing clock configuration bits of the register */
140 reg = bcm_spi_readb(bs, SPI_CLK_CFG);
141 reg &= ~SPI_CLK_MASK;
144 bcm_spi_writeb(bs, reg, SPI_CLK_CFG);
145 dev_dbg(&spi->dev, "Setting clock register to %02x (hz %d)\n",
149 /* the spi->mode bits understood by this driver: */
150 #define MODEBITS (SPI_CPOL | SPI_CPHA)
152 static int bcm63xx_spi_setup(struct spi_device *spi)
154 struct bcm63xx_spi *bs;
157 bs = spi_master_get_devdata(spi->master);
159 if (!spi->bits_per_word)
160 spi->bits_per_word = 8;
162 if (spi->mode & ~MODEBITS) {
163 dev_err(&spi->dev, "%s, unsupported mode bits %x\n",
164 __func__, spi->mode & ~MODEBITS);
168 dev_dbg(&spi->dev, "%s, mode %d, %u bits/w, %u nsec/bit\n",
169 __func__, spi->mode & MODEBITS, spi->bits_per_word, 0);
174 static int bcm63xx_txrx_bufs(struct spi_device *spi, struct spi_transfer *first,
175 unsigned int num_transfers)
177 struct bcm63xx_spi *bs = spi_master_get_devdata(spi->master);
181 unsigned int i, timeout = 0, prepend_len = 0, len = 0;
182 struct spi_transfer *t = first;
186 /* Disable the CMD_DONE interrupt */
187 bcm_spi_writeb(bs, 0, SPI_INT_MASK);
189 dev_dbg(&spi->dev, "txrx: tx %p, rx %p, len %d\n",
190 t->tx_buf, t->rx_buf, t->len);
192 if (num_transfers > 1 && t->tx_buf && t->len <= BCM63XX_SPI_MAX_PREPEND)
193 prepend_len = t->len;
195 /* prepare the buffer */
196 for (i = 0; i < num_transfers; i++) {
199 memcpy_toio(bs->tx_io + len, t->tx_buf, t->len);
201 /* don't prepend more than one tx */
208 /* prepend is half-duplex write only */
215 t = list_entry(t->transfer_list.next, struct spi_transfer,
221 init_completion(&bs->done);
223 /* Fill in the Message control register */
224 msg_ctl = (len << SPI_BYTE_CNT_SHIFT);
226 if (do_rx && do_tx && prepend_len == 0)
227 msg_ctl |= (SPI_FD_RW << bs->msg_type_shift);
229 msg_ctl |= (SPI_HD_R << bs->msg_type_shift);
231 msg_ctl |= (SPI_HD_W << bs->msg_type_shift);
233 switch (bs->msg_ctl_width) {
235 bcm_spi_writeb(bs, msg_ctl, SPI_MSG_CTL);
238 bcm_spi_writew(bs, msg_ctl, SPI_MSG_CTL);
242 /* Issue the transfer */
243 cmd = SPI_CMD_START_IMMEDIATE;
244 cmd |= (prepend_len << SPI_CMD_PREPEND_BYTE_CNT_SHIFT);
245 cmd |= (spi->chip_select << SPI_CMD_DEVICE_ID_SHIFT);
246 bcm_spi_writew(bs, cmd, SPI_CMD);
248 /* Enable the CMD_DONE interrupt */
249 bcm_spi_writeb(bs, SPI_INTR_CMD_DONE, SPI_INT_MASK);
251 timeout = wait_for_completion_timeout(&bs->done, HZ);
255 /* read out all data */
256 rx_tail = bcm_spi_readb(bs, SPI_RX_TAIL);
258 if (do_rx && rx_tail != len)
266 /* Read out all the data */
267 for (i = 0; i < num_transfers; i++) {
269 memcpy_fromio(t->rx_buf, bs->rx_io + len, t->len);
271 if (t != first || prepend_len == 0)
274 t = list_entry(t->transfer_list.next, struct spi_transfer,
281 static int bcm63xx_spi_prepare_transfer(struct spi_master *master)
283 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
285 pm_runtime_get_sync(&bs->pdev->dev);
290 static int bcm63xx_spi_unprepare_transfer(struct spi_master *master)
292 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
294 pm_runtime_put(&bs->pdev->dev);
299 static int bcm63xx_spi_transfer_one(struct spi_master *master,
300 struct spi_message *m)
302 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
303 struct spi_transfer *t, *first = NULL;
304 struct spi_device *spi = m->spi;
306 unsigned int n_transfers = 0, total_len = 0;
307 bool can_use_prepend = false;
310 * This SPI controller does not support keeping CS active after a
312 * Work around this by merging as many transfers we can into one big
313 * full-duplex transfers.
315 list_for_each_entry(t, &m->transfers, transfer_list) {
316 status = bcm63xx_spi_check_transfer(spi, t);
326 if (n_transfers == 2 && !first->rx_buf && !t->tx_buf &&
327 first->len <= BCM63XX_SPI_MAX_PREPEND)
328 can_use_prepend = true;
329 else if (can_use_prepend && t->tx_buf)
330 can_use_prepend = false;
332 /* we can only transfer one fifo worth of data */
333 if ((can_use_prepend &&
334 total_len > (bs->fifo_size + BCM63XX_SPI_MAX_PREPEND)) ||
335 (!can_use_prepend && total_len > bs->fifo_size)) {
336 dev_err(&spi->dev, "unable to do transfers larger than FIFO size (%i > %i)\n",
337 total_len, bs->fifo_size);
342 /* all combined transfers have to have the same speed */
343 if (t->speed_hz != first->speed_hz) {
344 dev_err(&spi->dev, "unable to change speed between transfers\n");
349 /* CS will be deasserted directly after transfer */
350 if (t->delay_usecs) {
351 dev_err(&spi->dev, "unable to keep CS asserted after transfer\n");
357 list_is_last(&t->transfer_list, &m->transfers)) {
358 /* configure adapter for a new transfer */
359 bcm63xx_spi_setup_transfer(spi, first);
362 status = bcm63xx_txrx_bufs(spi, first, n_transfers);
366 m->actual_length += total_len;
371 can_use_prepend = false;
376 spi_finalize_current_message(master);
381 /* This driver supports single master mode only. Hence
382 * CMD_DONE is the only interrupt we care about
384 static irqreturn_t bcm63xx_spi_interrupt(int irq, void *dev_id)
386 struct spi_master *master = (struct spi_master *)dev_id;
387 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
390 /* Read interupts and clear them immediately */
391 intr = bcm_spi_readb(bs, SPI_INT_STATUS);
392 bcm_spi_writeb(bs, SPI_INTR_CLEAR_ALL, SPI_INT_STATUS);
393 bcm_spi_writeb(bs, 0, SPI_INT_MASK);
395 /* A transfer completed */
396 if (intr & SPI_INTR_CMD_DONE)
403 static int bcm63xx_spi_probe(struct platform_device *pdev)
406 struct device *dev = &pdev->dev;
407 struct bcm63xx_spi_pdata *pdata = pdev->dev.platform_data;
409 struct spi_master *master;
411 struct bcm63xx_spi *bs;
414 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
416 dev_err(dev, "no iomem\n");
421 irq = platform_get_irq(pdev, 0);
423 dev_err(dev, "no irq\n");
428 clk = clk_get(dev, "spi");
430 dev_err(dev, "no clock for device\n");
435 master = spi_alloc_master(dev, sizeof(*bs));
437 dev_err(dev, "out of memory\n");
442 bs = spi_master_get_devdata(master);
444 platform_set_drvdata(pdev, master);
447 if (!devm_request_mem_region(&pdev->dev, r->start,
448 resource_size(r), PFX)) {
449 dev_err(dev, "iomem request failed\n");
454 bs->regs = devm_ioremap_nocache(&pdev->dev, r->start,
457 dev_err(dev, "unable to ioremap regs\n");
464 bs->fifo_size = pdata->fifo_size;
466 ret = devm_request_irq(&pdev->dev, irq, bcm63xx_spi_interrupt, 0,
469 dev_err(dev, "unable to request irq\n");
473 master->bus_num = pdata->bus_num;
474 master->num_chipselect = pdata->num_chipselect;
475 master->setup = bcm63xx_spi_setup;
476 master->prepare_transfer_hardware = bcm63xx_spi_prepare_transfer;
477 master->unprepare_transfer_hardware = bcm63xx_spi_unprepare_transfer;
478 master->transfer_one_message = bcm63xx_spi_transfer_one;
479 master->mode_bits = MODEBITS;
480 bs->speed_hz = pdata->speed_hz;
481 bs->msg_type_shift = pdata->msg_type_shift;
482 bs->msg_ctl_width = pdata->msg_ctl_width;
483 bs->tx_io = (u8 *)(bs->regs + bcm63xx_spireg(SPI_MSG_DATA));
484 bs->rx_io = (const u8 *)(bs->regs + bcm63xx_spireg(SPI_RX_DATA));
486 switch (bs->msg_ctl_width) {
491 dev_err(dev, "unsupported MSG_CTL width: %d\n",
493 goto out_clk_disable;
496 /* Initialize hardware */
498 bcm_spi_writeb(bs, SPI_INTR_CLEAR_ALL, SPI_INT_STATUS);
500 /* register and we are done */
501 ret = spi_register_master(master);
503 dev_err(dev, "spi register failed\n");
504 goto out_clk_disable;
507 dev_info(dev, "at 0x%08x (irq %d, FIFOs size %d)\n",
508 r->start, irq, bs->fifo_size);
515 platform_set_drvdata(pdev, NULL);
516 spi_master_put(master);
523 static int bcm63xx_spi_remove(struct platform_device *pdev)
525 struct spi_master *master = spi_master_get(platform_get_drvdata(pdev));
526 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
528 spi_unregister_master(master);
530 /* reset spi block */
531 bcm_spi_writeb(bs, 0, SPI_INT_MASK);
534 clk_disable(bs->clk);
537 platform_set_drvdata(pdev, 0);
539 spi_master_put(master);
545 static int bcm63xx_spi_suspend(struct device *dev)
547 struct spi_master *master =
548 platform_get_drvdata(to_platform_device(dev));
549 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
551 spi_master_suspend(master);
553 clk_disable(bs->clk);
558 static int bcm63xx_spi_resume(struct device *dev)
560 struct spi_master *master =
561 platform_get_drvdata(to_platform_device(dev));
562 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
566 spi_master_resume(master);
571 static const struct dev_pm_ops bcm63xx_spi_pm_ops = {
572 .suspend = bcm63xx_spi_suspend,
573 .resume = bcm63xx_spi_resume,
576 #define BCM63XX_SPI_PM_OPS (&bcm63xx_spi_pm_ops)
578 #define BCM63XX_SPI_PM_OPS NULL
581 static struct platform_driver bcm63xx_spi_driver = {
583 .name = "bcm63xx-spi",
584 .owner = THIS_MODULE,
585 .pm = BCM63XX_SPI_PM_OPS,
587 .probe = bcm63xx_spi_probe,
588 .remove = bcm63xx_spi_remove,
591 module_platform_driver(bcm63xx_spi_driver);
593 MODULE_ALIAS("platform:bcm63xx_spi");
594 MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>");
595 MODULE_AUTHOR("Tanguy Bouzeloc <tanguy.bouzeloc@efixo.com>");
596 MODULE_DESCRIPTION("Broadcom BCM63xx SPI Controller driver");
597 MODULE_LICENSE("GPL");