blob: 21eb70bcb6a0d80f4f0fc158ea8b4199fda8677e [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
chao bi1b2f8a92012-11-06 11:13:59 +080067#define IFX_SPI_MORE_BIT 4 /* bit position in u8 */
68#define IFX_SPI_CTS_BIT 6 /* bit position in u8 */
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
chao bi31fe9902012-10-31 16:54:07 +0800572 /* clear any flag which may be set in port shutdown procedure */
573 clear_bit(IFX_SPI_STATE_IO_IN_PROGRESS, &ifx_dev->flags);
574 clear_bit(IFX_SPI_STATE_IO_READY, &ifx_dev->flags);
575
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100576 /* put port data into this tty */
577 tty->driver_data = ifx_dev;
578
579 /* allows flip string push from int context */
580 tty->low_latency = 1;
581
chao bi31fe9902012-10-31 16:54:07 +0800582 /* set flag to allows data transfer */
583 set_bit(IFX_SPI_STATE_IO_AVAILABLE, &ifx_dev->flags);
584
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100585 return 0;
586}
587
588/**
589 * ifx_port_shutdown
590 * @port: our tty port
591 *
592 * tty port shutdown method - called for last port close. Serialized
593 * with hangup and activate by the tty layer.
594 */
595static void ifx_port_shutdown(struct tty_port *port)
596{
597 struct ifx_spi_device *ifx_dev =
598 container_of(port, struct ifx_spi_device, tty_port);
599
chao bi31fe9902012-10-31 16:54:07 +0800600 clear_bit(IFX_SPI_STATE_IO_AVAILABLE, &ifx_dev->flags);
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100601 mrdy_set_low(ifx_dev);
602 clear_bit(IFX_SPI_STATE_TIMER_PENDING, &ifx_dev->flags);
603 tasklet_kill(&ifx_dev->io_work_tasklet);
604}
605
606static const struct tty_port_operations ifx_tty_port_ops = {
607 .activate = ifx_port_activate,
608 .shutdown = ifx_port_shutdown,
609};
610
611static const struct tty_operations ifx_spi_serial_ops = {
612 .open = ifx_spi_open,
613 .close = ifx_spi_close,
614 .write = ifx_spi_write,
615 .hangup = ifx_spi_hangup,
616 .write_room = ifx_spi_write_room,
617 .chars_in_buffer = ifx_spi_chars_in_buffer,
618 .tiocmget = ifx_spi_tiocmget,
619 .tiocmset = ifx_spi_tiocmset,
620};
621
622/**
623 * ifx_spi_insert_fip_string - queue received data
624 * @ifx_ser: our SPI device
625 * @chars: buffer we have received
626 * @size: number of chars reeived
627 *
628 * Queue bytes to the tty assuming the tty side is currently open. If
629 * not the discard the data.
630 */
631static void ifx_spi_insert_flip_string(struct ifx_spi_device *ifx_dev,
632 unsigned char *chars, size_t size)
633{
634 struct tty_struct *tty = tty_port_tty_get(&ifx_dev->tty_port);
635 if (!tty)
636 return;
637 tty_insert_flip_string(tty, chars, size);
638 tty_flip_buffer_push(tty);
639 tty_kref_put(tty);
640}
641
642/**
643 * ifx_spi_complete - SPI transfer completed
644 * @ctx: our SPI device
645 *
646 * An SPI transfer has completed. Process any received data and kick off
647 * any further transmits we can commence.
648 */
649static void ifx_spi_complete(void *ctx)
650{
651 struct ifx_spi_device *ifx_dev = ctx;
652 struct tty_struct *tty;
653 struct tty_ldisc *ldisc = NULL;
654 int length;
655 int actual_length;
656 unsigned char more;
657 unsigned char cts;
658 int local_write_pending = 0;
659 int queue_length;
660 int srdy;
661 int decode_result;
662
663 mrdy_set_low(ifx_dev);
664
665 if (!ifx_dev->spi_msg.status) {
666 /* check header validity, get comm flags */
chao bi319fb0d2012-10-25 09:02:32 +0800667 ifx_dev->swap_buf(ifx_dev->rx_buffer, IFX_SPI_HEADER_OVERHEAD,
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100668 &ifx_dev->rx_buffer[IFX_SPI_HEADER_OVERHEAD]);
669 decode_result = ifx_spi_decode_spi_header(ifx_dev->rx_buffer,
670 &length, &more, &cts);
671 if (decode_result == IFX_SPI_HEADER_0) {
672 dev_dbg(&ifx_dev->spi_dev->dev,
673 "ignore input: invalid header 0");
674 ifx_dev->spi_slave_cts = 0;
675 goto complete_exit;
676 } else if (decode_result == IFX_SPI_HEADER_F) {
677 dev_dbg(&ifx_dev->spi_dev->dev,
678 "ignore input: invalid header F");
679 goto complete_exit;
680 }
681
682 ifx_dev->spi_slave_cts = cts;
683
684 actual_length = min((unsigned int)length,
685 ifx_dev->spi_msg.actual_length);
chao bi319fb0d2012-10-25 09:02:32 +0800686 ifx_dev->swap_buf(
687 (ifx_dev->rx_buffer + IFX_SPI_HEADER_OVERHEAD),
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100688 actual_length,
689 &ifx_dev->rx_buffer[IFX_SPI_TRANSFER_SIZE]);
690 ifx_spi_insert_flip_string(
691 ifx_dev,
692 ifx_dev->rx_buffer + IFX_SPI_HEADER_OVERHEAD,
693 (size_t)actual_length);
694 } else {
695 dev_dbg(&ifx_dev->spi_dev->dev, "SPI transfer error %d",
696 ifx_dev->spi_msg.status);
697 }
698
699complete_exit:
700 if (ifx_dev->write_pending) {
701 ifx_dev->write_pending = 0;
702 local_write_pending = 1;
703 }
704
705 clear_bit(IFX_SPI_STATE_IO_IN_PROGRESS, &(ifx_dev->flags));
706
707 queue_length = kfifo_len(&ifx_dev->tx_fifo);
708 srdy = gpio_get_value(ifx_dev->gpio.srdy);
709 if (!srdy)
710 ifx_spi_power_state_clear(ifx_dev, IFX_SPI_POWER_SRDY);
711
712 /* schedule output if there is more to do */
713 if (test_and_clear_bit(IFX_SPI_STATE_IO_READY, &ifx_dev->flags))
714 tasklet_schedule(&ifx_dev->io_work_tasklet);
715 else {
716 if (more || ifx_dev->spi_more || queue_length > 0 ||
717 local_write_pending) {
718 if (ifx_dev->spi_slave_cts) {
719 if (more)
720 mrdy_assert(ifx_dev);
721 } else
722 mrdy_assert(ifx_dev);
723 } else {
724 /*
725 * poke line discipline driver if any for more data
726 * may or may not get more data to write
727 * for now, say not busy
728 */
729 ifx_spi_power_state_clear(ifx_dev,
730 IFX_SPI_POWER_DATA_PENDING);
731 tty = tty_port_tty_get(&ifx_dev->tty_port);
732 if (tty) {
733 ldisc = tty_ldisc_ref(tty);
734 if (ldisc) {
735 ldisc->ops->write_wakeup(tty);
736 tty_ldisc_deref(ldisc);
737 }
738 tty_kref_put(tty);
739 }
740 }
741 }
742}
743
744/**
745 * ifx_spio_io - I/O tasklet
746 * @data: our SPI device
747 *
748 * Queue data for transmission if possible and then kick off the
749 * transfer.
750 */
751static void ifx_spi_io(unsigned long data)
752{
753 int retval;
754 struct ifx_spi_device *ifx_dev = (struct ifx_spi_device *) data;
755
chao bi31fe9902012-10-31 16:54:07 +0800756 if (!test_and_set_bit(IFX_SPI_STATE_IO_IN_PROGRESS, &ifx_dev->flags) &&
757 test_bit(IFX_SPI_STATE_IO_AVAILABLE, &ifx_dev->flags)) {
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100758 if (ifx_dev->gpio.unack_srdy_int_nb > 0)
759 ifx_dev->gpio.unack_srdy_int_nb--;
760
761 ifx_spi_prepare_tx_buffer(ifx_dev);
762
763 spi_message_init(&ifx_dev->spi_msg);
764 INIT_LIST_HEAD(&ifx_dev->spi_msg.queue);
765
766 ifx_dev->spi_msg.context = ifx_dev;
767 ifx_dev->spi_msg.complete = ifx_spi_complete;
768
769 /* set up our spi transfer */
770 /* note len is BYTES, not transfers */
771 ifx_dev->spi_xfer.len = IFX_SPI_TRANSFER_SIZE;
772 ifx_dev->spi_xfer.cs_change = 0;
Russ Gorby1b79b442011-02-07 12:02:30 -0800773 ifx_dev->spi_xfer.speed_hz = ifx_dev->spi_dev->max_speed_hz;
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100774 /* ifx_dev->spi_xfer.speed_hz = 390625; */
Russ Gorbyf0891402011-02-07 12:02:29 -0800775 ifx_dev->spi_xfer.bits_per_word = spi_bpw;
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100776
777 ifx_dev->spi_xfer.tx_buf = ifx_dev->tx_buffer;
778 ifx_dev->spi_xfer.rx_buf = ifx_dev->rx_buffer;
779
780 /*
781 * setup dma pointers
782 */
Russ Gorby2f1522e2011-02-02 12:56:58 -0800783 if (ifx_dev->use_dma) {
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100784 ifx_dev->spi_msg.is_dma_mapped = 1;
785 ifx_dev->tx_dma = ifx_dev->tx_bus;
786 ifx_dev->rx_dma = ifx_dev->rx_bus;
787 ifx_dev->spi_xfer.tx_dma = ifx_dev->tx_dma;
788 ifx_dev->spi_xfer.rx_dma = ifx_dev->rx_dma;
789 } else {
790 ifx_dev->spi_msg.is_dma_mapped = 0;
791 ifx_dev->tx_dma = (dma_addr_t)0;
792 ifx_dev->rx_dma = (dma_addr_t)0;
793 ifx_dev->spi_xfer.tx_dma = (dma_addr_t)0;
794 ifx_dev->spi_xfer.rx_dma = (dma_addr_t)0;
795 }
796
797 spi_message_add_tail(&ifx_dev->spi_xfer, &ifx_dev->spi_msg);
798
799 /* Assert MRDY. This may have already been done by the write
800 * routine.
801 */
802 mrdy_assert(ifx_dev);
803
804 retval = spi_async(ifx_dev->spi_dev, &ifx_dev->spi_msg);
805 if (retval) {
806 clear_bit(IFX_SPI_STATE_IO_IN_PROGRESS,
807 &ifx_dev->flags);
808 tasklet_schedule(&ifx_dev->io_work_tasklet);
809 return;
810 }
811 } else
812 ifx_dev->write_pending = 1;
813}
814
815/**
816 * ifx_spi_free_port - free up the tty side
817 * @ifx_dev: IFX device going away
818 *
819 * Unregister and free up a port when the device goes away
820 */
821static void ifx_spi_free_port(struct ifx_spi_device *ifx_dev)
822{
823 if (ifx_dev->tty_dev)
824 tty_unregister_device(tty_drv, ifx_dev->minor);
825 kfifo_free(&ifx_dev->tx_fifo);
826}
827
828/**
829 * ifx_spi_create_port - create a new port
830 * @ifx_dev: our spi device
831 *
832 * Allocate and initialise the tty port that goes with this interface
833 * and add it to the tty layer so that it can be opened.
834 */
835static int ifx_spi_create_port(struct ifx_spi_device *ifx_dev)
836{
837 int ret = 0;
838 struct tty_port *pport = &ifx_dev->tty_port;
839
840 spin_lock_init(&ifx_dev->fifo_lock);
841 lockdep_set_class_and_subclass(&ifx_dev->fifo_lock,
842 &ifx_spi_key, 0);
843
844 if (kfifo_alloc(&ifx_dev->tx_fifo, IFX_SPI_FIFO_SIZE, GFP_KERNEL)) {
845 ret = -ENOMEM;
846 goto error_ret;
847 }
848
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100849 tty_port_init(pport);
Russ Gorbyb68f23b2011-02-07 12:02:27 -0800850 pport->ops = &ifx_tty_port_ops;
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100851 ifx_dev->minor = IFX_SPI_TTY_ID;
Jiri Slaby734cc172012-08-07 21:47:47 +0200852 ifx_dev->tty_dev = tty_port_register_device(pport, tty_drv,
853 ifx_dev->minor, &ifx_dev->spi_dev->dev);
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100854 if (IS_ERR(ifx_dev->tty_dev)) {
855 dev_dbg(&ifx_dev->spi_dev->dev,
856 "%s: registering tty device failed", __func__);
857 ret = PTR_ERR(ifx_dev->tty_dev);
858 goto error_ret;
859 }
860 return 0;
861
862error_ret:
863 ifx_spi_free_port(ifx_dev);
864 return ret;
865}
866
867/**
868 * ifx_spi_handle_srdy - handle SRDY
869 * @ifx_dev: device asserting SRDY
870 *
871 * Check our device state and see what we need to kick off when SRDY
872 * is asserted. This usually means killing the timer and firing off the
873 * I/O processing.
874 */
875static void ifx_spi_handle_srdy(struct ifx_spi_device *ifx_dev)
876{
877 if (test_bit(IFX_SPI_STATE_TIMER_PENDING, &ifx_dev->flags)) {
Jun Chen2e308022012-10-19 09:51:30 -0400878 del_timer(&ifx_dev->spi_timer);
Russ Gorbyaf3b8882010-10-26 14:13:52 +0100879 clear_bit(IFX_SPI_STATE_TIMER_PENDING, &ifx_dev->flags);
880 }
881
882 ifx_spi_power_state_set(ifx_dev, IFX_SPI_POWER_SRDY);
883
884 if (!test_bit(IFX_SPI_STATE_IO_IN_PROGRESS, &ifx_dev->flags))
885 tasklet_schedule(&ifx_dev->io_work_tasklet);
886 else
887 set_bit(IFX_SPI_STATE_IO_READY, &ifx_dev->flags);
888}
889
890/**
891 * ifx_spi_srdy_interrupt - SRDY asserted
892 * @irq: our IRQ number
893 * @dev: our ifx device
894 *
895 * The modem asserted SRDY. Handle the srdy event
896 */
897static irqreturn_t ifx_spi_srdy_interrupt(int irq, void *dev)
898{
899 struct ifx_spi_device *ifx_dev = dev;
900 ifx_dev->gpio.unack_srdy_int_nb++;
901 ifx_spi_handle_srdy(ifx_dev);
902 return IRQ_HANDLED;
903}
904
905/**
906 * ifx_spi_reset_interrupt - Modem has changed reset state
907 * @irq: interrupt number
908 * @dev: our device pointer
909 *
910 * The modem has either entered or left reset state. Check the GPIO
911 * line to see which.
912 *
913 * FIXME: review locking on MR_INPROGRESS versus
914 * parallel unsolicited reset/solicited reset
915 */
916static irqreturn_t ifx_spi_reset_interrupt(int irq, void *dev)
917{
918 struct ifx_spi_device *ifx_dev = dev;
919 int val = gpio_get_value(ifx_dev->gpio.reset_out);
920 int solreset = test_bit(MR_START, &ifx_dev->mdm_reset_state);
921
922 if (val == 0) {
923 /* entered reset */
924 set_bit(MR_INPROGRESS, &ifx_dev->mdm_reset_state);
925 if (!solreset) {
926 /* unsolicited reset */
927 ifx_spi_ttyhangup(ifx_dev);
928 }
929 } else {
930 /* exited reset */
931 clear_bit(MR_INPROGRESS, &ifx_dev->mdm_reset_state);
932 if (solreset) {
933 set_bit(MR_COMPLETE, &ifx_dev->mdm_reset_state);
934 wake_up(&ifx_dev->mdm_reset_wait);
935 }
936 }
937 return IRQ_HANDLED;
938}
939
940/**
941 * ifx_spi_free_device - free device
942 * @ifx_dev: device to free
943 *
944 * Free the IFX device
945 */
946static void ifx_spi_free_device(struct ifx_spi_device *ifx_dev)
947{
948 ifx_spi_free_port(ifx_dev);
949 dma_free_coherent(&ifx_dev->spi_dev->dev,
950 IFX_SPI_TRANSFER_SIZE,
951 ifx_dev->tx_buffer,
952 ifx_dev->tx_bus);
953 dma_free_coherent(&ifx_dev->spi_dev->dev,
954 IFX_SPI_TRANSFER_SIZE,
955 ifx_dev->rx_buffer,
956 ifx_dev->rx_bus);
957}
958
959/**
960 * ifx_spi_reset - reset modem
961 * @ifx_dev: modem to reset
962 *
963 * Perform a reset on the modem
964 */
965static int ifx_spi_reset(struct ifx_spi_device *ifx_dev)
966{
967 int ret;
968 /*
969 * set up modem power, reset
970 *
971 * delays are required on some platforms for the modem
972 * to reset properly
973 */
974 set_bit(MR_START, &ifx_dev->mdm_reset_state);
975 gpio_set_value(ifx_dev->gpio.po, 0);
976 gpio_set_value(ifx_dev->gpio.reset, 0);
977 msleep(25);
978 gpio_set_value(ifx_dev->gpio.reset, 1);
979 msleep(1);
980 gpio_set_value(ifx_dev->gpio.po, 1);
981 msleep(1);
982 gpio_set_value(ifx_dev->gpio.po, 0);
983 ret = wait_event_timeout(ifx_dev->mdm_reset_wait,
984 test_bit(MR_COMPLETE,
985 &ifx_dev->mdm_reset_state),
986 IFX_RESET_TIMEOUT);
987 if (!ret)
988 dev_warn(&ifx_dev->spi_dev->dev, "Modem reset timeout: (state:%lx)",
989 ifx_dev->mdm_reset_state);
990
991 ifx_dev->mdm_reset_state = 0;
992 return ret;
993}
994
995/**
996 * ifx_spi_spi_probe - probe callback
997 * @spi: our possible matching SPI device
998 *
999 * Probe for a 6x60 modem on SPI bus. Perform any needed device and
1000 * GPIO setup.
1001 *
1002 * FIXME:
1003 * - Support for multiple devices
1004 * - Split out MID specific GPIO handling eventually
1005 */
1006
1007static int ifx_spi_spi_probe(struct spi_device *spi)
1008{
1009 int ret;
1010 int srdy;
Russ Gorby2f1522e2011-02-02 12:56:58 -08001011 struct ifx_modem_platform_data *pl_data;
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001012 struct ifx_spi_device *ifx_dev;
1013
1014 if (saved_ifx_dev) {
1015 dev_dbg(&spi->dev, "ignoring subsequent detection");
1016 return -ENODEV;
1017 }
1018
Russ Gorby2f1522e2011-02-02 12:56:58 -08001019 pl_data = (struct ifx_modem_platform_data *)spi->dev.platform_data;
1020 if (!pl_data) {
1021 dev_err(&spi->dev, "missing platform data!");
1022 return -ENODEV;
1023 }
1024
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001025 /* initialize structure to hold our device variables */
1026 ifx_dev = kzalloc(sizeof(struct ifx_spi_device), GFP_KERNEL);
1027 if (!ifx_dev) {
1028 dev_err(&spi->dev, "spi device allocation failed");
1029 return -ENOMEM;
1030 }
1031 saved_ifx_dev = ifx_dev;
1032 ifx_dev->spi_dev = spi;
1033 clear_bit(IFX_SPI_STATE_IO_IN_PROGRESS, &ifx_dev->flags);
1034 spin_lock_init(&ifx_dev->write_lock);
1035 spin_lock_init(&ifx_dev->power_lock);
1036 ifx_dev->power_status = 0;
1037 init_timer(&ifx_dev->spi_timer);
1038 ifx_dev->spi_timer.function = ifx_spi_timeout;
1039 ifx_dev->spi_timer.data = (unsigned long)ifx_dev;
Russ Gorby2f1522e2011-02-02 12:56:58 -08001040 ifx_dev->modem = pl_data->modem_type;
1041 ifx_dev->use_dma = pl_data->use_dma;
1042 ifx_dev->max_hz = pl_data->max_hz;
Russ Gorby2aff8d92011-02-07 12:02:31 -08001043 /* initialize spi mode, etc */
Russ Gorby1b79b442011-02-07 12:02:30 -08001044 spi->max_speed_hz = ifx_dev->max_hz;
Russ Gorby2aff8d92011-02-07 12:02:31 -08001045 spi->mode = IFX_SPI_MODE | (SPI_LOOP & spi->mode);
1046 spi->bits_per_word = spi_bpw;
1047 ret = spi_setup(spi);
1048 if (ret) {
1049 dev_err(&spi->dev, "SPI setup wasn't successful %d", ret);
1050 return -ENODEV;
1051 }
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001052
chao bi319fb0d2012-10-25 09:02:32 +08001053 /* init swap_buf function according to word width configuration */
1054 if (spi->bits_per_word == 32)
1055 ifx_dev->swap_buf = swap_buf_32;
1056 else if (spi->bits_per_word == 16)
1057 ifx_dev->swap_buf = swap_buf_16;
1058 else
1059 ifx_dev->swap_buf = swap_buf_8;
1060
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001061 /* ensure SPI protocol flags are initialized to enable transfer */
1062 ifx_dev->spi_more = 0;
1063 ifx_dev->spi_slave_cts = 0;
1064
1065 /*initialize transfer and dma buffers */
Russ Gorby5fc324952011-02-07 12:02:28 -08001066 ifx_dev->tx_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->tx_bus,
1069 GFP_KERNEL);
1070 if (!ifx_dev->tx_buffer) {
1071 dev_err(&spi->dev, "DMA-TX buffer allocation failed");
1072 ret = -ENOMEM;
1073 goto error_ret;
1074 }
Russ Gorby5fc324952011-02-07 12:02:28 -08001075 ifx_dev->rx_buffer = dma_alloc_coherent(ifx_dev->spi_dev->dev.parent,
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001076 IFX_SPI_TRANSFER_SIZE,
1077 &ifx_dev->rx_bus,
1078 GFP_KERNEL);
1079 if (!ifx_dev->rx_buffer) {
1080 dev_err(&spi->dev, "DMA-RX buffer allocation failed");
1081 ret = -ENOMEM;
1082 goto error_ret;
1083 }
1084
1085 /* initialize waitq for modem reset */
1086 init_waitqueue_head(&ifx_dev->mdm_reset_wait);
1087
1088 spi_set_drvdata(spi, ifx_dev);
1089 tasklet_init(&ifx_dev->io_work_tasklet, ifx_spi_io,
1090 (unsigned long)ifx_dev);
1091
1092 set_bit(IFX_SPI_STATE_PRESENT, &ifx_dev->flags);
1093
1094 /* create our tty port */
1095 ret = ifx_spi_create_port(ifx_dev);
1096 if (ret != 0) {
1097 dev_err(&spi->dev, "create default tty port failed");
1098 goto error_ret;
1099 }
1100
Russ Gorby2f1522e2011-02-02 12:56:58 -08001101 ifx_dev->gpio.reset = pl_data->rst_pmu;
1102 ifx_dev->gpio.po = pl_data->pwr_on;
1103 ifx_dev->gpio.mrdy = pl_data->mrdy;
1104 ifx_dev->gpio.srdy = pl_data->srdy;
1105 ifx_dev->gpio.reset_out = pl_data->rst_out;
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001106
1107 dev_info(&spi->dev, "gpios %d, %d, %d, %d, %d",
1108 ifx_dev->gpio.reset, ifx_dev->gpio.po, ifx_dev->gpio.mrdy,
1109 ifx_dev->gpio.srdy, ifx_dev->gpio.reset_out);
1110
1111 /* Configure gpios */
1112 ret = gpio_request(ifx_dev->gpio.reset, "ifxModem");
1113 if (ret < 0) {
1114 dev_err(&spi->dev, "Unable to allocate GPIO%d (RESET)",
1115 ifx_dev->gpio.reset);
1116 goto error_ret;
1117 }
1118 ret += gpio_direction_output(ifx_dev->gpio.reset, 0);
1119 ret += gpio_export(ifx_dev->gpio.reset, 1);
1120 if (ret) {
1121 dev_err(&spi->dev, "Unable to configure GPIO%d (RESET)",
1122 ifx_dev->gpio.reset);
1123 ret = -EBUSY;
1124 goto error_ret2;
1125 }
1126
1127 ret = gpio_request(ifx_dev->gpio.po, "ifxModem");
1128 ret += gpio_direction_output(ifx_dev->gpio.po, 0);
1129 ret += gpio_export(ifx_dev->gpio.po, 1);
1130 if (ret) {
1131 dev_err(&spi->dev, "Unable to configure GPIO%d (ON)",
1132 ifx_dev->gpio.po);
1133 ret = -EBUSY;
1134 goto error_ret3;
1135 }
1136
1137 ret = gpio_request(ifx_dev->gpio.mrdy, "ifxModem");
1138 if (ret < 0) {
1139 dev_err(&spi->dev, "Unable to allocate GPIO%d (MRDY)",
1140 ifx_dev->gpio.mrdy);
1141 goto error_ret3;
1142 }
1143 ret += gpio_export(ifx_dev->gpio.mrdy, 1);
1144 ret += gpio_direction_output(ifx_dev->gpio.mrdy, 0);
1145 if (ret) {
1146 dev_err(&spi->dev, "Unable to configure GPIO%d (MRDY)",
1147 ifx_dev->gpio.mrdy);
1148 ret = -EBUSY;
1149 goto error_ret4;
1150 }
1151
1152 ret = gpio_request(ifx_dev->gpio.srdy, "ifxModem");
1153 if (ret < 0) {
1154 dev_err(&spi->dev, "Unable to allocate GPIO%d (SRDY)",
1155 ifx_dev->gpio.srdy);
1156 ret = -EBUSY;
1157 goto error_ret4;
1158 }
1159 ret += gpio_export(ifx_dev->gpio.srdy, 1);
1160 ret += gpio_direction_input(ifx_dev->gpio.srdy);
1161 if (ret) {
1162 dev_err(&spi->dev, "Unable to configure GPIO%d (SRDY)",
1163 ifx_dev->gpio.srdy);
1164 ret = -EBUSY;
1165 goto error_ret5;
1166 }
1167
1168 ret = gpio_request(ifx_dev->gpio.reset_out, "ifxModem");
1169 if (ret < 0) {
1170 dev_err(&spi->dev, "Unable to allocate GPIO%d (RESET_OUT)",
1171 ifx_dev->gpio.reset_out);
1172 goto error_ret5;
1173 }
1174 ret += gpio_export(ifx_dev->gpio.reset_out, 1);
1175 ret += gpio_direction_input(ifx_dev->gpio.reset_out);
1176 if (ret) {
1177 dev_err(&spi->dev, "Unable to configure GPIO%d (RESET_OUT)",
1178 ifx_dev->gpio.reset_out);
1179 ret = -EBUSY;
1180 goto error_ret6;
1181 }
1182
1183 ret = request_irq(gpio_to_irq(ifx_dev->gpio.reset_out),
1184 ifx_spi_reset_interrupt,
1185 IRQF_TRIGGER_RISING|IRQF_TRIGGER_FALLING, DRVNAME,
1186 (void *)ifx_dev);
1187 if (ret) {
1188 dev_err(&spi->dev, "Unable to get irq %x\n",
1189 gpio_to_irq(ifx_dev->gpio.reset_out));
1190 goto error_ret6;
1191 }
1192
1193 ret = ifx_spi_reset(ifx_dev);
1194
1195 ret = request_irq(gpio_to_irq(ifx_dev->gpio.srdy),
1196 ifx_spi_srdy_interrupt,
1197 IRQF_TRIGGER_RISING, DRVNAME,
1198 (void *)ifx_dev);
1199 if (ret) {
1200 dev_err(&spi->dev, "Unable to get irq %x",
1201 gpio_to_irq(ifx_dev->gpio.srdy));
Vasiliy Kulikovbadb9532010-11-19 21:42:03 +03001202 goto error_ret7;
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001203 }
1204
1205 /* set pm runtime power state and register with power system */
1206 pm_runtime_set_active(&spi->dev);
1207 pm_runtime_enable(&spi->dev);
1208
1209 /* handle case that modem is already signaling SRDY */
1210 /* no outgoing tty open at this point, this just satisfies the
1211 * modem's read and should reset communication properly
1212 */
1213 srdy = gpio_get_value(ifx_dev->gpio.srdy);
1214
1215 if (srdy) {
1216 mrdy_assert(ifx_dev);
1217 ifx_spi_handle_srdy(ifx_dev);
1218 } else
1219 mrdy_set_low(ifx_dev);
1220 return 0;
1221
Vasiliy Kulikovbadb9532010-11-19 21:42:03 +03001222error_ret7:
1223 free_irq(gpio_to_irq(ifx_dev->gpio.reset_out), (void *)ifx_dev);
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001224error_ret6:
1225 gpio_free(ifx_dev->gpio.srdy);
1226error_ret5:
1227 gpio_free(ifx_dev->gpio.mrdy);
1228error_ret4:
1229 gpio_free(ifx_dev->gpio.reset);
1230error_ret3:
1231 gpio_free(ifx_dev->gpio.po);
1232error_ret2:
1233 gpio_free(ifx_dev->gpio.reset_out);
1234error_ret:
1235 ifx_spi_free_device(ifx_dev);
1236 saved_ifx_dev = NULL;
1237 return ret;
1238}
1239
1240/**
1241 * ifx_spi_spi_remove - SPI device was removed
1242 * @spi: SPI device
1243 *
1244 * FIXME: We should be shutting the device down here not in
1245 * the module unload path.
1246 */
1247
1248static int ifx_spi_spi_remove(struct spi_device *spi)
1249{
1250 struct ifx_spi_device *ifx_dev = spi_get_drvdata(spi);
1251 /* stop activity */
1252 tasklet_kill(&ifx_dev->io_work_tasklet);
1253 /* free irq */
1254 free_irq(gpio_to_irq(ifx_dev->gpio.reset_out), (void *)ifx_dev);
1255 free_irq(gpio_to_irq(ifx_dev->gpio.srdy), (void *)ifx_dev);
1256
1257 gpio_free(ifx_dev->gpio.srdy);
1258 gpio_free(ifx_dev->gpio.mrdy);
1259 gpio_free(ifx_dev->gpio.reset);
1260 gpio_free(ifx_dev->gpio.po);
1261 gpio_free(ifx_dev->gpio.reset_out);
1262
1263 /* free allocations */
1264 ifx_spi_free_device(ifx_dev);
1265
1266 saved_ifx_dev = NULL;
1267 return 0;
1268}
1269
1270/**
1271 * ifx_spi_spi_shutdown - called on SPI shutdown
1272 * @spi: SPI device
1273 *
1274 * No action needs to be taken here
1275 */
1276
1277static void ifx_spi_spi_shutdown(struct spi_device *spi)
1278{
1279}
1280
1281/*
1282 * various suspends and resumes have nothing to do
1283 * no hardware to save state for
1284 */
1285
1286/**
1287 * ifx_spi_spi_suspend - suspend SPI on system suspend
1288 * @dev: device being suspended
1289 *
1290 * Suspend the SPI side. No action needed on Intel MID platforms, may
1291 * need extending for other systems.
1292 */
1293static int ifx_spi_spi_suspend(struct spi_device *spi, pm_message_t msg)
1294{
1295 return 0;
1296}
1297
1298/**
1299 * ifx_spi_spi_resume - resume SPI side on system resume
1300 * @dev: device being suspended
1301 *
1302 * Suspend the SPI side. No action needed on Intel MID platforms, may
1303 * need extending for other systems.
1304 */
1305static int ifx_spi_spi_resume(struct spi_device *spi)
1306{
1307 return 0;
1308}
1309
1310/**
1311 * ifx_spi_pm_suspend - suspend modem on system suspend
1312 * @dev: device being suspended
1313 *
1314 * Suspend the modem. No action needed on Intel MID platforms, may
1315 * need extending for other systems.
1316 */
1317static int ifx_spi_pm_suspend(struct device *dev)
1318{
1319 return 0;
1320}
1321
1322/**
1323 * ifx_spi_pm_resume - resume modem on system resume
1324 * @dev: device being suspended
1325 *
1326 * Allow the modem to resume. No action needed.
1327 *
1328 * FIXME: do we need to reset anything here ?
1329 */
1330static int ifx_spi_pm_resume(struct device *dev)
1331{
1332 return 0;
1333}
1334
1335/**
1336 * ifx_spi_pm_runtime_resume - suspend modem
1337 * @dev: device being suspended
1338 *
1339 * Allow the modem to resume. No action needed.
1340 */
1341static int ifx_spi_pm_runtime_resume(struct device *dev)
1342{
1343 return 0;
1344}
1345
1346/**
1347 * ifx_spi_pm_runtime_suspend - suspend modem
1348 * @dev: device being suspended
1349 *
1350 * Allow the modem to suspend and thus suspend to continue up the
1351 * device tree.
1352 */
1353static int ifx_spi_pm_runtime_suspend(struct device *dev)
1354{
1355 return 0;
1356}
1357
1358/**
1359 * ifx_spi_pm_runtime_idle - check if modem idle
1360 * @dev: our device
1361 *
1362 * Check conditions and queue runtime suspend if idle.
1363 */
1364static int ifx_spi_pm_runtime_idle(struct device *dev)
1365{
1366 struct spi_device *spi = to_spi_device(dev);
1367 struct ifx_spi_device *ifx_dev = spi_get_drvdata(spi);
1368
1369 if (!ifx_dev->power_status)
1370 pm_runtime_suspend(dev);
1371
1372 return 0;
1373}
1374
1375static const struct dev_pm_ops ifx_spi_pm = {
1376 .resume = ifx_spi_pm_resume,
1377 .suspend = ifx_spi_pm_suspend,
1378 .runtime_resume = ifx_spi_pm_runtime_resume,
1379 .runtime_suspend = ifx_spi_pm_runtime_suspend,
1380 .runtime_idle = ifx_spi_pm_runtime_idle
1381};
1382
1383static const struct spi_device_id ifx_id_table[] = {
1384 {"ifx6160", 0},
1385 {"ifx6260", 0},
1386 { }
1387};
1388MODULE_DEVICE_TABLE(spi, ifx_id_table);
1389
1390/* spi operations */
Fengguang Wu7d9739c2012-08-07 13:12:47 +08001391static struct spi_driver ifx_spi_driver = {
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001392 .driver = {
Russ Gorby8115be02011-02-07 12:02:32 -08001393 .name = DRVNAME,
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001394 .pm = &ifx_spi_pm,
1395 .owner = THIS_MODULE},
1396 .probe = ifx_spi_spi_probe,
1397 .shutdown = ifx_spi_spi_shutdown,
1398 .remove = __devexit_p(ifx_spi_spi_remove),
1399 .suspend = ifx_spi_spi_suspend,
1400 .resume = ifx_spi_spi_resume,
1401 .id_table = ifx_id_table
1402};
1403
1404/**
1405 * ifx_spi_exit - module exit
1406 *
1407 * Unload the module.
1408 */
1409
1410static void __exit ifx_spi_exit(void)
1411{
1412 /* unregister */
1413 tty_unregister_driver(tty_drv);
Russ Gorby8115be02011-02-07 12:02:32 -08001414 spi_unregister_driver((void *)&ifx_spi_driver);
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001415}
1416
1417/**
1418 * ifx_spi_init - module entry point
1419 *
1420 * Initialise the SPI and tty interfaces for the IFX SPI driver
1421 * We need to initialize upper-edge spi driver after the tty
1422 * driver because otherwise the spi probe will race
1423 */
1424
1425static int __init ifx_spi_init(void)
1426{
1427 int result;
1428
1429 tty_drv = alloc_tty_driver(1);
1430 if (!tty_drv) {
1431 pr_err("%s: alloc_tty_driver failed", DRVNAME);
1432 return -ENOMEM;
1433 }
1434
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001435 tty_drv->driver_name = DRVNAME;
1436 tty_drv->name = TTYNAME;
1437 tty_drv->minor_start = IFX_SPI_TTY_ID;
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001438 tty_drv->type = TTY_DRIVER_TYPE_SERIAL;
1439 tty_drv->subtype = SERIAL_TYPE_NORMAL;
1440 tty_drv->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
1441 tty_drv->init_termios = tty_std_termios;
1442
1443 tty_set_operations(tty_drv, &ifx_spi_serial_ops);
1444
1445 result = tty_register_driver(tty_drv);
1446 if (result) {
1447 pr_err("%s: tty_register_driver failed(%d)",
1448 DRVNAME, result);
Vasiliy Kulikova4fb0b22010-11-19 21:41:45 +03001449 put_tty_driver(tty_drv);
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001450 return result;
1451 }
1452
Russ Gorby8115be02011-02-07 12:02:32 -08001453 result = spi_register_driver((void *)&ifx_spi_driver);
Russ Gorbyaf3b8882010-10-26 14:13:52 +01001454 if (result) {
1455 pr_err("%s: spi_register_driver failed(%d)",
1456 DRVNAME, result);
1457 tty_unregister_driver(tty_drv);
1458 }
1459 return result;
1460}
1461
1462module_init(ifx_spi_init);
1463module_exit(ifx_spi_exit);
1464
1465MODULE_AUTHOR("Intel");
1466MODULE_DESCRIPTION("IFX6x60 spi driver");
1467MODULE_LICENSE("GPL");
1468MODULE_INFO(Version, "0.1-IFX6x60");