2 * esp.c - driver for Hayes ESP serial cards
4 * --- Notices from serial.c, upon which this driver is based ---
6 * Copyright (C) 1991, 1992 Linus Torvalds
8 * Extensively rewritten by Theodore Ts'o, 8/16/92 -- 9/14/92. Now
9 * much more extensible to support other serial cards based on the
10 * 16450/16550A UART's. Added support for the AST FourPort and the
13 * set_serial_info fixed to set the flags, custom divisor, and uart
14 * type fields. Fix suggested by Michael K. Johnson 12/12/92.
16 * 11/95: TIOCMIWAIT, TIOCGICOUNT by Angelo Haritsis <ah@doc.ic.ac.uk>
18 * 03/96: Modularised by Angelo Haritsis <ah@doc.ic.ac.uk>
20 * rs_set_termios fixed to look also for changes of the input
21 * flags INPCK, BRKINT, PARMRK, IGNPAR and IGNBRK.
22 * Bernd Anhäupl 05/17/96.
24 * --- End of notices from serial.c ---
26 * Support for the ESP serial card by Andrew J. Robinson
27 * <arobinso@nyx.net> (Card detection routine taken from a patch
28 * by Dennis J. Boylan). Patches to allow use with 2.1.x contributed
31 * Most recent changes: (Andrew J. Robinson)
32 * Support for PIO mode. This allows the driver to work properly with
35 * Arnaldo Carvalho de Melo <acme@conectiva.com.br> -
36 * several cleanups, use module_init/module_exit, etc
38 * This module exports the following rs232 io functions:
40 * int espserial_init(void);
43 #include <linux/module.h>
44 #include <linux/errno.h>
45 #include <linux/signal.h>
46 #include <linux/sched.h>
47 #include <linux/interrupt.h>
48 #include <linux/tty.h>
49 #include <linux/tty_flip.h>
50 #include <linux/serial.h>
51 #include <linux/serialP.h>
52 #include <linux/serial_reg.h>
53 #include <linux/major.h>
54 #include <linux/string.h>
55 #include <linux/fcntl.h>
56 #include <linux/ptrace.h>
57 #include <linux/ioport.h>
59 #include <linux/init.h>
60 #include <linux/delay.h>
61 #include <linux/bitops.h>
63 #include <asm/system.h>
67 #include <linux/slab.h>
68 #include <linux/uaccess.h>
70 #include <linux/hayesesp.h>
72 #define NR_PORTS 64 /* maximum number of ports */
73 #define NR_PRIMARY 8 /* maximum number of primary ports */
74 #define REGION_SIZE 8 /* size of io region to request */
76 /* The following variables can be set by giving module options */
77 static int irq
[NR_PRIMARY
]; /* IRQ for each base port */
78 static unsigned int divisor
[NR_PRIMARY
]; /* custom divisor for each port */
79 static unsigned int dma
= ESP_DMA_CHANNEL
; /* DMA channel */
80 static unsigned int rx_trigger
= ESP_RX_TRIGGER
;
81 static unsigned int tx_trigger
= ESP_TX_TRIGGER
;
82 static unsigned int flow_off
= ESP_FLOW_OFF
;
83 static unsigned int flow_on
= ESP_FLOW_ON
;
84 static unsigned int rx_timeout
= ESP_RX_TMOUT
;
85 static unsigned int pio_threshold
= ESP_PIO_THRESHOLD
;
87 MODULE_LICENSE("GPL");
89 module_param_array(irq
, int, NULL
, 0);
90 module_param_array(divisor
, uint
, NULL
, 0);
91 module_param(dma
, uint
, 0);
92 module_param(rx_trigger
, uint
, 0);
93 module_param(tx_trigger
, uint
, 0);
94 module_param(flow_off
, uint
, 0);
95 module_param(flow_on
, uint
, 0);
96 module_param(rx_timeout
, uint
, 0);
97 module_param(pio_threshold
, uint
, 0);
101 static char *dma_buffer
;
102 static int dma_bytes
;
103 static struct esp_pio_buffer
*free_pio_buf
;
105 #define DMA_BUFFER_SZ 1024
107 #define WAKEUP_CHARS 1024
109 static char serial_name
[] __initdata
= "ESP serial driver";
110 static char serial_version
[] __initdata
= "2.2";
112 static struct tty_driver
*esp_driver
;
115 * Serial driver configuration section. Here are the various options:
117 * SERIAL_PARANOIA_CHECK
118 * Check the magic number for the esp_structure where
122 #undef SERIAL_PARANOIA_CHECK
123 #define SERIAL_DO_RESTART
125 #undef SERIAL_DEBUG_INTR
126 #undef SERIAL_DEBUG_OPEN
127 #undef SERIAL_DEBUG_FLOW
129 #if defined(MODULE) && defined(SERIAL_DEBUG_MCOUNT)
130 #define DBG_CNT(s) printk(KERN_DEBUG "(%s): [%x] refc=%d, serc=%d, ttyc=%d -> %s\n", \
131 tty->name, info->port.flags, \
132 serial_driver.refcount, \
133 info->port.count, tty->count, s)
138 static struct esp_struct
*ports
;
140 static void change_speed(struct esp_struct
*info
);
141 static void rs_wait_until_sent(struct tty_struct
*, int);
144 * The ESP card has a clock rate of 14.7456 MHz (that is, 2**ESPC_SCALE
145 * times the normal 1.8432 Mhz clock of most serial boards).
147 #define BASE_BAUD ((1843200 / 16) * (1 << ESPC_SCALE))
149 /* Standard COM flags (except for COM4, because of the 8514 problem) */
150 #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST)
152 static inline int serial_paranoia_check(struct esp_struct
*info
,
153 char *name
, const char *routine
)
155 #ifdef SERIAL_PARANOIA_CHECK
156 static const char badmagic
[] = KERN_WARNING
157 "Warning: bad magic number for serial struct (%s) in %s\n";
158 static const char badinfo
[] = KERN_WARNING
159 "Warning: null esp_struct for (%s) in %s\n";
162 printk(badinfo
, name
, routine
);
165 if (info
->magic
!= ESP_MAGIC
) {
166 printk(badmagic
, name
, routine
);
173 static inline unsigned int serial_in(struct esp_struct
*info
, int offset
)
175 return inb(info
->io_port
+ offset
);
178 static inline void serial_out(struct esp_struct
*info
, int offset
,
181 outb(value
, info
->io_port
+offset
);
185 * ------------------------------------------------------------
186 * rs_stop() and rs_start()
188 * This routines are called before setting or resetting tty->stopped.
189 * They enable or disable transmitter interrupts, as necessary.
190 * ------------------------------------------------------------
192 static void rs_stop(struct tty_struct
*tty
)
194 struct esp_struct
*info
= tty
->driver_data
;
197 if (serial_paranoia_check(info
, tty
->name
, "rs_stop"))
200 spin_lock_irqsave(&info
->lock
, flags
);
201 if (info
->IER
& UART_IER_THRI
) {
202 info
->IER
&= ~UART_IER_THRI
;
203 serial_out(info
, UART_ESI_CMD1
, ESI_SET_SRV_MASK
);
204 serial_out(info
, UART_ESI_CMD2
, info
->IER
);
206 spin_unlock_irqrestore(&info
->lock
, flags
);
209 static void rs_start(struct tty_struct
*tty
)
211 struct esp_struct
*info
= tty
->driver_data
;
214 if (serial_paranoia_check(info
, tty
->name
, "rs_start"))
217 spin_lock_irqsave(&info
->lock
, flags
);
218 if (info
->xmit_cnt
&& info
->xmit_buf
&& !(info
->IER
& UART_IER_THRI
)) {
219 info
->IER
|= UART_IER_THRI
;
220 serial_out(info
, UART_ESI_CMD1
, ESI_SET_SRV_MASK
);
221 serial_out(info
, UART_ESI_CMD2
, info
->IER
);
223 spin_unlock_irqrestore(&info
->lock
, flags
);
227 * ----------------------------------------------------------------------
229 * Here starts the interrupt handling routines. All of the following
230 * subroutines are declared as inline and are folded into
231 * rs_interrupt(). They were separated out for readability's sake.
233 * Note: rs_interrupt() is a "fast" interrupt, which means that it
234 * runs with interrupts turned off. People who may want to modify
235 * rs_interrupt() should try to keep the interrupt handler as fast as
236 * possible. After you are done making modifications, it is not a bad
239 * gcc -S -DKERNEL -Wall -Wstrict-prototypes -O6 -fomit-frame-pointer serial.c
241 * and look at the resulting assemble code in serial.s.
243 * - Ted Ts'o (tytso@mit.edu), 7-Mar-93
244 * -----------------------------------------------------------------------
247 static DEFINE_SPINLOCK(pio_lock
);
249 static inline struct esp_pio_buffer
*get_pio_buffer(void)
251 struct esp_pio_buffer
*buf
;
254 spin_lock_irqsave(&pio_lock
, flags
);
257 free_pio_buf
= buf
->next
;
259 buf
= kmalloc(sizeof(struct esp_pio_buffer
), GFP_ATOMIC
);
261 spin_unlock_irqrestore(&pio_lock
, flags
);
265 static inline void release_pio_buffer(struct esp_pio_buffer
*buf
)
268 spin_lock_irqsave(&pio_lock
, flags
);
269 buf
->next
= free_pio_buf
;
271 spin_unlock_irqrestore(&pio_lock
, flags
);
274 static inline void receive_chars_pio(struct esp_struct
*info
, int num_bytes
)
276 struct tty_struct
*tty
= info
->port
.tty
;
278 struct esp_pio_buffer
*pio_buf
;
279 struct esp_pio_buffer
*err_buf
;
280 unsigned char status_mask
;
282 pio_buf
= get_pio_buffer();
287 err_buf
= get_pio_buffer();
290 release_pio_buffer(pio_buf
);
294 status_mask
= (info
->read_status_mask
>> 2) & 0x07;
296 for (i
= 0; i
< num_bytes
- 1; i
+= 2) {
297 *((unsigned short *)(pio_buf
->data
+ i
)) =
298 inw(info
->io_port
+ UART_ESI_RX
);
299 err_buf
->data
[i
] = serial_in(info
, UART_ESI_RWS
);
300 err_buf
->data
[i
+ 1] = (err_buf
->data
[i
] >> 3) & status_mask
;
301 err_buf
->data
[i
] &= status_mask
;
304 if (num_bytes
& 0x0001) {
305 pio_buf
->data
[num_bytes
- 1] = serial_in(info
, UART_ESI_RX
);
306 err_buf
->data
[num_bytes
- 1] =
307 (serial_in(info
, UART_ESI_RWS
) >> 3) & status_mask
;
310 /* make sure everything is still ok since interrupts were enabled */
311 tty
= info
->port
.tty
;
314 release_pio_buffer(pio_buf
);
315 release_pio_buffer(err_buf
);
316 info
->stat_flags
&= ~ESP_STAT_RX_TIMEOUT
;
320 status_mask
= (info
->ignore_status_mask
>> 2) & 0x07;
322 for (i
= 0; i
< num_bytes
; i
++) {
323 if (!(err_buf
->data
[i
] & status_mask
)) {
326 if (err_buf
->data
[i
] & 0x04) {
328 if (info
->port
.flags
& ASYNC_SAK
)
330 } else if (err_buf
->data
[i
] & 0x02)
332 else if (err_buf
->data
[i
] & 0x01)
334 tty_insert_flip_char(tty
, pio_buf
->data
[i
], flag
);
338 tty_schedule_flip(tty
);
340 info
->stat_flags
&= ~ESP_STAT_RX_TIMEOUT
;
341 release_pio_buffer(pio_buf
);
342 release_pio_buffer(err_buf
);
345 static void program_isa_dma(int dma
, int dir
, unsigned long addr
, int len
)
349 flags
= claim_dma_lock();
352 set_dma_mode(dma
, dir
);
353 set_dma_addr(dma
, addr
);
354 set_dma_count(dma
, len
);
356 release_dma_lock(flags
);
359 static void receive_chars_dma(struct esp_struct
*info
, int num_bytes
)
361 info
->stat_flags
&= ~ESP_STAT_RX_TIMEOUT
;
362 dma_bytes
= num_bytes
;
363 info
->stat_flags
|= ESP_STAT_DMA_RX
;
365 program_isa_dma(dma
, DMA_MODE_READ
, isa_virt_to_bus(dma_buffer
),
367 serial_out(info
, UART_ESI_CMD1
, ESI_START_DMA_RX
);
370 static inline void receive_chars_dma_done(struct esp_struct
*info
,
373 struct tty_struct
*tty
= info
->port
.tty
;
377 flags
= claim_dma_lock();
381 info
->stat_flags
&= ~ESP_STAT_DMA_RX
;
382 num_bytes
= dma_bytes
- get_dma_residue(dma
);
383 release_dma_lock(flags
);
385 info
->icount
.rx
+= num_bytes
;
388 tty_insert_flip_string(tty
, dma_buffer
, num_bytes
- 1);
390 status
&= (0x1c & info
->read_status_mask
);
392 /* Is the status significant or do we throw the last byte ? */
393 if (!(status
& info
->ignore_status_mask
)) {
397 statflag
= TTY_BREAK
;
398 (info
->icount
.brk
)++;
399 if (info
->port
.flags
& ASYNC_SAK
)
401 } else if (status
& 0x08) {
402 statflag
= TTY_FRAME
;
403 info
->icount
.frame
++;
404 } else if (status
& 0x04) {
405 statflag
= TTY_PARITY
;
406 info
->icount
.parity
++;
408 tty_insert_flip_char(tty
, dma_buffer
[num_bytes
- 1],
411 tty_schedule_flip(tty
);
414 if (dma_bytes
!= num_bytes
) {
415 num_bytes
= dma_bytes
- num_bytes
;
417 receive_chars_dma(info
, num_bytes
);
422 /* Caller must hold info->lock */
424 static inline void transmit_chars_pio(struct esp_struct
*info
,
428 struct esp_pio_buffer
*pio_buf
;
430 pio_buf
= get_pio_buffer();
435 while (space_avail
&& info
->xmit_cnt
) {
436 if (info
->xmit_tail
+ space_avail
<= ESP_XMIT_SIZE
) {
437 memcpy(pio_buf
->data
,
438 &(info
->xmit_buf
[info
->xmit_tail
]),
441 i
= ESP_XMIT_SIZE
- info
->xmit_tail
;
442 memcpy(pio_buf
->data
,
443 &(info
->xmit_buf
[info
->xmit_tail
]), i
);
444 memcpy(&(pio_buf
->data
[i
]), info
->xmit_buf
,
448 info
->xmit_cnt
-= space_avail
;
449 info
->xmit_tail
= (info
->xmit_tail
+ space_avail
) &
452 for (i
= 0; i
< space_avail
- 1; i
+= 2) {
453 outw(*((unsigned short *)(pio_buf
->data
+ i
)),
454 info
->io_port
+ UART_ESI_TX
);
457 if (space_avail
& 0x0001)
458 serial_out(info
, UART_ESI_TX
,
459 pio_buf
->data
[space_avail
- 1]);
461 if (info
->xmit_cnt
) {
462 serial_out(info
, UART_ESI_CMD1
, ESI_NO_COMMAND
);
463 serial_out(info
, UART_ESI_CMD1
, ESI_GET_TX_AVAIL
);
464 space_avail
= serial_in(info
, UART_ESI_STAT1
) << 8;
465 space_avail
|= serial_in(info
, UART_ESI_STAT2
);
467 if (space_avail
> info
->xmit_cnt
)
468 space_avail
= info
->xmit_cnt
;
472 if (info
->xmit_cnt
< WAKEUP_CHARS
) {
474 tty_wakeup(info
->port
.tty
);
476 #ifdef SERIAL_DEBUG_INTR
480 if (info
->xmit_cnt
<= 0) {
481 info
->IER
&= ~UART_IER_THRI
;
482 serial_out(info
, UART_ESI_CMD1
,
484 serial_out(info
, UART_ESI_CMD2
, info
->IER
);
488 release_pio_buffer(pio_buf
);
491 /* Caller must hold info->lock */
492 static inline void transmit_chars_dma(struct esp_struct
*info
, int num_bytes
)
494 dma_bytes
= num_bytes
;
496 if (info
->xmit_tail
+ dma_bytes
<= ESP_XMIT_SIZE
) {
497 memcpy(dma_buffer
, &(info
->xmit_buf
[info
->xmit_tail
]),
500 int i
= ESP_XMIT_SIZE
- info
->xmit_tail
;
501 memcpy(dma_buffer
, &(info
->xmit_buf
[info
->xmit_tail
]),
503 memcpy(&(dma_buffer
[i
]), info
->xmit_buf
, dma_bytes
- i
);
506 info
->xmit_cnt
-= dma_bytes
;
507 info
->xmit_tail
= (info
->xmit_tail
+ dma_bytes
) & (ESP_XMIT_SIZE
- 1);
509 if (info
->xmit_cnt
< WAKEUP_CHARS
) {
511 tty_wakeup(info
->port
.tty
);
513 #ifdef SERIAL_DEBUG_INTR
517 if (info
->xmit_cnt
<= 0) {
518 info
->IER
&= ~UART_IER_THRI
;
519 serial_out(info
, UART_ESI_CMD1
, ESI_SET_SRV_MASK
);
520 serial_out(info
, UART_ESI_CMD2
, info
->IER
);
524 info
->stat_flags
|= ESP_STAT_DMA_TX
;
526 program_isa_dma(dma
, DMA_MODE_WRITE
, isa_virt_to_bus(dma_buffer
),
528 serial_out(info
, UART_ESI_CMD1
, ESI_START_DMA_TX
);
531 static inline void transmit_chars_dma_done(struct esp_struct
*info
)
536 flags
= claim_dma_lock();
540 num_bytes
= dma_bytes
- get_dma_residue(dma
);
541 info
->icount
.tx
+= dma_bytes
;
542 release_dma_lock(flags
);
544 if (dma_bytes
!= num_bytes
) {
545 dma_bytes
-= num_bytes
;
546 memmove(dma_buffer
, dma_buffer
+ num_bytes
, dma_bytes
);
548 program_isa_dma(dma
, DMA_MODE_WRITE
,
549 isa_virt_to_bus(dma_buffer
), dma_bytes
);
551 serial_out(info
, UART_ESI_CMD1
, ESI_START_DMA_TX
);
554 info
->stat_flags
&= ~ESP_STAT_DMA_TX
;
558 static void check_modem_status(struct esp_struct
*info
)
562 serial_out(info
, UART_ESI_CMD1
, ESI_GET_UART_STAT
);
563 status
= serial_in(info
, UART_ESI_STAT2
);
565 if (status
& UART_MSR_ANY_DELTA
) {
566 /* update input line counters */
567 if (status
& UART_MSR_TERI
)
569 if (status
& UART_MSR_DDSR
)
571 if (status
& UART_MSR_DDCD
)
573 if (status
& UART_MSR_DCTS
)
575 wake_up_interruptible(&info
->delta_msr_wait
);
578 if ((info
->port
.flags
& ASYNC_CHECK_CD
) && (status
& UART_MSR_DDCD
)) {
579 #if (defined(SERIAL_DEBUG_OPEN) || defined(SERIAL_DEBUG_INTR))
580 printk("ttys%d CD now %s...", info
->line
,
581 (status
& UART_MSR_DCD
) ? "on" : "off");
583 if (status
& UART_MSR_DCD
)
584 wake_up_interruptible(&info
->port
.open_wait
);
586 #ifdef SERIAL_DEBUG_OPEN
587 printk("scheduling hangup...");
589 tty_hangup(info
->port
.tty
);
595 * This is the serial driver's interrupt routine
597 static irqreturn_t
rs_interrupt_single(int irq
, void *dev_id
)
599 struct esp_struct
*info
;
601 unsigned int scratch
;
603 #ifdef SERIAL_DEBUG_INTR
604 printk("rs_interrupt_single(%d)...", irq
);
606 info
= (struct esp_struct
*)dev_id
;
608 scratch
= serial_in(info
, UART_ESI_SID
);
610 spin_lock(&info
->lock
);
612 if (!info
->port
.tty
) {
613 spin_unlock(&info
->lock
);
617 if (scratch
& 0x04) { /* error */
618 serial_out(info
, UART_ESI_CMD1
, ESI_GET_ERR_STAT
);
619 err_status
= serial_in(info
, UART_ESI_STAT1
);
620 serial_in(info
, UART_ESI_STAT2
);
622 if (err_status
& 0x01)
623 info
->stat_flags
|= ESP_STAT_RX_TIMEOUT
;
625 if (err_status
& 0x20) /* UART status */
626 check_modem_status(info
);
628 if (err_status
& 0x80) /* Start break */
629 wake_up_interruptible(&info
->break_wait
);
632 if ((scratch
& 0x88) || /* DMA completed or timed out */
633 (err_status
& 0x1c) /* receive error */) {
634 if (info
->stat_flags
& ESP_STAT_DMA_RX
)
635 receive_chars_dma_done(info
, err_status
);
636 else if (info
->stat_flags
& ESP_STAT_DMA_TX
)
637 transmit_chars_dma_done(info
);
640 if (!(info
->stat_flags
& (ESP_STAT_DMA_RX
| ESP_STAT_DMA_TX
)) &&
641 ((scratch
& 0x01) || (info
->stat_flags
& ESP_STAT_RX_TIMEOUT
)) &&
642 (info
->IER
& UART_IER_RDI
)) {
645 serial_out(info
, UART_ESI_CMD1
, ESI_NO_COMMAND
);
646 serial_out(info
, UART_ESI_CMD1
, ESI_GET_RX_AVAIL
);
647 num_bytes
= serial_in(info
, UART_ESI_STAT1
) << 8;
648 num_bytes
|= serial_in(info
, UART_ESI_STAT2
);
650 num_bytes
= tty_buffer_request_room(info
->port
.tty
, num_bytes
);
654 (info
->stat_flags
& ESP_STAT_USE_PIO
) ||
655 (num_bytes
<= info
->config
.pio_threshold
))
656 receive_chars_pio(info
, num_bytes
);
658 receive_chars_dma(info
, num_bytes
);
662 if (!(info
->stat_flags
& (ESP_STAT_DMA_RX
| ESP_STAT_DMA_TX
)) &&
663 (scratch
& 0x02) && (info
->IER
& UART_IER_THRI
)) {
664 if ((info
->xmit_cnt
<= 0) || info
->port
.tty
->stopped
) {
665 info
->IER
&= ~UART_IER_THRI
;
666 serial_out(info
, UART_ESI_CMD1
, ESI_SET_SRV_MASK
);
667 serial_out(info
, UART_ESI_CMD2
, info
->IER
);
671 serial_out(info
, UART_ESI_CMD1
, ESI_NO_COMMAND
);
672 serial_out(info
, UART_ESI_CMD1
, ESI_GET_TX_AVAIL
);
673 num_bytes
= serial_in(info
, UART_ESI_STAT1
) << 8;
674 num_bytes
|= serial_in(info
, UART_ESI_STAT2
);
676 if (num_bytes
> info
->xmit_cnt
)
677 num_bytes
= info
->xmit_cnt
;
681 (info
->stat_flags
& ESP_STAT_USE_PIO
) ||
682 (num_bytes
<= info
->config
.pio_threshold
))
683 transmit_chars_pio(info
, num_bytes
);
685 transmit_chars_dma(info
, num_bytes
);
690 info
->last_active
= jiffies
;
692 #ifdef SERIAL_DEBUG_INTR
695 spin_unlock(&info
->lock
);
700 * -------------------------------------------------------------------
701 * Here ends the serial interrupt routines.
702 * -------------------------------------------------------------------
706 * ---------------------------------------------------------------
707 * Low level utility subroutines for the serial driver: routines to
708 * figure out the appropriate timeout for an interrupt chain, routines
709 * to initialize and startup a serial port, and routines to shutdown a
710 * serial port. Useful stuff like that.
712 * Caller should hold lock
713 * ---------------------------------------------------------------
716 static void esp_basic_init(struct esp_struct
*info
)
718 /* put ESPC in enhanced mode */
719 serial_out(info
, UART_ESI_CMD1
, ESI_SET_MODE
);
721 if (info
->stat_flags
& ESP_STAT_NEVER_DMA
)
722 serial_out(info
, UART_ESI_CMD2
, 0x01);
724 serial_out(info
, UART_ESI_CMD2
, 0x31);
726 /* disable interrupts for now */
727 serial_out(info
, UART_ESI_CMD1
, ESI_SET_SRV_MASK
);
728 serial_out(info
, UART_ESI_CMD2
, 0x00);
730 /* set interrupt and DMA channel */
731 serial_out(info
, UART_ESI_CMD1
, ESI_SET_IRQ
);
733 if (info
->stat_flags
& ESP_STAT_NEVER_DMA
)
734 serial_out(info
, UART_ESI_CMD2
, 0x01);
736 serial_out(info
, UART_ESI_CMD2
, (dma
<< 4) | 0x01);
738 serial_out(info
, UART_ESI_CMD1
, ESI_SET_ENH_IRQ
);
740 if (info
->line
% 8) /* secondary port */
741 serial_out(info
, UART_ESI_CMD2
, 0x0d); /* shared */
742 else if (info
->irq
== 9)
743 serial_out(info
, UART_ESI_CMD2
, 0x02);
745 serial_out(info
, UART_ESI_CMD2
, info
->irq
);
747 /* set error status mask (check this) */
748 serial_out(info
, UART_ESI_CMD1
, ESI_SET_ERR_MASK
);
750 if (info
->stat_flags
& ESP_STAT_NEVER_DMA
)
751 serial_out(info
, UART_ESI_CMD2
, 0xa1);
753 serial_out(info
, UART_ESI_CMD2
, 0xbd);
755 serial_out(info
, UART_ESI_CMD2
, 0x00);
757 /* set DMA timeout */
758 serial_out(info
, UART_ESI_CMD1
, ESI_SET_DMA_TMOUT
);
759 serial_out(info
, UART_ESI_CMD2
, 0xff);
761 /* set FIFO trigger levels */
762 serial_out(info
, UART_ESI_CMD1
, ESI_SET_TRIGGER
);
763 serial_out(info
, UART_ESI_CMD2
, info
->config
.rx_trigger
>> 8);
764 serial_out(info
, UART_ESI_CMD2
, info
->config
.rx_trigger
);
765 serial_out(info
, UART_ESI_CMD2
, info
->config
.tx_trigger
>> 8);
766 serial_out(info
, UART_ESI_CMD2
, info
->config
.tx_trigger
);
768 /* Set clock scaling and wait states */
769 serial_out(info
, UART_ESI_CMD1
, ESI_SET_PRESCALAR
);
770 serial_out(info
, UART_ESI_CMD2
, 0x04 | ESPC_SCALE
);
772 /* set reinterrupt pacing */
773 serial_out(info
, UART_ESI_CMD1
, ESI_SET_REINTR
);
774 serial_out(info
, UART_ESI_CMD2
, 0xff);
777 static int startup(struct esp_struct
*info
)
781 unsigned int num_chars
;
783 spin_lock_irqsave(&info
->lock
, flags
);
785 if (info
->port
.flags
& ASYNC_INITIALIZED
)
788 if (!info
->xmit_buf
) {
789 info
->xmit_buf
= (unsigned char *)get_zeroed_page(GFP_ATOMIC
);
795 #ifdef SERIAL_DEBUG_OPEN
796 printk(KERN_DEBUG
"starting up ttys%d (irq %d)...",
797 info
->line
, info
->irq
);
800 /* Flush the RX buffer. Using the ESI flush command may cause */
801 /* wild interrupts, so read all the data instead. */
803 serial_out(info
, UART_ESI_CMD1
, ESI_NO_COMMAND
);
804 serial_out(info
, UART_ESI_CMD1
, ESI_GET_RX_AVAIL
);
805 num_chars
= serial_in(info
, UART_ESI_STAT1
) << 8;
806 num_chars
|= serial_in(info
, UART_ESI_STAT2
);
808 while (num_chars
> 1) {
809 inw(info
->io_port
+ UART_ESI_RX
);
814 serial_in(info
, UART_ESI_RX
);
816 /* set receive character timeout */
817 serial_out(info
, UART_ESI_CMD1
, ESI_SET_RX_TIMEOUT
);
818 serial_out(info
, UART_ESI_CMD2
, info
->config
.rx_timeout
);
820 /* clear all flags except the "never DMA" flag */
821 info
->stat_flags
&= ESP_STAT_NEVER_DMA
;
823 if (info
->stat_flags
& ESP_STAT_NEVER_DMA
)
824 info
->stat_flags
|= ESP_STAT_USE_PIO
;
826 spin_unlock_irqrestore(&info
->lock
, flags
);
832 retval
= request_irq(info
->irq
, rs_interrupt_single
, IRQF_SHARED
,
836 if (capable(CAP_SYS_ADMIN
)) {
838 set_bit(TTY_IO_ERROR
,
839 &info
->port
.tty
->flags
);
845 if (!(info
->stat_flags
& ESP_STAT_USE_PIO
) && !dma_buffer
) {
846 dma_buffer
= (char *)__get_dma_pages(
847 GFP_KERNEL
, get_order(DMA_BUFFER_SZ
));
849 /* use PIO mode if DMA buf/chan cannot be allocated */
851 info
->stat_flags
|= ESP_STAT_USE_PIO
;
852 else if (request_dma(dma
, "esp serial")) {
853 free_pages((unsigned long)dma_buffer
,
854 get_order(DMA_BUFFER_SZ
));
856 info
->stat_flags
|= ESP_STAT_USE_PIO
;
861 info
->MCR
= UART_MCR_DTR
| UART_MCR_RTS
| UART_MCR_OUT2
;
863 spin_lock_irqsave(&info
->lock
, flags
);
864 serial_out(info
, UART_ESI_CMD1
, ESI_WRITE_UART
);
865 serial_out(info
, UART_ESI_CMD2
, UART_MCR
);
866 serial_out(info
, UART_ESI_CMD2
, info
->MCR
);
869 * Finally, enable interrupts
871 /* info->IER = UART_IER_MSI | UART_IER_RLSI | UART_IER_RDI; */
872 info
->IER
= UART_IER_RLSI
| UART_IER_RDI
| UART_IER_DMA_TMOUT
|
874 serial_out(info
, UART_ESI_CMD1
, ESI_SET_SRV_MASK
);
875 serial_out(info
, UART_ESI_CMD2
, info
->IER
);
878 clear_bit(TTY_IO_ERROR
, &info
->port
.tty
->flags
);
879 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
880 spin_unlock_irqrestore(&info
->lock
, flags
);
883 * Set up the tty->alt_speed kludge
885 if (info
->port
.tty
) {
886 if ((info
->port
.flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_HI
)
887 info
->port
.tty
->alt_speed
= 57600;
888 if ((info
->port
.flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_VHI
)
889 info
->port
.tty
->alt_speed
= 115200;
890 if ((info
->port
.flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_SHI
)
891 info
->port
.tty
->alt_speed
= 230400;
892 if ((info
->port
.flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_WARP
)
893 info
->port
.tty
->alt_speed
= 460800;
897 * set the speed of the serial port
900 info
->port
.flags
|= ASYNC_INITIALIZED
;
904 spin_unlock_irqrestore(&info
->lock
, flags
);
910 * This routine will shutdown a serial port; interrupts are disabled, and
911 * DTR is dropped if the hangup on close termio flag is on.
913 static void shutdown(struct esp_struct
*info
)
915 unsigned long flags
, f
;
917 if (!(info
->port
.flags
& ASYNC_INITIALIZED
))
920 #ifdef SERIAL_DEBUG_OPEN
921 printk("Shutting down serial port %d (irq %d)....", info
->line
,
925 spin_lock_irqsave(&info
->lock
, flags
);
927 * clear delta_msr_wait queue to avoid mem leaks: we may free the irq
928 * here so the queue might never be waken up
930 wake_up_interruptible(&info
->delta_msr_wait
);
931 wake_up_interruptible(&info
->break_wait
);
933 /* stop a DMA transfer on the port being closed */
934 /* DMA lock is higher priority always */
935 if (info
->stat_flags
& (ESP_STAT_DMA_RX
| ESP_STAT_DMA_TX
)) {
936 f
= claim_dma_lock();
947 free_irq(info
->irq
, info
);
950 struct esp_struct
*current_port
= ports
;
952 while (current_port
) {
953 if ((current_port
!= info
) &&
954 (current_port
->port
.flags
& ASYNC_INITIALIZED
))
957 current_port
= current_port
->next_port
;
962 free_pages((unsigned long)dma_buffer
,
963 get_order(DMA_BUFFER_SZ
));
968 if (info
->xmit_buf
) {
969 free_page((unsigned long) info
->xmit_buf
);
970 info
->xmit_buf
= NULL
;
974 serial_out(info
, UART_ESI_CMD1
, ESI_SET_SRV_MASK
);
975 serial_out(info
, UART_ESI_CMD2
, 0x00);
977 if (!info
->port
.tty
|| (info
->port
.tty
->termios
->c_cflag
& HUPCL
))
978 info
->MCR
&= ~(UART_MCR_DTR
|UART_MCR_RTS
);
980 info
->MCR
&= ~UART_MCR_OUT2
;
981 serial_out(info
, UART_ESI_CMD1
, ESI_WRITE_UART
);
982 serial_out(info
, UART_ESI_CMD2
, UART_MCR
);
983 serial_out(info
, UART_ESI_CMD2
, info
->MCR
);
986 set_bit(TTY_IO_ERROR
, &info
->port
.tty
->flags
);
988 info
->port
.flags
&= ~ASYNC_INITIALIZED
;
989 spin_unlock_irqrestore(&info
->lock
, flags
);
993 * This routine is called to set the UART divisor registers to match
994 * the specified baud rate for a serial port.
996 static void change_speed(struct esp_struct
*info
)
1000 unsigned cflag
, cval
;
1002 unsigned char flow1
= 0, flow2
= 0;
1003 unsigned long flags
;
1005 if (!info
->port
.tty
|| !info
->port
.tty
->termios
)
1007 cflag
= info
->port
.tty
->termios
->c_cflag
;
1008 port
= info
->io_port
;
1010 /* byte size and parity */
1011 switch (cflag
& CSIZE
) {
1012 case CS5
: cval
= 0x00; bits
= 7; break;
1013 case CS6
: cval
= 0x01; bits
= 8; break;
1014 case CS7
: cval
= 0x02; bits
= 9; break;
1015 case CS8
: cval
= 0x03; bits
= 10; break;
1016 default: cval
= 0x00; bits
= 7; break;
1018 if (cflag
& CSTOPB
) {
1022 if (cflag
& PARENB
) {
1023 cval
|= UART_LCR_PARITY
;
1026 if (!(cflag
& PARODD
))
1027 cval
|= UART_LCR_EPAR
;
1030 cval
|= UART_LCR_SPAR
;
1032 baud
= tty_get_baud_rate(info
->port
.tty
);
1033 if (baud
== 38400 &&
1034 ((info
->port
.flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_CUST
))
1035 quot
= info
->custom_divisor
;
1037 if (baud
== 134) /* Special case since 134 is really 134.5 */
1038 quot
= (2*BASE_BAUD
/ 269);
1040 quot
= BASE_BAUD
/ baud
;
1042 /* If the quotient is ever zero, default to 9600 bps */
1044 quot
= BASE_BAUD
/ 9600;
1048 baud
= BASE_BAUD
/quot
;
1049 tty_encode_baud_rate(info
->port
.tty
, baud
, baud
);
1051 info
->timeout
= ((1024 * HZ
* bits
* quot
) / BASE_BAUD
) + (HZ
/ 50);
1053 /* CTS flow control flag and modem status interrupts */
1054 /* info->IER &= ~UART_IER_MSI; */
1055 if (cflag
& CRTSCTS
) {
1056 info
->port
.flags
|= ASYNC_CTS_FLOW
;
1057 /* info->IER |= UART_IER_MSI; */
1061 info
->port
.flags
&= ~ASYNC_CTS_FLOW
;
1063 info
->port
.flags
&= ~ASYNC_CHECK_CD
;
1065 info
->port
.flags
|= ASYNC_CHECK_CD
;
1068 * Set up parity check flag
1070 info
->read_status_mask
= UART_LSR_OE
| UART_LSR_THRE
| UART_LSR_DR
;
1071 if (I_INPCK(info
->port
.tty
))
1072 info
->read_status_mask
|= UART_LSR_FE
| UART_LSR_PE
;
1073 if (I_BRKINT(info
->port
.tty
) || I_PARMRK(info
->port
.tty
))
1074 info
->read_status_mask
|= UART_LSR_BI
;
1076 info
->ignore_status_mask
= 0;
1078 /* This should be safe, but for some broken bits of hardware... */
1079 if (I_IGNPAR(info
->port
.tty
)) {
1080 info
->ignore_status_mask
|= UART_LSR_PE
| UART_LSR_FE
;
1081 info
->read_status_mask
|= UART_LSR_PE
| UART_LSR_FE
;
1084 if (I_IGNBRK(info
->port
.tty
)) {
1085 info
->ignore_status_mask
|= UART_LSR_BI
;
1086 info
->read_status_mask
|= UART_LSR_BI
;
1088 * If we're ignore parity and break indicators, ignore
1089 * overruns too. (For real raw support).
1091 if (I_IGNPAR(info
->port
.tty
)) {
1092 info
->ignore_status_mask
|= UART_LSR_OE
| \
1093 UART_LSR_PE
| UART_LSR_FE
;
1094 info
->read_status_mask
|= UART_LSR_OE
| \
1095 UART_LSR_PE
| UART_LSR_FE
;
1099 if (I_IXOFF(info
->port
.tty
))
1102 spin_lock_irqsave(&info
->lock
, flags
);
1104 serial_out(info
, UART_ESI_CMD1
, ESI_SET_BAUD
);
1105 serial_out(info
, UART_ESI_CMD2
, quot
>> 8);
1106 serial_out(info
, UART_ESI_CMD2
, quot
& 0xff);
1108 /* set data bits, parity, etc. */
1109 serial_out(info
, UART_ESI_CMD1
, ESI_WRITE_UART
);
1110 serial_out(info
, UART_ESI_CMD2
, UART_LCR
);
1111 serial_out(info
, UART_ESI_CMD2
, cval
);
1113 /* Enable flow control */
1114 serial_out(info
, UART_ESI_CMD1
, ESI_SET_FLOW_CNTL
);
1115 serial_out(info
, UART_ESI_CMD2
, flow1
);
1116 serial_out(info
, UART_ESI_CMD2
, flow2
);
1118 /* set flow control characters (XON/XOFF only) */
1119 if (I_IXOFF(info
->port
.tty
)) {
1120 serial_out(info
, UART_ESI_CMD1
, ESI_SET_FLOW_CHARS
);
1121 serial_out(info
, UART_ESI_CMD2
, START_CHAR(info
->port
.tty
));
1122 serial_out(info
, UART_ESI_CMD2
, STOP_CHAR(info
->port
.tty
));
1123 serial_out(info
, UART_ESI_CMD2
, 0x10);
1124 serial_out(info
, UART_ESI_CMD2
, 0x21);
1125 switch (cflag
& CSIZE
) {
1127 serial_out(info
, UART_ESI_CMD2
, 0x1f);
1130 serial_out(info
, UART_ESI_CMD2
, 0x3f);
1134 serial_out(info
, UART_ESI_CMD2
, 0x7f);
1137 serial_out(info
, UART_ESI_CMD2
, 0xff);
1142 /* Set high/low water */
1143 serial_out(info
, UART_ESI_CMD1
, ESI_SET_FLOW_LVL
);
1144 serial_out(info
, UART_ESI_CMD2
, info
->config
.flow_off
>> 8);
1145 serial_out(info
, UART_ESI_CMD2
, info
->config
.flow_off
);
1146 serial_out(info
, UART_ESI_CMD2
, info
->config
.flow_on
>> 8);
1147 serial_out(info
, UART_ESI_CMD2
, info
->config
.flow_on
);
1149 spin_unlock_irqrestore(&info
->lock
, flags
);
1152 static int rs_put_char(struct tty_struct
*tty
, unsigned char ch
)
1154 struct esp_struct
*info
= tty
->driver_data
;
1155 unsigned long flags
;
1158 if (serial_paranoia_check(info
, tty
->name
, "rs_put_char"))
1161 if (!info
->xmit_buf
)
1164 spin_lock_irqsave(&info
->lock
, flags
);
1165 if (info
->xmit_cnt
< ESP_XMIT_SIZE
- 1) {
1166 info
->xmit_buf
[info
->xmit_head
++] = ch
;
1167 info
->xmit_head
&= ESP_XMIT_SIZE
-1;
1171 spin_unlock_irqrestore(&info
->lock
, flags
);
1175 static void rs_flush_chars(struct tty_struct
*tty
)
1177 struct esp_struct
*info
= tty
->driver_data
;
1178 unsigned long flags
;
1180 if (serial_paranoia_check(info
, tty
->name
, "rs_flush_chars"))
1183 spin_lock_irqsave(&info
->lock
, flags
);
1185 if (info
->xmit_cnt
<= 0 || tty
->stopped
|| !info
->xmit_buf
)
1188 if (!(info
->IER
& UART_IER_THRI
)) {
1189 info
->IER
|= UART_IER_THRI
;
1190 serial_out(info
, UART_ESI_CMD1
, ESI_SET_SRV_MASK
);
1191 serial_out(info
, UART_ESI_CMD2
, info
->IER
);
1194 spin_unlock_irqrestore(&info
->lock
, flags
);
1197 static int rs_write(struct tty_struct
*tty
,
1198 const unsigned char *buf
, int count
)
1201 struct esp_struct
*info
= tty
->driver_data
;
1202 unsigned long flags
;
1204 if (serial_paranoia_check(info
, tty
->name
, "rs_write"))
1207 if (!info
->xmit_buf
)
1211 /* Thanks to R. Wolff for suggesting how to do this with */
1212 /* interrupts enabled */
1215 t
= ESP_XMIT_SIZE
- info
->xmit_cnt
- 1;
1220 t
= ESP_XMIT_SIZE
- info
->xmit_head
;
1228 memcpy(info
->xmit_buf
+ info
->xmit_head
, buf
, c
);
1230 info
->xmit_head
= (info
->xmit_head
+ c
) & (ESP_XMIT_SIZE
-1);
1231 info
->xmit_cnt
+= c
;
1237 spin_lock_irqsave(&info
->lock
, flags
);
1239 if (info
->xmit_cnt
&& !tty
->stopped
&& !(info
->IER
& UART_IER_THRI
)) {
1240 info
->IER
|= UART_IER_THRI
;
1241 serial_out(info
, UART_ESI_CMD1
, ESI_SET_SRV_MASK
);
1242 serial_out(info
, UART_ESI_CMD2
, info
->IER
);
1245 spin_unlock_irqrestore(&info
->lock
, flags
);
1249 static int rs_write_room(struct tty_struct
*tty
)
1251 struct esp_struct
*info
= tty
->driver_data
;
1253 unsigned long flags
;
1255 if (serial_paranoia_check(info
, tty
->name
, "rs_write_room"))
1258 spin_lock_irqsave(&info
->lock
, flags
);
1260 ret
= ESP_XMIT_SIZE
- info
->xmit_cnt
- 1;
1263 spin_unlock_irqrestore(&info
->lock
, flags
);
1267 static int rs_chars_in_buffer(struct tty_struct
*tty
)
1269 struct esp_struct
*info
= tty
->driver_data
;
1271 if (serial_paranoia_check(info
, tty
->name
, "rs_chars_in_buffer"))
1273 return info
->xmit_cnt
;
1276 static void rs_flush_buffer(struct tty_struct
*tty
)
1278 struct esp_struct
*info
= tty
->driver_data
;
1279 unsigned long flags
;
1281 if (serial_paranoia_check(info
, tty
->name
, "rs_flush_buffer"))
1283 spin_lock_irqsave(&info
->lock
, flags
);
1284 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
1285 spin_unlock_irqrestore(&info
->lock
, flags
);
1290 * ------------------------------------------------------------
1293 * This routine is called by the upper-layer tty layer to signal that
1294 * incoming characters should be throttled.
1295 * ------------------------------------------------------------
1297 static void rs_throttle(struct tty_struct
*tty
)
1299 struct esp_struct
*info
= tty
->driver_data
;
1300 unsigned long flags
;
1301 #ifdef SERIAL_DEBUG_THROTTLE
1304 printk("throttle %s: %d....\n", tty_name(tty
, buf
),
1305 tty_chars_in_buffer(tty
));
1308 if (serial_paranoia_check(info
, tty
->name
, "rs_throttle"))
1311 spin_lock_irqsave(&info
->lock
, flags
);
1312 info
->IER
&= ~UART_IER_RDI
;
1313 serial_out(info
, UART_ESI_CMD1
, ESI_SET_SRV_MASK
);
1314 serial_out(info
, UART_ESI_CMD2
, info
->IER
);
1315 serial_out(info
, UART_ESI_CMD1
, ESI_SET_RX_TIMEOUT
);
1316 serial_out(info
, UART_ESI_CMD2
, 0x00);
1317 spin_unlock_irqrestore(&info
->lock
, flags
);
1320 static void rs_unthrottle(struct tty_struct
*tty
)
1322 struct esp_struct
*info
= tty
->driver_data
;
1323 unsigned long flags
;
1324 #ifdef SERIAL_DEBUG_THROTTLE
1327 printk(KERN_DEBUG
"unthrottle %s: %d....\n", tty_name(tty
, buf
),
1328 tty_chars_in_buffer(tty
));
1331 if (serial_paranoia_check(info
, tty
->name
, "rs_unthrottle"))
1334 spin_lock_irqsave(&info
->lock
, flags
);
1335 info
->IER
|= UART_IER_RDI
;
1336 serial_out(info
, UART_ESI_CMD1
, ESI_SET_SRV_MASK
);
1337 serial_out(info
, UART_ESI_CMD2
, info
->IER
);
1338 serial_out(info
, UART_ESI_CMD1
, ESI_SET_RX_TIMEOUT
);
1339 serial_out(info
, UART_ESI_CMD2
, info
->config
.rx_timeout
);
1340 spin_unlock_irqrestore(&info
->lock
, flags
);
1344 * ------------------------------------------------------------
1345 * rs_ioctl() and friends
1346 * ------------------------------------------------------------
1349 static int get_serial_info(struct esp_struct
*info
,
1350 struct serial_struct __user
*retinfo
)
1352 struct serial_struct tmp
;
1355 memset(&tmp
, 0, sizeof(tmp
));
1356 tmp
.type
= PORT_16550A
;
1357 tmp
.line
= info
->line
;
1358 tmp
.port
= info
->io_port
;
1359 tmp
.irq
= info
->irq
;
1360 tmp
.flags
= info
->port
.flags
;
1361 tmp
.xmit_fifo_size
= 1024;
1362 tmp
.baud_base
= BASE_BAUD
;
1363 tmp
.close_delay
= info
->close_delay
;
1364 tmp
.closing_wait
= info
->closing_wait
;
1365 tmp
.custom_divisor
= info
->custom_divisor
;
1368 if (copy_to_user(retinfo
, &tmp
, sizeof(*retinfo
)))
1373 static int get_esp_config(struct esp_struct
*info
,
1374 struct hayes_esp_config __user
*retinfo
)
1376 struct hayes_esp_config tmp
;
1381 memset(&tmp
, 0, sizeof(tmp
));
1383 tmp
.rx_timeout
= info
->config
.rx_timeout
;
1384 tmp
.rx_trigger
= info
->config
.rx_trigger
;
1385 tmp
.tx_trigger
= info
->config
.tx_trigger
;
1386 tmp
.flow_off
= info
->config
.flow_off
;
1387 tmp
.flow_on
= info
->config
.flow_on
;
1388 tmp
.pio_threshold
= info
->config
.pio_threshold
;
1389 tmp
.dma_channel
= (info
->stat_flags
& ESP_STAT_NEVER_DMA
? 0 : dma
);
1392 return copy_to_user(retinfo
, &tmp
, sizeof(*retinfo
)) ? -EFAULT
: 0;
1395 static int set_serial_info(struct esp_struct
*info
,
1396 struct serial_struct __user
*new_info
)
1398 struct serial_struct new_serial
;
1399 struct esp_struct old_info
;
1400 unsigned int change_irq
;
1402 struct esp_struct
*current_async
;
1404 if (copy_from_user(&new_serial
, new_info
, sizeof(new_serial
)))
1408 if ((new_serial
.type
!= PORT_16550A
) ||
1409 (new_serial
.hub6
) ||
1410 (info
->io_port
!= new_serial
.port
) ||
1411 (new_serial
.baud_base
!= BASE_BAUD
) ||
1412 (new_serial
.irq
> 15) ||
1413 (new_serial
.irq
< 2) ||
1414 (new_serial
.irq
== 6) ||
1415 (new_serial
.irq
== 8) ||
1416 (new_serial
.irq
== 13))
1419 change_irq
= new_serial
.irq
!= info
->irq
;
1421 if (change_irq
&& (info
->line
% 8))
1424 if (!capable(CAP_SYS_ADMIN
)) {
1426 (new_serial
.close_delay
!= info
->close_delay
) ||
1427 ((new_serial
.flags
& ~ASYNC_USR_MASK
) !=
1428 (info
->port
.flags
& ~ASYNC_USR_MASK
)))
1430 info
->port
.flags
= ((info
->port
.flags
& ~ASYNC_USR_MASK
) |
1431 (new_serial
.flags
& ASYNC_USR_MASK
));
1432 info
->custom_divisor
= new_serial
.custom_divisor
;
1434 if (new_serial
.irq
== 2)
1438 current_async
= ports
;
1440 while (current_async
) {
1441 if ((current_async
->line
>= info
->line
) &&
1442 (current_async
->line
< (info
->line
+ 8))) {
1443 if (current_async
== info
) {
1444 if (current_async
->port
.count
> 1)
1446 } else if (current_async
->port
.count
)
1450 current_async
= current_async
->next_port
;
1455 * OK, past this point, all the error checking has been done.
1456 * At this point, we start making changes.....
1459 info
->port
.flags
= ((info
->port
.flags
& ~ASYNC_FLAGS
) |
1460 (new_serial
.flags
& ASYNC_FLAGS
));
1461 info
->custom_divisor
= new_serial
.custom_divisor
;
1462 info
->close_delay
= new_serial
.close_delay
* HZ
/100;
1463 info
->closing_wait
= new_serial
.closing_wait
* HZ
/100;
1467 * We need to shutdown the serial port at the old
1468 * port/irq combination.
1472 current_async
= ports
;
1474 while (current_async
) {
1475 if ((current_async
->line
>= info
->line
) &&
1476 (current_async
->line
< (info
->line
+ 8)))
1477 current_async
->irq
= new_serial
.irq
;
1479 current_async
= current_async
->next_port
;
1482 serial_out(info
, UART_ESI_CMD1
, ESI_SET_ENH_IRQ
);
1484 serial_out(info
, UART_ESI_CMD2
, 0x02);
1486 serial_out(info
, UART_ESI_CMD2
, info
->irq
);
1490 if (info
->port
.flags
& ASYNC_INITIALIZED
) {
1491 if (((old_info
.port
.flags
& ASYNC_SPD_MASK
) !=
1492 (info
->port
.flags
& ASYNC_SPD_MASK
)) ||
1493 (old_info
.custom_divisor
!= info
->custom_divisor
)) {
1494 if ((info
->port
.flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_HI
)
1495 info
->port
.tty
->alt_speed
= 57600;
1496 if ((info
->port
.flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_VHI
)
1497 info
->port
.tty
->alt_speed
= 115200;
1498 if ((info
->port
.flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_SHI
)
1499 info
->port
.tty
->alt_speed
= 230400;
1500 if ((info
->port
.flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_WARP
)
1501 info
->port
.tty
->alt_speed
= 460800;
1505 retval
= startup(info
);
1510 static int set_esp_config(struct esp_struct
*info
,
1511 struct hayes_esp_config __user
*new_info
)
1513 struct hayes_esp_config new_config
;
1514 unsigned int change_dma
;
1516 struct esp_struct
*current_async
;
1517 unsigned long flags
;
1519 /* Perhaps a non-sysadmin user should be able to do some of these */
1520 /* operations. I haven't decided yet. */
1522 if (!capable(CAP_SYS_ADMIN
))
1525 if (copy_from_user(&new_config
, new_info
, sizeof(new_config
)))
1528 if ((new_config
.flow_on
>= new_config
.flow_off
) ||
1529 (new_config
.rx_trigger
< 1) ||
1530 (new_config
.tx_trigger
< 1) ||
1531 (new_config
.flow_off
< 1) ||
1532 (new_config
.flow_on
< 1) ||
1533 (new_config
.rx_trigger
> 1023) ||
1534 (new_config
.tx_trigger
> 1023) ||
1535 (new_config
.flow_off
> 1023) ||
1536 (new_config
.flow_on
> 1023) ||
1537 (new_config
.pio_threshold
< 0) ||
1538 (new_config
.pio_threshold
> 1024))
1541 if ((new_config
.dma_channel
!= 1) && (new_config
.dma_channel
!= 3))
1542 new_config
.dma_channel
= 0;
1544 if (info
->stat_flags
& ESP_STAT_NEVER_DMA
)
1545 change_dma
= new_config
.dma_channel
;
1547 change_dma
= (new_config
.dma_channel
!= dma
);
1550 if (new_config
.dma_channel
) {
1551 /* PIO mode to DMA mode transition OR */
1552 /* change current DMA channel */
1553 current_async
= ports
;
1555 while (current_async
) {
1556 if (current_async
== info
) {
1557 if (current_async
->port
.count
> 1)
1559 } else if (current_async
->port
.count
)
1562 current_async
= current_async
->next_port
;
1566 dma
= new_config
.dma_channel
;
1567 info
->stat_flags
&= ~ESP_STAT_NEVER_DMA
;
1569 /* all ports must use the same DMA channel */
1571 spin_lock_irqsave(&info
->lock
, flags
);
1572 current_async
= ports
;
1574 while (current_async
) {
1575 esp_basic_init(current_async
);
1576 current_async
= current_async
->next_port
;
1578 spin_unlock_irqrestore(&info
->lock
, flags
);
1580 /* DMA mode to PIO mode only */
1581 if (info
->port
.count
> 1)
1585 spin_lock_irqsave(&info
->lock
, flags
);
1586 info
->stat_flags
|= ESP_STAT_NEVER_DMA
;
1587 esp_basic_init(info
);
1588 spin_unlock_irqrestore(&info
->lock
, flags
);
1592 info
->config
.pio_threshold
= new_config
.pio_threshold
;
1594 if ((new_config
.flow_off
!= info
->config
.flow_off
) ||
1595 (new_config
.flow_on
!= info
->config
.flow_on
)) {
1596 info
->config
.flow_off
= new_config
.flow_off
;
1597 info
->config
.flow_on
= new_config
.flow_on
;
1599 spin_lock_irqsave(&info
->lock
, flags
);
1600 serial_out(info
, UART_ESI_CMD1
, ESI_SET_FLOW_LVL
);
1601 serial_out(info
, UART_ESI_CMD2
, new_config
.flow_off
>> 8);
1602 serial_out(info
, UART_ESI_CMD2
, new_config
.flow_off
);
1603 serial_out(info
, UART_ESI_CMD2
, new_config
.flow_on
>> 8);
1604 serial_out(info
, UART_ESI_CMD2
, new_config
.flow_on
);
1605 spin_unlock_irqrestore(&info
->lock
, flags
);
1608 if ((new_config
.rx_trigger
!= info
->config
.rx_trigger
) ||
1609 (new_config
.tx_trigger
!= info
->config
.tx_trigger
)) {
1610 info
->config
.rx_trigger
= new_config
.rx_trigger
;
1611 info
->config
.tx_trigger
= new_config
.tx_trigger
;
1612 spin_lock_irqsave(&info
->lock
, flags
);
1613 serial_out(info
, UART_ESI_CMD1
, ESI_SET_TRIGGER
);
1614 serial_out(info
, UART_ESI_CMD2
,
1615 new_config
.rx_trigger
>> 8);
1616 serial_out(info
, UART_ESI_CMD2
, new_config
.rx_trigger
);
1617 serial_out(info
, UART_ESI_CMD2
,
1618 new_config
.tx_trigger
>> 8);
1619 serial_out(info
, UART_ESI_CMD2
, new_config
.tx_trigger
);
1620 spin_unlock_irqrestore(&info
->lock
, flags
);
1623 if (new_config
.rx_timeout
!= info
->config
.rx_timeout
) {
1624 info
->config
.rx_timeout
= new_config
.rx_timeout
;
1625 spin_lock_irqsave(&info
->lock
, flags
);
1627 if (info
->IER
& UART_IER_RDI
) {
1628 serial_out(info
, UART_ESI_CMD1
,
1629 ESI_SET_RX_TIMEOUT
);
1630 serial_out(info
, UART_ESI_CMD2
,
1631 new_config
.rx_timeout
);
1634 spin_unlock_irqrestore(&info
->lock
, flags
);
1637 if (!(info
->port
.flags
& ASYNC_INITIALIZED
))
1638 retval
= startup(info
);
1644 * get_lsr_info - get line status register info
1646 * Purpose: Let user call ioctl() to get info when the UART physically
1647 * is emptied. On bus types like RS485, the transmitter must
1648 * release the bus after transmitting. This must be done when
1649 * the transmit shift register is empty, not be done when the
1650 * transmit holding register is empty. This functionality
1651 * allows an RS485 driver to be written in user space.
1653 static int get_lsr_info(struct esp_struct
*info
, unsigned int __user
*value
)
1655 unsigned char status
;
1656 unsigned int result
;
1657 unsigned long flags
;
1659 spin_lock_irqsave(&info
->lock
, flags
);
1660 serial_out(info
, UART_ESI_CMD1
, ESI_GET_UART_STAT
);
1661 status
= serial_in(info
, UART_ESI_STAT1
);
1662 spin_unlock_irqrestore(&info
->lock
, flags
);
1663 result
= ((status
& UART_LSR_TEMT
) ? TIOCSER_TEMT
: 0);
1664 return put_user(result
, value
);
1668 static int esp_tiocmget(struct tty_struct
*tty
, struct file
*file
)
1670 struct esp_struct
*info
= tty
->driver_data
;
1671 unsigned char control
, status
;
1672 unsigned long flags
;
1674 if (serial_paranoia_check(info
, tty
->name
, __func__
))
1676 if (tty
->flags
& (1 << TTY_IO_ERROR
))
1679 control
= info
->MCR
;
1681 spin_lock_irqsave(&info
->lock
, flags
);
1682 serial_out(info
, UART_ESI_CMD1
, ESI_GET_UART_STAT
);
1683 status
= serial_in(info
, UART_ESI_STAT2
);
1684 spin_unlock_irqrestore(&info
->lock
, flags
);
1686 return ((control
& UART_MCR_RTS
) ? TIOCM_RTS
: 0)
1687 | ((control
& UART_MCR_DTR
) ? TIOCM_DTR
: 0)
1688 | ((status
& UART_MSR_DCD
) ? TIOCM_CAR
: 0)
1689 | ((status
& UART_MSR_RI
) ? TIOCM_RNG
: 0)
1690 | ((status
& UART_MSR_DSR
) ? TIOCM_DSR
: 0)
1691 | ((status
& UART_MSR_CTS
) ? TIOCM_CTS
: 0);
1694 static int esp_tiocmset(struct tty_struct
*tty
, struct file
*file
,
1695 unsigned int set
, unsigned int clear
)
1697 struct esp_struct
*info
= tty
->driver_data
;
1698 unsigned long flags
;
1700 if (serial_paranoia_check(info
, tty
->name
, __func__
))
1702 if (tty
->flags
& (1 << TTY_IO_ERROR
))
1705 spin_lock_irqsave(&info
->lock
, flags
);
1707 if (set
& TIOCM_RTS
)
1708 info
->MCR
|= UART_MCR_RTS
;
1709 if (set
& TIOCM_DTR
)
1710 info
->MCR
|= UART_MCR_DTR
;
1712 if (clear
& TIOCM_RTS
)
1713 info
->MCR
&= ~UART_MCR_RTS
;
1714 if (clear
& TIOCM_DTR
)
1715 info
->MCR
&= ~UART_MCR_DTR
;
1717 serial_out(info
, UART_ESI_CMD1
, ESI_WRITE_UART
);
1718 serial_out(info
, UART_ESI_CMD2
, UART_MCR
);
1719 serial_out(info
, UART_ESI_CMD2
, info
->MCR
);
1721 spin_unlock_irqrestore(&info
->lock
, flags
);
1726 * rs_break() --- routine which turns the break handling on or off
1728 static int esp_break(struct tty_struct
*tty
, int break_state
)
1730 struct esp_struct
*info
= tty
->driver_data
;
1731 unsigned long flags
;
1733 if (serial_paranoia_check(info
, tty
->name
, "esp_break"))
1736 if (break_state
== -1) {
1737 spin_lock_irqsave(&info
->lock
, flags
);
1738 serial_out(info
, UART_ESI_CMD1
, ESI_ISSUE_BREAK
);
1739 serial_out(info
, UART_ESI_CMD2
, 0x01);
1740 spin_unlock_irqrestore(&info
->lock
, flags
);
1742 /* FIXME - new style wait needed here */
1743 interruptible_sleep_on(&info
->break_wait
);
1745 spin_lock_irqsave(&info
->lock
, flags
);
1746 serial_out(info
, UART_ESI_CMD1
, ESI_ISSUE_BREAK
);
1747 serial_out(info
, UART_ESI_CMD2
, 0x00);
1748 spin_unlock_irqrestore(&info
->lock
, flags
);
1753 static int rs_ioctl(struct tty_struct
*tty
, struct file
*file
,
1754 unsigned int cmd
, unsigned long arg
)
1756 struct esp_struct
*info
= tty
->driver_data
;
1757 struct async_icount cprev
, cnow
; /* kernel counter temps */
1758 struct serial_icounter_struct __user
*p_cuser
; /* user space */
1759 void __user
*argp
= (void __user
*)arg
;
1760 unsigned long flags
;
1763 if (serial_paranoia_check(info
, tty
->name
, "rs_ioctl"))
1766 if ((cmd
!= TIOCGSERIAL
) && (cmd
!= TIOCSSERIAL
) &&
1767 (cmd
!= TIOCSERCONFIG
) && (cmd
!= TIOCSERGWILD
) &&
1768 (cmd
!= TIOCSERSWILD
) && (cmd
!= TIOCSERGSTRUCT
) &&
1769 (cmd
!= TIOCMIWAIT
) && (cmd
!= TIOCGICOUNT
) &&
1770 (cmd
!= TIOCGHAYESESP
) && (cmd
!= TIOCSHAYESESP
)) {
1771 if (tty
->flags
& (1 << TTY_IO_ERROR
))
1777 return get_serial_info(info
, argp
);
1780 ret
= set_serial_info(info
, argp
);
1784 return put_user(0L, (unsigned long __user
*)argp
);
1785 case TIOCSERGETLSR
: /* Get line status register */
1786 return get_lsr_info(info
, argp
);
1788 if (!capable(CAP_SYS_ADMIN
))
1792 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1793 * - mask passed in arg for lines of interest
1794 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1795 * Caller should use TIOCGICOUNT to see which one it was
1798 spin_lock_irqsave(&info
->lock
, flags
);
1799 cprev
= info
->icount
; /* note the counters on entry */
1800 spin_unlock_irqrestore(&info
->lock
, flags
);
1802 /* FIXME: convert to new style wakeup */
1803 interruptible_sleep_on(&info
->delta_msr_wait
);
1804 /* see if a signal did it */
1805 if (signal_pending(current
))
1806 return -ERESTARTSYS
;
1807 spin_lock_irqsave(&info
->lock
, flags
);
1808 cnow
= info
->icount
; /* atomic copy */
1809 spin_unlock_irqrestore(&info
->lock
, flags
);
1810 if (cnow
.rng
== cprev
.rng
&&
1811 cnow
.dsr
== cprev
.dsr
&&
1812 cnow
.dcd
== cprev
.dcd
&&
1813 cnow
.cts
== cprev
.cts
)
1814 return -EIO
; /* no change => error */
1815 if (((arg
& TIOCM_RNG
) &&
1816 (cnow
.rng
!= cprev
.rng
)) ||
1817 ((arg
& TIOCM_DSR
) &&
1818 (cnow
.dsr
!= cprev
.dsr
)) ||
1819 ((arg
& TIOCM_CD
) &&
1820 (cnow
.dcd
!= cprev
.dcd
)) ||
1821 ((arg
& TIOCM_CTS
) &&
1822 (cnow
.cts
!= cprev
.cts
))) {
1829 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1830 * Return: write counters to the user passed counter struct
1831 * NB: both 1->0 and 0->1 transitions are counted except for
1832 * RI where only 0->1 is counted.
1835 spin_lock_irqsave(&info
->lock
, flags
);
1836 cnow
= info
->icount
;
1837 spin_unlock_irqrestore(&info
->lock
, flags
);
1839 if (put_user(cnow
.cts
, &p_cuser
->cts
) ||
1840 put_user(cnow
.dsr
, &p_cuser
->dsr
) ||
1841 put_user(cnow
.rng
, &p_cuser
->rng
) ||
1842 put_user(cnow
.dcd
, &p_cuser
->dcd
))
1846 return get_esp_config(info
, argp
);
1849 ret
= set_esp_config(info
, argp
);
1853 return -ENOIOCTLCMD
;
1858 static void rs_set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
)
1860 struct esp_struct
*info
= tty
->driver_data
;
1861 unsigned long flags
;
1865 spin_lock_irqsave(&info
->lock
, flags
);
1867 /* Handle transition to B0 status */
1868 if ((old_termios
->c_cflag
& CBAUD
) &&
1869 !(tty
->termios
->c_cflag
& CBAUD
)) {
1870 info
->MCR
&= ~(UART_MCR_DTR
|UART_MCR_RTS
);
1871 serial_out(info
, UART_ESI_CMD1
, ESI_WRITE_UART
);
1872 serial_out(info
, UART_ESI_CMD2
, UART_MCR
);
1873 serial_out(info
, UART_ESI_CMD2
, info
->MCR
);
1876 /* Handle transition away from B0 status */
1877 if (!(old_termios
->c_cflag
& CBAUD
) &&
1878 (tty
->termios
->c_cflag
& CBAUD
)) {
1879 info
->MCR
|= (UART_MCR_DTR
| UART_MCR_RTS
);
1880 serial_out(info
, UART_ESI_CMD1
, ESI_WRITE_UART
);
1881 serial_out(info
, UART_ESI_CMD2
, UART_MCR
);
1882 serial_out(info
, UART_ESI_CMD2
, info
->MCR
);
1885 spin_unlock_irqrestore(&info
->lock
, flags
);
1887 /* Handle turning of CRTSCTS */
1888 if ((old_termios
->c_cflag
& CRTSCTS
) &&
1889 !(tty
->termios
->c_cflag
& CRTSCTS
)) {
1895 * ------------------------------------------------------------
1898 * This routine is called when the serial port gets closed. First, we
1899 * wait for the last remaining data to be sent. Then, we unlink its
1900 * async structure from the interrupt chain if necessary, and we free
1901 * that IRQ if nothing is left in the chain.
1902 * ------------------------------------------------------------
1904 static void rs_close(struct tty_struct
*tty
, struct file
*filp
)
1906 struct esp_struct
*info
= tty
->driver_data
;
1907 unsigned long flags
;
1909 if (!info
|| serial_paranoia_check(info
, tty
->name
, "rs_close"))
1912 spin_lock_irqsave(&info
->lock
, flags
);
1914 if (tty_hung_up_p(filp
)) {
1915 DBG_CNT("before DEC-hung");
1919 #ifdef SERIAL_DEBUG_OPEN
1920 printk(KERN_DEBUG
"rs_close ttys%d, count = %d\n",
1921 info
->line
, info
->port
.count
);
1923 if (tty
->count
== 1 && info
->port
.count
!= 1) {
1925 * Uh, oh. tty->count is 1, which means that the tty
1926 * structure will be freed. Info->count should always
1927 * be one in these conditions. If it's greater than
1928 * one, we've got real problems, since it means the
1929 * serial port won't be shutdown.
1931 printk(KERN_DEBUG
"rs_close: bad serial port count; tty->count is 1, info->port.count is %d\n", info
->port
.count
);
1932 info
->port
.count
= 1;
1934 if (--info
->port
.count
< 0) {
1935 printk(KERN_ERR
"rs_close: bad serial port count for ttys%d: %d\n",
1936 info
->line
, info
->port
.count
);
1937 info
->port
.count
= 0;
1939 if (info
->port
.count
) {
1940 DBG_CNT("before DEC-2");
1943 info
->port
.flags
|= ASYNC_CLOSING
;
1945 spin_unlock_irqrestore(&info
->lock
, flags
);
1947 * Now we wait for the transmit buffer to clear; and we notify
1948 * the line discipline to only process XON/XOFF characters.
1951 if (info
->closing_wait
!= ASYNC_CLOSING_WAIT_NONE
)
1952 tty_wait_until_sent(tty
, info
->closing_wait
);
1954 * At this point we stop accepting input. To do this, we
1955 * disable the receive line status interrupts, and tell the
1956 * interrupt driver to stop checking the data ready bit in the
1957 * line status register.
1959 /* info->IER &= ~UART_IER_RLSI; */
1960 info
->IER
&= ~UART_IER_RDI
;
1961 info
->read_status_mask
&= ~UART_LSR_DR
;
1962 if (info
->port
.flags
& ASYNC_INITIALIZED
) {
1964 spin_lock_irqsave(&info
->lock
, flags
);
1965 serial_out(info
, UART_ESI_CMD1
, ESI_SET_SRV_MASK
);
1966 serial_out(info
, UART_ESI_CMD2
, info
->IER
);
1968 /* disable receive timeout */
1969 serial_out(info
, UART_ESI_CMD1
, ESI_SET_RX_TIMEOUT
);
1970 serial_out(info
, UART_ESI_CMD2
, 0x00);
1972 spin_unlock_irqrestore(&info
->lock
, flags
);
1975 * Before we drop DTR, make sure the UART transmitter
1976 * has completely drained; this is especially
1977 * important if there is a transmit FIFO!
1979 rs_wait_until_sent(tty
, info
->timeout
);
1982 rs_flush_buffer(tty
);
1983 tty_ldisc_flush(tty
);
1985 info
->port
.tty
= NULL
;
1987 if (info
->port
.blocked_open
) {
1988 if (info
->close_delay
)
1989 msleep_interruptible(jiffies_to_msecs(info
->close_delay
));
1990 wake_up_interruptible(&info
->port
.open_wait
);
1992 info
->port
.flags
&= ~(ASYNC_NORMAL_ACTIVE
|ASYNC_CLOSING
);
1993 wake_up_interruptible(&info
->port
.close_wait
);
1997 spin_unlock_irqrestore(&info
->lock
, flags
);
2000 static void rs_wait_until_sent(struct tty_struct
*tty
, int timeout
)
2002 struct esp_struct
*info
= tty
->driver_data
;
2003 unsigned long orig_jiffies
, char_time
;
2004 unsigned long flags
;
2006 if (serial_paranoia_check(info
, tty
->name
, "rs_wait_until_sent"))
2009 orig_jiffies
= jiffies
;
2010 char_time
= ((info
->timeout
- HZ
/ 50) / 1024) / 5;
2015 spin_lock_irqsave(&info
->lock
, flags
);
2016 serial_out(info
, UART_ESI_CMD1
, ESI_NO_COMMAND
);
2017 serial_out(info
, UART_ESI_CMD1
, ESI_GET_TX_AVAIL
);
2019 while ((serial_in(info
, UART_ESI_STAT1
) != 0x03) ||
2020 (serial_in(info
, UART_ESI_STAT2
) != 0xff)) {
2022 spin_unlock_irqrestore(&info
->lock
, flags
);
2023 msleep_interruptible(jiffies_to_msecs(char_time
));
2025 if (signal_pending(current
))
2028 if (timeout
&& time_after(jiffies
, orig_jiffies
+ timeout
))
2031 spin_lock_irqsave(&info
->lock
, flags
);
2032 serial_out(info
, UART_ESI_CMD1
, ESI_NO_COMMAND
);
2033 serial_out(info
, UART_ESI_CMD1
, ESI_GET_TX_AVAIL
);
2035 spin_unlock_irqrestore(&info
->lock
, flags
);
2036 set_current_state(TASK_RUNNING
);
2040 * esp_hangup() --- called by tty_hangup() when a hangup is signaled.
2042 static void esp_hangup(struct tty_struct
*tty
)
2044 struct esp_struct
*info
= tty
->driver_data
;
2046 if (serial_paranoia_check(info
, tty
->name
, "esp_hangup"))
2049 rs_flush_buffer(tty
);
2051 info
->port
.count
= 0;
2052 info
->port
.flags
&= ~ASYNC_NORMAL_ACTIVE
;
2053 info
->port
.tty
= NULL
;
2054 wake_up_interruptible(&info
->port
.open_wait
);
2058 * ------------------------------------------------------------
2059 * esp_open() and friends
2060 * ------------------------------------------------------------
2062 static int block_til_ready(struct tty_struct
*tty
, struct file
*filp
,
2063 struct esp_struct
*info
)
2065 DECLARE_WAITQUEUE(wait
, current
);
2068 unsigned long flags
;
2071 * If the device is in the middle of being closed, then block
2072 * until it's done, and then try again.
2074 if (tty_hung_up_p(filp
) ||
2075 (info
->port
.flags
& ASYNC_CLOSING
)) {
2076 if (info
->port
.flags
& ASYNC_CLOSING
)
2077 interruptible_sleep_on(&info
->port
.close_wait
);
2078 #ifdef SERIAL_DO_RESTART
2079 if (info
->port
.flags
& ASYNC_HUP_NOTIFY
)
2082 return -ERESTARTSYS
;
2089 * If non-blocking mode is set, or the port is not enabled,
2090 * then make the check up front and then exit.
2092 if ((filp
->f_flags
& O_NONBLOCK
) ||
2093 (tty
->flags
& (1 << TTY_IO_ERROR
))) {
2094 info
->port
.flags
|= ASYNC_NORMAL_ACTIVE
;
2098 if (tty
->termios
->c_cflag
& CLOCAL
)
2102 * Block waiting for the carrier detect and the line to become
2103 * free (i.e., not in use by the callout). While we are in
2104 * this loop, info->port.count is dropped by one, so that
2105 * rs_close() knows when to free things. We restore it upon
2106 * exit, either normal or abnormal.
2109 add_wait_queue(&info
->port
.open_wait
, &wait
);
2110 #ifdef SERIAL_DEBUG_OPEN
2111 printk(KERN_DEBUG
"block_til_ready before block: ttys%d, count = %d\n",
2112 info
->line
, info
->port
.count
);
2114 spin_lock_irqsave(&info
->lock
, flags
);
2115 if (!tty_hung_up_p(filp
))
2117 info
->port
.blocked_open
++;
2119 if ((tty
->termios
->c_cflag
& CBAUD
)) {
2120 unsigned int scratch
;
2122 serial_out(info
, UART_ESI_CMD1
, ESI_READ_UART
);
2123 serial_out(info
, UART_ESI_CMD2
, UART_MCR
);
2124 scratch
= serial_in(info
, UART_ESI_STAT1
);
2125 serial_out(info
, UART_ESI_CMD1
, ESI_WRITE_UART
);
2126 serial_out(info
, UART_ESI_CMD2
, UART_MCR
);
2127 serial_out(info
, UART_ESI_CMD2
,
2128 scratch
| UART_MCR_DTR
| UART_MCR_RTS
);
2130 set_current_state(TASK_INTERRUPTIBLE
);
2131 if (tty_hung_up_p(filp
) ||
2132 !(info
->port
.flags
& ASYNC_INITIALIZED
)) {
2133 #ifdef SERIAL_DO_RESTART
2134 if (info
->port
.flags
& ASYNC_HUP_NOTIFY
)
2137 retval
= -ERESTARTSYS
;
2144 serial_out(info
, UART_ESI_CMD1
, ESI_GET_UART_STAT
);
2145 if (serial_in(info
, UART_ESI_STAT2
) & UART_MSR_DCD
)
2148 if (!(info
->port
.flags
& ASYNC_CLOSING
) &&
2151 if (signal_pending(current
)) {
2152 retval
= -ERESTARTSYS
;
2155 #ifdef SERIAL_DEBUG_OPEN
2156 printk(KERN_DEBUG
"block_til_ready blocking: ttys%d, count = %d\n",
2157 info
->line
, info
->port
.count
);
2159 spin_unlock_irqrestore(&info
->lock
, flags
);
2161 spin_lock_irqsave(&info
->lock
, flags
);
2163 set_current_state(TASK_RUNNING
);
2164 remove_wait_queue(&info
->port
.open_wait
, &wait
);
2165 if (!tty_hung_up_p(filp
))
2167 info
->port
.blocked_open
--;
2168 spin_unlock_irqrestore(&info
->lock
, flags
);
2169 #ifdef SERIAL_DEBUG_OPEN
2170 printk(KERN_DEBUG
"block_til_ready after blocking: ttys%d, count = %d\n",
2171 info
->line
, info
->port
.count
);
2175 info
->port
.flags
|= ASYNC_NORMAL_ACTIVE
;
2180 * This routine is called whenever a serial port is opened. It
2181 * enables interrupts for a serial port, linking in its async structure into
2182 * the IRQ chain. It also performs the serial-specific
2183 * initialization for the tty structure.
2185 static int esp_open(struct tty_struct
*tty
, struct file
*filp
)
2187 struct esp_struct
*info
;
2189 unsigned long flags
;
2192 if ((line
< 0) || (line
>= NR_PORTS
))
2195 /* find the port in the chain */
2199 while (info
&& (info
->line
!= line
))
2200 info
= info
->next_port
;
2203 serial_paranoia_check(info
, tty
->name
, "esp_open");
2207 #ifdef SERIAL_DEBUG_OPEN
2208 printk(KERN_DEBUG
"esp_open %s, count = %d\n", tty
->name
, info
->port
.count
);
2210 spin_lock_irqsave(&info
->lock
, flags
);
2212 tty
->driver_data
= info
;
2213 info
->port
.tty
= tty
;
2215 spin_unlock_irqrestore(&info
->lock
, flags
);
2218 * Start up serial port
2220 retval
= startup(info
);
2224 retval
= block_til_ready(tty
, filp
, info
);
2226 #ifdef SERIAL_DEBUG_OPEN
2227 printk(KERN_DEBUG
"esp_open returning after block_til_ready with %d\n",
2232 #ifdef SERIAL_DEBUG_OPEN
2233 printk(KERN_DEBUG
"esp_open %s successful...", tty
->name
);
2239 * ---------------------------------------------------------------------
2240 * espserial_init() and friends
2242 * espserial_init() is called at boot-time to initialize the serial driver.
2243 * ---------------------------------------------------------------------
2247 * This routine prints out the appropriate serial driver version
2248 * number, and identifies which options were configured into this
2252 static void show_serial_version(void)
2254 printk(KERN_INFO
"%s version %s (DMA %u)\n",
2255 serial_name
, serial_version
, dma
);
2259 * This routine is called by espserial_init() to initialize a specific serial
2262 static int autoconfig(struct esp_struct
*info
)
2264 int port_detected
= 0;
2265 unsigned long flags
;
2267 if (!request_region(info
->io_port
, REGION_SIZE
, "esp serial"))
2270 spin_lock_irqsave(&info
->lock
, flags
);
2272 * Check for ESP card
2275 if (serial_in(info
, UART_ESI_BASE
) == 0xf3) {
2276 serial_out(info
, UART_ESI_CMD1
, 0x00);
2277 serial_out(info
, UART_ESI_CMD1
, 0x01);
2279 if ((serial_in(info
, UART_ESI_STAT2
) & 0x70) == 0x20) {
2283 serial_out(info
, UART_ESI_CMD1
, 0x02);
2285 if (serial_in(info
, UART_ESI_STAT1
) & 0x01)
2292 /* put card in enhanced mode */
2293 /* this prevents access through */
2294 /* the "old" IO ports */
2295 esp_basic_init(info
);
2298 serial_out(info
, UART_ESI_CMD1
, ESI_WRITE_UART
);
2299 serial_out(info
, UART_ESI_CMD2
, UART_MCR
);
2300 serial_out(info
, UART_ESI_CMD2
, 0x00);
2304 release_region(info
->io_port
, REGION_SIZE
);
2306 spin_unlock_irqrestore(&info
->lock
, flags
);
2307 return (port_detected
);
2310 static const struct tty_operations esp_ops
= {
2314 .put_char
= rs_put_char
,
2315 .flush_chars
= rs_flush_chars
,
2316 .write_room
= rs_write_room
,
2317 .chars_in_buffer
= rs_chars_in_buffer
,
2318 .flush_buffer
= rs_flush_buffer
,
2320 .throttle
= rs_throttle
,
2321 .unthrottle
= rs_unthrottle
,
2322 .set_termios
= rs_set_termios
,
2325 .hangup
= esp_hangup
,
2326 .break_ctl
= esp_break
,
2327 .wait_until_sent
= rs_wait_until_sent
,
2328 .tiocmget
= esp_tiocmget
,
2329 .tiocmset
= esp_tiocmset
,
2333 * The serial driver boot-time initialization code!
2335 static int __init
espserial_init(void)
2338 struct esp_struct
*info
;
2339 struct esp_struct
*last_primary
= NULL
;
2340 int esp
[] = { 0x100, 0x140, 0x180, 0x200, 0x240, 0x280, 0x300, 0x380 };
2342 esp_driver
= alloc_tty_driver(NR_PORTS
);
2346 for (i
= 0; i
< NR_PRIMARY
; i
++) {
2348 if ((irq
[i
] < 2) || (irq
[i
] > 15) || (irq
[i
] == 6) ||
2349 (irq
[i
] == 8) || (irq
[i
] == 13))
2351 else if (irq
[i
] == 2)
2356 if ((dma
!= 1) && (dma
!= 3))
2359 if ((rx_trigger
< 1) || (rx_trigger
> 1023))
2362 if ((tx_trigger
< 1) || (tx_trigger
> 1023))
2365 if ((flow_off
< 1) || (flow_off
> 1023))
2368 if ((flow_on
< 1) || (flow_on
> 1023))
2371 if ((rx_timeout
< 0) || (rx_timeout
> 255))
2374 if (flow_on
>= flow_off
)
2375 flow_on
= flow_off
- 1;
2377 show_serial_version();
2379 /* Initialize the tty_driver structure */
2381 esp_driver
->owner
= THIS_MODULE
;
2382 esp_driver
->name
= "ttyP";
2383 esp_driver
->major
= ESP_IN_MAJOR
;
2384 esp_driver
->minor_start
= 0;
2385 esp_driver
->type
= TTY_DRIVER_TYPE_SERIAL
;
2386 esp_driver
->subtype
= SERIAL_TYPE_NORMAL
;
2387 esp_driver
->init_termios
= tty_std_termios
;
2388 esp_driver
->init_termios
.c_cflag
=
2389 B9600
| CS8
| CREAD
| HUPCL
| CLOCAL
;
2390 esp_driver
->init_termios
.c_ispeed
= 9600;
2391 esp_driver
->init_termios
.c_ospeed
= 9600;
2392 esp_driver
->flags
= TTY_DRIVER_REAL_RAW
;
2393 tty_set_operations(esp_driver
, &esp_ops
);
2394 if (tty_register_driver(esp_driver
)) {
2395 printk(KERN_ERR
"Couldn't register esp serial driver");
2396 put_tty_driver(esp_driver
);
2400 info
= kzalloc(sizeof(struct esp_struct
), GFP_KERNEL
);
2403 printk(KERN_ERR
"Couldn't allocate memory for esp serial device information\n");
2404 tty_unregister_driver(esp_driver
);
2405 put_tty_driver(esp_driver
);
2409 spin_lock_init(&info
->lock
);
2410 /* rx_trigger, tx_trigger are needed by autoconfig */
2411 info
->config
.rx_trigger
= rx_trigger
;
2412 info
->config
.tx_trigger
= tx_trigger
;
2418 info
->io_port
= esp
[i
] + offset
;
2420 info
->line
= (i
* 8) + (offset
/ 8);
2422 if (!autoconfig(info
)) {
2428 info
->custom_divisor
= (divisor
[i
] >> (offset
/ 2)) & 0xf;
2429 info
->port
.flags
= STD_COM_FLAGS
;
2430 if (info
->custom_divisor
)
2431 info
->port
.flags
|= ASYNC_SPD_CUST
;
2432 info
->magic
= ESP_MAGIC
;
2433 info
->close_delay
= 5*HZ
/10;
2434 info
->closing_wait
= 30*HZ
;
2435 info
->config
.rx_timeout
= rx_timeout
;
2436 info
->config
.flow_on
= flow_on
;
2437 info
->config
.flow_off
= flow_off
;
2438 info
->config
.pio_threshold
= pio_threshold
;
2439 info
->next_port
= ports
;
2440 init_waitqueue_head(&info
->port
.open_wait
);
2441 init_waitqueue_head(&info
->port
.close_wait
);
2442 init_waitqueue_head(&info
->delta_msr_wait
);
2443 init_waitqueue_head(&info
->break_wait
);
2445 printk(KERN_INFO
"ttyP%d at 0x%04x (irq = %d) is an ESP ",
2446 info
->line
, info
->io_port
, info
->irq
);
2448 if (info
->line
% 8) {
2449 printk("secondary port\n");
2450 /* 8 port cards can't do DMA */
2451 info
->stat_flags
|= ESP_STAT_NEVER_DMA
;
2454 last_primary
->stat_flags
|= ESP_STAT_NEVER_DMA
;
2456 printk("primary port\n");
2457 last_primary
= info
;
2462 info
->stat_flags
|= ESP_STAT_NEVER_DMA
;
2464 info
= kzalloc(sizeof(struct esp_struct
), GFP_KERNEL
);
2466 printk(KERN_ERR
"Couldn't allocate memory for esp serial device information\n");
2467 /* allow use of the already detected ports */
2471 spin_lock_init(&info
->lock
);
2472 /* rx_trigger, tx_trigger are needed by autoconfig */
2473 info
->config
.rx_trigger
= rx_trigger
;
2474 info
->config
.tx_trigger
= tx_trigger
;
2482 } while (i
< NR_PRIMARY
);
2484 /* free the last port memory allocation */
2490 static void __exit
espserial_exit(void)
2493 struct esp_struct
*temp_async
;
2494 struct esp_pio_buffer
*pio_buf
;
2496 e1
= tty_unregister_driver(esp_driver
);
2498 printk(KERN_ERR
"esp: failed to unregister driver (%d)\n", e1
);
2499 put_tty_driver(esp_driver
);
2503 release_region(ports
->io_port
, REGION_SIZE
);
2504 temp_async
= ports
->next_port
;
2510 free_pages((unsigned long)dma_buffer
,
2511 get_order(DMA_BUFFER_SZ
));
2513 while (free_pio_buf
) {
2514 pio_buf
= free_pio_buf
->next
;
2515 kfree(free_pio_buf
);
2516 free_pio_buf
= pio_buf
;
2520 module_init(espserial_init
);
2521 module_exit(espserial_exit
);