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�pl 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>
62 #include <asm/system.h>
64 #include <asm/bitops.h>
67 #include <linux/slab.h>
68 #include <asm/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;
114 /* serial subtype definitions */
115 #define SERIAL_TYPE_NORMAL 1
118 * Serial driver configuration section. Here are the various options:
120 * SERIAL_PARANOIA_CHECK
121 * Check the magic number for the esp_structure where
125 #undef SERIAL_PARANOIA_CHECK
126 #define SERIAL_DO_RESTART
128 #undef SERIAL_DEBUG_INTR
129 #undef SERIAL_DEBUG_OPEN
130 #undef SERIAL_DEBUG_FLOW
132 #if defined(MODULE) && defined(SERIAL_DEBUG_MCOUNT)
133 #define DBG_CNT(s) printk("(%s): [%x] refc=%d, serc=%d, ttyc=%d -> %s\n", \
134 tty->name, (info->flags), serial_driver.refcount,info->count,tty->count,s)
139 static struct esp_struct *ports;
141 static void change_speed(struct esp_struct *info);
142 static void rs_wait_until_sent(struct tty_struct *, int);
145 * The ESP card has a clock rate of 14.7456 MHz (that is, 2**ESPC_SCALE
146 * times the normal 1.8432 Mhz clock of most serial boards).
148 #define BASE_BAUD ((1843200 / 16) * (1 << ESPC_SCALE))
150 /* Standard COM flags (except for COM4, because of the 8514 problem) */
151 #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST)
154 * tmp_buf is used as a temporary buffer by serial_write. We need to
155 * lock it in case the memcpy_fromfs blocks while swapping in a page,
156 * and some other program tries to do a serial write at the same time.
157 * Since the lock will only come under contention when the system is
158 * swapping and available memory is low, it makes sense to share one
159 * buffer across all the serial ports, since it significantly saves
160 * memory if large numbers of serial ports are open.
162 static unsigned char *tmp_buf;
163 static DECLARE_MUTEX(tmp_buf_sem);
165 static inline int serial_paranoia_check(struct esp_struct *info,
166 char *name, const char *routine)
168 #ifdef SERIAL_PARANOIA_CHECK
169 static const char badmagic[] = KERN_WARNING
170 "Warning: bad magic number for serial struct (%s) in %s\n";
171 static const char badinfo[] = KERN_WARNING
172 "Warning: null esp_struct for (%s) in %s\n";
175 printk(badinfo, name, routine);
178 if (info->magic != ESP_MAGIC) {
179 printk(badmagic, name, routine);
186 static inline unsigned int serial_in(struct esp_struct *info, int offset)
188 return inb(info->port + offset);
191 static inline void serial_out(struct esp_struct *info, int offset,
194 outb(value, info->port+offset);
198 * ------------------------------------------------------------
199 * rs_stop() and rs_start()
201 * This routines are called before setting or resetting tty->stopped.
202 * They enable or disable transmitter interrupts, as necessary.
203 * ------------------------------------------------------------
205 static void rs_stop(struct tty_struct *tty)
207 struct esp_struct *info = (struct esp_struct *)tty->driver_data;
210 if (serial_paranoia_check(info, tty->name, "rs_stop"))
213 spin_lock_irqsave(&info->lock, flags);
214 if (info->IER & UART_IER_THRI) {
215 info->IER &= ~UART_IER_THRI;
216 serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
217 serial_out(info, UART_ESI_CMD2, info->IER);
219 spin_unlock_irqrestore(&info->lock, flags);
222 static void rs_start(struct tty_struct *tty)
224 struct esp_struct *info = (struct esp_struct *)tty->driver_data;
227 if (serial_paranoia_check(info, tty->name, "rs_start"))
230 spin_lock_irqsave(&info->lock, flags);
231 if (info->xmit_cnt && info->xmit_buf && !(info->IER & UART_IER_THRI)) {
232 info->IER |= UART_IER_THRI;
233 serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
234 serial_out(info, UART_ESI_CMD2, info->IER);
236 spin_unlock_irqrestore(&info->lock, flags);
240 * ----------------------------------------------------------------------
242 * Here starts the interrupt handling routines. All of the following
243 * subroutines are declared as inline and are folded into
244 * rs_interrupt(). They were separated out for readability's sake.
246 * Note: rs_interrupt() is a "fast" interrupt, which means that it
247 * runs with interrupts turned off. People who may want to modify
248 * rs_interrupt() should try to keep the interrupt handler as fast as
249 * possible. After you are done making modifications, it is not a bad
252 * gcc -S -DKERNEL -Wall -Wstrict-prototypes -O6 -fomit-frame-pointer serial.c
254 * and look at the resulting assemble code in serial.s.
256 * - Ted Ts'o (tytso@mit.edu), 7-Mar-93
257 * -----------------------------------------------------------------------
261 * This routine is used by the interrupt handler to schedule
262 * processing in the software interrupt portion of the driver.
264 static inline void rs_sched_event(struct esp_struct *info,
267 info->event |= 1 << event;
268 schedule_work(&info->tqueue);
271 static DEFINE_SPINLOCK(pio_lock);
273 static inline struct esp_pio_buffer *get_pio_buffer(void)
275 struct esp_pio_buffer *buf;
278 spin_lock_irqsave(&pio_lock, flags);
281 free_pio_buf = buf->next;
283 buf = kmalloc(sizeof(struct esp_pio_buffer), GFP_ATOMIC);
285 spin_unlock_irqrestore(&pio_lock, flags);
289 static inline void release_pio_buffer(struct esp_pio_buffer *buf)
292 spin_lock_irqsave(&pio_lock, flags);
293 buf->next = free_pio_buf;
295 spin_unlock_irqrestore(&pio_lock, flags);
298 static inline void receive_chars_pio(struct esp_struct *info, int num_bytes)
300 struct tty_struct *tty = info->tty;
302 struct esp_pio_buffer *pio_buf;
303 struct esp_pio_buffer *err_buf;
304 unsigned char status_mask;
306 pio_buf = get_pio_buffer();
311 err_buf = get_pio_buffer();
314 release_pio_buffer(pio_buf);
318 status_mask = (info->read_status_mask >> 2) & 0x07;
320 for (i = 0; i < num_bytes - 1; i += 2) {
321 *((unsigned short *)(pio_buf->data + i)) =
322 inw(info->port + UART_ESI_RX);
323 err_buf->data[i] = serial_in(info, UART_ESI_RWS);
324 err_buf->data[i + 1] = (err_buf->data[i] >> 3) & status_mask;
325 err_buf->data[i] &= status_mask;
328 if (num_bytes & 0x0001) {
329 pio_buf->data[num_bytes - 1] = serial_in(info, UART_ESI_RX);
330 err_buf->data[num_bytes - 1] =
331 (serial_in(info, UART_ESI_RWS) >> 3) & status_mask;
334 /* make sure everything is still ok since interrupts were enabled */
338 release_pio_buffer(pio_buf);
339 release_pio_buffer(err_buf);
340 info->stat_flags &= ~ESP_STAT_RX_TIMEOUT;
344 status_mask = (info->ignore_status_mask >> 2) & 0x07;
346 for (i = 0; i < num_bytes; i++) {
347 if (!(err_buf->data[i] & status_mask)) {
348 *(tty->flip.char_buf_ptr++) = pio_buf->data[i];
350 if (err_buf->data[i] & 0x04) {
351 *(tty->flip.flag_buf_ptr++) = TTY_BREAK;
353 if (info->flags & ASYNC_SAK)
356 else if (err_buf->data[i] & 0x02)
357 *(tty->flip.flag_buf_ptr++) = TTY_FRAME;
358 else if (err_buf->data[i] & 0x01)
359 *(tty->flip.flag_buf_ptr++) = TTY_PARITY;
361 *(tty->flip.flag_buf_ptr++) = 0;
367 schedule_delayed_work(&tty->flip.work, 1);
369 info->stat_flags &= ~ESP_STAT_RX_TIMEOUT;
370 release_pio_buffer(pio_buf);
371 release_pio_buffer(err_buf);
374 static inline void receive_chars_dma(struct esp_struct *info, int num_bytes)
377 info->stat_flags &= ~ESP_STAT_RX_TIMEOUT;
378 dma_bytes = num_bytes;
379 info->stat_flags |= ESP_STAT_DMA_RX;
381 flags=claim_dma_lock();
384 set_dma_mode(dma, DMA_MODE_READ);
385 set_dma_addr(dma, isa_virt_to_bus(dma_buffer));
386 set_dma_count(dma, dma_bytes);
388 release_dma_lock(flags);
390 serial_out(info, UART_ESI_CMD1, ESI_START_DMA_RX);
393 static inline void receive_chars_dma_done(struct esp_struct *info,
396 struct tty_struct *tty = info->tty;
401 flags=claim_dma_lock();
405 info->stat_flags &= ~ESP_STAT_DMA_RX;
406 num_bytes = dma_bytes - get_dma_residue(dma);
407 release_dma_lock(flags);
409 info->icount.rx += num_bytes;
411 memcpy(tty->flip.char_buf_ptr, dma_buffer, num_bytes);
412 tty->flip.char_buf_ptr += num_bytes;
413 tty->flip.count += num_bytes;
414 memset(tty->flip.flag_buf_ptr, 0, num_bytes);
415 tty->flip.flag_buf_ptr += num_bytes;
418 tty->flip.flag_buf_ptr--;
420 status &= (0x1c & info->read_status_mask);
422 if (status & info->ignore_status_mask) {
424 tty->flip.char_buf_ptr--;
425 tty->flip.flag_buf_ptr--;
426 } else if (status & 0x10) {
427 *tty->flip.flag_buf_ptr = TTY_BREAK;
428 (info->icount.brk)++;
429 if (info->flags & ASYNC_SAK)
431 } else if (status & 0x08) {
432 *tty->flip.flag_buf_ptr = TTY_FRAME;
433 (info->icount.frame)++;
435 else if (status & 0x04) {
436 *tty->flip.flag_buf_ptr = TTY_PARITY;
437 (info->icount.parity)++;
440 tty->flip.flag_buf_ptr++;
442 schedule_delayed_work(&tty->flip.work, 1);
445 if (dma_bytes != num_bytes) {
446 num_bytes = dma_bytes - num_bytes;
448 receive_chars_dma(info, num_bytes);
453 /* Caller must hold info->lock */
455 static inline void transmit_chars_pio(struct esp_struct *info,
459 struct esp_pio_buffer *pio_buf;
461 pio_buf = get_pio_buffer();
466 while (space_avail && info->xmit_cnt) {
467 if (info->xmit_tail + space_avail <= ESP_XMIT_SIZE) {
468 memcpy(pio_buf->data,
469 &(info->xmit_buf[info->xmit_tail]),
472 i = ESP_XMIT_SIZE - info->xmit_tail;
473 memcpy(pio_buf->data,
474 &(info->xmit_buf[info->xmit_tail]), i);
475 memcpy(&(pio_buf->data[i]), info->xmit_buf,
479 info->xmit_cnt -= space_avail;
480 info->xmit_tail = (info->xmit_tail + space_avail) &
483 for (i = 0; i < space_avail - 1; i += 2) {
484 outw(*((unsigned short *)(pio_buf->data + i)),
485 info->port + UART_ESI_TX);
488 if (space_avail & 0x0001)
489 serial_out(info, UART_ESI_TX,
490 pio_buf->data[space_avail - 1]);
492 if (info->xmit_cnt) {
493 serial_out(info, UART_ESI_CMD1, ESI_NO_COMMAND);
494 serial_out(info, UART_ESI_CMD1, ESI_GET_TX_AVAIL);
495 space_avail = serial_in(info, UART_ESI_STAT1) << 8;
496 space_avail |= serial_in(info, UART_ESI_STAT2);
498 if (space_avail > info->xmit_cnt)
499 space_avail = info->xmit_cnt;
503 if (info->xmit_cnt < WAKEUP_CHARS) {
504 rs_sched_event(info, ESP_EVENT_WRITE_WAKEUP);
506 #ifdef SERIAL_DEBUG_INTR
510 if (info->xmit_cnt <= 0) {
511 info->IER &= ~UART_IER_THRI;
512 serial_out(info, UART_ESI_CMD1,
514 serial_out(info, UART_ESI_CMD2, info->IER);
518 release_pio_buffer(pio_buf);
521 /* Caller must hold info->lock */
522 static inline void transmit_chars_dma(struct esp_struct *info, int num_bytes)
526 dma_bytes = num_bytes;
528 if (info->xmit_tail + dma_bytes <= ESP_XMIT_SIZE) {
529 memcpy(dma_buffer, &(info->xmit_buf[info->xmit_tail]),
532 int i = ESP_XMIT_SIZE - info->xmit_tail;
533 memcpy(dma_buffer, &(info->xmit_buf[info->xmit_tail]),
535 memcpy(&(dma_buffer[i]), info->xmit_buf, dma_bytes - i);
538 info->xmit_cnt -= dma_bytes;
539 info->xmit_tail = (info->xmit_tail + dma_bytes) & (ESP_XMIT_SIZE - 1);
541 if (info->xmit_cnt < WAKEUP_CHARS) {
542 rs_sched_event(info, ESP_EVENT_WRITE_WAKEUP);
544 #ifdef SERIAL_DEBUG_INTR
548 if (info->xmit_cnt <= 0) {
549 info->IER &= ~UART_IER_THRI;
550 serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
551 serial_out(info, UART_ESI_CMD2, info->IER);
555 info->stat_flags |= ESP_STAT_DMA_TX;
557 flags=claim_dma_lock();
560 set_dma_mode(dma, DMA_MODE_WRITE);
561 set_dma_addr(dma, isa_virt_to_bus(dma_buffer));
562 set_dma_count(dma, dma_bytes);
564 release_dma_lock(flags);
566 serial_out(info, UART_ESI_CMD1, ESI_START_DMA_TX);
569 static inline void transmit_chars_dma_done(struct esp_struct *info)
575 flags=claim_dma_lock();
579 num_bytes = dma_bytes - get_dma_residue(dma);
580 info->icount.tx += dma_bytes;
581 release_dma_lock(flags);
583 if (dma_bytes != num_bytes) {
584 dma_bytes -= num_bytes;
585 memmove(dma_buffer, dma_buffer + num_bytes, dma_bytes);
587 flags=claim_dma_lock();
590 set_dma_mode(dma, DMA_MODE_WRITE);
591 set_dma_addr(dma, isa_virt_to_bus(dma_buffer));
592 set_dma_count(dma, dma_bytes);
594 release_dma_lock(flags);
596 serial_out(info, UART_ESI_CMD1, ESI_START_DMA_TX);
599 info->stat_flags &= ~ESP_STAT_DMA_TX;
603 static inline void check_modem_status(struct esp_struct *info)
607 serial_out(info, UART_ESI_CMD1, ESI_GET_UART_STAT);
608 status = serial_in(info, UART_ESI_STAT2);
610 if (status & UART_MSR_ANY_DELTA) {
611 /* update input line counters */
612 if (status & UART_MSR_TERI)
614 if (status & UART_MSR_DDSR)
616 if (status & UART_MSR_DDCD)
618 if (status & UART_MSR_DCTS)
620 wake_up_interruptible(&info->delta_msr_wait);
623 if ((info->flags & ASYNC_CHECK_CD) && (status & UART_MSR_DDCD)) {
624 #if (defined(SERIAL_DEBUG_OPEN) || defined(SERIAL_DEBUG_INTR))
625 printk("ttys%d CD now %s...", info->line,
626 (status & UART_MSR_DCD) ? "on" : "off");
628 if (status & UART_MSR_DCD)
629 wake_up_interruptible(&info->open_wait);
631 #ifdef SERIAL_DEBUG_OPEN
632 printk("scheduling hangup...");
634 schedule_work(&info->tqueue_hangup);
640 * This is the serial driver's interrupt routine
642 static irqreturn_t rs_interrupt_single(int irq, void *dev_id,
643 struct pt_regs *regs)
645 struct esp_struct * info;
647 unsigned int scratch;
649 #ifdef SERIAL_DEBUG_INTR
650 printk("rs_interrupt_single(%d)...", irq);
652 info = (struct esp_struct *)dev_id;
654 scratch = serial_in(info, UART_ESI_SID);
656 spin_lock(&info->lock);
659 spin_unlock(&info->lock);
663 if (scratch & 0x04) { /* error */
664 serial_out(info, UART_ESI_CMD1, ESI_GET_ERR_STAT);
665 err_status = serial_in(info, UART_ESI_STAT1);
666 serial_in(info, UART_ESI_STAT2);
668 if (err_status & 0x01)
669 info->stat_flags |= ESP_STAT_RX_TIMEOUT;
671 if (err_status & 0x20) /* UART status */
672 check_modem_status(info);
674 if (err_status & 0x80) /* Start break */
675 wake_up_interruptible(&info->break_wait);
678 if ((scratch & 0x88) || /* DMA completed or timed out */
679 (err_status & 0x1c) /* receive error */) {
680 if (info->stat_flags & ESP_STAT_DMA_RX)
681 receive_chars_dma_done(info, err_status);
682 else if (info->stat_flags & ESP_STAT_DMA_TX)
683 transmit_chars_dma_done(info);
686 if (!(info->stat_flags & (ESP_STAT_DMA_RX | ESP_STAT_DMA_TX)) &&
687 ((scratch & 0x01) || (info->stat_flags & ESP_STAT_RX_TIMEOUT)) &&
688 (info->IER & UART_IER_RDI)) {
691 serial_out(info, UART_ESI_CMD1, ESI_NO_COMMAND);
692 serial_out(info, UART_ESI_CMD1, ESI_GET_RX_AVAIL);
693 num_bytes = serial_in(info, UART_ESI_STAT1) << 8;
694 num_bytes |= serial_in(info, UART_ESI_STAT2);
696 if (num_bytes > (TTY_FLIPBUF_SIZE - info->tty->flip.count))
697 num_bytes = TTY_FLIPBUF_SIZE - info->tty->flip.count;
701 (info->stat_flags & ESP_STAT_USE_PIO) ||
702 (num_bytes <= info->config.pio_threshold))
703 receive_chars_pio(info, num_bytes);
705 receive_chars_dma(info, num_bytes);
709 if (!(info->stat_flags & (ESP_STAT_DMA_RX | ESP_STAT_DMA_TX)) &&
710 (scratch & 0x02) && (info->IER & UART_IER_THRI)) {
711 if ((info->xmit_cnt <= 0) || info->tty->stopped) {
712 info->IER &= ~UART_IER_THRI;
713 serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
714 serial_out(info, UART_ESI_CMD2, info->IER);
718 serial_out(info, UART_ESI_CMD1, ESI_NO_COMMAND);
719 serial_out(info, UART_ESI_CMD1, ESI_GET_TX_AVAIL);
720 num_bytes = serial_in(info, UART_ESI_STAT1) << 8;
721 num_bytes |= serial_in(info, UART_ESI_STAT2);
723 if (num_bytes > info->xmit_cnt)
724 num_bytes = info->xmit_cnt;
728 (info->stat_flags & ESP_STAT_USE_PIO) ||
729 (num_bytes <= info->config.pio_threshold))
730 transmit_chars_pio(info, num_bytes);
732 transmit_chars_dma(info, num_bytes);
737 info->last_active = jiffies;
739 #ifdef SERIAL_DEBUG_INTR
742 spin_unlock(&info->lock);
747 * -------------------------------------------------------------------
748 * Here ends the serial interrupt routines.
749 * -------------------------------------------------------------------
752 static void do_softint(void *private_)
754 struct esp_struct *info = (struct esp_struct *) private_;
755 struct tty_struct *tty;
761 if (test_and_clear_bit(ESP_EVENT_WRITE_WAKEUP, &info->event)) {
767 * This routine is called from the scheduler tqueue when the interrupt
768 * routine has signalled that a hangup has occurred. The path of
769 * hangup processing is:
771 * serial interrupt routine -> (scheduler tqueue) ->
772 * do_serial_hangup() -> tty->hangup() -> esp_hangup()
775 static void do_serial_hangup(void *private_)
777 struct esp_struct *info = (struct esp_struct *) private_;
778 struct tty_struct *tty;
786 * ---------------------------------------------------------------
787 * Low level utility subroutines for the serial driver: routines to
788 * figure out the appropriate timeout for an interrupt chain, routines
789 * to initialize and startup a serial port, and routines to shutdown a
790 * serial port. Useful stuff like that.
792 * Caller should hold lock
793 * ---------------------------------------------------------------
796 static inline void esp_basic_init(struct esp_struct * info)
798 /* put ESPC in enhanced mode */
799 serial_out(info, UART_ESI_CMD1, ESI_SET_MODE);
801 if (info->stat_flags & ESP_STAT_NEVER_DMA)
802 serial_out(info, UART_ESI_CMD2, 0x01);
804 serial_out(info, UART_ESI_CMD2, 0x31);
806 /* disable interrupts for now */
807 serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
808 serial_out(info, UART_ESI_CMD2, 0x00);
810 /* set interrupt and DMA channel */
811 serial_out(info, UART_ESI_CMD1, ESI_SET_IRQ);
813 if (info->stat_flags & ESP_STAT_NEVER_DMA)
814 serial_out(info, UART_ESI_CMD2, 0x01);
816 serial_out(info, UART_ESI_CMD2, (dma << 4) | 0x01);
818 serial_out(info, UART_ESI_CMD1, ESI_SET_ENH_IRQ);
820 if (info->line % 8) /* secondary port */
821 serial_out(info, UART_ESI_CMD2, 0x0d); /* shared */
822 else if (info->irq == 9)
823 serial_out(info, UART_ESI_CMD2, 0x02);
825 serial_out(info, UART_ESI_CMD2, info->irq);
827 /* set error status mask (check this) */
828 serial_out(info, UART_ESI_CMD1, ESI_SET_ERR_MASK);
830 if (info->stat_flags & ESP_STAT_NEVER_DMA)
831 serial_out(info, UART_ESI_CMD2, 0xa1);
833 serial_out(info, UART_ESI_CMD2, 0xbd);
835 serial_out(info, UART_ESI_CMD2, 0x00);
837 /* set DMA timeout */
838 serial_out(info, UART_ESI_CMD1, ESI_SET_DMA_TMOUT);
839 serial_out(info, UART_ESI_CMD2, 0xff);
841 /* set FIFO trigger levels */
842 serial_out(info, UART_ESI_CMD1, ESI_SET_TRIGGER);
843 serial_out(info, UART_ESI_CMD2, info->config.rx_trigger >> 8);
844 serial_out(info, UART_ESI_CMD2, info->config.rx_trigger);
845 serial_out(info, UART_ESI_CMD2, info->config.tx_trigger >> 8);
846 serial_out(info, UART_ESI_CMD2, info->config.tx_trigger);
848 /* Set clock scaling and wait states */
849 serial_out(info, UART_ESI_CMD1, ESI_SET_PRESCALAR);
850 serial_out(info, UART_ESI_CMD2, 0x04 | ESPC_SCALE);
852 /* set reinterrupt pacing */
853 serial_out(info, UART_ESI_CMD1, ESI_SET_REINTR);
854 serial_out(info, UART_ESI_CMD2, 0xff);
857 static int startup(struct esp_struct * info)
861 unsigned int num_chars;
863 spin_lock_irqsave(&info->lock, flags);
865 if (info->flags & ASYNC_INITIALIZED)
868 if (!info->xmit_buf) {
869 info->xmit_buf = (unsigned char *)get_zeroed_page(GFP_ATOMIC);
875 #ifdef SERIAL_DEBUG_OPEN
876 printk("starting up ttys%d (irq %d)...", info->line, info->irq);
879 /* Flush the RX buffer. Using the ESI flush command may cause */
880 /* wild interrupts, so read all the data instead. */
882 serial_out(info, UART_ESI_CMD1, ESI_NO_COMMAND);
883 serial_out(info, UART_ESI_CMD1, ESI_GET_RX_AVAIL);
884 num_chars = serial_in(info, UART_ESI_STAT1) << 8;
885 num_chars |= serial_in(info, UART_ESI_STAT2);
887 while (num_chars > 1) {
888 inw(info->port + UART_ESI_RX);
893 serial_in(info, UART_ESI_RX);
895 /* set receive character timeout */
896 serial_out(info, UART_ESI_CMD1, ESI_SET_RX_TIMEOUT);
897 serial_out(info, UART_ESI_CMD2, info->config.rx_timeout);
899 /* clear all flags except the "never DMA" flag */
900 info->stat_flags &= ESP_STAT_NEVER_DMA;
902 if (info->stat_flags & ESP_STAT_NEVER_DMA)
903 info->stat_flags |= ESP_STAT_USE_PIO;
905 spin_unlock_irqrestore(&info->lock, flags);
911 retval = request_irq(info->irq, rs_interrupt_single, SA_SHIRQ,
915 if (capable(CAP_SYS_ADMIN)) {
917 set_bit(TTY_IO_ERROR,
924 if (!(info->stat_flags & ESP_STAT_USE_PIO) && !dma_buffer) {
925 dma_buffer = (char *)__get_dma_pages(
926 GFP_KERNEL, get_order(DMA_BUFFER_SZ));
928 /* use PIO mode if DMA buf/chan cannot be allocated */
930 info->stat_flags |= ESP_STAT_USE_PIO;
931 else if (request_dma(dma, "esp serial")) {
932 free_pages((unsigned long)dma_buffer,
933 get_order(DMA_BUFFER_SZ));
935 info->stat_flags |= ESP_STAT_USE_PIO;
940 info->MCR = UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2;
942 spin_lock_irqsave(&info->lock, flags);
943 serial_out(info, UART_ESI_CMD1, ESI_WRITE_UART);
944 serial_out(info, UART_ESI_CMD2, UART_MCR);
945 serial_out(info, UART_ESI_CMD2, info->MCR);
948 * Finally, enable interrupts
950 /* info->IER = UART_IER_MSI | UART_IER_RLSI | UART_IER_RDI; */
951 info->IER = UART_IER_RLSI | UART_IER_RDI | UART_IER_DMA_TMOUT |
953 serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
954 serial_out(info, UART_ESI_CMD2, info->IER);
957 clear_bit(TTY_IO_ERROR, &info->tty->flags);
958 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
959 spin_unlock_irqrestore(&info->lock, flags);
962 * Set up the tty->alt_speed kludge
965 if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
966 info->tty->alt_speed = 57600;
967 if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
968 info->tty->alt_speed = 115200;
969 if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
970 info->tty->alt_speed = 230400;
971 if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
972 info->tty->alt_speed = 460800;
976 * set the speed of the serial port
979 info->flags |= ASYNC_INITIALIZED;
983 spin_unlock_irqrestore(&info->lock, flags);
989 * This routine will shutdown a serial port; interrupts are disabled, and
990 * DTR is dropped if the hangup on close termio flag is on.
992 static void shutdown(struct esp_struct * info)
994 unsigned long flags, f;
996 if (!(info->flags & ASYNC_INITIALIZED))
999 #ifdef SERIAL_DEBUG_OPEN
1000 printk("Shutting down serial port %d (irq %d)....", info->line,
1004 spin_lock_irqsave(&info->lock, flags);
1006 * clear delta_msr_wait queue to avoid mem leaks: we may free the irq
1007 * here so the queue might never be waken up
1009 wake_up_interruptible(&info->delta_msr_wait);
1010 wake_up_interruptible(&info->break_wait);
1012 /* stop a DMA transfer on the port being closed */
1013 /* DMA lock is higher priority always */
1014 if (info->stat_flags & (ESP_STAT_DMA_RX | ESP_STAT_DMA_TX)) {
1018 release_dma_lock(f);
1026 free_irq(info->irq, info);
1029 struct esp_struct *current_port = ports;
1031 while (current_port) {
1032 if ((current_port != info) &&
1033 (current_port->flags & ASYNC_INITIALIZED))
1036 current_port = current_port->next_port;
1039 if (!current_port) {
1041 free_pages((unsigned long)dma_buffer,
1042 get_order(DMA_BUFFER_SZ));
1047 if (info->xmit_buf) {
1048 free_page((unsigned long) info->xmit_buf);
1049 info->xmit_buf = NULL;
1053 serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
1054 serial_out(info, UART_ESI_CMD2, 0x00);
1056 if (!info->tty || (info->tty->termios->c_cflag & HUPCL))
1057 info->MCR &= ~(UART_MCR_DTR|UART_MCR_RTS);
1059 info->MCR &= ~UART_MCR_OUT2;
1060 serial_out(info, UART_ESI_CMD1, ESI_WRITE_UART);
1061 serial_out(info, UART_ESI_CMD2, UART_MCR);
1062 serial_out(info, UART_ESI_CMD2, info->MCR);
1065 set_bit(TTY_IO_ERROR, &info->tty->flags);
1067 info->flags &= ~ASYNC_INITIALIZED;
1068 spin_unlock_irqrestore(&info->lock, flags);
1072 * This routine is called to set the UART divisor registers to match
1073 * the specified baud rate for a serial port.
1075 static void change_speed(struct esp_struct *info)
1077 unsigned short port;
1079 unsigned cflag,cval;
1081 unsigned char flow1 = 0, flow2 = 0;
1082 unsigned long flags;
1084 if (!info->tty || !info->tty->termios)
1086 cflag = info->tty->termios->c_cflag;
1089 /* byte size and parity */
1090 switch (cflag & CSIZE) {
1091 case CS5: cval = 0x00; bits = 7; break;
1092 case CS6: cval = 0x01; bits = 8; break;
1093 case CS7: cval = 0x02; bits = 9; break;
1094 case CS8: cval = 0x03; bits = 10; break;
1095 default: cval = 0x00; bits = 7; break;
1097 if (cflag & CSTOPB) {
1101 if (cflag & PARENB) {
1102 cval |= UART_LCR_PARITY;
1105 if (!(cflag & PARODD))
1106 cval |= UART_LCR_EPAR;
1109 cval |= UART_LCR_SPAR;
1112 baud = tty_get_baud_rate(info->tty);
1113 if (baud == 38400 &&
1114 ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST))
1115 quot = info->custom_divisor;
1118 /* Special case since 134 is really 134.5 */
1119 quot = (2*BASE_BAUD / 269);
1121 quot = BASE_BAUD / baud;
1123 /* If the quotient is ever zero, default to 9600 bps */
1125 quot = BASE_BAUD / 9600;
1127 info->timeout = ((1024 * HZ * bits * quot) / BASE_BAUD) + (HZ / 50);
1129 /* CTS flow control flag and modem status interrupts */
1130 /* info->IER &= ~UART_IER_MSI; */
1131 if (cflag & CRTSCTS) {
1132 info->flags |= ASYNC_CTS_FLOW;
1133 /* info->IER |= UART_IER_MSI; */
1137 info->flags &= ~ASYNC_CTS_FLOW;
1139 info->flags &= ~ASYNC_CHECK_CD;
1141 info->flags |= ASYNC_CHECK_CD;
1142 /* info->IER |= UART_IER_MSI; */
1146 * Set up parity check flag
1148 #define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
1150 info->read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
1151 if (I_INPCK(info->tty))
1152 info->read_status_mask |= UART_LSR_FE | UART_LSR_PE;
1153 if (I_BRKINT(info->tty) || I_PARMRK(info->tty))
1154 info->read_status_mask |= UART_LSR_BI;
1156 info->ignore_status_mask = 0;
1158 /* This should be safe, but for some broken bits of hardware... */
1159 if (I_IGNPAR(info->tty)) {
1160 info->ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
1161 info->read_status_mask |= UART_LSR_PE | UART_LSR_FE;
1164 if (I_IGNBRK(info->tty)) {
1165 info->ignore_status_mask |= UART_LSR_BI;
1166 info->read_status_mask |= UART_LSR_BI;
1168 * If we're ignore parity and break indicators, ignore
1169 * overruns too. (For real raw support).
1171 if (I_IGNPAR(info->tty)) {
1172 info->ignore_status_mask |= UART_LSR_OE | \
1173 UART_LSR_PE | UART_LSR_FE;
1174 info->read_status_mask |= UART_LSR_OE | \
1175 UART_LSR_PE | UART_LSR_FE;
1179 if (I_IXOFF(info->tty))
1182 spin_lock_irqsave(&info->lock, flags);
1184 serial_out(info, UART_ESI_CMD1, ESI_SET_BAUD);
1185 serial_out(info, UART_ESI_CMD2, quot >> 8);
1186 serial_out(info, UART_ESI_CMD2, quot & 0xff);
1188 /* set data bits, parity, etc. */
1189 serial_out(info, UART_ESI_CMD1, ESI_WRITE_UART);
1190 serial_out(info, UART_ESI_CMD2, UART_LCR);
1191 serial_out(info, UART_ESI_CMD2, cval);
1193 /* Enable flow control */
1194 serial_out(info, UART_ESI_CMD1, ESI_SET_FLOW_CNTL);
1195 serial_out(info, UART_ESI_CMD2, flow1);
1196 serial_out(info, UART_ESI_CMD2, flow2);
1198 /* set flow control characters (XON/XOFF only) */
1199 if (I_IXOFF(info->tty)) {
1200 serial_out(info, UART_ESI_CMD1, ESI_SET_FLOW_CHARS);
1201 serial_out(info, UART_ESI_CMD2, START_CHAR(info->tty));
1202 serial_out(info, UART_ESI_CMD2, STOP_CHAR(info->tty));
1203 serial_out(info, UART_ESI_CMD2, 0x10);
1204 serial_out(info, UART_ESI_CMD2, 0x21);
1205 switch (cflag & CSIZE) {
1207 serial_out(info, UART_ESI_CMD2, 0x1f);
1210 serial_out(info, UART_ESI_CMD2, 0x3f);
1214 serial_out(info, UART_ESI_CMD2, 0x7f);
1217 serial_out(info, UART_ESI_CMD2, 0xff);
1222 /* Set high/low water */
1223 serial_out(info, UART_ESI_CMD1, ESI_SET_FLOW_LVL);
1224 serial_out(info, UART_ESI_CMD2, info->config.flow_off >> 8);
1225 serial_out(info, UART_ESI_CMD2, info->config.flow_off);
1226 serial_out(info, UART_ESI_CMD2, info->config.flow_on >> 8);
1227 serial_out(info, UART_ESI_CMD2, info->config.flow_on);
1229 spin_unlock_irqrestore(&info->lock, flags);
1232 static void rs_put_char(struct tty_struct *tty, unsigned char ch)
1234 struct esp_struct *info = (struct esp_struct *)tty->driver_data;
1235 unsigned long flags;
1237 if (serial_paranoia_check(info, tty->name, "rs_put_char"))
1240 if (!tty || !info->xmit_buf)
1243 spin_lock_irqsave(&info->lock, flags);
1244 if (info->xmit_cnt < ESP_XMIT_SIZE - 1) {
1245 info->xmit_buf[info->xmit_head++] = ch;
1246 info->xmit_head &= ESP_XMIT_SIZE-1;
1249 spin_unlock_irqrestore(&info->lock, flags);
1252 static void rs_flush_chars(struct tty_struct *tty)
1254 struct esp_struct *info = (struct esp_struct *)tty->driver_data;
1255 unsigned long flags;
1257 if (serial_paranoia_check(info, tty->name, "rs_flush_chars"))
1260 spin_lock_irqsave(&info->lock, flags);
1262 if (info->xmit_cnt <= 0 || tty->stopped || !info->xmit_buf)
1265 if (!(info->IER & UART_IER_THRI)) {
1266 info->IER |= UART_IER_THRI;
1267 serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
1268 serial_out(info, UART_ESI_CMD2, info->IER);
1271 spin_unlock_irqrestore(&info->lock, flags);
1274 static int rs_write(struct tty_struct * tty,
1275 const unsigned char *buf, int count)
1278 struct esp_struct *info = (struct esp_struct *)tty->driver_data;
1279 unsigned long flags;
1281 if (serial_paranoia_check(info, tty->name, "rs_write"))
1284 if (!tty || !info->xmit_buf || !tmp_buf)
1288 /* Thanks to R. Wolff for suggesting how to do this with */
1289 /* interrupts enabled */
1292 t = ESP_XMIT_SIZE - info->xmit_cnt - 1;
1297 t = ESP_XMIT_SIZE - info->xmit_head;
1305 memcpy(info->xmit_buf + info->xmit_head, buf, c);
1307 info->xmit_head = (info->xmit_head + c) & (ESP_XMIT_SIZE-1);
1308 info->xmit_cnt += c;
1314 spin_lock_irqsave(&info->lock, flags);
1316 if (info->xmit_cnt && !tty->stopped && !(info->IER & UART_IER_THRI)) {
1317 info->IER |= UART_IER_THRI;
1318 serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
1319 serial_out(info, UART_ESI_CMD2, info->IER);
1322 spin_unlock_irqrestore(&info->lock, flags);
1326 static int rs_write_room(struct tty_struct *tty)
1328 struct esp_struct *info = (struct esp_struct *)tty->driver_data;
1330 unsigned long flags;
1332 if (serial_paranoia_check(info, tty->name, "rs_write_room"))
1335 spin_lock_irqsave(&info->lock, flags);
1337 ret = ESP_XMIT_SIZE - info->xmit_cnt - 1;
1340 spin_unlock_irqrestore(&info->lock, flags);
1344 static int rs_chars_in_buffer(struct tty_struct *tty)
1346 struct esp_struct *info = (struct esp_struct *)tty->driver_data;
1348 if (serial_paranoia_check(info, tty->name, "rs_chars_in_buffer"))
1350 return info->xmit_cnt;
1353 static void rs_flush_buffer(struct tty_struct *tty)
1355 struct esp_struct *info = (struct esp_struct *)tty->driver_data;
1356 unsigned long flags;
1358 if (serial_paranoia_check(info, tty->name, "rs_flush_buffer"))
1360 spin_lock_irqsave(&info->lock, flags);
1361 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
1362 spin_unlock_irqrestore(&info->lock, flags);
1367 * ------------------------------------------------------------
1370 * This routine is called by the upper-layer tty layer to signal that
1371 * incoming characters should be throttled.
1372 * ------------------------------------------------------------
1374 static void rs_throttle(struct tty_struct * tty)
1376 struct esp_struct *info = (struct esp_struct *)tty->driver_data;
1377 unsigned long flags;
1378 #ifdef SERIAL_DEBUG_THROTTLE
1381 printk("throttle %s: %d....\n", tty_name(tty, buf),
1382 tty->ldisc.chars_in_buffer(tty));
1385 if (serial_paranoia_check(info, tty->name, "rs_throttle"))
1388 spin_lock_irqsave(&info->lock, flags);
1389 info->IER &= ~UART_IER_RDI;
1390 serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
1391 serial_out(info, UART_ESI_CMD2, info->IER);
1392 serial_out(info, UART_ESI_CMD1, ESI_SET_RX_TIMEOUT);
1393 serial_out(info, UART_ESI_CMD2, 0x00);
1394 spin_unlock_irqrestore(&info->lock, flags);
1397 static void rs_unthrottle(struct tty_struct * tty)
1399 struct esp_struct *info = (struct esp_struct *)tty->driver_data;
1400 unsigned long flags;
1401 #ifdef SERIAL_DEBUG_THROTTLE
1404 printk("unthrottle %s: %d....\n", tty_name(tty, buf),
1405 tty->ldisc.chars_in_buffer(tty));
1408 if (serial_paranoia_check(info, tty->name, "rs_unthrottle"))
1411 spin_lock_irqsave(&info->lock, flags);
1412 info->IER |= UART_IER_RDI;
1413 serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
1414 serial_out(info, UART_ESI_CMD2, info->IER);
1415 serial_out(info, UART_ESI_CMD1, ESI_SET_RX_TIMEOUT);
1416 serial_out(info, UART_ESI_CMD2, info->config.rx_timeout);
1417 spin_unlock_irqrestore(&info->lock, flags);
1421 * ------------------------------------------------------------
1422 * rs_ioctl() and friends
1423 * ------------------------------------------------------------
1426 static int get_serial_info(struct esp_struct * info,
1427 struct serial_struct __user *retinfo)
1429 struct serial_struct tmp;
1431 memset(&tmp, 0, sizeof(tmp));
1432 tmp.type = PORT_16550A;
1433 tmp.line = info->line;
1434 tmp.port = info->port;
1435 tmp.irq = info->irq;
1436 tmp.flags = info->flags;
1437 tmp.xmit_fifo_size = 1024;
1438 tmp.baud_base = BASE_BAUD;
1439 tmp.close_delay = info->close_delay;
1440 tmp.closing_wait = info->closing_wait;
1441 tmp.custom_divisor = info->custom_divisor;
1443 if (copy_to_user(retinfo,&tmp,sizeof(*retinfo)))
1448 static int get_esp_config(struct esp_struct * info,
1449 struct hayes_esp_config __user *retinfo)
1451 struct hayes_esp_config tmp;
1456 memset(&tmp, 0, sizeof(tmp));
1457 tmp.rx_timeout = info->config.rx_timeout;
1458 tmp.rx_trigger = info->config.rx_trigger;
1459 tmp.tx_trigger = info->config.tx_trigger;
1460 tmp.flow_off = info->config.flow_off;
1461 tmp.flow_on = info->config.flow_on;
1462 tmp.pio_threshold = info->config.pio_threshold;
1463 tmp.dma_channel = (info->stat_flags & ESP_STAT_NEVER_DMA ? 0 : dma);
1465 return copy_to_user(retinfo, &tmp, sizeof(*retinfo)) ? -EFAULT : 0;
1468 static int set_serial_info(struct esp_struct * info,
1469 struct serial_struct __user *new_info)
1471 struct serial_struct new_serial;
1472 struct esp_struct old_info;
1473 unsigned int change_irq;
1475 struct esp_struct *current_async;
1477 if (copy_from_user(&new_serial,new_info,sizeof(new_serial)))
1481 if ((new_serial.type != PORT_16550A) ||
1482 (new_serial.hub6) ||
1483 (info->port != new_serial.port) ||
1484 (new_serial.baud_base != BASE_BAUD) ||
1485 (new_serial.irq > 15) ||
1486 (new_serial.irq < 2) ||
1487 (new_serial.irq == 6) ||
1488 (new_serial.irq == 8) ||
1489 (new_serial.irq == 13))
1492 change_irq = new_serial.irq != info->irq;
1494 if (change_irq && (info->line % 8))
1497 if (!capable(CAP_SYS_ADMIN)) {
1499 (new_serial.close_delay != info->close_delay) ||
1500 ((new_serial.flags & ~ASYNC_USR_MASK) !=
1501 (info->flags & ~ASYNC_USR_MASK)))
1503 info->flags = ((info->flags & ~ASYNC_USR_MASK) |
1504 (new_serial.flags & ASYNC_USR_MASK));
1505 info->custom_divisor = new_serial.custom_divisor;
1507 if (new_serial.irq == 2)
1511 current_async = ports;
1513 while (current_async) {
1514 if ((current_async->line >= info->line) &&
1515 (current_async->line < (info->line + 8))) {
1516 if (current_async == info) {
1517 if (current_async->count > 1)
1519 } else if (current_async->count)
1523 current_async = current_async->next_port;
1528 * OK, past this point, all the error checking has been done.
1529 * At this point, we start making changes.....
1532 info->flags = ((info->flags & ~ASYNC_FLAGS) |
1533 (new_serial.flags & ASYNC_FLAGS));
1534 info->custom_divisor = new_serial.custom_divisor;
1535 info->close_delay = new_serial.close_delay * HZ/100;
1536 info->closing_wait = new_serial.closing_wait * HZ/100;
1540 * We need to shutdown the serial port at the old
1541 * port/irq combination.
1545 current_async = ports;
1547 while (current_async) {
1548 if ((current_async->line >= info->line) &&
1549 (current_async->line < (info->line + 8)))
1550 current_async->irq = new_serial.irq;
1552 current_async = current_async->next_port;
1555 serial_out(info, UART_ESI_CMD1, ESI_SET_ENH_IRQ);
1557 serial_out(info, UART_ESI_CMD2, 0x02);
1559 serial_out(info, UART_ESI_CMD2, info->irq);
1563 if (info->flags & ASYNC_INITIALIZED) {
1564 if (((old_info.flags & ASYNC_SPD_MASK) !=
1565 (info->flags & ASYNC_SPD_MASK)) ||
1566 (old_info.custom_divisor != info->custom_divisor)) {
1567 if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
1568 info->tty->alt_speed = 57600;
1569 if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
1570 info->tty->alt_speed = 115200;
1571 if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
1572 info->tty->alt_speed = 230400;
1573 if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
1574 info->tty->alt_speed = 460800;
1578 retval = startup(info);
1583 static int set_esp_config(struct esp_struct * info,
1584 struct hayes_esp_config __user * new_info)
1586 struct hayes_esp_config new_config;
1587 unsigned int change_dma;
1589 struct esp_struct *current_async;
1590 unsigned long flags;
1592 /* Perhaps a non-sysadmin user should be able to do some of these */
1593 /* operations. I haven't decided yet. */
1595 if (!capable(CAP_SYS_ADMIN))
1598 if (copy_from_user(&new_config, new_info, sizeof(new_config)))
1601 if ((new_config.flow_on >= new_config.flow_off) ||
1602 (new_config.rx_trigger < 1) ||
1603 (new_config.tx_trigger < 1) ||
1604 (new_config.flow_off < 1) ||
1605 (new_config.flow_on < 1) ||
1606 (new_config.rx_trigger > 1023) ||
1607 (new_config.tx_trigger > 1023) ||
1608 (new_config.flow_off > 1023) ||
1609 (new_config.flow_on > 1023) ||
1610 (new_config.pio_threshold < 0) ||
1611 (new_config.pio_threshold > 1024))
1614 if ((new_config.dma_channel != 1) && (new_config.dma_channel != 3))
1615 new_config.dma_channel = 0;
1617 if (info->stat_flags & ESP_STAT_NEVER_DMA)
1618 change_dma = new_config.dma_channel;
1620 change_dma = (new_config.dma_channel != dma);
1623 if (new_config.dma_channel) {
1624 /* PIO mode to DMA mode transition OR */
1625 /* change current DMA channel */
1627 current_async = ports;
1629 while (current_async) {
1630 if (current_async == info) {
1631 if (current_async->count > 1)
1633 } else if (current_async->count)
1637 current_async->next_port;
1641 dma = new_config.dma_channel;
1642 info->stat_flags &= ~ESP_STAT_NEVER_DMA;
1644 /* all ports must use the same DMA channel */
1646 spin_lock_irqsave(&info->lock, flags);
1647 current_async = ports;
1649 while (current_async) {
1650 esp_basic_init(current_async);
1651 current_async = current_async->next_port;
1653 spin_unlock_irqrestore(&info->lock, flags);
1655 /* DMA mode to PIO mode only */
1657 if (info->count > 1)
1661 spin_lock_irqsave(&info->lock, flags);
1662 info->stat_flags |= ESP_STAT_NEVER_DMA;
1663 esp_basic_init(info);
1664 spin_unlock_irqrestore(&info->lock, flags);
1668 info->config.pio_threshold = new_config.pio_threshold;
1670 if ((new_config.flow_off != info->config.flow_off) ||
1671 (new_config.flow_on != info->config.flow_on)) {
1672 unsigned long flags;
1674 info->config.flow_off = new_config.flow_off;
1675 info->config.flow_on = new_config.flow_on;
1677 spin_lock_irqsave(&info->lock, flags);
1678 serial_out(info, UART_ESI_CMD1, ESI_SET_FLOW_LVL);
1679 serial_out(info, UART_ESI_CMD2, new_config.flow_off >> 8);
1680 serial_out(info, UART_ESI_CMD2, new_config.flow_off);
1681 serial_out(info, UART_ESI_CMD2, new_config.flow_on >> 8);
1682 serial_out(info, UART_ESI_CMD2, new_config.flow_on);
1683 spin_unlock_irqrestore(&info->lock, flags);
1686 if ((new_config.rx_trigger != info->config.rx_trigger) ||
1687 (new_config.tx_trigger != info->config.tx_trigger)) {
1688 unsigned long flags;
1690 info->config.rx_trigger = new_config.rx_trigger;
1691 info->config.tx_trigger = new_config.tx_trigger;
1692 spin_lock_irqsave(&info->lock, flags);
1693 serial_out(info, UART_ESI_CMD1, ESI_SET_TRIGGER);
1694 serial_out(info, UART_ESI_CMD2,
1695 new_config.rx_trigger >> 8);
1696 serial_out(info, UART_ESI_CMD2, new_config.rx_trigger);
1697 serial_out(info, UART_ESI_CMD2,
1698 new_config.tx_trigger >> 8);
1699 serial_out(info, UART_ESI_CMD2, new_config.tx_trigger);
1700 spin_unlock_irqrestore(&info->lock, flags);
1703 if (new_config.rx_timeout != info->config.rx_timeout) {
1704 unsigned long flags;
1706 info->config.rx_timeout = new_config.rx_timeout;
1707 spin_lock_irqsave(&info->lock, flags);
1709 if (info->IER & UART_IER_RDI) {
1710 serial_out(info, UART_ESI_CMD1,
1711 ESI_SET_RX_TIMEOUT);
1712 serial_out(info, UART_ESI_CMD2,
1713 new_config.rx_timeout);
1716 spin_unlock_irqrestore(&info->lock, flags);
1719 if (!(info->flags & ASYNC_INITIALIZED))
1720 retval = startup(info);
1726 * get_lsr_info - get line status register info
1728 * Purpose: Let user call ioctl() to get info when the UART physically
1729 * is emptied. On bus types like RS485, the transmitter must
1730 * release the bus after transmitting. This must be done when
1731 * the transmit shift register is empty, not be done when the
1732 * transmit holding register is empty. This functionality
1733 * allows an RS485 driver to be written in user space.
1735 static int get_lsr_info(struct esp_struct * info, unsigned int __user *value)
1737 unsigned char status;
1738 unsigned int result;
1739 unsigned long flags;
1741 spin_lock_irqsave(&info->lock, flags);
1742 serial_out(info, UART_ESI_CMD1, ESI_GET_UART_STAT);
1743 status = serial_in(info, UART_ESI_STAT1);
1744 spin_unlock_irqrestore(&info->lock, flags);
1745 result = ((status & UART_LSR_TEMT) ? TIOCSER_TEMT : 0);
1746 return put_user(result,value);
1750 static int esp_tiocmget(struct tty_struct *tty, struct file *file)
1752 struct esp_struct * info = (struct esp_struct *)tty->driver_data;
1753 unsigned char control, status;
1754 unsigned long flags;
1756 if (serial_paranoia_check(info, tty->name, __FUNCTION__))
1758 if (tty->flags & (1 << TTY_IO_ERROR))
1761 control = info->MCR;
1763 spin_lock_irqsave(&info->lock, flags);
1764 serial_out(info, UART_ESI_CMD1, ESI_GET_UART_STAT);
1765 status = serial_in(info, UART_ESI_STAT2);
1766 spin_unlock_irqrestore(&info->lock, flags);
1768 return ((control & UART_MCR_RTS) ? TIOCM_RTS : 0)
1769 | ((control & UART_MCR_DTR) ? TIOCM_DTR : 0)
1770 | ((status & UART_MSR_DCD) ? TIOCM_CAR : 0)
1771 | ((status & UART_MSR_RI) ? TIOCM_RNG : 0)
1772 | ((status & UART_MSR_DSR) ? TIOCM_DSR : 0)
1773 | ((status & UART_MSR_CTS) ? TIOCM_CTS : 0);
1776 static int esp_tiocmset(struct tty_struct *tty, struct file *file,
1777 unsigned int set, unsigned int clear)
1779 struct esp_struct * info = (struct esp_struct *)tty->driver_data;
1780 unsigned long flags;
1782 if (serial_paranoia_check(info, tty->name, __FUNCTION__))
1784 if (tty->flags & (1 << TTY_IO_ERROR))
1787 spin_lock_irqsave(&info->lock, flags);
1789 if (set & TIOCM_RTS)
1790 info->MCR |= UART_MCR_RTS;
1791 if (set & TIOCM_DTR)
1792 info->MCR |= UART_MCR_DTR;
1794 if (clear & TIOCM_RTS)
1795 info->MCR &= ~UART_MCR_RTS;
1796 if (clear & TIOCM_DTR)
1797 info->MCR &= ~UART_MCR_DTR;
1799 serial_out(info, UART_ESI_CMD1, ESI_WRITE_UART);
1800 serial_out(info, UART_ESI_CMD2, UART_MCR);
1801 serial_out(info, UART_ESI_CMD2, info->MCR);
1803 spin_unlock_irqrestore(&info->lock, flags);
1808 * rs_break() --- routine which turns the break handling on or off
1810 static void esp_break(struct tty_struct *tty, int break_state)
1812 struct esp_struct * info = (struct esp_struct *)tty->driver_data;
1813 unsigned long flags;
1815 if (serial_paranoia_check(info, tty->name, "esp_break"))
1818 if (break_state == -1) {
1819 spin_lock_irqsave(&info->lock, flags);
1820 serial_out(info, UART_ESI_CMD1, ESI_ISSUE_BREAK);
1821 serial_out(info, UART_ESI_CMD2, 0x01);
1822 spin_unlock_irqrestore(&info->lock, flags);
1824 /* FIXME - new style wait needed here */
1825 interruptible_sleep_on(&info->break_wait);
1827 spin_lock_irqsave(&info->lock, flags);
1828 serial_out(info, UART_ESI_CMD1, ESI_ISSUE_BREAK);
1829 serial_out(info, UART_ESI_CMD2, 0x00);
1830 spin_unlock_irqrestore(&info->lock, flags);
1834 static int rs_ioctl(struct tty_struct *tty, struct file * file,
1835 unsigned int cmd, unsigned long arg)
1837 struct esp_struct * info = (struct esp_struct *)tty->driver_data;
1838 struct async_icount cprev, cnow; /* kernel counter temps */
1839 struct serial_icounter_struct __user *p_cuser; /* user space */
1840 void __user *argp = (void __user *)arg;
1841 unsigned long flags;
1843 if (serial_paranoia_check(info, tty->name, "rs_ioctl"))
1846 if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
1847 (cmd != TIOCSERCONFIG) && (cmd != TIOCSERGWILD) &&
1848 (cmd != TIOCSERSWILD) && (cmd != TIOCSERGSTRUCT) &&
1849 (cmd != TIOCMIWAIT) && (cmd != TIOCGICOUNT) &&
1850 (cmd != TIOCGHAYESESP) && (cmd != TIOCSHAYESESP)) {
1851 if (tty->flags & (1 << TTY_IO_ERROR))
1857 return get_serial_info(info, argp);
1859 return set_serial_info(info, argp);
1861 /* do not reconfigure after initial configuration */
1865 return put_user(0L, (unsigned long __user *)argp);
1867 case TIOCSERGETLSR: /* Get line status register */
1868 return get_lsr_info(info, argp);
1871 if (!capable(CAP_SYS_ADMIN))
1876 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1877 * - mask passed in arg for lines of interest
1878 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1879 * Caller should use TIOCGICOUNT to see which one it was
1882 spin_lock_irqsave(&info->lock, flags);
1883 cprev = info->icount; /* note the counters on entry */
1884 spin_unlock_irqrestore(&info->lock, flags);
1886 /* FIXME: convert to new style wakeup */
1887 interruptible_sleep_on(&info->delta_msr_wait);
1888 /* see if a signal did it */
1889 if (signal_pending(current))
1890 return -ERESTARTSYS;
1891 spin_lock_irqsave(&info->lock, flags);
1892 cnow = info->icount; /* atomic copy */
1893 spin_unlock_irqrestore(&info->lock, flags);
1894 if (cnow.rng == cprev.rng &&
1895 cnow.dsr == cprev.dsr &&
1896 cnow.dcd == cprev.dcd &&
1897 cnow.cts == cprev.cts)
1898 return -EIO; /* no change => error */
1899 if (((arg & TIOCM_RNG) &&
1900 (cnow.rng != cprev.rng)) ||
1901 ((arg & TIOCM_DSR) &&
1902 (cnow.dsr != cprev.dsr)) ||
1903 ((arg & TIOCM_CD) &&
1904 (cnow.dcd != cprev.dcd)) ||
1905 ((arg & TIOCM_CTS) &&
1906 (cnow.cts != cprev.cts)) ) {
1914 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1915 * Return: write counters to the user passed counter struct
1916 * NB: both 1->0 and 0->1 transitions are counted except for
1917 * RI where only 0->1 is counted.
1920 spin_lock_irqsave(&info->lock, flags);
1921 cnow = info->icount;
1922 spin_unlock_irqrestore(&info->lock, flags);
1924 if (put_user(cnow.cts, &p_cuser->cts) ||
1925 put_user(cnow.dsr, &p_cuser->dsr) ||
1926 put_user(cnow.rng, &p_cuser->rng) ||
1927 put_user(cnow.dcd, &p_cuser->dcd))
1932 return get_esp_config(info, argp);
1934 return set_esp_config(info, argp);
1937 return -ENOIOCTLCMD;
1942 static void rs_set_termios(struct tty_struct *tty, struct termios *old_termios)
1944 struct esp_struct *info = (struct esp_struct *)tty->driver_data;
1945 unsigned long flags;
1947 if ( (tty->termios->c_cflag == old_termios->c_cflag)
1948 && ( RELEVANT_IFLAG(tty->termios->c_iflag)
1949 == RELEVANT_IFLAG(old_termios->c_iflag)))
1954 spin_lock_irqsave(&info->lock, flags);
1956 /* Handle transition to B0 status */
1957 if ((old_termios->c_cflag & CBAUD) &&
1958 !(tty->termios->c_cflag & CBAUD)) {
1959 info->MCR &= ~(UART_MCR_DTR|UART_MCR_RTS);
1960 serial_out(info, UART_ESI_CMD1, ESI_WRITE_UART);
1961 serial_out(info, UART_ESI_CMD2, UART_MCR);
1962 serial_out(info, UART_ESI_CMD2, info->MCR);
1965 /* Handle transition away from B0 status */
1966 if (!(old_termios->c_cflag & CBAUD) &&
1967 (tty->termios->c_cflag & CBAUD)) {
1968 info->MCR |= (UART_MCR_DTR | UART_MCR_RTS);
1969 serial_out(info, UART_ESI_CMD1, ESI_WRITE_UART);
1970 serial_out(info, UART_ESI_CMD2, UART_MCR);
1971 serial_out(info, UART_ESI_CMD2, info->MCR);
1974 spin_unlock_irqrestore(&info->lock, flags);
1976 /* Handle turning of CRTSCTS */
1977 if ((old_termios->c_cflag & CRTSCTS) &&
1978 !(tty->termios->c_cflag & CRTSCTS)) {
1984 * ------------------------------------------------------------
1987 * This routine is called when the serial port gets closed. First, we
1988 * wait for the last remaining data to be sent. Then, we unlink its
1989 * async structure from the interrupt chain if necessary, and we free
1990 * that IRQ if nothing is left in the chain.
1991 * ------------------------------------------------------------
1993 static void rs_close(struct tty_struct *tty, struct file * filp)
1995 struct esp_struct * info = (struct esp_struct *)tty->driver_data;
1996 unsigned long flags;
1998 if (!info || serial_paranoia_check(info, tty->name, "rs_close"))
2001 spin_lock_irqsave(&info->lock, flags);
2003 if (tty_hung_up_p(filp)) {
2004 DBG_CNT("before DEC-hung");
2008 #ifdef SERIAL_DEBUG_OPEN
2009 printk("rs_close ttys%d, count = %d\n", info->line, info->count);
2011 if ((tty->count == 1) && (info->count != 1)) {
2013 * Uh, oh. tty->count is 1, which means that the tty
2014 * structure will be freed. Info->count should always
2015 * be one in these conditions. If it's greater than
2016 * one, we've got real problems, since it means the
2017 * serial port won't be shutdown.
2019 printk("rs_close: bad serial port count; tty->count is 1, "
2020 "info->count is %d\n", info->count);
2023 if (--info->count < 0) {
2024 printk("rs_close: bad serial port count for ttys%d: %d\n",
2025 info->line, info->count);
2029 DBG_CNT("before DEC-2");
2032 info->flags |= ASYNC_CLOSING;
2034 spin_unlock_irqrestore(&info->lock, flags);
2036 * Now we wait for the transmit buffer to clear; and we notify
2037 * the line discipline to only process XON/XOFF characters.
2040 if (info->closing_wait != ASYNC_CLOSING_WAIT_NONE)
2041 tty_wait_until_sent(tty, info->closing_wait);
2043 * At this point we stop accepting input. To do this, we
2044 * disable the receive line status interrupts, and tell the
2045 * interrupt driver to stop checking the data ready bit in the
2046 * line status register.
2048 /* info->IER &= ~UART_IER_RLSI; */
2049 info->IER &= ~UART_IER_RDI;
2050 info->read_status_mask &= ~UART_LSR_DR;
2051 if (info->flags & ASYNC_INITIALIZED) {
2053 spin_lock_irqsave(&info->lock, flags);
2054 serial_out(info, UART_ESI_CMD1, ESI_SET_SRV_MASK);
2055 serial_out(info, UART_ESI_CMD2, info->IER);
2057 /* disable receive timeout */
2058 serial_out(info, UART_ESI_CMD1, ESI_SET_RX_TIMEOUT);
2059 serial_out(info, UART_ESI_CMD2, 0x00);
2061 spin_unlock_irqrestore(&info->lock, flags);
2064 * Before we drop DTR, make sure the UART transmitter
2065 * has completely drained; this is especially
2066 * important if there is a transmit FIFO!
2068 rs_wait_until_sent(tty, info->timeout);
2071 if (tty->driver->flush_buffer)
2072 tty->driver->flush_buffer(tty);
2073 tty_ldisc_flush(tty);
2078 if (info->blocked_open) {
2079 if (info->close_delay) {
2080 msleep_interruptible(jiffies_to_msecs(info->close_delay));
2082 wake_up_interruptible(&info->open_wait);
2084 info->flags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CLOSING);
2085 wake_up_interruptible(&info->close_wait);
2089 spin_unlock_irqrestore(&info->lock, flags);
2092 static void rs_wait_until_sent(struct tty_struct *tty, int timeout)
2094 struct esp_struct *info = (struct esp_struct *)tty->driver_data;
2095 unsigned long orig_jiffies, char_time;
2096 unsigned long flags;
2098 if (serial_paranoia_check(info, tty->name, "rs_wait_until_sent"))
2101 orig_jiffies = jiffies;
2102 char_time = ((info->timeout - HZ / 50) / 1024) / 5;
2107 spin_lock_irqsave(&info->lock, flags);
2108 serial_out(info, UART_ESI_CMD1, ESI_NO_COMMAND);
2109 serial_out(info, UART_ESI_CMD1, ESI_GET_TX_AVAIL);
2111 while ((serial_in(info, UART_ESI_STAT1) != 0x03) ||
2112 (serial_in(info, UART_ESI_STAT2) != 0xff)) {
2114 spin_unlock_irqrestore(&info->lock, flags);
2115 msleep_interruptible(jiffies_to_msecs(char_time));
2117 if (signal_pending(current))
2120 if (timeout && time_after(jiffies, orig_jiffies + timeout))
2123 spin_lock_irqsave(&info->lock, flags);
2124 serial_out(info, UART_ESI_CMD1, ESI_NO_COMMAND);
2125 serial_out(info, UART_ESI_CMD1, ESI_GET_TX_AVAIL);
2127 spin_unlock_irqrestore(&info->lock, flags);
2128 set_current_state(TASK_RUNNING);
2132 * esp_hangup() --- called by tty_hangup() when a hangup is signaled.
2134 static void esp_hangup(struct tty_struct *tty)
2136 struct esp_struct * info = (struct esp_struct *)tty->driver_data;
2138 if (serial_paranoia_check(info, tty->name, "esp_hangup"))
2141 rs_flush_buffer(tty);
2145 info->flags &= ~ASYNC_NORMAL_ACTIVE;
2147 wake_up_interruptible(&info->open_wait);
2151 * ------------------------------------------------------------
2152 * esp_open() and friends
2153 * ------------------------------------------------------------
2155 static int block_til_ready(struct tty_struct *tty, struct file * filp,
2156 struct esp_struct *info)
2158 DECLARE_WAITQUEUE(wait, current);
2161 unsigned long flags;
2164 * If the device is in the middle of being closed, then block
2165 * until it's done, and then try again.
2167 if (tty_hung_up_p(filp) ||
2168 (info->flags & ASYNC_CLOSING)) {
2169 if (info->flags & ASYNC_CLOSING)
2170 interruptible_sleep_on(&info->close_wait);
2171 #ifdef SERIAL_DO_RESTART
2172 if (info->flags & ASYNC_HUP_NOTIFY)
2175 return -ERESTARTSYS;
2182 * If non-blocking mode is set, or the port is not enabled,
2183 * then make the check up front and then exit.
2185 if ((filp->f_flags & O_NONBLOCK) ||
2186 (tty->flags & (1 << TTY_IO_ERROR))) {
2187 info->flags |= ASYNC_NORMAL_ACTIVE;
2191 if (tty->termios->c_cflag & CLOCAL)
2195 * Block waiting for the carrier detect and the line to become
2196 * free (i.e., not in use by the callout). While we are in
2197 * this loop, info->count is dropped by one, so that
2198 * rs_close() knows when to free things. We restore it upon
2199 * exit, either normal or abnormal.
2202 add_wait_queue(&info->open_wait, &wait);
2203 #ifdef SERIAL_DEBUG_OPEN
2204 printk("block_til_ready before block: ttys%d, count = %d\n",
2205 info->line, info->count);
2207 spin_lock_irqsave(&info->lock, flags);
2208 if (!tty_hung_up_p(filp))
2210 info->blocked_open++;
2212 if ((tty->termios->c_cflag & CBAUD)) {
2213 unsigned int scratch;
2215 serial_out(info, UART_ESI_CMD1, ESI_READ_UART);
2216 serial_out(info, UART_ESI_CMD2, UART_MCR);
2217 scratch = serial_in(info, UART_ESI_STAT1);
2218 serial_out(info, UART_ESI_CMD1, ESI_WRITE_UART);
2219 serial_out(info, UART_ESI_CMD2, UART_MCR);
2220 serial_out(info, UART_ESI_CMD2,
2221 scratch | UART_MCR_DTR | UART_MCR_RTS);
2223 set_current_state(TASK_INTERRUPTIBLE);
2224 if (tty_hung_up_p(filp) ||
2225 !(info->flags & ASYNC_INITIALIZED)) {
2226 #ifdef SERIAL_DO_RESTART
2227 if (info->flags & ASYNC_HUP_NOTIFY)
2230 retval = -ERESTARTSYS;
2237 serial_out(info, UART_ESI_CMD1, ESI_GET_UART_STAT);
2238 if (serial_in(info, UART_ESI_STAT2) & UART_MSR_DCD)
2241 if (!(info->flags & ASYNC_CLOSING) &&
2244 if (signal_pending(current)) {
2245 retval = -ERESTARTSYS;
2248 #ifdef SERIAL_DEBUG_OPEN
2249 printk("block_til_ready blocking: ttys%d, count = %d\n",
2250 info->line, info->count);
2252 spin_unlock_irqrestore(&info->lock, flags);
2254 spin_lock_irqsave(&info->lock, flags);
2256 set_current_state(TASK_RUNNING);
2257 remove_wait_queue(&info->open_wait, &wait);
2258 if (!tty_hung_up_p(filp))
2260 info->blocked_open--;
2261 spin_unlock_irqrestore(&info->lock, flags);
2262 #ifdef SERIAL_DEBUG_OPEN
2263 printk("block_til_ready after blocking: ttys%d, count = %d\n",
2264 info->line, info->count);
2268 info->flags |= ASYNC_NORMAL_ACTIVE;
2273 * This routine is called whenever a serial port is opened. It
2274 * enables interrupts for a serial port, linking in its async structure into
2275 * the IRQ chain. It also performs the serial-specific
2276 * initialization for the tty structure.
2278 static int esp_open(struct tty_struct *tty, struct file * filp)
2280 struct esp_struct *info;
2282 unsigned long flags;
2285 if ((line < 0) || (line >= NR_PORTS))
2288 /* find the port in the chain */
2292 while (info && (info->line != line))
2293 info = info->next_port;
2296 serial_paranoia_check(info, tty->name, "esp_open");
2300 #ifdef SERIAL_DEBUG_OPEN
2301 printk("esp_open %s, count = %d\n", tty->name, info->count);
2303 spin_lock_irqsave(&info->lock, flags);
2305 tty->driver_data = info;
2309 tmp_buf = (unsigned char *) get_zeroed_page(GFP_KERNEL);
2315 * Start up serial port
2317 retval = startup(info);
2321 retval = block_til_ready(tty, filp, info);
2323 #ifdef SERIAL_DEBUG_OPEN
2324 printk("esp_open returning after block_til_ready with %d\n",
2330 #ifdef SERIAL_DEBUG_OPEN
2331 printk("esp_open %s successful...", tty->name);
2337 * ---------------------------------------------------------------------
2338 * espserial_init() and friends
2340 * espserial_init() is called at boot-time to initialize the serial driver.
2341 * ---------------------------------------------------------------------
2345 * This routine prints out the appropriate serial driver version
2346 * number, and identifies which options were configured into this
2350 static inline void show_serial_version(void)
2352 printk(KERN_INFO "%s version %s (DMA %u)\n",
2353 serial_name, serial_version, dma);
2357 * This routine is called by espserial_init() to initialize a specific serial
2360 static inline int autoconfig(struct esp_struct * info)
2362 int port_detected = 0;
2363 unsigned long flags;
2365 if (!request_region(info->port, REGION_SIZE, "esp serial"))
2368 spin_lock_irqsave(&info->lock, flags);
2370 * Check for ESP card
2373 if (serial_in(info, UART_ESI_BASE) == 0xf3) {
2374 serial_out(info, UART_ESI_CMD1, 0x00);
2375 serial_out(info, UART_ESI_CMD1, 0x01);
2377 if ((serial_in(info, UART_ESI_STAT2) & 0x70) == 0x20) {
2381 serial_out(info, UART_ESI_CMD1, 0x02);
2383 if (serial_in(info, UART_ESI_STAT1) & 0x01)
2390 /* put card in enhanced mode */
2391 /* this prevents access through */
2392 /* the "old" IO ports */
2393 esp_basic_init(info);
2396 serial_out(info, UART_ESI_CMD1, ESI_WRITE_UART);
2397 serial_out(info, UART_ESI_CMD2, UART_MCR);
2398 serial_out(info, UART_ESI_CMD2, 0x00);
2402 release_region(info->port, REGION_SIZE);
2404 spin_unlock_irqrestore(&info->lock, flags);
2405 return (port_detected);
2408 static struct tty_operations esp_ops = {
2412 .put_char = rs_put_char,
2413 .flush_chars = rs_flush_chars,
2414 .write_room = rs_write_room,
2415 .chars_in_buffer = rs_chars_in_buffer,
2416 .flush_buffer = rs_flush_buffer,
2418 .throttle = rs_throttle,
2419 .unthrottle = rs_unthrottle,
2420 .set_termios = rs_set_termios,
2423 .hangup = esp_hangup,
2424 .break_ctl = esp_break,
2425 .wait_until_sent = rs_wait_until_sent,
2426 .tiocmget = esp_tiocmget,
2427 .tiocmset = esp_tiocmset,
2431 * The serial driver boot-time initialization code!
2433 static int __init espserial_init(void)
2436 struct esp_struct * info;
2437 struct esp_struct *last_primary = NULL;
2438 int esp[] = {0x100,0x140,0x180,0x200,0x240,0x280,0x300,0x380};
2440 esp_driver = alloc_tty_driver(NR_PORTS);
2444 for (i = 0; i < NR_PRIMARY; i++) {
2446 if ((irq[i] < 2) || (irq[i] > 15) || (irq[i] == 6) ||
2447 (irq[i] == 8) || (irq[i] == 13))
2449 else if (irq[i] == 2)
2454 if ((dma != 1) && (dma != 3))
2457 if ((rx_trigger < 1) || (rx_trigger > 1023))
2460 if ((tx_trigger < 1) || (tx_trigger > 1023))
2463 if ((flow_off < 1) || (flow_off > 1023))
2466 if ((flow_on < 1) || (flow_on > 1023))
2469 if ((rx_timeout < 0) || (rx_timeout > 255))
2472 if (flow_on >= flow_off)
2473 flow_on = flow_off - 1;
2475 show_serial_version();
2477 /* Initialize the tty_driver structure */
2479 esp_driver->owner = THIS_MODULE;
2480 esp_driver->name = "ttyP";
2481 esp_driver->devfs_name = "tts/P";
2482 esp_driver->major = ESP_IN_MAJOR;
2483 esp_driver->minor_start = 0;
2484 esp_driver->type = TTY_DRIVER_TYPE_SERIAL;
2485 esp_driver->subtype = SERIAL_TYPE_NORMAL;
2486 esp_driver->init_termios = tty_std_termios;
2487 esp_driver->init_termios.c_cflag =
2488 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
2489 esp_driver->flags = TTY_DRIVER_REAL_RAW;
2490 tty_set_operations(esp_driver, &esp_ops);
2491 if (tty_register_driver(esp_driver))
2493 printk(KERN_ERR "Couldn't register esp serial driver");
2494 put_tty_driver(esp_driver);
2498 info = kmalloc(sizeof(struct esp_struct), GFP_KERNEL);
2502 printk(KERN_ERR "Couldn't allocate memory for esp serial device information\n");
2503 tty_unregister_driver(esp_driver);
2504 put_tty_driver(esp_driver);
2508 memset((void *)info, 0, sizeof(struct esp_struct));
2509 /* rx_trigger, tx_trigger are needed by autoconfig */
2510 info->config.rx_trigger = rx_trigger;
2511 info->config.tx_trigger = tx_trigger;
2517 info->port = esp[i] + offset;
2519 info->line = (i * 8) + (offset / 8);
2521 if (!autoconfig(info)) {
2527 info->custom_divisor = (divisor[i] >> (offset / 2)) & 0xf;
2528 info->flags = STD_COM_FLAGS;
2529 if (info->custom_divisor)
2530 info->flags |= ASYNC_SPD_CUST;
2531 info->magic = ESP_MAGIC;
2532 info->close_delay = 5*HZ/10;
2533 info->closing_wait = 30*HZ;
2534 INIT_WORK(&info->tqueue, do_softint, info);
2535 INIT_WORK(&info->tqueue_hangup, do_serial_hangup, info);
2536 info->config.rx_timeout = rx_timeout;
2537 info->config.flow_on = flow_on;
2538 info->config.flow_off = flow_off;
2539 info->config.pio_threshold = pio_threshold;
2540 info->next_port = ports;
2541 init_waitqueue_head(&info->open_wait);
2542 init_waitqueue_head(&info->close_wait);
2543 init_waitqueue_head(&info->delta_msr_wait);
2544 init_waitqueue_head(&info->break_wait);
2545 spin_lock_init(&info->lock);
2547 printk(KERN_INFO "ttyP%d at 0x%04x (irq = %d) is an ESP ",
2548 info->line, info->port, info->irq);
2550 if (info->line % 8) {
2551 printk("secondary port\n");
2552 /* 8 port cards can't do DMA */
2553 info->stat_flags |= ESP_STAT_NEVER_DMA;
2556 last_primary->stat_flags |= ESP_STAT_NEVER_DMA;
2558 printk("primary port\n");
2559 last_primary = info;
2564 info->stat_flags |= ESP_STAT_NEVER_DMA;
2566 info = kmalloc(sizeof(struct esp_struct), GFP_KERNEL);
2569 printk(KERN_ERR "Couldn't allocate memory for esp serial device information\n");
2571 /* allow use of the already detected ports */
2575 memset((void *)info, 0, sizeof(struct esp_struct));
2576 /* rx_trigger, tx_trigger are needed by autoconfig */
2577 info->config.rx_trigger = rx_trigger;
2578 info->config.tx_trigger = tx_trigger;
2586 } while (i < NR_PRIMARY);
2588 /* free the last port memory allocation */
2594 static void __exit espserial_exit(void)
2597 struct esp_struct *temp_async;
2598 struct esp_pio_buffer *pio_buf;
2600 /* printk("Unloading %s: version %s\n", serial_name, serial_version); */
2601 if ((e1 = tty_unregister_driver(esp_driver)))
2602 printk("SERIAL: failed to unregister serial driver (%d)\n",
2604 put_tty_driver(esp_driver);
2608 release_region(ports->port, REGION_SIZE);
2610 temp_async = ports->next_port;
2616 free_pages((unsigned long)dma_buffer,
2617 get_order(DMA_BUFFER_SZ));
2620 free_page((unsigned long)tmp_buf);
2622 while (free_pio_buf) {
2623 pio_buf = free_pio_buf->next;
2624 kfree(free_pio_buf);
2625 free_pio_buf = pio_buf;
2629 module_init(espserial_init);
2630 module_exit(espserial_exit);