2 +++ b/arch/mips/bcm63xx/dev-spi.c
5 + * This file is subject to the terms and conditions of the GNU General Public
6 + * License. See the file "COPYING" in the main directory of this archive
9 + * Copyright (C) 2009-2011 Florian Fainelli <florian@openwrt.org>
10 + * Copyright (C) 2010 Tanguy Bouzeloc <tanguy.bouzeloc@efixo.com>
13 +#include <linux/init.h>
14 +#include <linux/kernel.h>
15 +#include <linux/platform_device.h>
16 +#include <linux/export.h>
18 +#include <bcm63xx_cpu.h>
19 +#include <bcm63xx_dev_spi.h>
20 +#include <bcm63xx_regs.h>
22 +#ifdef BCMCPU_RUNTIME_DETECT
26 +static const unsigned long bcm96338_regs_spi[] = {
27 + __GEN_SPI_REGS_TABLE(6338)
30 +static const unsigned long bcm96348_regs_spi[] = {
31 + __GEN_SPI_REGS_TABLE(6348)
34 +static const unsigned long bcm96358_regs_spi[] = {
35 + __GEN_SPI_REGS_TABLE(6358)
38 +const unsigned long *bcm63xx_regs_spi;
39 +EXPORT_SYMBOL(bcm63xx_regs_spi);
41 +static __init void bcm63xx_spi_regs_init(void)
43 + if (BCMCPU_IS_6338())
44 + bcm63xx_regs_spi = bcm96338_regs_spi;
45 + if (BCMCPU_IS_6348())
46 + bcm63xx_regs_spi = bcm96348_regs_spi;
47 + if (BCMCPU_IS_6358())
48 + bcm63xx_regs_spi = bcm96358_regs_spi;
51 +static __init void bcm63xx_spi_regs_init(void) { }
54 +static struct resource spi_resources[] = {
56 + .start = -1, /* filled at runtime */
57 + .end = -1, /* filled at runtime */
58 + .flags = IORESOURCE_MEM,
61 + .start = -1, /* filled at runtime */
62 + .flags = IORESOURCE_IRQ,
66 +static struct bcm63xx_spi_pdata spi_pdata = {
68 + .num_chipselect = 8,
69 + .speed_hz = 50000000, /* Fclk */
72 +static struct platform_device bcm63xx_spi_device = {
73 + .name = "bcm63xx-spi",
75 + .num_resources = ARRAY_SIZE(spi_resources),
76 + .resource = spi_resources,
78 + .platform_data = &spi_pdata,
82 +int __init bcm63xx_spi_register(void)
84 + spi_resources[0].start = bcm63xx_regset_address(RSET_SPI);
85 + spi_resources[0].end = spi_resources[0].start;
86 + spi_resources[0].end += RSET_SPI_SIZE - 1;
87 + spi_resources[1].start = bcm63xx_get_irq_number(IRQ_SPI);
89 + if (BCMCPU_IS_6345())
92 + /* Fill in platform data */
93 + if (BCMCPU_IS_6338() || BCMCPU_IS_6348())
94 + spi_pdata.fifo_size = SPI_BCM_6338_SPI_MSG_DATA_SIZE;
96 + if (BCMCPU_IS_6358())
97 + spi_pdata.fifo_size = SPI_BCM_6358_SPI_MSG_DATA_SIZE;
99 + bcm63xx_spi_regs_init();
101 + return platform_device_register(&bcm63xx_spi_device);
103 --- a/arch/mips/include/asm/mach-bcm63xx/bcm63xx_cpu.h
104 +++ b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_cpu.h
105 @@ -138,6 +138,7 @@ enum bcm63xx_regs_set {
106 #define RSET_ENET_SIZE 2048
107 #define RSET_ENETDMA_SIZE 2048
108 #define RSET_ENETSW_SIZE 65536
109 +#define RSET_SPI_SIZE 256
110 #define RSET_UART_SIZE 24
111 #define RSET_UDC_SIZE 256
112 #define RSET_OHCI_SIZE 256
113 @@ -289,7 +290,7 @@ enum bcm63xx_regs_set {
114 #define BCM_6358_UART0_BASE (0xfffe0100)
115 #define BCM_6358_UART1_BASE (0xfffe0120)
116 #define BCM_6358_GPIO_BASE (0xfffe0080)
117 -#define BCM_6358_SPI_BASE (0xdeadbeef)
118 +#define BCM_6358_SPI_BASE (0xfffe0800)
119 #define BCM_6358_SPI2_BASE (0xfffe0800)
120 #define BCM_6358_UDC0_BASE (0xfffe0400)
121 #define BCM_6358_OHCI0_BASE (0xfffe1400)
122 @@ -478,6 +479,7 @@ static inline unsigned long bcm63xx_regs
130 @@ -571,6 +573,7 @@ enum bcm63xx_irq {
133 #define BCM_6348_TIMER_IRQ (IRQ_INTERNAL_BASE + 0)
134 +#define BCM_6348_SPI_IRQ (IRQ_INTERNAL_BASE + 1)
135 #define BCM_6348_UART0_IRQ (IRQ_INTERNAL_BASE + 2)
136 #define BCM_6348_UART1_IRQ 0
137 #define BCM_6348_DSL_IRQ (IRQ_INTERNAL_BASE + 4)
138 @@ -608,6 +611,7 @@ enum bcm63xx_irq {
141 #define BCM_6358_TIMER_IRQ (IRQ_INTERNAL_BASE + 0)
142 +#define BCM_6358_SPI_IRQ (IRQ_INTERNAL_BASE + 1)
143 #define BCM_6358_UART0_IRQ (IRQ_INTERNAL_BASE + 2)
144 #define BCM_6358_UART1_IRQ (IRQ_INTERNAL_BASE + 3)
145 #define BCM_6358_DSL_IRQ (IRQ_INTERNAL_BASE + 29)
146 --- a/arch/mips/include/asm/mach-bcm63xx/bcm63xx_regs.h
147 +++ b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_regs.h
148 @@ -1007,4 +1007,116 @@
149 #define M2M_SRCID_REG(x) ((x) * 0x40 + 0x14)
150 #define M2M_DSTID_REG(x) ((x) * 0x40 + 0x18)
152 +/*************************************************************************
153 + * _REG relative to RSET_SPI
154 + *************************************************************************/
156 +/* BCM 6338 SPI core */
157 +#define SPI_BCM_6338_SPI_CMD 0x00 /* 16-bits register */
158 +#define SPI_BCM_6338_SPI_INT_STATUS 0x02
159 +#define SPI_BCM_6338_SPI_INT_MASK_ST 0x03
160 +#define SPI_BCM_6338_SPI_INT_MASK 0x04
161 +#define SPI_BCM_6338_SPI_ST 0x05
162 +#define SPI_BCM_6338_SPI_CLK_CFG 0x06
163 +#define SPI_BCM_6338_SPI_FILL_BYTE 0x07
164 +#define SPI_BCM_6338_SPI_MSG_TAIL 0x09
165 +#define SPI_BCM_6338_SPI_RX_TAIL 0x0b
166 +#define SPI_BCM_6338_SPI_MSG_CTL 0x40
167 +#define SPI_BCM_6338_SPI_MSG_DATA 0x41
168 +#define SPI_BCM_6338_SPI_MSG_DATA_SIZE 0x3f
169 +#define SPI_BCM_6338_SPI_RX_DATA 0x80
170 +#define SPI_BCM_6338_SPI_RX_DATA_SIZE 0x3f
172 +/* BCM 6348 SPI core */
173 +#define SPI_BCM_6348_SPI_CMD 0x00 /* 16-bits register */
174 +#define SPI_BCM_6348_SPI_INT_STATUS 0x02
175 +#define SPI_BCM_6348_SPI_INT_MASK_ST 0x03
176 +#define SPI_BCM_6348_SPI_INT_MASK 0x04
177 +#define SPI_BCM_6348_SPI_ST 0x05
178 +#define SPI_BCM_6348_SPI_CLK_CFG 0x06
179 +#define SPI_BCM_6348_SPI_FILL_BYTE 0x07
180 +#define SPI_BCM_6348_SPI_MSG_TAIL 0x09
181 +#define SPI_BCM_6348_SPI_RX_TAIL 0x0b
182 +#define SPI_BCM_6348_SPI_MSG_CTL 0x40
183 +#define SPI_BCM_6348_SPI_MSG_DATA 0x41
184 +#define SPI_BCM_6348_SPI_MSG_DATA_SIZE 0x3f
185 +#define SPI_BCM_6348_SPI_RX_DATA 0x80
186 +#define SPI_BCM_6348_SPI_RX_DATA_SIZE 0x3f
188 +/* BCM 6358 SPI core */
189 +#define SPI_BCM_6358_SPI_MSG_CTL 0x00 /* 16-bits register */
191 +#define SPI_BCM_6358_SPI_MSG_DATA 0x02
192 +#define SPI_BCM_6358_SPI_MSG_DATA_SIZE 0x21e
194 +#define SPI_BCM_6358_SPI_RX_DATA 0x400
195 +#define SPI_BCM_6358_SPI_RX_DATA_SIZE 0x220
197 +#define SPI_BCM_6358_SPI_CMD 0x700 /* 16-bits register */
199 +#define SPI_BCM_6358_SPI_INT_STATUS 0x702
200 +#define SPI_BCM_6358_SPI_INT_MASK_ST 0x703
202 +#define SPI_BCM_6358_SPI_INT_MASK 0x704
204 +#define SPI_BCM_6358_SPI_ST 0x705
206 +#define SPI_BCM_6358_SPI_CLK_CFG 0x706
208 +#define SPI_BCM_6358_SPI_FILL_BYTE 0x707
209 +#define SPI_BCM_6358_SPI_MSG_TAIL 0x709
210 +#define SPI_BCM_6358_SPI_RX_TAIL 0x70B
212 +/* Shared SPI definitions */
214 +/* Message configuration */
215 +#define SPI_FD_RW 0x00
216 +#define SPI_HD_W 0x01
217 +#define SPI_HD_R 0x02
218 +#define SPI_BYTE_CNT_SHIFT 0
219 +#define SPI_MSG_TYPE_SHIFT 14
222 +#define SPI_CMD_NOOP 0x00
223 +#define SPI_CMD_SOFT_RESET 0x01
224 +#define SPI_CMD_HARD_RESET 0x02
225 +#define SPI_CMD_START_IMMEDIATE 0x03
226 +#define SPI_CMD_COMMAND_SHIFT 0
227 +#define SPI_CMD_COMMAND_MASK 0x000f
228 +#define SPI_CMD_DEVICE_ID_SHIFT 4
229 +#define SPI_CMD_PREPEND_BYTE_CNT_SHIFT 8
230 +#define SPI_CMD_ONE_BYTE_SHIFT 11
231 +#define SPI_CMD_ONE_WIRE_SHIFT 12
232 +#define SPI_DEV_ID_0 0
233 +#define SPI_DEV_ID_1 1
234 +#define SPI_DEV_ID_2 2
235 +#define SPI_DEV_ID_3 3
237 +/* Interrupt mask */
238 +#define SPI_INTR_CMD_DONE 0x01
239 +#define SPI_INTR_RX_OVERFLOW 0x02
240 +#define SPI_INTR_TX_UNDERFLOW 0x04
241 +#define SPI_INTR_TX_OVERFLOW 0x08
242 +#define SPI_INTR_RX_UNDERFLOW 0x10
243 +#define SPI_INTR_CLEAR_ALL 0x1f
246 +#define SPI_RX_EMPTY 0x02
247 +#define SPI_CMD_BUSY 0x04
248 +#define SPI_SERIAL_BUSY 0x08
250 +/* Clock configuration */
251 +#define SPI_CLK_20MHZ 0x00
252 +#define SPI_CLK_0_391MHZ 0x01
253 +#define SPI_CLK_0_781MHZ 0x02 /* default */
254 +#define SPI_CLK_1_563MHZ 0x03
255 +#define SPI_CLK_3_125MHZ 0x04
256 +#define SPI_CLK_6_250MHZ 0x05
257 +#define SPI_CLK_12_50MHZ 0x06
258 +#define SPI_CLK_25MHZ 0x07
259 +#define SPI_CLK_MASK 0x07
260 +#define SPI_SSOFFTIME_MASK 0x38
261 +#define SPI_SSOFFTIME_SHIFT 3
262 +#define SPI_BYTE_SWAP 0x80
264 #endif /* BCM63XX_REGS_H_ */
266 +++ b/drivers/spi/bcm63xx_spi.c
269 + * Broadcom BCM63xx SPI controller support
271 + * Copyright (C) 2009 Florian Fainelli <florian@openwrt.org>
272 + * Copyright (C) 2010 Tanguy Bouzeloc <tanguy.bouzeloc@efixo.com>
274 + * This program is free software; you can redistribute it and/or
275 + * modify it under the terms of the GNU General Public License
276 + * as published by the Free Software Foundation; either version 2
277 + * of the License, or (at your option) any later version.
279 + * This program is distributed in the hope that it will be useful,
280 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
281 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
282 + * GNU General Public License for more details.
284 + * You should have received a copy of the GNU General Public License
285 + * along with this program; if not, write to the
286 + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
289 +#include <linux/kernel.h>
290 +#include <linux/init.h>
291 +#include <linux/clk.h>
292 +#include <linux/module.h>
293 +#include <linux/platform_device.h>
294 +#include <linux/delay.h>
295 +#include <linux/interrupt.h>
296 +#include <linux/spi/spi.h>
297 +#include <linux/completion.h>
298 +#include <linux/err.h>
300 +#include <bcm63xx_dev_spi.h>
302 +#define PFX KBUILD_MODNAME
303 +#define DRV_VER "0.1.2"
305 +struct bcm63xx_spi {
308 + struct completion done;
310 + void __iomem *regs;
313 + /* Platform data */
315 + unsigned fifo_size;
318 + const unsigned char *tx_ptr;
319 + unsigned char *rx_ptr;
323 + const u8 __iomem *rx_io;
325 + int remaining_bytes;
328 + struct platform_device *pdev;
331 +static inline u8 bcm_spi_readb(struct bcm63xx_spi *bs,
332 + unsigned int offset)
334 + return bcm_readw(bs->regs + bcm63xx_spireg(offset));
337 +static inline u16 bcm_spi_readw(struct bcm63xx_spi *bs,
338 + unsigned int offset)
340 + return bcm_readw(bs->regs + bcm63xx_spireg(offset));
343 +static inline void bcm_spi_writeb(struct bcm63xx_spi *bs,
344 + u8 value, unsigned int offset)
346 + bcm_writeb(value, bs->regs + bcm63xx_spireg(offset));
349 +static inline void bcm_spi_writew(struct bcm63xx_spi *bs,
350 + u16 value, unsigned int offset)
352 + bcm_writew(value, bs->regs + bcm63xx_spireg(offset));
355 +static int bcm63xx_spi_setup_transfer(struct spi_device *spi,
356 + struct spi_transfer *t)
363 + struct bcm63xx_spi *bs = spi_master_get_devdata(spi->master);
365 + bits_per_word = (t) ? t->bits_per_word : spi->bits_per_word;
366 + hz = (t) ? t->speed_hz : spi->max_speed_hz;
367 + if (bits_per_word != 8) {
368 + dev_err(&spi->dev, "%s, unsupported bits_per_word=%d\n",
369 + __func__, bits_per_word);
373 + if (spi->chip_select > spi->master->num_chipselect) {
374 + dev_err(&spi->dev, "%s, unsupported slave %d\n",
375 + __func__, spi->chip_select);
379 + /* Check clock setting */
380 + div = (bs->speed_hz / hz);
383 + clk_cfg = SPI_CLK_25MHZ;
386 + clk_cfg = SPI_CLK_12_50MHZ;
389 + clk_cfg = SPI_CLK_6_250MHZ;
392 + clk_cfg = SPI_CLK_3_125MHZ;
395 + clk_cfg = SPI_CLK_1_563MHZ;
398 + clk_cfg = SPI_CLK_0_781MHZ;
402 + /* Set to slowest mode for compatibility */
403 + clk_cfg = SPI_CLK_0_391MHZ;
407 + bcm_spi_writeb(bs, clk_cfg, SPI_CLK_CFG);
408 + dev_dbg(&spi->dev, "Setting clock register to %d (hz %d, cmd %02x)\n",
414 +/* the spi->mode bits understood by this driver: */
415 +#define MODEBITS (SPI_CPOL | SPI_CPHA)
417 +static int bcm63xx_spi_setup(struct spi_device *spi)
419 + struct bcm63xx_spi *bs;
422 + bs = spi_master_get_devdata(spi->master);
427 + if (!spi->bits_per_word)
428 + spi->bits_per_word = 8;
430 + if (spi->mode & ~MODEBITS) {
431 + dev_err(&spi->dev, "%s, unsupported mode bits %x\n",
432 + __func__, spi->mode & ~MODEBITS);
436 + ret = bcm63xx_spi_setup_transfer(spi, NULL);
438 + dev_err(&spi->dev, "setup: unsupported mode bits %x\n",
439 + spi->mode & ~MODEBITS);
443 + dev_dbg(&spi->dev, "%s, mode %d, %u bits/w, %u nsec/bit\n",
444 + __func__, spi->mode & MODEBITS, spi->bits_per_word, 0);
449 +/* Fill the TX FIFO with as many bytes as possible */
450 +static void bcm63xx_spi_fill_tx_fifo(struct bcm63xx_spi *bs)
454 + /* Fill the Tx FIFO with as many bytes as possible */
455 + size = bs->remaining_bytes < bs->fifo_size ? bs->remaining_bytes :
457 + memcpy_toio(bs->tx_io, bs->tx_ptr, size);
458 + bs->remaining_bytes -= size;
461 +static int bcm63xx_txrx_bufs(struct spi_device *spi, struct spi_transfer *t)
463 + struct bcm63xx_spi *bs = spi_master_get_devdata(spi->master);
467 + dev_dbg(&spi->dev, "txrx: tx %p, rx %p, len %d\n",
468 + t->tx_buf, t->rx_buf, t->len);
470 + /* Transmitter is inhibited */
471 + bs->tx_ptr = t->tx_buf;
472 + bs->rx_ptr = t->rx_buf;
473 + init_completion(&bs->done);
476 + bs->remaining_bytes = t->len;
477 + bcm63xx_spi_fill_tx_fifo(bs);
480 + /* Enable the command done interrupt which
481 + * we use to determine completion of a command */
482 + bcm_spi_writeb(bs, SPI_INTR_CMD_DONE, SPI_INT_MASK);
484 + /* Fill in the Message control register */
485 + msg_ctl = (t->len << SPI_BYTE_CNT_SHIFT);
487 + if (t->rx_buf && t->tx_buf)
488 + msg_ctl |= (SPI_FD_RW << SPI_MSG_TYPE_SHIFT);
489 + else if (t->rx_buf)
490 + msg_ctl |= (SPI_HD_R << SPI_MSG_TYPE_SHIFT);
491 + else if (t->tx_buf)
492 + msg_ctl |= (SPI_HD_W << SPI_MSG_TYPE_SHIFT);
494 + bcm_spi_writew(bs, msg_ctl, SPI_MSG_CTL);
496 + /* Issue the transfer */
497 + cmd = SPI_CMD_START_IMMEDIATE;
498 + cmd |= (0 << SPI_CMD_PREPEND_BYTE_CNT_SHIFT);
499 + cmd |= (spi->chip_select << SPI_CMD_DEVICE_ID_SHIFT);
500 + bcm_spi_writew(bs, cmd, SPI_CMD);
501 + wait_for_completion(&bs->done);
503 + /* Disable the CMD_DONE interrupt */
504 + bcm_spi_writeb(bs, 0, SPI_INT_MASK);
506 + return t->len - bs->remaining_bytes;
509 +static int bcm63xx_transfer(struct spi_device *spi, struct spi_message *m)
511 + struct bcm63xx_spi *bs = spi_master_get_devdata(spi->master);
512 + struct spi_transfer *t;
515 + if (unlikely(list_empty(&m->transfers)))
521 + list_for_each_entry(t, &m->transfers, transfer_list) {
522 + ret += bcm63xx_txrx_bufs(spi, t);
525 + m->complete(m->context);
530 +/* This driver supports single master mode only. Hence
531 + * CMD_DONE is the only interrupt we care about
533 +static irqreturn_t bcm63xx_spi_interrupt(int irq, void *dev_id)
535 + struct spi_master *master = (struct spi_master *)dev_id;
536 + struct bcm63xx_spi *bs = spi_master_get_devdata(master);
540 + /* Read interupts and clear them immediately */
541 + intr = bcm_spi_readb(bs, SPI_INT_STATUS);
542 + bcm_spi_writeb(bs, SPI_INTR_CLEAR_ALL, SPI_INT_STATUS);
543 + bcm_spi_writeb(bs, 0, SPI_INT_MASK);
545 + /* A tansfer completed */
546 + if (intr & SPI_INTR_CMD_DONE) {
549 + rx_tail = bcm_spi_readb(bs, SPI_RX_TAIL);
551 + /* Read out all the data */
553 + memcpy_fromio(bs->rx_ptr, bs->rx_io, rx_tail);
555 + /* See if there is more data to send */
556 + if (bs->remaining_bytes > 0) {
557 + bcm63xx_spi_fill_tx_fifo(bs);
559 + /* Start the transfer */
560 + bcm_spi_writew(bs, SPI_HD_W << SPI_MSG_TYPE_SHIFT,
562 + cmd = bcm_spi_readw(bs, SPI_CMD);
563 + cmd |= SPI_CMD_START_IMMEDIATE;
564 + cmd |= (0 << SPI_CMD_PREPEND_BYTE_CNT_SHIFT);
565 + bcm_spi_writeb(bs, SPI_INTR_CMD_DONE, SPI_INT_MASK);
566 + bcm_spi_writew(bs, cmd, SPI_CMD);
568 + complete(&bs->done);
572 + return IRQ_HANDLED;
576 +static int __init bcm63xx_spi_probe(struct platform_device *pdev)
578 + struct resource *r;
579 + struct device *dev = &pdev->dev;
580 + struct bcm63xx_spi_pdata *pdata = pdev->dev.platform_data;
582 + struct spi_master *master;
584 + struct bcm63xx_spi *bs;
587 + r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
589 + dev_err(dev, "no iomem\n");
594 + irq = platform_get_irq(pdev, 0);
596 + dev_err(dev, "no irq\n");
601 + clk = clk_get(dev, "spi");
603 + dev_err(dev, "no clock for device\n");
608 + master = spi_alloc_master(dev, sizeof(*bs));
610 + dev_err(dev, "out of memory\n");
615 + bs = spi_master_get_devdata(master);
616 + init_completion(&bs->done);
618 + platform_set_drvdata(pdev, master);
621 + if (!request_mem_region(r->start, r->end - r->start, PFX)) {
622 + dev_err(dev, "iomem request failed\n");
624 + goto out_put_master;
627 + bs->regs = ioremap_nocache(r->start, r->end - r->start);
629 + dev_err(dev, "unable to ioremap regs\n");
631 + goto out_put_master;
635 + bs->fifo_size = pdata->fifo_size;
637 + ret = request_irq(irq, bcm63xx_spi_interrupt, 0, pdev->name, master);
639 + dev_err(dev, "unable to request irq\n");
643 + master->bus_num = pdata->bus_num;
644 + master->num_chipselect = pdata->num_chipselect;
645 + master->setup = bcm63xx_spi_setup;
646 + master->transfer = bcm63xx_transfer;
647 + bs->speed_hz = pdata->speed_hz;
649 + bs->tx_io = (u8*)(bs->regs + bcm63xx_spireg(SPI_MSG_DATA));
650 + bs->rx_io = (const u8*)(bs->regs + bcm63xx_spireg(SPI_RX_DATA));
651 + spin_lock_init(&bs->lock);
653 + /* Initialize hardware */
654 + clk_enable(bs->clk);
655 + bcm_spi_writeb(bs, SPI_INTR_CLEAR_ALL, SPI_INT_STATUS);
657 + /* register and we are done */
658 + ret = spi_register_master(master);
660 + dev_err(dev, "spi register failed\n");
664 + dev_info(dev, "at 0x%08x (irq %d, FIFOs size %d) v%s\n",
665 + r->start, irq, bs->fifo_size, DRV_VER);
671 + free_irq(irq, master);
675 + spi_master_put(master);
682 +static int __exit bcm63xx_spi_remove(struct platform_device *pdev)
684 + struct spi_master *master = platform_get_drvdata(pdev);
685 + struct bcm63xx_spi *bs = spi_master_get_devdata(master);
686 + struct resource *r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
688 + /* reset spi block */
689 + bcm_spi_writeb(bs, 0, SPI_INT_MASK);
690 + spin_lock(&bs->lock);
694 + clk_disable(bs->clk);
697 + spin_unlock(&bs->lock);
699 + free_irq(bs->irq, master);
701 + release_mem_region(r->start, r->end - r->start);
702 + platform_set_drvdata(pdev, 0);
703 + spi_unregister_master(master);
709 +static int bcm63xx_spi_suspend(struct platform_device *pdev, pm_message_t mesg)
711 + struct spi_master *master = platform_get_drvdata(pdev);
712 + struct bcm63xx_spi *bs = spi_master_get_devdata(master);
714 + clk_disable(bs->clk);
719 +static int bcm63xx_spi_resume(struct platform_device *pdev)
721 + struct spi_master *master = platform_get_drvdata(pdev);
722 + struct bcm63xx_spi *bs = spi_master_get_devdata(master);
724 + clk_enable(bs->clk);
729 +#define bcm63xx_spi_suspend NULL
730 +#define bcm63xx_spi_resume NULL
733 +static struct platform_driver bcm63xx_spi_driver = {
735 + .name = "bcm63xx-spi",
736 + .owner = THIS_MODULE,
738 + .probe = bcm63xx_spi_probe,
739 + .remove = __exit_p(bcm63xx_spi_remove),
740 + .suspend = bcm63xx_spi_suspend,
741 + .resume = bcm63xx_spi_resume,
745 +static int __init bcm63xx_spi_init(void)
747 + return platform_driver_register(&bcm63xx_spi_driver);
750 +static void __exit bcm63xx_spi_exit(void)
752 + platform_driver_unregister(&bcm63xx_spi_driver);
755 +module_init(bcm63xx_spi_init);
756 +module_exit(bcm63xx_spi_exit);
758 +MODULE_ALIAS("platform:bcm63xx_spi");
759 +MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>");
760 +MODULE_AUTHOR("Tanguy Bouzeloc <tanguy.bouzeloc@efixo.com>");
761 +MODULE_DESCRIPTION("Broadcom BCM63xx SPI Controller driver");
762 +MODULE_LICENSE("GPL");
763 +MODULE_VERSION(DRV_VER);
764 --- a/drivers/spi/Kconfig
765 +++ b/drivers/spi/Kconfig
766 @@ -74,6 +74,12 @@ config SPI_ATMEL
767 This selects a driver for the Atmel SPI Controller, present on
768 many AT32 (AVR32) and AT91 (ARM) chips.
771 + tristate "Broadcom BCM63xx SPI controller"
774 + This is the SPI controller master driver for Broadcom BCM63xx SoC.
777 tristate "SPI controller driver for ADI Blackfin5xx"
779 --- a/drivers/spi/Makefile
780 +++ b/drivers/spi/Makefile
781 @@ -14,6 +14,7 @@ obj-$(CONFIG_SPI_ALTERA) += spi-altera.
782 obj-$(CONFIG_SPI_ATMEL) += spi-atmel.o
783 obj-$(CONFIG_SPI_ATH79) += spi-ath79.o
784 obj-$(CONFIG_SPI_AU1550) += spi-au1550.o
785 +obj-$(CONFIG_SPI_BCM63XX) += bcm63xx_spi.o
786 obj-$(CONFIG_SPI_BFIN) += spi-bfin5xx.o
787 obj-$(CONFIG_SPI_BFIN_SPORT) += spi-bfin-sport.o
788 obj-$(CONFIG_SPI_BITBANG) += spi-bitbang.o
790 +++ b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_dev_spi.h
792 +#ifndef BCM63XX_DEV_SPI_H
793 +#define BCM63XX_DEV_SPI_H
795 +#include <linux/types.h>
796 +#include <bcm63xx_io.h>
797 +#include <bcm63xx_regs.h>
799 +int __init bcm63xx_spi_register(void);
801 +struct bcm63xx_spi_pdata {
802 + unsigned int fifo_size;
804 + int num_chipselect;
808 +enum bcm63xx_regs_spi {
823 +#define __GEN_SPI_RSET_BASE(__cpu, __rset) \
824 + case SPI_## __rset: \
825 + return SPI_BCM_## __cpu ##_SPI_## __rset;
827 +#define __GEN_SPI_RSET(__cpu) \
829 + __GEN_SPI_RSET_BASE(__cpu, CMD) \
830 + __GEN_SPI_RSET_BASE(__cpu, INT_STATUS) \
831 + __GEN_SPI_RSET_BASE(__cpu, INT_MASK_ST) \
832 + __GEN_SPI_RSET_BASE(__cpu, INT_MASK) \
833 + __GEN_SPI_RSET_BASE(__cpu, ST) \
834 + __GEN_SPI_RSET_BASE(__cpu, CLK_CFG) \
835 + __GEN_SPI_RSET_BASE(__cpu, FILL_BYTE) \
836 + __GEN_SPI_RSET_BASE(__cpu, MSG_TAIL) \
837 + __GEN_SPI_RSET_BASE(__cpu, RX_TAIL) \
838 + __GEN_SPI_RSET_BASE(__cpu, MSG_CTL) \
839 + __GEN_SPI_RSET_BASE(__cpu, MSG_DATA) \
840 + __GEN_SPI_RSET_BASE(__cpu, RX_DATA) \
843 +#define __GEN_SPI_REGS_TABLE(__cpu) \
844 + [SPI_CMD] = SPI_BCM_## __cpu ##_SPI_CMD, \
845 + [SPI_INT_STATUS] = SPI_BCM_## __cpu ##_SPI_INT_STATUS, \
846 + [SPI_INT_MASK_ST] = SPI_BCM_## __cpu ##_SPI_INT_MASK_ST, \
847 + [SPI_INT_MASK] = SPI_BCM_## __cpu ##_SPI_INT_MASK, \
848 + [SPI_ST] = SPI_BCM_## __cpu ##_SPI_ST, \
849 + [SPI_CLK_CFG] = SPI_BCM_## __cpu ##_SPI_CLK_CFG, \
850 + [SPI_FILL_BYTE] = SPI_BCM_## __cpu ##_SPI_FILL_BYTE, \
851 + [SPI_MSG_TAIL] = SPI_BCM_## __cpu ##_SPI_MSG_TAIL, \
852 + [SPI_RX_TAIL] = SPI_BCM_## __cpu ##_SPI_RX_TAIL, \
853 + [SPI_MSG_CTL] = SPI_BCM_## __cpu ##_SPI_MSG_CTL, \
854 + [SPI_MSG_DATA] = SPI_BCM_## __cpu ##_SPI_MSG_DATA, \
855 + [SPI_RX_DATA] = SPI_BCM_## __cpu ##_SPI_RX_DATA,
857 +static inline unsigned long bcm63xx_spireg(enum bcm63xx_regs_spi reg)
859 +#ifdef BCMCPU_RUNTIME_DETECT
860 + extern const unsigned long *bcm63xx_regs_spi;
861 + return bcm63xx_regs_spi[reg];
863 +#ifdef CONFIG_BCM63XX_CPU_6338
864 + __GEN_SPI_RSET(6338)
866 +#ifdef CONFIG_BCM63XX_CPU_6348
867 + __GEN_SPI_RSET(6348)
869 +#ifdef CONFIG_BCM63XX_CPU_6358
870 + __GEN_SPI_RSET(6358)
876 +#endif /* BCM63XX_DEV_SPI_H */
877 --- a/arch/mips/bcm63xx/Makefile
878 +++ b/arch/mips/bcm63xx/Makefile
880 obj-y += clk.o cpu.o cs.o gpio.o irq.o prom.o setup.o timer.o \
881 - dev-dsp.o dev-enet.o dev-pcmcia.o dev-uart.o \
882 + dev-dsp.o dev-enet.o dev-pcmcia.o dev-spi.o dev-uart.o \
883 dev-usb-ehci.o dev-usb-ohci.o dev-usb-udc.o dev-wdt.o
884 obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
886 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c
887 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c
889 #include <bcm63xx_dev_usb_ohci.h>
890 #include <bcm63xx_dev_usb_ehci.h>
891 #include <bcm63xx_dev_usb_udc.h>
892 +#include <bcm63xx_dev_spi.h>
893 #include <board_bcm963xx.h>
895 #define PFX "board_bcm963xx: "
896 @@ -955,6 +956,8 @@ int __init board_register_devices(void)
898 spi_register_board_info(board.spis, board.num_spis);
900 + bcm63xx_spi_register();
902 /* read base address of boot chip select (0) */
903 val = bcm_mpi_readl(MPI_CSBASE_REG(0));
904 val &= MPI_CSBASE_BASE_MASK;