blob: d777f6311100bff5da15f399f3659af203b26725 [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);
100 u32 hz;
101 u8 clk_cfg, reg;
102 int i;
103
104 hz = (t) ? t->speed_hz : spi->max_speed_hz;
105
Florian Fainellib42dfed2012-02-01 11:14:09 +0100106 /* Find the closest clock configuration */
107 for (i = 0; i < SPI_CLK_MASK; i++) {
Florian Fainellid76ea242012-07-23 14:44:36 +0200108 if (hz >= bcm63xx_spi_freq_table[i][0]) {
Florian Fainellib42dfed2012-02-01 11:14:09 +0100109 clk_cfg = bcm63xx_spi_freq_table[i][1];
110 break;
111 }
112 }
113
114 /* No matching configuration found, default to lowest */
115 if (i == SPI_CLK_MASK)
116 clk_cfg = SPI_CLK_0_391MHZ;
117
118 /* clear existing clock configuration bits of the register */
119 reg = bcm_spi_readb(bs, SPI_CLK_CFG);
120 reg &= ~SPI_CLK_MASK;
121 reg |= clk_cfg;
122
123 bcm_spi_writeb(bs, reg, SPI_CLK_CFG);
124 dev_dbg(&spi->dev, "Setting clock register to %02x (hz %d)\n",
125 clk_cfg, hz);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100126}
127
128/* the spi->mode bits understood by this driver: */
129#define MODEBITS (SPI_CPOL | SPI_CPHA)
130
131static int bcm63xx_spi_setup(struct spi_device *spi)
132{
Jonas Gorskie2bdae02013-03-12 00:13:42 +0100133 if (spi->bits_per_word != 8) {
134 dev_err(&spi->dev, "%s, unsupported bits_per_word=%d\n",
135 __func__, spi->bits_per_word);
136 return -EINVAL;
137 }
Florian Fainellib42dfed2012-02-01 11:14:09 +0100138
Florian Fainellib42dfed2012-02-01 11:14:09 +0100139 return 0;
140}
141
Jonas Gorskib17de072013-02-03 15:15:13 +0100142static int bcm63xx_txrx_bufs(struct spi_device *spi, struct spi_transfer *first,
143 unsigned int num_transfers)
Florian Fainellib42dfed2012-02-01 11:14:09 +0100144{
145 struct bcm63xx_spi *bs = spi_master_get_devdata(spi->master);
146 u16 msg_ctl;
147 u16 cmd;
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100148 u8 rx_tail;
Jonas Gorskib17de072013-02-03 15:15:13 +0100149 unsigned int i, timeout = 0, prepend_len = 0, len = 0;
150 struct spi_transfer *t = first;
151 bool do_rx = false;
152 bool do_tx = false;
Florian Fainellib42dfed2012-02-01 11:14:09 +0100153
Florian Fainellicde43842012-04-20 15:37:33 +0200154 /* Disable the CMD_DONE interrupt */
155 bcm_spi_writeb(bs, 0, SPI_INT_MASK);
156
Florian Fainellib42dfed2012-02-01 11:14:09 +0100157 dev_dbg(&spi->dev, "txrx: tx %p, rx %p, len %d\n",
158 t->tx_buf, t->rx_buf, t->len);
159
Jonas Gorskib17de072013-02-03 15:15:13 +0100160 if (num_transfers > 1 && t->tx_buf && t->len <= BCM63XX_SPI_MAX_PREPEND)
161 prepend_len = t->len;
162
163 /* prepare the buffer */
164 for (i = 0; i < num_transfers; i++) {
165 if (t->tx_buf) {
166 do_tx = true;
167 memcpy_toio(bs->tx_io + len, t->tx_buf, t->len);
168
169 /* don't prepend more than one tx */
170 if (t != first)
171 prepend_len = 0;
172 }
173
174 if (t->rx_buf) {
175 do_rx = true;
176 /* prepend is half-duplex write only */
177 if (t == first)
178 prepend_len = 0;
179 }
180
181 len += t->len;
182
183 t = list_entry(t->transfer_list.next, struct spi_transfer,
184 transfer_list);
185 }
186
187 len -= prepend_len;
Florian Fainellib42dfed2012-02-01 11:14:09 +0100188
Florian Fainellicde43842012-04-20 15:37:33 +0200189 init_completion(&bs->done);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100190
191 /* Fill in the Message control register */
Jonas Gorskib17de072013-02-03 15:15:13 +0100192 msg_ctl = (len << SPI_BYTE_CNT_SHIFT);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100193
Jonas Gorskib17de072013-02-03 15:15:13 +0100194 if (do_rx && do_tx && prepend_len == 0)
Florian Fainelli5a670442012-06-18 12:07:51 +0200195 msg_ctl |= (SPI_FD_RW << bs->msg_type_shift);
Jonas Gorskib17de072013-02-03 15:15:13 +0100196 else if (do_rx)
Florian Fainelli5a670442012-06-18 12:07:51 +0200197 msg_ctl |= (SPI_HD_R << bs->msg_type_shift);
Jonas Gorskib17de072013-02-03 15:15:13 +0100198 else if (do_tx)
Florian Fainelli5a670442012-06-18 12:07:51 +0200199 msg_ctl |= (SPI_HD_W << bs->msg_type_shift);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100200
Florian Fainelli5a670442012-06-18 12:07:51 +0200201 switch (bs->msg_ctl_width) {
202 case 8:
203 bcm_spi_writeb(bs, msg_ctl, SPI_MSG_CTL);
204 break;
205 case 16:
206 bcm_spi_writew(bs, msg_ctl, SPI_MSG_CTL);
207 break;
208 }
Florian Fainellib42dfed2012-02-01 11:14:09 +0100209
210 /* Issue the transfer */
211 cmd = SPI_CMD_START_IMMEDIATE;
Jonas Gorskib17de072013-02-03 15:15:13 +0100212 cmd |= (prepend_len << SPI_CMD_PREPEND_BYTE_CNT_SHIFT);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100213 cmd |= (spi->chip_select << SPI_CMD_DEVICE_ID_SHIFT);
214 bcm_spi_writew(bs, cmd, SPI_CMD);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100215
Florian Fainellicde43842012-04-20 15:37:33 +0200216 /* Enable the CMD_DONE interrupt */
217 bcm_spi_writeb(bs, SPI_INTR_CMD_DONE, SPI_INT_MASK);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100218
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100219 timeout = wait_for_completion_timeout(&bs->done, HZ);
220 if (!timeout)
221 return -ETIMEDOUT;
222
223 /* read out all data */
224 rx_tail = bcm_spi_readb(bs, SPI_RX_TAIL);
225
Jonas Gorskib17de072013-02-03 15:15:13 +0100226 if (do_rx && rx_tail != len)
227 return -EIO;
228
229 if (!rx_tail)
230 return 0;
231
232 len = 0;
233 t = first;
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100234 /* Read out all the data */
Jonas Gorskib17de072013-02-03 15:15:13 +0100235 for (i = 0; i < num_transfers; i++) {
236 if (t->rx_buf)
237 memcpy_fromio(t->rx_buf, bs->rx_io + len, t->len);
238
239 if (t != first || prepend_len == 0)
240 len += t->len;
241
242 t = list_entry(t->transfer_list.next, struct spi_transfer,
243 transfer_list);
244 }
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100245
246 return 0;
Florian Fainellib42dfed2012-02-01 11:14:09 +0100247}
248
Florian Fainellicde43842012-04-20 15:37:33 +0200249static int bcm63xx_spi_prepare_transfer(struct spi_master *master)
Florian Fainellib42dfed2012-02-01 11:14:09 +0100250{
Florian Fainellicde43842012-04-20 15:37:33 +0200251 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
252
253 pm_runtime_get_sync(&bs->pdev->dev);
254
255 return 0;
256}
257
258static int bcm63xx_spi_unprepare_transfer(struct spi_master *master)
259{
260 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
261
262 pm_runtime_put(&bs->pdev->dev);
263
264 return 0;
265}
266
267static int bcm63xx_spi_transfer_one(struct spi_master *master,
268 struct spi_message *m)
269{
270 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
Jonas Gorskib17de072013-02-03 15:15:13 +0100271 struct spi_transfer *t, *first = NULL;
Florian Fainellicde43842012-04-20 15:37:33 +0200272 struct spi_device *spi = m->spi;
273 int status = 0;
Jonas Gorskib17de072013-02-03 15:15:13 +0100274 unsigned int n_transfers = 0, total_len = 0;
275 bool can_use_prepend = false;
Florian Fainellib42dfed2012-02-01 11:14:09 +0100276
Jonas Gorskib17de072013-02-03 15:15:13 +0100277 /*
278 * This SPI controller does not support keeping CS active after a
279 * transfer.
280 * Work around this by merging as many transfers we can into one big
281 * full-duplex transfers.
282 */
Florian Fainellib42dfed2012-02-01 11:14:09 +0100283 list_for_each_entry(t, &m->transfers, transfer_list) {
Jonas Gorskic94df492013-03-12 00:13:45 +0100284 if (t->bits_per_word != 8) {
285 dev_err(&spi->dev, "%s, unsupported bits_per_word=%d\n",
286 __func__, t->bits_per_word);
287 status = -EINVAL;
Florian Fainellicde43842012-04-20 15:37:33 +0200288 goto exit;
Jonas Gorskic94df492013-03-12 00:13:45 +0100289 }
Florian Fainellicde43842012-04-20 15:37:33 +0200290
Jonas Gorskib17de072013-02-03 15:15:13 +0100291 if (!first)
292 first = t;
293
294 n_transfers++;
295 total_len += t->len;
296
297 if (n_transfers == 2 && !first->rx_buf && !t->tx_buf &&
298 first->len <= BCM63XX_SPI_MAX_PREPEND)
299 can_use_prepend = true;
300 else if (can_use_prepend && t->tx_buf)
301 can_use_prepend = false;
302
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100303 /* we can only transfer one fifo worth of data */
Jonas Gorskib17de072013-02-03 15:15:13 +0100304 if ((can_use_prepend &&
305 total_len > (bs->fifo_size + BCM63XX_SPI_MAX_PREPEND)) ||
306 (!can_use_prepend && total_len > bs->fifo_size)) {
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100307 dev_err(&spi->dev, "unable to do transfers larger than FIFO size (%i > %i)\n",
Jonas Gorskib17de072013-02-03 15:15:13 +0100308 total_len, bs->fifo_size);
309 status = -EINVAL;
310 goto exit;
311 }
312
313 /* all combined transfers have to have the same speed */
314 if (t->speed_hz != first->speed_hz) {
315 dev_err(&spi->dev, "unable to change speed between transfers\n");
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100316 status = -EINVAL;
317 goto exit;
318 }
319
320 /* CS will be deasserted directly after transfer */
321 if (t->delay_usecs) {
322 dev_err(&spi->dev, "unable to keep CS asserted after transfer\n");
323 status = -EINVAL;
324 goto exit;
325 }
326
Jonas Gorskib17de072013-02-03 15:15:13 +0100327 if (t->cs_change ||
328 list_is_last(&t->transfer_list, &m->transfers)) {
329 /* configure adapter for a new transfer */
330 bcm63xx_spi_setup_transfer(spi, first);
331
332 /* send the data */
333 status = bcm63xx_txrx_bufs(spi, first, n_transfers);
334 if (status)
335 goto exit;
336
337 m->actual_length += total_len;
338
339 first = NULL;
340 n_transfers = 0;
341 total_len = 0;
342 can_use_prepend = false;
Jonas Gorskic0fde3b2013-02-03 15:15:12 +0100343 }
Florian Fainellib42dfed2012-02-01 11:14:09 +0100344 }
Florian Fainellicde43842012-04-20 15:37:33 +0200345exit:
346 m->status = status;
347 spi_finalize_current_message(master);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100348
Florian Fainellicde43842012-04-20 15:37:33 +0200349 return 0;
Florian Fainellib42dfed2012-02-01 11:14:09 +0100350}
351
352/* This driver supports single master mode only. Hence
353 * CMD_DONE is the only interrupt we care about
354 */
355static irqreturn_t bcm63xx_spi_interrupt(int irq, void *dev_id)
356{
357 struct spi_master *master = (struct spi_master *)dev_id;
358 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
359 u8 intr;
Florian Fainellib42dfed2012-02-01 11:14:09 +0100360
361 /* Read interupts and clear them immediately */
362 intr = bcm_spi_readb(bs, SPI_INT_STATUS);
363 bcm_spi_writeb(bs, SPI_INTR_CLEAR_ALL, SPI_INT_STATUS);
364 bcm_spi_writeb(bs, 0, SPI_INT_MASK);
365
Florian Fainellicde43842012-04-20 15:37:33 +0200366 /* A transfer completed */
367 if (intr & SPI_INTR_CMD_DONE)
368 complete(&bs->done);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100369
370 return IRQ_HANDLED;
371}
372
373
Grant Likelyfd4a3192012-12-07 16:57:14 +0000374static int bcm63xx_spi_probe(struct platform_device *pdev)
Florian Fainellib42dfed2012-02-01 11:14:09 +0100375{
376 struct resource *r;
377 struct device *dev = &pdev->dev;
378 struct bcm63xx_spi_pdata *pdata = pdev->dev.platform_data;
379 int irq;
380 struct spi_master *master;
381 struct clk *clk;
382 struct bcm63xx_spi *bs;
383 int ret;
384
385 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
386 if (!r) {
387 dev_err(dev, "no iomem\n");
388 ret = -ENXIO;
389 goto out;
390 }
391
392 irq = platform_get_irq(pdev, 0);
393 if (irq < 0) {
394 dev_err(dev, "no irq\n");
395 ret = -ENXIO;
396 goto out;
397 }
398
399 clk = clk_get(dev, "spi");
400 if (IS_ERR(clk)) {
401 dev_err(dev, "no clock for device\n");
402 ret = PTR_ERR(clk);
403 goto out;
404 }
405
406 master = spi_alloc_master(dev, sizeof(*bs));
407 if (!master) {
408 dev_err(dev, "out of memory\n");
409 ret = -ENOMEM;
410 goto out_clk;
411 }
412
413 bs = spi_master_get_devdata(master);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100414
415 platform_set_drvdata(pdev, master);
416 bs->pdev = pdev;
417
418 if (!devm_request_mem_region(&pdev->dev, r->start,
419 resource_size(r), PFX)) {
420 dev_err(dev, "iomem request failed\n");
421 ret = -ENXIO;
422 goto out_err;
423 }
424
425 bs->regs = devm_ioremap_nocache(&pdev->dev, r->start,
426 resource_size(r));
427 if (!bs->regs) {
428 dev_err(dev, "unable to ioremap regs\n");
429 ret = -ENOMEM;
430 goto out_err;
431 }
432
433 bs->irq = irq;
434 bs->clk = clk;
435 bs->fifo_size = pdata->fifo_size;
436
437 ret = devm_request_irq(&pdev->dev, irq, bcm63xx_spi_interrupt, 0,
438 pdev->name, master);
439 if (ret) {
440 dev_err(dev, "unable to request irq\n");
441 goto out_err;
442 }
443
444 master->bus_num = pdata->bus_num;
445 master->num_chipselect = pdata->num_chipselect;
446 master->setup = bcm63xx_spi_setup;
Florian Fainellicde43842012-04-20 15:37:33 +0200447 master->prepare_transfer_hardware = bcm63xx_spi_prepare_transfer;
448 master->unprepare_transfer_hardware = bcm63xx_spi_unprepare_transfer;
449 master->transfer_one_message = bcm63xx_spi_transfer_one;
Florian Fainelli88a3a252012-04-20 15:37:35 +0200450 master->mode_bits = MODEBITS;
Florian Fainellib42dfed2012-02-01 11:14:09 +0100451 bs->speed_hz = pdata->speed_hz;
Florian Fainelli5a670442012-06-18 12:07:51 +0200452 bs->msg_type_shift = pdata->msg_type_shift;
453 bs->msg_ctl_width = pdata->msg_ctl_width;
Florian Fainellib42dfed2012-02-01 11:14:09 +0100454 bs->tx_io = (u8 *)(bs->regs + bcm63xx_spireg(SPI_MSG_DATA));
455 bs->rx_io = (const u8 *)(bs->regs + bcm63xx_spireg(SPI_RX_DATA));
Florian Fainellib42dfed2012-02-01 11:14:09 +0100456
Florian Fainelli5a670442012-06-18 12:07:51 +0200457 switch (bs->msg_ctl_width) {
458 case 8:
459 case 16:
460 break;
461 default:
462 dev_err(dev, "unsupported MSG_CTL width: %d\n",
463 bs->msg_ctl_width);
Jonas Gorskib435ff22013-03-12 00:13:37 +0100464 goto out_err;
Florian Fainelli5a670442012-06-18 12:07:51 +0200465 }
466
Florian Fainellib42dfed2012-02-01 11:14:09 +0100467 /* Initialize hardware */
Jonas Gorski4fbb82a2013-03-12 00:13:38 +0100468 clk_prepare_enable(bs->clk);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100469 bcm_spi_writeb(bs, SPI_INTR_CLEAR_ALL, SPI_INT_STATUS);
470
471 /* register and we are done */
472 ret = spi_register_master(master);
473 if (ret) {
474 dev_err(dev, "spi register failed\n");
475 goto out_clk_disable;
476 }
477
Florian Fainelli61d15962012-10-03 11:56:53 +0200478 dev_info(dev, "at 0x%08x (irq %d, FIFOs size %d)\n",
479 r->start, irq, bs->fifo_size);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100480
481 return 0;
482
483out_clk_disable:
Jonas Gorski4fbb82a2013-03-12 00:13:38 +0100484 clk_disable_unprepare(clk);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100485out_err:
486 platform_set_drvdata(pdev, NULL);
487 spi_master_put(master);
488out_clk:
489 clk_put(clk);
490out:
491 return ret;
492}
493
Grant Likelyfd4a3192012-12-07 16:57:14 +0000494static int bcm63xx_spi_remove(struct platform_device *pdev)
Florian Fainellib42dfed2012-02-01 11:14:09 +0100495{
Guenter Roeck1f682372012-08-10 13:56:27 -0700496 struct spi_master *master = spi_master_get(platform_get_drvdata(pdev));
Florian Fainellib42dfed2012-02-01 11:14:09 +0100497 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
498
Florian Fainelli1e41dc02012-04-20 15:37:34 +0200499 spi_unregister_master(master);
500
Florian Fainellib42dfed2012-02-01 11:14:09 +0100501 /* reset spi block */
502 bcm_spi_writeb(bs, 0, SPI_INT_MASK);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100503
504 /* HW shutdown */
Jonas Gorski4fbb82a2013-03-12 00:13:38 +0100505 clk_disable_unprepare(bs->clk);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100506 clk_put(bs->clk);
507
Florian Fainellib42dfed2012-02-01 11:14:09 +0100508 platform_set_drvdata(pdev, 0);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100509
Guenter Roeck1f682372012-08-10 13:56:27 -0700510 spi_master_put(master);
511
Florian Fainellib42dfed2012-02-01 11:14:09 +0100512 return 0;
513}
514
515#ifdef CONFIG_PM
516static int bcm63xx_spi_suspend(struct device *dev)
517{
518 struct spi_master *master =
519 platform_get_drvdata(to_platform_device(dev));
520 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
521
Florian Fainelli96519952012-10-03 11:56:54 +0200522 spi_master_suspend(master);
523
Jonas Gorski4fbb82a2013-03-12 00:13:38 +0100524 clk_disable_unprepare(bs->clk);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100525
526 return 0;
527}
528
529static int bcm63xx_spi_resume(struct device *dev)
530{
531 struct spi_master *master =
532 platform_get_drvdata(to_platform_device(dev));
533 struct bcm63xx_spi *bs = spi_master_get_devdata(master);
534
Jonas Gorski4fbb82a2013-03-12 00:13:38 +0100535 clk_prepare_enable(bs->clk);
Florian Fainellib42dfed2012-02-01 11:14:09 +0100536
Florian Fainelli96519952012-10-03 11:56:54 +0200537 spi_master_resume(master);
538
Florian Fainellib42dfed2012-02-01 11:14:09 +0100539 return 0;
540}
541
542static const struct dev_pm_ops bcm63xx_spi_pm_ops = {
543 .suspend = bcm63xx_spi_suspend,
544 .resume = bcm63xx_spi_resume,
545};
546
547#define BCM63XX_SPI_PM_OPS (&bcm63xx_spi_pm_ops)
548#else
549#define BCM63XX_SPI_PM_OPS NULL
550#endif
551
552static struct platform_driver bcm63xx_spi_driver = {
553 .driver = {
554 .name = "bcm63xx-spi",
555 .owner = THIS_MODULE,
556 .pm = BCM63XX_SPI_PM_OPS,
557 },
558 .probe = bcm63xx_spi_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +0000559 .remove = bcm63xx_spi_remove,
Florian Fainellib42dfed2012-02-01 11:14:09 +0100560};
561
562module_platform_driver(bcm63xx_spi_driver);
563
564MODULE_ALIAS("platform:bcm63xx_spi");
565MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>");
566MODULE_AUTHOR("Tanguy Bouzeloc <tanguy.bouzeloc@efixo.com>");
567MODULE_DESCRIPTION("Broadcom BCM63xx SPI Controller driver");
568MODULE_LICENSE("GPL");