diff options
Diffstat (limited to 'drivers/spi/spi_s3c24xx.c')
-rw-r--r-- | drivers/spi/spi_s3c24xx.c | 247 |
1 files changed, 233 insertions, 14 deletions
diff --git a/drivers/spi/spi_s3c24xx.c b/drivers/spi/spi_s3c24xx.c index 33d94f76b9ef..151a95e40653 100644 --- a/drivers/spi/spi_s3c24xx.c +++ b/drivers/spi/spi_s3c24xx.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* linux/drivers/spi/spi_s3c24xx.c | 1 | /* linux/drivers/spi/spi_s3c24xx.c |
2 | * | 2 | * |
3 | * Copyright (c) 2006 Ben Dooks | 3 | * Copyright (c) 2006 Ben Dooks |
4 | * Copyright (c) 2006 Simtec Electronics | 4 | * Copyright 2006-2009 Simtec Electronics |
5 | * Ben Dooks <ben@simtec.co.uk> | 5 | * Ben Dooks <ben@simtec.co.uk> |
6 | * | 6 | * |
7 | * This program is free software; you can redistribute it and/or modify | 7 | * This program is free software; you can redistribute it and/or modify |
@@ -21,6 +21,7 @@ | |||
21 | #include <linux/platform_device.h> | 21 | #include <linux/platform_device.h> |
22 | #include <linux/gpio.h> | 22 | #include <linux/gpio.h> |
23 | #include <linux/io.h> | 23 | #include <linux/io.h> |
24 | #include <linux/slab.h> | ||
24 | 25 | ||
25 | #include <linux/spi/spi.h> | 26 | #include <linux/spi/spi.h> |
26 | #include <linux/spi/spi_bitbang.h> | 27 | #include <linux/spi/spi_bitbang.h> |
@@ -28,6 +29,11 @@ | |||
28 | #include <plat/regs-spi.h> | 29 | #include <plat/regs-spi.h> |
29 | #include <mach/spi.h> | 30 | #include <mach/spi.h> |
30 | 31 | ||
32 | #include <plat/fiq.h> | ||
33 | #include <asm/fiq.h> | ||
34 | |||
35 | #include "spi_s3c24xx_fiq.h" | ||
36 | |||
31 | /** | 37 | /** |
32 | * s3c24xx_spi_devstate - per device data | 38 | * s3c24xx_spi_devstate - per device data |
33 | * @hz: Last frequency calculated for @sppre field. | 39 | * @hz: Last frequency calculated for @sppre field. |
@@ -42,6 +48,13 @@ struct s3c24xx_spi_devstate { | |||
42 | u8 sppre; | 48 | u8 sppre; |
43 | }; | 49 | }; |
44 | 50 | ||
51 | enum spi_fiq_mode { | ||
52 | FIQ_MODE_NONE = 0, | ||
53 | FIQ_MODE_TX = 1, | ||
54 | FIQ_MODE_RX = 2, | ||
55 | FIQ_MODE_TXRX = 3, | ||
56 | }; | ||
57 | |||
45 | struct s3c24xx_spi { | 58 | struct s3c24xx_spi { |
46 | /* bitbang has to be first */ | 59 | /* bitbang has to be first */ |
47 | struct spi_bitbang bitbang; | 60 | struct spi_bitbang bitbang; |
@@ -52,6 +65,11 @@ struct s3c24xx_spi { | |||
52 | int len; | 65 | int len; |
53 | int count; | 66 | int count; |
54 | 67 | ||
68 | struct fiq_handler fiq_handler; | ||
69 | enum spi_fiq_mode fiq_mode; | ||
70 | unsigned char fiq_inuse; | ||
71 | unsigned char fiq_claimed; | ||
72 | |||
55 | void (*set_cs)(struct s3c2410_spi_info *spi, | 73 | void (*set_cs)(struct s3c2410_spi_info *spi, |
56 | int cs, int pol); | 74 | int cs, int pol); |
57 | 75 | ||
@@ -67,6 +85,7 @@ struct s3c24xx_spi { | |||
67 | struct s3c2410_spi_info *pdata; | 85 | struct s3c2410_spi_info *pdata; |
68 | }; | 86 | }; |
69 | 87 | ||
88 | |||
70 | #define SPCON_DEFAULT (S3C2410_SPCON_MSTR | S3C2410_SPCON_SMOD_INT) | 89 | #define SPCON_DEFAULT (S3C2410_SPCON_MSTR | S3C2410_SPCON_SMOD_INT) |
71 | #define SPPIN_DEFAULT (S3C2410_SPPIN_KEEP) | 90 | #define SPPIN_DEFAULT (S3C2410_SPPIN_KEEP) |
72 | 91 | ||
@@ -127,7 +146,7 @@ static int s3c24xx_spi_update_state(struct spi_device *spi, | |||
127 | } | 146 | } |
128 | 147 | ||
129 | if (spi->mode != cs->mode) { | 148 | if (spi->mode != cs->mode) { |
130 | u8 spcon = SPCON_DEFAULT; | 149 | u8 spcon = SPCON_DEFAULT | S3C2410_SPCON_ENSCK; |
131 | 150 | ||
132 | if (spi->mode & SPI_CPHA) | 151 | if (spi->mode & SPI_CPHA) |
133 | spcon |= S3C2410_SPCON_CPHA_FMTB; | 152 | spcon |= S3C2410_SPCON_CPHA_FMTB; |
@@ -214,13 +233,196 @@ static inline unsigned int hw_txbyte(struct s3c24xx_spi *hw, int count) | |||
214 | return hw->tx ? hw->tx[count] : 0; | 233 | return hw->tx ? hw->tx[count] : 0; |
215 | } | 234 | } |
216 | 235 | ||
236 | #ifdef CONFIG_SPI_S3C24XX_FIQ | ||
237 | /* Support for FIQ based pseudo-DMA to improve the transfer speed. | ||
238 | * | ||
239 | * This code uses the assembly helper in spi_s3c24xx_spi.S which is | ||
240 | * used by the FIQ core to move data between main memory and the peripheral | ||
241 | * block. Since this is code running on the processor, there is no problem | ||
242 | * with cache coherency of the buffers, so we can use any buffer we like. | ||
243 | */ | ||
244 | |||
245 | /** | ||
246 | * struct spi_fiq_code - FIQ code and header | ||
247 | * @length: The length of the code fragment, excluding this header. | ||
248 | * @ack_offset: The offset from @data to the word to place the IRQ ACK bit at. | ||
249 | * @data: The code itself to install as a FIQ handler. | ||
250 | */ | ||
251 | struct spi_fiq_code { | ||
252 | u32 length; | ||
253 | u32 ack_offset; | ||
254 | u8 data[0]; | ||
255 | }; | ||
256 | |||
257 | extern struct spi_fiq_code s3c24xx_spi_fiq_txrx; | ||
258 | extern struct spi_fiq_code s3c24xx_spi_fiq_tx; | ||
259 | extern struct spi_fiq_code s3c24xx_spi_fiq_rx; | ||
260 | |||
261 | /** | ||
262 | * ack_bit - turn IRQ into IRQ acknowledgement bit | ||
263 | * @irq: The interrupt number | ||
264 | * | ||
265 | * Returns the bit to write to the interrupt acknowledge register. | ||
266 | */ | ||
267 | static inline u32 ack_bit(unsigned int irq) | ||
268 | { | ||
269 | return 1 << (irq - IRQ_EINT0); | ||
270 | } | ||
271 | |||
272 | /** | ||
273 | * s3c24xx_spi_tryfiq - attempt to claim and setup FIQ for transfer | ||
274 | * @hw: The hardware state. | ||
275 | * | ||
276 | * Claim the FIQ handler (only one can be active at any one time) and | ||
277 | * then setup the correct transfer code for this transfer. | ||
278 | * | ||
279 | * This call updates all the necessary state information if successful, | ||
280 | * so the caller does not need to do anything more than start the transfer | ||
281 | * as normal, since the IRQ will have been re-routed to the FIQ handler. | ||
282 | */ | ||
283 | void s3c24xx_spi_tryfiq(struct s3c24xx_spi *hw) | ||
284 | { | ||
285 | struct pt_regs regs; | ||
286 | enum spi_fiq_mode mode; | ||
287 | struct spi_fiq_code *code; | ||
288 | int ret; | ||
289 | |||
290 | if (!hw->fiq_claimed) { | ||
291 | /* try and claim fiq if we haven't got it, and if not | ||
292 | * then return and simply use another transfer method */ | ||
293 | |||
294 | ret = claim_fiq(&hw->fiq_handler); | ||
295 | if (ret) | ||
296 | return; | ||
297 | } | ||
298 | |||
299 | if (hw->tx && !hw->rx) | ||
300 | mode = FIQ_MODE_TX; | ||
301 | else if (hw->rx && !hw->tx) | ||
302 | mode = FIQ_MODE_RX; | ||
303 | else | ||
304 | mode = FIQ_MODE_TXRX; | ||
305 | |||
306 | regs.uregs[fiq_rspi] = (long)hw->regs; | ||
307 | regs.uregs[fiq_rrx] = (long)hw->rx; | ||
308 | regs.uregs[fiq_rtx] = (long)hw->tx + 1; | ||
309 | regs.uregs[fiq_rcount] = hw->len - 1; | ||
310 | regs.uregs[fiq_rirq] = (long)S3C24XX_VA_IRQ; | ||
311 | |||
312 | set_fiq_regs(®s); | ||
313 | |||
314 | if (hw->fiq_mode != mode) { | ||
315 | u32 *ack_ptr; | ||
316 | |||
317 | hw->fiq_mode = mode; | ||
318 | |||
319 | switch (mode) { | ||
320 | case FIQ_MODE_TX: | ||
321 | code = &s3c24xx_spi_fiq_tx; | ||
322 | break; | ||
323 | case FIQ_MODE_RX: | ||
324 | code = &s3c24xx_spi_fiq_rx; | ||
325 | break; | ||
326 | case FIQ_MODE_TXRX: | ||
327 | code = &s3c24xx_spi_fiq_txrx; | ||
328 | break; | ||
329 | default: | ||
330 | code = NULL; | ||
331 | } | ||
332 | |||
333 | BUG_ON(!code); | ||
334 | |||
335 | ack_ptr = (u32 *)&code->data[code->ack_offset]; | ||
336 | *ack_ptr = ack_bit(hw->irq); | ||
337 | |||
338 | set_fiq_handler(&code->data, code->length); | ||
339 | } | ||
340 | |||
341 | s3c24xx_set_fiq(hw->irq, true); | ||
342 | |||
343 | hw->fiq_mode = mode; | ||
344 | hw->fiq_inuse = 1; | ||
345 | } | ||
346 | |||
347 | /** | ||
348 | * s3c24xx_spi_fiqop - FIQ core code callback | ||
349 | * @pw: Data registered with the handler | ||
350 | * @release: Whether this is a release or a return. | ||
351 | * | ||
352 | * Called by the FIQ code when another module wants to use the FIQ, so | ||
353 | * return whether we are currently using this or not and then update our | ||
354 | * internal state. | ||
355 | */ | ||
356 | static int s3c24xx_spi_fiqop(void *pw, int release) | ||
357 | { | ||
358 | struct s3c24xx_spi *hw = pw; | ||
359 | int ret = 0; | ||
360 | |||
361 | if (release) { | ||
362 | if (hw->fiq_inuse) | ||
363 | ret = -EBUSY; | ||
364 | |||
365 | /* note, we do not need to unroute the FIQ, as the FIQ | ||
366 | * vector code de-routes it to signal the end of transfer */ | ||
367 | |||
368 | hw->fiq_mode = FIQ_MODE_NONE; | ||
369 | hw->fiq_claimed = 0; | ||
370 | } else { | ||
371 | hw->fiq_claimed = 1; | ||
372 | } | ||
373 | |||
374 | return ret; | ||
375 | } | ||
376 | |||
377 | /** | ||
378 | * s3c24xx_spi_initfiq - setup the information for the FIQ core | ||
379 | * @hw: The hardware state. | ||
380 | * | ||
381 | * Setup the fiq_handler block to pass to the FIQ core. | ||
382 | */ | ||
383 | static inline void s3c24xx_spi_initfiq(struct s3c24xx_spi *hw) | ||
384 | { | ||
385 | hw->fiq_handler.dev_id = hw; | ||
386 | hw->fiq_handler.name = dev_name(hw->dev); | ||
387 | hw->fiq_handler.fiq_op = s3c24xx_spi_fiqop; | ||
388 | } | ||
389 | |||
390 | /** | ||
391 | * s3c24xx_spi_usefiq - return if we should be using FIQ. | ||
392 | * @hw: The hardware state. | ||
393 | * | ||
394 | * Return true if the platform data specifies whether this channel is | ||
395 | * allowed to use the FIQ. | ||
396 | */ | ||
397 | static inline bool s3c24xx_spi_usefiq(struct s3c24xx_spi *hw) | ||
398 | { | ||
399 | return hw->pdata->use_fiq; | ||
400 | } | ||
401 | |||
402 | /** | ||
403 | * s3c24xx_spi_usingfiq - return if channel is using FIQ | ||
404 | * @spi: The hardware state. | ||
405 | * | ||
406 | * Return whether the channel is currently using the FIQ (separate from | ||
407 | * whether the FIQ is claimed). | ||
408 | */ | ||
409 | static inline bool s3c24xx_spi_usingfiq(struct s3c24xx_spi *spi) | ||
410 | { | ||
411 | return spi->fiq_inuse; | ||
412 | } | ||
413 | #else | ||
414 | |||
415 | static inline void s3c24xx_spi_initfiq(struct s3c24xx_spi *s) { } | ||
416 | static inline void s3c24xx_spi_tryfiq(struct s3c24xx_spi *s) { } | ||
417 | static inline bool s3c24xx_spi_usefiq(struct s3c24xx_spi *s) { return false; } | ||
418 | static inline bool s3c24xx_spi_usingfiq(struct s3c24xx_spi *s) { return false; } | ||
419 | |||
420 | #endif /* CONFIG_SPI_S3C24XX_FIQ */ | ||
421 | |||
217 | static int s3c24xx_spi_txrx(struct spi_device *spi, struct spi_transfer *t) | 422 | static int s3c24xx_spi_txrx(struct spi_device *spi, struct spi_transfer *t) |
218 | { | 423 | { |
219 | struct s3c24xx_spi *hw = to_hw(spi); | 424 | struct s3c24xx_spi *hw = to_hw(spi); |
220 | 425 | ||
221 | dev_dbg(&spi->dev, "txrx: tx %p, rx %p, len %d\n", | ||
222 | t->tx_buf, t->rx_buf, t->len); | ||
223 | |||
224 | hw->tx = t->tx_buf; | 426 | hw->tx = t->tx_buf; |
225 | hw->rx = t->rx_buf; | 427 | hw->rx = t->rx_buf; |
226 | hw->len = t->len; | 428 | hw->len = t->len; |
@@ -228,11 +430,14 @@ static int s3c24xx_spi_txrx(struct spi_device *spi, struct spi_transfer *t) | |||
228 | 430 | ||
229 | init_completion(&hw->done); | 431 | init_completion(&hw->done); |
230 | 432 | ||
433 | hw->fiq_inuse = 0; | ||
434 | if (s3c24xx_spi_usefiq(hw) && t->len >= 3) | ||
435 | s3c24xx_spi_tryfiq(hw); | ||
436 | |||
231 | /* send the first byte */ | 437 | /* send the first byte */ |
232 | writeb(hw_txbyte(hw, 0), hw->regs + S3C2410_SPTDAT); | 438 | writeb(hw_txbyte(hw, 0), hw->regs + S3C2410_SPTDAT); |
233 | 439 | ||
234 | wait_for_completion(&hw->done); | 440 | wait_for_completion(&hw->done); |
235 | |||
236 | return hw->count; | 441 | return hw->count; |
237 | } | 442 | } |
238 | 443 | ||
@@ -254,17 +459,27 @@ static irqreturn_t s3c24xx_spi_irq(int irq, void *dev) | |||
254 | goto irq_done; | 459 | goto irq_done; |
255 | } | 460 | } |
256 | 461 | ||
257 | hw->count++; | 462 | if (!s3c24xx_spi_usingfiq(hw)) { |
463 | hw->count++; | ||
258 | 464 | ||
259 | if (hw->rx) | 465 | if (hw->rx) |
260 | hw->rx[count] = readb(hw->regs + S3C2410_SPRDAT); | 466 | hw->rx[count] = readb(hw->regs + S3C2410_SPRDAT); |
261 | 467 | ||
262 | count++; | 468 | count++; |
469 | |||
470 | if (count < hw->len) | ||
471 | writeb(hw_txbyte(hw, count), hw->regs + S3C2410_SPTDAT); | ||
472 | else | ||
473 | complete(&hw->done); | ||
474 | } else { | ||
475 | hw->count = hw->len; | ||
476 | hw->fiq_inuse = 0; | ||
477 | |||
478 | if (hw->rx) | ||
479 | hw->rx[hw->len-1] = readb(hw->regs + S3C2410_SPRDAT); | ||
263 | 480 | ||
264 | if (count < hw->len) | ||
265 | writeb(hw_txbyte(hw, count), hw->regs + S3C2410_SPTDAT); | ||
266 | else | ||
267 | complete(&hw->done); | 481 | complete(&hw->done); |
482 | } | ||
268 | 483 | ||
269 | irq_done: | 484 | irq_done: |
270 | return IRQ_HANDLED; | 485 | return IRQ_HANDLED; |
@@ -322,6 +537,10 @@ static int __init s3c24xx_spi_probe(struct platform_device *pdev) | |||
322 | platform_set_drvdata(pdev, hw); | 537 | platform_set_drvdata(pdev, hw); |
323 | init_completion(&hw->done); | 538 | init_completion(&hw->done); |
324 | 539 | ||
540 | /* initialise fiq handler */ | ||
541 | |||
542 | s3c24xx_spi_initfiq(hw); | ||
543 | |||
325 | /* setup the master state. */ | 544 | /* setup the master state. */ |
326 | 545 | ||
327 | /* the spi->mode bits understood by this driver: */ | 546 | /* the spi->mode bits understood by this driver: */ |
@@ -489,7 +708,7 @@ static int s3c24xx_spi_resume(struct device *dev) | |||
489 | return 0; | 708 | return 0; |
490 | } | 709 | } |
491 | 710 | ||
492 | static struct dev_pm_ops s3c24xx_spi_pmops = { | 711 | static const struct dev_pm_ops s3c24xx_spi_pmops = { |
493 | .suspend = s3c24xx_spi_suspend, | 712 | .suspend = s3c24xx_spi_suspend, |
494 | .resume = s3c24xx_spi_resume, | 713 | .resume = s3c24xx_spi_resume, |
495 | }; | 714 | }; |