blob: a21fef4a3bb110df50890e90d9c60bd67e1cce8e [file] [log] [blame]
Florian Fainellib42dfed2012-02-01 11:14:09 +01001/*
2 * Broadcom BCM63xx SPI controller support
3 *
Florian Fainellicde43842012-04-20 15:37:33 +02004 * Copyright (C) 2009-2012 Florian Fainelli <florian@openwrt.org>
Florian Fainellib42dfed2012-02-01 11:14:09 +01005 * Copyright (C) 2010 Tanguy Bouzeloc <tanguy.bouzeloc@efixo.com>
6 *
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.
11 *
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.
16 *
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,
20 */
21
22#include <linux/kernel.h>
23#include <linux/init.h>
24#include <linux/clk.h>
25#include <linux/io.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>
Florian Fainellicde43842012-04-20 15:37:33 +020033#include <linux/workqueue.h>
34#include <linux/pm_runtime.h>
Florian Fainellib42dfed2012-02-01 11:14:09 +010035
36#include <bcm63xx_dev_spi.h>
37
38#define PFX KBUILD_MODNAME
Florian Fainellib42dfed2012-02-01 11:14:09 +010039
Jonas Gorskib17de072013-02-03 15:15:13 +010040#define BCM63XX_SPI_MAX_PREPEND 15
41
Florian Fainellib42dfed2012-02-01 11:14:09 +010042struct bcm63xx_spi {
Florian Fainellib42dfed2012-02-01 11:14:09 +010043 struct completion done;
44
45 void __iomem *regs;
46 int irq;
47
48 /* Platform data */
Florian Fainellib42dfed2012-02-01 11:14:09 +010049 unsigned fifo_size;
Florian Fainelli5a670442012-06-18 12:07:51 +020050 unsigned int msg_type_shift;
51 unsigned int msg_ctl_width;
Florian Fainellib42dfed2012-02-01 11:14:09 +010052
Florian Fainellib42dfed2012-02-01 11:14:09 +010053 /* data iomem */
54 u8 __iomem *tx_io;
55 const u8 __iomem *rx_io;
56
Florian Fainellib42dfed2012-02-01 11:14:09 +010057 struct clk *clk;
58 struct platform_device *pdev;
59};
60
61static inline u8 bcm_spi_readb(struct bcm63xx_spi *bs,
62 unsigned int offset)
63{
64 return bcm_readb(bs->regs + bcm63xx_spireg(offset));
65}
66
67static inline u16 bcm_spi_readw(struct bcm63xx_spi *bs,
68 unsigned int offset)
69{
70 return bcm_readw(bs->regs + bcm63xx_spireg(offset));
71}
72
73static inline void bcm_spi_writeb(struct bcm63xx_spi *bs,
74 u8 value, unsigned int offset)
75{
76 bcm_writeb(value, bs->regs + bcm63xx_spireg(offset));
77}
78
79static inline void bcm_spi_writew(struct bcm63xx_spi *bs,
80 u16 value, unsigned int offset)
81{
82 bcm_writew(value, bs->regs + bcm63xx_spireg(offset));
83}
84
85static const unsigned bcm63xx_spi_freq_table[SPI_CLK_MASK][2] = {
86 { 20000000, SPI_CLK_20MHZ },
87 { 12500000, SPI_CLK_12_50MHZ },
88 { 6250000, SPI_CLK_6_250MHZ },
89 { 3125000, SPI_CLK_3_125MHZ },
90 { 1563000, SPI_CLK_1_563MHZ },
91 { 781000, SPI_CLK_0_781MHZ },
92 { 391000, SPI_CLK_0_391MHZ }
93};
94
Florian Fainellicde43842012-04-20 15:37:33 +020095static void bcm63xx_spi_setup_transfer(struct spi_device *spi,
96 struct spi_transfer *t)
97{
98 struct bcm63xx_spi *bs = spi_master_get_devdata(spi->master);
Florian Fainellicde43842012-04-20 15:37:33 +020099 u8 clk_cfg, reg;
100 int i;
101
Florian Fainellib42dfed2012-02-01 11:14:09 +0100102 /* Find the closest clock configuration */
103 for (i = 0; i < SPI_CLK_MASK; i++) {
Jonas Gorski68792e22013-03-12 00:13:46 +0100104 if (t->speed_hz >= bcm63xx_spi_freq_table[i][0]) {
Florian Fainellib42dfed2012-02-01 11:14:09 +0100105 clk_cfg = bcm63xx_spi_freq_table[i][1];
106 break;
107 }
108 }
109
110 /* No matching configuration found, default to lowest */
111 if (i == SPI_CLK_MASK)
112 clk_cfg = SPI_CLK_0_391MHZ;
113
114 /* clear existing clock configuration bits of the register */
115 reg = bcm_spi_readb(bs, SPI_CLK_CFG);
116 reg &= ~SPI_CLK_MASK;
117 reg |= clk_cfg;
118
119 bcm_spi_writeb(bs, reg, SPI_CLK_CFG);
120 dev_dbg(&spi->dev, "Setting clock register to %02x (hz %d)\n",
Jonas Gorski68792e22013-03-12 00:13:46 +0100121 clk_cfg, t->speed_hz);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100122}
123
124/* the spi->mode bits understood by this driver: */
125#define MODEBITS (SPI_CPOL | SPI_CPHA)
126
Jonas Gorskib17de072013-02-03 15:15:13 +0100127static int bcm63xx_txrx_bufs(struct spi_device *spi, struct spi_transfer *first,
128 unsigned int num_transfers)
Florian Fainellib42dfed2012-02-01 11:14:09 +0100129{
130 struct bcm63xx_spi *bs = spi_master_get_devdata(spi->master);
131 u16 msg_ctl;
132 u16 cmd;
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100133 u8 rx_tail;
Jonas Gorskib17de072013-02-03 15:15:13 +0100134 unsigned int i, timeout = 0, prepend_len = 0, len = 0;
135 struct spi_transfer *t = first;
136 bool do_rx = false;
137 bool do_tx = false;
Florian Fainellib42dfed2012-02-01 11:14:09 +0100138
Florian Fainellicde43842012-04-20 15:37:33 +0200139 /* Disable the CMD_DONE interrupt */
140 bcm_spi_writeb(bs, 0, SPI_INT_MASK);
141
Florian Fainellib42dfed2012-02-01 11:14:09 +0100142 dev_dbg(&spi->dev, "txrx: tx %p, rx %p, len %d\n",
143 t->tx_buf, t->rx_buf, t->len);
144
Jonas Gorskib17de072013-02-03 15:15:13 +0100145 if (num_transfers > 1 && t->tx_buf && t->len <= BCM63XX_SPI_MAX_PREPEND)
146 prepend_len = t->len;
147
148 /* prepare the buffer */
149 for (i = 0; i < num_transfers; i++) {
150 if (t->tx_buf) {
151 do_tx = true;
152 memcpy_toio(bs->tx_io + len, t->tx_buf, t->len);
153
154 /* don't prepend more than one tx */
155 if (t != first)
156 prepend_len = 0;
157 }
158
159 if (t->rx_buf) {
160 do_rx = true;
161 /* prepend is half-duplex write only */
162 if (t == first)
163 prepend_len = 0;
164 }
165
166 len += t->len;
167
168 t = list_entry(t->transfer_list.next, struct spi_transfer,
169 transfer_list);
170 }
171
172 len -= prepend_len;
Florian Fainellib42dfed2012-02-01 11:14:09 +0100173
Florian Fainellicde43842012-04-20 15:37:33 +0200174 init_completion(&bs->done);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100175
176 /* Fill in the Message control register */
Jonas Gorskib17de072013-02-03 15:15:13 +0100177 msg_ctl = (len << SPI_BYTE_CNT_SHIFT);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100178
Jonas Gorskib17de072013-02-03 15:15:13 +0100179 if (do_rx && do_tx && prepend_len == 0)
Florian Fainelli5a670442012-06-18 12:07:51 +0200180 msg_ctl |= (SPI_FD_RW << bs->msg_type_shift);
Jonas Gorskib17de072013-02-03 15:15:13 +0100181 else if (do_rx)
Florian Fainelli5a670442012-06-18 12:07:51 +0200182 msg_ctl |= (SPI_HD_R << bs->msg_type_shift);
Jonas Gorskib17de072013-02-03 15:15:13 +0100183 else if (do_tx)
Florian Fainelli5a670442012-06-18 12:07:51 +0200184 msg_ctl |= (SPI_HD_W << bs->msg_type_shift);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100185
Florian Fainelli5a670442012-06-18 12:07:51 +0200186 switch (bs->msg_ctl_width) {
187 case 8:
188 bcm_spi_writeb(bs, msg_ctl, SPI_MSG_CTL);
189 break;
190 case 16:
191 bcm_spi_writew(bs, msg_ctl, SPI_MSG_CTL);
192 break;
193 }
Florian Fainellib42dfed2012-02-01 11:14:09 +0100194
195 /* Issue the transfer */
196 cmd = SPI_CMD_START_IMMEDIATE;
Jonas Gorskib17de072013-02-03 15:15:13 +0100197 cmd |= (prepend_len << SPI_CMD_PREPEND_BYTE_CNT_SHIFT);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100198 cmd |= (spi->chip_select << SPI_CMD_DEVICE_ID_SHIFT);
199 bcm_spi_writew(bs, cmd, SPI_CMD);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100200
Florian Fainellicde43842012-04-20 15:37:33 +0200201 /* Enable the CMD_DONE interrupt */
202 bcm_spi_writeb(bs, SPI_INTR_CMD_DONE, SPI_INT_MASK);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100203
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100204 timeout = wait_for_completion_timeout(&bs->done, HZ);
205 if (!timeout)
206 return -ETIMEDOUT;
207
208 /* read out all data */
209 rx_tail = bcm_spi_readb(bs, SPI_RX_TAIL);
210
Jonas Gorskib17de072013-02-03 15:15:13 +0100211 if (do_rx && rx_tail != len)
212 return -EIO;
213
214 if (!rx_tail)
215 return 0;
216
217 len = 0;
218 t = first;
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100219 /* Read out all the data */
Jonas Gorskib17de072013-02-03 15:15:13 +0100220 for (i = 0; i < num_transfers; i++) {
221 if (t->rx_buf)
222 memcpy_fromio(t->rx_buf, bs->rx_io + len, t->len);
223
224 if (t != first || prepend_len == 0)
225 len += t->len;
226
227 t = list_entry(t->transfer_list.next, struct spi_transfer,
228 transfer_list);
229 }
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100230
231 return 0;
Florian Fainellib42dfed2012-02-01 11:14:09 +0100232}
233
Florian Fainellicde43842012-04-20 15:37:33 +0200234static int bcm63xx_spi_prepare_transfer(struct spi_master *master)
Florian Fainellib42dfed2012-02-01 11:14:09 +0100235{
Florian Fainellicde43842012-04-20 15:37:33 +0200236 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
237
238 pm_runtime_get_sync(&bs->pdev->dev);
239
240 return 0;
241}
242
243static int bcm63xx_spi_unprepare_transfer(struct spi_master *master)
244{
245 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
246
247 pm_runtime_put(&bs->pdev->dev);
248
249 return 0;
250}
251
252static int bcm63xx_spi_transfer_one(struct spi_master *master,
253 struct spi_message *m)
254{
255 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
Jonas Gorskib17de072013-02-03 15:15:13 +0100256 struct spi_transfer *t, *first = NULL;
Florian Fainellicde43842012-04-20 15:37:33 +0200257 struct spi_device *spi = m->spi;
258 int status = 0;
Jonas Gorskib17de072013-02-03 15:15:13 +0100259 unsigned int n_transfers = 0, total_len = 0;
260 bool can_use_prepend = false;
Florian Fainellib42dfed2012-02-01 11:14:09 +0100261
Jonas Gorskib17de072013-02-03 15:15:13 +0100262 /*
263 * This SPI controller does not support keeping CS active after a
264 * transfer.
265 * Work around this by merging as many transfers we can into one big
266 * full-duplex transfers.
267 */
Florian Fainellib42dfed2012-02-01 11:14:09 +0100268 list_for_each_entry(t, &m->transfers, transfer_list) {
Jonas Gorskib17de072013-02-03 15:15:13 +0100269 if (!first)
270 first = t;
271
272 n_transfers++;
273 total_len += t->len;
274
275 if (n_transfers == 2 && !first->rx_buf && !t->tx_buf &&
276 first->len <= BCM63XX_SPI_MAX_PREPEND)
277 can_use_prepend = true;
278 else if (can_use_prepend && t->tx_buf)
279 can_use_prepend = false;
280
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100281 /* we can only transfer one fifo worth of data */
Jonas Gorskib17de072013-02-03 15:15:13 +0100282 if ((can_use_prepend &&
283 total_len > (bs->fifo_size + BCM63XX_SPI_MAX_PREPEND)) ||
284 (!can_use_prepend && total_len > bs->fifo_size)) {
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100285 dev_err(&spi->dev, "unable to do transfers larger than FIFO size (%i > %i)\n",
Jonas Gorskib17de072013-02-03 15:15:13 +0100286 total_len, bs->fifo_size);
287 status = -EINVAL;
288 goto exit;
289 }
290
291 /* all combined transfers have to have the same speed */
292 if (t->speed_hz != first->speed_hz) {
293 dev_err(&spi->dev, "unable to change speed between transfers\n");
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100294 status = -EINVAL;
295 goto exit;
296 }
297
298 /* CS will be deasserted directly after transfer */
299 if (t->delay_usecs) {
300 dev_err(&spi->dev, "unable to keep CS asserted after transfer\n");
301 status = -EINVAL;
302 goto exit;
303 }
304
Jonas Gorskib17de072013-02-03 15:15:13 +0100305 if (t->cs_change ||
306 list_is_last(&t->transfer_list, &m->transfers)) {
307 /* configure adapter for a new transfer */
308 bcm63xx_spi_setup_transfer(spi, first);
309
310 /* send the data */
311 status = bcm63xx_txrx_bufs(spi, first, n_transfers);
312 if (status)
313 goto exit;
314
315 m->actual_length += total_len;
316
317 first = NULL;
318 n_transfers = 0;
319 total_len = 0;
320 can_use_prepend = false;
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100321 }
Florian Fainellib42dfed2012-02-01 11:14:09 +0100322 }
Florian Fainellicde43842012-04-20 15:37:33 +0200323exit:
324 m->status = status;
325 spi_finalize_current_message(master);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100326
Florian Fainellicde43842012-04-20 15:37:33 +0200327 return 0;
Florian Fainellib42dfed2012-02-01 11:14:09 +0100328}
329
330/* This driver supports single master mode only. Hence
331 * CMD_DONE is the only interrupt we care about
332 */
333static irqreturn_t bcm63xx_spi_interrupt(int irq, void *dev_id)
334{
335 struct spi_master *master = (struct spi_master *)dev_id;
336 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
337 u8 intr;
Florian Fainellib42dfed2012-02-01 11:14:09 +0100338
339 /* Read interupts and clear them immediately */
340 intr = bcm_spi_readb(bs, SPI_INT_STATUS);
341 bcm_spi_writeb(bs, SPI_INTR_CLEAR_ALL, SPI_INT_STATUS);
342 bcm_spi_writeb(bs, 0, SPI_INT_MASK);
343
Florian Fainellicde43842012-04-20 15:37:33 +0200344 /* A transfer completed */
345 if (intr & SPI_INTR_CMD_DONE)
346 complete(&bs->done);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100347
348 return IRQ_HANDLED;
349}
350
351
Grant Likelyfd4a3192012-12-07 16:57:14 +0000352static int bcm63xx_spi_probe(struct platform_device *pdev)
Florian Fainellib42dfed2012-02-01 11:14:09 +0100353{
354 struct resource *r;
355 struct device *dev = &pdev->dev;
356 struct bcm63xx_spi_pdata *pdata = pdev->dev.platform_data;
357 int irq;
358 struct spi_master *master;
359 struct clk *clk;
360 struct bcm63xx_spi *bs;
361 int ret;
362
Florian Fainellib42dfed2012-02-01 11:14:09 +0100363 irq = platform_get_irq(pdev, 0);
364 if (irq < 0) {
365 dev_err(dev, "no irq\n");
366 ret = -ENXIO;
367 goto out;
368 }
369
370 clk = clk_get(dev, "spi");
371 if (IS_ERR(clk)) {
372 dev_err(dev, "no clock for device\n");
373 ret = PTR_ERR(clk);
374 goto out;
375 }
376
377 master = spi_alloc_master(dev, sizeof(*bs));
378 if (!master) {
379 dev_err(dev, "out of memory\n");
380 ret = -ENOMEM;
381 goto out_clk;
382 }
383
384 bs = spi_master_get_devdata(master);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100385
386 platform_set_drvdata(pdev, master);
387 bs->pdev = pdev;
388
Julia Lawallde0fa832013-08-14 11:11:09 +0200389 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Jonas Gorskib66c7732013-03-12 00:13:47 +0100390 bs->regs = devm_ioremap_resource(&pdev->dev, r);
391 if (IS_ERR(bs->regs)) {
392 ret = PTR_ERR(bs->regs);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100393 goto out_err;
394 }
395
396 bs->irq = irq;
397 bs->clk = clk;
398 bs->fifo_size = pdata->fifo_size;
399
400 ret = devm_request_irq(&pdev->dev, irq, bcm63xx_spi_interrupt, 0,
401 pdev->name, master);
402 if (ret) {
403 dev_err(dev, "unable to request irq\n");
404 goto out_err;
405 }
406
407 master->bus_num = pdata->bus_num;
408 master->num_chipselect = pdata->num_chipselect;
Florian Fainellicde43842012-04-20 15:37:33 +0200409 master->prepare_transfer_hardware = bcm63xx_spi_prepare_transfer;
410 master->unprepare_transfer_hardware = bcm63xx_spi_unprepare_transfer;
411 master->transfer_one_message = bcm63xx_spi_transfer_one;
Florian Fainelli88a3a252012-04-20 15:37:35 +0200412 master->mode_bits = MODEBITS;
Stephen Warren24778be2013-05-21 20:36:35 -0600413 master->bits_per_word_mask = SPI_BPW_MASK(8);
Florian Fainelli5a670442012-06-18 12:07:51 +0200414 bs->msg_type_shift = pdata->msg_type_shift;
415 bs->msg_ctl_width = pdata->msg_ctl_width;
Florian Fainellib42dfed2012-02-01 11:14:09 +0100416 bs->tx_io = (u8 *)(bs->regs + bcm63xx_spireg(SPI_MSG_DATA));
417 bs->rx_io = (const u8 *)(bs->regs + bcm63xx_spireg(SPI_RX_DATA));
Florian Fainellib42dfed2012-02-01 11:14:09 +0100418
Florian Fainelli5a670442012-06-18 12:07:51 +0200419 switch (bs->msg_ctl_width) {
420 case 8:
421 case 16:
422 break;
423 default:
424 dev_err(dev, "unsupported MSG_CTL width: %d\n",
425 bs->msg_ctl_width);
Jonas Gorskib435ff22013-03-12 00:13:37 +0100426 goto out_err;
Florian Fainelli5a670442012-06-18 12:07:51 +0200427 }
428
Florian Fainellib42dfed2012-02-01 11:14:09 +0100429 /* Initialize hardware */
Jonas Gorski4fbb82a2013-03-12 00:13:38 +0100430 clk_prepare_enable(bs->clk);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100431 bcm_spi_writeb(bs, SPI_INTR_CLEAR_ALL, SPI_INT_STATUS);
432
433 /* register and we are done */
434 ret = spi_register_master(master);
435 if (ret) {
436 dev_err(dev, "spi register failed\n");
437 goto out_clk_disable;
438 }
439
Florian Fainelli61d15962012-10-03 11:56:53 +0200440 dev_info(dev, "at 0x%08x (irq %d, FIFOs size %d)\n",
441 r->start, irq, bs->fifo_size);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100442
443 return 0;
444
445out_clk_disable:
Jonas Gorski4fbb82a2013-03-12 00:13:38 +0100446 clk_disable_unprepare(clk);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100447out_err:
Florian Fainellib42dfed2012-02-01 11:14:09 +0100448 spi_master_put(master);
449out_clk:
450 clk_put(clk);
451out:
452 return ret;
453}
454
Grant Likelyfd4a3192012-12-07 16:57:14 +0000455static int bcm63xx_spi_remove(struct platform_device *pdev)
Florian Fainellib42dfed2012-02-01 11:14:09 +0100456{
Guenter Roeck1f682372012-08-10 13:56:27 -0700457 struct spi_master *master = spi_master_get(platform_get_drvdata(pdev));
Florian Fainellib42dfed2012-02-01 11:14:09 +0100458 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
459
Florian Fainelli1e41dc02012-04-20 15:37:34 +0200460 spi_unregister_master(master);
461
Florian Fainellib42dfed2012-02-01 11:14:09 +0100462 /* reset spi block */
463 bcm_spi_writeb(bs, 0, SPI_INT_MASK);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100464
465 /* HW shutdown */
Jonas Gorski4fbb82a2013-03-12 00:13:38 +0100466 clk_disable_unprepare(bs->clk);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100467 clk_put(bs->clk);
468
Guenter Roeck1f682372012-08-10 13:56:27 -0700469 spi_master_put(master);
470
Florian Fainellib42dfed2012-02-01 11:14:09 +0100471 return 0;
472}
473
474#ifdef CONFIG_PM
475static int bcm63xx_spi_suspend(struct device *dev)
476{
477 struct spi_master *master =
478 platform_get_drvdata(to_platform_device(dev));
479 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
480
Florian Fainelli96519952012-10-03 11:56:54 +0200481 spi_master_suspend(master);
482
Jonas Gorski4fbb82a2013-03-12 00:13:38 +0100483 clk_disable_unprepare(bs->clk);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100484
485 return 0;
486}
487
488static int bcm63xx_spi_resume(struct device *dev)
489{
490 struct spi_master *master =
491 platform_get_drvdata(to_platform_device(dev));
492 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
493
Jonas Gorski4fbb82a2013-03-12 00:13:38 +0100494 clk_prepare_enable(bs->clk);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100495
Florian Fainelli96519952012-10-03 11:56:54 +0200496 spi_master_resume(master);
497
Florian Fainellib42dfed2012-02-01 11:14:09 +0100498 return 0;
499}
500
501static const struct dev_pm_ops bcm63xx_spi_pm_ops = {
502 .suspend = bcm63xx_spi_suspend,
503 .resume = bcm63xx_spi_resume,
504};
505
506#define BCM63XX_SPI_PM_OPS (&bcm63xx_spi_pm_ops)
507#else
508#define BCM63XX_SPI_PM_OPS NULL
509#endif
510
511static struct platform_driver bcm63xx_spi_driver = {
512 .driver = {
513 .name = "bcm63xx-spi",
514 .owner = THIS_MODULE,
515 .pm = BCM63XX_SPI_PM_OPS,
516 },
517 .probe = bcm63xx_spi_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +0000518 .remove = bcm63xx_spi_remove,
Florian Fainellib42dfed2012-02-01 11:14:09 +0100519};
520
521module_platform_driver(bcm63xx_spi_driver);
522
523MODULE_ALIAS("platform:bcm63xx_spi");
524MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>");
525MODULE_AUTHOR("Tanguy Bouzeloc <tanguy.bouzeloc@efixo.com>");
526MODULE_DESCRIPTION("Broadcom BCM63xx SPI Controller driver");
527MODULE_LICENSE("GPL");