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/ioport.h>
38 #include <linux/delay.h>
39 #include <linux/pci.h>
40 #include <linux/bitops.h>
41 #include <linux/slab.h>
43 #include <asm/system.h>
46 #include <asm/uaccess.h>
50 #define MXSER_VERSION "2.0.5" /* 1.14 */
51 #define MXSERMAJOR 174
53 #ifdef CONFIG_ARCH_MOXART
54 #define MXSER_BOARDS 1 /* Max. boards */
56 #define MXSER_BOARDS 4 /* Max. boards */
59 #define MXSER_PORTS_PER_BOARD 8 /* Max. ports per board */
60 #define MXSER_PORTS (MXSER_BOARDS * MXSER_PORTS_PER_BOARD)
61 #define MXSER_ISR_PASS_LIMIT 100
63 /*CheckIsMoxaMust return value*/
64 #define MOXA_OTHER_UART 0x00
65 #define MOXA_MUST_MU150_HWID 0x01
66 #define MOXA_MUST_MU860_HWID 0x02
68 #define WAKEUP_CHARS 256
70 #define UART_MCR_AFE 0x20
71 #define UART_LSR_SPECIAL 0x1E
73 #define PCI_DEVICE_ID_POS104UL 0x1044
74 #define PCI_DEVICE_ID_CB108 0x1080
75 #define PCI_DEVICE_ID_CP102UF 0x1023
76 #define PCI_DEVICE_ID_CP112UL 0x1120
77 #define PCI_DEVICE_ID_CB114 0x1142
78 #define PCI_DEVICE_ID_CP114UL 0x1143
79 #define PCI_DEVICE_ID_CB134I 0x1341
80 #define PCI_DEVICE_ID_CP138U 0x1380
83 #define C168_ASIC_ID 1
84 #define C104_ASIC_ID 2
85 #define C102_ASIC_ID 0xB
86 #define CI132_ASIC_ID 4
87 #define CI134_ASIC_ID 3
88 #define CI104J_ASIC_ID 5
90 #define MXSER_HIGHBAUD 1
93 /* This is only for PCI */
103 } Gpci_uart_info
[] = {
104 {MOXA_OTHER_UART
, 16, 16, 16, 14, 14, 1, 921600L},
105 {MOXA_MUST_MU150_HWID
, 64, 64, 64, 48, 48, 16, 230400L},
106 {MOXA_MUST_MU860_HWID
, 128, 128, 128, 96, 96, 32, 921600L}
108 #define UART_INFO_NUM ARRAY_SIZE(Gpci_uart_info)
110 struct mxser_cardinfo
{
116 static const struct mxser_cardinfo mxser_cards
[] = {
117 /* 0*/ { "C168 series", 8, },
118 { "C104 series", 4, },
119 { "CI-104J series", 4, },
120 { "C168H/PCI series", 8, },
121 { "C104H/PCI series", 4, },
122 /* 5*/ { "C102 series", 4, MXSER_HAS2
}, /* C102-ISA */
123 { "CI-132 series", 4, MXSER_HAS2
},
124 { "CI-134 series", 4, },
125 { "CP-132 series", 2, },
126 { "CP-114 series", 4, },
127 /*10*/ { "CT-114 series", 4, },
128 { "CP-102 series", 2, MXSER_HIGHBAUD
},
129 { "CP-104U series", 4, },
130 { "CP-168U series", 8, },
131 { "CP-132U series", 2, },
132 /*15*/ { "CP-134U series", 4, },
133 { "CP-104JU series", 4, },
134 { "Moxa UC7000 Serial", 8, }, /* RC7000 */
135 { "CP-118U series", 8, },
136 { "CP-102UL series", 2, },
137 /*20*/ { "CP-102U series", 2, },
138 { "CP-118EL series", 8, },
139 { "CP-168EL series", 8, },
140 { "CP-104EL series", 4, },
141 { "CB-108 series", 8, },
142 /*25*/ { "CB-114 series", 4, },
143 { "CB-134I series", 4, },
144 { "CP-138U series", 8, },
145 { "POS-104UL series", 4, },
146 { "CP-114UL series", 4, },
147 /*30*/ { "CP-102UF series", 2, },
148 { "CP-112UL series", 2, },
149 { "UC-7112-LX Serial", 2, },
152 /* driver_data correspond to the lines in the structure above
153 see also ISA probe function before you change something */
154 static struct pci_device_id mxser_pcibrds
[] = {
155 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_C168
), .driver_data
= 3 },
156 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_C104
), .driver_data
= 4 },
157 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP132
), .driver_data
= 8 },
158 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP114
), .driver_data
= 9 },
159 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CT114
), .driver_data
= 10 },
160 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP102
), .driver_data
= 11 },
161 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP104U
), .driver_data
= 12 },
162 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP168U
), .driver_data
= 13 },
163 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP132U
), .driver_data
= 14 },
164 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP134U
), .driver_data
= 15 },
165 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP104JU
),.driver_data
= 16 },
166 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_RC7000
), .driver_data
= 17 },
167 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP118U
), .driver_data
= 18 },
168 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP102UL
),.driver_data
= 19 },
169 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP102U
), .driver_data
= 20 },
170 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP118EL
),.driver_data
= 21 },
171 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP168EL
),.driver_data
= 22 },
172 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP104EL
),.driver_data
= 23 },
173 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CB108
), .driver_data
= 24 },
174 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CB114
), .driver_data
= 25 },
175 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CB134I
), .driver_data
= 26 },
176 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CP138U
), .driver_data
= 27 },
177 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_POS104UL
), .driver_data
= 28 },
178 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CP114UL
), .driver_data
= 29 },
179 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CP102UF
), .driver_data
= 30 },
180 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CP112UL
), .driver_data
= 31 },
183 MODULE_DEVICE_TABLE(pci
, mxser_pcibrds
);
185 static unsigned long ioaddr
[MXSER_BOARDS
];
186 static int ttymajor
= MXSERMAJOR
;
188 /* Variables for insmod */
190 MODULE_AUTHOR("Casper Yang");
191 MODULE_DESCRIPTION("MOXA Smartio/Industio Family Multiport Board Device Driver");
192 module_param_array(ioaddr
, ulong
, NULL
, 0);
193 MODULE_PARM_DESC(ioaddr
, "ISA io addresses to look for a moxa board");
194 module_param(ttymajor
, int, 0);
195 MODULE_LICENSE("GPL");
199 unsigned long rxcnt
[MXSER_PORTS
];
200 unsigned long txcnt
[MXSER_PORTS
];
206 unsigned long up_rxcnt
;
207 unsigned long up_txcnt
;
209 unsigned char hold_reason
;
212 struct mxser_mon_ext
{
213 unsigned long rx_cnt
[32];
214 unsigned long tx_cnt
[32];
215 unsigned long up_rxcnt
[32];
216 unsigned long up_txcnt
[32];
217 int modem_status
[32];
231 struct tty_port port
;
232 struct mxser_board
*board
;
234 unsigned long ioaddr
;
235 unsigned long opmode_ioaddr
;
239 int rx_trigger
; /* Rx fifo trigger level */
241 int baud_base
; /* max. speed */
242 int type
; /* UART type */
244 int x_char
; /* xon/xoff character */
245 int IER
; /* Interrupt Enable Register */
246 int MCR
; /* Modem control register */
248 unsigned char stop_rx
;
249 unsigned char ldisc_stop_rx
;
252 unsigned char err_shadow
;
254 struct async_icount icount
; /* kernel counters for 4 input interrupts */
257 int read_status_mask
;
258 int ignore_status_mask
;
264 struct ktermios normal_termios
;
266 struct mxser_mon mon_data
;
274 const struct mxser_cardinfo
*info
;
275 unsigned long vector
;
276 unsigned long vector_mask
;
281 struct mxser_port ports
[MXSER_PORTS_PER_BOARD
];
284 struct mxser_mstatus
{
292 static struct mxser_board mxser_boards
[MXSER_BOARDS
];
293 static struct tty_driver
*mxvar_sdriver
;
294 static struct mxser_log mxvar_log
;
295 static int mxser_set_baud_method
[MXSER_PORTS
+ 1];
297 static void mxser_enable_must_enchance_mode(unsigned long baseio
)
302 oldlcr
= inb(baseio
+ UART_LCR
);
303 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
305 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
306 efr
|= MOXA_MUST_EFR_EFRB_ENABLE
;
308 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
309 outb(oldlcr
, baseio
+ UART_LCR
);
312 static void mxser_disable_must_enchance_mode(unsigned long baseio
)
317 oldlcr
= inb(baseio
+ UART_LCR
);
318 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
320 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
321 efr
&= ~MOXA_MUST_EFR_EFRB_ENABLE
;
323 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
324 outb(oldlcr
, baseio
+ UART_LCR
);
327 static void mxser_set_must_xon1_value(unsigned long baseio
, u8 value
)
332 oldlcr
= inb(baseio
+ UART_LCR
);
333 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
335 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
336 efr
&= ~MOXA_MUST_EFR_BANK_MASK
;
337 efr
|= MOXA_MUST_EFR_BANK0
;
339 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
340 outb(value
, baseio
+ MOXA_MUST_XON1_REGISTER
);
341 outb(oldlcr
, baseio
+ UART_LCR
);
344 static void mxser_set_must_xoff1_value(unsigned long baseio
, u8 value
)
349 oldlcr
= inb(baseio
+ UART_LCR
);
350 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
352 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
353 efr
&= ~MOXA_MUST_EFR_BANK_MASK
;
354 efr
|= MOXA_MUST_EFR_BANK0
;
356 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
357 outb(value
, baseio
+ MOXA_MUST_XOFF1_REGISTER
);
358 outb(oldlcr
, baseio
+ UART_LCR
);
361 static void mxser_set_must_fifo_value(struct mxser_port
*info
)
366 oldlcr
= inb(info
->ioaddr
+ UART_LCR
);
367 outb(MOXA_MUST_ENTER_ENCHANCE
, info
->ioaddr
+ UART_LCR
);
369 efr
= inb(info
->ioaddr
+ MOXA_MUST_EFR_REGISTER
);
370 efr
&= ~MOXA_MUST_EFR_BANK_MASK
;
371 efr
|= MOXA_MUST_EFR_BANK1
;
373 outb(efr
, info
->ioaddr
+ MOXA_MUST_EFR_REGISTER
);
374 outb((u8
)info
->rx_high_water
, info
->ioaddr
+ MOXA_MUST_RBRTH_REGISTER
);
375 outb((u8
)info
->rx_trigger
, info
->ioaddr
+ MOXA_MUST_RBRTI_REGISTER
);
376 outb((u8
)info
->rx_low_water
, info
->ioaddr
+ MOXA_MUST_RBRTL_REGISTER
);
377 outb(oldlcr
, info
->ioaddr
+ UART_LCR
);
380 static void mxser_set_must_enum_value(unsigned long baseio
, u8 value
)
385 oldlcr
= inb(baseio
+ UART_LCR
);
386 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
388 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
389 efr
&= ~MOXA_MUST_EFR_BANK_MASK
;
390 efr
|= MOXA_MUST_EFR_BANK2
;
392 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
393 outb(value
, baseio
+ MOXA_MUST_ENUM_REGISTER
);
394 outb(oldlcr
, baseio
+ UART_LCR
);
397 static void mxser_get_must_hardware_id(unsigned long baseio
, u8
*pId
)
402 oldlcr
= inb(baseio
+ UART_LCR
);
403 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
405 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
406 efr
&= ~MOXA_MUST_EFR_BANK_MASK
;
407 efr
|= MOXA_MUST_EFR_BANK2
;
409 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
410 *pId
= inb(baseio
+ MOXA_MUST_HWID_REGISTER
);
411 outb(oldlcr
, baseio
+ UART_LCR
);
414 static void SET_MOXA_MUST_NO_SOFTWARE_FLOW_CONTROL(unsigned long baseio
)
419 oldlcr
= inb(baseio
+ UART_LCR
);
420 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
422 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
423 efr
&= ~MOXA_MUST_EFR_SF_MASK
;
425 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
426 outb(oldlcr
, baseio
+ UART_LCR
);
429 static void mxser_enable_must_tx_software_flow_control(unsigned long baseio
)
434 oldlcr
= inb(baseio
+ UART_LCR
);
435 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
437 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
438 efr
&= ~MOXA_MUST_EFR_SF_TX_MASK
;
439 efr
|= MOXA_MUST_EFR_SF_TX1
;
441 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
442 outb(oldlcr
, baseio
+ UART_LCR
);
445 static void mxser_disable_must_tx_software_flow_control(unsigned long baseio
)
450 oldlcr
= inb(baseio
+ UART_LCR
);
451 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
453 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
454 efr
&= ~MOXA_MUST_EFR_SF_TX_MASK
;
456 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
457 outb(oldlcr
, baseio
+ UART_LCR
);
460 static void mxser_enable_must_rx_software_flow_control(unsigned long baseio
)
465 oldlcr
= inb(baseio
+ UART_LCR
);
466 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
468 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
469 efr
&= ~MOXA_MUST_EFR_SF_RX_MASK
;
470 efr
|= MOXA_MUST_EFR_SF_RX1
;
472 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
473 outb(oldlcr
, baseio
+ UART_LCR
);
476 static void mxser_disable_must_rx_software_flow_control(unsigned long baseio
)
481 oldlcr
= inb(baseio
+ UART_LCR
);
482 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
484 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
485 efr
&= ~MOXA_MUST_EFR_SF_RX_MASK
;
487 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
488 outb(oldlcr
, baseio
+ UART_LCR
);
492 static int __devinit
CheckIsMoxaMust(unsigned long io
)
497 outb(0, io
+ UART_LCR
);
498 mxser_disable_must_enchance_mode(io
);
499 oldmcr
= inb(io
+ UART_MCR
);
500 outb(0, io
+ UART_MCR
);
501 mxser_set_must_xon1_value(io
, 0x11);
502 if ((hwid
= inb(io
+ UART_MCR
)) != 0) {
503 outb(oldmcr
, io
+ UART_MCR
);
504 return MOXA_OTHER_UART
;
507 mxser_get_must_hardware_id(io
, &hwid
);
508 for (i
= 1; i
< UART_INFO_NUM
; i
++) { /* 0 = OTHER_UART */
509 if (hwid
== Gpci_uart_info
[i
].type
)
512 return MOXA_OTHER_UART
;
516 static void process_txrx_fifo(struct mxser_port
*info
)
520 if ((info
->type
== PORT_16450
) || (info
->type
== PORT_8250
)) {
521 info
->rx_trigger
= 1;
522 info
->rx_high_water
= 1;
523 info
->rx_low_water
= 1;
524 info
->xmit_fifo_size
= 1;
526 for (i
= 0; i
< UART_INFO_NUM
; i
++)
527 if (info
->board
->chip_flag
== Gpci_uart_info
[i
].type
) {
528 info
->rx_trigger
= Gpci_uart_info
[i
].rx_trigger
;
529 info
->rx_low_water
= Gpci_uart_info
[i
].rx_low_water
;
530 info
->rx_high_water
= Gpci_uart_info
[i
].rx_high_water
;
531 info
->xmit_fifo_size
= Gpci_uart_info
[i
].xmit_fifo_size
;
536 static unsigned char mxser_get_msr(int baseaddr
, int mode
, int port
)
538 static unsigned char mxser_msr
[MXSER_PORTS
+ 1];
539 unsigned char status
= 0;
541 status
= inb(baseaddr
+ UART_MSR
);
543 mxser_msr
[port
] &= 0x0F;
544 mxser_msr
[port
] |= status
;
545 status
= mxser_msr
[port
];
552 static int mxser_carrier_raised(struct tty_port
*port
)
554 struct mxser_port
*mp
= container_of(port
, struct mxser_port
, port
);
555 return (inb(mp
->ioaddr
+ UART_MSR
) & UART_MSR_DCD
)?1:0;
558 static void mxser_dtr_rts(struct tty_port
*port
, int on
)
560 struct mxser_port
*mp
= container_of(port
, struct mxser_port
, port
);
563 spin_lock_irqsave(&mp
->slock
, flags
);
565 outb(inb(mp
->ioaddr
+ UART_MCR
) |
566 UART_MCR_DTR
| UART_MCR_RTS
, mp
->ioaddr
+ UART_MCR
);
568 outb(inb(mp
->ioaddr
+ UART_MCR
)&~(UART_MCR_DTR
| UART_MCR_RTS
),
569 mp
->ioaddr
+ UART_MCR
);
570 spin_unlock_irqrestore(&mp
->slock
, flags
);
573 static int mxser_set_baud(struct tty_struct
*tty
, long newspd
)
575 struct mxser_port
*info
= tty
->driver_data
;
582 if (newspd
> info
->max_baud
)
586 quot
= 2 * info
->baud_base
/ 269;
587 tty_encode_baud_rate(tty
, 134, 134);
589 quot
= info
->baud_base
/ newspd
;
592 baud
= info
->baud_base
/quot
;
593 tty_encode_baud_rate(tty
, baud
, baud
);
598 info
->timeout
= ((info
->xmit_fifo_size
* HZ
* 10 * quot
) / info
->baud_base
);
599 info
->timeout
+= HZ
/ 50; /* Add .02 seconds of slop */
602 info
->MCR
|= UART_MCR_DTR
;
603 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
605 info
->MCR
&= ~UART_MCR_DTR
;
606 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
610 cval
= inb(info
->ioaddr
+ UART_LCR
);
612 outb(cval
| UART_LCR_DLAB
, info
->ioaddr
+ UART_LCR
); /* set DLAB */
614 outb(quot
& 0xff, info
->ioaddr
+ UART_DLL
); /* LS of divisor */
615 outb(quot
>> 8, info
->ioaddr
+ UART_DLM
); /* MS of divisor */
616 outb(cval
, info
->ioaddr
+ UART_LCR
); /* reset DLAB */
619 if (C_BAUD(tty
) == BOTHER
) {
620 quot
= info
->baud_base
% newspd
;
622 if (quot
% newspd
> newspd
/ 2) {
628 mxser_set_must_enum_value(info
->ioaddr
, quot
);
631 mxser_set_must_enum_value(info
->ioaddr
, 0);
637 * This routine is called to set the UART divisor registers to match
638 * the specified baud rate for a serial port.
640 static int mxser_change_speed(struct tty_struct
*tty
,
641 struct ktermios
*old_termios
)
643 struct mxser_port
*info
= tty
->driver_data
;
644 unsigned cflag
, cval
, fcr
;
646 unsigned char status
;
648 cflag
= tty
->termios
->c_cflag
;
652 if (mxser_set_baud_method
[tty
->index
] == 0)
653 mxser_set_baud(tty
, tty_get_baud_rate(tty
));
655 /* byte size and parity */
656 switch (cflag
& CSIZE
) {
671 break; /* too keep GCC shut... */
676 cval
|= UART_LCR_PARITY
;
677 if (!(cflag
& PARODD
))
678 cval
|= UART_LCR_EPAR
;
680 cval
|= UART_LCR_SPAR
;
682 if ((info
->type
== PORT_8250
) || (info
->type
== PORT_16450
)) {
683 if (info
->board
->chip_flag
) {
684 fcr
= UART_FCR_ENABLE_FIFO
;
685 fcr
|= MOXA_MUST_FCR_GDA_MODE_ENABLE
;
686 mxser_set_must_fifo_value(info
);
690 fcr
= UART_FCR_ENABLE_FIFO
;
691 if (info
->board
->chip_flag
) {
692 fcr
|= MOXA_MUST_FCR_GDA_MODE_ENABLE
;
693 mxser_set_must_fifo_value(info
);
695 switch (info
->rx_trigger
) {
697 fcr
|= UART_FCR_TRIGGER_1
;
700 fcr
|= UART_FCR_TRIGGER_4
;
703 fcr
|= UART_FCR_TRIGGER_8
;
706 fcr
|= UART_FCR_TRIGGER_14
;
712 /* CTS flow control flag and modem status interrupts */
713 info
->IER
&= ~UART_IER_MSI
;
714 info
->MCR
&= ~UART_MCR_AFE
;
715 if (cflag
& CRTSCTS
) {
716 info
->port
.flags
|= ASYNC_CTS_FLOW
;
717 info
->IER
|= UART_IER_MSI
;
718 if ((info
->type
== PORT_16550A
) || (info
->board
->chip_flag
)) {
719 info
->MCR
|= UART_MCR_AFE
;
721 status
= inb(info
->ioaddr
+ UART_MSR
);
722 if (tty
->hw_stopped
) {
723 if (status
& UART_MSR_CTS
) {
725 if (info
->type
!= PORT_16550A
&&
726 !info
->board
->chip_flag
) {
727 outb(info
->IER
& ~UART_IER_THRI
,
730 info
->IER
|= UART_IER_THRI
;
731 outb(info
->IER
, info
->ioaddr
+
737 if (!(status
& UART_MSR_CTS
)) {
739 if ((info
->type
!= PORT_16550A
) &&
740 (!info
->board
->chip_flag
)) {
741 info
->IER
&= ~UART_IER_THRI
;
742 outb(info
->IER
, info
->ioaddr
+
749 info
->port
.flags
&= ~ASYNC_CTS_FLOW
;
751 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
752 if (cflag
& CLOCAL
) {
753 info
->port
.flags
&= ~ASYNC_CHECK_CD
;
755 info
->port
.flags
|= ASYNC_CHECK_CD
;
756 info
->IER
|= UART_IER_MSI
;
758 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
761 * Set up parity check flag
763 info
->read_status_mask
= UART_LSR_OE
| UART_LSR_THRE
| UART_LSR_DR
;
765 info
->read_status_mask
|= UART_LSR_FE
| UART_LSR_PE
;
766 if (I_BRKINT(tty
) || I_PARMRK(tty
))
767 info
->read_status_mask
|= UART_LSR_BI
;
769 info
->ignore_status_mask
= 0;
772 info
->ignore_status_mask
|= UART_LSR_BI
;
773 info
->read_status_mask
|= UART_LSR_BI
;
775 * If we're ignore parity and break indicators, ignore
776 * overruns too. (For real raw support).
779 info
->ignore_status_mask
|=
783 info
->read_status_mask
|=
789 if (info
->board
->chip_flag
) {
790 mxser_set_must_xon1_value(info
->ioaddr
, START_CHAR(tty
));
791 mxser_set_must_xoff1_value(info
->ioaddr
, STOP_CHAR(tty
));
793 mxser_enable_must_rx_software_flow_control(
796 mxser_disable_must_rx_software_flow_control(
800 mxser_enable_must_tx_software_flow_control(
803 mxser_disable_must_tx_software_flow_control(
809 outb(fcr
, info
->ioaddr
+ UART_FCR
); /* set fcr */
810 outb(cval
, info
->ioaddr
+ UART_LCR
);
815 static void mxser_check_modem_status(struct tty_struct
*tty
,
816 struct mxser_port
*port
, int status
)
818 /* update input line counters */
819 if (status
& UART_MSR_TERI
)
821 if (status
& UART_MSR_DDSR
)
823 if (status
& UART_MSR_DDCD
)
825 if (status
& UART_MSR_DCTS
)
827 port
->mon_data
.modem_status
= status
;
828 wake_up_interruptible(&port
->port
.delta_msr_wait
);
830 if ((port
->port
.flags
& ASYNC_CHECK_CD
) && (status
& UART_MSR_DDCD
)) {
831 if (status
& UART_MSR_DCD
)
832 wake_up_interruptible(&port
->port
.open_wait
);
835 if (port
->port
.flags
& ASYNC_CTS_FLOW
) {
836 if (tty
->hw_stopped
) {
837 if (status
& UART_MSR_CTS
) {
840 if ((port
->type
!= PORT_16550A
) &&
841 (!port
->board
->chip_flag
)) {
842 outb(port
->IER
& ~UART_IER_THRI
,
843 port
->ioaddr
+ UART_IER
);
844 port
->IER
|= UART_IER_THRI
;
845 outb(port
->IER
, port
->ioaddr
+
851 if (!(status
& UART_MSR_CTS
)) {
853 if (port
->type
!= PORT_16550A
&&
854 !port
->board
->chip_flag
) {
855 port
->IER
&= ~UART_IER_THRI
;
856 outb(port
->IER
, port
->ioaddr
+
864 static int mxser_activate(struct tty_port
*port
, struct tty_struct
*tty
)
866 struct mxser_port
*info
= container_of(port
, struct mxser_port
, port
);
870 page
= __get_free_page(GFP_KERNEL
);
874 spin_lock_irqsave(&info
->slock
, flags
);
876 if (!info
->ioaddr
|| !info
->type
) {
877 set_bit(TTY_IO_ERROR
, &tty
->flags
);
879 spin_unlock_irqrestore(&info
->slock
, flags
);
882 info
->port
.xmit_buf
= (unsigned char *) page
;
885 * Clear the FIFO buffers and disable them
886 * (they will be reenabled in mxser_change_speed())
888 if (info
->board
->chip_flag
)
889 outb((UART_FCR_CLEAR_RCVR
|
890 UART_FCR_CLEAR_XMIT
|
891 MOXA_MUST_FCR_GDA_MODE_ENABLE
), info
->ioaddr
+ UART_FCR
);
893 outb((UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
),
894 info
->ioaddr
+ UART_FCR
);
897 * At this point there's no way the LSR could still be 0xFF;
898 * if it is, then bail out, because there's likely no UART
901 if (inb(info
->ioaddr
+ UART_LSR
) == 0xff) {
902 spin_unlock_irqrestore(&info
->slock
, flags
);
903 if (capable(CAP_SYS_ADMIN
)) {
904 set_bit(TTY_IO_ERROR
, &tty
->flags
);
911 * Clear the interrupt registers.
913 (void) inb(info
->ioaddr
+ UART_LSR
);
914 (void) inb(info
->ioaddr
+ UART_RX
);
915 (void) inb(info
->ioaddr
+ UART_IIR
);
916 (void) inb(info
->ioaddr
+ UART_MSR
);
919 * Now, initialize the UART
921 outb(UART_LCR_WLEN8
, info
->ioaddr
+ UART_LCR
); /* reset DLAB */
922 info
->MCR
= UART_MCR_DTR
| UART_MCR_RTS
;
923 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
926 * Finally, enable interrupts
928 info
->IER
= UART_IER_MSI
| UART_IER_RLSI
| UART_IER_RDI
;
930 if (info
->board
->chip_flag
)
931 info
->IER
|= MOXA_MUST_IER_EGDAI
;
932 outb(info
->IER
, info
->ioaddr
+ UART_IER
); /* enable interrupts */
935 * And clear the interrupt registers again for luck.
937 (void) inb(info
->ioaddr
+ UART_LSR
);
938 (void) inb(info
->ioaddr
+ UART_RX
);
939 (void) inb(info
->ioaddr
+ UART_IIR
);
940 (void) inb(info
->ioaddr
+ UART_MSR
);
942 clear_bit(TTY_IO_ERROR
, &tty
->flags
);
943 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
946 * and set the speed of the serial port
948 mxser_change_speed(tty
, NULL
);
949 spin_unlock_irqrestore(&info
->slock
, flags
);
955 * This routine will shutdown a serial port
957 static void mxser_shutdown_port(struct tty_port
*port
)
959 struct mxser_port
*info
= container_of(port
, struct mxser_port
, port
);
962 spin_lock_irqsave(&info
->slock
, flags
);
965 * clear delta_msr_wait queue to avoid mem leaks: we may free the irq
966 * here so the queue might never be waken up
968 wake_up_interruptible(&info
->port
.delta_msr_wait
);
971 * Free the xmit buffer, if necessary
973 if (info
->port
.xmit_buf
) {
974 free_page((unsigned long) info
->port
.xmit_buf
);
975 info
->port
.xmit_buf
= NULL
;
979 outb(0x00, info
->ioaddr
+ UART_IER
);
981 /* clear Rx/Tx FIFO's */
982 if (info
->board
->chip_flag
)
983 outb(UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
|
984 MOXA_MUST_FCR_GDA_MODE_ENABLE
,
985 info
->ioaddr
+ UART_FCR
);
987 outb(UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
,
988 info
->ioaddr
+ UART_FCR
);
990 /* read data port to reset things */
991 (void) inb(info
->ioaddr
+ UART_RX
);
994 if (info
->board
->chip_flag
)
995 SET_MOXA_MUST_NO_SOFTWARE_FLOW_CONTROL(info
->ioaddr
);
997 spin_unlock_irqrestore(&info
->slock
, flags
);
1001 * This routine is called whenever a serial port is opened. It
1002 * enables interrupts for a serial port, linking in its async structure into
1003 * the IRQ chain. It also performs the serial-specific
1004 * initialization for the tty structure.
1006 static int mxser_open(struct tty_struct
*tty
, struct file
*filp
)
1008 struct mxser_port
*info
;
1012 if (line
== MXSER_PORTS
)
1014 if (line
< 0 || line
> MXSER_PORTS
)
1016 info
= &mxser_boards
[line
/ MXSER_PORTS_PER_BOARD
].ports
[line
% MXSER_PORTS_PER_BOARD
];
1020 tty
->driver_data
= info
;
1021 return tty_port_open(&info
->port
, tty
, filp
);
1024 static void mxser_flush_buffer(struct tty_struct
*tty
)
1026 struct mxser_port
*info
= tty
->driver_data
;
1028 unsigned long flags
;
1031 spin_lock_irqsave(&info
->slock
, flags
);
1032 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
1034 fcr
= inb(info
->ioaddr
+ UART_FCR
);
1035 outb((fcr
| UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
),
1036 info
->ioaddr
+ UART_FCR
);
1037 outb(fcr
, info
->ioaddr
+ UART_FCR
);
1039 spin_unlock_irqrestore(&info
->slock
, flags
);
1045 static void mxser_close_port(struct tty_port
*port
)
1047 struct mxser_port
*info
= container_of(port
, struct mxser_port
, port
);
1048 unsigned long timeout
;
1050 * At this point we stop accepting input. To do this, we
1051 * disable the receive line status interrupts, and tell the
1052 * interrupt driver to stop checking the data ready bit in the
1053 * line status register.
1055 info
->IER
&= ~UART_IER_RLSI
;
1056 if (info
->board
->chip_flag
)
1057 info
->IER
&= ~MOXA_MUST_RECV_ISR
;
1059 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1061 * Before we drop DTR, make sure the UART transmitter
1062 * has completely drained; this is especially
1063 * important if there is a transmit FIFO!
1065 timeout
= jiffies
+ HZ
;
1066 while (!(inb(info
->ioaddr
+ UART_LSR
) & UART_LSR_TEMT
)) {
1067 schedule_timeout_interruptible(5);
1068 if (time_after(jiffies
, timeout
))
1074 * Direct copy of drivers/char/tty_port.c with one key difference:
1075 * ASYNC_CLOSING is avoided because this causes a soft lock in
1076 * tty_wait_until_sent.
1077 * Why this happens is unknown (to me, hoping someone can shed light).
1078 * Maybe because the console tty shares the same IRQ?
1079 * Adding printk for each transmitted character (mxser_transmit_chars)
1080 * also "fixes" the bug.
1081 * Console "sh" process gets stuck in schedule from:
1082 * mxser_close -> tty_port_close_start -> tty_wait_until_sent
1083 * -> schedule_timeout -> schedule
1084 * Kernel printout: http://ideone.com/e845mr
1086 int mxser_tty_port_close_start(struct tty_port
*port
,
1087 struct tty_struct
*tty
, struct file
*filp
)
1089 unsigned long flags
;
1091 spin_lock_irqsave(&port
->lock
, flags
);
1092 if (tty_hung_up_p(filp
)) {
1093 spin_unlock_irqrestore(&port
->lock
, flags
);
1097 if (tty
->count
== 1 && port
->count
!= 1) {
1099 "tty_port_close_start: tty->count = 1 port"
1100 " count = %d.\n", port
->count
);
1103 if (--port
->count
< 0) {
1104 pr_warn("tty_port_close_start: count = %d\n",
1110 spin_unlock_irqrestore(&port
->lock
, flags
);
1111 if (port
->ops
->drop
)
1112 port
->ops
->drop(port
);
1115 /* set_bit(ASYNCB_CLOSING, &port->flags); */
1117 spin_unlock_irqrestore(&port
->lock
, flags
);
1119 /* Don't block on a stalled port, just pull the chain */
1120 if (tty
->flow_stopped
)
1121 tty_driver_flush_buffer(tty
);
1123 if (test_bit(ASYNCB_INITIALIZED
, &port
->flags
) &&
1124 port
->closing_wait
!= ASYNC_CLOSING_WAIT_NONE
)
1125 tty_wait_until_sent(tty
, port
->closing_wait
);
1127 if (port
->drain_delay
) {
1128 unsigned int bps
= tty_get_baud_rate(tty
);
1132 timeout
= max_t(long, (HZ
* 10 * port
->drain_delay
)
1136 schedule_timeout_interruptible(timeout
);
1138 /* Flush the ldisc buffering */
1139 tty_ldisc_flush(tty
);
1141 /* Drop DTR/RTS if HUPCL is set. This causes any attached modem to
1143 if (tty
->termios
->c_cflag
& HUPCL
)
1144 tty_port_lower_dtr_rts(port
);
1146 /* Don't call port->drop for the last reference. Callers will want
1147 to drop the last active reference in ->shutdown() or the tty
1154 * This routine is called when the serial port gets closed. First, we
1155 * wait for the last remaining data to be sent. Then, we unlink its
1156 * async structure from the interrupt chain if necessary, and we free
1157 * that IRQ if nothing is left in the chain.
1159 static void mxser_close(struct tty_struct
*tty
, struct file
*filp
)
1161 struct mxser_port
*info
= tty
->driver_data
;
1162 struct tty_port
*port
= &info
->port
;
1164 if (tty
->index
== MXSER_PORTS
|| info
== NULL
)
1167 #ifdef CONFIG_ARCH_MOXART
1168 if (mxser_tty_port_close_start(port
, tty
, filp
) == 0)
1170 if (tty_port_close_start(port
, tty
, filp
) == 0)
1173 mutex_lock(&port
->mutex
);
1174 mxser_close_port(port
);
1175 mxser_flush_buffer(tty
);
1176 mxser_shutdown_port(port
);
1177 clear_bit(ASYNCB_INITIALIZED
, &port
->flags
);
1178 mutex_unlock(&port
->mutex
);
1179 /* Right now the tty_port set is done outside of the close_end helper
1180 as we don't yet have everyone using refcounts */
1181 tty_port_close_end(port
, tty
);
1182 tty_port_tty_set(port
, NULL
);
1185 static int mxser_write(struct tty_struct
*tty
, const unsigned char *buf
, int count
)
1188 struct mxser_port
*info
= tty
->driver_data
;
1189 unsigned long flags
;
1191 if (!info
->port
.xmit_buf
)
1195 c
= min_t(int, count
, min(SERIAL_XMIT_SIZE
- info
->xmit_cnt
- 1,
1196 SERIAL_XMIT_SIZE
- info
->xmit_head
));
1200 memcpy(info
->port
.xmit_buf
+ info
->xmit_head
, buf
, c
);
1201 spin_lock_irqsave(&info
->slock
, flags
);
1202 info
->xmit_head
= (info
->xmit_head
+ c
) &
1203 (SERIAL_XMIT_SIZE
- 1);
1204 info
->xmit_cnt
+= c
;
1205 spin_unlock_irqrestore(&info
->slock
, flags
);
1212 if (info
->xmit_cnt
&& !tty
->stopped
) {
1213 if (!tty
->hw_stopped
||
1214 (info
->type
== PORT_16550A
) ||
1215 (info
->board
->chip_flag
)) {
1216 spin_lock_irqsave(&info
->slock
, flags
);
1217 outb(info
->IER
& ~UART_IER_THRI
, info
->ioaddr
+
1219 info
->IER
|= UART_IER_THRI
;
1220 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1221 spin_unlock_irqrestore(&info
->slock
, flags
);
1227 static int mxser_put_char(struct tty_struct
*tty
, unsigned char ch
)
1229 struct mxser_port
*info
= tty
->driver_data
;
1230 unsigned long flags
;
1232 if (!info
->port
.xmit_buf
)
1235 if (info
->xmit_cnt
>= SERIAL_XMIT_SIZE
- 1)
1238 spin_lock_irqsave(&info
->slock
, flags
);
1239 info
->port
.xmit_buf
[info
->xmit_head
++] = ch
;
1240 info
->xmit_head
&= SERIAL_XMIT_SIZE
- 1;
1242 spin_unlock_irqrestore(&info
->slock
, flags
);
1243 if (!tty
->stopped
) {
1244 if (!tty
->hw_stopped
||
1245 (info
->type
== PORT_16550A
) ||
1246 info
->board
->chip_flag
) {
1247 spin_lock_irqsave(&info
->slock
, flags
);
1248 outb(info
->IER
& ~UART_IER_THRI
, info
->ioaddr
+ UART_IER
);
1249 info
->IER
|= UART_IER_THRI
;
1250 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1251 spin_unlock_irqrestore(&info
->slock
, flags
);
1258 static void mxser_flush_chars(struct tty_struct
*tty
)
1260 struct mxser_port
*info
= tty
->driver_data
;
1261 unsigned long flags
;
1263 if (info
->xmit_cnt
<= 0 || tty
->stopped
|| !info
->port
.xmit_buf
||
1264 (tty
->hw_stopped
&& info
->type
!= PORT_16550A
&&
1265 !info
->board
->chip_flag
))
1268 spin_lock_irqsave(&info
->slock
, flags
);
1270 outb(info
->IER
& ~UART_IER_THRI
, info
->ioaddr
+ UART_IER
);
1271 info
->IER
|= UART_IER_THRI
;
1272 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1274 spin_unlock_irqrestore(&info
->slock
, flags
);
1277 static int mxser_write_room(struct tty_struct
*tty
)
1279 struct mxser_port
*info
= tty
->driver_data
;
1282 ret
= SERIAL_XMIT_SIZE
- info
->xmit_cnt
- 1;
1283 return ret
< 0 ? 0 : ret
;
1286 static int mxser_chars_in_buffer(struct tty_struct
*tty
)
1288 struct mxser_port
*info
= tty
->driver_data
;
1289 return info
->xmit_cnt
;
1293 * ------------------------------------------------------------
1294 * friends of mxser_ioctl()
1295 * ------------------------------------------------------------
1297 static int mxser_get_serial_info(struct tty_struct
*tty
,
1298 struct serial_struct __user
*retinfo
)
1300 struct mxser_port
*info
= tty
->driver_data
;
1301 struct serial_struct tmp
= {
1304 .port
= info
->ioaddr
,
1305 .irq
= info
->board
->irq
,
1306 .flags
= info
->port
.flags
,
1307 .baud_base
= info
->baud_base
,
1308 .close_delay
= info
->port
.close_delay
,
1309 .closing_wait
= info
->port
.closing_wait
,
1310 .custom_divisor
= info
->custom_divisor
,
1313 if (copy_to_user(retinfo
, &tmp
, sizeof(*retinfo
)))
1318 static int mxser_set_serial_info(struct tty_struct
*tty
,
1319 struct serial_struct __user
*new_info
)
1321 struct mxser_port
*info
= tty
->driver_data
;
1322 struct tty_port
*port
= &info
->port
;
1323 struct serial_struct new_serial
;
1325 unsigned long sl_flags
;
1329 if (!new_info
|| !info
->ioaddr
)
1331 if (copy_from_user(&new_serial
, new_info
, sizeof(new_serial
)))
1334 if (new_serial
.irq
!= info
->board
->irq
||
1335 new_serial
.port
!= info
->ioaddr
)
1338 flags
= port
->flags
& ASYNC_SPD_MASK
;
1340 if (!capable(CAP_SYS_ADMIN
)) {
1341 if ((new_serial
.baud_base
!= info
->baud_base
) ||
1342 (new_serial
.close_delay
!= info
->port
.close_delay
) ||
1343 ((new_serial
.flags
& ~ASYNC_USR_MASK
) != (info
->port
.flags
& ~ASYNC_USR_MASK
)))
1345 info
->port
.flags
= ((info
->port
.flags
& ~ASYNC_USR_MASK
) |
1346 (new_serial
.flags
& ASYNC_USR_MASK
));
1349 * OK, past this point, all the error checking has been done.
1350 * At this point, we start making changes.....
1352 port
->flags
= ((port
->flags
& ~ASYNC_FLAGS
) |
1353 (new_serial
.flags
& ASYNC_FLAGS
));
1354 port
->close_delay
= new_serial
.close_delay
* HZ
/ 100;
1355 port
->closing_wait
= new_serial
.closing_wait
* HZ
/ 100;
1356 tty
->low_latency
= (port
->flags
& ASYNC_LOW_LATENCY
) ? 1 : 0;
1357 if ((port
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_CUST
&&
1358 (new_serial
.baud_base
!= info
->baud_base
||
1359 new_serial
.custom_divisor
!=
1360 info
->custom_divisor
)) {
1361 if (new_serial
.custom_divisor
== 0)
1363 baud
= new_serial
.baud_base
/ new_serial
.custom_divisor
;
1364 tty_encode_baud_rate(tty
, baud
, baud
);
1368 info
->type
= new_serial
.type
;
1370 process_txrx_fifo(info
);
1372 if (test_bit(ASYNCB_INITIALIZED
, &port
->flags
)) {
1373 if (flags
!= (port
->flags
& ASYNC_SPD_MASK
)) {
1374 spin_lock_irqsave(&info
->slock
, sl_flags
);
1375 mxser_change_speed(tty
, NULL
);
1376 spin_unlock_irqrestore(&info
->slock
, sl_flags
);
1379 retval
= mxser_activate(port
, tty
);
1381 set_bit(ASYNCB_INITIALIZED
, &port
->flags
);
1387 * mxser_get_lsr_info - get line status register info
1389 * Purpose: Let user call ioctl() to get info when the UART physically
1390 * is emptied. On bus types like RS485, the transmitter must
1391 * release the bus after transmitting. This must be done when
1392 * the transmit shift register is empty, not be done when the
1393 * transmit holding register is empty. This functionality
1394 * allows an RS485 driver to be written in user space.
1396 static int mxser_get_lsr_info(struct mxser_port
*info
,
1397 unsigned int __user
*value
)
1399 unsigned char status
;
1400 unsigned int result
;
1401 unsigned long flags
;
1403 spin_lock_irqsave(&info
->slock
, flags
);
1404 status
= inb(info
->ioaddr
+ UART_LSR
);
1405 spin_unlock_irqrestore(&info
->slock
, flags
);
1406 result
= ((status
& UART_LSR_TEMT
) ? TIOCSER_TEMT
: 0);
1407 return put_user(result
, value
);
1410 static int mxser_tiocmget(struct tty_struct
*tty
, struct file
*file
)
1412 struct mxser_port
*info
= tty
->driver_data
;
1413 unsigned char control
, status
;
1414 unsigned long flags
;
1417 if (tty
->index
== MXSER_PORTS
)
1418 return -ENOIOCTLCMD
;
1419 if (test_bit(TTY_IO_ERROR
, &tty
->flags
))
1422 control
= info
->MCR
;
1424 spin_lock_irqsave(&info
->slock
, flags
);
1425 status
= inb(info
->ioaddr
+ UART_MSR
);
1426 if (status
& UART_MSR_ANY_DELTA
)
1427 mxser_check_modem_status(tty
, info
, status
);
1428 spin_unlock_irqrestore(&info
->slock
, flags
);
1429 return ((control
& UART_MCR_RTS
) ? TIOCM_RTS
: 0) |
1430 ((control
& UART_MCR_DTR
) ? TIOCM_DTR
: 0) |
1431 ((status
& UART_MSR_DCD
) ? TIOCM_CAR
: 0) |
1432 ((status
& UART_MSR_RI
) ? TIOCM_RNG
: 0) |
1433 ((status
& UART_MSR_DSR
) ? TIOCM_DSR
: 0) |
1434 ((status
& UART_MSR_CTS
) ? TIOCM_CTS
: 0);
1437 static int mxser_tiocmset(struct tty_struct
*tty
, struct file
*file
,
1438 unsigned int set
, unsigned int clear
)
1440 struct mxser_port
*info
= tty
->driver_data
;
1441 unsigned long flags
;
1444 if (tty
->index
== MXSER_PORTS
)
1445 return -ENOIOCTLCMD
;
1446 if (test_bit(TTY_IO_ERROR
, &tty
->flags
))
1449 spin_lock_irqsave(&info
->slock
, flags
);
1451 if (set
& TIOCM_RTS
)
1452 info
->MCR
|= UART_MCR_RTS
;
1453 if (set
& TIOCM_DTR
)
1454 info
->MCR
|= UART_MCR_DTR
;
1456 if (clear
& TIOCM_RTS
)
1457 info
->MCR
&= ~UART_MCR_RTS
;
1458 if (clear
& TIOCM_DTR
)
1459 info
->MCR
&= ~UART_MCR_DTR
;
1461 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
1462 spin_unlock_irqrestore(&info
->slock
, flags
);
1466 static int __init
mxser_program_mode(int port
)
1478 id
= inb(port
+ 1) & 0x1F;
1479 if ((id
!= C168_ASIC_ID
) &&
1480 (id
!= C104_ASIC_ID
) &&
1481 (id
!= C102_ASIC_ID
) &&
1482 (id
!= CI132_ASIC_ID
) &&
1483 (id
!= CI134_ASIC_ID
) &&
1484 (id
!= CI104J_ASIC_ID
))
1486 for (i
= 0, j
= 0; i
< 4; i
++) {
1490 } else if ((j
== 1) && (n
== 1)) {
1501 static void __init
mxser_normal_mode(int port
)
1505 outb(0xA5, port
+ 1);
1506 outb(0x80, port
+ 3);
1507 outb(12, port
+ 0); /* 9600 bps */
1509 outb(0x03, port
+ 3); /* 8 data bits */
1510 outb(0x13, port
+ 4); /* loop back mode */
1511 for (i
= 0; i
< 16; i
++) {
1513 if ((n
& 0x61) == 0x60)
1518 outb(0x00, port
+ 4);
1521 #define CHIP_SK 0x01 /* Serial Data Clock in Eprom */
1522 #define CHIP_DO 0x02 /* Serial Data Output in Eprom */
1523 #define CHIP_CS 0x04 /* Serial Chip Select in Eprom */
1524 #define CHIP_DI 0x08 /* Serial Data Input in Eprom */
1525 #define EN_CCMD 0x000 /* Chip's command register */
1526 #define EN0_RSARLO 0x008 /* Remote start address reg 0 */
1527 #define EN0_RSARHI 0x009 /* Remote start address reg 1 */
1528 #define EN0_RCNTLO 0x00A /* Remote byte count reg WR */
1529 #define EN0_RCNTHI 0x00B /* Remote byte count reg WR */
1530 #define EN0_DCFG 0x00E /* Data configuration reg WR */
1531 #define EN0_PORT 0x010 /* Rcv missed frame error counter RD */
1532 #define ENC_PAGE0 0x000 /* Select page 0 of chip registers */
1533 #define ENC_PAGE3 0x0C0 /* Select page 3 of chip registers */
1534 static int __init
mxser_read_register(int port
, unsigned short *regs
)
1536 int i
, k
, value
, id
;
1539 id
= mxser_program_mode(port
);
1542 for (i
= 0; i
< 14; i
++) {
1543 k
= (i
& 0x3F) | 0x180;
1544 for (j
= 0x100; j
> 0; j
>>= 1) {
1545 outb(CHIP_CS
, port
);
1547 outb(CHIP_CS
| CHIP_DO
, port
);
1548 outb(CHIP_CS
| CHIP_DO
| CHIP_SK
, port
); /* A? bit of read */
1550 outb(CHIP_CS
, port
);
1551 outb(CHIP_CS
| CHIP_SK
, port
); /* A? bit of read */
1556 for (k
= 0, j
= 0x8000; k
< 16; k
++, j
>>= 1) {
1557 outb(CHIP_CS
, port
);
1558 outb(CHIP_CS
| CHIP_SK
, port
);
1559 if (inb(port
) & CHIP_DI
)
1565 mxser_normal_mode(port
);
1569 static int mxser_ioctl_special(unsigned int cmd
, void __user
*argp
)
1571 struct mxser_port
*ip
;
1572 struct tty_port
*port
;
1573 struct tty_struct
*tty
;
1579 case MOXA_GET_MAJOR
:
1580 if (printk_ratelimit())
1581 printk(KERN_WARNING
"mxser: '%s' uses deprecated ioctl "
1582 "%x (GET_MAJOR), fix your userspace\n",
1583 current
->comm
, cmd
);
1584 return put_user(ttymajor
, (int __user
*)argp
);
1586 case MOXA_CHKPORTENABLE
:
1588 for (i
= 0; i
< MXSER_BOARDS
; i
++)
1589 for (j
= 0; j
< MXSER_PORTS_PER_BOARD
; j
++)
1590 if (mxser_boards
[i
].ports
[j
].ioaddr
)
1592 return put_user(result
, (unsigned long __user
*)argp
);
1593 case MOXA_GETDATACOUNT
:
1594 /* The receive side is locked by port->slock but it isn't
1595 clear that an exact snapshot is worth copying here */
1596 if (copy_to_user(argp
, &mxvar_log
, sizeof(mxvar_log
)))
1599 case MOXA_GETMSTATUS
: {
1600 struct mxser_mstatus ms
, __user
*msu
= argp
;
1601 for (i
= 0; i
< MXSER_BOARDS
; i
++)
1602 for (j
= 0; j
< MXSER_PORTS_PER_BOARD
; j
++) {
1603 ip
= &mxser_boards
[i
].ports
[j
];
1605 memset(&ms
, 0, sizeof(ms
));
1607 mutex_lock(&port
->mutex
);
1611 tty
= tty_port_tty_get(port
);
1613 if (!tty
|| !tty
->termios
)
1614 ms
.cflag
= ip
->normal_termios
.c_cflag
;
1616 ms
.cflag
= tty
->termios
->c_cflag
;
1618 spin_lock_irq(&ip
->slock
);
1619 status
= inb(ip
->ioaddr
+ UART_MSR
);
1620 spin_unlock_irq(&ip
->slock
);
1621 if (status
& UART_MSR_DCD
)
1623 if (status
& UART_MSR_DSR
)
1625 if (status
& UART_MSR_CTS
)
1628 mutex_unlock(&port
->mutex
);
1629 if (copy_to_user(msu
, &ms
, sizeof(ms
)))
1635 case MOXA_ASPP_MON_EXT
: {
1636 struct mxser_mon_ext
*me
; /* it's 2k, stack unfriendly */
1637 unsigned int cflag
, iflag
, p
;
1640 me
= kzalloc(sizeof(*me
), GFP_KERNEL
);
1644 for (i
= 0, p
= 0; i
< MXSER_BOARDS
; i
++) {
1645 for (j
= 0; j
< MXSER_PORTS_PER_BOARD
; j
++, p
++) {
1646 if (p
>= ARRAY_SIZE(me
->rx_cnt
)) {
1650 ip
= &mxser_boards
[i
].ports
[j
];
1653 mutex_lock(&port
->mutex
);
1655 mutex_unlock(&port
->mutex
);
1659 spin_lock_irq(&ip
->slock
);
1660 status
= mxser_get_msr(ip
->ioaddr
, 0, p
);
1662 if (status
& UART_MSR_TERI
)
1664 if (status
& UART_MSR_DDSR
)
1666 if (status
& UART_MSR_DDCD
)
1668 if (status
& UART_MSR_DCTS
)
1671 ip
->mon_data
.modem_status
= status
;
1672 me
->rx_cnt
[p
] = ip
->mon_data
.rxcnt
;
1673 me
->tx_cnt
[p
] = ip
->mon_data
.txcnt
;
1674 me
->up_rxcnt
[p
] = ip
->mon_data
.up_rxcnt
;
1675 me
->up_txcnt
[p
] = ip
->mon_data
.up_txcnt
;
1676 me
->modem_status
[p
] =
1677 ip
->mon_data
.modem_status
;
1678 spin_unlock_irq(&ip
->slock
);
1680 tty
= tty_port_tty_get(&ip
->port
);
1682 if (!tty
|| !tty
->termios
) {
1683 cflag
= ip
->normal_termios
.c_cflag
;
1684 iflag
= ip
->normal_termios
.c_iflag
;
1685 me
->baudrate
[p
] = tty_termios_baud_rate(&ip
->normal_termios
);
1687 cflag
= tty
->termios
->c_cflag
;
1688 iflag
= tty
->termios
->c_iflag
;
1689 me
->baudrate
[p
] = tty_get_baud_rate(tty
);
1693 me
->databits
[p
] = cflag
& CSIZE
;
1694 me
->stopbits
[p
] = cflag
& CSTOPB
;
1695 me
->parity
[p
] = cflag
& (PARENB
| PARODD
|
1698 if (cflag
& CRTSCTS
)
1699 me
->flowctrl
[p
] |= 0x03;
1701 if (iflag
& (IXON
| IXOFF
))
1702 me
->flowctrl
[p
] |= 0x0C;
1704 if (ip
->type
== PORT_16550A
)
1707 opmode
= inb(ip
->opmode_ioaddr
)>>((p
% 4) * 2);
1708 opmode
&= OP_MODE_MASK
;
1709 me
->iftype
[p
] = opmode
;
1710 mutex_unlock(&port
->mutex
);
1713 if (copy_to_user(argp
, me
, sizeof(*me
)))
1719 return -ENOIOCTLCMD
;
1724 static int mxser_cflags_changed(struct mxser_port
*info
, unsigned long arg
,
1725 struct async_icount
*cprev
)
1727 struct async_icount cnow
;
1728 unsigned long flags
;
1731 spin_lock_irqsave(&info
->slock
, flags
);
1732 cnow
= info
->icount
; /* atomic copy */
1733 spin_unlock_irqrestore(&info
->slock
, flags
);
1735 ret
= ((arg
& TIOCM_RNG
) && (cnow
.rng
!= cprev
->rng
)) ||
1736 ((arg
& TIOCM_DSR
) && (cnow
.dsr
!= cprev
->dsr
)) ||
1737 ((arg
& TIOCM_CD
) && (cnow
.dcd
!= cprev
->dcd
)) ||
1738 ((arg
& TIOCM_CTS
) && (cnow
.cts
!= cprev
->cts
));
1745 static int mxser_ioctl(struct tty_struct
*tty
, struct file
*file
,
1746 unsigned int cmd
, unsigned long arg
)
1748 struct mxser_port
*info
= tty
->driver_data
;
1749 struct tty_port
*port
= &info
->port
;
1750 struct async_icount cnow
;
1751 unsigned long flags
;
1752 void __user
*argp
= (void __user
*)arg
;
1755 if (tty
->index
== MXSER_PORTS
)
1756 return mxser_ioctl_special(cmd
, argp
);
1758 if (cmd
== MOXA_SET_OP_MODE
|| cmd
== MOXA_GET_OP_MODE
) {
1760 unsigned long opmode
;
1761 static unsigned char ModeMask
[] = { 0xfc, 0xf3, 0xcf, 0x3f };
1763 unsigned char val
, mask
;
1766 if (cmd
== MOXA_SET_OP_MODE
) {
1767 if (get_user(opmode
, (int __user
*) argp
))
1769 if (opmode
!= RS232_MODE
&&
1770 opmode
!= RS485_2WIRE_MODE
&&
1771 opmode
!= RS422_MODE
&&
1772 opmode
!= RS485_4WIRE_MODE
)
1776 spin_lock_irq(&info
->slock
);
1777 val
= inb(info
->opmode_ioaddr
);
1779 val
|= (opmode
<< shiftbit
);
1780 outb(val
, info
->opmode_ioaddr
);
1781 spin_unlock_irq(&info
->slock
);
1784 spin_lock_irq(&info
->slock
);
1785 opmode
= inb(info
->opmode_ioaddr
) >> shiftbit
;
1786 spin_unlock_irq(&info
->slock
);
1787 opmode
&= OP_MODE_MASK
;
1788 if (put_user(opmode
, (int __user
*)argp
))
1794 if (cmd
!= TIOCGSERIAL
&& cmd
!= TIOCMIWAIT
&&
1795 test_bit(TTY_IO_ERROR
, &tty
->flags
))
1800 mutex_lock(&port
->mutex
);
1801 retval
= mxser_get_serial_info(tty
, argp
);
1802 mutex_unlock(&port
->mutex
);
1805 mutex_lock(&port
->mutex
);
1806 retval
= mxser_set_serial_info(tty
, argp
);
1807 mutex_unlock(&port
->mutex
);
1809 case TIOCSERGETLSR
: /* Get line status register */
1810 return mxser_get_lsr_info(info
, argp
);
1812 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1813 * - mask passed in arg for lines of interest
1814 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1815 * Caller should use TIOCGICOUNT to see which one it was
1818 spin_lock_irqsave(&info
->slock
, flags
);
1819 cnow
= info
->icount
; /* note the counters on entry */
1820 spin_unlock_irqrestore(&info
->slock
, flags
);
1822 return wait_event_interruptible(info
->port
.delta_msr_wait
,
1823 mxser_cflags_changed(info
, arg
, &cnow
));
1824 case MOXA_HighSpeedOn
:
1825 return put_user(info
->baud_base
!= 115200 ? 1 : 0, (int __user
*)argp
);
1826 case MOXA_SDS_RSTICOUNTER
:
1827 spin_lock_irq(&info
->slock
);
1828 info
->mon_data
.rxcnt
= 0;
1829 info
->mon_data
.txcnt
= 0;
1830 spin_unlock_irq(&info
->slock
);
1833 case MOXA_ASPP_OQUEUE
:{
1836 len
= mxser_chars_in_buffer(tty
);
1837 spin_lock_irq(&info
->slock
);
1838 lsr
= inb(info
->ioaddr
+ UART_LSR
) & UART_LSR_THRE
;
1839 spin_unlock_irq(&info
->slock
);
1840 len
+= (lsr
? 0 : 1);
1842 return put_user(len
, (int __user
*)argp
);
1844 case MOXA_ASPP_MON
: {
1847 spin_lock_irq(&info
->slock
);
1848 status
= mxser_get_msr(info
->ioaddr
, 1, tty
->index
);
1849 mxser_check_modem_status(tty
, info
, status
);
1851 mcr
= inb(info
->ioaddr
+ UART_MCR
);
1852 spin_unlock_irq(&info
->slock
);
1854 if (mcr
& MOXA_MUST_MCR_XON_FLAG
)
1855 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_XOFFHOLD
;
1857 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_XOFFHOLD
;
1859 if (mcr
& MOXA_MUST_MCR_TX_XON
)
1860 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_XOFFXENT
;
1862 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_XOFFXENT
;
1864 if (tty
->hw_stopped
)
1865 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_CTSHOLD
;
1867 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_CTSHOLD
;
1869 if (copy_to_user(argp
, &info
->mon_data
,
1870 sizeof(struct mxser_mon
)))
1875 case MOXA_ASPP_LSTATUS
: {
1876 if (put_user(info
->err_shadow
, (unsigned char __user
*)argp
))
1879 info
->err_shadow
= 0;
1882 case MOXA_SET_BAUD_METHOD
: {
1885 if (get_user(method
, (int __user
*)argp
))
1887 mxser_set_baud_method
[tty
->index
] = method
;
1888 return put_user(method
, (int __user
*)argp
);
1891 return -ENOIOCTLCMD
;
1897 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1898 * Return: write counters to the user passed counter struct
1899 * NB: both 1->0 and 0->1 transitions are counted except for
1900 * RI where only 0->1 is counted.
1903 static int mxser_get_icount(struct tty_struct
*tty
,
1904 struct serial_icounter_struct
*icount
)
1907 struct mxser_port
*info
= tty
->driver_data
;
1908 struct async_icount cnow
;
1909 unsigned long flags
;
1911 spin_lock_irqsave(&info
->slock
, flags
);
1912 cnow
= info
->icount
;
1913 spin_unlock_irqrestore(&info
->slock
, flags
);
1915 icount
->frame
= cnow
.frame
;
1916 icount
->brk
= cnow
.brk
;
1917 icount
->overrun
= cnow
.overrun
;
1918 icount
->buf_overrun
= cnow
.buf_overrun
;
1919 icount
->parity
= cnow
.parity
;
1920 icount
->rx
= cnow
.rx
;
1921 icount
->tx
= cnow
.tx
;
1922 icount
->cts
= cnow
.cts
;
1923 icount
->dsr
= cnow
.dsr
;
1924 icount
->rng
= cnow
.rng
;
1925 icount
->dcd
= cnow
.dcd
;
1929 static void mxser_stoprx(struct tty_struct
*tty
)
1931 struct mxser_port
*info
= tty
->driver_data
;
1933 info
->ldisc_stop_rx
= 1;
1935 if (info
->board
->chip_flag
) {
1936 info
->IER
&= ~MOXA_MUST_RECV_ISR
;
1937 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1939 info
->x_char
= STOP_CHAR(tty
);
1940 outb(0, info
->ioaddr
+ UART_IER
);
1941 info
->IER
|= UART_IER_THRI
;
1942 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1946 if (tty
->termios
->c_cflag
& CRTSCTS
) {
1947 info
->MCR
&= ~UART_MCR_RTS
;
1948 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
1953 * This routine is called by the upper-layer tty layer to signal that
1954 * incoming characters should be throttled.
1956 static void mxser_throttle(struct tty_struct
*tty
)
1961 static void mxser_unthrottle(struct tty_struct
*tty
)
1963 struct mxser_port
*info
= tty
->driver_data
;
1966 info
->ldisc_stop_rx
= 0;
1971 if (info
->board
->chip_flag
) {
1972 info
->IER
|= MOXA_MUST_RECV_ISR
;
1973 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1975 info
->x_char
= START_CHAR(tty
);
1976 outb(0, info
->ioaddr
+ UART_IER
);
1977 info
->IER
|= UART_IER_THRI
;
1978 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1983 if (tty
->termios
->c_cflag
& CRTSCTS
) {
1984 info
->MCR
|= UART_MCR_RTS
;
1985 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
1990 * mxser_stop() and mxser_start()
1992 * This routines are called before setting or resetting tty->stopped.
1993 * They enable or disable transmitter interrupts, as necessary.
1995 static void mxser_stop(struct tty_struct
*tty
)
1997 struct mxser_port
*info
= tty
->driver_data
;
1998 unsigned long flags
;
2000 spin_lock_irqsave(&info
->slock
, flags
);
2001 if (info
->IER
& UART_IER_THRI
) {
2002 info
->IER
&= ~UART_IER_THRI
;
2003 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
2005 spin_unlock_irqrestore(&info
->slock
, flags
);
2008 static void mxser_start(struct tty_struct
*tty
)
2010 struct mxser_port
*info
= tty
->driver_data
;
2011 unsigned long flags
;
2013 spin_lock_irqsave(&info
->slock
, flags
);
2014 if (info
->xmit_cnt
&& info
->port
.xmit_buf
) {
2015 outb(info
->IER
& ~UART_IER_THRI
, info
->ioaddr
+ UART_IER
);
2016 info
->IER
|= UART_IER_THRI
;
2017 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
2019 spin_unlock_irqrestore(&info
->slock
, flags
);
2022 static void mxser_set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
)
2024 struct mxser_port
*info
= tty
->driver_data
;
2025 unsigned long flags
;
2027 spin_lock_irqsave(&info
->slock
, flags
);
2028 mxser_change_speed(tty
, old_termios
);
2029 spin_unlock_irqrestore(&info
->slock
, flags
);
2031 if ((old_termios
->c_cflag
& CRTSCTS
) &&
2032 !(tty
->termios
->c_cflag
& CRTSCTS
)) {
2033 tty
->hw_stopped
= 0;
2037 /* Handle sw stopped */
2038 if ((old_termios
->c_iflag
& IXON
) &&
2039 !(tty
->termios
->c_iflag
& IXON
)) {
2042 if (info
->board
->chip_flag
) {
2043 spin_lock_irqsave(&info
->slock
, flags
);
2044 mxser_disable_must_rx_software_flow_control(
2046 spin_unlock_irqrestore(&info
->slock
, flags
);
2054 * mxser_wait_until_sent() --- wait until the transmitter is empty
2056 static void mxser_wait_until_sent(struct tty_struct
*tty
, int timeout
)
2058 struct mxser_port
*info
= tty
->driver_data
;
2059 unsigned long orig_jiffies
, char_time
;
2060 unsigned long flags
;
2063 if (info
->type
== PORT_UNKNOWN
)
2066 if (info
->xmit_fifo_size
== 0)
2067 return; /* Just in case.... */
2069 orig_jiffies
= jiffies
;
2071 * Set the check interval to be 1/5 of the estimated time to
2072 * send a single character, and make it at least 1. The check
2073 * interval should also be less than the timeout.
2075 * Note: we have to use pretty tight timings here to satisfy
2078 char_time
= (info
->timeout
- HZ
/ 50) / info
->xmit_fifo_size
;
2079 char_time
= char_time
/ 5;
2082 if (timeout
&& timeout
< char_time
)
2083 char_time
= timeout
;
2085 * If the transmitter hasn't cleared in twice the approximate
2086 * amount of time to send the entire FIFO, it probably won't
2087 * ever clear. This assumes the UART isn't doing flow
2088 * control, which is currently the case. Hence, if it ever
2089 * takes longer than info->timeout, this is probably due to a
2090 * UART bug of some kind. So, we clamp the timeout parameter at
2093 if (!timeout
|| timeout
> 2 * info
->timeout
)
2094 timeout
= 2 * info
->timeout
;
2095 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2096 printk(KERN_DEBUG
"In rs_wait_until_sent(%d) check=%lu...",
2097 timeout
, char_time
);
2098 printk("jiff=%lu...", jiffies
);
2100 spin_lock_irqsave(&info
->slock
, flags
);
2101 while (!((lsr
= inb(info
->ioaddr
+ UART_LSR
)) & UART_LSR_TEMT
)) {
2102 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2103 printk("lsr = %d (jiff=%lu)...", lsr
, jiffies
);
2105 spin_unlock_irqrestore(&info
->slock
, flags
);
2106 schedule_timeout_interruptible(char_time
);
2107 spin_lock_irqsave(&info
->slock
, flags
);
2108 if (signal_pending(current
))
2110 if (timeout
&& time_after(jiffies
, orig_jiffies
+ timeout
))
2113 spin_unlock_irqrestore(&info
->slock
, flags
);
2114 set_current_state(TASK_RUNNING
);
2116 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2117 printk("lsr = %d (jiff=%lu)...done\n", lsr
, jiffies
);
2122 * This routine is called by tty_hangup() when a hangup is signaled.
2124 static void mxser_hangup(struct tty_struct
*tty
)
2126 struct mxser_port
*info
= tty
->driver_data
;
2128 mxser_flush_buffer(tty
);
2129 tty_port_hangup(&info
->port
);
2133 * mxser_rs_break() --- routine which turns the break handling on or off
2135 static int mxser_rs_break(struct tty_struct
*tty
, int break_state
)
2137 struct mxser_port
*info
= tty
->driver_data
;
2138 unsigned long flags
;
2140 spin_lock_irqsave(&info
->slock
, flags
);
2141 if (break_state
== -1)
2142 outb(inb(info
->ioaddr
+ UART_LCR
) | UART_LCR_SBC
,
2143 info
->ioaddr
+ UART_LCR
);
2145 outb(inb(info
->ioaddr
+ UART_LCR
) & ~UART_LCR_SBC
,
2146 info
->ioaddr
+ UART_LCR
);
2147 spin_unlock_irqrestore(&info
->slock
, flags
);
2151 static void mxser_receive_chars(struct tty_struct
*tty
,
2152 struct mxser_port
*port
, int *status
)
2154 unsigned char ch
, gdl
;
2160 recv_room
= tty
->receive_room
;
2161 if (recv_room
== 0 && !port
->ldisc_stop_rx
)
2163 if (port
->board
->chip_flag
!= MOXA_OTHER_UART
) {
2165 if (*status
& UART_LSR_SPECIAL
)
2167 if (port
->board
->chip_flag
== MOXA_MUST_MU860_HWID
&&
2168 (*status
& MOXA_MUST_LSR_RERR
))
2170 if (*status
& MOXA_MUST_LSR_RERR
)
2173 gdl
= inb(port
->ioaddr
+ MOXA_MUST_GDL_REGISTER
);
2175 if (port
->board
->chip_flag
== MOXA_MUST_MU150_HWID
)
2176 gdl
&= MOXA_MUST_GDL_MASK
;
2177 if (gdl
>= recv_room
) {
2178 if (!port
->ldisc_stop_rx
)
2182 ch
= inb(port
->ioaddr
+ UART_RX
);
2183 tty_insert_flip_char(tty
, ch
, 0);
2194 ch
= inb(port
->ioaddr
+ UART_RX
);
2195 if (port
->board
->chip_flag
&& (*status
& UART_LSR_OE
))
2196 outb(0x23, port
->ioaddr
+ UART_FCR
);
2197 *status
&= port
->read_status_mask
;
2198 if (*status
& port
->ignore_status_mask
) {
2199 if (++ignored
> 100)
2203 if (*status
& UART_LSR_SPECIAL
) {
2204 if (*status
& UART_LSR_BI
) {
2208 if (port
->port
.flags
& ASYNC_SAK
)
2210 } else if (*status
& UART_LSR_PE
) {
2212 port
->icount
.parity
++;
2213 } else if (*status
& UART_LSR_FE
) {
2215 port
->icount
.frame
++;
2216 } else if (*status
& UART_LSR_OE
) {
2218 port
->icount
.overrun
++;
2222 tty_insert_flip_char(tty
, ch
, flag
);
2224 if (cnt
>= recv_room
) {
2225 if (!port
->ldisc_stop_rx
)
2232 if (port
->board
->chip_flag
)
2235 *status
= inb(port
->ioaddr
+ UART_LSR
);
2236 } while (*status
& UART_LSR_DR
);
2239 mxvar_log
.rxcnt
[tty
->index
] += cnt
;
2240 port
->mon_data
.rxcnt
+= cnt
;
2241 port
->mon_data
.up_rxcnt
+= cnt
;
2244 * We are called from an interrupt context with &port->slock
2245 * being held. Drop it temporarily in order to prevent
2246 * recursive locking.
2248 spin_unlock(&port
->slock
);
2249 tty_flip_buffer_push(tty
);
2250 spin_lock(&port
->slock
);
2253 static void mxser_transmit_chars(struct tty_struct
*tty
, struct mxser_port
*port
)
2258 outb(port
->x_char
, port
->ioaddr
+ UART_TX
);
2260 mxvar_log
.txcnt
[tty
->index
]++;
2261 port
->mon_data
.txcnt
++;
2262 port
->mon_data
.up_txcnt
++;
2267 if (port
->port
.xmit_buf
== NULL
)
2270 if (port
->xmit_cnt
<= 0 || tty
->stopped
||
2272 (port
->type
!= PORT_16550A
) &&
2273 (!port
->board
->chip_flag
))) {
2274 port
->IER
&= ~UART_IER_THRI
;
2275 outb(port
->IER
, port
->ioaddr
+ UART_IER
);
2279 cnt
= port
->xmit_cnt
;
2280 count
= port
->xmit_fifo_size
;
2282 outb(port
->port
.xmit_buf
[port
->xmit_tail
++],
2283 port
->ioaddr
+ UART_TX
);
2284 port
->xmit_tail
= port
->xmit_tail
& (SERIAL_XMIT_SIZE
- 1);
2285 if (--port
->xmit_cnt
<= 0)
2287 } while (--count
> 0);
2288 mxvar_log
.txcnt
[tty
->index
] += (cnt
- port
->xmit_cnt
);
2290 port
->mon_data
.txcnt
+= (cnt
- port
->xmit_cnt
);
2291 port
->mon_data
.up_txcnt
+= (cnt
- port
->xmit_cnt
);
2292 port
->icount
.tx
+= (cnt
- port
->xmit_cnt
);
2294 if (port
->xmit_cnt
< WAKEUP_CHARS
&& tty
)
2297 if (port
->xmit_cnt
<= 0) {
2298 port
->IER
&= ~UART_IER_THRI
;
2299 outb(port
->IER
, port
->ioaddr
+ UART_IER
);
2304 * This is the serial driver's generic interrupt routine
2306 static irqreturn_t
mxser_interrupt(int irq
, void *dev_id
)
2309 struct mxser_board
*brd
= NULL
;
2310 struct mxser_port
*port
;
2311 int max
, irqbits
, bits
, msr
;
2312 unsigned int int_cnt
, pass_counter
= 0;
2313 int handled
= IRQ_NONE
;
2314 struct tty_struct
*tty
;
2316 for (i
= 0; i
< MXSER_BOARDS
; i
++)
2317 if (dev_id
== &mxser_boards
[i
]) {
2322 if (i
== MXSER_BOARDS
)
2326 max
= brd
->info
->nports
;
2327 while (pass_counter
++ < MXSER_ISR_PASS_LIMIT
) {
2328 irqbits
= inb(brd
->vector
) & brd
->vector_mask
;
2329 if (irqbits
== brd
->vector_mask
)
2332 handled
= IRQ_HANDLED
;
2333 for (i
= 0, bits
= 1; i
< max
; i
++, irqbits
|= bits
, bits
<<= 1) {
2334 if (irqbits
== brd
->vector_mask
)
2338 port
= &brd
->ports
[i
];
2341 spin_lock(&port
->slock
);
2343 iir
= inb(port
->ioaddr
+ UART_IIR
);
2344 if (iir
& UART_IIR_NO_INT
)
2346 iir
&= MOXA_MUST_IIR_MASK
;
2347 tty
= tty_port_tty_get(&port
->port
);
2349 (port
->port
.flags
& ASYNC_CLOSING
) ||
2350 !(port
->port
.flags
&
2351 ASYNC_INITIALIZED
)) {
2352 status
= inb(port
->ioaddr
+ UART_LSR
);
2353 outb(0x27, port
->ioaddr
+ UART_FCR
);
2354 inb(port
->ioaddr
+ UART_MSR
);
2359 status
= inb(port
->ioaddr
+ UART_LSR
);
2361 if (status
& UART_LSR_PE
)
2362 port
->err_shadow
|= NPPI_NOTIFY_PARITY
;
2363 if (status
& UART_LSR_FE
)
2364 port
->err_shadow
|= NPPI_NOTIFY_FRAMING
;
2365 if (status
& UART_LSR_OE
)
2367 NPPI_NOTIFY_HW_OVERRUN
;
2368 if (status
& UART_LSR_BI
)
2369 port
->err_shadow
|= NPPI_NOTIFY_BREAK
;
2371 if (port
->board
->chip_flag
) {
2372 if (iir
== MOXA_MUST_IIR_GDA
||
2373 iir
== MOXA_MUST_IIR_RDA
||
2374 iir
== MOXA_MUST_IIR_RTO
||
2375 iir
== MOXA_MUST_IIR_LSR
)
2376 mxser_receive_chars(tty
, port
,
2380 status
&= port
->read_status_mask
;
2381 if (status
& UART_LSR_DR
)
2382 mxser_receive_chars(tty
, port
,
2385 msr
= inb(port
->ioaddr
+ UART_MSR
);
2386 if (msr
& UART_MSR_ANY_DELTA
)
2387 mxser_check_modem_status(tty
, port
, msr
);
2389 if (port
->board
->chip_flag
) {
2390 if (iir
== 0x02 && (status
&
2392 mxser_transmit_chars(tty
, port
);
2394 if (status
& UART_LSR_THRE
)
2395 mxser_transmit_chars(tty
, port
);
2398 } while (int_cnt
++ < MXSER_ISR_PASS_LIMIT
);
2399 spin_unlock(&port
->slock
);
2407 static const struct tty_operations mxser_ops
= {
2409 .close
= mxser_close
,
2410 .write
= mxser_write
,
2411 .put_char
= mxser_put_char
,
2412 .flush_chars
= mxser_flush_chars
,
2413 .write_room
= mxser_write_room
,
2414 .chars_in_buffer
= mxser_chars_in_buffer
,
2415 .flush_buffer
= mxser_flush_buffer
,
2416 .ioctl
= mxser_ioctl
,
2417 .throttle
= mxser_throttle
,
2418 .unthrottle
= mxser_unthrottle
,
2419 .set_termios
= mxser_set_termios
,
2421 .start
= mxser_start
,
2422 .hangup
= mxser_hangup
,
2423 .break_ctl
= mxser_rs_break
,
2424 .wait_until_sent
= mxser_wait_until_sent
,
2425 .tiocmget
= mxser_tiocmget
,
2426 .tiocmset
= mxser_tiocmset
,
2427 .get_icount
= mxser_get_icount
,
2430 struct tty_port_operations mxser_port_ops
= {
2431 .carrier_raised
= mxser_carrier_raised
,
2432 .dtr_rts
= mxser_dtr_rts
,
2433 .activate
= mxser_activate
,
2434 .shutdown
= mxser_shutdown_port
,
2438 * The MOXA Smartio/Industio serial driver boot-time initialization code!
2441 static void mxser_release_res(struct mxser_board
*brd
, struct pci_dev
*pdev
,
2445 free_irq(brd
->irq
, brd
);
2446 if (pdev
!= NULL
) { /* PCI */
2448 pci_release_region(pdev
, 2);
2449 pci_release_region(pdev
, 3);
2452 release_region(brd
->ports
[0].ioaddr
, 8 * brd
->info
->nports
);
2453 release_region(brd
->vector
, 1);
2457 static int __devinit
mxser_initbrd(struct mxser_board
*brd
,
2458 struct pci_dev
*pdev
)
2460 struct mxser_port
*info
;
2464 printk(KERN_INFO
"mxser: max. baud rate = %d bps\n",
2465 brd
->ports
[0].max_baud
);
2467 for (i
= 0; i
< brd
->info
->nports
; i
++) {
2468 info
= &brd
->ports
[i
];
2469 tty_port_init(&info
->port
);
2470 info
->port
.ops
= &mxser_port_ops
;
2473 info
->ldisc_stop_rx
= 0;
2475 /* Enhance mode enabled here */
2476 if (brd
->chip_flag
!= MOXA_OTHER_UART
)
2477 mxser_enable_must_enchance_mode(info
->ioaddr
);
2479 info
->port
.flags
= ASYNC_SHARE_IRQ
;
2480 info
->type
= brd
->uart_type
;
2482 process_txrx_fifo(info
);
2484 info
->custom_divisor
= info
->baud_base
* 16;
2485 info
->port
.close_delay
= 5 * HZ
/ 10;
2486 info
->port
.closing_wait
= 30 * HZ
;
2487 info
->normal_termios
= mxvar_sdriver
->init_termios
;
2488 memset(&info
->mon_data
, 0, sizeof(struct mxser_mon
));
2489 info
->err_shadow
= 0;
2490 spin_lock_init(&info
->slock
);
2492 /* before set INT ISR, disable all int */
2493 outb(inb(info
->ioaddr
+ UART_IER
) & 0xf0,
2494 info
->ioaddr
+ UART_IER
);
2497 retval
= request_irq(brd
->irq
, mxser_interrupt
, IRQF_SHARED
, "mxser",
2500 printk(KERN_ERR
"Board %s: Request irq failed, IRQ (%d) may "
2501 "conflict with another device.\n",
2502 brd
->info
->name
, brd
->irq
);
2503 /* We hold resources, we need to release them. */
2504 mxser_release_res(brd
, pdev
, 0);
2509 static int __init
mxser_get_ISA_conf(int cap
, struct mxser_board
*brd
)
2512 unsigned short regs
[16], irq
;
2513 unsigned char scratch
, scratch2
;
2515 #ifdef CONFIG_ARCH_MOXART
2516 brd
->chip_flag
= MOXA_MUST_MU860_HWID
;
2517 brd
->info
= &mxser_cards
[32];
2518 brd
->vector_mask
= 0x0c;
2519 brd
->irq
= IRQ_UART
;
2520 brd
->vector
= IO_ADDRESS(MOXART_UART_INT_VEC_BASE
);
2521 brd
->uart_type
= PORT_16550A
;
2522 for (i
= 0; i
< 2; i
++) {
2523 brd
->ports
[i
].ioaddr
= IO_ADDRESS(MOXART_UART3_BASE
) + i
* 32;
2524 brd
->ports
[i
].baud_base
= 921600;
2525 brd
->ports
[i
].max_baud
= 921600;
2526 brd
->ports
[i
].opmode_ioaddr
= IO_ADDRESS(MOXART_UART_MODE_BASE
);
2531 brd
->chip_flag
= MOXA_OTHER_UART
;
2533 id
= mxser_read_register(cap
, regs
);
2536 brd
->info
= &mxser_cards
[0];
2539 brd
->info
= &mxser_cards
[1];
2541 case CI104J_ASIC_ID
:
2542 brd
->info
= &mxser_cards
[2];
2545 brd
->info
= &mxser_cards
[5];
2548 brd
->info
= &mxser_cards
[6];
2551 brd
->info
= &mxser_cards
[7];
2558 /* some ISA cards have 2 ports, but we want to see them as 4-port (why?)
2559 Flag-hack checks if configuration should be read as 2-port here. */
2560 if (brd
->info
->nports
== 2 || (brd
->info
->flags
& MXSER_HAS2
)) {
2561 irq
= regs
[9] & 0xF000;
2562 irq
= irq
| (irq
>> 4);
2563 if (irq
!= (regs
[9] & 0xFF00))
2564 goto err_irqconflict
;
2565 } else if (brd
->info
->nports
== 4) {
2566 irq
= regs
[9] & 0xF000;
2567 irq
= irq
| (irq
>> 4);
2568 irq
= irq
| (irq
>> 8);
2570 goto err_irqconflict
;
2571 } else if (brd
->info
->nports
== 8) {
2572 irq
= regs
[9] & 0xF000;
2573 irq
= irq
| (irq
>> 4);
2574 irq
= irq
| (irq
>> 8);
2575 if ((irq
!= regs
[9]) || (irq
!= regs
[10]))
2576 goto err_irqconflict
;
2580 printk(KERN_ERR
"mxser: interrupt number unset\n");
2583 brd
->irq
= ((int)(irq
& 0xF000) >> 12);
2584 for (i
= 0; i
< 8; i
++)
2585 brd
->ports
[i
].ioaddr
= (int) regs
[i
+ 1] & 0xFFF8;
2586 if ((regs
[12] & 0x80) == 0) {
2587 printk(KERN_ERR
"mxser: invalid interrupt vector\n");
2590 brd
->vector
= (int)regs
[11]; /* interrupt vector */
2592 brd
->vector_mask
= 0x00FF;
2594 brd
->vector_mask
= 0x000F;
2595 for (i
= 7, bits
= 0x0100; i
>= 0; i
--, bits
<<= 1) {
2596 if (regs
[12] & bits
) {
2597 brd
->ports
[i
].baud_base
= 921600;
2598 brd
->ports
[i
].max_baud
= 921600;
2600 brd
->ports
[i
].baud_base
= 115200;
2601 brd
->ports
[i
].max_baud
= 115200;
2604 scratch2
= inb(cap
+ UART_LCR
) & (~UART_LCR_DLAB
);
2605 outb(scratch2
| UART_LCR_DLAB
, cap
+ UART_LCR
);
2606 outb(0, cap
+ UART_EFR
); /* EFR is the same as FCR */
2607 outb(scratch2
, cap
+ UART_LCR
);
2608 outb(UART_FCR_ENABLE_FIFO
, cap
+ UART_FCR
);
2609 scratch
= inb(cap
+ UART_IIR
);
2612 brd
->uart_type
= PORT_16550A
;
2614 brd
->uart_type
= PORT_16450
;
2618 if (!request_region(brd
->ports
[0].ioaddr
, 8 * brd
->info
->nports
,
2620 printk(KERN_ERR
"mxser: can't request ports I/O region: "
2621 "0x%.8lx-0x%.8lx\n",
2622 brd
->ports
[0].ioaddr
, brd
->ports
[0].ioaddr
+
2623 8 * brd
->info
->nports
- 1);
2626 if (!request_region(brd
->vector
, 1, "mxser(vector)")) {
2627 release_region(brd
->ports
[0].ioaddr
, 8 * brd
->info
->nports
);
2628 printk(KERN_ERR
"mxser: can't request interrupt vector region: "
2629 "0x%.8lx-0x%.8lx\n",
2630 brd
->ports
[0].ioaddr
, brd
->ports
[0].ioaddr
+
2631 8 * brd
->info
->nports
- 1);
2634 return brd
->info
->nports
;
2637 printk(KERN_ERR
"mxser: invalid interrupt number\n");
2641 static int __devinit
mxser_probe(struct pci_dev
*pdev
,
2642 const struct pci_device_id
*ent
)
2645 struct mxser_board
*brd
;
2647 unsigned long ioaddress
;
2648 int retval
= -EINVAL
;
2650 for (i
= 0; i
< MXSER_BOARDS
; i
++)
2651 if (mxser_boards
[i
].info
== NULL
)
2654 if (i
>= MXSER_BOARDS
) {
2655 dev_err(&pdev
->dev
, "too many boards found (maximum %d), board "
2656 "not configured\n", MXSER_BOARDS
);
2660 brd
= &mxser_boards
[i
];
2661 brd
->idx
= i
* MXSER_PORTS_PER_BOARD
;
2662 dev_info(&pdev
->dev
, "found MOXA %s board (BusNo=%d, DevNo=%d)\n",
2663 mxser_cards
[ent
->driver_data
].name
,
2664 pdev
->bus
->number
, PCI_SLOT(pdev
->devfn
));
2666 retval
= pci_enable_device(pdev
);
2668 dev_err(&pdev
->dev
, "PCI enable failed\n");
2673 ioaddress
= pci_resource_start(pdev
, 2);
2674 retval
= pci_request_region(pdev
, 2, "mxser(IO)");
2678 brd
->info
= &mxser_cards
[ent
->driver_data
];
2679 for (i
= 0; i
< brd
->info
->nports
; i
++)
2680 brd
->ports
[i
].ioaddr
= ioaddress
+ 8 * i
;
2683 ioaddress
= pci_resource_start(pdev
, 3);
2684 retval
= pci_request_region(pdev
, 3, "mxser(vector)");
2687 brd
->vector
= ioaddress
;
2690 brd
->irq
= pdev
->irq
;
2692 brd
->chip_flag
= CheckIsMoxaMust(brd
->ports
[0].ioaddr
);
2693 brd
->uart_type
= PORT_16550A
;
2694 brd
->vector_mask
= 0;
2696 for (i
= 0; i
< brd
->info
->nports
; i
++) {
2697 for (j
= 0; j
< UART_INFO_NUM
; j
++) {
2698 if (Gpci_uart_info
[j
].type
== brd
->chip_flag
) {
2699 brd
->ports
[i
].max_baud
=
2700 Gpci_uart_info
[j
].max_baud
;
2702 /* exception....CP-102 */
2703 if (brd
->info
->flags
& MXSER_HIGHBAUD
)
2704 brd
->ports
[i
].max_baud
= 921600;
2710 if (brd
->chip_flag
== MOXA_MUST_MU860_HWID
) {
2711 for (i
= 0; i
< brd
->info
->nports
; i
++) {
2713 brd
->ports
[i
].opmode_ioaddr
= ioaddress
+ 4;
2715 brd
->ports
[i
].opmode_ioaddr
= ioaddress
+ 0x0c;
2717 outb(0, ioaddress
+ 4); /* default set to RS232 mode */
2718 outb(0, ioaddress
+ 0x0c); /* default set to RS232 mode */
2721 for (i
= 0; i
< brd
->info
->nports
; i
++) {
2722 brd
->vector_mask
|= (1 << i
);
2723 brd
->ports
[i
].baud_base
= 921600;
2726 /* mxser_initbrd will hook ISR. */
2727 retval
= mxser_initbrd(brd
, pdev
);
2731 for (i
= 0; i
< brd
->info
->nports
; i
++)
2732 tty_register_device(mxvar_sdriver
, brd
->idx
+ i
, &pdev
->dev
);
2734 pci_set_drvdata(pdev
, brd
);
2738 pci_release_region(pdev
, 2);
2748 static void __devexit
mxser_remove(struct pci_dev
*pdev
)
2750 struct mxser_board
*brd
= pci_get_drvdata(pdev
);
2753 for (i
= 0; i
< brd
->info
->nports
; i
++)
2754 tty_unregister_device(mxvar_sdriver
, brd
->idx
+ i
);
2756 mxser_release_res(brd
, pdev
, 1);
2760 static struct pci_driver mxser_driver
= {
2762 .id_table
= mxser_pcibrds
,
2763 .probe
= mxser_probe
,
2764 .remove
= __devexit_p(mxser_remove
)
2767 static int __init
mxser_module_init(void)
2769 struct mxser_board
*brd
;
2770 unsigned int b
, i
, m
;
2773 mxvar_sdriver
= alloc_tty_driver(MXSER_PORTS
+ 1);
2777 printk(KERN_INFO
"MOXA Smartio/Industio family driver version %s\n",
2780 /* Initialize the tty_driver structure */
2781 mxvar_sdriver
->owner
= THIS_MODULE
;
2782 mxvar_sdriver
->magic
= TTY_DRIVER_MAGIC
;
2783 #ifdef CONFIG_ARCH_MOXART
2784 mxvar_sdriver
->name
= "ttyM";
2786 mxvar_sdriver
->name
= "ttyMI";
2788 mxvar_sdriver
->major
= ttymajor
;
2789 mxvar_sdriver
->minor_start
= 0;
2790 mxvar_sdriver
->num
= MXSER_PORTS
+ 1;
2791 mxvar_sdriver
->type
= TTY_DRIVER_TYPE_SERIAL
;
2792 mxvar_sdriver
->subtype
= SERIAL_TYPE_NORMAL
;
2793 mxvar_sdriver
->init_termios
= tty_std_termios
;
2794 mxvar_sdriver
->init_termios
.c_cflag
= B9600
|CS8
|CREAD
|HUPCL
|CLOCAL
;
2795 mxvar_sdriver
->flags
= TTY_DRIVER_REAL_RAW
|TTY_DRIVER_DYNAMIC_DEV
;
2796 tty_set_operations(mxvar_sdriver
, &mxser_ops
);
2798 retval
= tty_register_driver(mxvar_sdriver
);
2800 printk(KERN_ERR
"Couldn't install MOXA Smartio/Industio family "
2805 /* Start finding ISA boards here */
2806 for (m
= 0, b
= 0; b
< MXSER_BOARDS
; b
++) {
2807 #ifndef CONFIG_ARCH_MOXART
2808 /* no continue if no ioaddr param fed to module
2809 (force past for UC-7112-LX) */
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
);