blob: 2d64db4ac6a2aaac16991e2a3f112dd1dd43999e [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 */
49 u32 speed_hz;
50 unsigned fifo_size;
Florian Fainelli5a670442012-06-18 12:07:51 +020051 unsigned int msg_type_shift;
52 unsigned int msg_ctl_width;
Florian Fainellib42dfed2012-02-01 11:14:09 +010053
Florian Fainellib42dfed2012-02-01 11:14:09 +010054 /* data iomem */
55 u8 __iomem *tx_io;
56 const u8 __iomem *rx_io;
57
Florian Fainellib42dfed2012-02-01 11:14:09 +010058 struct clk *clk;
59 struct platform_device *pdev;
60};
61
62static inline u8 bcm_spi_readb(struct bcm63xx_spi *bs,
63 unsigned int offset)
64{
65 return bcm_readb(bs->regs + bcm63xx_spireg(offset));
66}
67
68static inline u16 bcm_spi_readw(struct bcm63xx_spi *bs,
69 unsigned int offset)
70{
71 return bcm_readw(bs->regs + bcm63xx_spireg(offset));
72}
73
74static inline void bcm_spi_writeb(struct bcm63xx_spi *bs,
75 u8 value, unsigned int offset)
76{
77 bcm_writeb(value, bs->regs + bcm63xx_spireg(offset));
78}
79
80static inline void bcm_spi_writew(struct bcm63xx_spi *bs,
81 u16 value, unsigned int offset)
82{
83 bcm_writew(value, bs->regs + bcm63xx_spireg(offset));
84}
85
86static 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 }
94};
95
Florian Fainellicde43842012-04-20 15:37:33 +020096static void bcm63xx_spi_setup_transfer(struct spi_device *spi,
97 struct spi_transfer *t)
98{
99 struct bcm63xx_spi *bs = spi_master_get_devdata(spi->master);
Florian Fainellicde43842012-04-20 15:37:33 +0200100 u8 clk_cfg, reg;
101 int i;
102
Florian Fainellib42dfed2012-02-01 11:14:09 +0100103 /* Find the closest clock configuration */
104 for (i = 0; i < SPI_CLK_MASK; i++) {
Jonas Gorski68792e22013-03-12 00:13:46 +0100105 if (t->speed_hz >= bcm63xx_spi_freq_table[i][0]) {
Florian Fainellib42dfed2012-02-01 11:14:09 +0100106 clk_cfg = bcm63xx_spi_freq_table[i][1];
107 break;
108 }
109 }
110
111 /* No matching configuration found, default to lowest */
112 if (i == SPI_CLK_MASK)
113 clk_cfg = SPI_CLK_0_391MHZ;
114
115 /* clear existing clock configuration bits of the register */
116 reg = bcm_spi_readb(bs, SPI_CLK_CFG);
117 reg &= ~SPI_CLK_MASK;
118 reg |= clk_cfg;
119
120 bcm_spi_writeb(bs, reg, SPI_CLK_CFG);
121 dev_dbg(&spi->dev, "Setting clock register to %02x (hz %d)\n",
Jonas Gorski68792e22013-03-12 00:13:46 +0100122 clk_cfg, t->speed_hz);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100123}
124
125/* the spi->mode bits understood by this driver: */
126#define MODEBITS (SPI_CPOL | SPI_CPHA)
127
128static int bcm63xx_spi_setup(struct spi_device *spi)
129{
Jonas Gorskie2bdae02013-03-12 00:13:42 +0100130 if (spi->bits_per_word != 8) {
131 dev_err(&spi->dev, "%s, unsupported bits_per_word=%d\n",
132 __func__, spi->bits_per_word);
133 return -EINVAL;
134 }
Florian Fainellib42dfed2012-02-01 11:14:09 +0100135
Florian Fainellib42dfed2012-02-01 11:14:09 +0100136 return 0;
137}
138
Jonas Gorskib17de072013-02-03 15:15:13 +0100139static int bcm63xx_txrx_bufs(struct spi_device *spi, struct spi_transfer *first,
140 unsigned int num_transfers)
Florian Fainellib42dfed2012-02-01 11:14:09 +0100141{
142 struct bcm63xx_spi *bs = spi_master_get_devdata(spi->master);
143 u16 msg_ctl;
144 u16 cmd;
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100145 u8 rx_tail;
Jonas Gorskib17de072013-02-03 15:15:13 +0100146 unsigned int i, timeout = 0, prepend_len = 0, len = 0;
147 struct spi_transfer *t = first;
148 bool do_rx = false;
149 bool do_tx = false;
Florian Fainellib42dfed2012-02-01 11:14:09 +0100150
Florian Fainellicde43842012-04-20 15:37:33 +0200151 /* Disable the CMD_DONE interrupt */
152 bcm_spi_writeb(bs, 0, SPI_INT_MASK);
153
Florian Fainellib42dfed2012-02-01 11:14:09 +0100154 dev_dbg(&spi->dev, "txrx: tx %p, rx %p, len %d\n",
155 t->tx_buf, t->rx_buf, t->len);
156
Jonas Gorskib17de072013-02-03 15:15:13 +0100157 if (num_transfers > 1 && t->tx_buf && t->len <= BCM63XX_SPI_MAX_PREPEND)
158 prepend_len = t->len;
159
160 /* prepare the buffer */
161 for (i = 0; i < num_transfers; i++) {
162 if (t->tx_buf) {
163 do_tx = true;
164 memcpy_toio(bs->tx_io + len, t->tx_buf, t->len);
165
166 /* don't prepend more than one tx */
167 if (t != first)
168 prepend_len = 0;
169 }
170
171 if (t->rx_buf) {
172 do_rx = true;
173 /* prepend is half-duplex write only */
174 if (t == first)
175 prepend_len = 0;
176 }
177
178 len += t->len;
179
180 t = list_entry(t->transfer_list.next, struct spi_transfer,
181 transfer_list);
182 }
183
184 len -= prepend_len;
Florian Fainellib42dfed2012-02-01 11:14:09 +0100185
Florian Fainellicde43842012-04-20 15:37:33 +0200186 init_completion(&bs->done);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100187
188 /* Fill in the Message control register */
Jonas Gorskib17de072013-02-03 15:15:13 +0100189 msg_ctl = (len << SPI_BYTE_CNT_SHIFT);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100190
Jonas Gorskib17de072013-02-03 15:15:13 +0100191 if (do_rx && do_tx && prepend_len == 0)
Florian Fainelli5a670442012-06-18 12:07:51 +0200192 msg_ctl |= (SPI_FD_RW << bs->msg_type_shift);
Jonas Gorskib17de072013-02-03 15:15:13 +0100193 else if (do_rx)
Florian Fainelli5a670442012-06-18 12:07:51 +0200194 msg_ctl |= (SPI_HD_R << bs->msg_type_shift);
Jonas Gorskib17de072013-02-03 15:15:13 +0100195 else if (do_tx)
Florian Fainelli5a670442012-06-18 12:07:51 +0200196 msg_ctl |= (SPI_HD_W << bs->msg_type_shift);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100197
Florian Fainelli5a670442012-06-18 12:07:51 +0200198 switch (bs->msg_ctl_width) {
199 case 8:
200 bcm_spi_writeb(bs, msg_ctl, SPI_MSG_CTL);
201 break;
202 case 16:
203 bcm_spi_writew(bs, msg_ctl, SPI_MSG_CTL);
204 break;
205 }
Florian Fainellib42dfed2012-02-01 11:14:09 +0100206
207 /* Issue the transfer */
208 cmd = SPI_CMD_START_IMMEDIATE;
Jonas Gorskib17de072013-02-03 15:15:13 +0100209 cmd |= (prepend_len << SPI_CMD_PREPEND_BYTE_CNT_SHIFT);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100210 cmd |= (spi->chip_select << SPI_CMD_DEVICE_ID_SHIFT);
211 bcm_spi_writew(bs, cmd, SPI_CMD);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100212
Florian Fainellicde43842012-04-20 15:37:33 +0200213 /* Enable the CMD_DONE interrupt */
214 bcm_spi_writeb(bs, SPI_INTR_CMD_DONE, SPI_INT_MASK);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100215
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100216 timeout = wait_for_completion_timeout(&bs->done, HZ);
217 if (!timeout)
218 return -ETIMEDOUT;
219
220 /* read out all data */
221 rx_tail = bcm_spi_readb(bs, SPI_RX_TAIL);
222
Jonas Gorskib17de072013-02-03 15:15:13 +0100223 if (do_rx && rx_tail != len)
224 return -EIO;
225
226 if (!rx_tail)
227 return 0;
228
229 len = 0;
230 t = first;
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100231 /* Read out all the data */
Jonas Gorskib17de072013-02-03 15:15:13 +0100232 for (i = 0; i < num_transfers; i++) {
233 if (t->rx_buf)
234 memcpy_fromio(t->rx_buf, bs->rx_io + len, t->len);
235
236 if (t != first || prepend_len == 0)
237 len += t->len;
238
239 t = list_entry(t->transfer_list.next, struct spi_transfer,
240 transfer_list);
241 }
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100242
243 return 0;
Florian Fainellib42dfed2012-02-01 11:14:09 +0100244}
245
Florian Fainellicde43842012-04-20 15:37:33 +0200246static int bcm63xx_spi_prepare_transfer(struct spi_master *master)
Florian Fainellib42dfed2012-02-01 11:14:09 +0100247{
Florian Fainellicde43842012-04-20 15:37:33 +0200248 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
249
250 pm_runtime_get_sync(&bs->pdev->dev);
251
252 return 0;
253}
254
255static int bcm63xx_spi_unprepare_transfer(struct spi_master *master)
256{
257 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
258
259 pm_runtime_put(&bs->pdev->dev);
260
261 return 0;
262}
263
264static int bcm63xx_spi_transfer_one(struct spi_master *master,
265 struct spi_message *m)
266{
267 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
Jonas Gorskib17de072013-02-03 15:15:13 +0100268 struct spi_transfer *t, *first = NULL;
Florian Fainellicde43842012-04-20 15:37:33 +0200269 struct spi_device *spi = m->spi;
270 int status = 0;
Jonas Gorskib17de072013-02-03 15:15:13 +0100271 unsigned int n_transfers = 0, total_len = 0;
272 bool can_use_prepend = false;
Florian Fainellib42dfed2012-02-01 11:14:09 +0100273
Jonas Gorskib17de072013-02-03 15:15:13 +0100274 /*
275 * This SPI controller does not support keeping CS active after a
276 * transfer.
277 * Work around this by merging as many transfers we can into one big
278 * full-duplex transfers.
279 */
Florian Fainellib42dfed2012-02-01 11:14:09 +0100280 list_for_each_entry(t, &m->transfers, transfer_list) {
Jonas Gorskic94df492013-03-12 00:13:45 +0100281 if (t->bits_per_word != 8) {
282 dev_err(&spi->dev, "%s, unsupported bits_per_word=%d\n",
283 __func__, t->bits_per_word);
284 status = -EINVAL;
Florian Fainellicde43842012-04-20 15:37:33 +0200285 goto exit;
Jonas Gorskic94df492013-03-12 00:13:45 +0100286 }
Florian Fainellicde43842012-04-20 15:37:33 +0200287
Jonas Gorskib17de072013-02-03 15:15:13 +0100288 if (!first)
289 first = t;
290
291 n_transfers++;
292 total_len += t->len;
293
294 if (n_transfers == 2 && !first->rx_buf && !t->tx_buf &&
295 first->len <= BCM63XX_SPI_MAX_PREPEND)
296 can_use_prepend = true;
297 else if (can_use_prepend && t->tx_buf)
298 can_use_prepend = false;
299
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100300 /* we can only transfer one fifo worth of data */
Jonas Gorskib17de072013-02-03 15:15:13 +0100301 if ((can_use_prepend &&
302 total_len > (bs->fifo_size + BCM63XX_SPI_MAX_PREPEND)) ||
303 (!can_use_prepend && total_len > bs->fifo_size)) {
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100304 dev_err(&spi->dev, "unable to do transfers larger than FIFO size (%i > %i)\n",
Jonas Gorskib17de072013-02-03 15:15:13 +0100305 total_len, bs->fifo_size);
306 status = -EINVAL;
307 goto exit;
308 }
309
310 /* all combined transfers have to have the same speed */
311 if (t->speed_hz != first->speed_hz) {
312 dev_err(&spi->dev, "unable to change speed between transfers\n");
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100313 status = -EINVAL;
314 goto exit;
315 }
316
317 /* CS will be deasserted directly after transfer */
318 if (t->delay_usecs) {
319 dev_err(&spi->dev, "unable to keep CS asserted after transfer\n");
320 status = -EINVAL;
321 goto exit;
322 }
323
Jonas Gorskib17de072013-02-03 15:15:13 +0100324 if (t->cs_change ||
325 list_is_last(&t->transfer_list, &m->transfers)) {
326 /* configure adapter for a new transfer */
327 bcm63xx_spi_setup_transfer(spi, first);
328
329 /* send the data */
330 status = bcm63xx_txrx_bufs(spi, first, n_transfers);
331 if (status)
332 goto exit;
333
334 m->actual_length += total_len;
335
336 first = NULL;
337 n_transfers = 0;
338 total_len = 0;
339 can_use_prepend = false;
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100340 }
Florian Fainellib42dfed2012-02-01 11:14:09 +0100341 }
Florian Fainellicde43842012-04-20 15:37:33 +0200342exit:
343 m->status = status;
344 spi_finalize_current_message(master);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100345
Florian Fainellicde43842012-04-20 15:37:33 +0200346 return 0;
Florian Fainellib42dfed2012-02-01 11:14:09 +0100347}
348
349/* This driver supports single master mode only. Hence
350 * CMD_DONE is the only interrupt we care about
351 */
352static irqreturn_t bcm63xx_spi_interrupt(int irq, void *dev_id)
353{
354 struct spi_master *master = (struct spi_master *)dev_id;
355 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
356 u8 intr;
Florian Fainellib42dfed2012-02-01 11:14:09 +0100357
358 /* Read interupts and clear them immediately */
359 intr = bcm_spi_readb(bs, SPI_INT_STATUS);
360 bcm_spi_writeb(bs, SPI_INTR_CLEAR_ALL, SPI_INT_STATUS);
361 bcm_spi_writeb(bs, 0, SPI_INT_MASK);
362
Florian Fainellicde43842012-04-20 15:37:33 +0200363 /* A transfer completed */
364 if (intr & SPI_INTR_CMD_DONE)
365 complete(&bs->done);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100366
367 return IRQ_HANDLED;
368}
369
370
Grant Likelyfd4a3192012-12-07 16:57:14 +0000371static int bcm63xx_spi_probe(struct platform_device *pdev)
Florian Fainellib42dfed2012-02-01 11:14:09 +0100372{
373 struct resource *r;
374 struct device *dev = &pdev->dev;
375 struct bcm63xx_spi_pdata *pdata = pdev->dev.platform_data;
376 int irq;
377 struct spi_master *master;
378 struct clk *clk;
379 struct bcm63xx_spi *bs;
380 int ret;
381
382 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
383 if (!r) {
384 dev_err(dev, "no iomem\n");
385 ret = -ENXIO;
386 goto out;
387 }
388
389 irq = platform_get_irq(pdev, 0);
390 if (irq < 0) {
391 dev_err(dev, "no irq\n");
392 ret = -ENXIO;
393 goto out;
394 }
395
396 clk = clk_get(dev, "spi");
397 if (IS_ERR(clk)) {
398 dev_err(dev, "no clock for device\n");
399 ret = PTR_ERR(clk);
400 goto out;
401 }
402
403 master = spi_alloc_master(dev, sizeof(*bs));
404 if (!master) {
405 dev_err(dev, "out of memory\n");
406 ret = -ENOMEM;
407 goto out_clk;
408 }
409
410 bs = spi_master_get_devdata(master);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100411
412 platform_set_drvdata(pdev, master);
413 bs->pdev = pdev;
414
415 if (!devm_request_mem_region(&pdev->dev, r->start,
416 resource_size(r), PFX)) {
417 dev_err(dev, "iomem request failed\n");
418 ret = -ENXIO;
419 goto out_err;
420 }
421
422 bs->regs = devm_ioremap_nocache(&pdev->dev, r->start,
423 resource_size(r));
424 if (!bs->regs) {
425 dev_err(dev, "unable to ioremap regs\n");
426 ret = -ENOMEM;
427 goto out_err;
428 }
429
430 bs->irq = irq;
431 bs->clk = clk;
432 bs->fifo_size = pdata->fifo_size;
433
434 ret = devm_request_irq(&pdev->dev, irq, bcm63xx_spi_interrupt, 0,
435 pdev->name, master);
436 if (ret) {
437 dev_err(dev, "unable to request irq\n");
438 goto out_err;
439 }
440
441 master->bus_num = pdata->bus_num;
442 master->num_chipselect = pdata->num_chipselect;
443 master->setup = bcm63xx_spi_setup;
Florian Fainellicde43842012-04-20 15:37:33 +0200444 master->prepare_transfer_hardware = bcm63xx_spi_prepare_transfer;
445 master->unprepare_transfer_hardware = bcm63xx_spi_unprepare_transfer;
446 master->transfer_one_message = bcm63xx_spi_transfer_one;
Florian Fainelli88a3a252012-04-20 15:37:35 +0200447 master->mode_bits = MODEBITS;
Florian Fainellib42dfed2012-02-01 11:14:09 +0100448 bs->speed_hz = pdata->speed_hz;
Florian Fainelli5a670442012-06-18 12:07:51 +0200449 bs->msg_type_shift = pdata->msg_type_shift;
450 bs->msg_ctl_width = pdata->msg_ctl_width;
Florian Fainellib42dfed2012-02-01 11:14:09 +0100451 bs->tx_io = (u8 *)(bs->regs + bcm63xx_spireg(SPI_MSG_DATA));
452 bs->rx_io = (const u8 *)(bs->regs + bcm63xx_spireg(SPI_RX_DATA));
Florian Fainellib42dfed2012-02-01 11:14:09 +0100453
Florian Fainelli5a670442012-06-18 12:07:51 +0200454 switch (bs->msg_ctl_width) {
455 case 8:
456 case 16:
457 break;
458 default:
459 dev_err(dev, "unsupported MSG_CTL width: %d\n",
460 bs->msg_ctl_width);
Jonas Gorskib435ff22013-03-12 00:13:37 +0100461 goto out_err;
Florian Fainelli5a670442012-06-18 12:07:51 +0200462 }
463
Florian Fainellib42dfed2012-02-01 11:14:09 +0100464 /* Initialize hardware */
Jonas Gorski4fbb82a2013-03-12 00:13:38 +0100465 clk_prepare_enable(bs->clk);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100466 bcm_spi_writeb(bs, SPI_INTR_CLEAR_ALL, SPI_INT_STATUS);
467
468 /* register and we are done */
469 ret = spi_register_master(master);
470 if (ret) {
471 dev_err(dev, "spi register failed\n");
472 goto out_clk_disable;
473 }
474
Florian Fainelli61d15962012-10-03 11:56:53 +0200475 dev_info(dev, "at 0x%08x (irq %d, FIFOs size %d)\n",
476 r->start, irq, bs->fifo_size);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100477
478 return 0;
479
480out_clk_disable:
Jonas Gorski4fbb82a2013-03-12 00:13:38 +0100481 clk_disable_unprepare(clk);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100482out_err:
483 platform_set_drvdata(pdev, NULL);
484 spi_master_put(master);
485out_clk:
486 clk_put(clk);
487out:
488 return ret;
489}
490
Grant Likelyfd4a3192012-12-07 16:57:14 +0000491static int bcm63xx_spi_remove(struct platform_device *pdev)
Florian Fainellib42dfed2012-02-01 11:14:09 +0100492{
Guenter Roeck1f682372012-08-10 13:56:27 -0700493 struct spi_master *master = spi_master_get(platform_get_drvdata(pdev));
Florian Fainellib42dfed2012-02-01 11:14:09 +0100494 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
495
Florian Fainelli1e41dc02012-04-20 15:37:34 +0200496 spi_unregister_master(master);
497
Florian Fainellib42dfed2012-02-01 11:14:09 +0100498 /* reset spi block */
499 bcm_spi_writeb(bs, 0, SPI_INT_MASK);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100500
501 /* HW shutdown */
Jonas Gorski4fbb82a2013-03-12 00:13:38 +0100502 clk_disable_unprepare(bs->clk);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100503 clk_put(bs->clk);
504
Florian Fainellib42dfed2012-02-01 11:14:09 +0100505 platform_set_drvdata(pdev, 0);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100506
Guenter Roeck1f682372012-08-10 13:56:27 -0700507 spi_master_put(master);
508
Florian Fainellib42dfed2012-02-01 11:14:09 +0100509 return 0;
510}
511
512#ifdef CONFIG_PM
513static int bcm63xx_spi_suspend(struct device *dev)
514{
515 struct spi_master *master =
516 platform_get_drvdata(to_platform_device(dev));
517 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
518
Florian Fainelli96519952012-10-03 11:56:54 +0200519 spi_master_suspend(master);
520
Jonas Gorski4fbb82a2013-03-12 00:13:38 +0100521 clk_disable_unprepare(bs->clk);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100522
523 return 0;
524}
525
526static int bcm63xx_spi_resume(struct device *dev)
527{
528 struct spi_master *master =
529 platform_get_drvdata(to_platform_device(dev));
530 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
531
Jonas Gorski4fbb82a2013-03-12 00:13:38 +0100532 clk_prepare_enable(bs->clk);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100533
Florian Fainelli96519952012-10-03 11:56:54 +0200534 spi_master_resume(master);
535
Florian Fainellib42dfed2012-02-01 11:14:09 +0100536 return 0;
537}
538
539static const struct dev_pm_ops bcm63xx_spi_pm_ops = {
540 .suspend = bcm63xx_spi_suspend,
541 .resume = bcm63xx_spi_resume,
542};
543
544#define BCM63XX_SPI_PM_OPS (&bcm63xx_spi_pm_ops)
545#else
546#define BCM63XX_SPI_PM_OPS NULL
547#endif
548
549static struct platform_driver bcm63xx_spi_driver = {
550 .driver = {
551 .name = "bcm63xx-spi",
552 .owner = THIS_MODULE,
553 .pm = BCM63XX_SPI_PM_OPS,
554 },
555 .probe = bcm63xx_spi_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +0000556 .remove = bcm63xx_spi_remove,
Florian Fainellib42dfed2012-02-01 11:14:09 +0100557};
558
559module_platform_driver(bcm63xx_spi_driver);
560
561MODULE_ALIAS("platform:bcm63xx_spi");
562MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>");
563MODULE_AUTHOR("Tanguy Bouzeloc <tanguy.bouzeloc@efixo.com>");
564MODULE_DESCRIPTION("Broadcom BCM63xx SPI Controller driver");
565MODULE_LICENSE("GPL");