blob: 381d4af149fc741c45785d375fa221f2ba0b9c5a [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/spinlock.h>
13#include <linux/workqueue.h>
14#include <linux/interrupt.h>
15#include <linux/delay.h>
16#include <linux/errno.h>
17#include <linux/err.h>
18#include <linux/clk.h>
19#include <linux/platform_device.h>
Ben Dooksee9c1fb2009-01-06 14:41:44 -080020#include <linux/gpio.h>
Ben Dooks1a0c2202009-09-22 16:46:12 -070021#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Ben Dooks7fba5342006-05-20 15:00:18 -070023
24#include <linux/spi/spi.h>
25#include <linux/spi/spi_bitbang.h>
Heiko Stuebnerf35ef7c2012-01-31 20:06:07 +090026#include <linux/spi/s3c24xx.h>
Paul Gortmakerd7614de2011-07-03 15:44:29 -040027#include <linux/module.h>
Ben Dooks7fba5342006-05-20 15:00:18 -070028
Ben Dooks13622702008-10-30 10:14:38 +000029#include <plat/regs-spi.h>
Ben Dooks7fba5342006-05-20 15:00:18 -070030
Ben Dooksbec08062009-12-14 22:20:24 -080031#include <asm/fiq.h>
32
Grant Likelyca632f52011-06-06 01:16:30 -060033#include "spi-s3c24xx-fiq.h"
Ben Dooksbec08062009-12-14 22:20:24 -080034
Ben Dooks570327d2009-09-22 16:46:14 -070035/**
36 * s3c24xx_spi_devstate - per device data
37 * @hz: Last frequency calculated for @sppre field.
38 * @mode: Last mode setting for the @spcon field.
39 * @spcon: Value to write to the SPCON register.
40 * @sppre: Value to write to the SPPRE register.
41 */
42struct s3c24xx_spi_devstate {
43 unsigned int hz;
44 unsigned int mode;
45 u8 spcon;
46 u8 sppre;
47};
48
Ben Dooksbec08062009-12-14 22:20:24 -080049enum spi_fiq_mode {
50 FIQ_MODE_NONE = 0,
51 FIQ_MODE_TX = 1,
52 FIQ_MODE_RX = 2,
53 FIQ_MODE_TXRX = 3,
54};
55
Ben Dooks7fba5342006-05-20 15:00:18 -070056struct s3c24xx_spi {
57 /* bitbang has to be first */
58 struct spi_bitbang bitbang;
59 struct completion done;
60
61 void __iomem *regs;
62 int irq;
63 int len;
64 int count;
65
Ben Dooksbec08062009-12-14 22:20:24 -080066 struct fiq_handler fiq_handler;
67 enum spi_fiq_mode fiq_mode;
68 unsigned char fiq_inuse;
69 unsigned char fiq_claimed;
70
Arnaud Patard (Rtp6c912a32007-03-16 13:38:36 -080071 void (*set_cs)(struct s3c2410_spi_info *spi,
Ben Dooks8736b922007-01-26 00:56:43 -080072 int cs, int pol);
73
Ben Dooks7fba5342006-05-20 15:00:18 -070074 /* data buffers */
75 const unsigned char *tx;
76 unsigned char *rx;
77
78 struct clk *clk;
Ben Dooks7fba5342006-05-20 15:00:18 -070079 struct spi_master *master;
80 struct spi_device *curdev;
81 struct device *dev;
82 struct s3c2410_spi_info *pdata;
83};
84
85#define SPCON_DEFAULT (S3C2410_SPCON_MSTR | S3C2410_SPCON_SMOD_INT)
86#define SPPIN_DEFAULT (S3C2410_SPPIN_KEEP)
87
88static inline struct s3c24xx_spi *to_hw(struct spi_device *sdev)
89{
90 return spi_master_get_devdata(sdev->master);
91}
92
Ben Dooks8736b922007-01-26 00:56:43 -080093static void s3c24xx_spi_gpiocs(struct s3c2410_spi_info *spi, int cs, int pol)
94{
Ben Dooksee9c1fb2009-01-06 14:41:44 -080095 gpio_set_value(spi->pin_cs, pol);
Ben Dooks8736b922007-01-26 00:56:43 -080096}
97
Ben Dooks7fba5342006-05-20 15:00:18 -070098static void s3c24xx_spi_chipsel(struct spi_device *spi, int value)
99{
Ben Dooks570327d2009-09-22 16:46:14 -0700100 struct s3c24xx_spi_devstate *cs = spi->controller_state;
Ben Dooks7fba5342006-05-20 15:00:18 -0700101 struct s3c24xx_spi *hw = to_hw(spi);
102 unsigned int cspol = spi->mode & SPI_CS_HIGH ? 1 : 0;
Ben Dooks570327d2009-09-22 16:46:14 -0700103
104 /* change the chipselect state and the state of the spi engine clock */
Ben Dooks7fba5342006-05-20 15:00:18 -0700105
106 switch (value) {
107 case BITBANG_CS_INACTIVE:
Ben Dooks3d2c5b42007-04-16 22:53:22 -0700108 hw->set_cs(hw->pdata, spi->chip_select, cspol^1);
Ben Dooks570327d2009-09-22 16:46:14 -0700109 writeb(cs->spcon, hw->regs + S3C2410_SPCON);
Ben Dooks7fba5342006-05-20 15:00:18 -0700110 break;
111
112 case BITBANG_CS_ACTIVE:
Ben Dooks570327d2009-09-22 16:46:14 -0700113 writeb(cs->spcon | S3C2410_SPCON_ENSCK,
114 hw->regs + S3C2410_SPCON);
Ben Dooks3d2c5b42007-04-16 22:53:22 -0700115 hw->set_cs(hw->pdata, spi->chip_select, cspol);
Ben Dooks7fba5342006-05-20 15:00:18 -0700116 break;
Ben Dooks7fba5342006-05-20 15:00:18 -0700117 }
118}
119
Ben Dooks570327d2009-09-22 16:46:14 -0700120static int s3c24xx_spi_update_state(struct spi_device *spi,
121 struct spi_transfer *t)
Ben Dooks7fba5342006-05-20 15:00:18 -0700122{
123 struct s3c24xx_spi *hw = to_hw(spi);
Ben Dooks570327d2009-09-22 16:46:14 -0700124 struct s3c24xx_spi_devstate *cs = spi->controller_state;
Ben Dooks7fba5342006-05-20 15:00:18 -0700125 unsigned int hz;
126 unsigned int div;
Ben Dooksb8978782009-08-18 14:11:16 -0700127 unsigned long clk;
Ben Dooks7fba5342006-05-20 15:00:18 -0700128
Ben Dooks7fba5342006-05-20 15:00:18 -0700129 hz = t ? t->speed_hz : spi->max_speed_hz;
130
Ben Dooks19152972009-08-18 14:11:17 -0700131 if (!hz)
132 hz = spi->max_speed_hz;
133
Ben Dooks570327d2009-09-22 16:46:14 -0700134 if (spi->mode != cs->mode) {
Ben Dooksbec08062009-12-14 22:20:24 -0800135 u8 spcon = SPCON_DEFAULT | S3C2410_SPCON_ENSCK;
Ben Dooks7fba5342006-05-20 15:00:18 -0700136
Ben Dooks570327d2009-09-22 16:46:14 -0700137 if (spi->mode & SPI_CPHA)
138 spcon |= S3C2410_SPCON_CPHA_FMTB;
Ben Dooks7fba5342006-05-20 15:00:18 -0700139
Ben Dooks570327d2009-09-22 16:46:14 -0700140 if (spi->mode & SPI_CPOL)
141 spcon |= S3C2410_SPCON_CPOL_HIGH;
Ben Dooksb8978782009-08-18 14:11:16 -0700142
Ben Dooks570327d2009-09-22 16:46:14 -0700143 cs->mode = spi->mode;
144 cs->spcon = spcon;
145 }
Ben Dooksb8978782009-08-18 14:11:16 -0700146
Ben Dooks570327d2009-09-22 16:46:14 -0700147 if (cs->hz != hz) {
148 clk = clk_get_rate(hw->clk);
149 div = DIV_ROUND_UP(clk, hz * 2) - 1;
150
151 if (div > 255)
152 div = 255;
153
154 dev_dbg(&spi->dev, "pre-scaler=%d (wanted %d, got %ld)\n",
155 div, hz, clk / (2 * (div + 1)));
156
157 cs->hz = hz;
158 cs->sppre = div;
159 }
160
161 return 0;
162}
163
164static int s3c24xx_spi_setupxfer(struct spi_device *spi,
165 struct spi_transfer *t)
166{
167 struct s3c24xx_spi_devstate *cs = spi->controller_state;
168 struct s3c24xx_spi *hw = to_hw(spi);
169 int ret;
170
171 ret = s3c24xx_spi_update_state(spi, t);
172 if (!ret)
173 writeb(cs->sppre, hw->regs + S3C2410_SPPRE);
174
175 return ret;
176}
177
178static int s3c24xx_spi_setup(struct spi_device *spi)
179{
180 struct s3c24xx_spi_devstate *cs = spi->controller_state;
181 struct s3c24xx_spi *hw = to_hw(spi);
182 int ret;
183
184 /* allocate settings on the first call */
185 if (!cs) {
Axel Linc586feb2014-03-31 11:37:29 +0800186 cs = devm_kzalloc(&spi->dev,
187 sizeof(struct s3c24xx_spi_devstate),
188 GFP_KERNEL);
Jingoo Han0375cff2014-04-29 17:20:02 +0900189 if (!cs)
Ben Dooks570327d2009-09-22 16:46:14 -0700190 return -ENOMEM;
Ben Dooks570327d2009-09-22 16:46:14 -0700191
192 cs->spcon = SPCON_DEFAULT;
193 cs->hz = -1;
194 spi->controller_state = cs;
195 }
196
197 /* initialise the state from the device */
198 ret = s3c24xx_spi_update_state(spi, NULL);
199 if (ret)
200 return ret;
Ben Dooks7fba5342006-05-20 15:00:18 -0700201
202 spin_lock(&hw->bitbang.lock);
203 if (!hw->bitbang.busy) {
204 hw->bitbang.chipselect(spi, BITBANG_CS_INACTIVE);
205 /* need to ndelay for 0.5 clocktick ? */
206 }
207 spin_unlock(&hw->bitbang.lock);
208
209 return 0;
210}
211
Ben Dooks7fba5342006-05-20 15:00:18 -0700212static inline unsigned int hw_txbyte(struct s3c24xx_spi *hw, int count)
213{
David Brownell4b1badf2006-12-29 16:48:39 -0800214 return hw->tx ? hw->tx[count] : 0;
Ben Dooks7fba5342006-05-20 15:00:18 -0700215}
216
Ben Dooksbec08062009-12-14 22:20:24 -0800217#ifdef CONFIG_SPI_S3C24XX_FIQ
218/* Support for FIQ based pseudo-DMA to improve the transfer speed.
219 *
220 * This code uses the assembly helper in spi_s3c24xx_spi.S which is
221 * used by the FIQ core to move data between main memory and the peripheral
222 * block. Since this is code running on the processor, there is no problem
223 * with cache coherency of the buffers, so we can use any buffer we like.
224 */
225
226/**
227 * struct spi_fiq_code - FIQ code and header
228 * @length: The length of the code fragment, excluding this header.
229 * @ack_offset: The offset from @data to the word to place the IRQ ACK bit at.
230 * @data: The code itself to install as a FIQ handler.
231 */
232struct spi_fiq_code {
233 u32 length;
234 u32 ack_offset;
235 u8 data[0];
236};
237
238extern struct spi_fiq_code s3c24xx_spi_fiq_txrx;
239extern struct spi_fiq_code s3c24xx_spi_fiq_tx;
240extern struct spi_fiq_code s3c24xx_spi_fiq_rx;
241
242/**
243 * ack_bit - turn IRQ into IRQ acknowledgement bit
244 * @irq: The interrupt number
245 *
246 * Returns the bit to write to the interrupt acknowledge register.
247 */
248static inline u32 ack_bit(unsigned int irq)
249{
250 return 1 << (irq - IRQ_EINT0);
251}
252
253/**
254 * s3c24xx_spi_tryfiq - attempt to claim and setup FIQ for transfer
255 * @hw: The hardware state.
256 *
257 * Claim the FIQ handler (only one can be active at any one time) and
258 * then setup the correct transfer code for this transfer.
259 *
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800260 * This call updates all the necessary state information if successful,
Ben Dooksbec08062009-12-14 22:20:24 -0800261 * so the caller does not need to do anything more than start the transfer
262 * as normal, since the IRQ will have been re-routed to the FIQ handler.
263*/
Sachin Kamatcfeb3312013-09-10 11:20:13 +0530264static void s3c24xx_spi_tryfiq(struct s3c24xx_spi *hw)
Ben Dooksbec08062009-12-14 22:20:24 -0800265{
266 struct pt_regs regs;
267 enum spi_fiq_mode mode;
268 struct spi_fiq_code *code;
269 int ret;
270
271 if (!hw->fiq_claimed) {
272 /* try and claim fiq if we haven't got it, and if not
273 * then return and simply use another transfer method */
274
275 ret = claim_fiq(&hw->fiq_handler);
276 if (ret)
277 return;
278 }
279
280 if (hw->tx && !hw->rx)
281 mode = FIQ_MODE_TX;
282 else if (hw->rx && !hw->tx)
283 mode = FIQ_MODE_RX;
284 else
285 mode = FIQ_MODE_TXRX;
286
287 regs.uregs[fiq_rspi] = (long)hw->regs;
288 regs.uregs[fiq_rrx] = (long)hw->rx;
289 regs.uregs[fiq_rtx] = (long)hw->tx + 1;
290 regs.uregs[fiq_rcount] = hw->len - 1;
291 regs.uregs[fiq_rirq] = (long)S3C24XX_VA_IRQ;
292
293 set_fiq_regs(&regs);
294
295 if (hw->fiq_mode != mode) {
296 u32 *ack_ptr;
297
298 hw->fiq_mode = mode;
299
300 switch (mode) {
301 case FIQ_MODE_TX:
302 code = &s3c24xx_spi_fiq_tx;
303 break;
304 case FIQ_MODE_RX:
305 code = &s3c24xx_spi_fiq_rx;
306 break;
307 case FIQ_MODE_TXRX:
308 code = &s3c24xx_spi_fiq_txrx;
309 break;
310 default:
311 code = NULL;
312 }
313
314 BUG_ON(!code);
315
316 ack_ptr = (u32 *)&code->data[code->ack_offset];
317 *ack_ptr = ack_bit(hw->irq);
318
319 set_fiq_handler(&code->data, code->length);
320 }
321
322 s3c24xx_set_fiq(hw->irq, true);
323
324 hw->fiq_mode = mode;
325 hw->fiq_inuse = 1;
326}
327
328/**
329 * s3c24xx_spi_fiqop - FIQ core code callback
330 * @pw: Data registered with the handler
331 * @release: Whether this is a release or a return.
332 *
333 * Called by the FIQ code when another module wants to use the FIQ, so
334 * return whether we are currently using this or not and then update our
335 * internal state.
336 */
337static int s3c24xx_spi_fiqop(void *pw, int release)
338{
339 struct s3c24xx_spi *hw = pw;
340 int ret = 0;
341
342 if (release) {
343 if (hw->fiq_inuse)
344 ret = -EBUSY;
345
346 /* note, we do not need to unroute the FIQ, as the FIQ
347 * vector code de-routes it to signal the end of transfer */
348
349 hw->fiq_mode = FIQ_MODE_NONE;
350 hw->fiq_claimed = 0;
351 } else {
352 hw->fiq_claimed = 1;
353 }
354
355 return ret;
356}
357
358/**
359 * s3c24xx_spi_initfiq - setup the information for the FIQ core
360 * @hw: The hardware state.
361 *
362 * Setup the fiq_handler block to pass to the FIQ core.
363 */
364static inline void s3c24xx_spi_initfiq(struct s3c24xx_spi *hw)
365{
366 hw->fiq_handler.dev_id = hw;
367 hw->fiq_handler.name = dev_name(hw->dev);
368 hw->fiq_handler.fiq_op = s3c24xx_spi_fiqop;
369}
370
371/**
372 * s3c24xx_spi_usefiq - return if we should be using FIQ.
373 * @hw: The hardware state.
374 *
375 * Return true if the platform data specifies whether this channel is
376 * allowed to use the FIQ.
377 */
378static inline bool s3c24xx_spi_usefiq(struct s3c24xx_spi *hw)
379{
380 return hw->pdata->use_fiq;
381}
382
383/**
384 * s3c24xx_spi_usingfiq - return if channel is using FIQ
385 * @spi: The hardware state.
386 *
387 * Return whether the channel is currently using the FIQ (separate from
388 * whether the FIQ is claimed).
389 */
390static inline bool s3c24xx_spi_usingfiq(struct s3c24xx_spi *spi)
391{
392 return spi->fiq_inuse;
393}
394#else
395
396static inline void s3c24xx_spi_initfiq(struct s3c24xx_spi *s) { }
397static inline void s3c24xx_spi_tryfiq(struct s3c24xx_spi *s) { }
398static inline bool s3c24xx_spi_usefiq(struct s3c24xx_spi *s) { return false; }
399static inline bool s3c24xx_spi_usingfiq(struct s3c24xx_spi *s) { return false; }
400
401#endif /* CONFIG_SPI_S3C24XX_FIQ */
402
Ben Dooks7fba5342006-05-20 15:00:18 -0700403static int s3c24xx_spi_txrx(struct spi_device *spi, struct spi_transfer *t)
404{
405 struct s3c24xx_spi *hw = to_hw(spi);
406
Ben Dooks7fba5342006-05-20 15:00:18 -0700407 hw->tx = t->tx_buf;
408 hw->rx = t->rx_buf;
409 hw->len = t->len;
410 hw->count = 0;
411
Ben Dooks4bb5eba2008-04-15 14:34:44 -0700412 init_completion(&hw->done);
413
Ben Dooksbec08062009-12-14 22:20:24 -0800414 hw->fiq_inuse = 0;
415 if (s3c24xx_spi_usefiq(hw) && t->len >= 3)
416 s3c24xx_spi_tryfiq(hw);
417
Ben Dooks7fba5342006-05-20 15:00:18 -0700418 /* send the first byte */
419 writeb(hw_txbyte(hw, 0), hw->regs + S3C2410_SPTDAT);
Ben Dooks4bb5eba2008-04-15 14:34:44 -0700420
Ben Dooks7fba5342006-05-20 15:00:18 -0700421 wait_for_completion(&hw->done);
Ben Dooks7fba5342006-05-20 15:00:18 -0700422 return hw->count;
423}
424
David Howells7d12e782006-10-05 14:55:46 +0100425static irqreturn_t s3c24xx_spi_irq(int irq, void *dev)
Ben Dooks7fba5342006-05-20 15:00:18 -0700426{
427 struct s3c24xx_spi *hw = dev;
428 unsigned int spsta = readb(hw->regs + S3C2410_SPSTA);
429 unsigned int count = hw->count;
430
431 if (spsta & S3C2410_SPSTA_DCOL) {
432 dev_dbg(hw->dev, "data-collision\n");
433 complete(&hw->done);
434 goto irq_done;
435 }
436
437 if (!(spsta & S3C2410_SPSTA_READY)) {
438 dev_dbg(hw->dev, "spi not ready for tx?\n");
439 complete(&hw->done);
440 goto irq_done;
441 }
442
Ben Dooksbec08062009-12-14 22:20:24 -0800443 if (!s3c24xx_spi_usingfiq(hw)) {
444 hw->count++;
Ben Dooks7fba5342006-05-20 15:00:18 -0700445
Ben Dooksbec08062009-12-14 22:20:24 -0800446 if (hw->rx)
447 hw->rx[count] = readb(hw->regs + S3C2410_SPRDAT);
Ben Dooks7fba5342006-05-20 15:00:18 -0700448
Ben Dooksbec08062009-12-14 22:20:24 -0800449 count++;
Ben Dooks7fba5342006-05-20 15:00:18 -0700450
Ben Dooksbec08062009-12-14 22:20:24 -0800451 if (count < hw->len)
452 writeb(hw_txbyte(hw, count), hw->regs + S3C2410_SPTDAT);
453 else
454 complete(&hw->done);
455 } else {
456 hw->count = hw->len;
457 hw->fiq_inuse = 0;
458
459 if (hw->rx)
460 hw->rx[hw->len-1] = readb(hw->regs + S3C2410_SPRDAT);
461
Ben Dooks7fba5342006-05-20 15:00:18 -0700462 complete(&hw->done);
Ben Dooksbec08062009-12-14 22:20:24 -0800463 }
Ben Dooks7fba5342006-05-20 15:00:18 -0700464
465 irq_done:
466 return IRQ_HANDLED;
467}
468
Ben Dooks5aa6cf32008-08-04 13:41:10 -0700469static void s3c24xx_spi_initialsetup(struct s3c24xx_spi *hw)
470{
471 /* for the moment, permanently enable the clock */
472
473 clk_enable(hw->clk);
474
475 /* program defaults into the registers */
476
477 writeb(0xff, hw->regs + S3C2410_SPPRE);
478 writeb(SPPIN_DEFAULT, hw->regs + S3C2410_SPPIN);
479 writeb(SPCON_DEFAULT, hw->regs + S3C2410_SPCON);
Ben Dookscf46b972008-10-15 22:02:41 -0700480
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800481 if (hw->pdata) {
482 if (hw->set_cs == s3c24xx_spi_gpiocs)
483 gpio_direction_output(hw->pdata->pin_cs, 1);
484
485 if (hw->pdata->gpio_setup)
486 hw->pdata->gpio_setup(hw->pdata, 1);
487 }
Ben Dooks5aa6cf32008-08-04 13:41:10 -0700488}
489
Grant Likelyfd4a3192012-12-07 16:57:14 +0000490static int s3c24xx_spi_probe(struct platform_device *pdev)
Ben Dooks7fba5342006-05-20 15:00:18 -0700491{
Ben Dooks50f426b2008-04-15 14:34:45 -0700492 struct s3c2410_spi_info *pdata;
Ben Dooks7fba5342006-05-20 15:00:18 -0700493 struct s3c24xx_spi *hw;
494 struct spi_master *master;
Ben Dooks7fba5342006-05-20 15:00:18 -0700495 struct resource *res;
496 int err = 0;
Ben Dooks7fba5342006-05-20 15:00:18 -0700497
498 master = spi_alloc_master(&pdev->dev, sizeof(struct s3c24xx_spi));
499 if (master == NULL) {
500 dev_err(&pdev->dev, "No memory for spi_master\n");
Jingoo Hanc9f722e2013-12-09 19:19:13 +0900501 return -ENOMEM;
Ben Dooks7fba5342006-05-20 15:00:18 -0700502 }
503
504 hw = spi_master_get_devdata(master);
505 memset(hw, 0, sizeof(struct s3c24xx_spi));
506
Axel Lin94c69f72013-09-10 15:43:41 +0800507 hw->master = master;
Jingoo Han8074cf02013-07-30 16:58:59 +0900508 hw->pdata = pdata = dev_get_platdata(&pdev->dev);
Ben Dooks7fba5342006-05-20 15:00:18 -0700509 hw->dev = &pdev->dev;
510
Ben Dooks50f426b2008-04-15 14:34:45 -0700511 if (pdata == NULL) {
Ben Dooks7fba5342006-05-20 15:00:18 -0700512 dev_err(&pdev->dev, "No platform data supplied\n");
513 err = -ENOENT;
514 goto err_no_pdata;
515 }
516
517 platform_set_drvdata(pdev, hw);
518 init_completion(&hw->done);
519
Ben Dooksbec08062009-12-14 22:20:24 -0800520 /* initialise fiq handler */
521
522 s3c24xx_spi_initfiq(hw);
523
Ben Dooksd1e77802008-04-15 14:34:46 -0700524 /* setup the master state. */
525
David Brownelle7db06b2009-06-17 16:26:04 -0700526 /* the spi->mode bits understood by this driver: */
527 master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH;
528
Ben Dooksd1e77802008-04-15 14:34:46 -0700529 master->num_chipselect = hw->pdata->num_cs;
Ben Dookscb1d0a72008-07-28 15:46:33 -0700530 master->bus_num = pdata->bus_num;
Axel Lin08850fa2014-02-14 20:38:16 +0800531 master->bits_per_word_mask = SPI_BPW_MASK(8);
Ben Dooksd1e77802008-04-15 14:34:46 -0700532
Ben Dooks7fba5342006-05-20 15:00:18 -0700533 /* setup the state for the bitbang driver */
534
535 hw->bitbang.master = hw->master;
536 hw->bitbang.setup_transfer = s3c24xx_spi_setupxfer;
537 hw->bitbang.chipselect = s3c24xx_spi_chipsel;
538 hw->bitbang.txrx_bufs = s3c24xx_spi_txrx;
Ben Dooks570327d2009-09-22 16:46:14 -0700539
540 hw->master->setup = s3c24xx_spi_setup;
Ben Dooks7fba5342006-05-20 15:00:18 -0700541
542 dev_dbg(hw->dev, "bitbang at %p\n", &hw->bitbang);
543
544 /* find and map our resources */
Ben Dooks7fba5342006-05-20 15:00:18 -0700545 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Jingoo Hanc9f722e2013-12-09 19:19:13 +0900546 hw->regs = devm_ioremap_resource(&pdev->dev, res);
547 if (IS_ERR(hw->regs)) {
548 err = PTR_ERR(hw->regs);
549 goto err_no_pdata;
Ben Dooks7fba5342006-05-20 15:00:18 -0700550 }
551
552 hw->irq = platform_get_irq(pdev, 0);
553 if (hw->irq < 0) {
554 dev_err(&pdev->dev, "No IRQ specified\n");
555 err = -ENOENT;
Jingoo Hanc9f722e2013-12-09 19:19:13 +0900556 goto err_no_pdata;
Ben Dooks7fba5342006-05-20 15:00:18 -0700557 }
558
Jingoo Hanc9f722e2013-12-09 19:19:13 +0900559 err = devm_request_irq(&pdev->dev, hw->irq, s3c24xx_spi_irq, 0,
560 pdev->name, hw);
Ben Dooks7fba5342006-05-20 15:00:18 -0700561 if (err) {
562 dev_err(&pdev->dev, "Cannot claim IRQ\n");
Jingoo Hanc9f722e2013-12-09 19:19:13 +0900563 goto err_no_pdata;
Ben Dooks7fba5342006-05-20 15:00:18 -0700564 }
565
Jingoo Hanc9f722e2013-12-09 19:19:13 +0900566 hw->clk = devm_clk_get(&pdev->dev, "spi");
Ben Dooks7fba5342006-05-20 15:00:18 -0700567 if (IS_ERR(hw->clk)) {
568 dev_err(&pdev->dev, "No clock for device\n");
569 err = PTR_ERR(hw->clk);
Jingoo Hanc9f722e2013-12-09 19:19:13 +0900570 goto err_no_pdata;
Ben Dooks7fba5342006-05-20 15:00:18 -0700571 }
572
Ben Dooks7fba5342006-05-20 15:00:18 -0700573 /* setup any gpio we can */
574
Ben Dooks50f426b2008-04-15 14:34:45 -0700575 if (!pdata->set_cs) {
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800576 if (pdata->pin_cs < 0) {
577 dev_err(&pdev->dev, "No chipselect pin\n");
Julia Lawallb2af0452012-08-22 13:42:47 +0200578 err = -EINVAL;
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800579 goto err_register;
580 }
Ben Dooks8736b922007-01-26 00:56:43 -0800581
Jingoo Hanc9f722e2013-12-09 19:19:13 +0900582 err = devm_gpio_request(&pdev->dev, pdata->pin_cs,
583 dev_name(&pdev->dev));
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800584 if (err) {
585 dev_err(&pdev->dev, "Failed to get gpio for cs\n");
586 goto err_register;
587 }
588
589 hw->set_cs = s3c24xx_spi_gpiocs;
590 gpio_direction_output(pdata->pin_cs, 1);
Ben Dooks8736b922007-01-26 00:56:43 -0800591 } else
Ben Dooks50f426b2008-04-15 14:34:45 -0700592 hw->set_cs = pdata->set_cs;
Ben Dooks7fba5342006-05-20 15:00:18 -0700593
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800594 s3c24xx_spi_initialsetup(hw);
595
Ben Dooks7fba5342006-05-20 15:00:18 -0700596 /* register our spi controller */
597
598 err = spi_bitbang_start(&hw->bitbang);
599 if (err) {
600 dev_err(&pdev->dev, "Failed to register SPI master\n");
601 goto err_register;
602 }
603
Ben Dooks7fba5342006-05-20 15:00:18 -0700604 return 0;
605
606 err_register:
607 clk_disable(hw->clk);
Ben Dooks7fba5342006-05-20 15:00:18 -0700608
Ben Dooks7fba5342006-05-20 15:00:18 -0700609 err_no_pdata:
Joe Perchesa419aef2009-08-18 11:18:35 -0700610 spi_master_put(hw->master);
Ben Dooks7fba5342006-05-20 15:00:18 -0700611 return err;
612}
613
Grant Likelyfd4a3192012-12-07 16:57:14 +0000614static int s3c24xx_spi_remove(struct platform_device *dev)
Ben Dooks7fba5342006-05-20 15:00:18 -0700615{
616 struct s3c24xx_spi *hw = platform_get_drvdata(dev);
617
Axel Linc6e7b8c2011-05-15 07:35:16 +0800618 spi_bitbang_stop(&hw->bitbang);
Ben Dooks7fba5342006-05-20 15:00:18 -0700619 clk_disable(hw->clk);
Ben Dooks7fba5342006-05-20 15:00:18 -0700620 spi_master_put(hw->master);
621 return 0;
622}
623
624
625#ifdef CONFIG_PM
626
Ben Dooks6d613202009-09-22 16:46:13 -0700627static int s3c24xx_spi_suspend(struct device *dev)
Ben Dooks7fba5342006-05-20 15:00:18 -0700628{
Axel Lina12163942013-08-09 15:35:16 +0800629 struct s3c24xx_spi *hw = dev_get_drvdata(dev);
Axel Lin38060372014-03-05 15:17:23 +0800630 int ret;
631
632 ret = spi_master_suspend(hw->master);
633 if (ret)
634 return ret;
Ben Dooks7fba5342006-05-20 15:00:18 -0700635
Ben Dookscf46b972008-10-15 22:02:41 -0700636 if (hw->pdata && hw->pdata->gpio_setup)
637 hw->pdata->gpio_setup(hw->pdata, 0);
638
Ben Dooks7fba5342006-05-20 15:00:18 -0700639 clk_disable(hw->clk);
640 return 0;
641}
642
Ben Dooks6d613202009-09-22 16:46:13 -0700643static int s3c24xx_spi_resume(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 Dooks5aa6cf32008-08-04 13:41:10 -0700647 s3c24xx_spi_initialsetup(hw);
Axel Lin38060372014-03-05 15:17:23 +0800648 return spi_master_resume(hw->master);
Ben Dooks7fba5342006-05-20 15:00:18 -0700649}
650
Alexey Dobriyan47145212009-12-14 18:00:08 -0800651static const struct dev_pm_ops s3c24xx_spi_pmops = {
Ben Dooks6d613202009-09-22 16:46:13 -0700652 .suspend = s3c24xx_spi_suspend,
653 .resume = s3c24xx_spi_resume,
654};
655
656#define S3C24XX_SPI_PMOPS &s3c24xx_spi_pmops
Ben Dooks7fba5342006-05-20 15:00:18 -0700657#else
Ben Dooks6d613202009-09-22 16:46:13 -0700658#define S3C24XX_SPI_PMOPS NULL
659#endif /* CONFIG_PM */
Ben Dooks7fba5342006-05-20 15:00:18 -0700660
Kay Sievers7e38c3c2008-04-10 21:29:20 -0700661MODULE_ALIAS("platform:s3c2410-spi");
Ben Dooks42cde432008-09-13 02:33:24 -0700662static struct platform_driver s3c24xx_spi_driver = {
Grant Likely940ab882011-10-05 11:29:49 -0600663 .probe = s3c24xx_spi_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +0000664 .remove = s3c24xx_spi_remove,
Ben Dooks7fba5342006-05-20 15:00:18 -0700665 .driver = {
666 .name = "s3c2410-spi",
667 .owner = THIS_MODULE,
Ben Dooks6d613202009-09-22 16:46:13 -0700668 .pm = S3C24XX_SPI_PMOPS,
Ben Dooks7fba5342006-05-20 15:00:18 -0700669 },
670};
Grant Likely940ab882011-10-05 11:29:49 -0600671module_platform_driver(s3c24xx_spi_driver);
Ben Dooks7fba5342006-05-20 15:00:18 -0700672
673MODULE_DESCRIPTION("S3C24XX SPI Driver");
674MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>");
675MODULE_LICENSE("GPL");