blob: 590be85c8f3d78d114bdf34819ae688f16c6aa7b [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 Dooks7fba5342006-05-20 15:00:18 -070023
24#include <linux/spi/spi.h>
25#include <linux/spi/spi_bitbang.h>
26
27#include <asm/io.h>
28#include <asm/dma.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010029#include <mach/hardware.h>
Ben Dooks7fba5342006-05-20 15:00:18 -070030
Ben Dooks13622702008-10-30 10:14:38 +000031#include <plat/regs-spi.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010032#include <mach/spi.h>
Ben Dooks7fba5342006-05-20 15:00:18 -070033
34struct s3c24xx_spi {
35 /* bitbang has to be first */
36 struct spi_bitbang bitbang;
37 struct completion done;
38
39 void __iomem *regs;
40 int irq;
41 int len;
42 int count;
43
Arnaud Patard (Rtp6c912a32007-03-16 13:38:36 -080044 void (*set_cs)(struct s3c2410_spi_info *spi,
Ben Dooks8736b922007-01-26 00:56:43 -080045 int cs, int pol);
46
Ben Dooks7fba5342006-05-20 15:00:18 -070047 /* data buffers */
48 const unsigned char *tx;
49 unsigned char *rx;
50
51 struct clk *clk;
52 struct resource *ioarea;
53 struct spi_master *master;
54 struct spi_device *curdev;
55 struct device *dev;
56 struct s3c2410_spi_info *pdata;
57};
58
59#define SPCON_DEFAULT (S3C2410_SPCON_MSTR | S3C2410_SPCON_SMOD_INT)
60#define SPPIN_DEFAULT (S3C2410_SPPIN_KEEP)
61
62static inline struct s3c24xx_spi *to_hw(struct spi_device *sdev)
63{
64 return spi_master_get_devdata(sdev->master);
65}
66
Ben Dooks8736b922007-01-26 00:56:43 -080067static void s3c24xx_spi_gpiocs(struct s3c2410_spi_info *spi, int cs, int pol)
68{
Ben Dooksee9c1fb2009-01-06 14:41:44 -080069 gpio_set_value(spi->pin_cs, pol);
Ben Dooks8736b922007-01-26 00:56:43 -080070}
71
Ben Dooks7fba5342006-05-20 15:00:18 -070072static void s3c24xx_spi_chipsel(struct spi_device *spi, int value)
73{
74 struct s3c24xx_spi *hw = to_hw(spi);
75 unsigned int cspol = spi->mode & SPI_CS_HIGH ? 1 : 0;
76 unsigned int spcon;
77
78 switch (value) {
79 case BITBANG_CS_INACTIVE:
Ben Dooks3d2c5b42007-04-16 22:53:22 -070080 hw->set_cs(hw->pdata, spi->chip_select, cspol^1);
Ben Dooks7fba5342006-05-20 15:00:18 -070081 break;
82
83 case BITBANG_CS_ACTIVE:
84 spcon = readb(hw->regs + S3C2410_SPCON);
85
86 if (spi->mode & SPI_CPHA)
87 spcon |= S3C2410_SPCON_CPHA_FMTB;
88 else
89 spcon &= ~S3C2410_SPCON_CPHA_FMTB;
90
91 if (spi->mode & SPI_CPOL)
92 spcon |= S3C2410_SPCON_CPOL_HIGH;
93 else
94 spcon &= ~S3C2410_SPCON_CPOL_HIGH;
95
96 spcon |= S3C2410_SPCON_ENSCK;
97
98 /* write new configration */
99
100 writeb(spcon, hw->regs + S3C2410_SPCON);
Ben Dooks3d2c5b42007-04-16 22:53:22 -0700101 hw->set_cs(hw->pdata, spi->chip_select, cspol);
Ben Dooks7fba5342006-05-20 15:00:18 -0700102
103 break;
Ben Dooks7fba5342006-05-20 15:00:18 -0700104 }
105}
106
107static int s3c24xx_spi_setupxfer(struct spi_device *spi,
108 struct spi_transfer *t)
109{
110 struct s3c24xx_spi *hw = to_hw(spi);
111 unsigned int bpw;
112 unsigned int hz;
113 unsigned int div;
Ben Dooksb8978782009-08-18 14:11:16 -0700114 unsigned long clk;
Ben Dooks7fba5342006-05-20 15:00:18 -0700115
116 bpw = t ? t->bits_per_word : spi->bits_per_word;
117 hz = t ? t->speed_hz : spi->max_speed_hz;
118
119 if (bpw != 8) {
120 dev_err(&spi->dev, "invalid bits-per-word (%d)\n", bpw);
121 return -EINVAL;
122 }
123
Ben Dooksb8978782009-08-18 14:11:16 -0700124 clk = clk_get_rate(hw->clk);
125 div = DIV_ROUND_UP(clk, hz * 2) - 1;
Ben Dooks7fba5342006-05-20 15:00:18 -0700126
127 if (div > 255)
128 div = 255;
129
Ben Dooksb8978782009-08-18 14:11:16 -0700130 dev_dbg(&spi->dev, "setting pre-scaler to %d (wanted %d, got %ld)\n",
131 div, hz, clk / (2 * (div + 1)));
132
133
Ben Dooks7fba5342006-05-20 15:00:18 -0700134 writeb(div, hw->regs + S3C2410_SPPRE);
135
136 spin_lock(&hw->bitbang.lock);
137 if (!hw->bitbang.busy) {
138 hw->bitbang.chipselect(spi, BITBANG_CS_INACTIVE);
139 /* need to ndelay for 0.5 clocktick ? */
140 }
141 spin_unlock(&hw->bitbang.lock);
142
143 return 0;
144}
145
146static int s3c24xx_spi_setup(struct spi_device *spi)
147{
148 int ret;
149
Ben Dooks7fba5342006-05-20 15:00:18 -0700150 ret = s3c24xx_spi_setupxfer(spi, NULL);
151 if (ret < 0) {
152 dev_err(&spi->dev, "setupxfer returned %d\n", ret);
153 return ret;
154 }
155
Ben Dooks7fba5342006-05-20 15:00:18 -0700156 return 0;
157}
158
159static inline unsigned int hw_txbyte(struct s3c24xx_spi *hw, int count)
160{
David Brownell4b1badf2006-12-29 16:48:39 -0800161 return hw->tx ? hw->tx[count] : 0;
Ben Dooks7fba5342006-05-20 15:00:18 -0700162}
163
164static int s3c24xx_spi_txrx(struct spi_device *spi, struct spi_transfer *t)
165{
166 struct s3c24xx_spi *hw = to_hw(spi);
167
168 dev_dbg(&spi->dev, "txrx: tx %p, rx %p, len %d\n",
169 t->tx_buf, t->rx_buf, t->len);
170
171 hw->tx = t->tx_buf;
172 hw->rx = t->rx_buf;
173 hw->len = t->len;
174 hw->count = 0;
175
Ben Dooks4bb5eba2008-04-15 14:34:44 -0700176 init_completion(&hw->done);
177
Ben Dooks7fba5342006-05-20 15:00:18 -0700178 /* send the first byte */
179 writeb(hw_txbyte(hw, 0), hw->regs + S3C2410_SPTDAT);
Ben Dooks4bb5eba2008-04-15 14:34:44 -0700180
Ben Dooks7fba5342006-05-20 15:00:18 -0700181 wait_for_completion(&hw->done);
182
183 return hw->count;
184}
185
David Howells7d12e782006-10-05 14:55:46 +0100186static irqreturn_t s3c24xx_spi_irq(int irq, void *dev)
Ben Dooks7fba5342006-05-20 15:00:18 -0700187{
188 struct s3c24xx_spi *hw = dev;
189 unsigned int spsta = readb(hw->regs + S3C2410_SPSTA);
190 unsigned int count = hw->count;
191
192 if (spsta & S3C2410_SPSTA_DCOL) {
193 dev_dbg(hw->dev, "data-collision\n");
194 complete(&hw->done);
195 goto irq_done;
196 }
197
198 if (!(spsta & S3C2410_SPSTA_READY)) {
199 dev_dbg(hw->dev, "spi not ready for tx?\n");
200 complete(&hw->done);
201 goto irq_done;
202 }
203
204 hw->count++;
205
206 if (hw->rx)
207 hw->rx[count] = readb(hw->regs + S3C2410_SPRDAT);
208
209 count++;
210
211 if (count < hw->len)
212 writeb(hw_txbyte(hw, count), hw->regs + S3C2410_SPTDAT);
213 else
214 complete(&hw->done);
215
216 irq_done:
217 return IRQ_HANDLED;
218}
219
Ben Dooks5aa6cf32008-08-04 13:41:10 -0700220static void s3c24xx_spi_initialsetup(struct s3c24xx_spi *hw)
221{
222 /* for the moment, permanently enable the clock */
223
224 clk_enable(hw->clk);
225
226 /* program defaults into the registers */
227
228 writeb(0xff, hw->regs + S3C2410_SPPRE);
229 writeb(SPPIN_DEFAULT, hw->regs + S3C2410_SPPIN);
230 writeb(SPCON_DEFAULT, hw->regs + S3C2410_SPCON);
Ben Dookscf46b972008-10-15 22:02:41 -0700231
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800232 if (hw->pdata) {
233 if (hw->set_cs == s3c24xx_spi_gpiocs)
234 gpio_direction_output(hw->pdata->pin_cs, 1);
235
236 if (hw->pdata->gpio_setup)
237 hw->pdata->gpio_setup(hw->pdata, 1);
238 }
Ben Dooks5aa6cf32008-08-04 13:41:10 -0700239}
240
David Brownelld1e44d92007-10-16 01:27:46 -0700241static int __init s3c24xx_spi_probe(struct platform_device *pdev)
Ben Dooks7fba5342006-05-20 15:00:18 -0700242{
Ben Dooks50f426b2008-04-15 14:34:45 -0700243 struct s3c2410_spi_info *pdata;
Ben Dooks7fba5342006-05-20 15:00:18 -0700244 struct s3c24xx_spi *hw;
245 struct spi_master *master;
Ben Dooks7fba5342006-05-20 15:00:18 -0700246 struct resource *res;
247 int err = 0;
Ben Dooks7fba5342006-05-20 15:00:18 -0700248
249 master = spi_alloc_master(&pdev->dev, sizeof(struct s3c24xx_spi));
250 if (master == NULL) {
251 dev_err(&pdev->dev, "No memory for spi_master\n");
252 err = -ENOMEM;
253 goto err_nomem;
254 }
255
256 hw = spi_master_get_devdata(master);
257 memset(hw, 0, sizeof(struct s3c24xx_spi));
258
259 hw->master = spi_master_get(master);
Ben Dooks50f426b2008-04-15 14:34:45 -0700260 hw->pdata = pdata = pdev->dev.platform_data;
Ben Dooks7fba5342006-05-20 15:00:18 -0700261 hw->dev = &pdev->dev;
262
Ben Dooks50f426b2008-04-15 14:34:45 -0700263 if (pdata == NULL) {
Ben Dooks7fba5342006-05-20 15:00:18 -0700264 dev_err(&pdev->dev, "No platform data supplied\n");
265 err = -ENOENT;
266 goto err_no_pdata;
267 }
268
269 platform_set_drvdata(pdev, hw);
270 init_completion(&hw->done);
271
Ben Dooksd1e77802008-04-15 14:34:46 -0700272 /* setup the master state. */
273
David Brownelle7db06b2009-06-17 16:26:04 -0700274 /* the spi->mode bits understood by this driver: */
275 master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH;
276
Ben Dooksd1e77802008-04-15 14:34:46 -0700277 master->num_chipselect = hw->pdata->num_cs;
Ben Dookscb1d0a72008-07-28 15:46:33 -0700278 master->bus_num = pdata->bus_num;
Ben Dooksd1e77802008-04-15 14:34:46 -0700279
Ben Dooks7fba5342006-05-20 15:00:18 -0700280 /* setup the state for the bitbang driver */
281
282 hw->bitbang.master = hw->master;
283 hw->bitbang.setup_transfer = s3c24xx_spi_setupxfer;
284 hw->bitbang.chipselect = s3c24xx_spi_chipsel;
285 hw->bitbang.txrx_bufs = s3c24xx_spi_txrx;
286 hw->bitbang.master->setup = s3c24xx_spi_setup;
287
288 dev_dbg(hw->dev, "bitbang at %p\n", &hw->bitbang);
289
290 /* find and map our resources */
291
292 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
293 if (res == NULL) {
294 dev_err(&pdev->dev, "Cannot get IORESOURCE_MEM\n");
295 err = -ENOENT;
296 goto err_no_iores;
297 }
298
299 hw->ioarea = request_mem_region(res->start, (res->end - res->start)+1,
300 pdev->name);
301
302 if (hw->ioarea == NULL) {
303 dev_err(&pdev->dev, "Cannot reserve region\n");
304 err = -ENXIO;
305 goto err_no_iores;
306 }
307
308 hw->regs = ioremap(res->start, (res->end - res->start)+1);
309 if (hw->regs == NULL) {
310 dev_err(&pdev->dev, "Cannot map IO\n");
311 err = -ENXIO;
312 goto err_no_iomap;
313 }
314
315 hw->irq = platform_get_irq(pdev, 0);
316 if (hw->irq < 0) {
317 dev_err(&pdev->dev, "No IRQ specified\n");
318 err = -ENOENT;
319 goto err_no_irq;
320 }
321
322 err = request_irq(hw->irq, s3c24xx_spi_irq, 0, pdev->name, hw);
323 if (err) {
324 dev_err(&pdev->dev, "Cannot claim IRQ\n");
325 goto err_no_irq;
326 }
327
328 hw->clk = clk_get(&pdev->dev, "spi");
329 if (IS_ERR(hw->clk)) {
330 dev_err(&pdev->dev, "No clock for device\n");
331 err = PTR_ERR(hw->clk);
332 goto err_no_clk;
333 }
334
Ben Dooks7fba5342006-05-20 15:00:18 -0700335 /* setup any gpio we can */
336
Ben Dooks50f426b2008-04-15 14:34:45 -0700337 if (!pdata->set_cs) {
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800338 if (pdata->pin_cs < 0) {
339 dev_err(&pdev->dev, "No chipselect pin\n");
340 goto err_register;
341 }
Ben Dooks8736b922007-01-26 00:56:43 -0800342
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800343 err = gpio_request(pdata->pin_cs, dev_name(&pdev->dev));
344 if (err) {
345 dev_err(&pdev->dev, "Failed to get gpio for cs\n");
346 goto err_register;
347 }
348
349 hw->set_cs = s3c24xx_spi_gpiocs;
350 gpio_direction_output(pdata->pin_cs, 1);
Ben Dooks8736b922007-01-26 00:56:43 -0800351 } else
Ben Dooks50f426b2008-04-15 14:34:45 -0700352 hw->set_cs = pdata->set_cs;
Ben Dooks7fba5342006-05-20 15:00:18 -0700353
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800354 s3c24xx_spi_initialsetup(hw);
355
Ben Dooks7fba5342006-05-20 15:00:18 -0700356 /* register our spi controller */
357
358 err = spi_bitbang_start(&hw->bitbang);
359 if (err) {
360 dev_err(&pdev->dev, "Failed to register SPI master\n");
361 goto err_register;
362 }
363
Ben Dooks7fba5342006-05-20 15:00:18 -0700364 return 0;
365
366 err_register:
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800367 if (hw->set_cs == s3c24xx_spi_gpiocs)
368 gpio_free(pdata->pin_cs);
369
Ben Dooks7fba5342006-05-20 15:00:18 -0700370 clk_disable(hw->clk);
371 clk_put(hw->clk);
372
373 err_no_clk:
374 free_irq(hw->irq, hw);
375
376 err_no_irq:
377 iounmap(hw->regs);
378
379 err_no_iomap:
380 release_resource(hw->ioarea);
381 kfree(hw->ioarea);
382
383 err_no_iores:
384 err_no_pdata:
385 spi_master_put(hw->master);;
386
387 err_nomem:
388 return err;
389}
390
David Brownelld1e44d92007-10-16 01:27:46 -0700391static int __exit s3c24xx_spi_remove(struct platform_device *dev)
Ben Dooks7fba5342006-05-20 15:00:18 -0700392{
393 struct s3c24xx_spi *hw = platform_get_drvdata(dev);
394
395 platform_set_drvdata(dev, NULL);
396
397 spi_unregister_master(hw->master);
398
399 clk_disable(hw->clk);
400 clk_put(hw->clk);
401
402 free_irq(hw->irq, hw);
403 iounmap(hw->regs);
404
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800405 if (hw->set_cs == s3c24xx_spi_gpiocs)
406 gpio_free(hw->pdata->pin_cs);
407
Ben Dooks7fba5342006-05-20 15:00:18 -0700408 release_resource(hw->ioarea);
409 kfree(hw->ioarea);
410
411 spi_master_put(hw->master);
412 return 0;
413}
414
415
416#ifdef CONFIG_PM
417
418static int s3c24xx_spi_suspend(struct platform_device *pdev, pm_message_t msg)
419{
Ben Dooksac88bcf2006-05-25 18:44:25 -0700420 struct s3c24xx_spi *hw = platform_get_drvdata(pdev);
Ben Dooks7fba5342006-05-20 15:00:18 -0700421
Ben Dookscf46b972008-10-15 22:02:41 -0700422 if (hw->pdata && hw->pdata->gpio_setup)
423 hw->pdata->gpio_setup(hw->pdata, 0);
424
Ben Dooks7fba5342006-05-20 15:00:18 -0700425 clk_disable(hw->clk);
426 return 0;
427}
428
429static int s3c24xx_spi_resume(struct platform_device *pdev)
430{
Ben Dooksac88bcf2006-05-25 18:44:25 -0700431 struct s3c24xx_spi *hw = platform_get_drvdata(pdev);
Ben Dooks7fba5342006-05-20 15:00:18 -0700432
Ben Dooks5aa6cf32008-08-04 13:41:10 -0700433 s3c24xx_spi_initialsetup(hw);
Ben Dooks7fba5342006-05-20 15:00:18 -0700434 return 0;
435}
436
437#else
438#define s3c24xx_spi_suspend NULL
439#define s3c24xx_spi_resume NULL
440#endif
441
Kay Sievers7e38c3c2008-04-10 21:29:20 -0700442MODULE_ALIAS("platform:s3c2410-spi");
Ben Dooks42cde432008-09-13 02:33:24 -0700443static struct platform_driver s3c24xx_spi_driver = {
David Brownelld1e44d92007-10-16 01:27:46 -0700444 .remove = __exit_p(s3c24xx_spi_remove),
Ben Dooks7fba5342006-05-20 15:00:18 -0700445 .suspend = s3c24xx_spi_suspend,
446 .resume = s3c24xx_spi_resume,
447 .driver = {
448 .name = "s3c2410-spi",
449 .owner = THIS_MODULE,
450 },
451};
452
453static int __init s3c24xx_spi_init(void)
454{
Ben Dooks42cde432008-09-13 02:33:24 -0700455 return platform_driver_probe(&s3c24xx_spi_driver, s3c24xx_spi_probe);
Ben Dooks7fba5342006-05-20 15:00:18 -0700456}
457
458static void __exit s3c24xx_spi_exit(void)
459{
Ben Dooks42cde432008-09-13 02:33:24 -0700460 platform_driver_unregister(&s3c24xx_spi_driver);
Ben Dooks7fba5342006-05-20 15:00:18 -0700461}
462
463module_init(s3c24xx_spi_init);
464module_exit(s3c24xx_spi_exit);
465
466MODULE_DESCRIPTION("S3C24XX SPI Driver");
467MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>");
468MODULE_LICENSE("GPL");