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,8 +215,8 @@ 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_UDC0_BASE (0xfffe0800)
144 +#define BCM_6358_SPI_BASE (0xfffe0800)
145 +#define BCM_6358_UDC0_BASE (0xdeadbeef)
146 #define BCM_6358_OHCI0_BASE (0xfffe1400)
147 #define BCM_6358_OHCI_PRIV_BASE (0xdeadbeef)
148 #define BCM_6358_USBH_PRIV_BASE (0xfffe1500)
149 @@ -441,6 +442,7 @@ static inline unsigned long bcm63xx_regs
157 @@ -506,6 +508,7 @@ enum bcm63xx_irq {
160 #define BCM_6348_TIMER_IRQ (IRQ_INTERNAL_BASE + 0)
161 +#define BCM_6348_SPI_IRQ (IRQ_INTERNAL_BASE + 1)
162 #define BCM_6348_UART0_IRQ (IRQ_INTERNAL_BASE + 2)
163 #define BCM_6348_DSL_IRQ (IRQ_INTERNAL_BASE + 4)
164 #define BCM_6348_ENET1_IRQ (IRQ_INTERNAL_BASE + 7)
165 @@ -523,6 +526,7 @@ enum bcm63xx_irq {
168 #define BCM_6358_TIMER_IRQ (IRQ_INTERNAL_BASE + 0)
169 +#define BCM_6358_SPI_IRQ (IRQ_INTERNAL_BASE + 1)
170 #define BCM_6358_UART0_IRQ (IRQ_INTERNAL_BASE + 2)
171 #define BCM_6358_UART1_IRQ (IRQ_INTERNAL_BASE + 3)
172 #define BCM_6358_OHCI0_IRQ (IRQ_INTERNAL_BASE + 5)
173 --- a/arch/mips/include/asm/mach-bcm63xx/bcm63xx_regs.h
174 +++ b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_regs.h
175 @@ -805,4 +805,116 @@
176 #define DMIPSPLLCFG_N2_SHIFT 29
177 #define DMIPSPLLCFG_N2_MASK (0x7 << DMIPSPLLCFG_N2_SHIFT)
179 +/*************************************************************************
180 + * _REG relative to RSET_SPI
181 + *************************************************************************/
183 +/* BCM 6338 SPI core */
184 +#define SPI_BCM_6338_SPI_CMD 0x00 /* 16-bits register */
185 +#define SPI_BCM_6338_SPI_INT_STATUS 0x02
186 +#define SPI_BCM_6338_SPI_INT_MASK_ST 0x03
187 +#define SPI_BCM_6338_SPI_INT_MASK 0x04
188 +#define SPI_BCM_6338_SPI_ST 0x05
189 +#define SPI_BCM_6338_SPI_CLK_CFG 0x06
190 +#define SPI_BCM_6338_SPI_FILL_BYTE 0x07
191 +#define SPI_BCM_6338_SPI_MSG_TAIL 0x09
192 +#define SPI_BCM_6338_SPI_RX_TAIL 0x0b
193 +#define SPI_BCM_6338_SPI_MSG_CTL 0x40
194 +#define SPI_BCM_6338_SPI_MSG_DATA 0x41
195 +#define SPI_BCM_6338_SPI_MSG_DATA_SIZE 0x3f
196 +#define SPI_BCM_6338_SPI_RX_DATA 0x80
197 +#define SPI_BCM_6338_SPI_RX_DATA_SIZE 0x3f
199 +/* BCM 6348 SPI core */
200 +#define SPI_BCM_6348_SPI_CMD 0x00 /* 16-bits register */
201 +#define SPI_BCM_6348_SPI_INT_STATUS 0x02
202 +#define SPI_BCM_6348_SPI_INT_MASK_ST 0x03
203 +#define SPI_BCM_6348_SPI_INT_MASK 0x04
204 +#define SPI_BCM_6348_SPI_ST 0x05
205 +#define SPI_BCM_6348_SPI_CLK_CFG 0x06
206 +#define SPI_BCM_6348_SPI_FILL_BYTE 0x07
207 +#define SPI_BCM_6348_SPI_MSG_TAIL 0x09
208 +#define SPI_BCM_6348_SPI_RX_TAIL 0x0b
209 +#define SPI_BCM_6348_SPI_MSG_CTL 0x40
210 +#define SPI_BCM_6348_SPI_MSG_DATA 0x41
211 +#define SPI_BCM_6348_SPI_MSG_DATA_SIZE 0x3f
212 +#define SPI_BCM_6348_SPI_RX_DATA 0x80
213 +#define SPI_BCM_6348_SPI_RX_DATA_SIZE 0x3f
215 +/* BCM 6358 SPI core */
216 +#define SPI_BCM_6358_SPI_MSG_CTL 0x00 /* 16-bits register */
218 +#define SPI_BCM_6358_SPI_MSG_DATA 0x02
219 +#define SPI_BCM_6358_SPI_MSG_DATA_SIZE 0x21e
221 +#define SPI_BCM_6358_SPI_RX_DATA 0x400
222 +#define SPI_BCM_6358_SPI_RX_DATA_SIZE 0x220
224 +#define SPI_BCM_6358_SPI_CMD 0x700 /* 16-bits register */
226 +#define SPI_BCM_6358_SPI_INT_STATUS 0x702
227 +#define SPI_BCM_6358_SPI_INT_MASK_ST 0x703
229 +#define SPI_BCM_6358_SPI_INT_MASK 0x704
231 +#define SPI_BCM_6358_SPI_ST 0x705
233 +#define SPI_BCM_6358_SPI_CLK_CFG 0x706
235 +#define SPI_BCM_6358_SPI_FILL_BYTE 0x707
236 +#define SPI_BCM_6358_SPI_MSG_TAIL 0x709
237 +#define SPI_BCM_6358_SPI_RX_TAIL 0x70B
239 +/* Shared SPI definitions */
241 +/* Message configuration */
242 +#define SPI_FD_RW 0x00
243 +#define SPI_HD_W 0x01
244 +#define SPI_HD_R 0x02
245 +#define SPI_BYTE_CNT_SHIFT 0
246 +#define SPI_MSG_TYPE_SHIFT 14
249 +#define SPI_CMD_NOOP 0x00
250 +#define SPI_CMD_SOFT_RESET 0x01
251 +#define SPI_CMD_HARD_RESET 0x02
252 +#define SPI_CMD_START_IMMEDIATE 0x03
253 +#define SPI_CMD_COMMAND_SHIFT 0
254 +#define SPI_CMD_COMMAND_MASK 0x000f
255 +#define SPI_CMD_DEVICE_ID_SHIFT 4
256 +#define SPI_CMD_PREPEND_BYTE_CNT_SHIFT 8
257 +#define SPI_CMD_ONE_BYTE_SHIFT 11
258 +#define SPI_CMD_ONE_WIRE_SHIFT 12
259 +#define SPI_DEV_ID_0 0
260 +#define SPI_DEV_ID_1 1
261 +#define SPI_DEV_ID_2 2
262 +#define SPI_DEV_ID_3 3
264 +/* Interrupt mask */
265 +#define SPI_INTR_CMD_DONE 0x01
266 +#define SPI_INTR_RX_OVERFLOW 0x02
267 +#define SPI_INTR_TX_UNDERFLOW 0x04
268 +#define SPI_INTR_TX_OVERFLOW 0x08
269 +#define SPI_INTR_RX_UNDERFLOW 0x10
270 +#define SPI_INTR_CLEAR_ALL 0x1f
273 +#define SPI_RX_EMPTY 0x02
274 +#define SPI_CMD_BUSY 0x04
275 +#define SPI_SERIAL_BUSY 0x08
277 +/* Clock configuration */
278 +#define SPI_CLK_20MHZ 0x00
279 +#define SPI_CLK_0_391MHZ 0x01
280 +#define SPI_CLK_0_781MHZ 0x02 /* default */
281 +#define SPI_CLK_1_563MHZ 0x03
282 +#define SPI_CLK_3_125MHZ 0x04
283 +#define SPI_CLK_6_250MHZ 0x05
284 +#define SPI_CLK_12_50MHZ 0x06
285 +#define SPI_CLK_25MHZ 0x07
286 +#define SPI_CLK_MASK 0x07
287 +#define SPI_SSOFFTIME_MASK 0x38
288 +#define SPI_SSOFFTIME_SHIFT 3
289 +#define SPI_BYTE_SWAP 0x80
291 #endif /* BCM63XX_REGS_H_ */
293 +++ b/drivers/spi/bcm63xx_spi.c
296 + * Broadcom BCM63xx SPI controller support
298 + * Copyright (C) 2009 Florian Fainelli <florian@openwrt.org>
299 + * Copyright (C) 2010 Tanguy Bouzeloc <tanguy.bouzeloc@efixo.com>
301 + * This program is free software; you can redistribute it and/or
302 + * modify it under the terms of the GNU General Public License
303 + * as published by the Free Software Foundation; either version 2
304 + * of the License, or (at your option) any later version.
306 + * This program is distributed in the hope that it will be useful,
307 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
308 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
309 + * GNU General Public License for more details.
311 + * You should have received a copy of the GNU General Public License
312 + * along with this program; if not, write to the
313 + * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
316 +#include <linux/kernel.h>
317 +#include <linux/init.h>
318 +#include <linux/clk.h>
319 +#include <linux/module.h>
320 +#include <linux/platform_device.h>
321 +#include <linux/delay.h>
322 +#include <linux/interrupt.h>
323 +#include <linux/spi/spi.h>
324 +#include <linux/completion.h>
325 +#include <linux/err.h>
327 +#include <bcm63xx_dev_spi.h>
329 +#define PFX KBUILD_MODNAME
330 +#define DRV_VER "0.1.2"
332 +struct bcm63xx_spi {
335 + struct completion done;
337 + void __iomem *regs;
340 + /* Platform data */
342 + unsigned fifo_size;
345 + const unsigned char *tx_ptr;
346 + unsigned char *rx_ptr;
350 + const u8 __iomem *rx_io;
352 + int remaining_bytes;
355 + struct platform_device *pdev;
358 +static inline u8 bcm_spi_readb(struct bcm63xx_spi *bs,
359 + unsigned int offset)
361 + return bcm_readw(bs->regs + bcm63xx_spireg(offset));
364 +static inline u16 bcm_spi_readw(struct bcm63xx_spi *bs,
365 + unsigned int offset)
367 + return bcm_readw(bs->regs + bcm63xx_spireg(offset));
370 +static inline void bcm_spi_writeb(struct bcm63xx_spi *bs,
371 + u8 value, unsigned int offset)
373 + bcm_writeb(value, bs->regs + bcm63xx_spireg(offset));
376 +static inline void bcm_spi_writew(struct bcm63xx_spi *bs,
377 + u16 value, unsigned int offset)
379 + bcm_writew(value, bs->regs + bcm63xx_spireg(offset));
382 +static int bcm63xx_spi_setup_transfer(struct spi_device *spi,
383 + struct spi_transfer *t)
390 + struct bcm63xx_spi *bs = spi_master_get_devdata(spi->master);
392 + bits_per_word = (t) ? t->bits_per_word : spi->bits_per_word;
393 + hz = (t) ? t->speed_hz : spi->max_speed_hz;
394 + if (bits_per_word != 8) {
395 + dev_err(&spi->dev, "%s, unsupported bits_per_word=%d\n",
396 + __func__, bits_per_word);
400 + if (spi->chip_select > spi->master->num_chipselect) {
401 + dev_err(&spi->dev, "%s, unsupported slave %d\n",
402 + __func__, spi->chip_select);
406 + /* Check clock setting */
407 + div = (bs->speed_hz / hz);
410 + clk_cfg = SPI_CLK_25MHZ;
413 + clk_cfg = SPI_CLK_12_50MHZ;
416 + clk_cfg = SPI_CLK_6_250MHZ;
419 + clk_cfg = SPI_CLK_3_125MHZ;
422 + clk_cfg = SPI_CLK_1_563MHZ;
425 + clk_cfg = SPI_CLK_0_781MHZ;
429 + /* Set to slowest mode for compatibility */
430 + clk_cfg = SPI_CLK_0_391MHZ;
434 + bcm_spi_writeb(bs, clk_cfg, SPI_CLK_CFG);
435 + dev_dbg(&spi->dev, "Setting clock register to %d (hz %d, cmd %02x)\n",
441 +/* the spi->mode bits understood by this driver: */
442 +#define MODEBITS (SPI_CPOL | SPI_CPHA)
444 +static int bcm63xx_spi_setup(struct spi_device *spi)
446 + struct bcm63xx_spi *bs;
449 + bs = spi_master_get_devdata(spi->master);
454 + if (!spi->bits_per_word)
455 + spi->bits_per_word = 8;
457 + if (spi->mode & ~MODEBITS) {
458 + dev_err(&spi->dev, "%s, unsupported mode bits %x\n",
459 + __func__, spi->mode & ~MODEBITS);
463 + ret = bcm63xx_spi_setup_transfer(spi, NULL);
465 + dev_err(&spi->dev, "setup: unsupported mode bits %x\n",
466 + spi->mode & ~MODEBITS);
470 + dev_dbg(&spi->dev, "%s, mode %d, %u bits/w, %u nsec/bit\n",
471 + __func__, spi->mode & MODEBITS, spi->bits_per_word, 0);
476 +/* Fill the TX FIFO with as many bytes as possible */
477 +static void bcm63xx_spi_fill_tx_fifo(struct bcm63xx_spi *bs)
481 + /* Fill the Tx FIFO with as many bytes as possible */
482 + size = bs->remaining_bytes < bs->fifo_size ? bs->remaining_bytes :
484 + memcpy_toio(bs->tx_io, bs->tx_ptr, size);
485 + bs->remaining_bytes -= size;
488 +static int bcm63xx_txrx_bufs(struct spi_device *spi, struct spi_transfer *t)
490 + struct bcm63xx_spi *bs = spi_master_get_devdata(spi->master);
494 + dev_dbg(&spi->dev, "txrx: tx %p, rx %p, len %d\n",
495 + t->tx_buf, t->rx_buf, t->len);
497 + /* Transmitter is inhibited */
498 + bs->tx_ptr = t->tx_buf;
499 + bs->rx_ptr = t->rx_buf;
500 + init_completion(&bs->done);
503 + bs->remaining_bytes = t->len;
504 + bcm63xx_spi_fill_tx_fifo(bs);
507 + /* Enable the command done interrupt which
508 + * we use to determine completion of a command */
509 + bcm_spi_writeb(bs, SPI_INTR_CMD_DONE, SPI_INT_MASK);
511 + /* Fill in the Message control register */
512 + msg_ctl = (t->len << SPI_BYTE_CNT_SHIFT);
514 + if (t->rx_buf && t->tx_buf)
515 + msg_ctl |= (SPI_FD_RW << SPI_MSG_TYPE_SHIFT);
516 + else if (t->rx_buf)
517 + msg_ctl |= (SPI_HD_R << SPI_MSG_TYPE_SHIFT);
518 + else if (t->tx_buf)
519 + msg_ctl |= (SPI_HD_W << SPI_MSG_TYPE_SHIFT);
521 + bcm_spi_writew(bs, msg_ctl, SPI_MSG_CTL);
523 + /* Issue the transfer */
524 + cmd = SPI_CMD_START_IMMEDIATE;
525 + cmd |= (0 << SPI_CMD_PREPEND_BYTE_CNT_SHIFT);
526 + cmd |= (spi->chip_select << SPI_CMD_DEVICE_ID_SHIFT);
527 + bcm_spi_writew(bs, cmd, SPI_CMD);
528 + wait_for_completion(&bs->done);
530 + /* Disable the CMD_DONE interrupt */
531 + bcm_spi_writeb(bs, 0, SPI_INT_MASK);
533 + return t->len - bs->remaining_bytes;
536 +static int bcm63xx_transfer(struct spi_device *spi, struct spi_message *m)
538 + struct bcm63xx_spi *bs = spi_master_get_devdata(spi->master);
539 + struct spi_transfer *t;
542 + if (unlikely(list_empty(&m->transfers)))
548 + list_for_each_entry(t, &m->transfers, transfer_list) {
549 + ret += bcm63xx_txrx_bufs(spi, t);
552 + m->complete(m->context);
557 +/* This driver supports single master mode only. Hence
558 + * CMD_DONE is the only interrupt we care about
560 +static irqreturn_t bcm63xx_spi_interrupt(int irq, void *dev_id)
562 + struct spi_master *master = (struct spi_master *)dev_id;
563 + struct bcm63xx_spi *bs = spi_master_get_devdata(master);
567 + /* Read interupts and clear them immediately */
568 + intr = bcm_spi_readb(bs, SPI_INT_STATUS);
569 + bcm_spi_writeb(bs, SPI_INTR_CLEAR_ALL, SPI_INT_STATUS);
570 + bcm_spi_writeb(bs, 0, SPI_INT_MASK);
572 + /* A tansfer completed */
573 + if (intr & SPI_INTR_CMD_DONE) {
576 + rx_tail = bcm_spi_readb(bs, SPI_RX_TAIL);
578 + /* Read out all the data */
580 + memcpy_fromio(bs->rx_ptr, bs->rx_io, rx_tail);
582 + /* See if there is more data to send */
583 + if (bs->remaining_bytes > 0) {
584 + bcm63xx_spi_fill_tx_fifo(bs);
586 + /* Start the transfer */
587 + bcm_spi_writew(bs, SPI_HD_W << SPI_MSG_TYPE_SHIFT,
589 + cmd = bcm_spi_readw(bs, SPI_CMD);
590 + cmd |= SPI_CMD_START_IMMEDIATE;
591 + cmd |= (0 << SPI_CMD_PREPEND_BYTE_CNT_SHIFT);
592 + bcm_spi_writeb(bs, SPI_INTR_CMD_DONE, SPI_INT_MASK);
593 + bcm_spi_writew(bs, cmd, SPI_CMD);
595 + complete(&bs->done);
599 + return IRQ_HANDLED;
603 +static int __init bcm63xx_spi_probe(struct platform_device *pdev)
605 + struct resource *r;
606 + struct device *dev = &pdev->dev;
607 + struct bcm63xx_spi_pdata *pdata = pdev->dev.platform_data;
609 + struct spi_master *master;
611 + struct bcm63xx_spi *bs;
614 + r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
616 + dev_err(dev, "no iomem\n");
621 + irq = platform_get_irq(pdev, 0);
623 + dev_err(dev, "no irq\n");
628 + clk = clk_get(dev, "spi");
630 + dev_err(dev, "no clock for device\n");
635 + master = spi_alloc_master(dev, sizeof(*bs));
637 + dev_err(dev, "out of memory\n");
642 + bs = spi_master_get_devdata(master);
643 + init_completion(&bs->done);
645 + platform_set_drvdata(pdev, master);
648 + if (!request_mem_region(r->start, r->end - r->start, PFX)) {
649 + dev_err(dev, "iomem request failed\n");
651 + goto out_put_master;
654 + bs->regs = ioremap_nocache(r->start, r->end - r->start);
656 + dev_err(dev, "unable to ioremap regs\n");
658 + goto out_put_master;
662 + bs->fifo_size = pdata->fifo_size;
664 + ret = request_irq(irq, bcm63xx_spi_interrupt, 0, pdev->name, master);
666 + dev_err(dev, "unable to request irq\n");
670 + master->bus_num = pdata->bus_num;
671 + master->num_chipselect = pdata->num_chipselect;
672 + master->setup = bcm63xx_spi_setup;
673 + master->transfer = bcm63xx_transfer;
674 + bs->speed_hz = pdata->speed_hz;
676 + bs->tx_io = (u8*)(bs->regs + bcm63xx_spireg(SPI_MSG_DATA));
677 + bs->rx_io = (const u8*)(bs->regs + bcm63xx_spireg(SPI_RX_DATA));
678 + spin_lock_init(&bs->lock);
680 + /* Initialize hardware */
681 + clk_enable(bs->clk);
682 + bcm_spi_writeb(bs, SPI_INTR_CLEAR_ALL, SPI_INT_STATUS);
684 + /* register and we are done */
685 + ret = spi_register_master(master);
687 + dev_err(dev, "spi register failed\n");
691 + dev_info(dev, "at 0x%08x (irq %d, FIFOs size %d) v%s\n",
692 + r->start, irq, bs->fifo_size, DRV_VER);
698 + free_irq(irq, master);
702 + spi_master_put(master);
709 +static int __exit bcm63xx_spi_remove(struct platform_device *pdev)
711 + struct spi_master *master = platform_get_drvdata(pdev);
712 + struct bcm63xx_spi *bs = spi_master_get_devdata(master);
713 + struct resource *r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
715 + /* reset spi block */
716 + bcm_spi_writeb(bs, 0, SPI_INT_MASK);
717 + spin_lock(&bs->lock);
721 + clk_disable(bs->clk);
724 + spin_unlock(&bs->lock);
726 + free_irq(bs->irq, master);
728 + release_mem_region(r->start, r->end - r->start);
729 + platform_set_drvdata(pdev, 0);
730 + spi_unregister_master(master);
736 +static int bcm63xx_spi_suspend(struct platform_device *pdev, pm_message_t mesg)
738 + struct spi_master *master = platform_get_drvdata(pdev);
739 + struct bcm63xx_spi *bs = spi_master_get_devdata(master);
741 + clk_disable(bs->clk);
746 +static int bcm63xx_spi_resume(struct platform_device *pdev)
748 + struct spi_master *master = platform_get_drvdata(pdev);
749 + struct bcm63xx_spi *bs = spi_master_get_devdata(master);
751 + clk_enable(bs->clk);
756 +#define bcm63xx_spi_suspend NULL
757 +#define bcm63xx_spi_resume NULL
760 +static struct platform_driver bcm63xx_spi_driver = {
762 + .name = "bcm63xx-spi",
763 + .owner = THIS_MODULE,
765 + .probe = bcm63xx_spi_probe,
766 + .remove = __exit_p(bcm63xx_spi_remove),
767 + .suspend = bcm63xx_spi_suspend,
768 + .resume = bcm63xx_spi_resume,
772 +static int __init bcm63xx_spi_init(void)
774 + return platform_driver_register(&bcm63xx_spi_driver);
777 +static void __exit bcm63xx_spi_exit(void)
779 + platform_driver_unregister(&bcm63xx_spi_driver);
782 +module_init(bcm63xx_spi_init);
783 +module_exit(bcm63xx_spi_exit);
785 +MODULE_ALIAS("platform:bcm63xx_spi");
786 +MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>");
787 +MODULE_AUTHOR("Tanguy Bouzeloc <tanguy.bouzeloc@efixo.com>");
788 +MODULE_DESCRIPTION("Broadcom BCM63xx SPI Controller driver");
789 +MODULE_LICENSE("GPL");
790 +MODULE_VERSION(DRV_VER);
791 --- a/drivers/spi/Kconfig
792 +++ b/drivers/spi/Kconfig
793 @@ -74,6 +74,12 @@ config SPI_ATMEL
794 This selects a driver for the Atmel SPI Controller, present on
795 many AT32 (AVR32) and AT91 (ARM) chips.
798 + tristate "Broadcom BCM63xx SPI controller"
801 + This is the SPI controller master driver for Broadcom BCM63xx SoC.
804 tristate "SPI controller driver for ADI Blackfin5xx"
806 --- a/drivers/spi/Makefile
807 +++ b/drivers/spi/Makefile
808 @@ -56,6 +56,7 @@ obj-$(CONFIG_SPI_SH_SCI) += spi_sh_sci.
809 obj-$(CONFIG_SPI_SH_MSIOF) += spi_sh_msiof.o
810 obj-$(CONFIG_SPI_STMP3XXX) += spi_stmp.o
811 obj-$(CONFIG_SPI_NUC900) += spi_nuc900.o
812 +obj-$(CONFIG_SPI_BCM63XX) += bcm63xx_spi.o
814 # special build for s3c24xx spi driver with fiq support
815 spi_s3c24xx_hw-y := spi_s3c24xx.o
817 +++ b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_dev_spi.h
819 +#ifndef BCM63XX_DEV_SPI_H
820 +#define BCM63XX_DEV_SPI_H
822 +#include <linux/types.h>
823 +#include <bcm63xx_io.h>
824 +#include <bcm63xx_regs.h>
826 +int __init bcm63xx_spi_register(void);
828 +struct bcm63xx_spi_pdata {
829 + unsigned int fifo_size;
831 + int num_chipselect;
835 +enum bcm63xx_regs_spi {
850 +#define __GEN_SPI_RSET_BASE(__cpu, __rset) \
851 + case SPI_## __rset: \
852 + return SPI_BCM_## __cpu ##_SPI_## __rset;
854 +#define __GEN_SPI_RSET(__cpu) \
856 + __GEN_SPI_RSET_BASE(__cpu, CMD) \
857 + __GEN_SPI_RSET_BASE(__cpu, INT_STATUS) \
858 + __GEN_SPI_RSET_BASE(__cpu, INT_MASK_ST) \
859 + __GEN_SPI_RSET_BASE(__cpu, INT_MASK) \
860 + __GEN_SPI_RSET_BASE(__cpu, ST) \
861 + __GEN_SPI_RSET_BASE(__cpu, CLK_CFG) \
862 + __GEN_SPI_RSET_BASE(__cpu, FILL_BYTE) \
863 + __GEN_SPI_RSET_BASE(__cpu, MSG_TAIL) \
864 + __GEN_SPI_RSET_BASE(__cpu, RX_TAIL) \
865 + __GEN_SPI_RSET_BASE(__cpu, MSG_CTL) \
866 + __GEN_SPI_RSET_BASE(__cpu, MSG_DATA) \
867 + __GEN_SPI_RSET_BASE(__cpu, RX_DATA) \
870 +#define __GEN_SPI_REGS_TABLE(__cpu) \
871 + [SPI_CMD] = SPI_BCM_## __cpu ##_SPI_CMD, \
872 + [SPI_INT_STATUS] = SPI_BCM_## __cpu ##_SPI_INT_STATUS, \
873 + [SPI_INT_MASK_ST] = SPI_BCM_## __cpu ##_SPI_INT_MASK_ST, \
874 + [SPI_INT_MASK] = SPI_BCM_## __cpu ##_SPI_INT_MASK, \
875 + [SPI_ST] = SPI_BCM_## __cpu ##_SPI_ST, \
876 + [SPI_CLK_CFG] = SPI_BCM_## __cpu ##_SPI_CLK_CFG, \
877 + [SPI_FILL_BYTE] = SPI_BCM_## __cpu ##_SPI_FILL_BYTE, \
878 + [SPI_MSG_TAIL] = SPI_BCM_## __cpu ##_SPI_MSG_TAIL, \
879 + [SPI_RX_TAIL] = SPI_BCM_## __cpu ##_SPI_RX_TAIL, \
880 + [SPI_MSG_CTL] = SPI_BCM_## __cpu ##_SPI_MSG_CTL, \
881 + [SPI_MSG_DATA] = SPI_BCM_## __cpu ##_SPI_MSG_DATA, \
882 + [SPI_RX_DATA] = SPI_BCM_## __cpu ##_SPI_RX_DATA,
884 +static inline unsigned long bcm63xx_spireg(enum bcm63xx_regs_spi reg)
886 +#ifdef BCMCPU_RUNTIME_DETECT
887 + extern const unsigned long *bcm63xx_regs_spi;
888 + return bcm63xx_regs_spi[reg];
890 +#ifdef CONFIG_BCM63XX_CPU_6338
891 + __GEN_SPI_RSET(6338)
893 +#ifdef CONFIG_BCM63XX_CPU_6348
894 + __GEN_SPI_RSET(6348)
896 +#ifdef CONFIG_BCM63XX_CPU_6358
897 + __GEN_SPI_RSET(6358)
903 +#endif /* BCM63XX_DEV_SPI_H */
904 --- a/arch/mips/bcm63xx/Makefile
905 +++ b/arch/mips/bcm63xx/Makefile
907 obj-y += clk.o cpu.o cs.o gpio.o irq.o prom.o setup.o timer.o \
908 dev-dsp.o dev-enet.o dev-pcmcia.o dev-uart.o dev-wdt.o \
909 - dev-usb-ohci.o dev-usb-ehci.o
910 + dev-usb-ohci.o dev-usb-ehci.o dev-spi.o
911 obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
914 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c
915 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c
917 #include <bcm63xx_dev_pcmcia.h>
918 #include <bcm63xx_dev_usb_ohci.h>
919 #include <bcm63xx_dev_usb_ehci.h>
920 +#include <bcm63xx_dev_spi.h>
921 #include <board_bcm963xx.h>
923 #define PFX "board_bcm963xx: "
924 @@ -927,6 +928,8 @@ int __init board_register_devices(void)
926 spi_register_board_info(board.spis, board.num_spis);
928 + bcm63xx_spi_register();
930 /* read base address of boot chip select (0) */
931 val = bcm_mpi_readl(MPI_CSBASE_REG(0));
932 val &= MPI_CSBASE_BASE_MASK;