blob: 03695b67ebd5484f0256eb0dae9ffcce09fce956 [file] [log] [blame]
Ben Dooks7fba5342006-05-20 15:00:18 -07001/* linux/drivers/spi/spi_s3c24xx.c
2 *
3 * Copyright (c) 2006 Ben Dooks
4 * Copyright (c) 2006 Simtec Electronics
5 * Ben Dooks <ben@simtec.co.uk>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11*/
12
Ben Dooks7fba5342006-05-20 15:00:18 -070013#include <linux/init.h>
14#include <linux/spinlock.h>
15#include <linux/workqueue.h>
16#include <linux/interrupt.h>
17#include <linux/delay.h>
18#include <linux/errno.h>
19#include <linux/err.h>
20#include <linux/clk.h>
21#include <linux/platform_device.h>
Ben Dooksee9c1fb2009-01-06 14:41:44 -080022#include <linux/gpio.h>
Ben Dooks1a0c2202009-09-22 16:46:12 -070023#include <linux/io.h>
Ben Dooks7fba5342006-05-20 15:00:18 -070024
25#include <linux/spi/spi.h>
26#include <linux/spi/spi_bitbang.h>
27
Ben Dooks13622702008-10-30 10:14:38 +000028#include <plat/regs-spi.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010029#include <mach/spi.h>
Ben Dooks7fba5342006-05-20 15:00:18 -070030
31struct s3c24xx_spi {
32 /* bitbang has to be first */
33 struct spi_bitbang bitbang;
34 struct completion done;
35
36 void __iomem *regs;
37 int irq;
38 int len;
39 int count;
40
Arnaud Patard (Rtp6c912a32007-03-16 13:38:36 -080041 void (*set_cs)(struct s3c2410_spi_info *spi,
Ben Dooks8736b922007-01-26 00:56:43 -080042 int cs, int pol);
43
Ben Dooks7fba5342006-05-20 15:00:18 -070044 /* data buffers */
45 const unsigned char *tx;
46 unsigned char *rx;
47
48 struct clk *clk;
49 struct resource *ioarea;
50 struct spi_master *master;
51 struct spi_device *curdev;
52 struct device *dev;
53 struct s3c2410_spi_info *pdata;
54};
55
56#define SPCON_DEFAULT (S3C2410_SPCON_MSTR | S3C2410_SPCON_SMOD_INT)
57#define SPPIN_DEFAULT (S3C2410_SPPIN_KEEP)
58
59static inline struct s3c24xx_spi *to_hw(struct spi_device *sdev)
60{
61 return spi_master_get_devdata(sdev->master);
62}
63
Ben Dooks8736b922007-01-26 00:56:43 -080064static void s3c24xx_spi_gpiocs(struct s3c2410_spi_info *spi, int cs, int pol)
65{
Ben Dooksee9c1fb2009-01-06 14:41:44 -080066 gpio_set_value(spi->pin_cs, pol);
Ben Dooks8736b922007-01-26 00:56:43 -080067}
68
Ben Dooks7fba5342006-05-20 15:00:18 -070069static void s3c24xx_spi_chipsel(struct spi_device *spi, int value)
70{
71 struct s3c24xx_spi *hw = to_hw(spi);
72 unsigned int cspol = spi->mode & SPI_CS_HIGH ? 1 : 0;
73 unsigned int spcon;
74
75 switch (value) {
76 case BITBANG_CS_INACTIVE:
Ben Dooks3d2c5b42007-04-16 22:53:22 -070077 hw->set_cs(hw->pdata, spi->chip_select, cspol^1);
Ben Dooks7fba5342006-05-20 15:00:18 -070078 break;
79
80 case BITBANG_CS_ACTIVE:
81 spcon = readb(hw->regs + S3C2410_SPCON);
82
83 if (spi->mode & SPI_CPHA)
84 spcon |= S3C2410_SPCON_CPHA_FMTB;
85 else
86 spcon &= ~S3C2410_SPCON_CPHA_FMTB;
87
88 if (spi->mode & SPI_CPOL)
89 spcon |= S3C2410_SPCON_CPOL_HIGH;
90 else
91 spcon &= ~S3C2410_SPCON_CPOL_HIGH;
92
93 spcon |= S3C2410_SPCON_ENSCK;
94
95 /* write new configration */
96
97 writeb(spcon, hw->regs + S3C2410_SPCON);
Ben Dooks3d2c5b42007-04-16 22:53:22 -070098 hw->set_cs(hw->pdata, spi->chip_select, cspol);
Ben Dooks7fba5342006-05-20 15:00:18 -070099
100 break;
Ben Dooks7fba5342006-05-20 15:00:18 -0700101 }
102}
103
104static int s3c24xx_spi_setupxfer(struct spi_device *spi,
105 struct spi_transfer *t)
106{
107 struct s3c24xx_spi *hw = to_hw(spi);
108 unsigned int bpw;
109 unsigned int hz;
110 unsigned int div;
Ben Dooksb8978782009-08-18 14:11:16 -0700111 unsigned long clk;
Ben Dooks7fba5342006-05-20 15:00:18 -0700112
113 bpw = t ? t->bits_per_word : spi->bits_per_word;
114 hz = t ? t->speed_hz : spi->max_speed_hz;
115
Ben Dooks19152972009-08-18 14:11:17 -0700116 if (!bpw)
117 bpw = 8;
118
119 if (!hz)
120 hz = spi->max_speed_hz;
121
Ben Dooks7fba5342006-05-20 15:00:18 -0700122 if (bpw != 8) {
123 dev_err(&spi->dev, "invalid bits-per-word (%d)\n", bpw);
124 return -EINVAL;
125 }
126
Ben Dooksb8978782009-08-18 14:11:16 -0700127 clk = clk_get_rate(hw->clk);
128 div = DIV_ROUND_UP(clk, hz * 2) - 1;
Ben Dooks7fba5342006-05-20 15:00:18 -0700129
130 if (div > 255)
131 div = 255;
132
Ben Dooksb8978782009-08-18 14:11:16 -0700133 dev_dbg(&spi->dev, "setting pre-scaler to %d (wanted %d, got %ld)\n",
134 div, hz, clk / (2 * (div + 1)));
135
136
Ben Dooks7fba5342006-05-20 15:00:18 -0700137 writeb(div, hw->regs + S3C2410_SPPRE);
138
139 spin_lock(&hw->bitbang.lock);
140 if (!hw->bitbang.busy) {
141 hw->bitbang.chipselect(spi, BITBANG_CS_INACTIVE);
142 /* need to ndelay for 0.5 clocktick ? */
143 }
144 spin_unlock(&hw->bitbang.lock);
145
146 return 0;
147}
148
149static int s3c24xx_spi_setup(struct spi_device *spi)
150{
151 int ret;
152
Ben Dooks7fba5342006-05-20 15:00:18 -0700153 ret = s3c24xx_spi_setupxfer(spi, NULL);
154 if (ret < 0) {
155 dev_err(&spi->dev, "setupxfer returned %d\n", ret);
156 return ret;
157 }
158
Ben Dooks7fba5342006-05-20 15:00:18 -0700159 return 0;
160}
161
162static inline unsigned int hw_txbyte(struct s3c24xx_spi *hw, int count)
163{
David Brownell4b1badf2006-12-29 16:48:39 -0800164 return hw->tx ? hw->tx[count] : 0;
Ben Dooks7fba5342006-05-20 15:00:18 -0700165}
166
167static int s3c24xx_spi_txrx(struct spi_device *spi, struct spi_transfer *t)
168{
169 struct s3c24xx_spi *hw = to_hw(spi);
170
171 dev_dbg(&spi->dev, "txrx: tx %p, rx %p, len %d\n",
172 t->tx_buf, t->rx_buf, t->len);
173
174 hw->tx = t->tx_buf;
175 hw->rx = t->rx_buf;
176 hw->len = t->len;
177 hw->count = 0;
178
Ben Dooks4bb5eba2008-04-15 14:34:44 -0700179 init_completion(&hw->done);
180
Ben Dooks7fba5342006-05-20 15:00:18 -0700181 /* send the first byte */
182 writeb(hw_txbyte(hw, 0), hw->regs + S3C2410_SPTDAT);
Ben Dooks4bb5eba2008-04-15 14:34:44 -0700183
Ben Dooks7fba5342006-05-20 15:00:18 -0700184 wait_for_completion(&hw->done);
185
186 return hw->count;
187}
188
David Howells7d12e782006-10-05 14:55:46 +0100189static irqreturn_t s3c24xx_spi_irq(int irq, void *dev)
Ben Dooks7fba5342006-05-20 15:00:18 -0700190{
191 struct s3c24xx_spi *hw = dev;
192 unsigned int spsta = readb(hw->regs + S3C2410_SPSTA);
193 unsigned int count = hw->count;
194
195 if (spsta & S3C2410_SPSTA_DCOL) {
196 dev_dbg(hw->dev, "data-collision\n");
197 complete(&hw->done);
198 goto irq_done;
199 }
200
201 if (!(spsta & S3C2410_SPSTA_READY)) {
202 dev_dbg(hw->dev, "spi not ready for tx?\n");
203 complete(&hw->done);
204 goto irq_done;
205 }
206
207 hw->count++;
208
209 if (hw->rx)
210 hw->rx[count] = readb(hw->regs + S3C2410_SPRDAT);
211
212 count++;
213
214 if (count < hw->len)
215 writeb(hw_txbyte(hw, count), hw->regs + S3C2410_SPTDAT);
216 else
217 complete(&hw->done);
218
219 irq_done:
220 return IRQ_HANDLED;
221}
222
Ben Dooks5aa6cf32008-08-04 13:41:10 -0700223static void s3c24xx_spi_initialsetup(struct s3c24xx_spi *hw)
224{
225 /* for the moment, permanently enable the clock */
226
227 clk_enable(hw->clk);
228
229 /* program defaults into the registers */
230
231 writeb(0xff, hw->regs + S3C2410_SPPRE);
232 writeb(SPPIN_DEFAULT, hw->regs + S3C2410_SPPIN);
233 writeb(SPCON_DEFAULT, hw->regs + S3C2410_SPCON);
Ben Dookscf46b972008-10-15 22:02:41 -0700234
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800235 if (hw->pdata) {
236 if (hw->set_cs == s3c24xx_spi_gpiocs)
237 gpio_direction_output(hw->pdata->pin_cs, 1);
238
239 if (hw->pdata->gpio_setup)
240 hw->pdata->gpio_setup(hw->pdata, 1);
241 }
Ben Dooks5aa6cf32008-08-04 13:41:10 -0700242}
243
David Brownelld1e44d92007-10-16 01:27:46 -0700244static int __init s3c24xx_spi_probe(struct platform_device *pdev)
Ben Dooks7fba5342006-05-20 15:00:18 -0700245{
Ben Dooks50f426b2008-04-15 14:34:45 -0700246 struct s3c2410_spi_info *pdata;
Ben Dooks7fba5342006-05-20 15:00:18 -0700247 struct s3c24xx_spi *hw;
248 struct spi_master *master;
Ben Dooks7fba5342006-05-20 15:00:18 -0700249 struct resource *res;
250 int err = 0;
Ben Dooks7fba5342006-05-20 15:00:18 -0700251
252 master = spi_alloc_master(&pdev->dev, sizeof(struct s3c24xx_spi));
253 if (master == NULL) {
254 dev_err(&pdev->dev, "No memory for spi_master\n");
255 err = -ENOMEM;
256 goto err_nomem;
257 }
258
259 hw = spi_master_get_devdata(master);
260 memset(hw, 0, sizeof(struct s3c24xx_spi));
261
262 hw->master = spi_master_get(master);
Ben Dooks50f426b2008-04-15 14:34:45 -0700263 hw->pdata = pdata = pdev->dev.platform_data;
Ben Dooks7fba5342006-05-20 15:00:18 -0700264 hw->dev = &pdev->dev;
265
Ben Dooks50f426b2008-04-15 14:34:45 -0700266 if (pdata == NULL) {
Ben Dooks7fba5342006-05-20 15:00:18 -0700267 dev_err(&pdev->dev, "No platform data supplied\n");
268 err = -ENOENT;
269 goto err_no_pdata;
270 }
271
272 platform_set_drvdata(pdev, hw);
273 init_completion(&hw->done);
274
Ben Dooksd1e77802008-04-15 14:34:46 -0700275 /* setup the master state. */
276
David Brownelle7db06b2009-06-17 16:26:04 -0700277 /* the spi->mode bits understood by this driver: */
278 master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH;
279
Ben Dooksd1e77802008-04-15 14:34:46 -0700280 master->num_chipselect = hw->pdata->num_cs;
Ben Dookscb1d0a72008-07-28 15:46:33 -0700281 master->bus_num = pdata->bus_num;
Ben Dooksd1e77802008-04-15 14:34:46 -0700282
Ben Dooks7fba5342006-05-20 15:00:18 -0700283 /* setup the state for the bitbang driver */
284
285 hw->bitbang.master = hw->master;
286 hw->bitbang.setup_transfer = s3c24xx_spi_setupxfer;
287 hw->bitbang.chipselect = s3c24xx_spi_chipsel;
288 hw->bitbang.txrx_bufs = s3c24xx_spi_txrx;
289 hw->bitbang.master->setup = s3c24xx_spi_setup;
290
291 dev_dbg(hw->dev, "bitbang at %p\n", &hw->bitbang);
292
293 /* find and map our resources */
294
295 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
296 if (res == NULL) {
297 dev_err(&pdev->dev, "Cannot get IORESOURCE_MEM\n");
298 err = -ENOENT;
299 goto err_no_iores;
300 }
301
Ben Dooksb5e3afb2009-09-22 16:46:13 -0700302 hw->ioarea = request_mem_region(res->start, resource_size(res),
Ben Dooks7fba5342006-05-20 15:00:18 -0700303 pdev->name);
304
305 if (hw->ioarea == NULL) {
306 dev_err(&pdev->dev, "Cannot reserve region\n");
307 err = -ENXIO;
308 goto err_no_iores;
309 }
310
Ben Dooksb5e3afb2009-09-22 16:46:13 -0700311 hw->regs = ioremap(res->start, resource_size(res));
Ben Dooks7fba5342006-05-20 15:00:18 -0700312 if (hw->regs == NULL) {
313 dev_err(&pdev->dev, "Cannot map IO\n");
314 err = -ENXIO;
315 goto err_no_iomap;
316 }
317
318 hw->irq = platform_get_irq(pdev, 0);
319 if (hw->irq < 0) {
320 dev_err(&pdev->dev, "No IRQ specified\n");
321 err = -ENOENT;
322 goto err_no_irq;
323 }
324
325 err = request_irq(hw->irq, s3c24xx_spi_irq, 0, pdev->name, hw);
326 if (err) {
327 dev_err(&pdev->dev, "Cannot claim IRQ\n");
328 goto err_no_irq;
329 }
330
331 hw->clk = clk_get(&pdev->dev, "spi");
332 if (IS_ERR(hw->clk)) {
333 dev_err(&pdev->dev, "No clock for device\n");
334 err = PTR_ERR(hw->clk);
335 goto err_no_clk;
336 }
337
Ben Dooks7fba5342006-05-20 15:00:18 -0700338 /* setup any gpio we can */
339
Ben Dooks50f426b2008-04-15 14:34:45 -0700340 if (!pdata->set_cs) {
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800341 if (pdata->pin_cs < 0) {
342 dev_err(&pdev->dev, "No chipselect pin\n");
343 goto err_register;
344 }
Ben Dooks8736b922007-01-26 00:56:43 -0800345
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800346 err = gpio_request(pdata->pin_cs, dev_name(&pdev->dev));
347 if (err) {
348 dev_err(&pdev->dev, "Failed to get gpio for cs\n");
349 goto err_register;
350 }
351
352 hw->set_cs = s3c24xx_spi_gpiocs;
353 gpio_direction_output(pdata->pin_cs, 1);
Ben Dooks8736b922007-01-26 00:56:43 -0800354 } else
Ben Dooks50f426b2008-04-15 14:34:45 -0700355 hw->set_cs = pdata->set_cs;
Ben Dooks7fba5342006-05-20 15:00:18 -0700356
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800357 s3c24xx_spi_initialsetup(hw);
358
Ben Dooks7fba5342006-05-20 15:00:18 -0700359 /* register our spi controller */
360
361 err = spi_bitbang_start(&hw->bitbang);
362 if (err) {
363 dev_err(&pdev->dev, "Failed to register SPI master\n");
364 goto err_register;
365 }
366
Ben Dooks7fba5342006-05-20 15:00:18 -0700367 return 0;
368
369 err_register:
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800370 if (hw->set_cs == s3c24xx_spi_gpiocs)
371 gpio_free(pdata->pin_cs);
372
Ben Dooks7fba5342006-05-20 15:00:18 -0700373 clk_disable(hw->clk);
374 clk_put(hw->clk);
375
376 err_no_clk:
377 free_irq(hw->irq, hw);
378
379 err_no_irq:
380 iounmap(hw->regs);
381
382 err_no_iomap:
383 release_resource(hw->ioarea);
384 kfree(hw->ioarea);
385
386 err_no_iores:
387 err_no_pdata:
Joe Perchesa419aef2009-08-18 11:18:35 -0700388 spi_master_put(hw->master);
Ben Dooks7fba5342006-05-20 15:00:18 -0700389
390 err_nomem:
391 return err;
392}
393
David Brownelld1e44d92007-10-16 01:27:46 -0700394static int __exit s3c24xx_spi_remove(struct platform_device *dev)
Ben Dooks7fba5342006-05-20 15:00:18 -0700395{
396 struct s3c24xx_spi *hw = platform_get_drvdata(dev);
397
398 platform_set_drvdata(dev, NULL);
399
400 spi_unregister_master(hw->master);
401
402 clk_disable(hw->clk);
403 clk_put(hw->clk);
404
405 free_irq(hw->irq, hw);
406 iounmap(hw->regs);
407
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800408 if (hw->set_cs == s3c24xx_spi_gpiocs)
409 gpio_free(hw->pdata->pin_cs);
410
Ben Dooks7fba5342006-05-20 15:00:18 -0700411 release_resource(hw->ioarea);
412 kfree(hw->ioarea);
413
414 spi_master_put(hw->master);
415 return 0;
416}
417
418
419#ifdef CONFIG_PM
420
Ben Dooks6d613202009-09-22 16:46:13 -0700421static int s3c24xx_spi_suspend(struct device *dev)
Ben Dooks7fba5342006-05-20 15:00:18 -0700422{
Ben Dooks6d613202009-09-22 16:46:13 -0700423 struct s3c24xx_spi *hw = platform_get_drvdata(to_platform_device(dev));
Ben Dooks7fba5342006-05-20 15:00:18 -0700424
Ben Dookscf46b972008-10-15 22:02:41 -0700425 if (hw->pdata && hw->pdata->gpio_setup)
426 hw->pdata->gpio_setup(hw->pdata, 0);
427
Ben Dooks7fba5342006-05-20 15:00:18 -0700428 clk_disable(hw->clk);
429 return 0;
430}
431
Ben Dooks6d613202009-09-22 16:46:13 -0700432static int s3c24xx_spi_resume(struct device *dev)
Ben Dooks7fba5342006-05-20 15:00:18 -0700433{
Ben Dooks6d613202009-09-22 16:46:13 -0700434 struct s3c24xx_spi *hw = platform_get_drvdata(to_platform_device(dev));
Ben Dooks7fba5342006-05-20 15:00:18 -0700435
Ben Dooks5aa6cf32008-08-04 13:41:10 -0700436 s3c24xx_spi_initialsetup(hw);
Ben Dooks7fba5342006-05-20 15:00:18 -0700437 return 0;
438}
439
Ben Dooks6d613202009-09-22 16:46:13 -0700440static struct dev_pm_ops s3c24xx_spi_pmops = {
441 .suspend = s3c24xx_spi_suspend,
442 .resume = s3c24xx_spi_resume,
443};
444
445#define S3C24XX_SPI_PMOPS &s3c24xx_spi_pmops
Ben Dooks7fba5342006-05-20 15:00:18 -0700446#else
Ben Dooks6d613202009-09-22 16:46:13 -0700447#define S3C24XX_SPI_PMOPS NULL
448#endif /* CONFIG_PM */
Ben Dooks7fba5342006-05-20 15:00:18 -0700449
Kay Sievers7e38c3c2008-04-10 21:29:20 -0700450MODULE_ALIAS("platform:s3c2410-spi");
Ben Dooks42cde432008-09-13 02:33:24 -0700451static struct platform_driver s3c24xx_spi_driver = {
David Brownelld1e44d92007-10-16 01:27:46 -0700452 .remove = __exit_p(s3c24xx_spi_remove),
Ben Dooks7fba5342006-05-20 15:00:18 -0700453 .driver = {
454 .name = "s3c2410-spi",
455 .owner = THIS_MODULE,
Ben Dooks6d613202009-09-22 16:46:13 -0700456 .pm = S3C24XX_SPI_PMOPS,
Ben Dooks7fba5342006-05-20 15:00:18 -0700457 },
458};
459
460static int __init s3c24xx_spi_init(void)
461{
Ben Dooks42cde432008-09-13 02:33:24 -0700462 return platform_driver_probe(&s3c24xx_spi_driver, s3c24xx_spi_probe);
Ben Dooks7fba5342006-05-20 15:00:18 -0700463}
464
465static void __exit s3c24xx_spi_exit(void)
466{
Ben Dooks42cde432008-09-13 02:33:24 -0700467 platform_driver_unregister(&s3c24xx_spi_driver);
Ben Dooks7fba5342006-05-20 15:00:18 -0700468}
469
470module_init(s3c24xx_spi_init);
471module_exit(s3c24xx_spi_exit);
472
473MODULE_DESCRIPTION("S3C24XX SPI Driver");
474MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>");
475MODULE_LICENSE("GPL");