2 * mxser.c -- MOXA Smartio/Industio family multiport serial driver.
4 * Copyright (C) 1999-2006 Moxa Technologies (support@moxa.com).
5 * Copyright (C) 2006-2008 Jiri Slaby <jirislaby@gmail.com>
7 * This code is loosely based on the 1.8 moxa driver which is based on
8 * Linux serial driver, written by Linus Torvalds, Theodore T'so and
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * Fed through a cleanup, indent and remove of non 2.6 code by Alan Cox
17 * <alan@lxorguk.ukuu.org.uk>. The original 1.8 code is available on
19 * - Fixed x86_64 cleanness
22 #include <linux/module.h>
23 #include <linux/errno.h>
24 #include <linux/signal.h>
25 #include <linux/sched.h>
26 #include <linux/timer.h>
27 #include <linux/interrupt.h>
28 #include <linux/tty.h>
29 #include <linux/tty_flip.h>
30 #include <linux/serial.h>
31 #include <linux/serial_reg.h>
32 #include <linux/major.h>
33 #include <linux/string.h>
34 #include <linux/fcntl.h>
35 #include <linux/ptrace.h>
36 #include <linux/gfp.h>
37 #include <linux/ioport.h>
39 #include <linux/delay.h>
40 #include <linux/pci.h>
41 #include <linux/bitops.h>
43 #include <asm/system.h>
46 #include <asm/uaccess.h>
50 #define MXSER_VERSION "2.0.4" /* 1.12 */
51 #define MXSERMAJOR 174
53 #define MXSER_BOARDS 4 /* Max. boards */
54 #define MXSER_PORTS_PER_BOARD 8 /* Max. ports per board */
55 #define MXSER_PORTS (MXSER_BOARDS * MXSER_PORTS_PER_BOARD)
56 #define MXSER_ISR_PASS_LIMIT 100
58 /*CheckIsMoxaMust return value*/
59 #define MOXA_OTHER_UART 0x00
60 #define MOXA_MUST_MU150_HWID 0x01
61 #define MOXA_MUST_MU860_HWID 0x02
63 #define WAKEUP_CHARS 256
65 #define UART_MCR_AFE 0x20
66 #define UART_LSR_SPECIAL 0x1E
68 #define PCI_DEVICE_ID_POS104UL 0x1044
69 #define PCI_DEVICE_ID_CB108 0x1080
70 #define PCI_DEVICE_ID_CP102UF 0x1023
71 #define PCI_DEVICE_ID_CB114 0x1142
72 #define PCI_DEVICE_ID_CP114UL 0x1143
73 #define PCI_DEVICE_ID_CB134I 0x1341
74 #define PCI_DEVICE_ID_CP138U 0x1380
77 #define C168_ASIC_ID 1
78 #define C104_ASIC_ID 2
79 #define C102_ASIC_ID 0xB
80 #define CI132_ASIC_ID 4
81 #define CI134_ASIC_ID 3
82 #define CI104J_ASIC_ID 5
84 #define MXSER_HIGHBAUD 1
87 /* This is only for PCI */
97 } Gpci_uart_info
[] = {
98 {MOXA_OTHER_UART
, 16, 16, 16, 14, 14, 1, 921600L},
99 {MOXA_MUST_MU150_HWID
, 64, 64, 64, 48, 48, 16, 230400L},
100 {MOXA_MUST_MU860_HWID
, 128, 128, 128, 96, 96, 32, 921600L}
102 #define UART_INFO_NUM ARRAY_SIZE(Gpci_uart_info)
104 struct mxser_cardinfo
{
110 static const struct mxser_cardinfo mxser_cards
[] = {
111 /* 0*/ { "C168 series", 8, },
112 { "C104 series", 4, },
113 { "CI-104J series", 4, },
114 { "C168H/PCI series", 8, },
115 { "C104H/PCI series", 4, },
116 /* 5*/ { "C102 series", 4, MXSER_HAS2
}, /* C102-ISA */
117 { "CI-132 series", 4, MXSER_HAS2
},
118 { "CI-134 series", 4, },
119 { "CP-132 series", 2, },
120 { "CP-114 series", 4, },
121 /*10*/ { "CT-114 series", 4, },
122 { "CP-102 series", 2, MXSER_HIGHBAUD
},
123 { "CP-104U series", 4, },
124 { "CP-168U series", 8, },
125 { "CP-132U series", 2, },
126 /*15*/ { "CP-134U series", 4, },
127 { "CP-104JU series", 4, },
128 { "Moxa UC7000 Serial", 8, }, /* RC7000 */
129 { "CP-118U series", 8, },
130 { "CP-102UL series", 2, },
131 /*20*/ { "CP-102U series", 2, },
132 { "CP-118EL series", 8, },
133 { "CP-168EL series", 8, },
134 { "CP-104EL series", 4, },
135 { "CB-108 series", 8, },
136 /*25*/ { "CB-114 series", 4, },
137 { "CB-134I series", 4, },
138 { "CP-138U series", 8, },
139 { "POS-104UL series", 4, },
140 { "CP-114UL series", 4, },
141 /*30*/ { "CP-102UF series", 2, }
144 /* driver_data correspond to the lines in the structure above
145 see also ISA probe function before you change something */
146 static struct pci_device_id mxser_pcibrds
[] = {
147 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_C168
), .driver_data
= 3 },
148 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_C104
), .driver_data
= 4 },
149 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP132
), .driver_data
= 8 },
150 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP114
), .driver_data
= 9 },
151 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CT114
), .driver_data
= 10 },
152 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP102
), .driver_data
= 11 },
153 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP104U
), .driver_data
= 12 },
154 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP168U
), .driver_data
= 13 },
155 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP132U
), .driver_data
= 14 },
156 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP134U
), .driver_data
= 15 },
157 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP104JU
),.driver_data
= 16 },
158 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_RC7000
), .driver_data
= 17 },
159 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP118U
), .driver_data
= 18 },
160 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP102UL
),.driver_data
= 19 },
161 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP102U
), .driver_data
= 20 },
162 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP118EL
),.driver_data
= 21 },
163 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP168EL
),.driver_data
= 22 },
164 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP104EL
),.driver_data
= 23 },
165 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CB108
), .driver_data
= 24 },
166 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CB114
), .driver_data
= 25 },
167 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CB134I
), .driver_data
= 26 },
168 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CP138U
), .driver_data
= 27 },
169 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_POS104UL
), .driver_data
= 28 },
170 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CP114UL
), .driver_data
= 29 },
171 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CP102UF
), .driver_data
= 30 },
174 MODULE_DEVICE_TABLE(pci
, mxser_pcibrds
);
176 static unsigned long ioaddr
[MXSER_BOARDS
];
177 static int ttymajor
= MXSERMAJOR
;
179 /* Variables for insmod */
181 MODULE_AUTHOR("Casper Yang");
182 MODULE_DESCRIPTION("MOXA Smartio/Industio Family Multiport Board Device Driver");
183 module_param_array(ioaddr
, ulong
, NULL
, 0);
184 MODULE_PARM_DESC(ioaddr
, "ISA io addresses to look for a moxa board");
185 module_param(ttymajor
, int, 0);
186 MODULE_LICENSE("GPL");
190 unsigned long rxcnt
[MXSER_PORTS
];
191 unsigned long txcnt
[MXSER_PORTS
];
197 unsigned long up_rxcnt
;
198 unsigned long up_txcnt
;
200 unsigned char hold_reason
;
203 struct mxser_mon_ext
{
204 unsigned long rx_cnt
[32];
205 unsigned long tx_cnt
[32];
206 unsigned long up_rxcnt
[32];
207 unsigned long up_txcnt
[32];
208 int modem_status
[32];
222 struct tty_port port
;
223 struct mxser_board
*board
;
225 unsigned long ioaddr
;
226 unsigned long opmode_ioaddr
;
230 int rx_trigger
; /* Rx fifo trigger level */
232 int baud_base
; /* max. speed */
233 int type
; /* UART type */
235 int x_char
; /* xon/xoff character */
236 int IER
; /* Interrupt Enable Register */
237 int MCR
; /* Modem control register */
239 unsigned char stop_rx
;
240 unsigned char ldisc_stop_rx
;
243 unsigned char err_shadow
;
245 struct async_icount icount
; /* kernel counters for 4 input interrupts */
248 int read_status_mask
;
249 int ignore_status_mask
;
255 struct ktermios normal_termios
;
257 struct mxser_mon mon_data
;
260 wait_queue_head_t delta_msr_wait
;
266 const struct mxser_cardinfo
*info
;
267 unsigned long vector
;
268 unsigned long vector_mask
;
273 struct mxser_port ports
[MXSER_PORTS_PER_BOARD
];
276 struct mxser_mstatus
{
284 static struct mxser_board mxser_boards
[MXSER_BOARDS
];
285 static struct tty_driver
*mxvar_sdriver
;
286 static struct mxser_log mxvar_log
;
287 static int mxser_set_baud_method
[MXSER_PORTS
+ 1];
289 static void mxser_enable_must_enchance_mode(unsigned long baseio
)
294 oldlcr
= inb(baseio
+ UART_LCR
);
295 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
297 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
298 efr
|= MOXA_MUST_EFR_EFRB_ENABLE
;
300 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
301 outb(oldlcr
, baseio
+ UART_LCR
);
304 static void mxser_disable_must_enchance_mode(unsigned long baseio
)
309 oldlcr
= inb(baseio
+ UART_LCR
);
310 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
312 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
313 efr
&= ~MOXA_MUST_EFR_EFRB_ENABLE
;
315 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
316 outb(oldlcr
, baseio
+ UART_LCR
);
319 static void mxser_set_must_xon1_value(unsigned long baseio
, u8 value
)
324 oldlcr
= inb(baseio
+ UART_LCR
);
325 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
327 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
328 efr
&= ~MOXA_MUST_EFR_BANK_MASK
;
329 efr
|= MOXA_MUST_EFR_BANK0
;
331 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
332 outb(value
, baseio
+ MOXA_MUST_XON1_REGISTER
);
333 outb(oldlcr
, baseio
+ UART_LCR
);
336 static void mxser_set_must_xoff1_value(unsigned long baseio
, u8 value
)
341 oldlcr
= inb(baseio
+ UART_LCR
);
342 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
344 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
345 efr
&= ~MOXA_MUST_EFR_BANK_MASK
;
346 efr
|= MOXA_MUST_EFR_BANK0
;
348 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
349 outb(value
, baseio
+ MOXA_MUST_XOFF1_REGISTER
);
350 outb(oldlcr
, baseio
+ UART_LCR
);
353 static void mxser_set_must_fifo_value(struct mxser_port
*info
)
358 oldlcr
= inb(info
->ioaddr
+ UART_LCR
);
359 outb(MOXA_MUST_ENTER_ENCHANCE
, info
->ioaddr
+ UART_LCR
);
361 efr
= inb(info
->ioaddr
+ MOXA_MUST_EFR_REGISTER
);
362 efr
&= ~MOXA_MUST_EFR_BANK_MASK
;
363 efr
|= MOXA_MUST_EFR_BANK1
;
365 outb(efr
, info
->ioaddr
+ MOXA_MUST_EFR_REGISTER
);
366 outb((u8
)info
->rx_high_water
, info
->ioaddr
+ MOXA_MUST_RBRTH_REGISTER
);
367 outb((u8
)info
->rx_trigger
, info
->ioaddr
+ MOXA_MUST_RBRTI_REGISTER
);
368 outb((u8
)info
->rx_low_water
, info
->ioaddr
+ MOXA_MUST_RBRTL_REGISTER
);
369 outb(oldlcr
, info
->ioaddr
+ UART_LCR
);
372 static void mxser_set_must_enum_value(unsigned long baseio
, u8 value
)
377 oldlcr
= inb(baseio
+ UART_LCR
);
378 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
380 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
381 efr
&= ~MOXA_MUST_EFR_BANK_MASK
;
382 efr
|= MOXA_MUST_EFR_BANK2
;
384 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
385 outb(value
, baseio
+ MOXA_MUST_ENUM_REGISTER
);
386 outb(oldlcr
, baseio
+ UART_LCR
);
389 static void mxser_get_must_hardware_id(unsigned long baseio
, u8
*pId
)
394 oldlcr
= inb(baseio
+ UART_LCR
);
395 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
397 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
398 efr
&= ~MOXA_MUST_EFR_BANK_MASK
;
399 efr
|= MOXA_MUST_EFR_BANK2
;
401 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
402 *pId
= inb(baseio
+ MOXA_MUST_HWID_REGISTER
);
403 outb(oldlcr
, baseio
+ UART_LCR
);
406 static void SET_MOXA_MUST_NO_SOFTWARE_FLOW_CONTROL(unsigned long baseio
)
411 oldlcr
= inb(baseio
+ UART_LCR
);
412 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
414 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
415 efr
&= ~MOXA_MUST_EFR_SF_MASK
;
417 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
418 outb(oldlcr
, baseio
+ UART_LCR
);
421 static void mxser_enable_must_tx_software_flow_control(unsigned long baseio
)
426 oldlcr
= inb(baseio
+ UART_LCR
);
427 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
429 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
430 efr
&= ~MOXA_MUST_EFR_SF_TX_MASK
;
431 efr
|= MOXA_MUST_EFR_SF_TX1
;
433 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
434 outb(oldlcr
, baseio
+ UART_LCR
);
437 static void mxser_disable_must_tx_software_flow_control(unsigned long baseio
)
442 oldlcr
= inb(baseio
+ UART_LCR
);
443 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
445 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
446 efr
&= ~MOXA_MUST_EFR_SF_TX_MASK
;
448 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
449 outb(oldlcr
, baseio
+ UART_LCR
);
452 static void mxser_enable_must_rx_software_flow_control(unsigned long baseio
)
457 oldlcr
= inb(baseio
+ UART_LCR
);
458 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
460 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
461 efr
&= ~MOXA_MUST_EFR_SF_RX_MASK
;
462 efr
|= MOXA_MUST_EFR_SF_RX1
;
464 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
465 outb(oldlcr
, baseio
+ UART_LCR
);
468 static void mxser_disable_must_rx_software_flow_control(unsigned long baseio
)
473 oldlcr
= inb(baseio
+ UART_LCR
);
474 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
476 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
477 efr
&= ~MOXA_MUST_EFR_SF_RX_MASK
;
479 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
480 outb(oldlcr
, baseio
+ UART_LCR
);
484 static int __devinit
CheckIsMoxaMust(unsigned long io
)
489 outb(0, io
+ UART_LCR
);
490 mxser_disable_must_enchance_mode(io
);
491 oldmcr
= inb(io
+ UART_MCR
);
492 outb(0, io
+ UART_MCR
);
493 mxser_set_must_xon1_value(io
, 0x11);
494 if ((hwid
= inb(io
+ UART_MCR
)) != 0) {
495 outb(oldmcr
, io
+ UART_MCR
);
496 return MOXA_OTHER_UART
;
499 mxser_get_must_hardware_id(io
, &hwid
);
500 for (i
= 1; i
< UART_INFO_NUM
; i
++) { /* 0 = OTHER_UART */
501 if (hwid
== Gpci_uart_info
[i
].type
)
504 return MOXA_OTHER_UART
;
508 static void process_txrx_fifo(struct mxser_port
*info
)
512 if ((info
->type
== PORT_16450
) || (info
->type
== PORT_8250
)) {
513 info
->rx_trigger
= 1;
514 info
->rx_high_water
= 1;
515 info
->rx_low_water
= 1;
516 info
->xmit_fifo_size
= 1;
518 for (i
= 0; i
< UART_INFO_NUM
; i
++)
519 if (info
->board
->chip_flag
== Gpci_uart_info
[i
].type
) {
520 info
->rx_trigger
= Gpci_uart_info
[i
].rx_trigger
;
521 info
->rx_low_water
= Gpci_uart_info
[i
].rx_low_water
;
522 info
->rx_high_water
= Gpci_uart_info
[i
].rx_high_water
;
523 info
->xmit_fifo_size
= Gpci_uart_info
[i
].xmit_fifo_size
;
528 static unsigned char mxser_get_msr(int baseaddr
, int mode
, int port
)
530 static unsigned char mxser_msr
[MXSER_PORTS
+ 1];
531 unsigned char status
= 0;
533 status
= inb(baseaddr
+ UART_MSR
);
535 mxser_msr
[port
] &= 0x0F;
536 mxser_msr
[port
] |= status
;
537 status
= mxser_msr
[port
];
544 static int mxser_carrier_raised(struct tty_port
*port
)
546 struct mxser_port
*mp
= container_of(port
, struct mxser_port
, port
);
547 return (inb(mp
->ioaddr
+ UART_MSR
) & UART_MSR_DCD
)?1:0;
550 static int mxser_block_til_ready(struct tty_struct
*tty
, struct file
*filp
,
551 struct mxser_port
*mp
)
553 DECLARE_WAITQUEUE(wait
, current
);
558 struct tty_port
*port
= &mp
->port
;
561 * If non-blocking mode is set, or the port is not enabled,
562 * then make the check up front and then exit.
564 if ((filp
->f_flags
& O_NONBLOCK
) ||
565 test_bit(TTY_IO_ERROR
, &tty
->flags
)) {
566 port
->flags
|= ASYNC_NORMAL_ACTIVE
;
570 if (tty
->termios
->c_cflag
& CLOCAL
)
574 * Block waiting for the carrier detect and the line to become
575 * free (i.e., not in use by the callout). While we are in
576 * this loop, port->count is dropped by one, so that
577 * mxser_close() knows when to free things. We restore it upon
578 * exit, either normal or abnormal.
581 add_wait_queue(&port
->open_wait
, &wait
);
583 spin_lock_irqsave(&mp
->slock
, flags
);
584 if (!tty_hung_up_p(filp
))
586 spin_unlock_irqrestore(&mp
->slock
, flags
);
587 port
->blocked_open
++;
589 spin_lock_irqsave(&mp
->slock
, flags
);
590 outb(inb(mp
->ioaddr
+ UART_MCR
) |
591 UART_MCR_DTR
| UART_MCR_RTS
, mp
->ioaddr
+ UART_MCR
);
592 spin_unlock_irqrestore(&mp
->slock
, flags
);
593 set_current_state(TASK_INTERRUPTIBLE
);
594 if (tty_hung_up_p(filp
) || !(port
->flags
& ASYNC_INITIALIZED
)) {
595 if (port
->flags
& ASYNC_HUP_NOTIFY
)
598 retval
= -ERESTARTSYS
;
601 cd
= tty_port_carrier_raised(port
);
602 if (!(port
->flags
& ASYNC_CLOSING
) && (do_clocal
|| cd
))
604 if (signal_pending(current
)) {
605 retval
= -ERESTARTSYS
;
610 set_current_state(TASK_RUNNING
);
611 remove_wait_queue(&port
->open_wait
, &wait
);
612 if (!tty_hung_up_p(filp
))
614 port
->blocked_open
--;
617 port
->flags
|= ASYNC_NORMAL_ACTIVE
;
621 static int mxser_set_baud(struct tty_struct
*tty
, long newspd
)
623 struct mxser_port
*info
= tty
->driver_data
;
630 if (newspd
> info
->max_baud
)
634 quot
= 2 * info
->baud_base
/ 269;
635 tty_encode_baud_rate(tty
, 134, 134);
637 quot
= info
->baud_base
/ newspd
;
640 baud
= info
->baud_base
/quot
;
641 tty_encode_baud_rate(tty
, baud
, baud
);
646 info
->timeout
= ((info
->xmit_fifo_size
* HZ
* 10 * quot
) / info
->baud_base
);
647 info
->timeout
+= HZ
/ 50; /* Add .02 seconds of slop */
650 info
->MCR
|= UART_MCR_DTR
;
651 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
653 info
->MCR
&= ~UART_MCR_DTR
;
654 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
658 cval
= inb(info
->ioaddr
+ UART_LCR
);
660 outb(cval
| UART_LCR_DLAB
, info
->ioaddr
+ UART_LCR
); /* set DLAB */
662 outb(quot
& 0xff, info
->ioaddr
+ UART_DLL
); /* LS of divisor */
663 outb(quot
>> 8, info
->ioaddr
+ UART_DLM
); /* MS of divisor */
664 outb(cval
, info
->ioaddr
+ UART_LCR
); /* reset DLAB */
667 if (C_BAUD(tty
) == BOTHER
) {
668 quot
= info
->baud_base
% newspd
;
670 if (quot
% newspd
> newspd
/ 2) {
676 mxser_set_must_enum_value(info
->ioaddr
, quot
);
679 mxser_set_must_enum_value(info
->ioaddr
, 0);
685 * This routine is called to set the UART divisor registers to match
686 * the specified baud rate for a serial port.
688 static int mxser_change_speed(struct tty_struct
*tty
,
689 struct ktermios
*old_termios
)
691 struct mxser_port
*info
= tty
->driver_data
;
692 unsigned cflag
, cval
, fcr
;
694 unsigned char status
;
696 cflag
= tty
->termios
->c_cflag
;
700 if (mxser_set_baud_method
[tty
->index
] == 0)
701 mxser_set_baud(tty
, tty_get_baud_rate(tty
));
703 /* byte size and parity */
704 switch (cflag
& CSIZE
) {
719 break; /* too keep GCC shut... */
724 cval
|= UART_LCR_PARITY
;
725 if (!(cflag
& PARODD
))
726 cval
|= UART_LCR_EPAR
;
728 cval
|= UART_LCR_SPAR
;
730 if ((info
->type
== PORT_8250
) || (info
->type
== PORT_16450
)) {
731 if (info
->board
->chip_flag
) {
732 fcr
= UART_FCR_ENABLE_FIFO
;
733 fcr
|= MOXA_MUST_FCR_GDA_MODE_ENABLE
;
734 mxser_set_must_fifo_value(info
);
738 fcr
= UART_FCR_ENABLE_FIFO
;
739 if (info
->board
->chip_flag
) {
740 fcr
|= MOXA_MUST_FCR_GDA_MODE_ENABLE
;
741 mxser_set_must_fifo_value(info
);
743 switch (info
->rx_trigger
) {
745 fcr
|= UART_FCR_TRIGGER_1
;
748 fcr
|= UART_FCR_TRIGGER_4
;
751 fcr
|= UART_FCR_TRIGGER_8
;
754 fcr
|= UART_FCR_TRIGGER_14
;
760 /* CTS flow control flag and modem status interrupts */
761 info
->IER
&= ~UART_IER_MSI
;
762 info
->MCR
&= ~UART_MCR_AFE
;
763 if (cflag
& CRTSCTS
) {
764 info
->port
.flags
|= ASYNC_CTS_FLOW
;
765 info
->IER
|= UART_IER_MSI
;
766 if ((info
->type
== PORT_16550A
) || (info
->board
->chip_flag
)) {
767 info
->MCR
|= UART_MCR_AFE
;
769 status
= inb(info
->ioaddr
+ UART_MSR
);
770 if (tty
->hw_stopped
) {
771 if (status
& UART_MSR_CTS
) {
773 if (info
->type
!= PORT_16550A
&&
774 !info
->board
->chip_flag
) {
775 outb(info
->IER
& ~UART_IER_THRI
,
778 info
->IER
|= UART_IER_THRI
;
779 outb(info
->IER
, info
->ioaddr
+
785 if (!(status
& UART_MSR_CTS
)) {
787 if ((info
->type
!= PORT_16550A
) &&
788 (!info
->board
->chip_flag
)) {
789 info
->IER
&= ~UART_IER_THRI
;
790 outb(info
->IER
, info
->ioaddr
+
797 info
->port
.flags
&= ~ASYNC_CTS_FLOW
;
799 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
800 if (cflag
& CLOCAL
) {
801 info
->port
.flags
&= ~ASYNC_CHECK_CD
;
803 info
->port
.flags
|= ASYNC_CHECK_CD
;
804 info
->IER
|= UART_IER_MSI
;
806 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
809 * Set up parity check flag
811 info
->read_status_mask
= UART_LSR_OE
| UART_LSR_THRE
| UART_LSR_DR
;
813 info
->read_status_mask
|= UART_LSR_FE
| UART_LSR_PE
;
814 if (I_BRKINT(tty
) || I_PARMRK(tty
))
815 info
->read_status_mask
|= UART_LSR_BI
;
817 info
->ignore_status_mask
= 0;
820 info
->ignore_status_mask
|= UART_LSR_BI
;
821 info
->read_status_mask
|= UART_LSR_BI
;
823 * If we're ignore parity and break indicators, ignore
824 * overruns too. (For real raw support).
827 info
->ignore_status_mask
|=
831 info
->read_status_mask
|=
837 if (info
->board
->chip_flag
) {
838 mxser_set_must_xon1_value(info
->ioaddr
, START_CHAR(tty
));
839 mxser_set_must_xoff1_value(info
->ioaddr
, STOP_CHAR(tty
));
841 mxser_enable_must_rx_software_flow_control(
844 mxser_disable_must_rx_software_flow_control(
848 mxser_enable_must_tx_software_flow_control(
851 mxser_disable_must_tx_software_flow_control(
857 outb(fcr
, info
->ioaddr
+ UART_FCR
); /* set fcr */
858 outb(cval
, info
->ioaddr
+ UART_LCR
);
863 static void mxser_check_modem_status(struct tty_struct
*tty
,
864 struct mxser_port
*port
, int status
)
866 /* update input line counters */
867 if (status
& UART_MSR_TERI
)
869 if (status
& UART_MSR_DDSR
)
871 if (status
& UART_MSR_DDCD
)
873 if (status
& UART_MSR_DCTS
)
875 port
->mon_data
.modem_status
= status
;
876 wake_up_interruptible(&port
->delta_msr_wait
);
878 if ((port
->port
.flags
& ASYNC_CHECK_CD
) && (status
& UART_MSR_DDCD
)) {
879 if (status
& UART_MSR_DCD
)
880 wake_up_interruptible(&port
->port
.open_wait
);
883 tty
= tty_port_tty_get(&port
->port
);
884 if (port
->port
.flags
& ASYNC_CTS_FLOW
) {
885 if (tty
->hw_stopped
) {
886 if (status
& UART_MSR_CTS
) {
889 if ((port
->type
!= PORT_16550A
) &&
890 (!port
->board
->chip_flag
)) {
891 outb(port
->IER
& ~UART_IER_THRI
,
892 port
->ioaddr
+ UART_IER
);
893 port
->IER
|= UART_IER_THRI
;
894 outb(port
->IER
, port
->ioaddr
+
900 if (!(status
& UART_MSR_CTS
)) {
902 if (port
->type
!= PORT_16550A
&&
903 !port
->board
->chip_flag
) {
904 port
->IER
&= ~UART_IER_THRI
;
905 outb(port
->IER
, port
->ioaddr
+
913 static int mxser_startup(struct tty_struct
*tty
)
915 struct mxser_port
*info
= tty
->driver_data
;
919 page
= __get_free_page(GFP_KERNEL
);
923 spin_lock_irqsave(&info
->slock
, flags
);
925 if (info
->port
.flags
& ASYNC_INITIALIZED
) {
927 spin_unlock_irqrestore(&info
->slock
, flags
);
931 if (!info
->ioaddr
|| !info
->type
) {
932 set_bit(TTY_IO_ERROR
, &tty
->flags
);
934 spin_unlock_irqrestore(&info
->slock
, flags
);
937 if (info
->port
.xmit_buf
)
940 info
->port
.xmit_buf
= (unsigned char *) page
;
943 * Clear the FIFO buffers and disable them
944 * (they will be reenabled in mxser_change_speed())
946 if (info
->board
->chip_flag
)
947 outb((UART_FCR_CLEAR_RCVR
|
948 UART_FCR_CLEAR_XMIT
|
949 MOXA_MUST_FCR_GDA_MODE_ENABLE
), info
->ioaddr
+ UART_FCR
);
951 outb((UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
),
952 info
->ioaddr
+ UART_FCR
);
955 * At this point there's no way the LSR could still be 0xFF;
956 * if it is, then bail out, because there's likely no UART
959 if (inb(info
->ioaddr
+ UART_LSR
) == 0xff) {
960 spin_unlock_irqrestore(&info
->slock
, flags
);
961 if (capable(CAP_SYS_ADMIN
)) {
963 set_bit(TTY_IO_ERROR
, &tty
->flags
);
970 * Clear the interrupt registers.
972 (void) inb(info
->ioaddr
+ UART_LSR
);
973 (void) inb(info
->ioaddr
+ UART_RX
);
974 (void) inb(info
->ioaddr
+ UART_IIR
);
975 (void) inb(info
->ioaddr
+ UART_MSR
);
978 * Now, initialize the UART
980 outb(UART_LCR_WLEN8
, info
->ioaddr
+ UART_LCR
); /* reset DLAB */
981 info
->MCR
= UART_MCR_DTR
| UART_MCR_RTS
;
982 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
985 * Finally, enable interrupts
987 info
->IER
= UART_IER_MSI
| UART_IER_RLSI
| UART_IER_RDI
;
989 if (info
->board
->chip_flag
)
990 info
->IER
|= MOXA_MUST_IER_EGDAI
;
991 outb(info
->IER
, info
->ioaddr
+ UART_IER
); /* enable interrupts */
994 * And clear the interrupt registers again for luck.
996 (void) inb(info
->ioaddr
+ UART_LSR
);
997 (void) inb(info
->ioaddr
+ UART_RX
);
998 (void) inb(info
->ioaddr
+ UART_IIR
);
999 (void) inb(info
->ioaddr
+ UART_MSR
);
1001 clear_bit(TTY_IO_ERROR
, &tty
->flags
);
1002 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
1005 * and set the speed of the serial port
1007 mxser_change_speed(tty
, NULL
);
1008 info
->port
.flags
|= ASYNC_INITIALIZED
;
1009 spin_unlock_irqrestore(&info
->slock
, flags
);
1015 * This routine will shutdown a serial port; interrupts maybe disabled, and
1016 * DTR is dropped if the hangup on close termio flag is on.
1018 static void mxser_shutdown(struct tty_struct
*tty
)
1020 struct mxser_port
*info
= tty
->driver_data
;
1021 unsigned long flags
;
1023 if (!(info
->port
.flags
& ASYNC_INITIALIZED
))
1026 spin_lock_irqsave(&info
->slock
, flags
);
1029 * clear delta_msr_wait queue to avoid mem leaks: we may free the irq
1030 * here so the queue might never be waken up
1032 wake_up_interruptible(&info
->delta_msr_wait
);
1035 * Free the IRQ, if necessary
1037 if (info
->port
.xmit_buf
) {
1038 free_page((unsigned long) info
->port
.xmit_buf
);
1039 info
->port
.xmit_buf
= NULL
;
1043 outb(0x00, info
->ioaddr
+ UART_IER
);
1045 if (tty
->termios
->c_cflag
& HUPCL
)
1046 info
->MCR
&= ~(UART_MCR_DTR
| UART_MCR_RTS
);
1047 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
1049 /* clear Rx/Tx FIFO's */
1050 if (info
->board
->chip_flag
)
1051 outb(UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
|
1052 MOXA_MUST_FCR_GDA_MODE_ENABLE
,
1053 info
->ioaddr
+ UART_FCR
);
1055 outb(UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
,
1056 info
->ioaddr
+ UART_FCR
);
1058 /* read data port to reset things */
1059 (void) inb(info
->ioaddr
+ UART_RX
);
1061 set_bit(TTY_IO_ERROR
, &tty
->flags
);
1063 info
->port
.flags
&= ~ASYNC_INITIALIZED
;
1065 if (info
->board
->chip_flag
)
1066 SET_MOXA_MUST_NO_SOFTWARE_FLOW_CONTROL(info
->ioaddr
);
1068 spin_unlock_irqrestore(&info
->slock
, flags
);
1072 * This routine is called whenever a serial port is opened. It
1073 * enables interrupts for a serial port, linking in its async structure into
1074 * the IRQ chain. It also performs the serial-specific
1075 * initialization for the tty structure.
1077 static int mxser_open(struct tty_struct
*tty
, struct file
*filp
)
1079 struct mxser_port
*info
;
1080 unsigned long flags
;
1084 if (line
== MXSER_PORTS
)
1086 if (line
< 0 || line
> MXSER_PORTS
)
1088 info
= &mxser_boards
[line
/ MXSER_PORTS_PER_BOARD
].ports
[line
% MXSER_PORTS_PER_BOARD
];
1092 tty
->driver_data
= info
;
1093 tty_port_tty_set(&info
->port
, tty
);
1095 * Start up serial port
1097 spin_lock_irqsave(&info
->slock
, flags
);
1099 spin_unlock_irqrestore(&info
->slock
, flags
);
1100 retval
= mxser_startup(tty
);
1104 retval
= mxser_block_til_ready(tty
, filp
, info
);
1108 /* unmark here for very high baud rate (ex. 921600 bps) used */
1109 tty
->low_latency
= 1;
1113 static void mxser_flush_buffer(struct tty_struct
*tty
)
1115 struct mxser_port
*info
= tty
->driver_data
;
1117 unsigned long flags
;
1120 spin_lock_irqsave(&info
->slock
, flags
);
1121 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
1123 fcr
= inb(info
->ioaddr
+ UART_FCR
);
1124 outb((fcr
| UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
),
1125 info
->ioaddr
+ UART_FCR
);
1126 outb(fcr
, info
->ioaddr
+ UART_FCR
);
1128 spin_unlock_irqrestore(&info
->slock
, flags
);
1135 * This routine is called when the serial port gets closed. First, we
1136 * wait for the last remaining data to be sent. Then, we unlink its
1137 * async structure from the interrupt chain if necessary, and we free
1138 * that IRQ if nothing is left in the chain.
1140 static void mxser_close(struct tty_struct
*tty
, struct file
*filp
)
1142 struct mxser_port
*info
= tty
->driver_data
;
1144 unsigned long timeout
;
1145 unsigned long flags
;
1147 if (tty
->index
== MXSER_PORTS
)
1152 spin_lock_irqsave(&info
->slock
, flags
);
1154 if (tty_hung_up_p(filp
)) {
1155 spin_unlock_irqrestore(&info
->slock
, flags
);
1158 if ((tty
->count
== 1) && (info
->port
.count
!= 1)) {
1160 * Uh, oh. tty->count is 1, which means that the tty
1161 * structure will be freed. Info->port.count should always
1162 * be one in these conditions. If it's greater than
1163 * one, we've got real problems, since it means the
1164 * serial port won't be shutdown.
1166 printk(KERN_ERR
"mxser_close: bad serial port count; "
1167 "tty->count is 1, info->port.count is %d\n", info
->port
.count
);
1168 info
->port
.count
= 1;
1170 if (--info
->port
.count
< 0) {
1171 printk(KERN_ERR
"mxser_close: bad serial port count for "
1172 "ttys%d: %d\n", tty
->index
, info
->port
.count
);
1173 info
->port
.count
= 0;
1175 if (info
->port
.count
) {
1176 spin_unlock_irqrestore(&info
->slock
, flags
);
1179 info
->port
.flags
|= ASYNC_CLOSING
;
1180 spin_unlock_irqrestore(&info
->slock
, flags
);
1182 * Save the termios structure, since this port may have
1183 * separate termios for callout and dialin.
1185 if (info
->port
.flags
& ASYNC_NORMAL_ACTIVE
)
1186 info
->normal_termios
= *tty
->termios
;
1188 * Now we wait for the transmit buffer to clear; and we notify
1189 * the line discipline to only process XON/XOFF characters.
1192 if (info
->port
.closing_wait
!= ASYNC_CLOSING_WAIT_NONE
)
1193 tty_wait_until_sent(tty
, info
->port
.closing_wait
);
1195 * At this point we stop accepting input. To do this, we
1196 * disable the receive line status interrupts, and tell the
1197 * interrupt driver to stop checking the data ready bit in the
1198 * line status register.
1200 info
->IER
&= ~UART_IER_RLSI
;
1201 if (info
->board
->chip_flag
)
1202 info
->IER
&= ~MOXA_MUST_RECV_ISR
;
1204 if (info
->port
.flags
& ASYNC_INITIALIZED
) {
1205 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1207 * Before we drop DTR, make sure the UART transmitter
1208 * has completely drained; this is especially
1209 * important if there is a transmit FIFO!
1211 timeout
= jiffies
+ HZ
;
1212 while (!(inb(info
->ioaddr
+ UART_LSR
) & UART_LSR_TEMT
)) {
1213 schedule_timeout_interruptible(5);
1214 if (time_after(jiffies
, timeout
))
1218 mxser_shutdown(tty
);
1220 mxser_flush_buffer(tty
);
1221 tty_ldisc_flush(tty
);
1224 tty_port_tty_set(&info
->port
, NULL
);
1225 if (info
->port
.blocked_open
) {
1226 if (info
->port
.close_delay
)
1227 schedule_timeout_interruptible(info
->port
.close_delay
);
1228 wake_up_interruptible(&info
->port
.open_wait
);
1231 info
->port
.flags
&= ~(ASYNC_NORMAL_ACTIVE
| ASYNC_CLOSING
);
1234 static int mxser_write(struct tty_struct
*tty
, const unsigned char *buf
, int count
)
1237 struct mxser_port
*info
= tty
->driver_data
;
1238 unsigned long flags
;
1240 if (!info
->port
.xmit_buf
)
1244 c
= min_t(int, count
, min(SERIAL_XMIT_SIZE
- info
->xmit_cnt
- 1,
1245 SERIAL_XMIT_SIZE
- info
->xmit_head
));
1249 memcpy(info
->port
.xmit_buf
+ info
->xmit_head
, buf
, c
);
1250 spin_lock_irqsave(&info
->slock
, flags
);
1251 info
->xmit_head
= (info
->xmit_head
+ c
) &
1252 (SERIAL_XMIT_SIZE
- 1);
1253 info
->xmit_cnt
+= c
;
1254 spin_unlock_irqrestore(&info
->slock
, flags
);
1261 if (info
->xmit_cnt
&& !tty
->stopped
) {
1262 if (!tty
->hw_stopped
||
1263 (info
->type
== PORT_16550A
) ||
1264 (info
->board
->chip_flag
)) {
1265 spin_lock_irqsave(&info
->slock
, flags
);
1266 outb(info
->IER
& ~UART_IER_THRI
, info
->ioaddr
+
1268 info
->IER
|= UART_IER_THRI
;
1269 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1270 spin_unlock_irqrestore(&info
->slock
, flags
);
1276 static int mxser_put_char(struct tty_struct
*tty
, unsigned char ch
)
1278 struct mxser_port
*info
= tty
->driver_data
;
1279 unsigned long flags
;
1281 if (!info
->port
.xmit_buf
)
1284 if (info
->xmit_cnt
>= SERIAL_XMIT_SIZE
- 1)
1287 spin_lock_irqsave(&info
->slock
, flags
);
1288 info
->port
.xmit_buf
[info
->xmit_head
++] = ch
;
1289 info
->xmit_head
&= SERIAL_XMIT_SIZE
- 1;
1291 spin_unlock_irqrestore(&info
->slock
, flags
);
1292 if (!tty
->stopped
) {
1293 if (!tty
->hw_stopped
||
1294 (info
->type
== PORT_16550A
) ||
1295 info
->board
->chip_flag
) {
1296 spin_lock_irqsave(&info
->slock
, flags
);
1297 outb(info
->IER
& ~UART_IER_THRI
, info
->ioaddr
+ UART_IER
);
1298 info
->IER
|= UART_IER_THRI
;
1299 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1300 spin_unlock_irqrestore(&info
->slock
, flags
);
1307 static void mxser_flush_chars(struct tty_struct
*tty
)
1309 struct mxser_port
*info
= tty
->driver_data
;
1310 unsigned long flags
;
1312 if (info
->xmit_cnt
<= 0 || tty
->stopped
|| !info
->port
.xmit_buf
||
1313 (tty
->hw_stopped
&& info
->type
!= PORT_16550A
&&
1314 !info
->board
->chip_flag
))
1317 spin_lock_irqsave(&info
->slock
, flags
);
1319 outb(info
->IER
& ~UART_IER_THRI
, info
->ioaddr
+ UART_IER
);
1320 info
->IER
|= UART_IER_THRI
;
1321 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1323 spin_unlock_irqrestore(&info
->slock
, flags
);
1326 static int mxser_write_room(struct tty_struct
*tty
)
1328 struct mxser_port
*info
= tty
->driver_data
;
1331 ret
= SERIAL_XMIT_SIZE
- info
->xmit_cnt
- 1;
1332 return ret
< 0 ? 0 : ret
;
1335 static int mxser_chars_in_buffer(struct tty_struct
*tty
)
1337 struct mxser_port
*info
= tty
->driver_data
;
1338 return info
->xmit_cnt
;
1342 * ------------------------------------------------------------
1343 * friends of mxser_ioctl()
1344 * ------------------------------------------------------------
1346 static int mxser_get_serial_info(struct tty_struct
*tty
,
1347 struct serial_struct __user
*retinfo
)
1349 struct mxser_port
*info
= tty
->driver_data
;
1350 struct serial_struct tmp
= {
1353 .port
= info
->ioaddr
,
1354 .irq
= info
->board
->irq
,
1355 .flags
= info
->port
.flags
,
1356 .baud_base
= info
->baud_base
,
1357 .close_delay
= info
->port
.close_delay
,
1358 .closing_wait
= info
->port
.closing_wait
,
1359 .custom_divisor
= info
->custom_divisor
,
1362 if (copy_to_user(retinfo
, &tmp
, sizeof(*retinfo
)))
1367 static int mxser_set_serial_info(struct tty_struct
*tty
,
1368 struct serial_struct __user
*new_info
)
1370 struct mxser_port
*info
= tty
->driver_data
;
1371 struct serial_struct new_serial
;
1373 unsigned long sl_flags
;
1377 if (!new_info
|| !info
->ioaddr
)
1379 if (copy_from_user(&new_serial
, new_info
, sizeof(new_serial
)))
1382 if (new_serial
.irq
!= info
->board
->irq
||
1383 new_serial
.port
!= info
->ioaddr
)
1386 flags
= info
->port
.flags
& ASYNC_SPD_MASK
;
1388 if (!capable(CAP_SYS_ADMIN
)) {
1389 if ((new_serial
.baud_base
!= info
->baud_base
) ||
1390 (new_serial
.close_delay
!= info
->port
.close_delay
) ||
1391 ((new_serial
.flags
& ~ASYNC_USR_MASK
) != (info
->port
.flags
& ~ASYNC_USR_MASK
)))
1393 info
->port
.flags
= ((info
->port
.flags
& ~ASYNC_USR_MASK
) |
1394 (new_serial
.flags
& ASYNC_USR_MASK
));
1397 * OK, past this point, all the error checking has been done.
1398 * At this point, we start making changes.....
1400 info
->port
.flags
= ((info
->port
.flags
& ~ASYNC_FLAGS
) |
1401 (new_serial
.flags
& ASYNC_FLAGS
));
1402 info
->port
.close_delay
= new_serial
.close_delay
* HZ
/ 100;
1403 info
->port
.closing_wait
= new_serial
.closing_wait
* HZ
/ 100;
1404 tty
->low_latency
= (info
->port
.flags
& ASYNC_LOW_LATENCY
)
1406 if ((info
->port
.flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_CUST
&&
1407 (new_serial
.baud_base
!= info
->baud_base
||
1408 new_serial
.custom_divisor
!=
1409 info
->custom_divisor
)) {
1410 baud
= new_serial
.baud_base
/ new_serial
.custom_divisor
;
1411 tty_encode_baud_rate(tty
, baud
, baud
);
1415 info
->type
= new_serial
.type
;
1417 process_txrx_fifo(info
);
1419 if (info
->port
.flags
& ASYNC_INITIALIZED
) {
1420 if (flags
!= (info
->port
.flags
& ASYNC_SPD_MASK
)) {
1421 spin_lock_irqsave(&info
->slock
, sl_flags
);
1422 mxser_change_speed(tty
, NULL
);
1423 spin_unlock_irqrestore(&info
->slock
, sl_flags
);
1426 retval
= mxser_startup(tty
);
1432 * mxser_get_lsr_info - get line status register info
1434 * Purpose: Let user call ioctl() to get info when the UART physically
1435 * is emptied. On bus types like RS485, the transmitter must
1436 * release the bus after transmitting. This must be done when
1437 * the transmit shift register is empty, not be done when the
1438 * transmit holding register is empty. This functionality
1439 * allows an RS485 driver to be written in user space.
1441 static int mxser_get_lsr_info(struct mxser_port
*info
,
1442 unsigned int __user
*value
)
1444 unsigned char status
;
1445 unsigned int result
;
1446 unsigned long flags
;
1448 spin_lock_irqsave(&info
->slock
, flags
);
1449 status
= inb(info
->ioaddr
+ UART_LSR
);
1450 spin_unlock_irqrestore(&info
->slock
, flags
);
1451 result
= ((status
& UART_LSR_TEMT
) ? TIOCSER_TEMT
: 0);
1452 return put_user(result
, value
);
1455 static int mxser_tiocmget(struct tty_struct
*tty
, struct file
*file
)
1457 struct mxser_port
*info
= tty
->driver_data
;
1458 unsigned char control
, status
;
1459 unsigned long flags
;
1462 if (tty
->index
== MXSER_PORTS
)
1463 return -ENOIOCTLCMD
;
1464 if (test_bit(TTY_IO_ERROR
, &tty
->flags
))
1467 control
= info
->MCR
;
1469 spin_lock_irqsave(&info
->slock
, flags
);
1470 status
= inb(info
->ioaddr
+ UART_MSR
);
1471 if (status
& UART_MSR_ANY_DELTA
)
1472 mxser_check_modem_status(tty
, info
, status
);
1473 spin_unlock_irqrestore(&info
->slock
, flags
);
1474 return ((control
& UART_MCR_RTS
) ? TIOCM_RTS
: 0) |
1475 ((control
& UART_MCR_DTR
) ? TIOCM_DTR
: 0) |
1476 ((status
& UART_MSR_DCD
) ? TIOCM_CAR
: 0) |
1477 ((status
& UART_MSR_RI
) ? TIOCM_RNG
: 0) |
1478 ((status
& UART_MSR_DSR
) ? TIOCM_DSR
: 0) |
1479 ((status
& UART_MSR_CTS
) ? TIOCM_CTS
: 0);
1482 static int mxser_tiocmset(struct tty_struct
*tty
, struct file
*file
,
1483 unsigned int set
, unsigned int clear
)
1485 struct mxser_port
*info
= tty
->driver_data
;
1486 unsigned long flags
;
1489 if (tty
->index
== MXSER_PORTS
)
1490 return -ENOIOCTLCMD
;
1491 if (test_bit(TTY_IO_ERROR
, &tty
->flags
))
1494 spin_lock_irqsave(&info
->slock
, flags
);
1496 if (set
& TIOCM_RTS
)
1497 info
->MCR
|= UART_MCR_RTS
;
1498 if (set
& TIOCM_DTR
)
1499 info
->MCR
|= UART_MCR_DTR
;
1501 if (clear
& TIOCM_RTS
)
1502 info
->MCR
&= ~UART_MCR_RTS
;
1503 if (clear
& TIOCM_DTR
)
1504 info
->MCR
&= ~UART_MCR_DTR
;
1506 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
1507 spin_unlock_irqrestore(&info
->slock
, flags
);
1511 static int __init
mxser_program_mode(int port
)
1523 id
= inb(port
+ 1) & 0x1F;
1524 if ((id
!= C168_ASIC_ID
) &&
1525 (id
!= C104_ASIC_ID
) &&
1526 (id
!= C102_ASIC_ID
) &&
1527 (id
!= CI132_ASIC_ID
) &&
1528 (id
!= CI134_ASIC_ID
) &&
1529 (id
!= CI104J_ASIC_ID
))
1531 for (i
= 0, j
= 0; i
< 4; i
++) {
1535 } else if ((j
== 1) && (n
== 1)) {
1546 static void __init
mxser_normal_mode(int port
)
1550 outb(0xA5, port
+ 1);
1551 outb(0x80, port
+ 3);
1552 outb(12, port
+ 0); /* 9600 bps */
1554 outb(0x03, port
+ 3); /* 8 data bits */
1555 outb(0x13, port
+ 4); /* loop back mode */
1556 for (i
= 0; i
< 16; i
++) {
1558 if ((n
& 0x61) == 0x60)
1563 outb(0x00, port
+ 4);
1566 #define CHIP_SK 0x01 /* Serial Data Clock in Eprom */
1567 #define CHIP_DO 0x02 /* Serial Data Output in Eprom */
1568 #define CHIP_CS 0x04 /* Serial Chip Select in Eprom */
1569 #define CHIP_DI 0x08 /* Serial Data Input in Eprom */
1570 #define EN_CCMD 0x000 /* Chip's command register */
1571 #define EN0_RSARLO 0x008 /* Remote start address reg 0 */
1572 #define EN0_RSARHI 0x009 /* Remote start address reg 1 */
1573 #define EN0_RCNTLO 0x00A /* Remote byte count reg WR */
1574 #define EN0_RCNTHI 0x00B /* Remote byte count reg WR */
1575 #define EN0_DCFG 0x00E /* Data configuration reg WR */
1576 #define EN0_PORT 0x010 /* Rcv missed frame error counter RD */
1577 #define ENC_PAGE0 0x000 /* Select page 0 of chip registers */
1578 #define ENC_PAGE3 0x0C0 /* Select page 3 of chip registers */
1579 static int __init
mxser_read_register(int port
, unsigned short *regs
)
1581 int i
, k
, value
, id
;
1584 id
= mxser_program_mode(port
);
1587 for (i
= 0; i
< 14; i
++) {
1588 k
= (i
& 0x3F) | 0x180;
1589 for (j
= 0x100; j
> 0; j
>>= 1) {
1590 outb(CHIP_CS
, port
);
1592 outb(CHIP_CS
| CHIP_DO
, port
);
1593 outb(CHIP_CS
| CHIP_DO
| CHIP_SK
, port
); /* A? bit of read */
1595 outb(CHIP_CS
, port
);
1596 outb(CHIP_CS
| CHIP_SK
, port
); /* A? bit of read */
1601 for (k
= 0, j
= 0x8000; k
< 16; k
++, j
>>= 1) {
1602 outb(CHIP_CS
, port
);
1603 outb(CHIP_CS
| CHIP_SK
, port
);
1604 if (inb(port
) & CHIP_DI
)
1610 mxser_normal_mode(port
);
1614 static int mxser_ioctl_special(unsigned int cmd
, void __user
*argp
)
1616 struct mxser_port
*port
;
1617 struct tty_struct
*tty
;
1623 case MOXA_GET_MAJOR
:
1624 if (printk_ratelimit())
1625 printk(KERN_WARNING
"mxser: '%s' uses deprecated ioctl "
1626 "%x (GET_MAJOR), fix your userspace\n",
1627 current
->comm
, cmd
);
1628 return put_user(ttymajor
, (int __user
*)argp
);
1630 case MOXA_CHKPORTENABLE
:
1633 for (i
= 0; i
< MXSER_BOARDS
; i
++)
1634 for (j
= 0; j
< MXSER_PORTS_PER_BOARD
; j
++)
1635 if (mxser_boards
[i
].ports
[j
].ioaddr
)
1638 return put_user(result
, (unsigned long __user
*)argp
);
1639 case MOXA_GETDATACOUNT
:
1641 if (copy_to_user(argp
, &mxvar_log
, sizeof(mxvar_log
)))
1645 case MOXA_GETMSTATUS
: {
1646 struct mxser_mstatus ms
, __user
*msu
= argp
;
1648 for (i
= 0; i
< MXSER_BOARDS
; i
++)
1649 for (j
= 0; j
< MXSER_PORTS_PER_BOARD
; j
++) {
1650 port
= &mxser_boards
[i
].ports
[j
];
1651 memset(&ms
, 0, sizeof(ms
));
1656 tty
= tty_port_tty_get(&port
->port
);
1658 if (!tty
|| !tty
->termios
)
1659 ms
.cflag
= port
->normal_termios
.c_cflag
;
1661 ms
.cflag
= tty
->termios
->c_cflag
;
1663 status
= inb(port
->ioaddr
+ UART_MSR
);
1664 if (status
& UART_MSR_DCD
)
1666 if (status
& UART_MSR_DSR
)
1668 if (status
& UART_MSR_CTS
)
1671 if (copy_to_user(msu
, &ms
, sizeof(ms
))) {
1680 case MOXA_ASPP_MON_EXT
: {
1681 struct mxser_mon_ext
*me
; /* it's 2k, stack unfriendly */
1682 unsigned int cflag
, iflag
, p
;
1685 me
= kzalloc(sizeof(*me
), GFP_KERNEL
);
1690 for (i
= 0, p
= 0; i
< MXSER_BOARDS
; i
++) {
1691 for (j
= 0; j
< MXSER_PORTS_PER_BOARD
; j
++, p
++) {
1692 if (p
>= ARRAY_SIZE(me
->rx_cnt
)) {
1696 port
= &mxser_boards
[i
].ports
[j
];
1700 status
= mxser_get_msr(port
->ioaddr
, 0, p
);
1702 if (status
& UART_MSR_TERI
)
1704 if (status
& UART_MSR_DDSR
)
1706 if (status
& UART_MSR_DDCD
)
1708 if (status
& UART_MSR_DCTS
)
1711 port
->mon_data
.modem_status
= status
;
1712 me
->rx_cnt
[p
] = port
->mon_data
.rxcnt
;
1713 me
->tx_cnt
[p
] = port
->mon_data
.txcnt
;
1714 me
->up_rxcnt
[p
] = port
->mon_data
.up_rxcnt
;
1715 me
->up_txcnt
[p
] = port
->mon_data
.up_txcnt
;
1716 me
->modem_status
[p
] =
1717 port
->mon_data
.modem_status
;
1718 tty
= tty_port_tty_get(&port
->port
);
1720 if (!tty
|| !tty
->termios
) {
1721 cflag
= port
->normal_termios
.c_cflag
;
1722 iflag
= port
->normal_termios
.c_iflag
;
1723 me
->baudrate
[p
] = tty_termios_baud_rate(&port
->normal_termios
);
1725 cflag
= tty
->termios
->c_cflag
;
1726 iflag
= tty
->termios
->c_iflag
;
1727 me
->baudrate
[p
] = tty_get_baud_rate(tty
);
1731 me
->databits
[p
] = cflag
& CSIZE
;
1732 me
->stopbits
[p
] = cflag
& CSTOPB
;
1733 me
->parity
[p
] = cflag
& (PARENB
| PARODD
|
1736 if (cflag
& CRTSCTS
)
1737 me
->flowctrl
[p
] |= 0x03;
1739 if (iflag
& (IXON
| IXOFF
))
1740 me
->flowctrl
[p
] |= 0x0C;
1742 if (port
->type
== PORT_16550A
)
1745 opmode
= inb(port
->opmode_ioaddr
) >>
1747 opmode
&= OP_MODE_MASK
;
1748 me
->iftype
[p
] = opmode
;
1752 if (copy_to_user(argp
, me
, sizeof(*me
)))
1758 return -ENOIOCTLCMD
;
1763 static int mxser_cflags_changed(struct mxser_port
*info
, unsigned long arg
,
1764 struct async_icount
*cprev
)
1766 struct async_icount cnow
;
1767 unsigned long flags
;
1770 spin_lock_irqsave(&info
->slock
, flags
);
1771 cnow
= info
->icount
; /* atomic copy */
1772 spin_unlock_irqrestore(&info
->slock
, flags
);
1774 ret
= ((arg
& TIOCM_RNG
) && (cnow
.rng
!= cprev
->rng
)) ||
1775 ((arg
& TIOCM_DSR
) && (cnow
.dsr
!= cprev
->dsr
)) ||
1776 ((arg
& TIOCM_CD
) && (cnow
.dcd
!= cprev
->dcd
)) ||
1777 ((arg
& TIOCM_CTS
) && (cnow
.cts
!= cprev
->cts
));
1784 static int mxser_ioctl(struct tty_struct
*tty
, struct file
*file
,
1785 unsigned int cmd
, unsigned long arg
)
1787 struct mxser_port
*info
= tty
->driver_data
;
1788 struct async_icount cnow
;
1789 unsigned long flags
;
1790 void __user
*argp
= (void __user
*)arg
;
1793 if (tty
->index
== MXSER_PORTS
)
1794 return mxser_ioctl_special(cmd
, argp
);
1796 if (cmd
== MOXA_SET_OP_MODE
|| cmd
== MOXA_GET_OP_MODE
) {
1798 unsigned long opmode
;
1799 static unsigned char ModeMask
[] = { 0xfc, 0xf3, 0xcf, 0x3f };
1801 unsigned char val
, mask
;
1804 if (cmd
== MOXA_SET_OP_MODE
) {
1805 if (get_user(opmode
, (int __user
*) argp
))
1807 if (opmode
!= RS232_MODE
&&
1808 opmode
!= RS485_2WIRE_MODE
&&
1809 opmode
!= RS422_MODE
&&
1810 opmode
!= RS485_4WIRE_MODE
)
1815 val
= inb(info
->opmode_ioaddr
);
1817 val
|= (opmode
<< shiftbit
);
1818 outb(val
, info
->opmode_ioaddr
);
1823 opmode
= inb(info
->opmode_ioaddr
) >> shiftbit
;
1824 opmode
&= OP_MODE_MASK
;
1826 if (put_user(opmode
, (int __user
*)argp
))
1832 if (cmd
!= TIOCGSERIAL
&& cmd
!= TIOCMIWAIT
&& cmd
!= TIOCGICOUNT
&&
1833 test_bit(TTY_IO_ERROR
, &tty
->flags
))
1839 retval
= mxser_get_serial_info(tty
, argp
);
1844 retval
= mxser_set_serial_info(tty
, argp
);
1847 case TIOCSERGETLSR
: /* Get line status register */
1848 return mxser_get_lsr_info(info
, argp
);
1850 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1851 * - mask passed in arg for lines of interest
1852 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1853 * Caller should use TIOCGICOUNT to see which one it was
1856 spin_lock_irqsave(&info
->slock
, flags
);
1857 cnow
= info
->icount
; /* note the counters on entry */
1858 spin_unlock_irqrestore(&info
->slock
, flags
);
1860 return wait_event_interruptible(info
->delta_msr_wait
,
1861 mxser_cflags_changed(info
, arg
, &cnow
));
1863 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1864 * Return: write counters to the user passed counter struct
1865 * NB: both 1->0 and 0->1 transitions are counted except for
1866 * RI where only 0->1 is counted.
1869 struct serial_icounter_struct icnt
= { 0 };
1870 spin_lock_irqsave(&info
->slock
, flags
);
1871 cnow
= info
->icount
;
1872 spin_unlock_irqrestore(&info
->slock
, flags
);
1874 icnt
.frame
= cnow
.frame
;
1875 icnt
.brk
= cnow
.brk
;
1876 icnt
.overrun
= cnow
.overrun
;
1877 icnt
.buf_overrun
= cnow
.buf_overrun
;
1878 icnt
.parity
= cnow
.parity
;
1881 icnt
.cts
= cnow
.cts
;
1882 icnt
.dsr
= cnow
.dsr
;
1883 icnt
.rng
= cnow
.rng
;
1884 icnt
.dcd
= cnow
.dcd
;
1886 return copy_to_user(argp
, &icnt
, sizeof(icnt
)) ? -EFAULT
: 0;
1888 case MOXA_HighSpeedOn
:
1889 return put_user(info
->baud_base
!= 115200 ? 1 : 0, (int __user
*)argp
);
1890 case MOXA_SDS_RSTICOUNTER
:
1892 info
->mon_data
.rxcnt
= 0;
1893 info
->mon_data
.txcnt
= 0;
1897 case MOXA_ASPP_OQUEUE
:{
1901 len
= mxser_chars_in_buffer(tty
);
1902 lsr
= inb(info
->ioaddr
+ UART_LSR
) & UART_LSR_TEMT
;
1903 len
+= (lsr
? 0 : 1);
1906 return put_user(len
, (int __user
*)argp
);
1908 case MOXA_ASPP_MON
: {
1912 status
= mxser_get_msr(info
->ioaddr
, 1, tty
->index
);
1913 mxser_check_modem_status(tty
, info
, status
);
1915 mcr
= inb(info
->ioaddr
+ UART_MCR
);
1916 if (mcr
& MOXA_MUST_MCR_XON_FLAG
)
1917 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_XOFFHOLD
;
1919 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_XOFFHOLD
;
1921 if (mcr
& MOXA_MUST_MCR_TX_XON
)
1922 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_XOFFXENT
;
1924 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_XOFFXENT
;
1926 if (tty
->hw_stopped
)
1927 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_CTSHOLD
;
1929 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_CTSHOLD
;
1931 if (copy_to_user(argp
, &info
->mon_data
,
1932 sizeof(struct mxser_mon
)))
1937 case MOXA_ASPP_LSTATUS
: {
1938 if (put_user(info
->err_shadow
, (unsigned char __user
*)argp
))
1941 info
->err_shadow
= 0;
1944 case MOXA_SET_BAUD_METHOD
: {
1947 if (get_user(method
, (int __user
*)argp
))
1949 mxser_set_baud_method
[tty
->index
] = method
;
1950 return put_user(method
, (int __user
*)argp
);
1953 return -ENOIOCTLCMD
;
1958 static void mxser_stoprx(struct tty_struct
*tty
)
1960 struct mxser_port
*info
= tty
->driver_data
;
1962 info
->ldisc_stop_rx
= 1;
1964 if (info
->board
->chip_flag
) {
1965 info
->IER
&= ~MOXA_MUST_RECV_ISR
;
1966 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1968 info
->x_char
= STOP_CHAR(tty
);
1969 outb(0, info
->ioaddr
+ UART_IER
);
1970 info
->IER
|= UART_IER_THRI
;
1971 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1975 if (tty
->termios
->c_cflag
& CRTSCTS
) {
1976 info
->MCR
&= ~UART_MCR_RTS
;
1977 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
1982 * This routine is called by the upper-layer tty layer to signal that
1983 * incoming characters should be throttled.
1985 static void mxser_throttle(struct tty_struct
*tty
)
1990 static void mxser_unthrottle(struct tty_struct
*tty
)
1992 struct mxser_port
*info
= tty
->driver_data
;
1995 info
->ldisc_stop_rx
= 0;
2000 if (info
->board
->chip_flag
) {
2001 info
->IER
|= MOXA_MUST_RECV_ISR
;
2002 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
2004 info
->x_char
= START_CHAR(tty
);
2005 outb(0, info
->ioaddr
+ UART_IER
);
2006 info
->IER
|= UART_IER_THRI
;
2007 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
2012 if (tty
->termios
->c_cflag
& CRTSCTS
) {
2013 info
->MCR
|= UART_MCR_RTS
;
2014 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
2019 * mxser_stop() and mxser_start()
2021 * This routines are called before setting or resetting tty->stopped.
2022 * They enable or disable transmitter interrupts, as necessary.
2024 static void mxser_stop(struct tty_struct
*tty
)
2026 struct mxser_port
*info
= tty
->driver_data
;
2027 unsigned long flags
;
2029 spin_lock_irqsave(&info
->slock
, flags
);
2030 if (info
->IER
& UART_IER_THRI
) {
2031 info
->IER
&= ~UART_IER_THRI
;
2032 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
2034 spin_unlock_irqrestore(&info
->slock
, flags
);
2037 static void mxser_start(struct tty_struct
*tty
)
2039 struct mxser_port
*info
= tty
->driver_data
;
2040 unsigned long flags
;
2042 spin_lock_irqsave(&info
->slock
, flags
);
2043 if (info
->xmit_cnt
&& info
->port
.xmit_buf
) {
2044 outb(info
->IER
& ~UART_IER_THRI
, info
->ioaddr
+ UART_IER
);
2045 info
->IER
|= UART_IER_THRI
;
2046 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
2048 spin_unlock_irqrestore(&info
->slock
, flags
);
2051 static void mxser_set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
)
2053 struct mxser_port
*info
= tty
->driver_data
;
2054 unsigned long flags
;
2056 spin_lock_irqsave(&info
->slock
, flags
);
2057 mxser_change_speed(tty
, old_termios
);
2058 spin_unlock_irqrestore(&info
->slock
, flags
);
2060 if ((old_termios
->c_cflag
& CRTSCTS
) &&
2061 !(tty
->termios
->c_cflag
& CRTSCTS
)) {
2062 tty
->hw_stopped
= 0;
2066 /* Handle sw stopped */
2067 if ((old_termios
->c_iflag
& IXON
) &&
2068 !(tty
->termios
->c_iflag
& IXON
)) {
2071 if (info
->board
->chip_flag
) {
2072 spin_lock_irqsave(&info
->slock
, flags
);
2073 mxser_disable_must_rx_software_flow_control(
2075 spin_unlock_irqrestore(&info
->slock
, flags
);
2083 * mxser_wait_until_sent() --- wait until the transmitter is empty
2085 static void mxser_wait_until_sent(struct tty_struct
*tty
, int timeout
)
2087 struct mxser_port
*info
= tty
->driver_data
;
2088 unsigned long orig_jiffies
, char_time
;
2091 if (info
->type
== PORT_UNKNOWN
)
2094 if (info
->xmit_fifo_size
== 0)
2095 return; /* Just in case.... */
2097 orig_jiffies
= jiffies
;
2099 * Set the check interval to be 1/5 of the estimated time to
2100 * send a single character, and make it at least 1. The check
2101 * interval should also be less than the timeout.
2103 * Note: we have to use pretty tight timings here to satisfy
2106 char_time
= (info
->timeout
- HZ
/ 50) / info
->xmit_fifo_size
;
2107 char_time
= char_time
/ 5;
2110 if (timeout
&& timeout
< char_time
)
2111 char_time
= timeout
;
2113 * If the transmitter hasn't cleared in twice the approximate
2114 * amount of time to send the entire FIFO, it probably won't
2115 * ever clear. This assumes the UART isn't doing flow
2116 * control, which is currently the case. Hence, if it ever
2117 * takes longer than info->timeout, this is probably due to a
2118 * UART bug of some kind. So, we clamp the timeout parameter at
2121 if (!timeout
|| timeout
> 2 * info
->timeout
)
2122 timeout
= 2 * info
->timeout
;
2123 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2124 printk(KERN_DEBUG
"In rs_wait_until_sent(%d) check=%lu...",
2125 timeout
, char_time
);
2126 printk("jiff=%lu...", jiffies
);
2129 while (!((lsr
= inb(info
->ioaddr
+ UART_LSR
)) & UART_LSR_TEMT
)) {
2130 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2131 printk("lsr = %d (jiff=%lu)...", lsr
, jiffies
);
2133 schedule_timeout_interruptible(char_time
);
2134 if (signal_pending(current
))
2136 if (timeout
&& time_after(jiffies
, orig_jiffies
+ timeout
))
2139 set_current_state(TASK_RUNNING
);
2142 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2143 printk("lsr = %d (jiff=%lu)...done\n", lsr
, jiffies
);
2148 * This routine is called by tty_hangup() when a hangup is signaled.
2150 static void mxser_hangup(struct tty_struct
*tty
)
2152 struct mxser_port
*info
= tty
->driver_data
;
2154 mxser_flush_buffer(tty
);
2155 mxser_shutdown(tty
);
2156 info
->port
.count
= 0;
2157 info
->port
.flags
&= ~ASYNC_NORMAL_ACTIVE
;
2158 tty_port_tty_set(&info
->port
, NULL
);
2159 wake_up_interruptible(&info
->port
.open_wait
);
2163 * mxser_rs_break() --- routine which turns the break handling on or off
2165 static int mxser_rs_break(struct tty_struct
*tty
, int break_state
)
2167 struct mxser_port
*info
= tty
->driver_data
;
2168 unsigned long flags
;
2170 spin_lock_irqsave(&info
->slock
, flags
);
2171 if (break_state
== -1)
2172 outb(inb(info
->ioaddr
+ UART_LCR
) | UART_LCR_SBC
,
2173 info
->ioaddr
+ UART_LCR
);
2175 outb(inb(info
->ioaddr
+ UART_LCR
) & ~UART_LCR_SBC
,
2176 info
->ioaddr
+ UART_LCR
);
2177 spin_unlock_irqrestore(&info
->slock
, flags
);
2181 static void mxser_receive_chars(struct tty_struct
*tty
,
2182 struct mxser_port
*port
, int *status
)
2184 unsigned char ch
, gdl
;
2190 recv_room
= tty
->receive_room
;
2191 if (recv_room
== 0 && !port
->ldisc_stop_rx
)
2193 if (port
->board
->chip_flag
!= MOXA_OTHER_UART
) {
2195 if (*status
& UART_LSR_SPECIAL
)
2197 if (port
->board
->chip_flag
== MOXA_MUST_MU860_HWID
&&
2198 (*status
& MOXA_MUST_LSR_RERR
))
2200 if (*status
& MOXA_MUST_LSR_RERR
)
2203 gdl
= inb(port
->ioaddr
+ MOXA_MUST_GDL_REGISTER
);
2205 if (port
->board
->chip_flag
== MOXA_MUST_MU150_HWID
)
2206 gdl
&= MOXA_MUST_GDL_MASK
;
2207 if (gdl
>= recv_room
) {
2208 if (!port
->ldisc_stop_rx
)
2212 ch
= inb(port
->ioaddr
+ UART_RX
);
2213 tty_insert_flip_char(tty
, ch
, 0);
2224 ch
= inb(port
->ioaddr
+ UART_RX
);
2225 if (port
->board
->chip_flag
&& (*status
& UART_LSR_OE
))
2226 outb(0x23, port
->ioaddr
+ UART_FCR
);
2227 *status
&= port
->read_status_mask
;
2228 if (*status
& port
->ignore_status_mask
) {
2229 if (++ignored
> 100)
2233 if (*status
& UART_LSR_SPECIAL
) {
2234 if (*status
& UART_LSR_BI
) {
2238 if (port
->port
.flags
& ASYNC_SAK
)
2240 } else if (*status
& UART_LSR_PE
) {
2242 port
->icount
.parity
++;
2243 } else if (*status
& UART_LSR_FE
) {
2245 port
->icount
.frame
++;
2246 } else if (*status
& UART_LSR_OE
) {
2248 port
->icount
.overrun
++;
2252 tty_insert_flip_char(tty
, ch
, flag
);
2254 if (cnt
>= recv_room
) {
2255 if (!port
->ldisc_stop_rx
)
2262 if (port
->board
->chip_flag
)
2265 *status
= inb(port
->ioaddr
+ UART_LSR
);
2266 } while (*status
& UART_LSR_DR
);
2269 mxvar_log
.rxcnt
[tty
->index
] += cnt
;
2270 port
->mon_data
.rxcnt
+= cnt
;
2271 port
->mon_data
.up_rxcnt
+= cnt
;
2274 * We are called from an interrupt context with &port->slock
2275 * being held. Drop it temporarily in order to prevent
2276 * recursive locking.
2278 spin_unlock(&port
->slock
);
2279 tty_flip_buffer_push(tty
);
2280 spin_lock(&port
->slock
);
2283 static void mxser_transmit_chars(struct tty_struct
*tty
, struct mxser_port
*port
)
2288 outb(port
->x_char
, port
->ioaddr
+ UART_TX
);
2290 mxvar_log
.txcnt
[tty
->index
]++;
2291 port
->mon_data
.txcnt
++;
2292 port
->mon_data
.up_txcnt
++;
2297 if (port
->port
.xmit_buf
== NULL
)
2300 if (port
->xmit_cnt
<= 0 || tty
->stopped
||
2302 (port
->type
!= PORT_16550A
) &&
2303 (!port
->board
->chip_flag
))) {
2304 port
->IER
&= ~UART_IER_THRI
;
2305 outb(port
->IER
, port
->ioaddr
+ UART_IER
);
2309 cnt
= port
->xmit_cnt
;
2310 count
= port
->xmit_fifo_size
;
2312 outb(port
->port
.xmit_buf
[port
->xmit_tail
++],
2313 port
->ioaddr
+ UART_TX
);
2314 port
->xmit_tail
= port
->xmit_tail
& (SERIAL_XMIT_SIZE
- 1);
2315 if (--port
->xmit_cnt
<= 0)
2317 } while (--count
> 0);
2318 mxvar_log
.txcnt
[tty
->index
] += (cnt
- port
->xmit_cnt
);
2320 port
->mon_data
.txcnt
+= (cnt
- port
->xmit_cnt
);
2321 port
->mon_data
.up_txcnt
+= (cnt
- port
->xmit_cnt
);
2322 port
->icount
.tx
+= (cnt
- port
->xmit_cnt
);
2324 if (port
->xmit_cnt
< WAKEUP_CHARS
&& tty
)
2327 if (port
->xmit_cnt
<= 0) {
2328 port
->IER
&= ~UART_IER_THRI
;
2329 outb(port
->IER
, port
->ioaddr
+ UART_IER
);
2334 * This is the serial driver's generic interrupt routine
2336 static irqreturn_t
mxser_interrupt(int irq
, void *dev_id
)
2339 struct mxser_board
*brd
= NULL
;
2340 struct mxser_port
*port
;
2341 int max
, irqbits
, bits
, msr
;
2342 unsigned int int_cnt
, pass_counter
= 0;
2343 int handled
= IRQ_NONE
;
2344 struct tty_struct
*tty
;
2346 for (i
= 0; i
< MXSER_BOARDS
; i
++)
2347 if (dev_id
== &mxser_boards
[i
]) {
2352 if (i
== MXSER_BOARDS
)
2356 max
= brd
->info
->nports
;
2357 while (pass_counter
++ < MXSER_ISR_PASS_LIMIT
) {
2358 irqbits
= inb(brd
->vector
) & brd
->vector_mask
;
2359 if (irqbits
== brd
->vector_mask
)
2362 handled
= IRQ_HANDLED
;
2363 for (i
= 0, bits
= 1; i
< max
; i
++, irqbits
|= bits
, bits
<<= 1) {
2364 if (irqbits
== brd
->vector_mask
)
2368 port
= &brd
->ports
[i
];
2371 spin_lock(&port
->slock
);
2373 iir
= inb(port
->ioaddr
+ UART_IIR
);
2374 if (iir
& UART_IIR_NO_INT
)
2376 iir
&= MOXA_MUST_IIR_MASK
;
2377 tty
= tty_port_tty_get(&port
->port
);
2379 (port
->port
.flags
& ASYNC_CLOSING
) ||
2380 !(port
->port
.flags
&
2381 ASYNC_INITIALIZED
)) {
2382 status
= inb(port
->ioaddr
+ UART_LSR
);
2383 outb(0x27, port
->ioaddr
+ UART_FCR
);
2384 inb(port
->ioaddr
+ UART_MSR
);
2389 status
= inb(port
->ioaddr
+ UART_LSR
);
2391 if (status
& UART_LSR_PE
)
2392 port
->err_shadow
|= NPPI_NOTIFY_PARITY
;
2393 if (status
& UART_LSR_FE
)
2394 port
->err_shadow
|= NPPI_NOTIFY_FRAMING
;
2395 if (status
& UART_LSR_OE
)
2397 NPPI_NOTIFY_HW_OVERRUN
;
2398 if (status
& UART_LSR_BI
)
2399 port
->err_shadow
|= NPPI_NOTIFY_BREAK
;
2401 if (port
->board
->chip_flag
) {
2402 if (iir
== MOXA_MUST_IIR_GDA
||
2403 iir
== MOXA_MUST_IIR_RDA
||
2404 iir
== MOXA_MUST_IIR_RTO
||
2405 iir
== MOXA_MUST_IIR_LSR
)
2406 mxser_receive_chars(tty
, port
,
2410 status
&= port
->read_status_mask
;
2411 if (status
& UART_LSR_DR
)
2412 mxser_receive_chars(tty
, port
,
2415 msr
= inb(port
->ioaddr
+ UART_MSR
);
2416 if (msr
& UART_MSR_ANY_DELTA
)
2417 mxser_check_modem_status(tty
, port
, msr
);
2419 if (port
->board
->chip_flag
) {
2420 if (iir
== 0x02 && (status
&
2422 mxser_transmit_chars(tty
, port
);
2424 if (status
& UART_LSR_THRE
)
2425 mxser_transmit_chars(tty
, port
);
2428 } while (int_cnt
++ < MXSER_ISR_PASS_LIMIT
);
2429 spin_unlock(&port
->slock
);
2437 static const struct tty_operations mxser_ops
= {
2439 .close
= mxser_close
,
2440 .write
= mxser_write
,
2441 .put_char
= mxser_put_char
,
2442 .flush_chars
= mxser_flush_chars
,
2443 .write_room
= mxser_write_room
,
2444 .chars_in_buffer
= mxser_chars_in_buffer
,
2445 .flush_buffer
= mxser_flush_buffer
,
2446 .ioctl
= mxser_ioctl
,
2447 .throttle
= mxser_throttle
,
2448 .unthrottle
= mxser_unthrottle
,
2449 .set_termios
= mxser_set_termios
,
2451 .start
= mxser_start
,
2452 .hangup
= mxser_hangup
,
2453 .break_ctl
= mxser_rs_break
,
2454 .wait_until_sent
= mxser_wait_until_sent
,
2455 .tiocmget
= mxser_tiocmget
,
2456 .tiocmset
= mxser_tiocmset
,
2459 struct tty_port_operations mxser_port_ops
= {
2460 .carrier_raised
= mxser_carrier_raised
,
2464 * The MOXA Smartio/Industio serial driver boot-time initialization code!
2467 static void mxser_release_res(struct mxser_board
*brd
, struct pci_dev
*pdev
,
2471 free_irq(brd
->irq
, brd
);
2472 if (pdev
!= NULL
) { /* PCI */
2474 pci_release_region(pdev
, 2);
2475 pci_release_region(pdev
, 3);
2478 release_region(brd
->ports
[0].ioaddr
, 8 * brd
->info
->nports
);
2479 release_region(brd
->vector
, 1);
2483 static int __devinit
mxser_initbrd(struct mxser_board
*brd
,
2484 struct pci_dev
*pdev
)
2486 struct mxser_port
*info
;
2490 printk(KERN_INFO
"mxser: max. baud rate = %d bps\n",
2491 brd
->ports
[0].max_baud
);
2493 for (i
= 0; i
< brd
->info
->nports
; i
++) {
2494 info
= &brd
->ports
[i
];
2495 tty_port_init(&info
->port
);
2496 info
->port
.ops
= &mxser_port_ops
;
2499 info
->ldisc_stop_rx
= 0;
2501 /* Enhance mode enabled here */
2502 if (brd
->chip_flag
!= MOXA_OTHER_UART
)
2503 mxser_enable_must_enchance_mode(info
->ioaddr
);
2505 info
->port
.flags
= ASYNC_SHARE_IRQ
;
2506 info
->type
= brd
->uart_type
;
2508 process_txrx_fifo(info
);
2510 info
->custom_divisor
= info
->baud_base
* 16;
2511 info
->port
.close_delay
= 5 * HZ
/ 10;
2512 info
->port
.closing_wait
= 30 * HZ
;
2513 info
->normal_termios
= mxvar_sdriver
->init_termios
;
2514 init_waitqueue_head(&info
->delta_msr_wait
);
2515 memset(&info
->mon_data
, 0, sizeof(struct mxser_mon
));
2516 info
->err_shadow
= 0;
2517 spin_lock_init(&info
->slock
);
2519 /* before set INT ISR, disable all int */
2520 outb(inb(info
->ioaddr
+ UART_IER
) & 0xf0,
2521 info
->ioaddr
+ UART_IER
);
2524 retval
= request_irq(brd
->irq
, mxser_interrupt
, IRQF_SHARED
, "mxser",
2527 printk(KERN_ERR
"Board %s: Request irq failed, IRQ (%d) may "
2528 "conflict with another device.\n",
2529 brd
->info
->name
, brd
->irq
);
2530 /* We hold resources, we need to release them. */
2531 mxser_release_res(brd
, pdev
, 0);
2536 static int __init
mxser_get_ISA_conf(int cap
, struct mxser_board
*brd
)
2539 unsigned short regs
[16], irq
;
2540 unsigned char scratch
, scratch2
;
2542 brd
->chip_flag
= MOXA_OTHER_UART
;
2544 id
= mxser_read_register(cap
, regs
);
2547 brd
->info
= &mxser_cards
[0];
2550 brd
->info
= &mxser_cards
[1];
2552 case CI104J_ASIC_ID
:
2553 brd
->info
= &mxser_cards
[2];
2556 brd
->info
= &mxser_cards
[5];
2559 brd
->info
= &mxser_cards
[6];
2562 brd
->info
= &mxser_cards
[7];
2569 /* some ISA cards have 2 ports, but we want to see them as 4-port (why?)
2570 Flag-hack checks if configuration should be read as 2-port here. */
2571 if (brd
->info
->nports
== 2 || (brd
->info
->flags
& MXSER_HAS2
)) {
2572 irq
= regs
[9] & 0xF000;
2573 irq
= irq
| (irq
>> 4);
2574 if (irq
!= (regs
[9] & 0xFF00))
2575 goto err_irqconflict
;
2576 } else if (brd
->info
->nports
== 4) {
2577 irq
= regs
[9] & 0xF000;
2578 irq
= irq
| (irq
>> 4);
2579 irq
= irq
| (irq
>> 8);
2581 goto err_irqconflict
;
2582 } else if (brd
->info
->nports
== 8) {
2583 irq
= regs
[9] & 0xF000;
2584 irq
= irq
| (irq
>> 4);
2585 irq
= irq
| (irq
>> 8);
2586 if ((irq
!= regs
[9]) || (irq
!= regs
[10]))
2587 goto err_irqconflict
;
2591 printk(KERN_ERR
"mxser: interrupt number unset\n");
2594 brd
->irq
= ((int)(irq
& 0xF000) >> 12);
2595 for (i
= 0; i
< 8; i
++)
2596 brd
->ports
[i
].ioaddr
= (int) regs
[i
+ 1] & 0xFFF8;
2597 if ((regs
[12] & 0x80) == 0) {
2598 printk(KERN_ERR
"mxser: invalid interrupt vector\n");
2601 brd
->vector
= (int)regs
[11]; /* interrupt vector */
2603 brd
->vector_mask
= 0x00FF;
2605 brd
->vector_mask
= 0x000F;
2606 for (i
= 7, bits
= 0x0100; i
>= 0; i
--, bits
<<= 1) {
2607 if (regs
[12] & bits
) {
2608 brd
->ports
[i
].baud_base
= 921600;
2609 brd
->ports
[i
].max_baud
= 921600;
2611 brd
->ports
[i
].baud_base
= 115200;
2612 brd
->ports
[i
].max_baud
= 115200;
2615 scratch2
= inb(cap
+ UART_LCR
) & (~UART_LCR_DLAB
);
2616 outb(scratch2
| UART_LCR_DLAB
, cap
+ UART_LCR
);
2617 outb(0, cap
+ UART_EFR
); /* EFR is the same as FCR */
2618 outb(scratch2
, cap
+ UART_LCR
);
2619 outb(UART_FCR_ENABLE_FIFO
, cap
+ UART_FCR
);
2620 scratch
= inb(cap
+ UART_IIR
);
2623 brd
->uart_type
= PORT_16550A
;
2625 brd
->uart_type
= PORT_16450
;
2626 if (!request_region(brd
->ports
[0].ioaddr
, 8 * brd
->info
->nports
,
2628 printk(KERN_ERR
"mxser: can't request ports I/O region: "
2629 "0x%.8lx-0x%.8lx\n",
2630 brd
->ports
[0].ioaddr
, brd
->ports
[0].ioaddr
+
2631 8 * brd
->info
->nports
- 1);
2634 if (!request_region(brd
->vector
, 1, "mxser(vector)")) {
2635 release_region(brd
->ports
[0].ioaddr
, 8 * brd
->info
->nports
);
2636 printk(KERN_ERR
"mxser: can't request interrupt vector region: "
2637 "0x%.8lx-0x%.8lx\n",
2638 brd
->ports
[0].ioaddr
, brd
->ports
[0].ioaddr
+
2639 8 * brd
->info
->nports
- 1);
2642 return brd
->info
->nports
;
2645 printk(KERN_ERR
"mxser: invalid interrupt number\n");
2649 static int __devinit
mxser_probe(struct pci_dev
*pdev
,
2650 const struct pci_device_id
*ent
)
2653 struct mxser_board
*brd
;
2655 unsigned long ioaddress
;
2656 int retval
= -EINVAL
;
2658 for (i
= 0; i
< MXSER_BOARDS
; i
++)
2659 if (mxser_boards
[i
].info
== NULL
)
2662 if (i
>= MXSER_BOARDS
) {
2663 dev_err(&pdev
->dev
, "too many boards found (maximum %d), board "
2664 "not configured\n", MXSER_BOARDS
);
2668 brd
= &mxser_boards
[i
];
2669 brd
->idx
= i
* MXSER_PORTS_PER_BOARD
;
2670 dev_info(&pdev
->dev
, "found MOXA %s board (BusNo=%d, DevNo=%d)\n",
2671 mxser_cards
[ent
->driver_data
].name
,
2672 pdev
->bus
->number
, PCI_SLOT(pdev
->devfn
));
2674 retval
= pci_enable_device(pdev
);
2676 dev_err(&pdev
->dev
, "PCI enable failed\n");
2681 ioaddress
= pci_resource_start(pdev
, 2);
2682 retval
= pci_request_region(pdev
, 2, "mxser(IO)");
2686 brd
->info
= &mxser_cards
[ent
->driver_data
];
2687 for (i
= 0; i
< brd
->info
->nports
; i
++)
2688 brd
->ports
[i
].ioaddr
= ioaddress
+ 8 * i
;
2691 ioaddress
= pci_resource_start(pdev
, 3);
2692 retval
= pci_request_region(pdev
, 3, "mxser(vector)");
2695 brd
->vector
= ioaddress
;
2698 brd
->irq
= pdev
->irq
;
2700 brd
->chip_flag
= CheckIsMoxaMust(brd
->ports
[0].ioaddr
);
2701 brd
->uart_type
= PORT_16550A
;
2702 brd
->vector_mask
= 0;
2704 for (i
= 0; i
< brd
->info
->nports
; i
++) {
2705 for (j
= 0; j
< UART_INFO_NUM
; j
++) {
2706 if (Gpci_uart_info
[j
].type
== brd
->chip_flag
) {
2707 brd
->ports
[i
].max_baud
=
2708 Gpci_uart_info
[j
].max_baud
;
2710 /* exception....CP-102 */
2711 if (brd
->info
->flags
& MXSER_HIGHBAUD
)
2712 brd
->ports
[i
].max_baud
= 921600;
2718 if (brd
->chip_flag
== MOXA_MUST_MU860_HWID
) {
2719 for (i
= 0; i
< brd
->info
->nports
; i
++) {
2721 brd
->ports
[i
].opmode_ioaddr
= ioaddress
+ 4;
2723 brd
->ports
[i
].opmode_ioaddr
= ioaddress
+ 0x0c;
2725 outb(0, ioaddress
+ 4); /* default set to RS232 mode */
2726 outb(0, ioaddress
+ 0x0c); /* default set to RS232 mode */
2729 for (i
= 0; i
< brd
->info
->nports
; i
++) {
2730 brd
->vector_mask
|= (1 << i
);
2731 brd
->ports
[i
].baud_base
= 921600;
2734 /* mxser_initbrd will hook ISR. */
2735 retval
= mxser_initbrd(brd
, pdev
);
2739 for (i
= 0; i
< brd
->info
->nports
; i
++)
2740 tty_register_device(mxvar_sdriver
, brd
->idx
+ i
, &pdev
->dev
);
2742 pci_set_drvdata(pdev
, brd
);
2746 pci_release_region(pdev
, 2);
2756 static void __devexit
mxser_remove(struct pci_dev
*pdev
)
2758 struct mxser_board
*brd
= pci_get_drvdata(pdev
);
2761 for (i
= 0; i
< brd
->info
->nports
; i
++)
2762 tty_unregister_device(mxvar_sdriver
, brd
->idx
+ i
);
2764 mxser_release_res(brd
, pdev
, 1);
2768 static struct pci_driver mxser_driver
= {
2770 .id_table
= mxser_pcibrds
,
2771 .probe
= mxser_probe
,
2772 .remove
= __devexit_p(mxser_remove
)
2775 static int __init
mxser_module_init(void)
2777 struct mxser_board
*brd
;
2778 unsigned int b
, i
, m
;
2781 mxvar_sdriver
= alloc_tty_driver(MXSER_PORTS
+ 1);
2785 printk(KERN_INFO
"MOXA Smartio/Industio family driver version %s\n",
2788 /* Initialize the tty_driver structure */
2789 mxvar_sdriver
->owner
= THIS_MODULE
;
2790 mxvar_sdriver
->magic
= TTY_DRIVER_MAGIC
;
2791 mxvar_sdriver
->name
= "ttyMI";
2792 mxvar_sdriver
->major
= ttymajor
;
2793 mxvar_sdriver
->minor_start
= 0;
2794 mxvar_sdriver
->num
= MXSER_PORTS
+ 1;
2795 mxvar_sdriver
->type
= TTY_DRIVER_TYPE_SERIAL
;
2796 mxvar_sdriver
->subtype
= SERIAL_TYPE_NORMAL
;
2797 mxvar_sdriver
->init_termios
= tty_std_termios
;
2798 mxvar_sdriver
->init_termios
.c_cflag
= B9600
|CS8
|CREAD
|HUPCL
|CLOCAL
;
2799 mxvar_sdriver
->flags
= TTY_DRIVER_REAL_RAW
|TTY_DRIVER_DYNAMIC_DEV
;
2800 tty_set_operations(mxvar_sdriver
, &mxser_ops
);
2802 retval
= tty_register_driver(mxvar_sdriver
);
2804 printk(KERN_ERR
"Couldn't install MOXA Smartio/Industio family "
2809 /* Start finding ISA boards here */
2810 for (m
= 0, b
= 0; b
< MXSER_BOARDS
; b
++) {
2814 brd
= &mxser_boards
[m
];
2815 retval
= mxser_get_ISA_conf(!ioaddr
[b
], brd
);
2821 printk(KERN_INFO
"mxser: found MOXA %s board (CAP=0x%lx)\n",
2822 brd
->info
->name
, ioaddr
[b
]);
2824 /* mxser_initbrd will hook ISR. */
2825 if (mxser_initbrd(brd
, NULL
) < 0) {
2830 brd
->idx
= m
* MXSER_PORTS_PER_BOARD
;
2831 for (i
= 0; i
< brd
->info
->nports
; i
++)
2832 tty_register_device(mxvar_sdriver
, brd
->idx
+ i
, NULL
);
2837 retval
= pci_register_driver(&mxser_driver
);
2839 printk(KERN_ERR
"mxser: can't register pci driver\n");
2843 } /* else: we have some ISA cards under control */
2848 tty_unregister_driver(mxvar_sdriver
);
2850 put_tty_driver(mxvar_sdriver
);
2854 static void __exit
mxser_module_exit(void)
2858 pci_unregister_driver(&mxser_driver
);
2860 for (i
= 0; i
< MXSER_BOARDS
; i
++) /* ISA remains */
2861 if (mxser_boards
[i
].info
!= NULL
)
2862 for (j
= 0; j
< mxser_boards
[i
].info
->nports
; j
++)
2863 tty_unregister_device(mxvar_sdriver
,
2864 mxser_boards
[i
].idx
+ j
);
2865 tty_unregister_driver(mxvar_sdriver
);
2866 put_tty_driver(mxvar_sdriver
);
2868 for (i
= 0; i
< MXSER_BOARDS
; i
++)
2869 if (mxser_boards
[i
].info
!= NULL
)
2870 mxser_release_res(&mxser_boards
[i
], NULL
, 1);
2873 module_init(mxser_module_init
);
2874 module_exit(mxser_module_exit
);