]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/spi/spi-ppc4xx.c
ipv4: convert dst_metrics.refcnt from atomic_t to refcount_t
[mirror_ubuntu-artful-kernel.git] / drivers / spi / spi-ppc4xx.c
CommitLineData
44dab88e
SF
1/*
2 * SPI_PPC4XX SPI controller driver.
3 *
4 * Copyright (C) 2007 Gary Jennejohn <garyj@denx.de>
5 * Copyright 2008 Stefan Roese <sr@denx.de>, DENX Software Engineering
6 * Copyright 2009 Harris Corporation, Steven A. Falco <sfalco@harris.com>
7 *
8 * Based in part on drivers/spi/spi_s3c24xx.c
9 *
10 * Copyright (c) 2006 Ben Dooks
11 * Copyright (c) 2006 Simtec Electronics
12 * Ben Dooks <ben@simtec.co.uk>
13 *
14 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License version 2 as published
16 * by the Free Software Foundation.
17 */
18
19/*
20 * The PPC4xx SPI controller has no FIFO so each sent/received byte will
21 * generate an interrupt to the CPU. This can cause high CPU utilization.
22 * This driver allows platforms to reduce the interrupt load on the CPU
23 * during SPI transfers by setting max_speed_hz via the device tree.
24 */
25
26#include <linux/module.h>
44dab88e 27#include <linux/sched.h>
5a0e3ad6 28#include <linux/slab.h>
44dab88e
SF
29#include <linux/errno.h>
30#include <linux/wait.h>
c11eede6
RH
31#include <linux/of_address.h>
32#include <linux/of_irq.h>
44dab88e 33#include <linux/of_platform.h>
44dab88e
SF
34#include <linux/of_gpio.h>
35#include <linux/interrupt.h>
36#include <linux/delay.h>
37
38#include <linux/gpio.h>
39#include <linux/spi/spi.h>
40#include <linux/spi/spi_bitbang.h>
41
42#include <asm/io.h>
43#include <asm/dcr.h>
44#include <asm/dcr-regs.h>
45
46/* bits in mode register - bit 0 is MSb */
47
48/*
49 * SPI_PPC4XX_MODE_SCP = 0 means "data latched on trailing edge of clock"
50 * SPI_PPC4XX_MODE_SCP = 1 means "data latched on leading edge of clock"
51 * Note: This is the inverse of CPHA.
52 */
53#define SPI_PPC4XX_MODE_SCP (0x80 >> 3)
54
55/* SPI_PPC4XX_MODE_SPE = 1 means "port enabled" */
56#define SPI_PPC4XX_MODE_SPE (0x80 >> 4)
57
58/*
59 * SPI_PPC4XX_MODE_RD = 0 means "MSB first" - this is the normal mode
60 * SPI_PPC4XX_MODE_RD = 1 means "LSB first" - this is bit-reversed mode
61 * Note: This is identical to SPI_LSB_FIRST.
62 */
63#define SPI_PPC4XX_MODE_RD (0x80 >> 5)
64
65/*
66 * SPI_PPC4XX_MODE_CI = 0 means "clock idles low"
67 * SPI_PPC4XX_MODE_CI = 1 means "clock idles high"
68 * Note: This is identical to CPOL.
69 */
70#define SPI_PPC4XX_MODE_CI (0x80 >> 6)
71
72/*
73 * SPI_PPC4XX_MODE_IL = 0 means "loopback disable"
74 * SPI_PPC4XX_MODE_IL = 1 means "loopback enable"
75 */
76#define SPI_PPC4XX_MODE_IL (0x80 >> 7)
77
78/* bits in control register */
79/* starts a transfer when set */
80#define SPI_PPC4XX_CR_STR (0x80 >> 7)
81
82/* bits in status register */
83/* port is busy with a transfer */
84#define SPI_PPC4XX_SR_BSY (0x80 >> 6)
85/* RxD ready */
86#define SPI_PPC4XX_SR_RBR (0x80 >> 7)
87
88/* clock settings (SCP and CI) for various SPI modes */
89#define SPI_CLK_MODE0 (SPI_PPC4XX_MODE_SCP | 0)
90#define SPI_CLK_MODE1 (0 | 0)
91#define SPI_CLK_MODE2 (SPI_PPC4XX_MODE_SCP | SPI_PPC4XX_MODE_CI)
92#define SPI_CLK_MODE3 (0 | SPI_PPC4XX_MODE_CI)
93
94#define DRIVER_NAME "spi_ppc4xx_of"
95
96struct spi_ppc4xx_regs {
97 u8 mode;
98 u8 rxd;
99 u8 txd;
100 u8 cr;
101 u8 sr;
102 u8 dummy;
103 /*
104 * Clock divisor modulus register
886db6ac 105 * This uses the following formula:
44dab88e
SF
106 * SCPClkOut = OPBCLK/(4(CDM + 1))
107 * or
108 * CDM = (OPBCLK/4*SCPClkOut) - 1
109 * bit 0 is the MSb!
110 */
111 u8 cdm;
112};
113
114/* SPI Controller driver's private data. */
115struct ppc4xx_spi {
116 /* bitbang has to be first */
117 struct spi_bitbang bitbang;
118 struct completion done;
119
120 u64 mapbase;
121 u64 mapsize;
122 int irqnum;
123 /* need this to set the SPI clock */
124 unsigned int opb_freq;
125
126 /* for transfers */
127 int len;
128 int count;
129 /* data buffers */
130 const unsigned char *tx;
131 unsigned char *rx;
132
133 int *gpios;
134
135 struct spi_ppc4xx_regs __iomem *regs; /* pointer to the registers */
136 struct spi_master *master;
137 struct device *dev;
138};
139
140/* need this so we can set the clock in the chipselect routine */
141struct spi_ppc4xx_cs {
142 u8 mode;
143};
144
145static int spi_ppc4xx_txrx(struct spi_device *spi, struct spi_transfer *t)
146{
147 struct ppc4xx_spi *hw;
148 u8 data;
149
150 dev_dbg(&spi->dev, "txrx: tx %p, rx %p, len %d\n",
151 t->tx_buf, t->rx_buf, t->len);
152
153 hw = spi_master_get_devdata(spi->master);
154
155 hw->tx = t->tx_buf;
156 hw->rx = t->rx_buf;
157 hw->len = t->len;
158 hw->count = 0;
159
160 /* send the first byte */
161 data = hw->tx ? hw->tx[0] : 0;
162 out_8(&hw->regs->txd, data);
163 out_8(&hw->regs->cr, SPI_PPC4XX_CR_STR);
164 wait_for_completion(&hw->done);
165
166 return hw->count;
167}
168
169static int spi_ppc4xx_setupxfer(struct spi_device *spi, struct spi_transfer *t)
170{
171 struct ppc4xx_spi *hw = spi_master_get_devdata(spi->master);
172 struct spi_ppc4xx_cs *cs = spi->controller_state;
173 int scr;
174 u8 cdm = 0;
175 u32 speed;
176 u8 bits_per_word;
177
178 /* Start with the generic configuration for this device. */
179 bits_per_word = spi->bits_per_word;
180 speed = spi->max_speed_hz;
181
182 /*
183 * Modify the configuration if the transfer overrides it. Do not allow
184 * the transfer to overwrite the generic configuration with zeros.
185 */
186 if (t) {
187 if (t->bits_per_word)
188 bits_per_word = t->bits_per_word;
189
190 if (t->speed_hz)
191 speed = min(t->speed_hz, spi->max_speed_hz);
192 }
193
44dab88e
SF
194 if (!speed || (speed > spi->max_speed_hz)) {
195 dev_err(&spi->dev, "invalid speed_hz (%d)\n", speed);
196 return -EINVAL;
197 }
198
886db6ac 199 /* Write new configuration */
44dab88e
SF
200 out_8(&hw->regs->mode, cs->mode);
201
202 /* Set the clock */
203 /* opb_freq was already divided by 4 */
204 scr = (hw->opb_freq / speed) - 1;
205 if (scr > 0)
206 cdm = min(scr, 0xff);
207
208 dev_dbg(&spi->dev, "setting pre-scaler to %d (hz %d)\n", cdm, speed);
209
210 if (in_8(&hw->regs->cdm) != cdm)
211 out_8(&hw->regs->cdm, cdm);
212
c15f6ed3 213 mutex_lock(&hw->bitbang.lock);
44dab88e
SF
214 if (!hw->bitbang.busy) {
215 hw->bitbang.chipselect(spi, BITBANG_CS_INACTIVE);
216 /* Need to ndelay here? */
217 }
c15f6ed3 218 mutex_unlock(&hw->bitbang.lock);
44dab88e
SF
219
220 return 0;
221}
222
223static int spi_ppc4xx_setup(struct spi_device *spi)
224{
225 struct spi_ppc4xx_cs *cs = spi->controller_state;
226
44dab88e
SF
227 if (!spi->max_speed_hz) {
228 dev_err(&spi->dev, "invalid max_speed_hz (must be non-zero)\n");
229 return -EINVAL;
230 }
231
232 if (cs == NULL) {
233 cs = kzalloc(sizeof *cs, GFP_KERNEL);
234 if (!cs)
235 return -ENOMEM;
236 spi->controller_state = cs;
237 }
238
239 /*
240 * We set all bits of the SPI0_MODE register, so,
241 * no need to read-modify-write
242 */
243 cs->mode = SPI_PPC4XX_MODE_SPE;
244
245 switch (spi->mode & (SPI_CPHA | SPI_CPOL)) {
246 case SPI_MODE_0:
247 cs->mode |= SPI_CLK_MODE0;
248 break;
249 case SPI_MODE_1:
250 cs->mode |= SPI_CLK_MODE1;
251 break;
252 case SPI_MODE_2:
253 cs->mode |= SPI_CLK_MODE2;
254 break;
255 case SPI_MODE_3:
256 cs->mode |= SPI_CLK_MODE3;
257 break;
258 }
259
260 if (spi->mode & SPI_LSB_FIRST)
261 cs->mode |= SPI_PPC4XX_MODE_RD;
262
263 return 0;
264}
265
266static void spi_ppc4xx_chipsel(struct spi_device *spi, int value)
267{
268 struct ppc4xx_spi *hw = spi_master_get_devdata(spi->master);
269 unsigned int cs = spi->chip_select;
270 unsigned int cspol;
271
272 /*
273 * If there are no chip selects at all, or if this is the special
274 * case of a non-existent (dummy) chip select, do nothing.
275 */
276
277 if (!hw->master->num_chipselect || hw->gpios[cs] == -EEXIST)
278 return;
279
280 cspol = spi->mode & SPI_CS_HIGH ? 1 : 0;
281 if (value == BITBANG_CS_INACTIVE)
282 cspol = !cspol;
283
284 gpio_set_value(hw->gpios[cs], cspol);
285}
286
287static irqreturn_t spi_ppc4xx_int(int irq, void *dev_id)
288{
289 struct ppc4xx_spi *hw;
290 u8 status;
291 u8 data;
292 unsigned int count;
293
294 hw = (struct ppc4xx_spi *)dev_id;
295
296 status = in_8(&hw->regs->sr);
297 if (!status)
298 return IRQ_NONE;
299
300 /*
301 * BSY de-asserts one cycle after the transfer is complete. The
302 * interrupt is asserted after the transfer is complete. The exact
303 * relationship is not documented, hence this code.
304 */
305
306 if (unlikely(status & SPI_PPC4XX_SR_BSY)) {
307 u8 lstatus;
308 int cnt = 0;
309
310 dev_dbg(hw->dev, "got interrupt but spi still busy?\n");
311 do {
312 ndelay(10);
313 lstatus = in_8(&hw->regs->sr);
314 } while (++cnt < 100 && lstatus & SPI_PPC4XX_SR_BSY);
315
316 if (cnt >= 100) {
317 dev_err(hw->dev, "busywait: too many loops!\n");
318 complete(&hw->done);
319 return IRQ_HANDLED;
320 } else {
321 /* status is always 1 (RBR) here */
322 status = in_8(&hw->regs->sr);
323 dev_dbg(hw->dev, "loops %d status %x\n", cnt, status);
324 }
325 }
326
327 count = hw->count;
328 hw->count++;
329
330 /* RBR triggered this interrupt. Therefore, data must be ready. */
331 data = in_8(&hw->regs->rxd);
332 if (hw->rx)
333 hw->rx[count] = data;
334
335 count++;
336
337 if (count < hw->len) {
338 data = hw->tx ? hw->tx[count] : 0;
339 out_8(&hw->regs->txd, data);
340 out_8(&hw->regs->cr, SPI_PPC4XX_CR_STR);
341 } else {
342 complete(&hw->done);
343 }
344
345 return IRQ_HANDLED;
346}
347
348static void spi_ppc4xx_cleanup(struct spi_device *spi)
349{
350 kfree(spi->controller_state);
351}
352
353static void spi_ppc4xx_enable(struct ppc4xx_spi *hw)
354{
355 /*
356 * On all 4xx PPC's the SPI bus is shared/multiplexed with
357 * the 2nd I2C bus. We need to enable the the SPI bus before
358 * using it.
359 */
360
361 /* need to clear bit 14 to enable SPC */
362 dcri_clrset(SDR0, SDR0_PFC1, 0x80000000 >> 14, 0);
363}
364
365static void free_gpios(struct ppc4xx_spi *hw)
366{
367 if (hw->master->num_chipselect) {
368 int i;
369 for (i = 0; i < hw->master->num_chipselect; i++)
370 if (gpio_is_valid(hw->gpios[i]))
371 gpio_free(hw->gpios[i]);
372
373 kfree(hw->gpios);
374 hw->gpios = NULL;
375 }
376}
377
378/*
2dc11581 379 * platform_device layer stuff...
44dab88e 380 */
2deff8d6 381static int spi_ppc4xx_of_probe(struct platform_device *op)
44dab88e
SF
382{
383 struct ppc4xx_spi *hw;
384 struct spi_master *master;
385 struct spi_bitbang *bbp;
386 struct resource resource;
b5355078 387 struct device_node *np = op->dev.of_node;
44dab88e
SF
388 struct device *dev = &op->dev;
389 struct device_node *opbnp;
390 int ret;
391 int num_gpios;
392 const unsigned int *clk;
393
394 master = spi_alloc_master(dev, sizeof *hw);
395 if (master == NULL)
396 return -ENOMEM;
12b15e83 397 master->dev.of_node = np;
24b5a82c 398 platform_set_drvdata(op, master);
44dab88e 399 hw = spi_master_get_devdata(master);
94c69f76 400 hw->master = master;
44dab88e
SF
401 hw->dev = dev;
402
403 init_completion(&hw->done);
404
405 /*
406 * A count of zero implies a single SPI device without any chip-select.
407 * Note that of_gpio_count counts all gpios assigned to this spi master.
408 * This includes both "null" gpio's and real ones.
409 */
410 num_gpios = of_gpio_count(np);
e80beb27 411 if (num_gpios > 0) {
44dab88e
SF
412 int i;
413
797236f1 414 hw->gpios = kcalloc(num_gpios, sizeof(*hw->gpios), GFP_KERNEL);
44dab88e
SF
415 if (!hw->gpios) {
416 ret = -ENOMEM;
417 goto free_master;
418 }
419
420 for (i = 0; i < num_gpios; i++) {
421 int gpio;
422 enum of_gpio_flags flags;
423
424 gpio = of_get_gpio_flags(np, i, &flags);
425 hw->gpios[i] = gpio;
426
427 if (gpio_is_valid(gpio)) {
428 /* Real CS - set the initial state. */
429 ret = gpio_request(gpio, np->name);
430 if (ret < 0) {
ffcaef5a
ME
431 dev_err(dev,
432 "can't request gpio #%d: %d\n",
433 i, ret);
44dab88e
SF
434 goto free_gpios;
435 }
436
437 gpio_direction_output(gpio,
438 !!(flags & OF_GPIO_ACTIVE_LOW));
439 } else if (gpio == -EEXIST) {
440 ; /* No CS, but that's OK. */
441 } else {
442 dev_err(dev, "invalid gpio #%d: %d\n", i, gpio);
443 ret = -EINVAL;
444 goto free_gpios;
445 }
446 }
447 }
448
449 /* Setup the state for the bitbang driver */
450 bbp = &hw->bitbang;
451 bbp->master = hw->master;
452 bbp->setup_transfer = spi_ppc4xx_setupxfer;
453 bbp->chipselect = spi_ppc4xx_chipsel;
454 bbp->txrx_bufs = spi_ppc4xx_txrx;
455 bbp->use_dma = 0;
456 bbp->master->setup = spi_ppc4xx_setup;
457 bbp->master->cleanup = spi_ppc4xx_cleanup;
24778be2 458 bbp->master->bits_per_word_mask = SPI_BPW_MASK(8);
44dab88e 459
44dab88e
SF
460 /* the spi->mode bits understood by this driver: */
461 bbp->master->mode_bits =
462 SPI_CPHA | SPI_CPOL | SPI_CS_HIGH | SPI_LSB_FIRST;
463
464 /* this many pins in all GPIO controllers */
e80beb27 465 bbp->master->num_chipselect = num_gpios > 0 ? num_gpios : 0;
44dab88e
SF
466
467 /* Get the clock for the OPB */
468 opbnp = of_find_compatible_node(NULL, NULL, "ibm,opb");
469 if (opbnp == NULL) {
470 dev_err(dev, "OPB: cannot find node\n");
471 ret = -ENODEV;
472 goto free_gpios;
473 }
474 /* Get the clock (Hz) for the OPB */
475 clk = of_get_property(opbnp, "clock-frequency", NULL);
476 if (clk == NULL) {
477 dev_err(dev, "OPB: no clock-frequency property set\n");
478 of_node_put(opbnp);
479 ret = -ENODEV;
480 goto free_gpios;
481 }
482 hw->opb_freq = *clk;
483 hw->opb_freq >>= 2;
484 of_node_put(opbnp);
485
486 ret = of_address_to_resource(np, 0, &resource);
487 if (ret) {
488 dev_err(dev, "error while parsing device node resource\n");
489 goto free_gpios;
490 }
491 hw->mapbase = resource.start;
8e2943c0 492 hw->mapsize = resource_size(&resource);
44dab88e
SF
493
494 /* Sanity check */
495 if (hw->mapsize < sizeof(struct spi_ppc4xx_regs)) {
496 dev_err(dev, "too small to map registers\n");
497 ret = -EINVAL;
498 goto free_gpios;
499 }
500
501 /* Request IRQ */
502 hw->irqnum = irq_of_parse_and_map(np, 0);
503 ret = request_irq(hw->irqnum, spi_ppc4xx_int,
38ada214 504 0, "spi_ppc4xx_of", (void *)hw);
44dab88e
SF
505 if (ret) {
506 dev_err(dev, "unable to allocate interrupt\n");
507 goto free_gpios;
508 }
509
510 if (!request_mem_region(hw->mapbase, hw->mapsize, DRIVER_NAME)) {
511 dev_err(dev, "resource unavailable\n");
512 ret = -EBUSY;
513 goto request_mem_error;
514 }
515
516 hw->regs = ioremap(hw->mapbase, sizeof(struct spi_ppc4xx_regs));
517
518 if (!hw->regs) {
519 dev_err(dev, "unable to memory map registers\n");
520 ret = -ENXIO;
521 goto map_io_error;
522 }
523
524 spi_ppc4xx_enable(hw);
525
526 /* Finally register our spi controller */
527 dev->dma_mask = 0;
528 ret = spi_bitbang_start(bbp);
529 if (ret) {
530 dev_err(dev, "failed to register SPI master\n");
531 goto unmap_regs;
532 }
533
534 dev_info(dev, "driver initialized\n");
44dab88e
SF
535
536 return 0;
537
538unmap_regs:
539 iounmap(hw->regs);
540map_io_error:
541 release_mem_region(hw->mapbase, hw->mapsize);
542request_mem_error:
543 free_irq(hw->irqnum, hw);
544free_gpios:
545 free_gpios(hw);
546free_master:
44dab88e
SF
547 spi_master_put(master);
548
549 dev_err(dev, "initialization failed\n");
550 return ret;
551}
552
2deff8d6 553static int spi_ppc4xx_of_remove(struct platform_device *op)
44dab88e 554{
24b5a82c 555 struct spi_master *master = platform_get_drvdata(op);
44dab88e
SF
556 struct ppc4xx_spi *hw = spi_master_get_devdata(master);
557
558 spi_bitbang_stop(&hw->bitbang);
44dab88e
SF
559 release_mem_region(hw->mapbase, hw->mapsize);
560 free_irq(hw->irqnum, hw);
561 iounmap(hw->regs);
562 free_gpios(hw);
94c69f76 563 spi_master_put(master);
44dab88e
SF
564 return 0;
565}
566
631e61b7 567static const struct of_device_id spi_ppc4xx_of_match[] = {
44dab88e
SF
568 { .compatible = "ibm,ppc4xx-spi", },
569 {},
570};
571
572MODULE_DEVICE_TABLE(of, spi_ppc4xx_of_match);
573
18d306d1 574static struct platform_driver spi_ppc4xx_of_driver = {
44dab88e 575 .probe = spi_ppc4xx_of_probe,
2deff8d6 576 .remove = spi_ppc4xx_of_remove,
44dab88e
SF
577 .driver = {
578 .name = DRIVER_NAME,
4018294b 579 .of_match_table = spi_ppc4xx_of_match,
44dab88e
SF
580 },
581};
940ab889 582module_platform_driver(spi_ppc4xx_of_driver);
44dab88e
SF
583
584MODULE_AUTHOR("Gary Jennejohn & Stefan Roese");
585MODULE_DESCRIPTION("Simple PPC4xx SPI Driver");
586MODULE_LICENSE("GPL");