2 * linux/drivers/mmc/card/sdio_uart.c - SDIO UART/GPS driver
4 * Based on drivers/serial/8250.c and drivers/serial/serial_core.c
7 * Author: Nicolas Pitre
8 * Created: June 15, 2007
9 * Copyright: MontaVista Software, Inc.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or (at
14 * your option) any later version.
18 * Note: Although this driver assumes a 16550A-like UART implementation,
19 * it is not possible to leverage the common 8250/16550 driver, nor the
20 * core UART infrastructure, as they assumes direct access to the hardware
21 * registers, often under a spinlock. This is not possible in the SDIO
22 * context as SDIO access functions must be able to sleep.
24 * Because we need to lock the SDIO host to ensure an exclusive access to
25 * the card, we simply rely on that lock to also prevent and serialize
26 * concurrent access to the same port.
29 #include <linux/module.h>
30 #include <linux/init.h>
31 #include <linux/kernel.h>
32 #include <linux/mutex.h>
33 #include <linux/seq_file.h>
34 #include <linux/serial_reg.h>
35 #include <linux/circ_buf.h>
36 #include <linux/gfp.h>
37 #include <linux/tty.h>
38 #include <linux/tty_flip.h>
40 #include <linux/mmc/core.h>
41 #include <linux/mmc/card.h>
42 #include <linux/mmc/sdio_func.h>
43 #include <linux/mmc/sdio_ids.h>
46 #define UART_NR 8 /* Number of UARTs this driver can handle */
49 #define UART_XMIT_SIZE PAGE_SIZE
50 #define WAKEUP_CHARS 256
52 #define circ_empty(circ) ((circ)->head == (circ)->tail)
53 #define circ_clear(circ) ((circ)->head = (circ)->tail = 0)
55 #define circ_chars_pending(circ) \
56 (CIRC_CNT((circ)->head, (circ)->tail, UART_XMIT_SIZE))
58 #define circ_chars_free(circ) \
59 (CIRC_SPACE((circ)->head, (circ)->tail, UART_XMIT_SIZE))
75 struct sdio_uart_port
{
77 struct tty_struct
*tty
;
80 struct mutex open_lock
;
81 struct sdio_func
*func
;
82 struct mutex func_lock
;
83 struct task_struct
*in_sdio_uart_irq
;
84 unsigned int regs_offset
;
86 spinlock_t write_lock
;
87 struct uart_icount icount
;
90 unsigned int read_status_mask
;
91 unsigned int ignore_status_mask
;
97 static struct sdio_uart_port
*sdio_uart_table
[UART_NR
];
98 static DEFINE_SPINLOCK(sdio_uart_table_lock
);
100 static int sdio_uart_add_port(struct sdio_uart_port
*port
)
102 int index
, ret
= -EBUSY
;
104 kref_init(&port
->kref
);
105 mutex_init(&port
->open_lock
);
106 mutex_init(&port
->func_lock
);
107 spin_lock_init(&port
->write_lock
);
109 spin_lock(&sdio_uart_table_lock
);
110 for (index
= 0; index
< UART_NR
; index
++) {
111 if (!sdio_uart_table
[index
]) {
113 sdio_uart_table
[index
] = port
;
118 spin_unlock(&sdio_uart_table_lock
);
123 static struct sdio_uart_port
*sdio_uart_port_get(unsigned index
)
125 struct sdio_uart_port
*port
;
127 if (index
>= UART_NR
)
130 spin_lock(&sdio_uart_table_lock
);
131 port
= sdio_uart_table
[index
];
133 kref_get(&port
->kref
);
134 spin_unlock(&sdio_uart_table_lock
);
139 static void sdio_uart_port_destroy(struct kref
*kref
)
141 struct sdio_uart_port
*port
=
142 container_of(kref
, struct sdio_uart_port
, kref
);
146 static void sdio_uart_port_put(struct sdio_uart_port
*port
)
148 kref_put(&port
->kref
, sdio_uart_port_destroy
);
151 static void sdio_uart_port_remove(struct sdio_uart_port
*port
)
153 struct sdio_func
*func
;
155 BUG_ON(sdio_uart_table
[port
->index
] != port
);
157 spin_lock(&sdio_uart_table_lock
);
158 sdio_uart_table
[port
->index
] = NULL
;
159 spin_unlock(&sdio_uart_table_lock
);
162 * We're killing a port that potentially still is in use by
163 * the tty layer. Be careful to prevent any further access
164 * to the SDIO function and arrange for the tty layer to
165 * give up on that port ASAP.
166 * Beware: the lock ordering is critical.
168 mutex_lock(&port
->open_lock
);
169 mutex_lock(&port
->func_lock
);
171 sdio_claim_host(func
);
173 mutex_unlock(&port
->func_lock
);
175 tty_hangup(port
->tty
);
176 mutex_unlock(&port
->open_lock
);
177 sdio_release_irq(func
);
178 sdio_disable_func(func
);
179 sdio_release_host(func
);
181 sdio_uart_port_put(port
);
184 static int sdio_uart_claim_func(struct sdio_uart_port
*port
)
186 mutex_lock(&port
->func_lock
);
187 if (unlikely(!port
->func
)) {
188 mutex_unlock(&port
->func_lock
);
191 if (likely(port
->in_sdio_uart_irq
!= current
))
192 sdio_claim_host(port
->func
);
193 mutex_unlock(&port
->func_lock
);
197 static inline void sdio_uart_release_func(struct sdio_uart_port
*port
)
199 if (likely(port
->in_sdio_uart_irq
!= current
))
200 sdio_release_host(port
->func
);
203 static inline unsigned int sdio_in(struct sdio_uart_port
*port
, int offset
)
206 c
= sdio_readb(port
->func
, port
->regs_offset
+ offset
, NULL
);
210 static inline void sdio_out(struct sdio_uart_port
*port
, int offset
, int value
)
212 sdio_writeb(port
->func
, value
, port
->regs_offset
+ offset
, NULL
);
215 static unsigned int sdio_uart_get_mctrl(struct sdio_uart_port
*port
)
217 unsigned char status
;
220 status
= sdio_in(port
, UART_MSR
);
223 if (status
& UART_MSR_DCD
)
225 if (status
& UART_MSR_RI
)
227 if (status
& UART_MSR_DSR
)
229 if (status
& UART_MSR_CTS
)
234 static void sdio_uart_write_mctrl(struct sdio_uart_port
*port
, unsigned int mctrl
)
236 unsigned char mcr
= 0;
238 if (mctrl
& TIOCM_RTS
)
240 if (mctrl
& TIOCM_DTR
)
242 if (mctrl
& TIOCM_OUT1
)
243 mcr
|= UART_MCR_OUT1
;
244 if (mctrl
& TIOCM_OUT2
)
245 mcr
|= UART_MCR_OUT2
;
246 if (mctrl
& TIOCM_LOOP
)
247 mcr
|= UART_MCR_LOOP
;
249 sdio_out(port
, UART_MCR
, mcr
);
252 static inline void sdio_uart_update_mctrl(struct sdio_uart_port
*port
,
253 unsigned int set
, unsigned int clear
)
258 port
->mctrl
= (old
& ~clear
) | set
;
259 if (old
!= port
->mctrl
)
260 sdio_uart_write_mctrl(port
, port
->mctrl
);
263 #define sdio_uart_set_mctrl(port, x) sdio_uart_update_mctrl(port, x, 0)
264 #define sdio_uart_clear_mctrl(port, x) sdio_uart_update_mctrl(port, 0, x)
266 static void sdio_uart_change_speed(struct sdio_uart_port
*port
,
267 struct ktermios
*termios
,
268 struct ktermios
*old
)
270 unsigned char cval
, fcr
= 0;
271 unsigned int baud
, quot
;
273 switch (termios
->c_cflag
& CSIZE
) {
275 cval
= UART_LCR_WLEN5
;
278 cval
= UART_LCR_WLEN6
;
281 cval
= UART_LCR_WLEN7
;
285 cval
= UART_LCR_WLEN8
;
289 if (termios
->c_cflag
& CSTOPB
)
290 cval
|= UART_LCR_STOP
;
291 if (termios
->c_cflag
& PARENB
)
292 cval
|= UART_LCR_PARITY
;
293 if (!(termios
->c_cflag
& PARODD
))
294 cval
|= UART_LCR_EPAR
;
297 baud
= tty_termios_baud_rate(termios
);
299 baud
= 9600; /* Special case: B0 rate. */
300 if (baud
<= port
->uartclk
)
303 * Oops, the quotient was zero. Try again with the old
304 * baud rate if possible, otherwise default to 9600.
306 termios
->c_cflag
&= ~CBAUD
;
308 termios
->c_cflag
|= old
->c_cflag
& CBAUD
;
311 termios
->c_cflag
|= B9600
;
313 quot
= (2 * port
->uartclk
+ baud
) / (2 * baud
);
316 fcr
= UART_FCR_ENABLE_FIFO
| UART_FCR_TRIGGER_1
;
318 fcr
= UART_FCR_ENABLE_FIFO
| UART_FCR_R_TRIG_10
;
320 port
->read_status_mask
= UART_LSR_OE
| UART_LSR_THRE
| UART_LSR_DR
;
321 if (termios
->c_iflag
& INPCK
)
322 port
->read_status_mask
|= UART_LSR_FE
| UART_LSR_PE
;
323 if (termios
->c_iflag
& (BRKINT
| PARMRK
))
324 port
->read_status_mask
|= UART_LSR_BI
;
327 * Characters to ignore
329 port
->ignore_status_mask
= 0;
330 if (termios
->c_iflag
& IGNPAR
)
331 port
->ignore_status_mask
|= UART_LSR_PE
| UART_LSR_FE
;
332 if (termios
->c_iflag
& IGNBRK
) {
333 port
->ignore_status_mask
|= UART_LSR_BI
;
335 * If we're ignoring parity and break indicators,
336 * ignore overruns too (for real raw support).
338 if (termios
->c_iflag
& IGNPAR
)
339 port
->ignore_status_mask
|= UART_LSR_OE
;
343 * ignore all characters if CREAD is not set
345 if ((termios
->c_cflag
& CREAD
) == 0)
346 port
->ignore_status_mask
|= UART_LSR_DR
;
349 * CTS flow control flag and modem status interrupts
351 port
->ier
&= ~UART_IER_MSI
;
352 if ((termios
->c_cflag
& CRTSCTS
) || !(termios
->c_cflag
& CLOCAL
))
353 port
->ier
|= UART_IER_MSI
;
357 sdio_out(port
, UART_IER
, port
->ier
);
358 sdio_out(port
, UART_LCR
, cval
| UART_LCR_DLAB
);
359 sdio_out(port
, UART_DLL
, quot
& 0xff);
360 sdio_out(port
, UART_DLM
, quot
>> 8);
361 sdio_out(port
, UART_LCR
, cval
);
362 sdio_out(port
, UART_FCR
, fcr
);
364 sdio_uart_write_mctrl(port
, port
->mctrl
);
367 static void sdio_uart_start_tx(struct sdio_uart_port
*port
)
369 if (!(port
->ier
& UART_IER_THRI
)) {
370 port
->ier
|= UART_IER_THRI
;
371 sdio_out(port
, UART_IER
, port
->ier
);
375 static void sdio_uart_stop_tx(struct sdio_uart_port
*port
)
377 if (port
->ier
& UART_IER_THRI
) {
378 port
->ier
&= ~UART_IER_THRI
;
379 sdio_out(port
, UART_IER
, port
->ier
);
383 static void sdio_uart_stop_rx(struct sdio_uart_port
*port
)
385 port
->ier
&= ~UART_IER_RLSI
;
386 port
->read_status_mask
&= ~UART_LSR_DR
;
387 sdio_out(port
, UART_IER
, port
->ier
);
390 static void sdio_uart_receive_chars(struct sdio_uart_port
*port
, unsigned int *status
)
392 struct tty_struct
*tty
= port
->tty
;
393 unsigned int ch
, flag
;
397 ch
= sdio_in(port
, UART_RX
);
401 if (unlikely(*status
& (UART_LSR_BI
| UART_LSR_PE
|
402 UART_LSR_FE
| UART_LSR_OE
))) {
404 * For statistics only
406 if (*status
& UART_LSR_BI
) {
407 *status
&= ~(UART_LSR_FE
| UART_LSR_PE
);
409 } else if (*status
& UART_LSR_PE
)
410 port
->icount
.parity
++;
411 else if (*status
& UART_LSR_FE
)
412 port
->icount
.frame
++;
413 if (*status
& UART_LSR_OE
)
414 port
->icount
.overrun
++;
417 * Mask off conditions which should be ignored.
419 *status
&= port
->read_status_mask
;
420 if (*status
& UART_LSR_BI
) {
422 } else if (*status
& UART_LSR_PE
)
424 else if (*status
& UART_LSR_FE
)
428 if ((*status
& port
->ignore_status_mask
& ~UART_LSR_OE
) == 0)
429 tty_insert_flip_char(tty
, ch
, flag
);
432 * Overrun is special. Since it's reported immediately,
433 * it doesn't affect the current character.
435 if (*status
& ~port
->ignore_status_mask
& UART_LSR_OE
)
436 tty_insert_flip_char(tty
, 0, TTY_OVERRUN
);
438 *status
= sdio_in(port
, UART_LSR
);
439 } while ((*status
& UART_LSR_DR
) && (max_count
-- > 0));
440 tty_flip_buffer_push(tty
);
443 static void sdio_uart_transmit_chars(struct sdio_uart_port
*port
)
445 struct circ_buf
*xmit
= &port
->xmit
;
449 sdio_out(port
, UART_TX
, port
->x_char
);
454 if (circ_empty(xmit
) || port
->tty
->stopped
|| port
->tty
->hw_stopped
) {
455 sdio_uart_stop_tx(port
);
461 sdio_out(port
, UART_TX
, xmit
->buf
[xmit
->tail
]);
462 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
464 if (circ_empty(xmit
))
466 } while (--count
> 0);
468 if (circ_chars_pending(xmit
) < WAKEUP_CHARS
)
469 tty_wakeup(port
->tty
);
471 if (circ_empty(xmit
))
472 sdio_uart_stop_tx(port
);
475 static void sdio_uart_check_modem_status(struct sdio_uart_port
*port
)
479 status
= sdio_in(port
, UART_MSR
);
481 if ((status
& UART_MSR_ANY_DELTA
) == 0)
484 if (status
& UART_MSR_TERI
)
486 if (status
& UART_MSR_DDSR
)
488 if (status
& UART_MSR_DDCD
)
490 if (status
& UART_MSR_DCTS
) {
492 if (port
->tty
->termios
->c_cflag
& CRTSCTS
) {
493 int cts
= (status
& UART_MSR_CTS
);
494 if (port
->tty
->hw_stopped
) {
496 port
->tty
->hw_stopped
= 0;
497 sdio_uart_start_tx(port
);
498 tty_wakeup(port
->tty
);
502 port
->tty
->hw_stopped
= 1;
503 sdio_uart_stop_tx(port
);
511 * This handles the interrupt from one port.
513 static void sdio_uart_irq(struct sdio_func
*func
)
515 struct sdio_uart_port
*port
= sdio_get_drvdata(func
);
516 unsigned int iir
, lsr
;
519 * In a few places sdio_uart_irq() is called directly instead of
520 * waiting for the actual interrupt to be raised and the SDIO IRQ
521 * thread scheduled in order to reduce latency. However, some
522 * interaction with the tty core may end up calling us back
523 * (serial echo, flow control, etc.) through those same places
524 * causing undesirable effects. Let's stop the recursion here.
526 if (unlikely(port
->in_sdio_uart_irq
== current
))
529 iir
= sdio_in(port
, UART_IIR
);
530 if (iir
& UART_IIR_NO_INT
)
533 port
->in_sdio_uart_irq
= current
;
534 lsr
= sdio_in(port
, UART_LSR
);
535 if (lsr
& UART_LSR_DR
)
536 sdio_uart_receive_chars(port
, &lsr
);
537 sdio_uart_check_modem_status(port
);
538 if (lsr
& UART_LSR_THRE
)
539 sdio_uart_transmit_chars(port
);
540 port
->in_sdio_uart_irq
= NULL
;
543 static int sdio_uart_startup(struct sdio_uart_port
*port
)
549 * Set the TTY IO error marker - we will only clear this
550 * once we have successfully opened the port.
552 set_bit(TTY_IO_ERROR
, &port
->tty
->flags
);
554 /* Initialise and allocate the transmit buffer. */
555 page
= __get_free_page(GFP_KERNEL
);
558 port
->xmit
.buf
= (unsigned char *)page
;
559 circ_clear(&port
->xmit
);
561 ret
= sdio_uart_claim_func(port
);
564 ret
= sdio_enable_func(port
->func
);
567 ret
= sdio_claim_irq(port
->func
, sdio_uart_irq
);
572 * Clear the FIFO buffers and disable them.
573 * (they will be reenabled in sdio_change_speed())
575 sdio_out(port
, UART_FCR
, UART_FCR_ENABLE_FIFO
);
576 sdio_out(port
, UART_FCR
, UART_FCR_ENABLE_FIFO
|
577 UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
);
578 sdio_out(port
, UART_FCR
, 0);
581 * Clear the interrupt registers.
583 (void) sdio_in(port
, UART_LSR
);
584 (void) sdio_in(port
, UART_RX
);
585 (void) sdio_in(port
, UART_IIR
);
586 (void) sdio_in(port
, UART_MSR
);
589 * Now, initialize the UART
591 sdio_out(port
, UART_LCR
, UART_LCR_WLEN8
);
593 port
->ier
= UART_IER_RLSI
| UART_IER_RDI
| UART_IER_RTOIE
| UART_IER_UUE
;
594 port
->mctrl
= TIOCM_OUT2
;
596 sdio_uart_change_speed(port
, port
->tty
->termios
, NULL
);
598 if (port
->tty
->termios
->c_cflag
& CBAUD
)
599 sdio_uart_set_mctrl(port
, TIOCM_RTS
| TIOCM_DTR
);
601 if (port
->tty
->termios
->c_cflag
& CRTSCTS
)
602 if (!(sdio_uart_get_mctrl(port
) & TIOCM_CTS
))
603 port
->tty
->hw_stopped
= 1;
605 clear_bit(TTY_IO_ERROR
, &port
->tty
->flags
);
607 /* Kick the IRQ handler once while we're still holding the host lock */
608 sdio_uart_irq(port
->func
);
610 sdio_uart_release_func(port
);
614 sdio_disable_func(port
->func
);
616 sdio_uart_release_func(port
);
618 free_page((unsigned long)port
->xmit
.buf
);
622 static void sdio_uart_shutdown(struct sdio_uart_port
*port
)
626 ret
= sdio_uart_claim_func(port
);
630 sdio_uart_stop_rx(port
);
632 /* TODO: wait here for TX FIFO to drain */
634 /* Turn off DTR and RTS early. */
635 if (port
->tty
->termios
->c_cflag
& HUPCL
)
636 sdio_uart_clear_mctrl(port
, TIOCM_DTR
| TIOCM_RTS
);
638 /* Disable interrupts from this port */
639 sdio_release_irq(port
->func
);
641 sdio_out(port
, UART_IER
, 0);
643 sdio_uart_clear_mctrl(port
, TIOCM_OUT2
);
645 /* Disable break condition and FIFOs. */
646 port
->lcr
&= ~UART_LCR_SBC
;
647 sdio_out(port
, UART_LCR
, port
->lcr
);
648 sdio_out(port
, UART_FCR
, UART_FCR_ENABLE_FIFO
|
649 UART_FCR_CLEAR_RCVR
|
650 UART_FCR_CLEAR_XMIT
);
651 sdio_out(port
, UART_FCR
, 0);
653 sdio_disable_func(port
->func
);
655 sdio_uart_release_func(port
);
658 /* Free the transmit buffer page. */
659 free_page((unsigned long)port
->xmit
.buf
);
662 static int sdio_uart_open (struct tty_struct
*tty
, struct file
* filp
)
664 struct sdio_uart_port
*port
;
667 port
= sdio_uart_port_get(tty
->index
);
671 mutex_lock(&port
->open_lock
);
674 * Make sure not to mess up with a dead port
675 * which has not been closed yet.
677 if (tty
->driver_data
&& tty
->driver_data
!= port
) {
678 mutex_unlock(&port
->open_lock
);
679 sdio_uart_port_put(port
);
684 tty
->driver_data
= port
;
686 ret
= sdio_uart_startup(port
);
688 tty
->driver_data
= NULL
;
690 mutex_unlock(&port
->open_lock
);
691 sdio_uart_port_put(port
);
696 mutex_unlock(&port
->open_lock
);
700 static void sdio_uart_close(struct tty_struct
*tty
, struct file
* filp
)
702 struct sdio_uart_port
*port
= tty
->driver_data
;
707 mutex_lock(&port
->open_lock
);
708 BUG_ON(!port
->opened
);
711 * This is messy. The tty layer calls us even when open()
712 * returned an error. Ignore this close request if tty->count
713 * is larger than port->count.
715 if (tty
->count
> port
->opened
) {
716 mutex_unlock(&port
->open_lock
);
720 if (--port
->opened
== 0) {
722 sdio_uart_shutdown(port
);
723 tty_ldisc_flush(tty
);
725 tty
->driver_data
= NULL
;
728 mutex_unlock(&port
->open_lock
);
729 sdio_uart_port_put(port
);
732 static int sdio_uart_write(struct tty_struct
* tty
, const unsigned char *buf
,
735 struct sdio_uart_port
*port
= tty
->driver_data
;
736 struct circ_buf
*circ
= &port
->xmit
;
742 spin_lock(&port
->write_lock
);
744 c
= CIRC_SPACE_TO_END(circ
->head
, circ
->tail
, UART_XMIT_SIZE
);
749 memcpy(circ
->buf
+ circ
->head
, buf
, c
);
750 circ
->head
= (circ
->head
+ c
) & (UART_XMIT_SIZE
- 1);
755 spin_unlock(&port
->write_lock
);
757 if ( !(port
->ier
& UART_IER_THRI
)) {
758 int err
= sdio_uart_claim_func(port
);
760 sdio_uart_start_tx(port
);
761 sdio_uart_irq(port
->func
);
762 sdio_uart_release_func(port
);
770 static int sdio_uart_write_room(struct tty_struct
*tty
)
772 struct sdio_uart_port
*port
= tty
->driver_data
;
773 return port
? circ_chars_free(&port
->xmit
) : 0;
776 static int sdio_uart_chars_in_buffer(struct tty_struct
*tty
)
778 struct sdio_uart_port
*port
= tty
->driver_data
;
779 return port
? circ_chars_pending(&port
->xmit
) : 0;
782 static void sdio_uart_send_xchar(struct tty_struct
*tty
, char ch
)
784 struct sdio_uart_port
*port
= tty
->driver_data
;
787 if (ch
&& !(port
->ier
& UART_IER_THRI
)) {
788 if (sdio_uart_claim_func(port
) != 0)
790 sdio_uart_start_tx(port
);
791 sdio_uart_irq(port
->func
);
792 sdio_uart_release_func(port
);
796 static void sdio_uart_throttle(struct tty_struct
*tty
)
798 struct sdio_uart_port
*port
= tty
->driver_data
;
800 if (!I_IXOFF(tty
) && !(tty
->termios
->c_cflag
& CRTSCTS
))
803 if (sdio_uart_claim_func(port
) != 0)
807 port
->x_char
= STOP_CHAR(tty
);
808 sdio_uart_start_tx(port
);
811 if (tty
->termios
->c_cflag
& CRTSCTS
)
812 sdio_uart_clear_mctrl(port
, TIOCM_RTS
);
814 sdio_uart_irq(port
->func
);
815 sdio_uart_release_func(port
);
818 static void sdio_uart_unthrottle(struct tty_struct
*tty
)
820 struct sdio_uart_port
*port
= tty
->driver_data
;
822 if (!I_IXOFF(tty
) && !(tty
->termios
->c_cflag
& CRTSCTS
))
825 if (sdio_uart_claim_func(port
) != 0)
832 port
->x_char
= START_CHAR(tty
);
833 sdio_uart_start_tx(port
);
837 if (tty
->termios
->c_cflag
& CRTSCTS
)
838 sdio_uart_set_mctrl(port
, TIOCM_RTS
);
840 sdio_uart_irq(port
->func
);
841 sdio_uart_release_func(port
);
844 static void sdio_uart_set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
)
846 struct sdio_uart_port
*port
= tty
->driver_data
;
847 unsigned int cflag
= tty
->termios
->c_cflag
;
849 #define RELEVANT_IFLAG(iflag) ((iflag) & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
851 if ((cflag
^ old_termios
->c_cflag
) == 0 &&
852 RELEVANT_IFLAG(tty
->termios
->c_iflag
^ old_termios
->c_iflag
) == 0)
855 if (sdio_uart_claim_func(port
) != 0)
858 sdio_uart_change_speed(port
, tty
->termios
, old_termios
);
860 /* Handle transition to B0 status */
861 if ((old_termios
->c_cflag
& CBAUD
) && !(cflag
& CBAUD
))
862 sdio_uart_clear_mctrl(port
, TIOCM_RTS
| TIOCM_DTR
);
864 /* Handle transition away from B0 status */
865 if (!(old_termios
->c_cflag
& CBAUD
) && (cflag
& CBAUD
)) {
866 unsigned int mask
= TIOCM_DTR
;
867 if (!(cflag
& CRTSCTS
) || !test_bit(TTY_THROTTLED
, &tty
->flags
))
869 sdio_uart_set_mctrl(port
, mask
);
872 /* Handle turning off CRTSCTS */
873 if ((old_termios
->c_cflag
& CRTSCTS
) && !(cflag
& CRTSCTS
)) {
875 sdio_uart_start_tx(port
);
878 /* Handle turning on CRTSCTS */
879 if (!(old_termios
->c_cflag
& CRTSCTS
) && (cflag
& CRTSCTS
)) {
880 if (!(sdio_uart_get_mctrl(port
) & TIOCM_CTS
)) {
882 sdio_uart_stop_tx(port
);
886 sdio_uart_release_func(port
);
889 static int sdio_uart_break_ctl(struct tty_struct
*tty
, int break_state
)
891 struct sdio_uart_port
*port
= tty
->driver_data
;
894 result
= sdio_uart_claim_func(port
);
898 if (break_state
== -1)
899 port
->lcr
|= UART_LCR_SBC
;
901 port
->lcr
&= ~UART_LCR_SBC
;
902 sdio_out(port
, UART_LCR
, port
->lcr
);
904 sdio_uart_release_func(port
);
908 static int sdio_uart_tiocmget(struct tty_struct
*tty
, struct file
*file
)
910 struct sdio_uart_port
*port
= tty
->driver_data
;
913 result
= sdio_uart_claim_func(port
);
915 result
= port
->mctrl
| sdio_uart_get_mctrl(port
);
916 sdio_uart_release_func(port
);
922 static int sdio_uart_tiocmset(struct tty_struct
*tty
, struct file
*file
,
923 unsigned int set
, unsigned int clear
)
925 struct sdio_uart_port
*port
= tty
->driver_data
;
928 result
=sdio_uart_claim_func(port
);
930 sdio_uart_update_mctrl(port
, set
, clear
);
931 sdio_uart_release_func(port
);
937 static int sdio_uart_proc_show(struct seq_file
*m
, void *v
)
941 seq_printf(m
, "serinfo:1.0 driver%s%s revision:%s\n",
943 for (i
= 0; i
< UART_NR
; i
++) {
944 struct sdio_uart_port
*port
= sdio_uart_port_get(i
);
946 seq_printf(m
, "%d: uart:SDIO", i
);
947 if(capable(CAP_SYS_ADMIN
)) {
948 seq_printf(m
, " tx:%d rx:%d",
949 port
->icount
.tx
, port
->icount
.rx
);
950 if (port
->icount
.frame
)
951 seq_printf(m
, " fe:%d",
953 if (port
->icount
.parity
)
954 seq_printf(m
, " pe:%d",
955 port
->icount
.parity
);
956 if (port
->icount
.brk
)
957 seq_printf(m
, " brk:%d",
959 if (port
->icount
.overrun
)
960 seq_printf(m
, " oe:%d",
961 port
->icount
.overrun
);
962 if (port
->icount
.cts
)
963 seq_printf(m
, " cts:%d",
965 if (port
->icount
.dsr
)
966 seq_printf(m
, " dsr:%d",
968 if (port
->icount
.rng
)
969 seq_printf(m
, " rng:%d",
971 if (port
->icount
.dcd
)
972 seq_printf(m
, " dcd:%d",
975 sdio_uart_port_put(port
);
982 static int sdio_uart_proc_open(struct inode
*inode
, struct file
*file
)
984 return single_open(file
, sdio_uart_proc_show
, NULL
);
987 static const struct file_operations sdio_uart_proc_fops
= {
988 .owner
= THIS_MODULE
,
989 .open
= sdio_uart_proc_open
,
992 .release
= single_release
,
995 static const struct tty_operations sdio_uart_ops
= {
996 .open
= sdio_uart_open
,
997 .close
= sdio_uart_close
,
998 .write
= sdio_uart_write
,
999 .write_room
= sdio_uart_write_room
,
1000 .chars_in_buffer
= sdio_uart_chars_in_buffer
,
1001 .send_xchar
= sdio_uart_send_xchar
,
1002 .throttle
= sdio_uart_throttle
,
1003 .unthrottle
= sdio_uart_unthrottle
,
1004 .set_termios
= sdio_uart_set_termios
,
1005 .break_ctl
= sdio_uart_break_ctl
,
1006 .tiocmget
= sdio_uart_tiocmget
,
1007 .tiocmset
= sdio_uart_tiocmset
,
1008 .proc_fops
= &sdio_uart_proc_fops
,
1011 static struct tty_driver
*sdio_uart_tty_driver
;
1013 static int sdio_uart_probe(struct sdio_func
*func
,
1014 const struct sdio_device_id
*id
)
1016 struct sdio_uart_port
*port
;
1019 port
= kzalloc(sizeof(struct sdio_uart_port
), GFP_KERNEL
);
1023 if (func
->class == SDIO_CLASS_UART
) {
1024 printk(KERN_WARNING
"%s: need info on UART class basic setup\n",
1025 sdio_func_id(func
));
1028 } else if (func
->class == SDIO_CLASS_GPS
) {
1030 * We need tuple 0x91. It contains SUBTPL_SIOREG
1031 * and SUBTPL_RCVCAPS.
1033 struct sdio_func_tuple
*tpl
;
1034 for (tpl
= func
->tuples
; tpl
; tpl
= tpl
->next
) {
1035 if (tpl
->code
!= 0x91)
1039 if (tpl
->data
[1] == 0) /* SUBTPL_SIOREG */
1044 "%s: can't find tuple 0x91 subtuple 0 (SUBTPL_SIOREG) for GPS class\n",
1045 sdio_func_id(func
));
1049 printk(KERN_DEBUG
"%s: Register ID = 0x%02x, Exp ID = 0x%02x\n",
1050 sdio_func_id(func
), tpl
->data
[2], tpl
->data
[3]);
1051 port
->regs_offset
= (tpl
->data
[4] << 0) |
1052 (tpl
->data
[5] << 8) |
1053 (tpl
->data
[6] << 16);
1054 printk(KERN_DEBUG
"%s: regs offset = 0x%x\n",
1055 sdio_func_id(func
), port
->regs_offset
);
1056 port
->uartclk
= tpl
->data
[7] * 115200;
1057 if (port
->uartclk
== 0)
1058 port
->uartclk
= 115200;
1059 printk(KERN_DEBUG
"%s: clk %d baudcode %u 4800-div %u\n",
1060 sdio_func_id(func
), port
->uartclk
,
1061 tpl
->data
[7], tpl
->data
[8] | (tpl
->data
[9] << 8));
1068 sdio_set_drvdata(func
, port
);
1070 ret
= sdio_uart_add_port(port
);
1075 dev
= tty_register_device(sdio_uart_tty_driver
, port
->index
, &func
->dev
);
1077 sdio_uart_port_remove(port
);
1085 static void sdio_uart_remove(struct sdio_func
*func
)
1087 struct sdio_uart_port
*port
= sdio_get_drvdata(func
);
1089 tty_unregister_device(sdio_uart_tty_driver
, port
->index
);
1090 sdio_uart_port_remove(port
);
1093 static const struct sdio_device_id sdio_uart_ids
[] = {
1094 { SDIO_DEVICE_CLASS(SDIO_CLASS_UART
) },
1095 { SDIO_DEVICE_CLASS(SDIO_CLASS_GPS
) },
1096 { /* end: all zeroes */ },
1099 MODULE_DEVICE_TABLE(sdio
, sdio_uart_ids
);
1101 static struct sdio_driver sdio_uart_driver
= {
1102 .probe
= sdio_uart_probe
,
1103 .remove
= sdio_uart_remove
,
1104 .name
= "sdio_uart",
1105 .id_table
= sdio_uart_ids
,
1108 static int __init
sdio_uart_init(void)
1111 struct tty_driver
*tty_drv
;
1113 sdio_uart_tty_driver
= tty_drv
= alloc_tty_driver(UART_NR
);
1117 tty_drv
->owner
= THIS_MODULE
;
1118 tty_drv
->driver_name
= "sdio_uart";
1119 tty_drv
->name
= "ttySDIO";
1120 tty_drv
->major
= 0; /* dynamically allocated */
1121 tty_drv
->minor_start
= 0;
1122 tty_drv
->type
= TTY_DRIVER_TYPE_SERIAL
;
1123 tty_drv
->subtype
= SERIAL_TYPE_NORMAL
;
1124 tty_drv
->flags
= TTY_DRIVER_REAL_RAW
| TTY_DRIVER_DYNAMIC_DEV
;
1125 tty_drv
->init_termios
= tty_std_termios
;
1126 tty_drv
->init_termios
.c_cflag
= B4800
| CS8
| CREAD
| HUPCL
| CLOCAL
;
1127 tty_drv
->init_termios
.c_ispeed
= 4800;
1128 tty_drv
->init_termios
.c_ospeed
= 4800;
1129 tty_set_operations(tty_drv
, &sdio_uart_ops
);
1131 ret
= tty_register_driver(tty_drv
);
1135 ret
= sdio_register_driver(&sdio_uart_driver
);
1142 tty_unregister_driver(tty_drv
);
1144 put_tty_driver(tty_drv
);
1148 static void __exit
sdio_uart_exit(void)
1150 sdio_unregister_driver(&sdio_uart_driver
);
1151 tty_unregister_driver(sdio_uart_tty_driver
);
1152 put_tty_driver(sdio_uart_tty_driver
);
1155 module_init(sdio_uart_init
);
1156 module_exit(sdio_uart_exit
);
1158 MODULE_AUTHOR("Nicolas Pitre");
1159 MODULE_LICENSE("GPL");