1 --- a/arch/mips/bcm63xx/cpu.c
2 +++ b/arch/mips/bcm63xx/cpu.c
3 @@ -58,6 +58,7 @@ static const unsigned long bcm96338_regs
5 static const int bcm96338_irqs[] = {
6 [IRQ_TIMER] = BCM_6338_TIMER_IRQ,
7 + [IRQ_SPI] = BCM_6338_SPI_IRQ,
8 [IRQ_UART0] = BCM_6338_UART0_IRQ,
9 [IRQ_DSL] = BCM_6338_DSL_IRQ,
10 [IRQ_ENET0] = BCM_6338_ENET0_IRQ,
11 @@ -132,6 +133,7 @@ static const unsigned long bcm96348_regs
13 static const int bcm96348_irqs[] = {
14 [IRQ_TIMER] = BCM_6348_TIMER_IRQ,
15 + [IRQ_SPI] = BCM_6348_SPI_IRQ,
16 [IRQ_UART0] = BCM_6348_UART0_IRQ,
17 [IRQ_DSL] = BCM_6348_DSL_IRQ,
18 [IRQ_ENET0] = BCM_6348_ENET0_IRQ,
19 @@ -175,6 +177,7 @@ static const unsigned long bcm96358_regs
21 static const int bcm96358_irqs[] = {
22 [IRQ_TIMER] = BCM_6358_TIMER_IRQ,
23 + [IRQ_SPI] = BCM_6358_SPI_IRQ,
24 [IRQ_UART0] = BCM_6358_UART0_IRQ,
25 [IRQ_UART1] = BCM_6358_UART1_IRQ,
26 [IRQ_DSL] = BCM_6358_DSL_IRQ,
28 +++ b/arch/mips/bcm63xx/dev-spi.c
31 + * This file is subject to the terms and conditions of the GNU General Public
32 + * License. See the file "COPYING" in the main directory of this archive
35 + * Copyright (C) 2009-2011 Florian Fainelli <florian@openwrt.org>
36 + * Copyright (C) 2010 Tanguy Bouzeloc <tanguy.bouzeloc@efixo.com>
39 +#include <linux/init.h>
40 +#include <linux/kernel.h>
41 +#include <linux/platform_device.h>
43 +#include <bcm63xx_cpu.h>
44 +#include <bcm63xx_dev_spi.h>
45 +#include <bcm63xx_regs.h>
47 +#ifdef BCMCPU_RUNTIME_DETECT
51 +static const unsigned long bcm96338_regs_spi[] = {
52 + __GEN_SPI_REGS_TABLE(6338)
55 +static const unsigned long bcm96348_regs_spi[] = {
56 + __GEN_SPI_REGS_TABLE(6348)
59 +static const unsigned long bcm96358_regs_spi[] = {
60 + __GEN_SPI_REGS_TABLE(6358)
63 +const unsigned long *bcm63xx_regs_spi;
64 +EXPORT_SYMBOL(bcm63xx_regs_spi);
66 +static __init void bcm63xx_spi_regs_init(void)
68 + if (BCMCPU_IS_6338())
69 + bcm63xx_regs_spi = bcm96338_regs_spi;
70 + if (BCMCPU_IS_6348())
71 + bcm63xx_regs_spi = bcm96348_regs_spi;
72 + if (BCMCPU_IS_6358())
73 + bcm63xx_regs_spi = bcm96358_regs_spi;
76 +static __init void bcm63xx_spi_regs_init(void) { }
79 +static struct resource spi_resources[] = {
81 + .start = -1, /* filled at runtime */
82 + .end = -1, /* filled at runtime */
83 + .flags = IORESOURCE_MEM,
86 + .start = -1, /* filled at runtime */
87 + .flags = IORESOURCE_IRQ,
91 +static struct bcm63xx_spi_pdata spi_pdata = {
93 + .num_chipselect = 8,
94 + .speed_hz = 50000000, /* Fclk */
97 +static struct platform_device bcm63xx_spi_device = {
98 + .name = "bcm63xx-spi",
100 + .num_resources = ARRAY_SIZE(spi_resources),
101 + .resource = spi_resources,
103 + .platform_data = &spi_pdata,
107 +int __init bcm63xx_spi_register(void)
109 + spi_resources[0].start = bcm63xx_regset_address(RSET_SPI);
110 + spi_resources[0].end = spi_resources[0].start;
111 + spi_resources[0].end += RSET_SPI_SIZE - 1;
112 + spi_resources[1].start = bcm63xx_get_irq_number(IRQ_SPI);
114 + if (BCMCPU_IS_6345())
117 + /* Fill in platform data */
118 + if (BCMCPU_IS_6338() || BCMCPU_IS_6348())
119 + spi_pdata.fifo_size = SPI_BCM_6338_SPI_MSG_DATA_SIZE;
121 + if (BCMCPU_IS_6358())
122 + spi_pdata.fifo_size = SPI_BCM_6358_SPI_MSG_DATA_SIZE;
124 + bcm63xx_spi_regs_init();
126 + return platform_device_register(&bcm63xx_spi_device);
128 --- a/arch/mips/include/asm/mach-bcm63xx/bcm63xx_cpu.h
129 +++ b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_cpu.h
130 @@ -109,6 +109,7 @@ enum bcm63xx_regs_set {
131 #define RSET_WDT_SIZE 12
132 #define RSET_ENET_SIZE 2048
133 #define RSET_ENETDMA_SIZE 2048
134 +#define RSET_SPI_SIZE 256
135 #define RSET_UART_SIZE 24
136 #define RSET_UDC_SIZE 256
137 #define RSET_OHCI_SIZE 256
138 @@ -214,7 +215,7 @@ enum bcm63xx_regs_set {
139 #define BCM_6358_UART0_BASE (0xfffe0100)
140 #define BCM_6358_UART1_BASE (0xfffe0120)
141 #define BCM_6358_GPIO_BASE (0xfffe0080)
142 -#define BCM_6358_SPI_BASE (0xdeadbeef)
143 +#define BCM_6358_SPI_BASE (0xfffe0800)
144 #define BCM_6358_UDC0_BASE (0xfffe0400)
145 #define BCM_6358_OHCI0_BASE (0xfffe1400)
146 #define BCM_6358_OHCI_PRIV_BASE (0xdeadbeef)
147 @@ -441,6 +442,7 @@ static inline unsigned long bcm63xx_regs
155 @@ -507,6 +509,7 @@ enum bcm63xx_irq {
158 #define BCM_6348_TIMER_IRQ (IRQ_INTERNAL_BASE + 0)
159 +#define BCM_6348_SPI_IRQ (IRQ_INTERNAL_BASE + 1)
160 #define BCM_6348_UART0_IRQ (IRQ_INTERNAL_BASE + 2)
161 #define BCM_6348_DSL_IRQ (IRQ_INTERNAL_BASE + 4)
162 #define BCM_6348_UDC0_IRQ (IRQ_INTERNAL_BASE + 6)
163 @@ -531,6 +534,7 @@ enum bcm63xx_irq {
166 #define BCM_6358_TIMER_IRQ (IRQ_INTERNAL_BASE + 0)
167 +#define BCM_6358_SPI_IRQ (IRQ_INTERNAL_BASE + 1)
168 #define BCM_6358_UART0_IRQ (IRQ_INTERNAL_BASE + 2)
169 #define BCM_6358_UART1_IRQ (IRQ_INTERNAL_BASE + 3)
170 #define BCM_6358_OHCI0_IRQ (IRQ_INTERNAL_BASE + 5)
171 --- a/arch/mips/include/asm/mach-bcm63xx/bcm63xx_regs.h
172 +++ b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_regs.h
173 @@ -805,4 +805,116 @@
174 #define DMIPSPLLCFG_N2_SHIFT 29
175 #define DMIPSPLLCFG_N2_MASK (0x7 << DMIPSPLLCFG_N2_SHIFT)
177 +/*************************************************************************
178 + * _REG relative to RSET_SPI
179 + *************************************************************************/
181 +/* BCM 6338 SPI core */
182 +#define SPI_BCM_6338_SPI_CMD 0x00 /* 16-bits register */
183 +#define SPI_BCM_6338_SPI_INT_STATUS 0x02
184 +#define SPI_BCM_6338_SPI_INT_MASK_ST 0x03
185 +#define SPI_BCM_6338_SPI_INT_MASK 0x04
186 +#define SPI_BCM_6338_SPI_ST 0x05
187 +#define SPI_BCM_6338_SPI_CLK_CFG 0x06
188 +#define SPI_BCM_6338_SPI_FILL_BYTE 0x07
189 +#define SPI_BCM_6338_SPI_MSG_TAIL 0x09
190 +#define SPI_BCM_6338_SPI_RX_TAIL 0x0b
191 +#define SPI_BCM_6338_SPI_MSG_CTL 0x40
192 +#define SPI_BCM_6338_SPI_MSG_DATA 0x41
193 +#define SPI_BCM_6338_SPI_MSG_DATA_SIZE 0x3f
194 +#define SPI_BCM_6338_SPI_RX_DATA 0x80
195 +#define SPI_BCM_6338_SPI_RX_DATA_SIZE 0x3f
197 +/* BCM 6348 SPI core */
198 +#define SPI_BCM_6348_SPI_CMD 0x00 /* 16-bits register */
199 +#define SPI_BCM_6348_SPI_INT_STATUS 0x02
200 +#define SPI_BCM_6348_SPI_INT_MASK_ST 0x03
201 +#define SPI_BCM_6348_SPI_INT_MASK 0x04
202 +#define SPI_BCM_6348_SPI_ST 0x05
203 +#define SPI_BCM_6348_SPI_CLK_CFG 0x06
204 +#define SPI_BCM_6348_SPI_FILL_BYTE 0x07
205 +#define SPI_BCM_6348_SPI_MSG_TAIL 0x09
206 +#define SPI_BCM_6348_SPI_RX_TAIL 0x0b
207 +#define SPI_BCM_6348_SPI_MSG_CTL 0x40
208 +#define SPI_BCM_6348_SPI_MSG_DATA 0x41
209 +#define SPI_BCM_6348_SPI_MSG_DATA_SIZE 0x3f
210 +#define SPI_BCM_6348_SPI_RX_DATA 0x80
211 +#define SPI_BCM_6348_SPI_RX_DATA_SIZE 0x3f
213 +/* BCM 6358 SPI core */
214 +#define SPI_BCM_6358_SPI_MSG_CTL 0x00 /* 16-bits register */
216 +#define SPI_BCM_6358_SPI_MSG_DATA 0x02
217 +#define SPI_BCM_6358_SPI_MSG_DATA_SIZE 0x21e
219 +#define SPI_BCM_6358_SPI_RX_DATA 0x400
220 +#define SPI_BCM_6358_SPI_RX_DATA_SIZE 0x220
222 +#define SPI_BCM_6358_SPI_CMD 0x700 /* 16-bits register */
224 +#define SPI_BCM_6358_SPI_INT_STATUS 0x702
225 +#define SPI_BCM_6358_SPI_INT_MASK_ST 0x703
227 +#define SPI_BCM_6358_SPI_INT_MASK 0x704
229 +#define SPI_BCM_6358_SPI_ST 0x705
231 +#define SPI_BCM_6358_SPI_CLK_CFG 0x706
233 +#define SPI_BCM_6358_SPI_FILL_BYTE 0x707
234 +#define SPI_BCM_6358_SPI_MSG_TAIL 0x709
235 +#define SPI_BCM_6358_SPI_RX_TAIL 0x70B
237 +/* Shared SPI definitions */
239 +/* Message configuration */
240 +#define SPI_FD_RW 0x00
241 +#define SPI_HD_W 0x01
242 +#define SPI_HD_R 0x02
243 +#define SPI_BYTE_CNT_SHIFT 0
244 +#define SPI_MSG_TYPE_SHIFT 14
247 +#define SPI_CMD_NOOP 0x00
248 +#define SPI_CMD_SOFT_RESET 0x01
249 +#define SPI_CMD_HARD_RESET 0x02
250 +#define SPI_CMD_START_IMMEDIATE 0x03
251 +#define SPI_CMD_COMMAND_SHIFT 0
252 +#define SPI_CMD_COMMAND_MASK 0x000f
253 +#define SPI_CMD_DEVICE_ID_SHIFT 4
254 +#define SPI_CMD_PREPEND_BYTE_CNT_SHIFT 8
255 +#define SPI_CMD_ONE_BYTE_SHIFT 11
256 +#define SPI_CMD_ONE_WIRE_SHIFT 12
257 +#define SPI_DEV_ID_0 0
258 +#define SPI_DEV_ID_1 1
259 +#define SPI_DEV_ID_2 2
260 +#define SPI_DEV_ID_3 3
262 +/* Interrupt mask */
263 +#define SPI_INTR_CMD_DONE 0x01
264 +#define SPI_INTR_RX_OVERFLOW 0x02
265 +#define SPI_INTR_TX_UNDERFLOW 0x04
266 +#define SPI_INTR_TX_OVERFLOW 0x08
267 +#define SPI_INTR_RX_UNDERFLOW 0x10
268 +#define SPI_INTR_CLEAR_ALL 0x1f
271 +#define SPI_RX_EMPTY 0x02
272 +#define SPI_CMD_BUSY 0x04
273 +#define SPI_SERIAL_BUSY 0x08
275 +/* Clock configuration */
276 +#define SPI_CLK_20MHZ 0x00
277 +#define SPI_CLK_0_391MHZ 0x01
278 +#define SPI_CLK_0_781MHZ 0x02 /* default */
279 +#define SPI_CLK_1_563MHZ 0x03
280 +#define SPI_CLK_3_125MHZ 0x04
281 +#define SPI_CLK_6_250MHZ 0x05
282 +#define SPI_CLK_12_50MHZ 0x06
283 +#define SPI_CLK_25MHZ 0x07
284 +#define SPI_CLK_MASK 0x07
285 +#define SPI_SSOFFTIME_MASK 0x38
286 +#define SPI_SSOFFTIME_SHIFT 3
287 +#define SPI_BYTE_SWAP 0x80
289 #endif /* BCM63XX_REGS_H_ */
291 +++ b/drivers/spi/bcm63xx_spi.c
294 + * Broadcom BCM63xx SPI controller support
296 + * Copyright (C) 2009 Florian Fainelli <florian@openwrt.org>
297 + * Copyright (C) 2010 Tanguy Bouzeloc <tanguy.bouzeloc@efixo.com>
299 + * This program is free software; you can redistribute it and/or
300 + * modify it under the terms of the GNU General Public License
301 + * as published by the Free Software Foundation; either version 2
302 + * of the License, or (at your option) any later version.
304 + * This program is distributed in the hope that it will be useful,
305 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
306 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
307 + * GNU General Public License for more details.
309 + * You should have received a copy of the GNU General Public License
310 + * along with this program; if not, write to the
311 + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
314 +#include <linux/kernel.h>
315 +#include <linux/init.h>
316 +#include <linux/clk.h>
317 +#include <linux/module.h>
318 +#include <linux/platform_device.h>
319 +#include <linux/delay.h>
320 +#include <linux/interrupt.h>
321 +#include <linux/spi/spi.h>
322 +#include <linux/completion.h>
323 +#include <linux/err.h>
325 +#include <bcm63xx_dev_spi.h>
327 +#define PFX KBUILD_MODNAME
328 +#define DRV_VER "0.1.2"
330 +struct bcm63xx_spi {
333 + struct completion done;
335 + void __iomem *regs;
338 + /* Platform data */
340 + unsigned fifo_size;
343 + const unsigned char *tx_ptr;
344 + unsigned char *rx_ptr;
348 + const u8 __iomem *rx_io;
350 + int remaining_bytes;
353 + struct platform_device *pdev;
356 +static inline u8 bcm_spi_readb(struct bcm63xx_spi *bs,
357 + unsigned int offset)
359 + return bcm_readw(bs->regs + bcm63xx_spireg(offset));
362 +static inline u16 bcm_spi_readw(struct bcm63xx_spi *bs,
363 + unsigned int offset)
365 + return bcm_readw(bs->regs + bcm63xx_spireg(offset));
368 +static inline void bcm_spi_writeb(struct bcm63xx_spi *bs,
369 + u8 value, unsigned int offset)
371 + bcm_writeb(value, bs->regs + bcm63xx_spireg(offset));
374 +static inline void bcm_spi_writew(struct bcm63xx_spi *bs,
375 + u16 value, unsigned int offset)
377 + bcm_writew(value, bs->regs + bcm63xx_spireg(offset));
380 +static int bcm63xx_spi_setup_transfer(struct spi_device *spi,
381 + struct spi_transfer *t)
388 + struct bcm63xx_spi *bs = spi_master_get_devdata(spi->master);
390 + bits_per_word = (t) ? t->bits_per_word : spi->bits_per_word;
391 + hz = (t) ? t->speed_hz : spi->max_speed_hz;
392 + if (bits_per_word != 8) {
393 + dev_err(&spi->dev, "%s, unsupported bits_per_word=%d\n",
394 + __func__, bits_per_word);
398 + if (spi->chip_select > spi->master->num_chipselect) {
399 + dev_err(&spi->dev, "%s, unsupported slave %d\n",
400 + __func__, spi->chip_select);
404 + /* Check clock setting */
405 + div = (bs->speed_hz / hz);
408 + clk_cfg = SPI_CLK_25MHZ;
411 + clk_cfg = SPI_CLK_12_50MHZ;
414 + clk_cfg = SPI_CLK_6_250MHZ;
417 + clk_cfg = SPI_CLK_3_125MHZ;
420 + clk_cfg = SPI_CLK_1_563MHZ;
423 + clk_cfg = SPI_CLK_0_781MHZ;
427 + /* Set to slowest mode for compatibility */
428 + clk_cfg = SPI_CLK_0_391MHZ;
432 + bcm_spi_writeb(bs, clk_cfg, SPI_CLK_CFG);
433 + dev_dbg(&spi->dev, "Setting clock register to %d (hz %d, cmd %02x)\n",
439 +/* the spi->mode bits understood by this driver: */
440 +#define MODEBITS (SPI_CPOL | SPI_CPHA)
442 +static int bcm63xx_spi_setup(struct spi_device *spi)
444 + struct bcm63xx_spi *bs;
447 + bs = spi_master_get_devdata(spi->master);
452 + if (!spi->bits_per_word)
453 + spi->bits_per_word = 8;
455 + if (spi->mode & ~MODEBITS) {
456 + dev_err(&spi->dev, "%s, unsupported mode bits %x\n",
457 + __func__, spi->mode & ~MODEBITS);
461 + ret = bcm63xx_spi_setup_transfer(spi, NULL);
463 + dev_err(&spi->dev, "setup: unsupported mode bits %x\n",
464 + spi->mode & ~MODEBITS);
468 + dev_dbg(&spi->dev, "%s, mode %d, %u bits/w, %u nsec/bit\n",
469 + __func__, spi->mode & MODEBITS, spi->bits_per_word, 0);
474 +/* Fill the TX FIFO with as many bytes as possible */
475 +static void bcm63xx_spi_fill_tx_fifo(struct bcm63xx_spi *bs)
479 + /* Fill the Tx FIFO with as many bytes as possible */
480 + size = bs->remaining_bytes < bs->fifo_size ? bs->remaining_bytes :
482 + memcpy_toio(bs->tx_io, bs->tx_ptr, size);
483 + bs->remaining_bytes -= size;
486 +static int bcm63xx_txrx_bufs(struct spi_device *spi, struct spi_transfer *t)
488 + struct bcm63xx_spi *bs = spi_master_get_devdata(spi->master);
492 + dev_dbg(&spi->dev, "txrx: tx %p, rx %p, len %d\n",
493 + t->tx_buf, t->rx_buf, t->len);
495 + /* Transmitter is inhibited */
496 + bs->tx_ptr = t->tx_buf;
497 + bs->rx_ptr = t->rx_buf;
498 + init_completion(&bs->done);
501 + bs->remaining_bytes = t->len;
502 + bcm63xx_spi_fill_tx_fifo(bs);
505 + /* Enable the command done interrupt which
506 + * we use to determine completion of a command */
507 + bcm_spi_writeb(bs, SPI_INTR_CMD_DONE, SPI_INT_MASK);
509 + /* Fill in the Message control register */
510 + msg_ctl = (t->len << SPI_BYTE_CNT_SHIFT);
512 + if (t->rx_buf && t->tx_buf)
513 + msg_ctl |= (SPI_FD_RW << SPI_MSG_TYPE_SHIFT);
514 + else if (t->rx_buf)
515 + msg_ctl |= (SPI_HD_R << SPI_MSG_TYPE_SHIFT);
516 + else if (t->tx_buf)
517 + msg_ctl |= (SPI_HD_W << SPI_MSG_TYPE_SHIFT);
519 + bcm_spi_writew(bs, msg_ctl, SPI_MSG_CTL);
521 + /* Issue the transfer */
522 + cmd = SPI_CMD_START_IMMEDIATE;
523 + cmd |= (0 << SPI_CMD_PREPEND_BYTE_CNT_SHIFT);
524 + cmd |= (spi->chip_select << SPI_CMD_DEVICE_ID_SHIFT);
525 + bcm_spi_writew(bs, cmd, SPI_CMD);
526 + wait_for_completion(&bs->done);
528 + /* Disable the CMD_DONE interrupt */
529 + bcm_spi_writeb(bs, 0, SPI_INT_MASK);
531 + return t->len - bs->remaining_bytes;
534 +static int bcm63xx_transfer(struct spi_device *spi, struct spi_message *m)
536 + struct bcm63xx_spi *bs = spi_master_get_devdata(spi->master);
537 + struct spi_transfer *t;
540 + if (unlikely(list_empty(&m->transfers)))
546 + list_for_each_entry(t, &m->transfers, transfer_list) {
547 + ret += bcm63xx_txrx_bufs(spi, t);
550 + m->complete(m->context);
555 +/* This driver supports single master mode only. Hence
556 + * CMD_DONE is the only interrupt we care about
558 +static irqreturn_t bcm63xx_spi_interrupt(int irq, void *dev_id)
560 + struct spi_master *master = (struct spi_master *)dev_id;
561 + struct bcm63xx_spi *bs = spi_master_get_devdata(master);
565 + /* Read interupts and clear them immediately */
566 + intr = bcm_spi_readb(bs, SPI_INT_STATUS);
567 + bcm_spi_writeb(bs, SPI_INTR_CLEAR_ALL, SPI_INT_STATUS);
568 + bcm_spi_writeb(bs, 0, SPI_INT_MASK);
570 + /* A tansfer completed */
571 + if (intr & SPI_INTR_CMD_DONE) {
574 + rx_tail = bcm_spi_readb(bs, SPI_RX_TAIL);
576 + /* Read out all the data */
578 + memcpy_fromio(bs->rx_ptr, bs->rx_io, rx_tail);
580 + /* See if there is more data to send */
581 + if (bs->remaining_bytes > 0) {
582 + bcm63xx_spi_fill_tx_fifo(bs);
584 + /* Start the transfer */
585 + bcm_spi_writew(bs, SPI_HD_W << SPI_MSG_TYPE_SHIFT,
587 + cmd = bcm_spi_readw(bs, SPI_CMD);
588 + cmd |= SPI_CMD_START_IMMEDIATE;
589 + cmd |= (0 << SPI_CMD_PREPEND_BYTE_CNT_SHIFT);
590 + bcm_spi_writeb(bs, SPI_INTR_CMD_DONE, SPI_INT_MASK);
591 + bcm_spi_writew(bs, cmd, SPI_CMD);
593 + complete(&bs->done);
597 + return IRQ_HANDLED;
601 +static int __init bcm63xx_spi_probe(struct platform_device *pdev)
603 + struct resource *r;
604 + struct device *dev = &pdev->dev;
605 + struct bcm63xx_spi_pdata *pdata = pdev->dev.platform_data;
607 + struct spi_master *master;
609 + struct bcm63xx_spi *bs;
612 + r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
614 + dev_err(dev, "no iomem\n");
619 + irq = platform_get_irq(pdev, 0);
621 + dev_err(dev, "no irq\n");
626 + clk = clk_get(dev, "spi");
628 + dev_err(dev, "no clock for device\n");
633 + master = spi_alloc_master(dev, sizeof(*bs));
635 + dev_err(dev, "out of memory\n");
640 + bs = spi_master_get_devdata(master);
641 + init_completion(&bs->done);
643 + platform_set_drvdata(pdev, master);
646 + if (!request_mem_region(r->start, r->end - r->start, PFX)) {
647 + dev_err(dev, "iomem request failed\n");
649 + goto out_put_master;
652 + bs->regs = ioremap_nocache(r->start, r->end - r->start);
654 + dev_err(dev, "unable to ioremap regs\n");
656 + goto out_put_master;
660 + bs->fifo_size = pdata->fifo_size;
662 + ret = request_irq(irq, bcm63xx_spi_interrupt, 0, pdev->name, master);
664 + dev_err(dev, "unable to request irq\n");
668 + master->bus_num = pdata->bus_num;
669 + master->num_chipselect = pdata->num_chipselect;
670 + master->setup = bcm63xx_spi_setup;
671 + master->transfer = bcm63xx_transfer;
672 + bs->speed_hz = pdata->speed_hz;
674 + bs->tx_io = (u8*)(bs->regs + bcm63xx_spireg(SPI_MSG_DATA));
675 + bs->rx_io = (const u8*)(bs->regs + bcm63xx_spireg(SPI_RX_DATA));
676 + spin_lock_init(&bs->lock);
678 + /* Initialize hardware */
679 + clk_enable(bs->clk);
680 + bcm_spi_writeb(bs, SPI_INTR_CLEAR_ALL, SPI_INT_STATUS);
682 + /* register and we are done */
683 + ret = spi_register_master(master);
685 + dev_err(dev, "spi register failed\n");
689 + dev_info(dev, "at 0x%08x (irq %d, FIFOs size %d) v%s\n",
690 + r->start, irq, bs->fifo_size, DRV_VER);
696 + free_irq(irq, master);
700 + spi_master_put(master);
707 +static int __exit bcm63xx_spi_remove(struct platform_device *pdev)
709 + struct spi_master *master = platform_get_drvdata(pdev);
710 + struct bcm63xx_spi *bs = spi_master_get_devdata(master);
711 + struct resource *r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
713 + /* reset spi block */
714 + bcm_spi_writeb(bs, 0, SPI_INT_MASK);
715 + spin_lock(&bs->lock);
719 + clk_disable(bs->clk);
722 + spin_unlock(&bs->lock);
724 + free_irq(bs->irq, master);
726 + release_mem_region(r->start, r->end - r->start);
727 + platform_set_drvdata(pdev, 0);
728 + spi_unregister_master(master);
734 +static int bcm63xx_spi_suspend(struct platform_device *pdev, pm_message_t mesg)
736 + struct spi_master *master = platform_get_drvdata(pdev);
737 + struct bcm63xx_spi *bs = spi_master_get_devdata(master);
739 + clk_disable(bs->clk);
744 +static int bcm63xx_spi_resume(struct platform_device *pdev)
746 + struct spi_master *master = platform_get_drvdata(pdev);
747 + struct bcm63xx_spi *bs = spi_master_get_devdata(master);
749 + clk_enable(bs->clk);
754 +#define bcm63xx_spi_suspend NULL
755 +#define bcm63xx_spi_resume NULL
758 +static struct platform_driver bcm63xx_spi_driver = {
760 + .name = "bcm63xx-spi",
761 + .owner = THIS_MODULE,
763 + .probe = bcm63xx_spi_probe,
764 + .remove = __exit_p(bcm63xx_spi_remove),
765 + .suspend = bcm63xx_spi_suspend,
766 + .resume = bcm63xx_spi_resume,
770 +static int __init bcm63xx_spi_init(void)
772 + return platform_driver_register(&bcm63xx_spi_driver);
775 +static void __exit bcm63xx_spi_exit(void)
777 + platform_driver_unregister(&bcm63xx_spi_driver);
780 +module_init(bcm63xx_spi_init);
781 +module_exit(bcm63xx_spi_exit);
783 +MODULE_ALIAS("platform:bcm63xx_spi");
784 +MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>");
785 +MODULE_AUTHOR("Tanguy Bouzeloc <tanguy.bouzeloc@efixo.com>");
786 +MODULE_DESCRIPTION("Broadcom BCM63xx SPI Controller driver");
787 +MODULE_LICENSE("GPL");
788 +MODULE_VERSION(DRV_VER);
789 --- a/drivers/spi/Kconfig
790 +++ b/drivers/spi/Kconfig
791 @@ -74,6 +74,12 @@ config SPI_ATMEL
792 This selects a driver for the Atmel SPI Controller, present on
793 many AT32 (AVR32) and AT91 (ARM) chips.
796 + tristate "Broadcom BCM63xx SPI controller"
799 + This is the SPI controller master driver for Broadcom BCM63xx SoC.
802 tristate "SPI controller driver for ADI Blackfin5xx"
804 --- a/drivers/spi/Makefile
805 +++ b/drivers/spi/Makefile
806 @@ -55,6 +55,7 @@ obj-$(CONFIG_SPI_SH_SCI) += spi_sh_sci.
807 obj-$(CONFIG_SPI_SH_MSIOF) += spi_sh_msiof.o
808 obj-$(CONFIG_SPI_STMP3XXX) += spi_stmp.o
809 obj-$(CONFIG_SPI_NUC900) += spi_nuc900.o
810 +obj-$(CONFIG_SPI_BCM63XX) += bcm63xx_spi.o
812 # special build for s3c24xx spi driver with fiq support
813 spi_s3c24xx_hw-y := spi_s3c24xx.o
815 +++ b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_dev_spi.h
817 +#ifndef BCM63XX_DEV_SPI_H
818 +#define BCM63XX_DEV_SPI_H
820 +#include <linux/types.h>
821 +#include <bcm63xx_io.h>
822 +#include <bcm63xx_regs.h>
824 +int __init bcm63xx_spi_register(void);
826 +struct bcm63xx_spi_pdata {
827 + unsigned int fifo_size;
829 + int num_chipselect;
833 +enum bcm63xx_regs_spi {
848 +#define __GEN_SPI_RSET_BASE(__cpu, __rset) \
849 + case SPI_## __rset: \
850 + return SPI_BCM_## __cpu ##_SPI_## __rset;
852 +#define __GEN_SPI_RSET(__cpu) \
854 + __GEN_SPI_RSET_BASE(__cpu, CMD) \
855 + __GEN_SPI_RSET_BASE(__cpu, INT_STATUS) \
856 + __GEN_SPI_RSET_BASE(__cpu, INT_MASK_ST) \
857 + __GEN_SPI_RSET_BASE(__cpu, INT_MASK) \
858 + __GEN_SPI_RSET_BASE(__cpu, ST) \
859 + __GEN_SPI_RSET_BASE(__cpu, CLK_CFG) \
860 + __GEN_SPI_RSET_BASE(__cpu, FILL_BYTE) \
861 + __GEN_SPI_RSET_BASE(__cpu, MSG_TAIL) \
862 + __GEN_SPI_RSET_BASE(__cpu, RX_TAIL) \
863 + __GEN_SPI_RSET_BASE(__cpu, MSG_CTL) \
864 + __GEN_SPI_RSET_BASE(__cpu, MSG_DATA) \
865 + __GEN_SPI_RSET_BASE(__cpu, RX_DATA) \
868 +#define __GEN_SPI_REGS_TABLE(__cpu) \
869 + [SPI_CMD] = SPI_BCM_## __cpu ##_SPI_CMD, \
870 + [SPI_INT_STATUS] = SPI_BCM_## __cpu ##_SPI_INT_STATUS, \
871 + [SPI_INT_MASK_ST] = SPI_BCM_## __cpu ##_SPI_INT_MASK_ST, \
872 + [SPI_INT_MASK] = SPI_BCM_## __cpu ##_SPI_INT_MASK, \
873 + [SPI_ST] = SPI_BCM_## __cpu ##_SPI_ST, \
874 + [SPI_CLK_CFG] = SPI_BCM_## __cpu ##_SPI_CLK_CFG, \
875 + [SPI_FILL_BYTE] = SPI_BCM_## __cpu ##_SPI_FILL_BYTE, \
876 + [SPI_MSG_TAIL] = SPI_BCM_## __cpu ##_SPI_MSG_TAIL, \
877 + [SPI_RX_TAIL] = SPI_BCM_## __cpu ##_SPI_RX_TAIL, \
878 + [SPI_MSG_CTL] = SPI_BCM_## __cpu ##_SPI_MSG_CTL, \
879 + [SPI_MSG_DATA] = SPI_BCM_## __cpu ##_SPI_MSG_DATA, \
880 + [SPI_RX_DATA] = SPI_BCM_## __cpu ##_SPI_RX_DATA,
882 +static inline unsigned long bcm63xx_spireg(enum bcm63xx_regs_spi reg)
884 +#ifdef BCMCPU_RUNTIME_DETECT
885 + extern const unsigned long *bcm63xx_regs_spi;
886 + return bcm63xx_regs_spi[reg];
888 +#ifdef CONFIG_BCM63XX_CPU_6338
889 + __GEN_SPI_RSET(6338)
891 +#ifdef CONFIG_BCM63XX_CPU_6348
892 + __GEN_SPI_RSET(6348)
894 +#ifdef CONFIG_BCM63XX_CPU_6358
895 + __GEN_SPI_RSET(6358)
901 +#endif /* BCM63XX_DEV_SPI_H */
902 --- a/arch/mips/bcm63xx/Makefile
903 +++ b/arch/mips/bcm63xx/Makefile
905 obj-y += clk.o cpu.o cs.o gpio.o irq.o prom.o setup.o timer.o \
906 dev-dsp.o dev-enet.o dev-pcmcia.o dev-uart.o dev-wdt.o \
907 - dev-usb-ohci.o dev-usb-ehci.o dev-usb-udc.o
908 + dev-usb-ohci.o dev-usb-ehci.o dev-usb-udc.o dev-spi.o
909 obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
912 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c
913 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c
915 #include <bcm63xx_dev_usb_ohci.h>
916 #include <bcm63xx_dev_usb_ehci.h>
917 #include <bcm63xx_dev_usb_udc.h>
918 +#include <bcm63xx_dev_spi.h>
919 #include <board_bcm963xx.h>
921 #define PFX "board_bcm963xx: "
922 @@ -921,6 +922,8 @@ int __init board_register_devices(void)
924 spi_register_board_info(board.spis, board.num_spis);
926 + bcm63xx_spi_register();
928 /* read base address of boot chip select (0) */
929 val = bcm_mpi_readl(MPI_CSBASE_REG(0));
930 val &= MPI_CSBASE_BASE_MASK;