Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial
[linux-2.6-block.git] / drivers / spi / spi_s3c24xx.c
CommitLineData
7fba5340
BD
1/* 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
7fba5340
BD
13#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>
ee9c1fbf 22#include <linux/gpio.h>
7fba5340
BD
23
24#include <linux/spi/spi.h>
25#include <linux/spi/spi_bitbang.h>
26
27#include <asm/io.h>
28#include <asm/dma.h>
a09e64fb 29#include <mach/hardware.h>
7fba5340 30
13622708 31#include <plat/regs-spi.h>
a09e64fb 32#include <mach/spi.h>
7fba5340
BD
33
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
6c912a3d 44 void (*set_cs)(struct s3c2410_spi_info *spi,
8736b927
BD
45 int cs, int pol);
46
7fba5340
BD
47 /* 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
8736b927
BD
67static void s3c24xx_spi_gpiocs(struct s3c2410_spi_info *spi, int cs, int pol)
68{
ee9c1fbf 69 gpio_set_value(spi->pin_cs, pol);
8736b927
BD
70}
71
7fba5340
BD
72static 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:
3d2c5b41 80 hw->set_cs(hw->pdata, spi->chip_select, cspol^1);
7fba5340
BD
81 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);
3d2c5b41 101 hw->set_cs(hw->pdata, spi->chip_select, cspol);
7fba5340
BD
102
103 break;
7fba5340
BD
104 }
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;
b8978784 114 unsigned long clk;
7fba5340
BD
115
116 bpw = t ? t->bits_per_word : spi->bits_per_word;
117 hz = t ? t->speed_hz : spi->max_speed_hz;
118
19152975
BD
119 if (!bpw)
120 bpw = 8;
121
122 if (!hz)
123 hz = spi->max_speed_hz;
124
7fba5340
BD
125 if (bpw != 8) {
126 dev_err(&spi->dev, "invalid bits-per-word (%d)\n", bpw);
127 return -EINVAL;
128 }
129
b8978784
BD
130 clk = clk_get_rate(hw->clk);
131 div = DIV_ROUND_UP(clk, hz * 2) - 1;
7fba5340
BD
132
133 if (div > 255)
134 div = 255;
135
b8978784
BD
136 dev_dbg(&spi->dev, "setting pre-scaler to %d (wanted %d, got %ld)\n",
137 div, hz, clk / (2 * (div + 1)));
138
139
7fba5340
BD
140 writeb(div, hw->regs + S3C2410_SPPRE);
141
142 spin_lock(&hw->bitbang.lock);
143 if (!hw->bitbang.busy) {
144 hw->bitbang.chipselect(spi, BITBANG_CS_INACTIVE);
145 /* need to ndelay for 0.5 clocktick ? */
146 }
147 spin_unlock(&hw->bitbang.lock);
148
149 return 0;
150}
151
152static int s3c24xx_spi_setup(struct spi_device *spi)
153{
154 int ret;
155
7fba5340
BD
156 ret = s3c24xx_spi_setupxfer(spi, NULL);
157 if (ret < 0) {
158 dev_err(&spi->dev, "setupxfer returned %d\n", ret);
159 return ret;
160 }
161
7fba5340
BD
162 return 0;
163}
164
165static inline unsigned int hw_txbyte(struct s3c24xx_spi *hw, int count)
166{
4b1badf5 167 return hw->tx ? hw->tx[count] : 0;
7fba5340
BD
168}
169
170static int s3c24xx_spi_txrx(struct spi_device *spi, struct spi_transfer *t)
171{
172 struct s3c24xx_spi *hw = to_hw(spi);
173
174 dev_dbg(&spi->dev, "txrx: tx %p, rx %p, len %d\n",
175 t->tx_buf, t->rx_buf, t->len);
176
177 hw->tx = t->tx_buf;
178 hw->rx = t->rx_buf;
179 hw->len = t->len;
180 hw->count = 0;
181
4bb5eba0
BD
182 init_completion(&hw->done);
183
7fba5340
BD
184 /* send the first byte */
185 writeb(hw_txbyte(hw, 0), hw->regs + S3C2410_SPTDAT);
4bb5eba0 186
7fba5340
BD
187 wait_for_completion(&hw->done);
188
189 return hw->count;
190}
191
7d12e780 192static irqreturn_t s3c24xx_spi_irq(int irq, void *dev)
7fba5340
BD
193{
194 struct s3c24xx_spi *hw = dev;
195 unsigned int spsta = readb(hw->regs + S3C2410_SPSTA);
196 unsigned int count = hw->count;
197
198 if (spsta & S3C2410_SPSTA_DCOL) {
199 dev_dbg(hw->dev, "data-collision\n");
200 complete(&hw->done);
201 goto irq_done;
202 }
203
204 if (!(spsta & S3C2410_SPSTA_READY)) {
205 dev_dbg(hw->dev, "spi not ready for tx?\n");
206 complete(&hw->done);
207 goto irq_done;
208 }
209
210 hw->count++;
211
212 if (hw->rx)
213 hw->rx[count] = readb(hw->regs + S3C2410_SPRDAT);
214
215 count++;
216
217 if (count < hw->len)
218 writeb(hw_txbyte(hw, count), hw->regs + S3C2410_SPTDAT);
219 else
220 complete(&hw->done);
221
222 irq_done:
223 return IRQ_HANDLED;
224}
225
5aa6cf30
BD
226static void s3c24xx_spi_initialsetup(struct s3c24xx_spi *hw)
227{
228 /* for the moment, permanently enable the clock */
229
230 clk_enable(hw->clk);
231
232 /* program defaults into the registers */
233
234 writeb(0xff, hw->regs + S3C2410_SPPRE);
235 writeb(SPPIN_DEFAULT, hw->regs + S3C2410_SPPIN);
236 writeb(SPCON_DEFAULT, hw->regs + S3C2410_SPCON);
cf46b973 237
ee9c1fbf
BD
238 if (hw->pdata) {
239 if (hw->set_cs == s3c24xx_spi_gpiocs)
240 gpio_direction_output(hw->pdata->pin_cs, 1);
241
242 if (hw->pdata->gpio_setup)
243 hw->pdata->gpio_setup(hw->pdata, 1);
244 }
5aa6cf30
BD
245}
246
d1e44d9c 247static int __init s3c24xx_spi_probe(struct platform_device *pdev)
7fba5340 248{
50f426b5 249 struct s3c2410_spi_info *pdata;
7fba5340
BD
250 struct s3c24xx_spi *hw;
251 struct spi_master *master;
7fba5340
BD
252 struct resource *res;
253 int err = 0;
7fba5340
BD
254
255 master = spi_alloc_master(&pdev->dev, sizeof(struct s3c24xx_spi));
256 if (master == NULL) {
257 dev_err(&pdev->dev, "No memory for spi_master\n");
258 err = -ENOMEM;
259 goto err_nomem;
260 }
261
262 hw = spi_master_get_devdata(master);
263 memset(hw, 0, sizeof(struct s3c24xx_spi));
264
265 hw->master = spi_master_get(master);
50f426b5 266 hw->pdata = pdata = pdev->dev.platform_data;
7fba5340
BD
267 hw->dev = &pdev->dev;
268
50f426b5 269 if (pdata == NULL) {
7fba5340
BD
270 dev_err(&pdev->dev, "No platform data supplied\n");
271 err = -ENOENT;
272 goto err_no_pdata;
273 }
274
275 platform_set_drvdata(pdev, hw);
276 init_completion(&hw->done);
277
d1e77806
BD
278 /* setup the master state. */
279
e7db06b5
DB
280 /* the spi->mode bits understood by this driver: */
281 master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH;
282
d1e77806 283 master->num_chipselect = hw->pdata->num_cs;
cb1d0a7a 284 master->bus_num = pdata->bus_num;
d1e77806 285
7fba5340
BD
286 /* setup the state for the bitbang driver */
287
288 hw->bitbang.master = hw->master;
289 hw->bitbang.setup_transfer = s3c24xx_spi_setupxfer;
290 hw->bitbang.chipselect = s3c24xx_spi_chipsel;
291 hw->bitbang.txrx_bufs = s3c24xx_spi_txrx;
292 hw->bitbang.master->setup = s3c24xx_spi_setup;
293
294 dev_dbg(hw->dev, "bitbang at %p\n", &hw->bitbang);
295
296 /* find and map our resources */
297
298 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
299 if (res == NULL) {
300 dev_err(&pdev->dev, "Cannot get IORESOURCE_MEM\n");
301 err = -ENOENT;
302 goto err_no_iores;
303 }
304
305 hw->ioarea = request_mem_region(res->start, (res->end - res->start)+1,
306 pdev->name);
307
308 if (hw->ioarea == NULL) {
309 dev_err(&pdev->dev, "Cannot reserve region\n");
310 err = -ENXIO;
311 goto err_no_iores;
312 }
313
314 hw->regs = ioremap(res->start, (res->end - res->start)+1);
315 if (hw->regs == NULL) {
316 dev_err(&pdev->dev, "Cannot map IO\n");
317 err = -ENXIO;
318 goto err_no_iomap;
319 }
320
321 hw->irq = platform_get_irq(pdev, 0);
322 if (hw->irq < 0) {
323 dev_err(&pdev->dev, "No IRQ specified\n");
324 err = -ENOENT;
325 goto err_no_irq;
326 }
327
328 err = request_irq(hw->irq, s3c24xx_spi_irq, 0, pdev->name, hw);
329 if (err) {
330 dev_err(&pdev->dev, "Cannot claim IRQ\n");
331 goto err_no_irq;
332 }
333
334 hw->clk = clk_get(&pdev->dev, "spi");
335 if (IS_ERR(hw->clk)) {
336 dev_err(&pdev->dev, "No clock for device\n");
337 err = PTR_ERR(hw->clk);
338 goto err_no_clk;
339 }
340
7fba5340
BD
341 /* setup any gpio we can */
342
50f426b5 343 if (!pdata->set_cs) {
ee9c1fbf
BD
344 if (pdata->pin_cs < 0) {
345 dev_err(&pdev->dev, "No chipselect pin\n");
346 goto err_register;
347 }
8736b927 348
ee9c1fbf
BD
349 err = gpio_request(pdata->pin_cs, dev_name(&pdev->dev));
350 if (err) {
351 dev_err(&pdev->dev, "Failed to get gpio for cs\n");
352 goto err_register;
353 }
354
355 hw->set_cs = s3c24xx_spi_gpiocs;
356 gpio_direction_output(pdata->pin_cs, 1);
8736b927 357 } else
50f426b5 358 hw->set_cs = pdata->set_cs;
7fba5340 359
ee9c1fbf
BD
360 s3c24xx_spi_initialsetup(hw);
361
7fba5340
BD
362 /* register our spi controller */
363
364 err = spi_bitbang_start(&hw->bitbang);
365 if (err) {
366 dev_err(&pdev->dev, "Failed to register SPI master\n");
367 goto err_register;
368 }
369
7fba5340
BD
370 return 0;
371
372 err_register:
ee9c1fbf
BD
373 if (hw->set_cs == s3c24xx_spi_gpiocs)
374 gpio_free(pdata->pin_cs);
375
7fba5340
BD
376 clk_disable(hw->clk);
377 clk_put(hw->clk);
378
379 err_no_clk:
380 free_irq(hw->irq, hw);
381
382 err_no_irq:
383 iounmap(hw->regs);
384
385 err_no_iomap:
386 release_resource(hw->ioarea);
387 kfree(hw->ioarea);
388
389 err_no_iores:
390 err_no_pdata:
a419aef8 391 spi_master_put(hw->master);
7fba5340
BD
392
393 err_nomem:
394 return err;
395}
396
d1e44d9c 397static int __exit s3c24xx_spi_remove(struct platform_device *dev)
7fba5340
BD
398{
399 struct s3c24xx_spi *hw = platform_get_drvdata(dev);
400
401 platform_set_drvdata(dev, NULL);
402
403 spi_unregister_master(hw->master);
404
405 clk_disable(hw->clk);
406 clk_put(hw->clk);
407
408 free_irq(hw->irq, hw);
409 iounmap(hw->regs);
410
ee9c1fbf
BD
411 if (hw->set_cs == s3c24xx_spi_gpiocs)
412 gpio_free(hw->pdata->pin_cs);
413
7fba5340
BD
414 release_resource(hw->ioarea);
415 kfree(hw->ioarea);
416
417 spi_master_put(hw->master);
418 return 0;
419}
420
421
422#ifdef CONFIG_PM
423
424static int s3c24xx_spi_suspend(struct platform_device *pdev, pm_message_t msg)
425{
ac88bcff 426 struct s3c24xx_spi *hw = platform_get_drvdata(pdev);
7fba5340 427
cf46b973
BD
428 if (hw->pdata && hw->pdata->gpio_setup)
429 hw->pdata->gpio_setup(hw->pdata, 0);
430
7fba5340
BD
431 clk_disable(hw->clk);
432 return 0;
433}
434
435static int s3c24xx_spi_resume(struct platform_device *pdev)
436{
ac88bcff 437 struct s3c24xx_spi *hw = platform_get_drvdata(pdev);
7fba5340 438
5aa6cf30 439 s3c24xx_spi_initialsetup(hw);
7fba5340
BD
440 return 0;
441}
442
443#else
444#define s3c24xx_spi_suspend NULL
445#define s3c24xx_spi_resume NULL
446#endif
447
7e38c3c4 448MODULE_ALIAS("platform:s3c2410-spi");
42cde430 449static struct platform_driver s3c24xx_spi_driver = {
d1e44d9c 450 .remove = __exit_p(s3c24xx_spi_remove),
7fba5340
BD
451 .suspend = s3c24xx_spi_suspend,
452 .resume = s3c24xx_spi_resume,
453 .driver = {
454 .name = "s3c2410-spi",
455 .owner = THIS_MODULE,
456 },
457};
458
459static int __init s3c24xx_spi_init(void)
460{
42cde430 461 return platform_driver_probe(&s3c24xx_spi_driver, s3c24xx_spi_probe);
7fba5340
BD
462}
463
464static void __exit s3c24xx_spi_exit(void)
465{
42cde430 466 platform_driver_unregister(&s3c24xx_spi_driver);
7fba5340
BD
467}
468
469module_init(s3c24xx_spi_init);
470module_exit(s3c24xx_spi_exit);
471
472MODULE_DESCRIPTION("S3C24XX SPI Driver");
473MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>");
474MODULE_LICENSE("GPL");