blob: e595c832be203df082c47a401a64ae616fe36da7 [file] [log] [blame]
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001/****************************************************************************
2 *
3 * Driver for the IFX 6x60 spi modem.
4 *
5 * Copyright (C) 2008 Option International
6 * Copyright (C) 2008 Filip Aben <f.aben@option.com>
7 * Denis Joseph Barrow <d.barow@option.com>
8 * Jan Dumon <j.dumon@option.com>
9 *
10 * Copyright (C) 2009, 2010 Intel Corp
Russ Gorby2f1522e2011-02-02 12:56:58 -080011 * Russ Gorby <russ.gorby@intel.com>
Russ Gorbyaf3b8882010-10-26 14:13:52 +010012 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
25 * USA
26 *
27 * Driver modified by Intel from Option gtm501l_spi.c
28 *
29 * Notes
30 * o The driver currently assumes a single device only. If you need to
31 * change this then look for saved_ifx_dev and add a device lookup
32 * o The driver is intended to be big-endian safe but has never been
33 * tested that way (no suitable hardware). There are a couple of FIXME
34 * notes by areas that may need addressing
35 * o Some of the GPIO naming/setup assumptions may need revisiting if
36 * you need to use this driver for another platform.
37 *
38 *****************************************************************************/
Alexey Dobriyanb7f080c2011-06-16 11:01:34 +000039#include <linux/dma-mapping.h>
Russ Gorbyaf3b8882010-10-26 14:13:52 +010040#include <linux/module.h>
41#include <linux/termios.h>
42#include <linux/tty.h>
43#include <linux/device.h>
44#include <linux/spi/spi.h>
Russ Gorbyaf3b8882010-10-26 14:13:52 +010045#include <linux/kfifo.h>
46#include <linux/tty_flip.h>
47#include <linux/timer.h>
48#include <linux/serial.h>
49#include <linux/interrupt.h>
50#include <linux/irq.h>
51#include <linux/rfkill.h>
52#include <linux/fs.h>
53#include <linux/ip.h>
54#include <linux/dmapool.h>
55#include <linux/gpio.h>
56#include <linux/sched.h>
57#include <linux/time.h>
58#include <linux/wait.h>
Russ Gorbyaf3b8882010-10-26 14:13:52 +010059#include <linux/pm.h>
60#include <linux/pm_runtime.h>
61#include <linux/spi/ifx_modem.h>
Alan Cox83abd0d2010-11-12 10:46:23 +000062#include <linux/delay.h>
Russ Gorbyaf3b8882010-10-26 14:13:52 +010063
64#include "ifx6x60.h"
65
66#define IFX_SPI_MORE_MASK 0x10
67#define IFX_SPI_MORE_BIT 12 /* bit position in u16 */
68#define IFX_SPI_CTS_BIT 13 /* bit position in u16 */
Russ Gorby2aff8d92011-02-07 12:02:31 -080069#define IFX_SPI_MODE SPI_MODE_1
Russ Gorbyaf3b8882010-10-26 14:13:52 +010070#define IFX_SPI_TTY_ID 0
71#define IFX_SPI_TIMEOUT_SEC 2
72#define IFX_SPI_HEADER_0 (-1)
73#define IFX_SPI_HEADER_F (-2)
74
75/* forward reference */
76static void ifx_spi_handle_srdy(struct ifx_spi_device *ifx_dev);
77
78/* local variables */
Russ Gorbyf0891402011-02-07 12:02:29 -080079static int spi_bpw = 16; /* 8, 16 or 32 bit word length */
Russ Gorbyaf3b8882010-10-26 14:13:52 +010080static struct tty_driver *tty_drv;
81static struct ifx_spi_device *saved_ifx_dev;
82static struct lock_class_key ifx_spi_key;
83
84/* GPIO/GPE settings */
85
86/**
87 * mrdy_set_high - set MRDY GPIO
88 * @ifx: device we are controlling
89 *
90 */
91static inline void mrdy_set_high(struct ifx_spi_device *ifx)
92{
93 gpio_set_value(ifx->gpio.mrdy, 1);
94}
95
96/**
97 * mrdy_set_low - clear MRDY GPIO
98 * @ifx: device we are controlling
99 *
100 */
101static inline void mrdy_set_low(struct ifx_spi_device *ifx)
102{
103 gpio_set_value(ifx->gpio.mrdy, 0);
104}
105
106/**
107 * ifx_spi_power_state_set
108 * @ifx_dev: our SPI device
109 * @val: bits to set
110 *
111 * Set bit in power status and signal power system if status becomes non-0
112 */
113static void
114ifx_spi_power_state_set(struct ifx_spi_device *ifx_dev, unsigned char val)
115{
116 unsigned long flags;
117
118 spin_lock_irqsave(&ifx_dev->power_lock, flags);
119
120 /*
121 * if power status is already non-0, just update, else
122 * tell power system
123 */
124 if (!ifx_dev->power_status)
125 pm_runtime_get(&ifx_dev->spi_dev->dev);
126 ifx_dev->power_status |= val;
127
128 spin_unlock_irqrestore(&ifx_dev->power_lock, flags);
129}
130
131/**
132 * ifx_spi_power_state_clear - clear power bit
133 * @ifx_dev: our SPI device
134 * @val: bits to clear
135 *
136 * clear bit in power status and signal power system if status becomes 0
137 */
138static void
139ifx_spi_power_state_clear(struct ifx_spi_device *ifx_dev, unsigned char val)
140{
141 unsigned long flags;
142
143 spin_lock_irqsave(&ifx_dev->power_lock, flags);
144
145 if (ifx_dev->power_status) {
146 ifx_dev->power_status &= ~val;
147 if (!ifx_dev->power_status)
148 pm_runtime_put(&ifx_dev->spi_dev->dev);
149 }
150
151 spin_unlock_irqrestore(&ifx_dev->power_lock, flags);
152}
153
154/**
chao bi319fb0d2012-10-25 09:02:32 +0800155 * swap_buf_8
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100156 * @buf: our buffer
157 * @len : number of bytes (not words) in the buffer
158 * @end: end of buffer
159 *
160 * Swap the contents of a buffer into big endian format
161 */
chao bi319fb0d2012-10-25 09:02:32 +0800162static inline void swap_buf_8(unsigned char *buf, int len, void *end)
163{
164 /* don't swap buffer if SPI word width is 8 bits */
165 return;
166}
167
168/**
169 * swap_buf_16
170 * @buf: our buffer
171 * @len : number of bytes (not words) in the buffer
172 * @end: end of buffer
173 *
174 * Swap the contents of a buffer into big endian format
175 */
176static inline void swap_buf_16(unsigned char *buf, int len, void *end)
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100177{
178 int n;
179
chao bi319fb0d2012-10-25 09:02:32 +0800180 u16 *buf_16 = (u16 *)buf;
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100181 len = ((len + 1) >> 1);
chao bi319fb0d2012-10-25 09:02:32 +0800182 if ((void *)&buf_16[len] > end) {
183 pr_err("swap_buf_16: swap exceeds boundary (%p > %p)!",
184 &buf_16[len], end);
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100185 return;
186 }
187 for (n = 0; n < len; n++) {
chao bi319fb0d2012-10-25 09:02:32 +0800188 *buf_16 = cpu_to_be16(*buf_16);
189 buf_16++;
190 }
191}
192
193/**
194 * swap_buf_32
195 * @buf: our buffer
196 * @len : number of bytes (not words) in the buffer
197 * @end: end of buffer
198 *
199 * Swap the contents of a buffer into big endian format
200 */
201static inline void swap_buf_32(unsigned char *buf, int len, void *end)
202{
203 int n;
204
205 u32 *buf_32 = (u32 *)buf;
206 len = (len + 3) >> 2;
207
208 if ((void *)&buf_32[len] > end) {
209 pr_err("swap_buf_32: swap exceeds boundary (%p > %p)!\n",
210 &buf_32[len], end);
211 return;
212 }
213 for (n = 0; n < len; n++) {
214 *buf_32 = cpu_to_be32(*buf_32);
215 buf_32++;
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100216 }
217}
218
219/**
220 * mrdy_assert - assert MRDY line
221 * @ifx_dev: our SPI device
222 *
223 * Assert mrdy and set timer to wait for SRDY interrupt, if SRDY is low
224 * now.
225 *
226 * FIXME: Can SRDY even go high as we are running this code ?
227 */
228static void mrdy_assert(struct ifx_spi_device *ifx_dev)
229{
230 int val = gpio_get_value(ifx_dev->gpio.srdy);
231 if (!val) {
232 if (!test_and_set_bit(IFX_SPI_STATE_TIMER_PENDING,
233 &ifx_dev->flags)) {
Jun Chenc73ba2a2012-10-22 10:23:07 -0400234 mod_timer(&ifx_dev->spi_timer,jiffies + IFX_SPI_TIMEOUT_SEC*HZ);
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100235
236 }
237 }
238 ifx_spi_power_state_set(ifx_dev, IFX_SPI_POWER_DATA_PENDING);
239 mrdy_set_high(ifx_dev);
240}
241
242/**
243 * ifx_spi_hangup - hang up an IFX device
244 * @ifx_dev: our SPI device
245 *
246 * Hang up the tty attached to the IFX device if one is currently
247 * open. If not take no action
248 */
249static void ifx_spi_ttyhangup(struct ifx_spi_device *ifx_dev)
250{
251 struct tty_port *pport = &ifx_dev->tty_port;
252 struct tty_struct *tty = tty_port_tty_get(pport);
253 if (tty) {
254 tty_hangup(tty);
255 tty_kref_put(tty);
256 }
257}
258
259/**
260 * ifx_spi_timeout - SPI timeout
261 * @arg: our SPI device
262 *
263 * The SPI has timed out: hang up the tty. Users will then see a hangup
264 * and error events.
265 */
266static void ifx_spi_timeout(unsigned long arg)
267{
268 struct ifx_spi_device *ifx_dev = (struct ifx_spi_device *)arg;
269
270 dev_warn(&ifx_dev->spi_dev->dev, "*** SPI Timeout ***");
271 ifx_spi_ttyhangup(ifx_dev);
272 mrdy_set_low(ifx_dev);
273 clear_bit(IFX_SPI_STATE_TIMER_PENDING, &ifx_dev->flags);
274}
275
276/* char/tty operations */
277
278/**
279 * ifx_spi_tiocmget - get modem lines
280 * @tty: our tty device
281 * @filp: file handle issuing the request
282 *
283 * Map the signal state into Linux modem flags and report the value
284 * in Linux terms
285 */
Alan Cox60b33c12011-02-14 16:26:14 +0000286static int ifx_spi_tiocmget(struct tty_struct *tty)
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100287{
288 unsigned int value;
289 struct ifx_spi_device *ifx_dev = tty->driver_data;
290
291 value =
292 (test_bit(IFX_SPI_RTS, &ifx_dev->signal_state) ? TIOCM_RTS : 0) |
293 (test_bit(IFX_SPI_DTR, &ifx_dev->signal_state) ? TIOCM_DTR : 0) |
294 (test_bit(IFX_SPI_CTS, &ifx_dev->signal_state) ? TIOCM_CTS : 0) |
295 (test_bit(IFX_SPI_DSR, &ifx_dev->signal_state) ? TIOCM_DSR : 0) |
296 (test_bit(IFX_SPI_DCD, &ifx_dev->signal_state) ? TIOCM_CAR : 0) |
297 (test_bit(IFX_SPI_RI, &ifx_dev->signal_state) ? TIOCM_RNG : 0);
298 return value;
299}
300
301/**
302 * ifx_spi_tiocmset - set modem bits
303 * @tty: the tty structure
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100304 * @set: bits to set
305 * @clear: bits to clear
306 *
307 * The IFX6x60 only supports DTR and RTS. Set them accordingly
308 * and flag that an update to the modem is needed.
309 *
310 * FIXME: do we need to kick the tranfers when we do this ?
311 */
Alan Cox20b9d172011-02-14 16:26:50 +0000312static int ifx_spi_tiocmset(struct tty_struct *tty,
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100313 unsigned int set, unsigned int clear)
314{
315 struct ifx_spi_device *ifx_dev = tty->driver_data;
316
317 if (set & TIOCM_RTS)
318 set_bit(IFX_SPI_RTS, &ifx_dev->signal_state);
319 if (set & TIOCM_DTR)
320 set_bit(IFX_SPI_DTR, &ifx_dev->signal_state);
321 if (clear & TIOCM_RTS)
322 clear_bit(IFX_SPI_RTS, &ifx_dev->signal_state);
323 if (clear & TIOCM_DTR)
324 clear_bit(IFX_SPI_DTR, &ifx_dev->signal_state);
325
326 set_bit(IFX_SPI_UPDATE, &ifx_dev->signal_state);
327 return 0;
328}
329
330/**
331 * ifx_spi_open - called on tty open
332 * @tty: our tty device
333 * @filp: file handle being associated with the tty
334 *
335 * Open the tty interface. We let the tty_port layer do all the work
336 * for us.
337 *
338 * FIXME: Remove single device assumption and saved_ifx_dev
339 */
340static int ifx_spi_open(struct tty_struct *tty, struct file *filp)
341{
342 return tty_port_open(&saved_ifx_dev->tty_port, tty, filp);
343}
344
345/**
346 * ifx_spi_close - called when our tty closes
347 * @tty: the tty being closed
348 * @filp: the file handle being closed
349 *
350 * Perform the close of the tty. We use the tty_port layer to do all
351 * our hard work.
352 */
353static void ifx_spi_close(struct tty_struct *tty, struct file *filp)
354{
355 struct ifx_spi_device *ifx_dev = tty->driver_data;
356 tty_port_close(&ifx_dev->tty_port, tty, filp);
357 /* FIXME: should we do an ifx_spi_reset here ? */
358}
359
360/**
361 * ifx_decode_spi_header - decode received header
362 * @buffer: the received data
363 * @length: decoded length
364 * @more: decoded more flag
365 * @received_cts: status of cts we received
366 *
367 * Note how received_cts is handled -- if header is all F it is left
368 * the same as it was, if header is all 0 it is set to 0 otherwise it is
369 * taken from the incoming header.
370 *
371 * FIXME: endianness
372 */
373static int ifx_spi_decode_spi_header(unsigned char *buffer, int *length,
374 unsigned char *more, unsigned char *received_cts)
375{
376 u16 h1;
377 u16 h2;
378 u16 *in_buffer = (u16 *)buffer;
379
380 h1 = *in_buffer;
381 h2 = *(in_buffer+1);
382
383 if (h1 == 0 && h2 == 0) {
384 *received_cts = 0;
385 return IFX_SPI_HEADER_0;
386 } else if (h1 == 0xffff && h2 == 0xffff) {
387 /* spi_slave_cts remains as it was */
388 return IFX_SPI_HEADER_F;
389 }
390
391 *length = h1 & 0xfff; /* upper bits of byte are flags */
392 *more = (buffer[1] >> IFX_SPI_MORE_BIT) & 1;
393 *received_cts = (buffer[3] >> IFX_SPI_CTS_BIT) & 1;
394 return 0;
395}
396
397/**
398 * ifx_setup_spi_header - set header fields
399 * @txbuffer: pointer to start of SPI buffer
400 * @tx_count: bytes
401 * @more: indicate if more to follow
402 *
403 * Format up an SPI header for a transfer
404 *
405 * FIXME: endianness?
406 */
407static void ifx_spi_setup_spi_header(unsigned char *txbuffer, int tx_count,
408 unsigned char more)
409{
410 *(u16 *)(txbuffer) = tx_count;
411 *(u16 *)(txbuffer+2) = IFX_SPI_PAYLOAD_SIZE;
412 txbuffer[1] |= (more << IFX_SPI_MORE_BIT) & IFX_SPI_MORE_MASK;
413}
414
415/**
416 * ifx_spi_wakeup_serial - SPI space made
417 * @port_data: our SPI device
418 *
419 * We have emptied the FIFO enough that we want to get more data
420 * queued into it. Poke the line discipline via tty_wakeup so that
421 * it will feed us more bits
422 */
423static void ifx_spi_wakeup_serial(struct ifx_spi_device *ifx_dev)
424{
425 struct tty_struct *tty;
426
427 tty = tty_port_tty_get(&ifx_dev->tty_port);
428 if (!tty)
429 return;
430 tty_wakeup(tty);
431 tty_kref_put(tty);
432}
433
434/**
435 * ifx_spi_prepare_tx_buffer - prepare transmit frame
436 * @ifx_dev: our SPI device
437 *
438 * The transmit buffr needs a header and various other bits of
439 * information followed by as much data as we can pull from the FIFO
440 * and transfer. This function formats up a suitable buffer in the
441 * ifx_dev->tx_buffer
442 *
443 * FIXME: performance - should we wake the tty when the queue is half
444 * empty ?
445 */
446static int ifx_spi_prepare_tx_buffer(struct ifx_spi_device *ifx_dev)
447{
448 int temp_count;
449 int queue_length;
450 int tx_count;
451 unsigned char *tx_buffer;
452
453 tx_buffer = ifx_dev->tx_buffer;
454 memset(tx_buffer, 0, IFX_SPI_TRANSFER_SIZE);
455
456 /* make room for required SPI header */
457 tx_buffer += IFX_SPI_HEADER_OVERHEAD;
458 tx_count = IFX_SPI_HEADER_OVERHEAD;
459
460 /* clear to signal no more data if this turns out to be the
461 * last buffer sent in a sequence */
462 ifx_dev->spi_more = 0;
463
464 /* if modem cts is set, just send empty buffer */
465 if (!ifx_dev->spi_slave_cts) {
466 /* see if there's tx data */
467 queue_length = kfifo_len(&ifx_dev->tx_fifo);
468 if (queue_length != 0) {
469 /* data to mux -- see if there's room for it */
470 temp_count = min(queue_length, IFX_SPI_PAYLOAD_SIZE);
471 temp_count = kfifo_out_locked(&ifx_dev->tx_fifo,
472 tx_buffer, temp_count,
473 &ifx_dev->fifo_lock);
474
475 /* update buffer pointer and data count in message */
476 tx_buffer += temp_count;
477 tx_count += temp_count;
478 if (temp_count == queue_length)
479 /* poke port to get more data */
480 ifx_spi_wakeup_serial(ifx_dev);
481 else /* more data in port, use next SPI message */
482 ifx_dev->spi_more = 1;
483 }
484 }
485 /* have data and info for header -- set up SPI header in buffer */
486 /* spi header needs payload size, not entire buffer size */
487 ifx_spi_setup_spi_header(ifx_dev->tx_buffer,
488 tx_count-IFX_SPI_HEADER_OVERHEAD,
489 ifx_dev->spi_more);
490 /* swap actual data in the buffer */
chao bi319fb0d2012-10-25 09:02:32 +0800491 ifx_dev->swap_buf((ifx_dev->tx_buffer), tx_count,
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100492 &ifx_dev->tx_buffer[IFX_SPI_TRANSFER_SIZE]);
493 return tx_count;
494}
495
496/**
497 * ifx_spi_write - line discipline write
498 * @tty: our tty device
499 * @buf: pointer to buffer to write (kernel space)
500 * @count: size of buffer
501 *
502 * Write the characters we have been given into the FIFO. If the device
503 * is not active then activate it, when the SRDY line is asserted back
504 * this will commence I/O
505 */
506static int ifx_spi_write(struct tty_struct *tty, const unsigned char *buf,
507 int count)
508{
509 struct ifx_spi_device *ifx_dev = tty->driver_data;
510 unsigned char *tmp_buf = (unsigned char *)buf;
511 int tx_count = kfifo_in_locked(&ifx_dev->tx_fifo, tmp_buf, count,
512 &ifx_dev->fifo_lock);
513 mrdy_assert(ifx_dev);
514 return tx_count;
515}
516
517/**
518 * ifx_spi_chars_in_buffer - line discipline helper
519 * @tty: our tty device
520 *
521 * Report how much data we can accept before we drop bytes. As we use
522 * a simple FIFO this is nice and easy.
523 */
524static int ifx_spi_write_room(struct tty_struct *tty)
525{
526 struct ifx_spi_device *ifx_dev = tty->driver_data;
527 return IFX_SPI_FIFO_SIZE - kfifo_len(&ifx_dev->tx_fifo);
528}
529
530/**
531 * ifx_spi_chars_in_buffer - line discipline helper
532 * @tty: our tty device
533 *
534 * Report how many characters we have buffered. In our case this is the
535 * number of bytes sitting in our transmit FIFO.
536 */
537static int ifx_spi_chars_in_buffer(struct tty_struct *tty)
538{
539 struct ifx_spi_device *ifx_dev = tty->driver_data;
540 return kfifo_len(&ifx_dev->tx_fifo);
541}
542
543/**
544 * ifx_port_hangup
545 * @port: our tty port
546 *
547 * tty port hang up. Called when tty_hangup processing is invoked either
548 * by loss of carrier, or by software (eg vhangup). Serialized against
549 * activate/shutdown by the tty layer.
550 */
551static void ifx_spi_hangup(struct tty_struct *tty)
552{
553 struct ifx_spi_device *ifx_dev = tty->driver_data;
554 tty_port_hangup(&ifx_dev->tty_port);
555}
556
557/**
558 * ifx_port_activate
559 * @port: our tty port
560 *
561 * tty port activate method - called for first open. Serialized
562 * with hangup and shutdown by the tty layer.
563 */
564static int ifx_port_activate(struct tty_port *port, struct tty_struct *tty)
565{
566 struct ifx_spi_device *ifx_dev =
567 container_of(port, struct ifx_spi_device, tty_port);
568
569 /* clear any old data; can't do this in 'close' */
570 kfifo_reset(&ifx_dev->tx_fifo);
571
572 /* put port data into this tty */
573 tty->driver_data = ifx_dev;
574
575 /* allows flip string push from int context */
576 tty->low_latency = 1;
577
578 return 0;
579}
580
581/**
582 * ifx_port_shutdown
583 * @port: our tty port
584 *
585 * tty port shutdown method - called for last port close. Serialized
586 * with hangup and activate by the tty layer.
587 */
588static void ifx_port_shutdown(struct tty_port *port)
589{
590 struct ifx_spi_device *ifx_dev =
591 container_of(port, struct ifx_spi_device, tty_port);
592
593 mrdy_set_low(ifx_dev);
594 clear_bit(IFX_SPI_STATE_TIMER_PENDING, &ifx_dev->flags);
595 tasklet_kill(&ifx_dev->io_work_tasklet);
596}
597
598static const struct tty_port_operations ifx_tty_port_ops = {
599 .activate = ifx_port_activate,
600 .shutdown = ifx_port_shutdown,
601};
602
603static const struct tty_operations ifx_spi_serial_ops = {
604 .open = ifx_spi_open,
605 .close = ifx_spi_close,
606 .write = ifx_spi_write,
607 .hangup = ifx_spi_hangup,
608 .write_room = ifx_spi_write_room,
609 .chars_in_buffer = ifx_spi_chars_in_buffer,
610 .tiocmget = ifx_spi_tiocmget,
611 .tiocmset = ifx_spi_tiocmset,
612};
613
614/**
615 * ifx_spi_insert_fip_string - queue received data
616 * @ifx_ser: our SPI device
617 * @chars: buffer we have received
618 * @size: number of chars reeived
619 *
620 * Queue bytes to the tty assuming the tty side is currently open. If
621 * not the discard the data.
622 */
623static void ifx_spi_insert_flip_string(struct ifx_spi_device *ifx_dev,
624 unsigned char *chars, size_t size)
625{
626 struct tty_struct *tty = tty_port_tty_get(&ifx_dev->tty_port);
627 if (!tty)
628 return;
629 tty_insert_flip_string(tty, chars, size);
630 tty_flip_buffer_push(tty);
631 tty_kref_put(tty);
632}
633
634/**
635 * ifx_spi_complete - SPI transfer completed
636 * @ctx: our SPI device
637 *
638 * An SPI transfer has completed. Process any received data and kick off
639 * any further transmits we can commence.
640 */
641static void ifx_spi_complete(void *ctx)
642{
643 struct ifx_spi_device *ifx_dev = ctx;
644 struct tty_struct *tty;
645 struct tty_ldisc *ldisc = NULL;
646 int length;
647 int actual_length;
648 unsigned char more;
649 unsigned char cts;
650 int local_write_pending = 0;
651 int queue_length;
652 int srdy;
653 int decode_result;
654
655 mrdy_set_low(ifx_dev);
656
657 if (!ifx_dev->spi_msg.status) {
658 /* check header validity, get comm flags */
chao bi319fb0d2012-10-25 09:02:32 +0800659 ifx_dev->swap_buf(ifx_dev->rx_buffer, IFX_SPI_HEADER_OVERHEAD,
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100660 &ifx_dev->rx_buffer[IFX_SPI_HEADER_OVERHEAD]);
661 decode_result = ifx_spi_decode_spi_header(ifx_dev->rx_buffer,
662 &length, &more, &cts);
663 if (decode_result == IFX_SPI_HEADER_0) {
664 dev_dbg(&ifx_dev->spi_dev->dev,
665 "ignore input: invalid header 0");
666 ifx_dev->spi_slave_cts = 0;
667 goto complete_exit;
668 } else if (decode_result == IFX_SPI_HEADER_F) {
669 dev_dbg(&ifx_dev->spi_dev->dev,
670 "ignore input: invalid header F");
671 goto complete_exit;
672 }
673
674 ifx_dev->spi_slave_cts = cts;
675
676 actual_length = min((unsigned int)length,
677 ifx_dev->spi_msg.actual_length);
chao bi319fb0d2012-10-25 09:02:32 +0800678 ifx_dev->swap_buf(
679 (ifx_dev->rx_buffer + IFX_SPI_HEADER_OVERHEAD),
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100680 actual_length,
681 &ifx_dev->rx_buffer[IFX_SPI_TRANSFER_SIZE]);
682 ifx_spi_insert_flip_string(
683 ifx_dev,
684 ifx_dev->rx_buffer + IFX_SPI_HEADER_OVERHEAD,
685 (size_t)actual_length);
686 } else {
687 dev_dbg(&ifx_dev->spi_dev->dev, "SPI transfer error %d",
688 ifx_dev->spi_msg.status);
689 }
690
691complete_exit:
692 if (ifx_dev->write_pending) {
693 ifx_dev->write_pending = 0;
694 local_write_pending = 1;
695 }
696
697 clear_bit(IFX_SPI_STATE_IO_IN_PROGRESS, &(ifx_dev->flags));
698
699 queue_length = kfifo_len(&ifx_dev->tx_fifo);
700 srdy = gpio_get_value(ifx_dev->gpio.srdy);
701 if (!srdy)
702 ifx_spi_power_state_clear(ifx_dev, IFX_SPI_POWER_SRDY);
703
704 /* schedule output if there is more to do */
705 if (test_and_clear_bit(IFX_SPI_STATE_IO_READY, &ifx_dev->flags))
706 tasklet_schedule(&ifx_dev->io_work_tasklet);
707 else {
708 if (more || ifx_dev->spi_more || queue_length > 0 ||
709 local_write_pending) {
710 if (ifx_dev->spi_slave_cts) {
711 if (more)
712 mrdy_assert(ifx_dev);
713 } else
714 mrdy_assert(ifx_dev);
715 } else {
716 /*
717 * poke line discipline driver if any for more data
718 * may or may not get more data to write
719 * for now, say not busy
720 */
721 ifx_spi_power_state_clear(ifx_dev,
722 IFX_SPI_POWER_DATA_PENDING);
723 tty = tty_port_tty_get(&ifx_dev->tty_port);
724 if (tty) {
725 ldisc = tty_ldisc_ref(tty);
726 if (ldisc) {
727 ldisc->ops->write_wakeup(tty);
728 tty_ldisc_deref(ldisc);
729 }
730 tty_kref_put(tty);
731 }
732 }
733 }
734}
735
736/**
737 * ifx_spio_io - I/O tasklet
738 * @data: our SPI device
739 *
740 * Queue data for transmission if possible and then kick off the
741 * transfer.
742 */
743static void ifx_spi_io(unsigned long data)
744{
745 int retval;
746 struct ifx_spi_device *ifx_dev = (struct ifx_spi_device *) data;
747
748 if (!test_and_set_bit(IFX_SPI_STATE_IO_IN_PROGRESS, &ifx_dev->flags)) {
749 if (ifx_dev->gpio.unack_srdy_int_nb > 0)
750 ifx_dev->gpio.unack_srdy_int_nb--;
751
752 ifx_spi_prepare_tx_buffer(ifx_dev);
753
754 spi_message_init(&ifx_dev->spi_msg);
755 INIT_LIST_HEAD(&ifx_dev->spi_msg.queue);
756
757 ifx_dev->spi_msg.context = ifx_dev;
758 ifx_dev->spi_msg.complete = ifx_spi_complete;
759
760 /* set up our spi transfer */
761 /* note len is BYTES, not transfers */
762 ifx_dev->spi_xfer.len = IFX_SPI_TRANSFER_SIZE;
763 ifx_dev->spi_xfer.cs_change = 0;
Russ Gorby1b79b442011-02-07 12:02:30 -0800764 ifx_dev->spi_xfer.speed_hz = ifx_dev->spi_dev->max_speed_hz;
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100765 /* ifx_dev->spi_xfer.speed_hz = 390625; */
Russ Gorbyf0891402011-02-07 12:02:29 -0800766 ifx_dev->spi_xfer.bits_per_word = spi_bpw;
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100767
768 ifx_dev->spi_xfer.tx_buf = ifx_dev->tx_buffer;
769 ifx_dev->spi_xfer.rx_buf = ifx_dev->rx_buffer;
770
771 /*
772 * setup dma pointers
773 */
Russ Gorby2f1522e2011-02-02 12:56:58 -0800774 if (ifx_dev->use_dma) {
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100775 ifx_dev->spi_msg.is_dma_mapped = 1;
776 ifx_dev->tx_dma = ifx_dev->tx_bus;
777 ifx_dev->rx_dma = ifx_dev->rx_bus;
778 ifx_dev->spi_xfer.tx_dma = ifx_dev->tx_dma;
779 ifx_dev->spi_xfer.rx_dma = ifx_dev->rx_dma;
780 } else {
781 ifx_dev->spi_msg.is_dma_mapped = 0;
782 ifx_dev->tx_dma = (dma_addr_t)0;
783 ifx_dev->rx_dma = (dma_addr_t)0;
784 ifx_dev->spi_xfer.tx_dma = (dma_addr_t)0;
785 ifx_dev->spi_xfer.rx_dma = (dma_addr_t)0;
786 }
787
788 spi_message_add_tail(&ifx_dev->spi_xfer, &ifx_dev->spi_msg);
789
790 /* Assert MRDY. This may have already been done by the write
791 * routine.
792 */
793 mrdy_assert(ifx_dev);
794
795 retval = spi_async(ifx_dev->spi_dev, &ifx_dev->spi_msg);
796 if (retval) {
797 clear_bit(IFX_SPI_STATE_IO_IN_PROGRESS,
798 &ifx_dev->flags);
799 tasklet_schedule(&ifx_dev->io_work_tasklet);
800 return;
801 }
802 } else
803 ifx_dev->write_pending = 1;
804}
805
806/**
807 * ifx_spi_free_port - free up the tty side
808 * @ifx_dev: IFX device going away
809 *
810 * Unregister and free up a port when the device goes away
811 */
812static void ifx_spi_free_port(struct ifx_spi_device *ifx_dev)
813{
814 if (ifx_dev->tty_dev)
815 tty_unregister_device(tty_drv, ifx_dev->minor);
816 kfifo_free(&ifx_dev->tx_fifo);
817}
818
819/**
820 * ifx_spi_create_port - create a new port
821 * @ifx_dev: our spi device
822 *
823 * Allocate and initialise the tty port that goes with this interface
824 * and add it to the tty layer so that it can be opened.
825 */
826static int ifx_spi_create_port(struct ifx_spi_device *ifx_dev)
827{
828 int ret = 0;
829 struct tty_port *pport = &ifx_dev->tty_port;
830
831 spin_lock_init(&ifx_dev->fifo_lock);
832 lockdep_set_class_and_subclass(&ifx_dev->fifo_lock,
833 &ifx_spi_key, 0);
834
835 if (kfifo_alloc(&ifx_dev->tx_fifo, IFX_SPI_FIFO_SIZE, GFP_KERNEL)) {
836 ret = -ENOMEM;
837 goto error_ret;
838 }
839
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100840 tty_port_init(pport);
Russ Gorbyb68f23b2011-02-07 12:02:27 -0800841 pport->ops = &ifx_tty_port_ops;
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100842 ifx_dev->minor = IFX_SPI_TTY_ID;
Jiri Slaby734cc172012-08-07 21:47:47 +0200843 ifx_dev->tty_dev = tty_port_register_device(pport, tty_drv,
844 ifx_dev->minor, &ifx_dev->spi_dev->dev);
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100845 if (IS_ERR(ifx_dev->tty_dev)) {
846 dev_dbg(&ifx_dev->spi_dev->dev,
847 "%s: registering tty device failed", __func__);
848 ret = PTR_ERR(ifx_dev->tty_dev);
849 goto error_ret;
850 }
851 return 0;
852
853error_ret:
854 ifx_spi_free_port(ifx_dev);
855 return ret;
856}
857
858/**
859 * ifx_spi_handle_srdy - handle SRDY
860 * @ifx_dev: device asserting SRDY
861 *
862 * Check our device state and see what we need to kick off when SRDY
863 * is asserted. This usually means killing the timer and firing off the
864 * I/O processing.
865 */
866static void ifx_spi_handle_srdy(struct ifx_spi_device *ifx_dev)
867{
868 if (test_bit(IFX_SPI_STATE_TIMER_PENDING, &ifx_dev->flags)) {
Jun Chen2e308022012-10-19 09:51:30 -0400869 del_timer(&ifx_dev->spi_timer);
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100870 clear_bit(IFX_SPI_STATE_TIMER_PENDING, &ifx_dev->flags);
871 }
872
873 ifx_spi_power_state_set(ifx_dev, IFX_SPI_POWER_SRDY);
874
875 if (!test_bit(IFX_SPI_STATE_IO_IN_PROGRESS, &ifx_dev->flags))
876 tasklet_schedule(&ifx_dev->io_work_tasklet);
877 else
878 set_bit(IFX_SPI_STATE_IO_READY, &ifx_dev->flags);
879}
880
881/**
882 * ifx_spi_srdy_interrupt - SRDY asserted
883 * @irq: our IRQ number
884 * @dev: our ifx device
885 *
886 * The modem asserted SRDY. Handle the srdy event
887 */
888static irqreturn_t ifx_spi_srdy_interrupt(int irq, void *dev)
889{
890 struct ifx_spi_device *ifx_dev = dev;
891 ifx_dev->gpio.unack_srdy_int_nb++;
892 ifx_spi_handle_srdy(ifx_dev);
893 return IRQ_HANDLED;
894}
895
896/**
897 * ifx_spi_reset_interrupt - Modem has changed reset state
898 * @irq: interrupt number
899 * @dev: our device pointer
900 *
901 * The modem has either entered or left reset state. Check the GPIO
902 * line to see which.
903 *
904 * FIXME: review locking on MR_INPROGRESS versus
905 * parallel unsolicited reset/solicited reset
906 */
907static irqreturn_t ifx_spi_reset_interrupt(int irq, void *dev)
908{
909 struct ifx_spi_device *ifx_dev = dev;
910 int val = gpio_get_value(ifx_dev->gpio.reset_out);
911 int solreset = test_bit(MR_START, &ifx_dev->mdm_reset_state);
912
913 if (val == 0) {
914 /* entered reset */
915 set_bit(MR_INPROGRESS, &ifx_dev->mdm_reset_state);
916 if (!solreset) {
917 /* unsolicited reset */
918 ifx_spi_ttyhangup(ifx_dev);
919 }
920 } else {
921 /* exited reset */
922 clear_bit(MR_INPROGRESS, &ifx_dev->mdm_reset_state);
923 if (solreset) {
924 set_bit(MR_COMPLETE, &ifx_dev->mdm_reset_state);
925 wake_up(&ifx_dev->mdm_reset_wait);
926 }
927 }
928 return IRQ_HANDLED;
929}
930
931/**
932 * ifx_spi_free_device - free device
933 * @ifx_dev: device to free
934 *
935 * Free the IFX device
936 */
937static void ifx_spi_free_device(struct ifx_spi_device *ifx_dev)
938{
939 ifx_spi_free_port(ifx_dev);
940 dma_free_coherent(&ifx_dev->spi_dev->dev,
941 IFX_SPI_TRANSFER_SIZE,
942 ifx_dev->tx_buffer,
943 ifx_dev->tx_bus);
944 dma_free_coherent(&ifx_dev->spi_dev->dev,
945 IFX_SPI_TRANSFER_SIZE,
946 ifx_dev->rx_buffer,
947 ifx_dev->rx_bus);
948}
949
950/**
951 * ifx_spi_reset - reset modem
952 * @ifx_dev: modem to reset
953 *
954 * Perform a reset on the modem
955 */
956static int ifx_spi_reset(struct ifx_spi_device *ifx_dev)
957{
958 int ret;
959 /*
960 * set up modem power, reset
961 *
962 * delays are required on some platforms for the modem
963 * to reset properly
964 */
965 set_bit(MR_START, &ifx_dev->mdm_reset_state);
966 gpio_set_value(ifx_dev->gpio.po, 0);
967 gpio_set_value(ifx_dev->gpio.reset, 0);
968 msleep(25);
969 gpio_set_value(ifx_dev->gpio.reset, 1);
970 msleep(1);
971 gpio_set_value(ifx_dev->gpio.po, 1);
972 msleep(1);
973 gpio_set_value(ifx_dev->gpio.po, 0);
974 ret = wait_event_timeout(ifx_dev->mdm_reset_wait,
975 test_bit(MR_COMPLETE,
976 &ifx_dev->mdm_reset_state),
977 IFX_RESET_TIMEOUT);
978 if (!ret)
979 dev_warn(&ifx_dev->spi_dev->dev, "Modem reset timeout: (state:%lx)",
980 ifx_dev->mdm_reset_state);
981
982 ifx_dev->mdm_reset_state = 0;
983 return ret;
984}
985
986/**
987 * ifx_spi_spi_probe - probe callback
988 * @spi: our possible matching SPI device
989 *
990 * Probe for a 6x60 modem on SPI bus. Perform any needed device and
991 * GPIO setup.
992 *
993 * FIXME:
994 * - Support for multiple devices
995 * - Split out MID specific GPIO handling eventually
996 */
997
998static int ifx_spi_spi_probe(struct spi_device *spi)
999{
1000 int ret;
1001 int srdy;
Russ Gorby2f1522e2011-02-02 12:56:58 -08001002 struct ifx_modem_platform_data *pl_data;
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001003 struct ifx_spi_device *ifx_dev;
1004
1005 if (saved_ifx_dev) {
1006 dev_dbg(&spi->dev, "ignoring subsequent detection");
1007 return -ENODEV;
1008 }
1009
Russ Gorby2f1522e2011-02-02 12:56:58 -08001010 pl_data = (struct ifx_modem_platform_data *)spi->dev.platform_data;
1011 if (!pl_data) {
1012 dev_err(&spi->dev, "missing platform data!");
1013 return -ENODEV;
1014 }
1015
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001016 /* initialize structure to hold our device variables */
1017 ifx_dev = kzalloc(sizeof(struct ifx_spi_device), GFP_KERNEL);
1018 if (!ifx_dev) {
1019 dev_err(&spi->dev, "spi device allocation failed");
1020 return -ENOMEM;
1021 }
1022 saved_ifx_dev = ifx_dev;
1023 ifx_dev->spi_dev = spi;
1024 clear_bit(IFX_SPI_STATE_IO_IN_PROGRESS, &ifx_dev->flags);
1025 spin_lock_init(&ifx_dev->write_lock);
1026 spin_lock_init(&ifx_dev->power_lock);
1027 ifx_dev->power_status = 0;
1028 init_timer(&ifx_dev->spi_timer);
1029 ifx_dev->spi_timer.function = ifx_spi_timeout;
1030 ifx_dev->spi_timer.data = (unsigned long)ifx_dev;
Russ Gorby2f1522e2011-02-02 12:56:58 -08001031 ifx_dev->modem = pl_data->modem_type;
1032 ifx_dev->use_dma = pl_data->use_dma;
1033 ifx_dev->max_hz = pl_data->max_hz;
Russ Gorby2aff8d92011-02-07 12:02:31 -08001034 /* initialize spi mode, etc */
Russ Gorby1b79b442011-02-07 12:02:30 -08001035 spi->max_speed_hz = ifx_dev->max_hz;
Russ Gorby2aff8d92011-02-07 12:02:31 -08001036 spi->mode = IFX_SPI_MODE | (SPI_LOOP & spi->mode);
1037 spi->bits_per_word = spi_bpw;
1038 ret = spi_setup(spi);
1039 if (ret) {
1040 dev_err(&spi->dev, "SPI setup wasn't successful %d", ret);
1041 return -ENODEV;
1042 }
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001043
chao bi319fb0d2012-10-25 09:02:32 +08001044 /* init swap_buf function according to word width configuration */
1045 if (spi->bits_per_word == 32)
1046 ifx_dev->swap_buf = swap_buf_32;
1047 else if (spi->bits_per_word == 16)
1048 ifx_dev->swap_buf = swap_buf_16;
1049 else
1050 ifx_dev->swap_buf = swap_buf_8;
1051
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001052 /* ensure SPI protocol flags are initialized to enable transfer */
1053 ifx_dev->spi_more = 0;
1054 ifx_dev->spi_slave_cts = 0;
1055
1056 /*initialize transfer and dma buffers */
Russ Gorby5fc324952011-02-07 12:02:28 -08001057 ifx_dev->tx_buffer = dma_alloc_coherent(ifx_dev->spi_dev->dev.parent,
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001058 IFX_SPI_TRANSFER_SIZE,
1059 &ifx_dev->tx_bus,
1060 GFP_KERNEL);
1061 if (!ifx_dev->tx_buffer) {
1062 dev_err(&spi->dev, "DMA-TX buffer allocation failed");
1063 ret = -ENOMEM;
1064 goto error_ret;
1065 }
Russ Gorby5fc324952011-02-07 12:02:28 -08001066 ifx_dev->rx_buffer = dma_alloc_coherent(ifx_dev->spi_dev->dev.parent,
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001067 IFX_SPI_TRANSFER_SIZE,
1068 &ifx_dev->rx_bus,
1069 GFP_KERNEL);
1070 if (!ifx_dev->rx_buffer) {
1071 dev_err(&spi->dev, "DMA-RX buffer allocation failed");
1072 ret = -ENOMEM;
1073 goto error_ret;
1074 }
1075
1076 /* initialize waitq for modem reset */
1077 init_waitqueue_head(&ifx_dev->mdm_reset_wait);
1078
1079 spi_set_drvdata(spi, ifx_dev);
1080 tasklet_init(&ifx_dev->io_work_tasklet, ifx_spi_io,
1081 (unsigned long)ifx_dev);
1082
1083 set_bit(IFX_SPI_STATE_PRESENT, &ifx_dev->flags);
1084
1085 /* create our tty port */
1086 ret = ifx_spi_create_port(ifx_dev);
1087 if (ret != 0) {
1088 dev_err(&spi->dev, "create default tty port failed");
1089 goto error_ret;
1090 }
1091
Russ Gorby2f1522e2011-02-02 12:56:58 -08001092 ifx_dev->gpio.reset = pl_data->rst_pmu;
1093 ifx_dev->gpio.po = pl_data->pwr_on;
1094 ifx_dev->gpio.mrdy = pl_data->mrdy;
1095 ifx_dev->gpio.srdy = pl_data->srdy;
1096 ifx_dev->gpio.reset_out = pl_data->rst_out;
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001097
1098 dev_info(&spi->dev, "gpios %d, %d, %d, %d, %d",
1099 ifx_dev->gpio.reset, ifx_dev->gpio.po, ifx_dev->gpio.mrdy,
1100 ifx_dev->gpio.srdy, ifx_dev->gpio.reset_out);
1101
1102 /* Configure gpios */
1103 ret = gpio_request(ifx_dev->gpio.reset, "ifxModem");
1104 if (ret < 0) {
1105 dev_err(&spi->dev, "Unable to allocate GPIO%d (RESET)",
1106 ifx_dev->gpio.reset);
1107 goto error_ret;
1108 }
1109 ret += gpio_direction_output(ifx_dev->gpio.reset, 0);
1110 ret += gpio_export(ifx_dev->gpio.reset, 1);
1111 if (ret) {
1112 dev_err(&spi->dev, "Unable to configure GPIO%d (RESET)",
1113 ifx_dev->gpio.reset);
1114 ret = -EBUSY;
1115 goto error_ret2;
1116 }
1117
1118 ret = gpio_request(ifx_dev->gpio.po, "ifxModem");
1119 ret += gpio_direction_output(ifx_dev->gpio.po, 0);
1120 ret += gpio_export(ifx_dev->gpio.po, 1);
1121 if (ret) {
1122 dev_err(&spi->dev, "Unable to configure GPIO%d (ON)",
1123 ifx_dev->gpio.po);
1124 ret = -EBUSY;
1125 goto error_ret3;
1126 }
1127
1128 ret = gpio_request(ifx_dev->gpio.mrdy, "ifxModem");
1129 if (ret < 0) {
1130 dev_err(&spi->dev, "Unable to allocate GPIO%d (MRDY)",
1131 ifx_dev->gpio.mrdy);
1132 goto error_ret3;
1133 }
1134 ret += gpio_export(ifx_dev->gpio.mrdy, 1);
1135 ret += gpio_direction_output(ifx_dev->gpio.mrdy, 0);
1136 if (ret) {
1137 dev_err(&spi->dev, "Unable to configure GPIO%d (MRDY)",
1138 ifx_dev->gpio.mrdy);
1139 ret = -EBUSY;
1140 goto error_ret4;
1141 }
1142
1143 ret = gpio_request(ifx_dev->gpio.srdy, "ifxModem");
1144 if (ret < 0) {
1145 dev_err(&spi->dev, "Unable to allocate GPIO%d (SRDY)",
1146 ifx_dev->gpio.srdy);
1147 ret = -EBUSY;
1148 goto error_ret4;
1149 }
1150 ret += gpio_export(ifx_dev->gpio.srdy, 1);
1151 ret += gpio_direction_input(ifx_dev->gpio.srdy);
1152 if (ret) {
1153 dev_err(&spi->dev, "Unable to configure GPIO%d (SRDY)",
1154 ifx_dev->gpio.srdy);
1155 ret = -EBUSY;
1156 goto error_ret5;
1157 }
1158
1159 ret = gpio_request(ifx_dev->gpio.reset_out, "ifxModem");
1160 if (ret < 0) {
1161 dev_err(&spi->dev, "Unable to allocate GPIO%d (RESET_OUT)",
1162 ifx_dev->gpio.reset_out);
1163 goto error_ret5;
1164 }
1165 ret += gpio_export(ifx_dev->gpio.reset_out, 1);
1166 ret += gpio_direction_input(ifx_dev->gpio.reset_out);
1167 if (ret) {
1168 dev_err(&spi->dev, "Unable to configure GPIO%d (RESET_OUT)",
1169 ifx_dev->gpio.reset_out);
1170 ret = -EBUSY;
1171 goto error_ret6;
1172 }
1173
1174 ret = request_irq(gpio_to_irq(ifx_dev->gpio.reset_out),
1175 ifx_spi_reset_interrupt,
1176 IRQF_TRIGGER_RISING|IRQF_TRIGGER_FALLING, DRVNAME,
1177 (void *)ifx_dev);
1178 if (ret) {
1179 dev_err(&spi->dev, "Unable to get irq %x\n",
1180 gpio_to_irq(ifx_dev->gpio.reset_out));
1181 goto error_ret6;
1182 }
1183
1184 ret = ifx_spi_reset(ifx_dev);
1185
1186 ret = request_irq(gpio_to_irq(ifx_dev->gpio.srdy),
1187 ifx_spi_srdy_interrupt,
1188 IRQF_TRIGGER_RISING, DRVNAME,
1189 (void *)ifx_dev);
1190 if (ret) {
1191 dev_err(&spi->dev, "Unable to get irq %x",
1192 gpio_to_irq(ifx_dev->gpio.srdy));
Vasiliy Kulikovbadb9532010-11-19 21:42:03 +03001193 goto error_ret7;
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001194 }
1195
1196 /* set pm runtime power state and register with power system */
1197 pm_runtime_set_active(&spi->dev);
1198 pm_runtime_enable(&spi->dev);
1199
1200 /* handle case that modem is already signaling SRDY */
1201 /* no outgoing tty open at this point, this just satisfies the
1202 * modem's read and should reset communication properly
1203 */
1204 srdy = gpio_get_value(ifx_dev->gpio.srdy);
1205
1206 if (srdy) {
1207 mrdy_assert(ifx_dev);
1208 ifx_spi_handle_srdy(ifx_dev);
1209 } else
1210 mrdy_set_low(ifx_dev);
1211 return 0;
1212
Vasiliy Kulikovbadb9532010-11-19 21:42:03 +03001213error_ret7:
1214 free_irq(gpio_to_irq(ifx_dev->gpio.reset_out), (void *)ifx_dev);
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001215error_ret6:
1216 gpio_free(ifx_dev->gpio.srdy);
1217error_ret5:
1218 gpio_free(ifx_dev->gpio.mrdy);
1219error_ret4:
1220 gpio_free(ifx_dev->gpio.reset);
1221error_ret3:
1222 gpio_free(ifx_dev->gpio.po);
1223error_ret2:
1224 gpio_free(ifx_dev->gpio.reset_out);
1225error_ret:
1226 ifx_spi_free_device(ifx_dev);
1227 saved_ifx_dev = NULL;
1228 return ret;
1229}
1230
1231/**
1232 * ifx_spi_spi_remove - SPI device was removed
1233 * @spi: SPI device
1234 *
1235 * FIXME: We should be shutting the device down here not in
1236 * the module unload path.
1237 */
1238
1239static int ifx_spi_spi_remove(struct spi_device *spi)
1240{
1241 struct ifx_spi_device *ifx_dev = spi_get_drvdata(spi);
1242 /* stop activity */
1243 tasklet_kill(&ifx_dev->io_work_tasklet);
1244 /* free irq */
1245 free_irq(gpio_to_irq(ifx_dev->gpio.reset_out), (void *)ifx_dev);
1246 free_irq(gpio_to_irq(ifx_dev->gpio.srdy), (void *)ifx_dev);
1247
1248 gpio_free(ifx_dev->gpio.srdy);
1249 gpio_free(ifx_dev->gpio.mrdy);
1250 gpio_free(ifx_dev->gpio.reset);
1251 gpio_free(ifx_dev->gpio.po);
1252 gpio_free(ifx_dev->gpio.reset_out);
1253
1254 /* free allocations */
1255 ifx_spi_free_device(ifx_dev);
1256
1257 saved_ifx_dev = NULL;
1258 return 0;
1259}
1260
1261/**
1262 * ifx_spi_spi_shutdown - called on SPI shutdown
1263 * @spi: SPI device
1264 *
1265 * No action needs to be taken here
1266 */
1267
1268static void ifx_spi_spi_shutdown(struct spi_device *spi)
1269{
1270}
1271
1272/*
1273 * various suspends and resumes have nothing to do
1274 * no hardware to save state for
1275 */
1276
1277/**
1278 * ifx_spi_spi_suspend - suspend SPI on system suspend
1279 * @dev: device being suspended
1280 *
1281 * Suspend the SPI side. No action needed on Intel MID platforms, may
1282 * need extending for other systems.
1283 */
1284static int ifx_spi_spi_suspend(struct spi_device *spi, pm_message_t msg)
1285{
1286 return 0;
1287}
1288
1289/**
1290 * ifx_spi_spi_resume - resume SPI side on system resume
1291 * @dev: device being suspended
1292 *
1293 * Suspend the SPI side. No action needed on Intel MID platforms, may
1294 * need extending for other systems.
1295 */
1296static int ifx_spi_spi_resume(struct spi_device *spi)
1297{
1298 return 0;
1299}
1300
1301/**
1302 * ifx_spi_pm_suspend - suspend modem on system suspend
1303 * @dev: device being suspended
1304 *
1305 * Suspend the modem. No action needed on Intel MID platforms, may
1306 * need extending for other systems.
1307 */
1308static int ifx_spi_pm_suspend(struct device *dev)
1309{
1310 return 0;
1311}
1312
1313/**
1314 * ifx_spi_pm_resume - resume modem on system resume
1315 * @dev: device being suspended
1316 *
1317 * Allow the modem to resume. No action needed.
1318 *
1319 * FIXME: do we need to reset anything here ?
1320 */
1321static int ifx_spi_pm_resume(struct device *dev)
1322{
1323 return 0;
1324}
1325
1326/**
1327 * ifx_spi_pm_runtime_resume - suspend modem
1328 * @dev: device being suspended
1329 *
1330 * Allow the modem to resume. No action needed.
1331 */
1332static int ifx_spi_pm_runtime_resume(struct device *dev)
1333{
1334 return 0;
1335}
1336
1337/**
1338 * ifx_spi_pm_runtime_suspend - suspend modem
1339 * @dev: device being suspended
1340 *
1341 * Allow the modem to suspend and thus suspend to continue up the
1342 * device tree.
1343 */
1344static int ifx_spi_pm_runtime_suspend(struct device *dev)
1345{
1346 return 0;
1347}
1348
1349/**
1350 * ifx_spi_pm_runtime_idle - check if modem idle
1351 * @dev: our device
1352 *
1353 * Check conditions and queue runtime suspend if idle.
1354 */
1355static int ifx_spi_pm_runtime_idle(struct device *dev)
1356{
1357 struct spi_device *spi = to_spi_device(dev);
1358 struct ifx_spi_device *ifx_dev = spi_get_drvdata(spi);
1359
1360 if (!ifx_dev->power_status)
1361 pm_runtime_suspend(dev);
1362
1363 return 0;
1364}
1365
1366static const struct dev_pm_ops ifx_spi_pm = {
1367 .resume = ifx_spi_pm_resume,
1368 .suspend = ifx_spi_pm_suspend,
1369 .runtime_resume = ifx_spi_pm_runtime_resume,
1370 .runtime_suspend = ifx_spi_pm_runtime_suspend,
1371 .runtime_idle = ifx_spi_pm_runtime_idle
1372};
1373
1374static const struct spi_device_id ifx_id_table[] = {
1375 {"ifx6160", 0},
1376 {"ifx6260", 0},
1377 { }
1378};
1379MODULE_DEVICE_TABLE(spi, ifx_id_table);
1380
1381/* spi operations */
Fengguang Wu7d9739c2012-08-07 13:12:47 +08001382static struct spi_driver ifx_spi_driver = {
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001383 .driver = {
Russ Gorby8115be02011-02-07 12:02:32 -08001384 .name = DRVNAME,
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001385 .pm = &ifx_spi_pm,
1386 .owner = THIS_MODULE},
1387 .probe = ifx_spi_spi_probe,
1388 .shutdown = ifx_spi_spi_shutdown,
1389 .remove = __devexit_p(ifx_spi_spi_remove),
1390 .suspend = ifx_spi_spi_suspend,
1391 .resume = ifx_spi_spi_resume,
1392 .id_table = ifx_id_table
1393};
1394
1395/**
1396 * ifx_spi_exit - module exit
1397 *
1398 * Unload the module.
1399 */
1400
1401static void __exit ifx_spi_exit(void)
1402{
1403 /* unregister */
1404 tty_unregister_driver(tty_drv);
Russ Gorby8115be02011-02-07 12:02:32 -08001405 spi_unregister_driver((void *)&ifx_spi_driver);
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001406}
1407
1408/**
1409 * ifx_spi_init - module entry point
1410 *
1411 * Initialise the SPI and tty interfaces for the IFX SPI driver
1412 * We need to initialize upper-edge spi driver after the tty
1413 * driver because otherwise the spi probe will race
1414 */
1415
1416static int __init ifx_spi_init(void)
1417{
1418 int result;
1419
1420 tty_drv = alloc_tty_driver(1);
1421 if (!tty_drv) {
1422 pr_err("%s: alloc_tty_driver failed", DRVNAME);
1423 return -ENOMEM;
1424 }
1425
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001426 tty_drv->driver_name = DRVNAME;
1427 tty_drv->name = TTYNAME;
1428 tty_drv->minor_start = IFX_SPI_TTY_ID;
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001429 tty_drv->type = TTY_DRIVER_TYPE_SERIAL;
1430 tty_drv->subtype = SERIAL_TYPE_NORMAL;
1431 tty_drv->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
1432 tty_drv->init_termios = tty_std_termios;
1433
1434 tty_set_operations(tty_drv, &ifx_spi_serial_ops);
1435
1436 result = tty_register_driver(tty_drv);
1437 if (result) {
1438 pr_err("%s: tty_register_driver failed(%d)",
1439 DRVNAME, result);
Vasiliy Kulikova4fb0b22010-11-19 21:41:45 +03001440 put_tty_driver(tty_drv);
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001441 return result;
1442 }
1443
Russ Gorby8115be02011-02-07 12:02:32 -08001444 result = spi_register_driver((void *)&ifx_spi_driver);
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001445 if (result) {
1446 pr_err("%s: spi_register_driver failed(%d)",
1447 DRVNAME, result);
1448 tty_unregister_driver(tty_drv);
1449 }
1450 return result;
1451}
1452
1453module_init(ifx_spi_init);
1454module_exit(ifx_spi_exit);
1455
1456MODULE_AUTHOR("Intel");
1457MODULE_DESCRIPTION("IFX6x60 spi driver");
1458MODULE_LICENSE("GPL");
1459MODULE_INFO(Version, "0.1-IFX6x60");