blob: 746424aa5353fb2a779b04c0fc93aae0163da0ea [file] [log] [blame]
Grant Likelyca632f52011-06-06 01:16:30 -06001/*
Ben Dooks7fba5342006-05-20 15:00:18 -07002 * Copyright (c) 2006 Ben Dooks
Ben Dooksbec08062009-12-14 22:20:24 -08003 * Copyright 2006-2009 Simtec Electronics
Ben Dooks7fba5342006-05-20 15:00:18 -07004 * Ben Dooks <ben@simtec.co.uk>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10*/
11
Ben Dooks7fba5342006-05-20 15:00:18 -070012#include <linux/init.h>
13#include <linux/spinlock.h>
14#include <linux/workqueue.h>
15#include <linux/interrupt.h>
16#include <linux/delay.h>
17#include <linux/errno.h>
18#include <linux/err.h>
19#include <linux/clk.h>
20#include <linux/platform_device.h>
Ben Dooksee9c1fb2009-01-06 14:41:44 -080021#include <linux/gpio.h>
Ben Dooks1a0c2202009-09-22 16:46:12 -070022#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Ben Dooks7fba5342006-05-20 15:00:18 -070024
25#include <linux/spi/spi.h>
26#include <linux/spi/spi_bitbang.h>
Heiko Stuebnerf35ef7c2012-01-31 20:06:07 +090027#include <linux/spi/s3c24xx.h>
Paul Gortmakerd7614de2011-07-03 15:44:29 -040028#include <linux/module.h>
Ben Dooks7fba5342006-05-20 15:00:18 -070029
Ben Dooks13622702008-10-30 10:14:38 +000030#include <plat/regs-spi.h>
Ben Dooks7fba5342006-05-20 15:00:18 -070031
Ben Dooksbec08062009-12-14 22:20:24 -080032#include <asm/fiq.h>
33
Grant Likelyca632f52011-06-06 01:16:30 -060034#include "spi-s3c24xx-fiq.h"
Ben Dooksbec08062009-12-14 22:20:24 -080035
Ben Dooks570327d2009-09-22 16:46:14 -070036/**
37 * s3c24xx_spi_devstate - per device data
38 * @hz: Last frequency calculated for @sppre field.
39 * @mode: Last mode setting for the @spcon field.
40 * @spcon: Value to write to the SPCON register.
41 * @sppre: Value to write to the SPPRE register.
42 */
43struct s3c24xx_spi_devstate {
44 unsigned int hz;
45 unsigned int mode;
46 u8 spcon;
47 u8 sppre;
48};
49
Ben Dooksbec08062009-12-14 22:20:24 -080050enum spi_fiq_mode {
51 FIQ_MODE_NONE = 0,
52 FIQ_MODE_TX = 1,
53 FIQ_MODE_RX = 2,
54 FIQ_MODE_TXRX = 3,
55};
56
Ben Dooks7fba5342006-05-20 15:00:18 -070057struct s3c24xx_spi {
58 /* bitbang has to be first */
59 struct spi_bitbang bitbang;
60 struct completion done;
61
62 void __iomem *regs;
63 int irq;
64 int len;
65 int count;
66
Ben Dooksbec08062009-12-14 22:20:24 -080067 struct fiq_handler fiq_handler;
68 enum spi_fiq_mode fiq_mode;
69 unsigned char fiq_inuse;
70 unsigned char fiq_claimed;
71
Arnaud Patard (Rtp6c912a32007-03-16 13:38:36 -080072 void (*set_cs)(struct s3c2410_spi_info *spi,
Ben Dooks8736b922007-01-26 00:56:43 -080073 int cs, int pol);
74
Ben Dooks7fba5342006-05-20 15:00:18 -070075 /* data buffers */
76 const unsigned char *tx;
77 unsigned char *rx;
78
79 struct clk *clk;
Ben Dooks7fba5342006-05-20 15:00:18 -070080 struct spi_master *master;
81 struct spi_device *curdev;
82 struct device *dev;
83 struct s3c2410_spi_info *pdata;
84};
85
86#define SPCON_DEFAULT (S3C2410_SPCON_MSTR | S3C2410_SPCON_SMOD_INT)
87#define SPPIN_DEFAULT (S3C2410_SPPIN_KEEP)
88
89static inline struct s3c24xx_spi *to_hw(struct spi_device *sdev)
90{
91 return spi_master_get_devdata(sdev->master);
92}
93
Ben Dooks8736b922007-01-26 00:56:43 -080094static void s3c24xx_spi_gpiocs(struct s3c2410_spi_info *spi, int cs, int pol)
95{
Ben Dooksee9c1fb2009-01-06 14:41:44 -080096 gpio_set_value(spi->pin_cs, pol);
Ben Dooks8736b922007-01-26 00:56:43 -080097}
98
Ben Dooks7fba5342006-05-20 15:00:18 -070099static void s3c24xx_spi_chipsel(struct spi_device *spi, int value)
100{
Ben Dooks570327d2009-09-22 16:46:14 -0700101 struct s3c24xx_spi_devstate *cs = spi->controller_state;
Ben Dooks7fba5342006-05-20 15:00:18 -0700102 struct s3c24xx_spi *hw = to_hw(spi);
103 unsigned int cspol = spi->mode & SPI_CS_HIGH ? 1 : 0;
Ben Dooks570327d2009-09-22 16:46:14 -0700104
105 /* change the chipselect state and the state of the spi engine clock */
Ben Dooks7fba5342006-05-20 15:00:18 -0700106
107 switch (value) {
108 case BITBANG_CS_INACTIVE:
Ben Dooks3d2c5b42007-04-16 22:53:22 -0700109 hw->set_cs(hw->pdata, spi->chip_select, cspol^1);
Ben Dooks570327d2009-09-22 16:46:14 -0700110 writeb(cs->spcon, hw->regs + S3C2410_SPCON);
Ben Dooks7fba5342006-05-20 15:00:18 -0700111 break;
112
113 case BITBANG_CS_ACTIVE:
Ben Dooks570327d2009-09-22 16:46:14 -0700114 writeb(cs->spcon | S3C2410_SPCON_ENSCK,
115 hw->regs + S3C2410_SPCON);
Ben Dooks3d2c5b42007-04-16 22:53:22 -0700116 hw->set_cs(hw->pdata, spi->chip_select, cspol);
Ben Dooks7fba5342006-05-20 15:00:18 -0700117 break;
Ben Dooks7fba5342006-05-20 15:00:18 -0700118 }
119}
120
Ben Dooks570327d2009-09-22 16:46:14 -0700121static int s3c24xx_spi_update_state(struct spi_device *spi,
122 struct spi_transfer *t)
Ben Dooks7fba5342006-05-20 15:00:18 -0700123{
124 struct s3c24xx_spi *hw = to_hw(spi);
Ben Dooks570327d2009-09-22 16:46:14 -0700125 struct s3c24xx_spi_devstate *cs = spi->controller_state;
Ben Dooks7fba5342006-05-20 15:00:18 -0700126 unsigned int bpw;
127 unsigned int hz;
128 unsigned int div;
Ben Dooksb8978782009-08-18 14:11:16 -0700129 unsigned long clk;
Ben Dooks7fba5342006-05-20 15:00:18 -0700130
131 bpw = t ? t->bits_per_word : spi->bits_per_word;
132 hz = t ? t->speed_hz : spi->max_speed_hz;
133
Ben Dooks19152972009-08-18 14:11:17 -0700134 if (!bpw)
135 bpw = 8;
136
137 if (!hz)
138 hz = spi->max_speed_hz;
139
Ben Dooks7fba5342006-05-20 15:00:18 -0700140 if (bpw != 8) {
141 dev_err(&spi->dev, "invalid bits-per-word (%d)\n", bpw);
142 return -EINVAL;
143 }
144
Ben Dooks570327d2009-09-22 16:46:14 -0700145 if (spi->mode != cs->mode) {
Ben Dooksbec08062009-12-14 22:20:24 -0800146 u8 spcon = SPCON_DEFAULT | S3C2410_SPCON_ENSCK;
Ben Dooks7fba5342006-05-20 15:00:18 -0700147
Ben Dooks570327d2009-09-22 16:46:14 -0700148 if (spi->mode & SPI_CPHA)
149 spcon |= S3C2410_SPCON_CPHA_FMTB;
Ben Dooks7fba5342006-05-20 15:00:18 -0700150
Ben Dooks570327d2009-09-22 16:46:14 -0700151 if (spi->mode & SPI_CPOL)
152 spcon |= S3C2410_SPCON_CPOL_HIGH;
Ben Dooksb8978782009-08-18 14:11:16 -0700153
Ben Dooks570327d2009-09-22 16:46:14 -0700154 cs->mode = spi->mode;
155 cs->spcon = spcon;
156 }
Ben Dooksb8978782009-08-18 14:11:16 -0700157
Ben Dooks570327d2009-09-22 16:46:14 -0700158 if (cs->hz != hz) {
159 clk = clk_get_rate(hw->clk);
160 div = DIV_ROUND_UP(clk, hz * 2) - 1;
161
162 if (div > 255)
163 div = 255;
164
165 dev_dbg(&spi->dev, "pre-scaler=%d (wanted %d, got %ld)\n",
166 div, hz, clk / (2 * (div + 1)));
167
168 cs->hz = hz;
169 cs->sppre = div;
170 }
171
172 return 0;
173}
174
175static int s3c24xx_spi_setupxfer(struct spi_device *spi,
176 struct spi_transfer *t)
177{
178 struct s3c24xx_spi_devstate *cs = spi->controller_state;
179 struct s3c24xx_spi *hw = to_hw(spi);
180 int ret;
181
182 ret = s3c24xx_spi_update_state(spi, t);
183 if (!ret)
184 writeb(cs->sppre, hw->regs + S3C2410_SPPRE);
185
186 return ret;
187}
188
189static int s3c24xx_spi_setup(struct spi_device *spi)
190{
191 struct s3c24xx_spi_devstate *cs = spi->controller_state;
192 struct s3c24xx_spi *hw = to_hw(spi);
193 int ret;
194
195 /* allocate settings on the first call */
196 if (!cs) {
197 cs = kzalloc(sizeof(struct s3c24xx_spi_devstate), GFP_KERNEL);
198 if (!cs) {
199 dev_err(&spi->dev, "no memory for controller state\n");
200 return -ENOMEM;
201 }
202
203 cs->spcon = SPCON_DEFAULT;
204 cs->hz = -1;
205 spi->controller_state = cs;
206 }
207
208 /* initialise the state from the device */
209 ret = s3c24xx_spi_update_state(spi, NULL);
210 if (ret)
211 return ret;
Ben Dooks7fba5342006-05-20 15:00:18 -0700212
213 spin_lock(&hw->bitbang.lock);
214 if (!hw->bitbang.busy) {
215 hw->bitbang.chipselect(spi, BITBANG_CS_INACTIVE);
216 /* need to ndelay for 0.5 clocktick ? */
217 }
218 spin_unlock(&hw->bitbang.lock);
219
220 return 0;
221}
222
Ben Dooks570327d2009-09-22 16:46:14 -0700223static void s3c24xx_spi_cleanup(struct spi_device *spi)
Ben Dooks7fba5342006-05-20 15:00:18 -0700224{
Ben Dooks570327d2009-09-22 16:46:14 -0700225 kfree(spi->controller_state);
Ben Dooks7fba5342006-05-20 15:00:18 -0700226}
227
228static inline unsigned int hw_txbyte(struct s3c24xx_spi *hw, int count)
229{
David Brownell4b1badf2006-12-29 16:48:39 -0800230 return hw->tx ? hw->tx[count] : 0;
Ben Dooks7fba5342006-05-20 15:00:18 -0700231}
232
Ben Dooksbec08062009-12-14 22:20:24 -0800233#ifdef CONFIG_SPI_S3C24XX_FIQ
234/* Support for FIQ based pseudo-DMA to improve the transfer speed.
235 *
236 * This code uses the assembly helper in spi_s3c24xx_spi.S which is
237 * used by the FIQ core to move data between main memory and the peripheral
238 * block. Since this is code running on the processor, there is no problem
239 * with cache coherency of the buffers, so we can use any buffer we like.
240 */
241
242/**
243 * struct spi_fiq_code - FIQ code and header
244 * @length: The length of the code fragment, excluding this header.
245 * @ack_offset: The offset from @data to the word to place the IRQ ACK bit at.
246 * @data: The code itself to install as a FIQ handler.
247 */
248struct spi_fiq_code {
249 u32 length;
250 u32 ack_offset;
251 u8 data[0];
252};
253
254extern struct spi_fiq_code s3c24xx_spi_fiq_txrx;
255extern struct spi_fiq_code s3c24xx_spi_fiq_tx;
256extern struct spi_fiq_code s3c24xx_spi_fiq_rx;
257
258/**
259 * ack_bit - turn IRQ into IRQ acknowledgement bit
260 * @irq: The interrupt number
261 *
262 * Returns the bit to write to the interrupt acknowledge register.
263 */
264static inline u32 ack_bit(unsigned int irq)
265{
266 return 1 << (irq - IRQ_EINT0);
267}
268
269/**
270 * s3c24xx_spi_tryfiq - attempt to claim and setup FIQ for transfer
271 * @hw: The hardware state.
272 *
273 * Claim the FIQ handler (only one can be active at any one time) and
274 * then setup the correct transfer code for this transfer.
275 *
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800276 * This call updates all the necessary state information if successful,
Ben Dooksbec08062009-12-14 22:20:24 -0800277 * so the caller does not need to do anything more than start the transfer
278 * as normal, since the IRQ will have been re-routed to the FIQ handler.
279*/
Sachin Kamatcfeb3312013-09-10 11:20:13 +0530280static void s3c24xx_spi_tryfiq(struct s3c24xx_spi *hw)
Ben Dooksbec08062009-12-14 22:20:24 -0800281{
282 struct pt_regs regs;
283 enum spi_fiq_mode mode;
284 struct spi_fiq_code *code;
285 int ret;
286
287 if (!hw->fiq_claimed) {
288 /* try and claim fiq if we haven't got it, and if not
289 * then return and simply use another transfer method */
290
291 ret = claim_fiq(&hw->fiq_handler);
292 if (ret)
293 return;
294 }
295
296 if (hw->tx && !hw->rx)
297 mode = FIQ_MODE_TX;
298 else if (hw->rx && !hw->tx)
299 mode = FIQ_MODE_RX;
300 else
301 mode = FIQ_MODE_TXRX;
302
303 regs.uregs[fiq_rspi] = (long)hw->regs;
304 regs.uregs[fiq_rrx] = (long)hw->rx;
305 regs.uregs[fiq_rtx] = (long)hw->tx + 1;
306 regs.uregs[fiq_rcount] = hw->len - 1;
307 regs.uregs[fiq_rirq] = (long)S3C24XX_VA_IRQ;
308
309 set_fiq_regs(&regs);
310
311 if (hw->fiq_mode != mode) {
312 u32 *ack_ptr;
313
314 hw->fiq_mode = mode;
315
316 switch (mode) {
317 case FIQ_MODE_TX:
318 code = &s3c24xx_spi_fiq_tx;
319 break;
320 case FIQ_MODE_RX:
321 code = &s3c24xx_spi_fiq_rx;
322 break;
323 case FIQ_MODE_TXRX:
324 code = &s3c24xx_spi_fiq_txrx;
325 break;
326 default:
327 code = NULL;
328 }
329
330 BUG_ON(!code);
331
332 ack_ptr = (u32 *)&code->data[code->ack_offset];
333 *ack_ptr = ack_bit(hw->irq);
334
335 set_fiq_handler(&code->data, code->length);
336 }
337
338 s3c24xx_set_fiq(hw->irq, true);
339
340 hw->fiq_mode = mode;
341 hw->fiq_inuse = 1;
342}
343
344/**
345 * s3c24xx_spi_fiqop - FIQ core code callback
346 * @pw: Data registered with the handler
347 * @release: Whether this is a release or a return.
348 *
349 * Called by the FIQ code when another module wants to use the FIQ, so
350 * return whether we are currently using this or not and then update our
351 * internal state.
352 */
353static int s3c24xx_spi_fiqop(void *pw, int release)
354{
355 struct s3c24xx_spi *hw = pw;
356 int ret = 0;
357
358 if (release) {
359 if (hw->fiq_inuse)
360 ret = -EBUSY;
361
362 /* note, we do not need to unroute the FIQ, as the FIQ
363 * vector code de-routes it to signal the end of transfer */
364
365 hw->fiq_mode = FIQ_MODE_NONE;
366 hw->fiq_claimed = 0;
367 } else {
368 hw->fiq_claimed = 1;
369 }
370
371 return ret;
372}
373
374/**
375 * s3c24xx_spi_initfiq - setup the information for the FIQ core
376 * @hw: The hardware state.
377 *
378 * Setup the fiq_handler block to pass to the FIQ core.
379 */
380static inline void s3c24xx_spi_initfiq(struct s3c24xx_spi *hw)
381{
382 hw->fiq_handler.dev_id = hw;
383 hw->fiq_handler.name = dev_name(hw->dev);
384 hw->fiq_handler.fiq_op = s3c24xx_spi_fiqop;
385}
386
387/**
388 * s3c24xx_spi_usefiq - return if we should be using FIQ.
389 * @hw: The hardware state.
390 *
391 * Return true if the platform data specifies whether this channel is
392 * allowed to use the FIQ.
393 */
394static inline bool s3c24xx_spi_usefiq(struct s3c24xx_spi *hw)
395{
396 return hw->pdata->use_fiq;
397}
398
399/**
400 * s3c24xx_spi_usingfiq - return if channel is using FIQ
401 * @spi: The hardware state.
402 *
403 * Return whether the channel is currently using the FIQ (separate from
404 * whether the FIQ is claimed).
405 */
406static inline bool s3c24xx_spi_usingfiq(struct s3c24xx_spi *spi)
407{
408 return spi->fiq_inuse;
409}
410#else
411
412static inline void s3c24xx_spi_initfiq(struct s3c24xx_spi *s) { }
413static inline void s3c24xx_spi_tryfiq(struct s3c24xx_spi *s) { }
414static inline bool s3c24xx_spi_usefiq(struct s3c24xx_spi *s) { return false; }
415static inline bool s3c24xx_spi_usingfiq(struct s3c24xx_spi *s) { return false; }
416
417#endif /* CONFIG_SPI_S3C24XX_FIQ */
418
Ben Dooks7fba5342006-05-20 15:00:18 -0700419static int s3c24xx_spi_txrx(struct spi_device *spi, struct spi_transfer *t)
420{
421 struct s3c24xx_spi *hw = to_hw(spi);
422
Ben Dooks7fba5342006-05-20 15:00:18 -0700423 hw->tx = t->tx_buf;
424 hw->rx = t->rx_buf;
425 hw->len = t->len;
426 hw->count = 0;
427
Ben Dooks4bb5eba2008-04-15 14:34:44 -0700428 init_completion(&hw->done);
429
Ben Dooksbec08062009-12-14 22:20:24 -0800430 hw->fiq_inuse = 0;
431 if (s3c24xx_spi_usefiq(hw) && t->len >= 3)
432 s3c24xx_spi_tryfiq(hw);
433
Ben Dooks7fba5342006-05-20 15:00:18 -0700434 /* send the first byte */
435 writeb(hw_txbyte(hw, 0), hw->regs + S3C2410_SPTDAT);
Ben Dooks4bb5eba2008-04-15 14:34:44 -0700436
Ben Dooks7fba5342006-05-20 15:00:18 -0700437 wait_for_completion(&hw->done);
Ben Dooks7fba5342006-05-20 15:00:18 -0700438 return hw->count;
439}
440
David Howells7d12e782006-10-05 14:55:46 +0100441static irqreturn_t s3c24xx_spi_irq(int irq, void *dev)
Ben Dooks7fba5342006-05-20 15:00:18 -0700442{
443 struct s3c24xx_spi *hw = dev;
444 unsigned int spsta = readb(hw->regs + S3C2410_SPSTA);
445 unsigned int count = hw->count;
446
447 if (spsta & S3C2410_SPSTA_DCOL) {
448 dev_dbg(hw->dev, "data-collision\n");
449 complete(&hw->done);
450 goto irq_done;
451 }
452
453 if (!(spsta & S3C2410_SPSTA_READY)) {
454 dev_dbg(hw->dev, "spi not ready for tx?\n");
455 complete(&hw->done);
456 goto irq_done;
457 }
458
Ben Dooksbec08062009-12-14 22:20:24 -0800459 if (!s3c24xx_spi_usingfiq(hw)) {
460 hw->count++;
Ben Dooks7fba5342006-05-20 15:00:18 -0700461
Ben Dooksbec08062009-12-14 22:20:24 -0800462 if (hw->rx)
463 hw->rx[count] = readb(hw->regs + S3C2410_SPRDAT);
Ben Dooks7fba5342006-05-20 15:00:18 -0700464
Ben Dooksbec08062009-12-14 22:20:24 -0800465 count++;
Ben Dooks7fba5342006-05-20 15:00:18 -0700466
Ben Dooksbec08062009-12-14 22:20:24 -0800467 if (count < hw->len)
468 writeb(hw_txbyte(hw, count), hw->regs + S3C2410_SPTDAT);
469 else
470 complete(&hw->done);
471 } else {
472 hw->count = hw->len;
473 hw->fiq_inuse = 0;
474
475 if (hw->rx)
476 hw->rx[hw->len-1] = readb(hw->regs + S3C2410_SPRDAT);
477
Ben Dooks7fba5342006-05-20 15:00:18 -0700478 complete(&hw->done);
Ben Dooksbec08062009-12-14 22:20:24 -0800479 }
Ben Dooks7fba5342006-05-20 15:00:18 -0700480
481 irq_done:
482 return IRQ_HANDLED;
483}
484
Ben Dooks5aa6cf32008-08-04 13:41:10 -0700485static void s3c24xx_spi_initialsetup(struct s3c24xx_spi *hw)
486{
487 /* for the moment, permanently enable the clock */
488
489 clk_enable(hw->clk);
490
491 /* program defaults into the registers */
492
493 writeb(0xff, hw->regs + S3C2410_SPPRE);
494 writeb(SPPIN_DEFAULT, hw->regs + S3C2410_SPPIN);
495 writeb(SPCON_DEFAULT, hw->regs + S3C2410_SPCON);
Ben Dookscf46b972008-10-15 22:02:41 -0700496
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800497 if (hw->pdata) {
498 if (hw->set_cs == s3c24xx_spi_gpiocs)
499 gpio_direction_output(hw->pdata->pin_cs, 1);
500
501 if (hw->pdata->gpio_setup)
502 hw->pdata->gpio_setup(hw->pdata, 1);
503 }
Ben Dooks5aa6cf32008-08-04 13:41:10 -0700504}
505
Grant Likelyfd4a3192012-12-07 16:57:14 +0000506static int s3c24xx_spi_probe(struct platform_device *pdev)
Ben Dooks7fba5342006-05-20 15:00:18 -0700507{
Ben Dooks50f426b2008-04-15 14:34:45 -0700508 struct s3c2410_spi_info *pdata;
Ben Dooks7fba5342006-05-20 15:00:18 -0700509 struct s3c24xx_spi *hw;
510 struct spi_master *master;
Ben Dooks7fba5342006-05-20 15:00:18 -0700511 struct resource *res;
512 int err = 0;
Ben Dooks7fba5342006-05-20 15:00:18 -0700513
514 master = spi_alloc_master(&pdev->dev, sizeof(struct s3c24xx_spi));
515 if (master == NULL) {
516 dev_err(&pdev->dev, "No memory for spi_master\n");
Jingoo Hanc9f722e2013-12-09 19:19:13 +0900517 return -ENOMEM;
Ben Dooks7fba5342006-05-20 15:00:18 -0700518 }
519
520 hw = spi_master_get_devdata(master);
521 memset(hw, 0, sizeof(struct s3c24xx_spi));
522
Axel Lin94c69f72013-09-10 15:43:41 +0800523 hw->master = master;
Jingoo Han8074cf02013-07-30 16:58:59 +0900524 hw->pdata = pdata = dev_get_platdata(&pdev->dev);
Ben Dooks7fba5342006-05-20 15:00:18 -0700525 hw->dev = &pdev->dev;
526
Ben Dooks50f426b2008-04-15 14:34:45 -0700527 if (pdata == NULL) {
Ben Dooks7fba5342006-05-20 15:00:18 -0700528 dev_err(&pdev->dev, "No platform data supplied\n");
529 err = -ENOENT;
530 goto err_no_pdata;
531 }
532
533 platform_set_drvdata(pdev, hw);
534 init_completion(&hw->done);
535
Ben Dooksbec08062009-12-14 22:20:24 -0800536 /* initialise fiq handler */
537
538 s3c24xx_spi_initfiq(hw);
539
Ben Dooksd1e77802008-04-15 14:34:46 -0700540 /* setup the master state. */
541
David Brownelle7db06b2009-06-17 16:26:04 -0700542 /* the spi->mode bits understood by this driver: */
543 master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH;
544
Ben Dooksd1e77802008-04-15 14:34:46 -0700545 master->num_chipselect = hw->pdata->num_cs;
Ben Dookscb1d0a72008-07-28 15:46:33 -0700546 master->bus_num = pdata->bus_num;
Ben Dooksd1e77802008-04-15 14:34:46 -0700547
Ben Dooks7fba5342006-05-20 15:00:18 -0700548 /* setup the state for the bitbang driver */
549
550 hw->bitbang.master = hw->master;
551 hw->bitbang.setup_transfer = s3c24xx_spi_setupxfer;
552 hw->bitbang.chipselect = s3c24xx_spi_chipsel;
553 hw->bitbang.txrx_bufs = s3c24xx_spi_txrx;
Ben Dooks570327d2009-09-22 16:46:14 -0700554
555 hw->master->setup = s3c24xx_spi_setup;
556 hw->master->cleanup = s3c24xx_spi_cleanup;
Ben Dooks7fba5342006-05-20 15:00:18 -0700557
558 dev_dbg(hw->dev, "bitbang at %p\n", &hw->bitbang);
559
560 /* find and map our resources */
Ben Dooks7fba5342006-05-20 15:00:18 -0700561 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Jingoo Hanc9f722e2013-12-09 19:19:13 +0900562 hw->regs = devm_ioremap_resource(&pdev->dev, res);
563 if (IS_ERR(hw->regs)) {
564 err = PTR_ERR(hw->regs);
565 goto err_no_pdata;
Ben Dooks7fba5342006-05-20 15:00:18 -0700566 }
567
568 hw->irq = platform_get_irq(pdev, 0);
569 if (hw->irq < 0) {
570 dev_err(&pdev->dev, "No IRQ specified\n");
571 err = -ENOENT;
Jingoo Hanc9f722e2013-12-09 19:19:13 +0900572 goto err_no_pdata;
Ben Dooks7fba5342006-05-20 15:00:18 -0700573 }
574
Jingoo Hanc9f722e2013-12-09 19:19:13 +0900575 err = devm_request_irq(&pdev->dev, hw->irq, s3c24xx_spi_irq, 0,
576 pdev->name, hw);
Ben Dooks7fba5342006-05-20 15:00:18 -0700577 if (err) {
578 dev_err(&pdev->dev, "Cannot claim IRQ\n");
Jingoo Hanc9f722e2013-12-09 19:19:13 +0900579 goto err_no_pdata;
Ben Dooks7fba5342006-05-20 15:00:18 -0700580 }
581
Jingoo Hanc9f722e2013-12-09 19:19:13 +0900582 hw->clk = devm_clk_get(&pdev->dev, "spi");
Ben Dooks7fba5342006-05-20 15:00:18 -0700583 if (IS_ERR(hw->clk)) {
584 dev_err(&pdev->dev, "No clock for device\n");
585 err = PTR_ERR(hw->clk);
Jingoo Hanc9f722e2013-12-09 19:19:13 +0900586 goto err_no_pdata;
Ben Dooks7fba5342006-05-20 15:00:18 -0700587 }
588
Ben Dooks7fba5342006-05-20 15:00:18 -0700589 /* setup any gpio we can */
590
Ben Dooks50f426b2008-04-15 14:34:45 -0700591 if (!pdata->set_cs) {
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800592 if (pdata->pin_cs < 0) {
593 dev_err(&pdev->dev, "No chipselect pin\n");
Julia Lawallb2af0452012-08-22 13:42:47 +0200594 err = -EINVAL;
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800595 goto err_register;
596 }
Ben Dooks8736b922007-01-26 00:56:43 -0800597
Jingoo Hanc9f722e2013-12-09 19:19:13 +0900598 err = devm_gpio_request(&pdev->dev, pdata->pin_cs,
599 dev_name(&pdev->dev));
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800600 if (err) {
601 dev_err(&pdev->dev, "Failed to get gpio for cs\n");
602 goto err_register;
603 }
604
605 hw->set_cs = s3c24xx_spi_gpiocs;
606 gpio_direction_output(pdata->pin_cs, 1);
Ben Dooks8736b922007-01-26 00:56:43 -0800607 } else
Ben Dooks50f426b2008-04-15 14:34:45 -0700608 hw->set_cs = pdata->set_cs;
Ben Dooks7fba5342006-05-20 15:00:18 -0700609
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800610 s3c24xx_spi_initialsetup(hw);
611
Ben Dooks7fba5342006-05-20 15:00:18 -0700612 /* register our spi controller */
613
614 err = spi_bitbang_start(&hw->bitbang);
615 if (err) {
616 dev_err(&pdev->dev, "Failed to register SPI master\n");
617 goto err_register;
618 }
619
Ben Dooks7fba5342006-05-20 15:00:18 -0700620 return 0;
621
622 err_register:
623 clk_disable(hw->clk);
Ben Dooks7fba5342006-05-20 15:00:18 -0700624
Ben Dooks7fba5342006-05-20 15:00:18 -0700625 err_no_pdata:
Joe Perchesa419aef2009-08-18 11:18:35 -0700626 spi_master_put(hw->master);
Ben Dooks7fba5342006-05-20 15:00:18 -0700627 return err;
628}
629
Grant Likelyfd4a3192012-12-07 16:57:14 +0000630static int s3c24xx_spi_remove(struct platform_device *dev)
Ben Dooks7fba5342006-05-20 15:00:18 -0700631{
632 struct s3c24xx_spi *hw = platform_get_drvdata(dev);
633
Axel Linc6e7b8c2011-05-15 07:35:16 +0800634 spi_bitbang_stop(&hw->bitbang);
Ben Dooks7fba5342006-05-20 15:00:18 -0700635 clk_disable(hw->clk);
Ben Dooks7fba5342006-05-20 15:00:18 -0700636 spi_master_put(hw->master);
637 return 0;
638}
639
640
641#ifdef CONFIG_PM
642
Ben Dooks6d613202009-09-22 16:46:13 -0700643static int s3c24xx_spi_suspend(struct device *dev)
Ben Dooks7fba5342006-05-20 15:00:18 -0700644{
Axel Lina12163942013-08-09 15:35:16 +0800645 struct s3c24xx_spi *hw = dev_get_drvdata(dev);
Ben Dooks7fba5342006-05-20 15:00:18 -0700646
Ben Dookscf46b972008-10-15 22:02:41 -0700647 if (hw->pdata && hw->pdata->gpio_setup)
648 hw->pdata->gpio_setup(hw->pdata, 0);
649
Ben Dooks7fba5342006-05-20 15:00:18 -0700650 clk_disable(hw->clk);
651 return 0;
652}
653
Ben Dooks6d613202009-09-22 16:46:13 -0700654static int s3c24xx_spi_resume(struct device *dev)
Ben Dooks7fba5342006-05-20 15:00:18 -0700655{
Axel Lina12163942013-08-09 15:35:16 +0800656 struct s3c24xx_spi *hw = dev_get_drvdata(dev);
Ben Dooks7fba5342006-05-20 15:00:18 -0700657
Ben Dooks5aa6cf32008-08-04 13:41:10 -0700658 s3c24xx_spi_initialsetup(hw);
Ben Dooks7fba5342006-05-20 15:00:18 -0700659 return 0;
660}
661
Alexey Dobriyan47145212009-12-14 18:00:08 -0800662static const struct dev_pm_ops s3c24xx_spi_pmops = {
Ben Dooks6d613202009-09-22 16:46:13 -0700663 .suspend = s3c24xx_spi_suspend,
664 .resume = s3c24xx_spi_resume,
665};
666
667#define S3C24XX_SPI_PMOPS &s3c24xx_spi_pmops
Ben Dooks7fba5342006-05-20 15:00:18 -0700668#else
Ben Dooks6d613202009-09-22 16:46:13 -0700669#define S3C24XX_SPI_PMOPS NULL
670#endif /* CONFIG_PM */
Ben Dooks7fba5342006-05-20 15:00:18 -0700671
Kay Sievers7e38c3c2008-04-10 21:29:20 -0700672MODULE_ALIAS("platform:s3c2410-spi");
Ben Dooks42cde432008-09-13 02:33:24 -0700673static struct platform_driver s3c24xx_spi_driver = {
Grant Likely940ab882011-10-05 11:29:49 -0600674 .probe = s3c24xx_spi_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +0000675 .remove = s3c24xx_spi_remove,
Ben Dooks7fba5342006-05-20 15:00:18 -0700676 .driver = {
677 .name = "s3c2410-spi",
678 .owner = THIS_MODULE,
Ben Dooks6d613202009-09-22 16:46:13 -0700679 .pm = S3C24XX_SPI_PMOPS,
Ben Dooks7fba5342006-05-20 15:00:18 -0700680 },
681};
Grant Likely940ab882011-10-05 11:29:49 -0600682module_platform_driver(s3c24xx_spi_driver);
Ben Dooks7fba5342006-05-20 15:00:18 -0700683
684MODULE_DESCRIPTION("S3C24XX SPI Driver");
685MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>");
686MODULE_LICENSE("GPL");