kernel.org linux-2.6.10
[linux-2.6.git] / drivers / char / mxser.c
1 /*
2  *          mxser.c  -- MOXA Smartio/Industio family multiport serial driver.
3  *
4  *      Copyright (C) 1999-2001  Moxa Technologies (support@moxa.com.tw).
5  *
6  *      This code is loosely based on the Linux serial driver, written by
7  *      Linus Torvalds, Theodore T'so and others.
8  *
9  *      This program is free software; you can redistribute it and/or modify
10  *      it under the terms of the GNU General Public License as published by
11  *      the Free Software Foundation; either version 2 of the License, or
12 *      (at your option) any later version.
13  *
14  *      This program is distributed in the hope that it will be useful,
15  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *      GNU General Public License for more details.
18  *
19  *      You should have received a copy of the GNU General Public License
20  *      along with this program; if not, write to the Free Software
21  *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  *
23  *      Original release        10/26/00
24  *
25  *      02/06/01        Support MOXA Industio family boards.
26  *      02/06/01        Support TIOCGICOUNT.
27  *      02/06/01        Fix the problem for connecting to serial mouse.
28  *      02/06/01        Fix the problem for H/W flow control.
29  *      02/06/01        Fix the compling warning when CONFIG_PCI
30  *                      don't be defined.
31  *
32  *      Fed through a cleanup, indent and remove of non 2.6 code by Alan Cox
33  *      <alan@redhat.com>. The original 1.8 code is available on www.moxa.com.
34  *      - Fixed x86_64 cleanness
35  *      - Fixed sleep with spinlock held in mxser_send_break
36  */
37
38
39 #include <linux/config.h>
40 #include <linux/module.h>
41 #include <linux/version.h>
42 #include <linux/autoconf.h>
43 #include <linux/errno.h>
44 #include <linux/signal.h>
45 #include <linux/sched.h>
46 #include <linux/timer.h>
47 #include <linux/interrupt.h>
48 #include <linux/tty.h>
49 #include <linux/tty_flip.h>
50 #include <linux/serial.h>
51 #include <linux/serial_reg.h>
52 #include <linux/major.h>
53 #include <linux/string.h>
54 #include <linux/fcntl.h>
55 #include <linux/ptrace.h>
56 #include <linux/gfp.h>
57 #include <linux/ioport.h>
58 #include <linux/mm.h>
59 #include <linux/smp_lock.h>
60 #include <linux/delay.h>
61 #include <linux/pci.h>
62
63 #include <asm/system.h>
64 #include <asm/io.h>
65 #include <asm/irq.h>
66 #include <asm/segment.h>
67 #include <asm/bitops.h>
68 #include <asm/uaccess.h>
69
70 #include "mxser.h"
71
72 #define MXSER_VERSION   "1.8"
73 #define MXSERMAJOR       174
74 #define MXSERCUMAJOR     175
75
76 #define MXSER_EVENT_TXLOW        1
77 #define MXSER_EVENT_HANGUP       2
78
79 #define MXSER_BOARDS            4       /* Max. boards */
80 #define MXSER_PORTS             32      /* Max. ports */
81 #define MXSER_PORTS_PER_BOARD   8       /* Max. ports per board */
82 #define MXSER_ISR_PASS_LIMIT    256
83
84 #define MXSER_ERR_IOADDR        -1
85 #define MXSER_ERR_IRQ           -2
86 #define MXSER_ERR_IRQ_CONFLIT   -3
87 #define MXSER_ERR_VECTOR        -4
88
89 #define SERIAL_TYPE_NORMAL      1
90 #define SERIAL_TYPE_CALLOUT     2
91
92 #define WAKEUP_CHARS            256
93
94 #define UART_MCR_AFE            0x20
95 #define UART_LSR_SPECIAL        0x1E
96
97 #define RELEVANT_IFLAG(iflag)   (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK|IXON|IXOFF))
98
99 #define IRQ_T(info) ((info->flags & ASYNC_SHARE_IRQ) ? SA_SHIRQ : SA_INTERRUPT)
100
101 #define C168_ASIC_ID    1
102 #define C104_ASIC_ID    2
103 #define C102_ASIC_ID    0xB
104 #define CI132_ASIC_ID   4
105 #define CI134_ASIC_ID   3
106 #define CI104J_ASIC_ID  5
107
108 enum {
109         MXSER_BOARD_C168_ISA = 1,
110         MXSER_BOARD_C104_ISA,
111         MXSER_BOARD_CI104J,
112         MXSER_BOARD_C168_PCI,
113         MXSER_BOARD_C104_PCI,
114         MXSER_BOARD_C102_ISA,
115         MXSER_BOARD_CI132,
116         MXSER_BOARD_CI134,
117         MXSER_BOARD_CP132,
118         MXSER_BOARD_CP114,
119         MXSER_BOARD_CT114,
120         MXSER_BOARD_CP102,
121         MXSER_BOARD_CP104U,
122         MXSER_BOARD_CP168U,
123         MXSER_BOARD_CP132U,
124         MXSER_BOARD_CP134U,
125         MXSER_BOARD_CP104JU,
126         MXSER_BOARD_RC7000,
127         MXSER_BOARD_CP118U,
128         MXSER_BOARD_CP102UL,
129         MXSER_BOARD_CP102U,
130 };
131
132 static char *mxser_brdname[] = {
133         "C168 series",
134         "C104 series",
135         "CI-104J series",
136         "C168H/PCI series",
137         "C104H/PCI series",
138         "C102 series",
139         "CI-132 series",
140         "CI-134 series",
141         "CP-132 series",
142         "CP-114 series",
143         "CT-114 series",
144         "CP-102 series",
145         "CP-104U series",
146         "CP-168U series",
147         "CP-132U series",
148         "CP-134U series",
149         "CP-104JU series",
150         "Moxa UC7000 Serial",
151         "CP-118U series",
152         "CP-102UL series",
153         "CP-102U series",
154 };
155
156 static int mxser_numports[] = {
157         8,                      // C168-ISA
158         4,                      // C104-ISA
159         4,                      // CI104J
160         8,                      // C168-PCI
161         4,                      // C104-PCI
162         2,                      // C102-ISA
163         2,                      // CI132
164         4,                      // CI134
165         2,                      // CP132
166         4,                      // CP114
167         4,                      // CT114
168         2,                      // CP102
169         4,                      // CP104U
170         8,                      // CP168U
171         2,                      // CP132U
172         4,                      // CP134U
173         4,                      // CP104JU
174         8,                      // RC7000
175         8,                      // CP118U 
176         2,                      // CP102UL 
177         2,                      // CP102U
178 };
179
180 #define UART_TYPE_NUM   2
181
182 unsigned int Gmoxa_uart_id[UART_TYPE_NUM] = {
183         MOXA_MUST_MU150_HWID,
184         MOXA_MUST_MU860_HWID
185 };
186
187 // This is only for PCI
188 #define UART_INFO_NUM   3
189 struct mxpciuart_info {
190         int type;
191         int tx_fifo;
192         int rx_fifo;
193         int xmit_fifo_size;
194         int rx_high_water;
195         int rx_trigger;
196         int rx_low_water;
197         long max_baud;
198 };
199
200 struct mxpciuart_info Gpci_uart_info[UART_INFO_NUM] = {
201         {MOXA_OTHER_UART, 16, 16, 16, 14, 14, 1, 921600L},
202         {MOXA_MUST_MU150_HWID, 64, 64, 64, 48, 48, 16, 230400L},
203         {MOXA_MUST_MU860_HWID, 128, 128, 128, 96, 96, 32, 921600L}
204 };
205
206
207 #ifdef CONFIG_PCI
208
209 static struct pci_device_id mxser_pcibrds[] = {
210         {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_C168, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_C168_PCI},
211         {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_C104, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_C104_PCI},
212         {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP132, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CP132},
213         {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP114, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CP114},
214         {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CT114, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CT114},
215         {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP102, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CP102},
216         {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP104U, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CP104U},
217         {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP168U, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CP168U},
218         {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP132U, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CP132U},
219         {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP134U, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CP134U},
220         {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP104JU, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CP104JU},
221         {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_RC7000, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_RC7000},
222         {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP118U, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CP118U},
223         {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP102UL, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CP102UL},
224         {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP102U, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CP102U},
225         {0}
226 };
227
228 MODULE_DEVICE_TABLE(pci, mxser_pcibrds);
229
230
231 #endif
232
233 typedef struct _moxa_pci_info {
234         unsigned short busNum;
235         unsigned short devNum;
236         struct pci_dev *pdev;   // add by Victor Yu. 06-23-2003
237 } moxa_pci_info;
238
239 static int ioaddr[MXSER_BOARDS] = { 0, 0, 0, 0 };
240 static int ttymajor = MXSERMAJOR;
241 static int calloutmajor = MXSERCUMAJOR;
242 static int verbose = 0;
243
244 /* Variables for insmod */
245
246 MODULE_AUTHOR("Casper Yang");
247 MODULE_DESCRIPTION("MOXA Smartio/Industio Family Multiport Board Device Driver");
248 MODULE_PARM(ioaddr, "1-4i");
249 MODULE_PARM(ttymajor, "i");
250 MODULE_PARM(calloutmajor, "i");
251 MODULE_PARM(verbose, "i");
252 MODULE_LICENSE("GPL");
253
254 struct mxser_log {
255         int tick;
256         unsigned long rxcnt[MXSER_PORTS];
257         unsigned long txcnt[MXSER_PORTS];
258 };
259
260
261 struct mxser_mon {
262         unsigned long rxcnt;
263         unsigned long txcnt;
264         unsigned long up_rxcnt;
265         unsigned long up_txcnt;
266         int modem_status;
267         unsigned char hold_reason;
268 };
269
270 struct mxser_mon_ext {
271         unsigned long rx_cnt[32];
272         unsigned long tx_cnt[32];
273         unsigned long up_rxcnt[32];
274         unsigned long up_txcnt[32];
275         int modem_status[32];
276
277         long baudrate[32];
278         int databits[32];
279         int stopbits[32];
280         int parity[32];
281         int flowctrl[32];
282         int fifo[32];
283         int iftype[32];
284 };
285 struct mxser_hwconf {
286         int board_type;
287         int ports;
288         int irq;
289         int vector;
290         int vector_mask;
291         int uart_type;
292         int ioaddr[MXSER_PORTS_PER_BOARD];
293         int baud_base[MXSER_PORTS_PER_BOARD];
294         moxa_pci_info pciInfo;
295         int IsMoxaMustChipFlag; // add by Victor Yu. 08-30-2002
296         int MaxCanSetBaudRate[MXSER_PORTS_PER_BOARD];   // add by Victor Yu. 09-04-2002
297         int opmode_ioaddr[MXSER_PORTS_PER_BOARD];       // add by Victor Yu. 01-05-2004
298 };
299
300 struct mxser_struct {
301         int port;
302         int base;               /* port base address */
303         int irq;                /* port using irq no. */
304         int vector;             /* port irq vector */
305         int vectormask;         /* port vector mask */
306         int rx_high_water;
307         int rx_trigger;         /* Rx fifo trigger level */
308         int rx_low_water;
309         int baud_base;          /* max. speed */
310         int flags;              /* defined in tty.h */
311         int type;               /* UART type */
312         struct tty_struct *tty;
313         int read_status_mask;
314         int ignore_status_mask;
315         int xmit_fifo_size;
316         int custom_divisor;
317         int x_char;             /* xon/xoff character */
318         int close_delay;
319         unsigned short closing_wait;
320         int IER;                /* Interrupt Enable Register */
321         int MCR;                /* Modem control register */
322         unsigned long event;
323         int count;              /* # of fd on device */
324         int blocked_open;       /* # of blocked opens */
325         long session;           /* Session of opening process */
326         long pgrp;              /* pgrp of opening process */
327         unsigned char *xmit_buf;
328         int xmit_head;
329         int xmit_tail;
330         int xmit_cnt;
331         struct work_struct tqueue;
332         struct termios normal_termios;
333         struct termios callout_termios;
334         wait_queue_head_t open_wait;
335         wait_queue_head_t close_wait;
336         wait_queue_head_t delta_msr_wait;
337         struct async_icount icount;     /* kernel counters for the 4 input interrupts */
338         int timeout;
339         int IsMoxaMustChipFlag; // add by Victor Yu. 08-30-2002
340         int MaxCanSetBaudRate;  // add by Victor Yu. 09-04-2002
341         int opmode_ioaddr;      // add by Victor Yu. 01-05-2004
342         unsigned char stop_rx;
343         unsigned char ldisc_stop_rx;
344         long realbaud;
345         struct mxser_mon mon_data;
346         unsigned char err_shadow;
347         spinlock_t slock;
348 };
349
350
351 struct mxser_mstatus {
352         tcflag_t cflag;
353         int cts;
354         int dsr;
355         int ri;
356         int dcd;
357 };
358
359 static struct mxser_mstatus GMStatus[MXSER_PORTS];
360
361 static int mxserBoardCAP[MXSER_BOARDS] = {
362         0, 0, 0, 0
363             /*  0x180, 0x280, 0x200, 0x320   */
364 };
365
366 static struct tty_driver *mxvar_sdriver;
367 static struct mxser_struct mxvar_table[MXSER_PORTS];
368 static struct tty_struct *mxvar_tty[MXSER_PORTS + 1];
369 static struct termios *mxvar_termios[MXSER_PORTS + 1];
370 static struct termios *mxvar_termios_locked[MXSER_PORTS + 1];
371 static struct mxser_log mxvar_log;
372 static int mxvar_diagflag;
373 static unsigned char mxser_msr[MXSER_PORTS + 1];
374 static struct mxser_mon_ext mon_data_ext;
375 static int mxser_set_baud_method[MXSER_PORTS + 1];
376 static spinlock_t gm_lock;
377
378 /*
379  * This is used to figure out the divisor speeds and the timeouts
380  */
381
382 static struct mxser_hwconf mxsercfg[MXSER_BOARDS];
383
384 /*
385  * static functions:
386  */
387
388 static void mxser_getcfg(int board, struct mxser_hwconf *hwconf);
389 static int mxser_init(void);
390
391 //static void   mxser_poll(unsigned long);
392 static int mxser_get_ISA_conf(int, struct mxser_hwconf *);
393 static int mxser_get_PCI_conf(int, int, int, struct mxser_hwconf *);
394 static void mxser_do_softint(void *);
395 static int mxser_open(struct tty_struct *, struct file *);
396 static void mxser_close(struct tty_struct *, struct file *);
397 static int mxser_write(struct tty_struct *, const unsigned char *, int);
398 static int mxser_write_room(struct tty_struct *);
399 static void mxser_flush_buffer(struct tty_struct *);
400 static int mxser_chars_in_buffer(struct tty_struct *);
401 static void mxser_flush_chars(struct tty_struct *);
402 static void mxser_put_char(struct tty_struct *, unsigned char);
403 static int mxser_ioctl(struct tty_struct *, struct file *, uint, ulong);
404 static int mxser_ioctl_special(unsigned int, unsigned long);
405 static void mxser_throttle(struct tty_struct *);
406 static void mxser_unthrottle(struct tty_struct *);
407 static void mxser_set_termios(struct tty_struct *, struct termios *);
408 static void mxser_stop(struct tty_struct *);
409 static void mxser_start(struct tty_struct *);
410 static void mxser_hangup(struct tty_struct *);
411 static void mxser_rs_break(struct tty_struct *, int);
412 static irqreturn_t mxser_interrupt(int, void *, struct pt_regs *);
413 static void mxser_receive_chars(struct mxser_struct *, int *);
414 static void mxser_transmit_chars(struct mxser_struct *);
415 static void mxser_check_modem_status(struct mxser_struct *, int);
416 static int mxser_block_til_ready(struct tty_struct *, struct file *, struct mxser_struct *);
417 static int mxser_startup(struct mxser_struct *);
418 static void mxser_shutdown(struct mxser_struct *);
419 static int mxser_change_speed(struct mxser_struct *, struct termios *old_termios);
420 static int mxser_get_serial_info(struct mxser_struct *, struct serial_struct *);
421 static int mxser_set_serial_info(struct mxser_struct *, struct serial_struct *);
422 static int mxser_get_lsr_info(struct mxser_struct *, unsigned int *);
423 static void mxser_send_break(struct mxser_struct *, int);
424 static int mxser_tiocmget(struct tty_struct *, struct file *);
425 static int mxser_tiocmset(struct tty_struct *, struct file *, unsigned int, unsigned int);
426 static int mxser_set_baud(struct mxser_struct *info, long newspd);
427 static void mxser_wait_until_sent(struct tty_struct *tty, int timeout);
428
429 static void mxser_startrx(struct tty_struct *tty);
430 static void mxser_stoprx(struct tty_struct *tty);
431
432
433 static int CheckIsMoxaMust(int io)
434 {
435         u8 oldmcr, hwid;
436         int i;
437
438         outb(0, io + UART_LCR);
439         DISABLE_MOXA_MUST_ENCHANCE_MODE(io);
440         oldmcr = inb(io + UART_MCR);
441         outb(0, io + UART_MCR);
442         SET_MOXA_MUST_XON1_VALUE(io, 0x11);
443         if ((hwid = inb(io + UART_MCR)) != 0) {
444                 outb(oldmcr, io + UART_MCR);
445                 return (MOXA_OTHER_UART);
446         }
447
448         GET_MOXA_MUST_HARDWARE_ID(io, &hwid);
449         for (i = 0; i < UART_TYPE_NUM; i++) {
450                 if (hwid == Gmoxa_uart_id[i])
451                         return (int) hwid;
452         }
453         return MOXA_OTHER_UART;
454 }
455
456 // above is modified by Victor Yu. 08-15-2002
457
458 static struct tty_operations mxser_ops = {
459         .open = mxser_open,
460         .close = mxser_close,
461         .write = mxser_write,
462         .put_char = mxser_put_char,
463         .flush_chars = mxser_flush_chars,
464         .write_room = mxser_write_room,
465         .chars_in_buffer = mxser_chars_in_buffer,
466         .flush_buffer = mxser_flush_buffer,
467         .ioctl = mxser_ioctl,
468         .throttle = mxser_throttle,
469         .unthrottle = mxser_unthrottle,
470         .set_termios = mxser_set_termios,
471         .stop = mxser_stop,
472         .start = mxser_start,
473         .hangup = mxser_hangup,
474         .tiocmget = mxser_tiocmget,
475         .tiocmset = mxser_tiocmset,
476 };
477
478 /*
479  * The MOXA Smartio/Industio serial driver boot-time initialization code!
480  */
481
482 static int __init mxser_module_init(void)
483 {
484         int ret;
485
486         if (verbose)
487                 printk(KERN_DEBUG "Loading module mxser ...\n");
488         ret = mxser_init();
489         if (verbose)
490                 printk(KERN_DEBUG "Done.\n");
491         return ret;
492 }
493
494 static void __exit mxser_module_exit(void)
495 {
496         int i, err = 0;
497
498         if (verbose)
499                 printk(KERN_DEBUG "Unloading module mxser ...\n");
500
501         if ((err |= tty_unregister_driver(mxvar_sdriver)))
502                 printk(KERN_ERR "Couldn't unregister MOXA Smartio/Industio family serial driver\n");
503
504         for (i = 0; i < MXSER_BOARDS; i++) {
505                 struct pci_dev *pdev;
506
507                 if (mxsercfg[i].board_type == -1)
508                         continue;
509                 else {
510                         pdev = mxsercfg[i].pciInfo.pdev;
511                         free_irq(mxsercfg[i].irq, &mxvar_table[i * MXSER_PORTS_PER_BOARD]);
512                         if (pdev != NULL) {     //PCI
513                                 release_region(pci_resource_start(pdev, 2), pci_resource_len(pdev, 2));
514                                 release_region(pci_resource_start(pdev, 3), pci_resource_len(pdev, 3));
515                         } else {
516                                 release_region(mxsercfg[i].ioaddr[0], 8 * mxsercfg[i].ports);
517                                 release_region(mxsercfg[i].vector, 1);
518                         }
519                 }
520         }
521         if (verbose)
522                 printk(KERN_DEBUG "Done.\n");
523
524 }
525
526 static void process_txrx_fifo(struct mxser_struct *info)
527 {
528         int i;
529
530         if ((info->type == PORT_16450) || (info->type == PORT_8250)) {
531                 info->rx_trigger = 1;
532                 info->rx_high_water = 1;
533                 info->rx_low_water = 1;
534                 info->xmit_fifo_size = 1;
535         } else {
536                 for (i = 0; i < UART_INFO_NUM; i++) {
537                         if (info->IsMoxaMustChipFlag == Gpci_uart_info[i].type) {
538                                 info->rx_trigger = Gpci_uart_info[i].rx_trigger;
539                                 info->rx_low_water = Gpci_uart_info[i].rx_low_water;
540                                 info->rx_high_water = Gpci_uart_info[i].rx_high_water;
541                                 info->xmit_fifo_size = Gpci_uart_info[i].xmit_fifo_size;
542                                 break;
543                         }
544                 }
545         }
546 }
547
548 static int mxser_initbrd(int board, struct mxser_hwconf *hwconf)
549 {
550         struct mxser_struct *info;
551         unsigned long flags;
552         int retval;
553         int i, n;
554
555         n = board * MXSER_PORTS_PER_BOARD;
556         info = &mxvar_table[n];
557         /*if (verbose) */  {
558                 printk(KERN_DEBUG "        ttyM%d - ttyM%d ", n, n + hwconf->ports - 1);
559                 printk(KERN_DEBUG " max. baud rate = %d bps.\n", hwconf->MaxCanSetBaudRate[0]);
560         }
561
562         for (i = 0; i < hwconf->ports; i++, n++, info++) {
563                 info->port = n;
564                 info->base = hwconf->ioaddr[i];
565                 info->irq = hwconf->irq;
566                 info->vector = hwconf->vector;
567                 info->vectormask = hwconf->vector_mask;
568                 info->opmode_ioaddr = hwconf->opmode_ioaddr[i]; // add by Victor Yu. 01-05-2004
569                 info->stop_rx = 0;
570                 info->ldisc_stop_rx = 0;
571
572                 info->IsMoxaMustChipFlag = hwconf->IsMoxaMustChipFlag;
573                 //Enhance mode enabled here
574                 if (info->IsMoxaMustChipFlag != MOXA_OTHER_UART) {
575                         ENABLE_MOXA_MUST_ENCHANCE_MODE(info->base);
576                 }
577
578                 info->flags = ASYNC_SHARE_IRQ;
579                 info->type = hwconf->uart_type;
580                 info->baud_base = hwconf->baud_base[i];
581
582                 info->MaxCanSetBaudRate = hwconf->MaxCanSetBaudRate[i];
583
584                 process_txrx_fifo(info);
585
586
587                 info->custom_divisor = hwconf->baud_base[i] * 16;
588                 info->close_delay = 5 * HZ / 10;
589                 info->closing_wait = 30 * HZ;
590                 INIT_WORK(&info->tqueue, mxser_do_softint, info);
591                 info->normal_termios = mxvar_sdriver->init_termios;
592                 init_waitqueue_head(&info->open_wait);
593                 init_waitqueue_head(&info->close_wait);
594                 init_waitqueue_head(&info->delta_msr_wait);
595                 memset(&info->mon_data, 0, sizeof(struct mxser_mon));
596                 info->err_shadow = 0;
597                 spin_lock_init(&info->slock);
598         }
599         /*
600          * Allocate the IRQ if necessary
601          */
602
603
604         /* before set INT ISR, disable all int */
605         for (i = 0; i < hwconf->ports; i++) {
606                 outb(inb(hwconf->ioaddr[i] + UART_IER) & 0xf0, hwconf->ioaddr[i] + UART_IER);
607         }
608
609         n = board * MXSER_PORTS_PER_BOARD;
610         info = &mxvar_table[n];
611
612         spin_lock_irqsave(&info->slock, flags);
613         retval = request_irq(hwconf->irq, mxser_interrupt, IRQ_T(info), "mxser", info);
614         if (retval) {
615                 spin_unlock_irqrestore(&info->slock, flags);
616                 printk(KERN_ERR "Board %d: %s", board, mxser_brdname[hwconf->board_type - 1]);
617                 printk("  Request irq fail,IRQ (%d) may be conflit with another device.\n", info->irq);
618                 return retval;
619         }
620
621         spin_unlock_irqrestore(&info->slock, flags);
622
623
624         return 0;
625 }
626
627
628 static void mxser_getcfg(int board, struct mxser_hwconf *hwconf)
629 {
630         mxsercfg[board] = *hwconf;
631 }
632
633 #ifdef CONFIG_PCI
634 static int mxser_get_PCI_conf(int busnum, int devnum, int board_type, struct mxser_hwconf *hwconf)
635 {
636         int i, j;
637 //      unsigned int    val;
638         unsigned int ioaddress;
639         struct pci_dev *pdev = hwconf->pciInfo.pdev;
640
641         //io address
642         hwconf->board_type = board_type;
643         hwconf->ports = mxser_numports[board_type - 1];
644         ioaddress = pci_resource_start(pdev, 2);
645         request_region(pci_resource_start(pdev, 2), pci_resource_len(pdev, 2), "mxser(IO)");
646
647         for (i = 0; i < hwconf->ports; i++) {
648                 hwconf->ioaddr[i] = ioaddress + 8 * i;
649         }
650
651         //vector
652         ioaddress = pci_resource_start(pdev, 3);
653         request_region(pci_resource_start(pdev, 3), pci_resource_len(pdev, 3), "mxser(vector)");
654         hwconf->vector = ioaddress;
655
656         //irq
657         hwconf->irq = hwconf->pciInfo.pdev->irq;
658
659         hwconf->IsMoxaMustChipFlag = CheckIsMoxaMust(hwconf->ioaddr[0]);
660         hwconf->uart_type = PORT_16550A;
661         hwconf->vector_mask = 0;
662
663
664         for (i = 0; i < hwconf->ports; i++) {
665                 for (j = 0; j < UART_INFO_NUM; j++) {
666                         if (Gpci_uart_info[j].type == hwconf->IsMoxaMustChipFlag) {
667                                 hwconf->MaxCanSetBaudRate[i] = Gpci_uart_info[j].max_baud;
668
669                                 //exception....CP-102
670                                 if (board_type == MXSER_BOARD_CP102)
671                                         hwconf->MaxCanSetBaudRate[i] = 921600;
672                                 break;
673                         }
674                 }
675         }
676
677         if (hwconf->IsMoxaMustChipFlag == MOXA_MUST_MU860_HWID) {
678                 for (i = 0; i < hwconf->ports; i++) {
679                         if (i < 4)
680                                 hwconf->opmode_ioaddr[i] = ioaddress + 4;
681                         else
682                                 hwconf->opmode_ioaddr[i] = ioaddress + 0x0c;
683                 }
684                 outb(0, ioaddress + 4); // default set to RS232 mode
685                 outb(0, ioaddress + 0x0c);      //default set to RS232 mode
686         }
687
688         for (i = 0; i < hwconf->ports; i++) {
689                 hwconf->vector_mask |= (1 << i);
690                 hwconf->baud_base[i] = 921600;
691         }
692         return (0);
693 }
694 #endif
695
696 static int mxser_init(void)
697 {
698         int i, m, retval, b, n;
699         int ret1;
700         struct pci_dev *pdev = NULL;
701         int index;
702         unsigned char busnum, devnum;
703         struct mxser_hwconf hwconf;
704
705         mxvar_sdriver = alloc_tty_driver(MXSER_PORTS + 1);
706         if (!mxvar_sdriver)
707                 return -ENOMEM;
708         spin_lock_init(&gm_lock);
709
710         for (i = 0; i < MXSER_BOARDS; i++) {
711                 mxsercfg[i].board_type = -1;
712         }
713
714         printk(KERN_INFO "MOXA Smartio/Industio family driver version %s\n", MXSER_VERSION);
715
716         /* Initialize the tty_driver structure */
717         memset(mxvar_sdriver, 0, sizeof(struct tty_driver));
718         mxvar_sdriver->magic = TTY_DRIVER_MAGIC;
719         mxvar_sdriver->name = "ttyM";
720         mxvar_sdriver->major = ttymajor;
721         mxvar_sdriver->minor_start = 0;
722         mxvar_sdriver->num = MXSER_PORTS + 1;
723         mxvar_sdriver->type = TTY_DRIVER_TYPE_SERIAL;
724         mxvar_sdriver->subtype = SERIAL_TYPE_NORMAL;
725         mxvar_sdriver->init_termios = tty_std_termios;
726         mxvar_sdriver->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
727         mxvar_sdriver->flags = TTY_DRIVER_REAL_RAW;
728         tty_set_operations(mxvar_sdriver, &mxser_ops);
729         mxvar_sdriver->ttys = mxvar_tty;
730         mxvar_sdriver->termios = mxvar_termios;
731         mxvar_sdriver->termios_locked = mxvar_termios_locked;
732
733         mxvar_sdriver->open = mxser_open;
734         mxvar_sdriver->close = mxser_close;
735         mxvar_sdriver->write = mxser_write;
736         mxvar_sdriver->put_char = mxser_put_char;
737         mxvar_sdriver->flush_chars = mxser_flush_chars;
738         mxvar_sdriver->write_room = mxser_write_room;
739         mxvar_sdriver->chars_in_buffer = mxser_chars_in_buffer;
740         mxvar_sdriver->flush_buffer = mxser_flush_buffer;
741         mxvar_sdriver->ioctl = mxser_ioctl;
742         mxvar_sdriver->throttle = mxser_throttle;
743         mxvar_sdriver->unthrottle = mxser_unthrottle;
744         mxvar_sdriver->set_termios = mxser_set_termios;
745         mxvar_sdriver->stop = mxser_stop;
746         mxvar_sdriver->start = mxser_start;
747         mxvar_sdriver->hangup = mxser_hangup;
748         mxvar_sdriver->break_ctl = mxser_rs_break;
749         mxvar_sdriver->wait_until_sent = mxser_wait_until_sent;
750
751         mxvar_diagflag = 0;
752         memset(mxvar_table, 0, MXSER_PORTS * sizeof(struct mxser_struct));
753         memset(&mxvar_log, 0, sizeof(struct mxser_log));
754
755         memset(&mxser_msr, 0, sizeof(unsigned char) * (MXSER_PORTS + 1));
756         memset(&mon_data_ext, 0, sizeof(struct mxser_mon_ext));
757         memset(&mxser_set_baud_method, 0, sizeof(int) * (MXSER_PORTS + 1));
758         memset(&hwconf, 0, sizeof(struct mxser_hwconf));
759
760         m = 0;
761         /* Start finding ISA boards here */
762         for (b = 0; b < MXSER_BOARDS && m < MXSER_BOARDS; b++) {
763                 int cap;
764                 if (!(cap = mxserBoardCAP[b]))
765                         continue;
766
767                 retval = mxser_get_ISA_conf(cap, &hwconf);
768
769                 if (retval != 0)
770                         printk(KERN_INFO "Found MOXA %s board (CAP=0x%x)\n", mxser_brdname[hwconf.board_type - 1], ioaddr[b]);
771
772                 if (retval <= 0) {
773                         if (retval == MXSER_ERR_IRQ)
774                                 printk(KERN_ERR "Invalid interrupt number,board not configured\n");
775                         else if (retval == MXSER_ERR_IRQ_CONFLIT)
776                                 printk(KERN_ERR "Invalid interrupt number,board not configured\n");
777                         else if (retval == MXSER_ERR_VECTOR)
778                                 printk(KERN_ERR "Invalid interrupt vector,board not configured\n");
779                         else if (retval == MXSER_ERR_IOADDR)
780                                 printk(KERN_ERR "Invalid I/O address,board not configured\n");
781
782                         continue;
783                 }
784
785                 hwconf.pciInfo.busNum = 0;
786                 hwconf.pciInfo.devNum = 0;
787                 hwconf.pciInfo.pdev = NULL;
788
789                 mxser_getcfg(m, &hwconf);
790                 //init mxsercfg first, or mxsercfg data is not correct on ISR.
791                 //mxser_initbrd will hook ISR.
792                 if (mxser_initbrd(m, &hwconf) < 0)
793                         continue;
794
795
796                 m++;
797         }
798
799         /* Start finding ISA boards from module arg */
800         for (b = 0; b < MXSER_BOARDS && m < MXSER_BOARDS; b++) {
801                 int cap;
802                 if (!(cap = ioaddr[b]))
803                         continue;
804
805                 retval = mxser_get_ISA_conf(cap, &hwconf);
806
807                 if (retval != 0)
808                         printk(KERN_INFO "Found MOXA %s board (CAP=0x%x)\n", mxser_brdname[hwconf.board_type - 1], ioaddr[b]);
809
810                 if (retval <= 0) {
811                         if (retval == MXSER_ERR_IRQ)
812                                 printk(KERN_ERR "Invalid interrupt number,board not configured\n");
813                         else if (retval == MXSER_ERR_IRQ_CONFLIT)
814                                 printk(KERN_ERR "Invalid interrupt number,board not configured\n");
815                         else if (retval == MXSER_ERR_VECTOR)
816                                 printk(KERN_ERR "Invalid interrupt vector,board not configured\n");
817                         else if (retval == MXSER_ERR_IOADDR)
818                                 printk(KERN_ERR "Invalid I/O address,board not configured\n");
819
820                         continue;
821                 }
822
823                 hwconf.pciInfo.busNum = 0;
824                 hwconf.pciInfo.devNum = 0;
825                 hwconf.pciInfo.pdev = NULL;
826
827                 mxser_getcfg(m, &hwconf);
828                 //init mxsercfg first, or mxsercfg data is not correct on ISR.
829                 //mxser_initbrd will hook ISR.
830                 if (mxser_initbrd(m, &hwconf) < 0)
831                         continue;
832
833                 m++;
834         }
835
836         /* start finding PCI board here */
837         n = (sizeof(mxser_pcibrds) / sizeof(mxser_pcibrds[0])) - 1;
838         index = 0;
839         b = 0;
840         while (b < n) {
841                 pdev = pci_find_device(mxser_pcibrds[b].vendor, mxser_pcibrds[b].device, pdev);
842                         if (pdev == NULL) {
843                         b++;
844                         continue;
845                 }
846                 hwconf.pciInfo.busNum = busnum = pdev->bus->number;
847                 hwconf.pciInfo.devNum = devnum = PCI_SLOT(pdev->devfn) << 3;
848                 hwconf.pciInfo.pdev = pdev;
849                 printk(KERN_INFO "Found MOXA %s board(BusNo=%d,DevNo=%d)\n", mxser_brdname[(int) (mxser_pcibrds[b].driver_data) - 1], busnum, devnum >> 3);
850                 index++;
851                 if (m >= MXSER_BOARDS) {
852                         printk(KERN_ERR "Too many Smartio/Industio family boards find (maximum %d),board not configured\n", MXSER_BOARDS);
853                 } else {
854                         if (pci_enable_device(pdev)) {
855                                 printk(KERN_ERR "Moxa SmartI/O PCI enable fail !\n");
856                                 continue;
857                         }
858                         retval = mxser_get_PCI_conf(busnum, devnum, (int) mxser_pcibrds[b].driver_data, &hwconf);
859                         if (retval < 0) {
860                                 if (retval == MXSER_ERR_IRQ)
861                                         printk(KERN_ERR "Invalid interrupt number,board not configured\n");
862                                 else if (retval == MXSER_ERR_IRQ_CONFLIT)
863                                         printk(KERN_ERR "Invalid interrupt number,board not configured\n");
864                                 else if (retval == MXSER_ERR_VECTOR)
865                                         printk(KERN_ERR "Invalid interrupt vector,board not configured\n");
866                                 else if (retval == MXSER_ERR_IOADDR)
867                                         printk(KERN_ERR "Invalid I/O address,board not configured\n");
868                                 continue;
869                         }
870                         mxser_getcfg(m, &hwconf);
871                         //init mxsercfg first, or mxsercfg data is not correct on ISR.
872                         //mxser_initbrd will hook ISR.
873                         if (mxser_initbrd(m, &hwconf) < 0)
874                                 continue;
875                         m++;
876                 }
877         }
878
879         ret1 = 0;
880         if (!(ret1 = tty_register_driver(mxvar_sdriver))) {
881                 return 0;
882         } else
883                 printk(KERN_ERR "Couldn't install MOXA Smartio/Industio family driver !\n");
884
885
886         if (ret1) {
887                 for (i = 0; i < MXSER_BOARDS; i++) {
888                         if (mxsercfg[i].board_type == -1)
889                                 continue;
890                         else {
891                                 free_irq(mxsercfg[i].irq, &mxvar_table[i * MXSER_PORTS_PER_BOARD]);
892                                 //todo: release io, vector
893                         }
894                 }
895                 return -1;
896         }
897
898         return (0);
899 }
900
901 static void mxser_do_softint(void *private_)
902 {
903         struct mxser_struct *info = (struct mxser_struct *) private_;
904         struct tty_struct *tty;
905
906         tty = info->tty;
907
908         if (tty) {
909                 if (test_and_clear_bit(MXSER_EVENT_TXLOW, &info->event))
910                         tty_wakeup(tty);
911                 if (test_and_clear_bit(MXSER_EVENT_HANGUP, &info->event))
912                         tty_hangup(tty);
913         }
914 }
915
916 static unsigned char mxser_get_msr(int baseaddr, int mode, int port, struct mxser_struct *info)
917 {
918         unsigned char status = 0;
919
920         status = inb(baseaddr + UART_MSR);
921
922         mxser_msr[port] &= 0x0F;
923         mxser_msr[port] |= status;
924         status = mxser_msr[port];
925         if (mode)
926                 mxser_msr[port] = 0;
927
928         return status;
929 }
930
931 /*
932  * This routine is called whenever a serial port is opened.  It
933  * enables interrupts for a serial port, linking in its async structure into
934  * the IRQ chain.   It also performs the serial-specific
935  * initialization for the tty structure.
936  */
937 static int mxser_open(struct tty_struct *tty, struct file *filp)
938 {
939         struct mxser_struct *info;
940         int retval, line;
941
942         line = tty->index;
943         if (line == MXSER_PORTS)
944                 return 0;
945         if (line < 0 || line > MXSER_PORTS)
946                 return -ENODEV;
947         info = mxvar_table + line;
948         if (!info->base)
949                 return (-ENODEV);
950
951         tty->driver_data = info;
952         info->tty = tty;
953         /*
954          * Start up serial port
955          */
956         retval = mxser_startup(info);
957         if (retval)
958                 return (retval);
959
960         retval = mxser_block_til_ready(tty, filp, info);
961         if (retval)
962                 return (retval);
963
964         info->count++;
965
966         if ((info->count == 1) && (info->flags & ASYNC_SPLIT_TERMIOS)) {
967                 if (tty->driver->subtype == SERIAL_TYPE_NORMAL)
968                         *tty->termios = info->normal_termios;
969                 else
970                         *tty->termios = info->callout_termios;
971                 mxser_change_speed(info, 0);
972         }
973
974         info->session = current->signal->session;
975         info->pgrp = process_group(current);
976         clear_bit(TTY_DONT_FLIP, &tty->flags);
977
978         //status = mxser_get_msr(info->base, 0, info->port);
979         //mxser_check_modem_status(info, status);
980
981 /* unmark here for very high baud rate (ex. 921600 bps) used
982 */
983         tty->low_latency = 1;
984         return 0;
985 }
986
987 /*
988  * This routine is called when the serial port gets closed.  First, we
989  * wait for the last remaining data to be sent.  Then, we unlink its
990  * async structure from the interrupt chain if necessary, and we free
991  * that IRQ if nothing is left in the chain.
992  */
993 static void mxser_close(struct tty_struct *tty, struct file *filp)
994 {
995         struct mxser_struct *info = (struct mxser_struct *) tty->driver_data;
996
997         unsigned long timeout;
998         unsigned long flags;
999         struct tty_ldisc *ld;
1000
1001         if (tty->index == MXSER_PORTS)
1002                 return;
1003         if (!info)
1004                 BUG();
1005
1006         spin_lock_irqsave(&info->slock, flags);
1007
1008         if (tty_hung_up_p(filp)) {
1009                 spin_unlock_irqrestore(&info->slock, flags);
1010                 return;
1011         }
1012         if ((tty->count == 1) && (info->count != 1)) {
1013                 /*
1014                  * Uh, oh.  tty->count is 1, which means that the tty
1015                  * structure will be freed.  Info->count should always
1016                  * be one in these conditions.  If it's greater than
1017                  * one, we've got real problems, since it means the
1018                  * serial port won't be shutdown.
1019                  */
1020                 printk(KERN_ERR "mxser_close: bad serial port count; tty->count is 1, " "info->count is %d\n", info->count);
1021                 info->count = 1;
1022         }
1023         if (--info->count < 0) {
1024                 printk(KERN_ERR "mxser_close: bad serial port count for ttys%d: %d\n", info->port, info->count);
1025                 info->count = 0;
1026         }
1027         if (info->count) {
1028                 spin_unlock_irqrestore(&info->slock, flags);
1029                 return;
1030         }
1031         info->flags |= ASYNC_CLOSING;
1032         spin_unlock_irqrestore(&info->slock, flags);
1033         /*
1034          * Save the termios structure, since this port may have
1035          * separate termios for callout and dialin.
1036          */
1037         if (info->flags & ASYNC_NORMAL_ACTIVE)
1038                 info->normal_termios = *tty->termios;
1039         /*
1040          * Now we wait for the transmit buffer to clear; and we notify
1041          * the line discipline to only process XON/XOFF characters.
1042          */
1043         tty->closing = 1;
1044         if (info->closing_wait != ASYNC_CLOSING_WAIT_NONE)
1045                 tty_wait_until_sent(tty, info->closing_wait);
1046         /*
1047          * At this point we stop accepting input.  To do this, we
1048          * disable the receive line status interrupts, and tell the
1049          * interrupt driver to stop checking the data ready bit in the
1050          * line status register.
1051          */
1052         info->IER &= ~UART_IER_RLSI;
1053         if (info->IsMoxaMustChipFlag)
1054                 info->IER &= ~MOXA_MUST_RECV_ISR;
1055 /* by William
1056         info->read_status_mask &= ~UART_LSR_DR;
1057 */
1058         if (info->flags & ASYNC_INITIALIZED) {
1059                 outb(info->IER, info->base + UART_IER);
1060                 /*
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!
1064                  */
1065                 timeout = jiffies + HZ;
1066                 while (!(inb(info->base + UART_LSR) & UART_LSR_TEMT)) {
1067                         set_current_state(TASK_INTERRUPTIBLE);
1068                         schedule_timeout(5);
1069                         if (time_after(jiffies, timeout))
1070                                 break;
1071                 }
1072         }
1073         mxser_shutdown(info);
1074
1075         if (tty->driver->flush_buffer)
1076                 tty->driver->flush_buffer(tty);
1077                 
1078         ld = tty_ldisc_ref(tty);
1079         if (ld) {
1080                 if(ld->flush_buffer)
1081                         ld->flush_buffer(tty);
1082                 tty_ldisc_deref(ld);
1083         }
1084                 
1085         tty->closing = 0;
1086         info->event = 0;
1087         info->tty = 0;
1088         if (info->blocked_open) {
1089                 if (info->close_delay) {
1090                         set_current_state(TASK_INTERRUPTIBLE);
1091                         schedule_timeout(info->close_delay);
1092                 }
1093                 wake_up_interruptible(&info->open_wait);
1094         }
1095
1096         info->flags &= ~(ASYNC_NORMAL_ACTIVE | ASYNC_CLOSING);
1097         wake_up_interruptible(&info->close_wait);
1098
1099 }
1100
1101 static int mxser_write(struct tty_struct *tty, const unsigned char *buf, int count)
1102 {
1103         int c, total = 0;
1104         struct mxser_struct *info = (struct mxser_struct *) tty->driver_data;
1105         unsigned long flags;
1106
1107         if (!tty || !info->xmit_buf)
1108                 return (0);
1109
1110         while (1) {
1111                 c = min_t(int, count, min(SERIAL_XMIT_SIZE - info->xmit_cnt - 1, SERIAL_XMIT_SIZE - info->xmit_head));
1112                 if (c <= 0)
1113                         break;
1114
1115                 memcpy(info->xmit_buf + info->xmit_head, buf, c);
1116                 spin_lock_irqsave(&info->slock, flags);
1117                 info->xmit_head = (info->xmit_head + c) & (SERIAL_XMIT_SIZE - 1);
1118                 info->xmit_cnt += c;
1119                 spin_unlock_irqrestore(&info->slock, flags);
1120
1121                 buf += c;
1122                 count -= c;
1123                 total += c;
1124
1125         }
1126
1127         if (info->xmit_cnt && !tty->stopped && !(info->IER & UART_IER_THRI)) {
1128                 if (!tty->hw_stopped || (info->type == PORT_16550A) || (info->IsMoxaMustChipFlag)) {
1129                         spin_lock_irqsave(&info->slock, flags);
1130                         info->IER |= UART_IER_THRI;
1131                         outb(info->IER, info->base + UART_IER);
1132                         spin_unlock_irqrestore(&info->slock, flags);
1133                 }
1134         }
1135         return total;
1136 }
1137
1138 static void mxser_put_char(struct tty_struct *tty, unsigned char ch)
1139 {
1140         struct mxser_struct *info = (struct mxser_struct *) tty->driver_data;
1141         unsigned long flags;
1142
1143         if (!tty || !info->xmit_buf)
1144                 return;
1145
1146         if (info->xmit_cnt >= SERIAL_XMIT_SIZE - 1)
1147                 return;
1148
1149         spin_lock_irqsave(&info->slock, flags);
1150         info->xmit_buf[info->xmit_head++] = ch;
1151         info->xmit_head &= SERIAL_XMIT_SIZE - 1;
1152         info->xmit_cnt++;
1153         spin_unlock_irqrestore(&info->slock, flags);
1154         if (!tty->stopped && !(info->IER & UART_IER_THRI)) {
1155                 if (!tty->hw_stopped || (info->type == PORT_16550A) || info->IsMoxaMustChipFlag) {
1156                         spin_lock_irqsave(&info->slock, flags);
1157                         info->IER |= UART_IER_THRI;
1158                         outb(info->IER, info->base + UART_IER);
1159                         spin_unlock_irqrestore(&info->slock, flags);
1160                 }
1161         }
1162 }
1163
1164
1165 static void mxser_flush_chars(struct tty_struct *tty)
1166 {
1167         struct mxser_struct *info = (struct mxser_struct *) tty->driver_data;
1168         unsigned long flags;
1169
1170         if (info->xmit_cnt <= 0 || tty->stopped || !info->xmit_buf || (tty->hw_stopped && (info->type != PORT_16550A) && (!info->IsMoxaMustChipFlag)))
1171                 return;
1172
1173         spin_lock_irqsave(&info->slock, flags);
1174
1175         info->IER |= UART_IER_THRI;
1176         outb(info->IER, info->base + UART_IER);
1177
1178         spin_unlock_irqrestore(&info->slock, flags);
1179 }
1180
1181 static int mxser_write_room(struct tty_struct *tty)
1182 {
1183         struct mxser_struct *info = (struct mxser_struct *) tty->driver_data;
1184         int ret;
1185
1186         ret = SERIAL_XMIT_SIZE - info->xmit_cnt - 1;
1187         if (ret < 0)
1188                 ret = 0;
1189         return (ret);
1190 }
1191
1192 static int mxser_chars_in_buffer(struct tty_struct *tty)
1193 {
1194         struct mxser_struct *info = (struct mxser_struct *) tty->driver_data;
1195         return info->xmit_cnt;
1196 }
1197
1198 static void mxser_flush_buffer(struct tty_struct *tty)
1199 {
1200         struct mxser_struct *info = (struct mxser_struct *) tty->driver_data;
1201         char fcr;
1202         unsigned long flags;
1203
1204
1205         spin_lock_irqsave(&info->slock, flags);
1206         info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
1207
1208         /* below added by shinhay */
1209         fcr = inb(info->base + UART_FCR);
1210         outb((fcr | UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT), info->base + UART_FCR);
1211         outb(fcr, info->base + UART_FCR);
1212
1213         spin_unlock_irqrestore(&info->slock, flags);
1214         /* above added by shinhay */
1215
1216         wake_up_interruptible(&tty->write_wait);
1217         if ((tty->flags & (1 << TTY_DO_WRITE_WAKEUP)) && tty->ldisc.write_wakeup)
1218                 (tty->ldisc.write_wakeup) (tty);
1219 }
1220
1221 static int mxser_ioctl(struct tty_struct *tty, struct file *file, unsigned int cmd, unsigned long arg)
1222 {
1223         struct mxser_struct *info = (struct mxser_struct *) tty->driver_data;
1224         int retval;
1225         struct async_icount cprev, cnow;        /* kernel counter temps */
1226         struct serial_icounter_struct *p_cuser; /* user space */
1227         unsigned long templ;
1228         unsigned long flags;
1229
1230         if (tty->index == MXSER_PORTS)
1231                 return (mxser_ioctl_special(cmd, arg));
1232
1233         // following add by Victor Yu. 01-05-2004
1234         if (cmd == MOXA_SET_OP_MODE || cmd == MOXA_GET_OP_MODE) {
1235                 int opmode, p;
1236                 static unsigned char ModeMask[] = { 0xfc, 0xf3, 0xcf, 0x3f };
1237                 int shiftbit;
1238                 unsigned char val, mask;
1239
1240                 p = info->port % 4;
1241                 if (cmd == MOXA_SET_OP_MODE) {
1242                         if (get_user(opmode, (int *) arg))
1243                                 return -EFAULT;
1244                         if (opmode != RS232_MODE && opmode != RS485_2WIRE_MODE && opmode != RS422_MODE && opmode != RS485_4WIRE_MODE)
1245                                 return -EFAULT;
1246                         mask = ModeMask[p];
1247                         shiftbit = p * 2;
1248                         val = inb(info->opmode_ioaddr);
1249                         val &= mask;
1250                         val |= (opmode << shiftbit);
1251                         outb(val, info->opmode_ioaddr);
1252                 } else {
1253                         shiftbit = p * 2;
1254                         opmode = inb(info->opmode_ioaddr) >> shiftbit;
1255                         opmode &= OP_MODE_MASK;
1256                         if (copy_to_user((int *) arg, &opmode, sizeof(int)))
1257                                 return -EFAULT;
1258                 }
1259                 return 0;
1260         }
1261         // above add by Victor Yu. 01-05-2004
1262
1263         if ((cmd != TIOCGSERIAL) && (cmd != TIOCMIWAIT) && (cmd != TIOCGICOUNT)) {
1264                 if (tty->flags & (1 << TTY_IO_ERROR))
1265                         return (-EIO);
1266         }
1267         switch (cmd) {
1268         case TCSBRK:            /* SVID version: non-zero arg --> no break */
1269                 retval = tty_check_change(tty);
1270                 if (retval)
1271                         return (retval);
1272                 tty_wait_until_sent(tty, 0);
1273                 if (!arg)
1274                         mxser_send_break(info, HZ / 4); /* 1/4 second */
1275                 return (0);
1276         case TCSBRKP:           /* support for POSIX tcsendbreak() */
1277                 retval = tty_check_change(tty);
1278                 if (retval)
1279                         return (retval);
1280                 tty_wait_until_sent(tty, 0);
1281                 mxser_send_break(info, arg ? arg * (HZ / 10) : HZ / 4);
1282                 return (0);
1283         case TIOCGSOFTCAR:
1284                 return put_user(C_CLOCAL(tty) ? 1 : 0, (unsigned long *) arg);
1285         case TIOCSSOFTCAR:
1286                 if (get_user(templ, (unsigned long *) arg))
1287                         return -EFAULT;
1288                 arg = templ;
1289                 tty->termios->c_cflag = ((tty->termios->c_cflag & ~CLOCAL) | (arg ? CLOCAL : 0));
1290                 return (0);
1291         case TIOCGSERIAL:
1292                 return (mxser_get_serial_info(info, (struct serial_struct *) arg));
1293         case TIOCSSERIAL:
1294                 return (mxser_set_serial_info(info, (struct serial_struct *) arg));
1295         case TIOCSERGETLSR:     /* Get line status register */
1296                 return (mxser_get_lsr_info(info, (unsigned int *) arg));
1297                 /*
1298                  * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1299                  * - mask passed in arg for lines of interest
1300                  *   (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1301                  * Caller should use TIOCGICOUNT to see which one it was
1302                  */
1303         case TIOCMIWAIT:{
1304                         DECLARE_WAITQUEUE(wait, current);
1305                         int ret;
1306                         spin_lock_irqsave(&info->slock, flags);
1307                         cprev = info->icount;   /* note the counters on entry */
1308                         spin_unlock_irqrestore(&info->slock, flags);
1309
1310                         add_wait_queue(&info->delta_msr_wait, &wait);
1311                         while (1) {
1312                                 spin_lock_irqsave(&info->slock, flags);
1313                                 cnow = info->icount;    /* atomic copy */
1314                                 spin_unlock_irqrestore(&info->slock, flags);
1315
1316                                 set_current_state(TASK_INTERRUPTIBLE);
1317                                 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) || ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) || ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) || ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
1318                                         ret = 0;
1319                                         break;
1320                                 }
1321                                 /* see if a signal did it */
1322                                 if (signal_pending(current)) {
1323                                         ret = -ERESTARTSYS;
1324                                         break;
1325                                 }
1326                                 cprev = cnow;
1327                         }
1328                         current->state = TASK_RUNNING;
1329                         remove_wait_queue(&info->delta_msr_wait, &wait);
1330                         break;
1331                 }
1332                 /* NOTREACHED */
1333                 /*
1334                  * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1335                  * Return: write counters to the user passed counter struct
1336                  * NB: both 1->0 and 0->1 transitions are counted except for
1337                  *     RI where only 0->1 is counted.
1338                  */
1339         case TIOCGICOUNT:
1340                 spin_lock_irqsave(&info->slock, flags);
1341                 cnow = info->icount;
1342                 spin_unlock_irqrestore(&info->slock, flags);
1343                 p_cuser = (struct serial_icounter_struct *) arg;
1344                 /* modified by casper 1/11/2000 */
1345                 if (put_user(cnow.frame, &p_cuser->frame))
1346                         return -EFAULT;
1347                 if (put_user(cnow.brk, &p_cuser->brk))
1348                         return -EFAULT;
1349                 if (put_user(cnow.overrun, &p_cuser->overrun))
1350                         return -EFAULT;
1351                 if (put_user(cnow.buf_overrun, &p_cuser->buf_overrun))
1352                         return -EFAULT;
1353                 if (put_user(cnow.parity, &p_cuser->parity))
1354                         return -EFAULT;
1355                 if (put_user(cnow.rx, &p_cuser->rx))
1356                         return -EFAULT;
1357                 if (put_user(cnow.tx, &p_cuser->tx))
1358                         return -EFAULT;
1359                 put_user(cnow.cts, &p_cuser->cts);
1360                 put_user(cnow.dsr, &p_cuser->dsr);
1361                 put_user(cnow.rng, &p_cuser->rng);
1362                 put_user(cnow.dcd, &p_cuser->dcd);
1363
1364 /* */
1365                 return 0;
1366         case MOXA_HighSpeedOn:
1367                 return put_user(info->baud_base != 115200 ? 1 : 0, (int *) arg);
1368
1369         case MOXA_SDS_RSTICOUNTER:{
1370                         info->mon_data.rxcnt = 0;
1371                         info->mon_data.txcnt = 0;
1372                         return 0;
1373                 }
1374 // (above) added by James.
1375         case MOXA_ASPP_SETBAUD:{
1376                         long baud;
1377                         if (get_user(baud, (long *) arg))
1378                                 return -EFAULT;
1379                         mxser_set_baud(info, baud);
1380                         return 0;
1381                 }
1382         case MOXA_ASPP_GETBAUD:
1383                 if (copy_to_user((long *) arg, &info->realbaud, sizeof(long)))
1384                         return -EFAULT;
1385
1386                 return 0;
1387
1388         case MOXA_ASPP_OQUEUE:{
1389                         int len, lsr;
1390
1391                         len = mxser_chars_in_buffer(tty);
1392
1393                         lsr = inb(info->base + UART_LSR) & UART_LSR_TEMT;
1394
1395                         len += (lsr ? 0 : 1);
1396
1397                         if (copy_to_user((int *) arg, &len, sizeof(int)))
1398                                 return -EFAULT;
1399
1400                         return 0;
1401                 }
1402         case MOXA_ASPP_MON:{
1403                         int mcr, status;
1404 //      info->mon_data.ser_param = tty->termios->c_cflag;
1405
1406                         status = mxser_get_msr(info->base, 1, info->port, info);
1407                         mxser_check_modem_status(info, status);
1408
1409                         mcr = inb(info->base + UART_MCR);
1410                         if (mcr & MOXA_MUST_MCR_XON_FLAG)
1411                                 info->mon_data.hold_reason &= ~NPPI_NOTIFY_XOFFHOLD;
1412                         else
1413                                 info->mon_data.hold_reason |= NPPI_NOTIFY_XOFFHOLD;
1414
1415                         if (mcr & MOXA_MUST_MCR_TX_XON)
1416                                 info->mon_data.hold_reason &= ~NPPI_NOTIFY_XOFFXENT;
1417                         else
1418                                 info->mon_data.hold_reason |= NPPI_NOTIFY_XOFFXENT;
1419
1420                         if (info->tty->hw_stopped)
1421                                 info->mon_data.hold_reason |= NPPI_NOTIFY_CTSHOLD;
1422                         else
1423                                 info->mon_data.hold_reason &= ~NPPI_NOTIFY_CTSHOLD;
1424
1425
1426                         if (copy_to_user((struct mxser_mon *) arg, &(info->mon_data), sizeof(struct mxser_mon)))
1427                                 return -EFAULT;
1428
1429                         return 0;
1430
1431                 }
1432
1433         case MOXA_ASPP_LSTATUS:{
1434                         if (copy_to_user((struct mxser_mon *) arg, &(info->err_shadow), sizeof(unsigned char)))
1435                                 return -EFAULT;
1436
1437                         info->err_shadow = 0;
1438                         return 0;
1439
1440                 }
1441         case MOXA_SET_BAUD_METHOD:{
1442                         int method;
1443                         if (get_user(method, (int *) arg))
1444                                 return -EFAULT;
1445                         mxser_set_baud_method[info->port] = method;
1446                         if (copy_to_user((int *) arg, &method, sizeof(int)))
1447                                 return -EFAULT;
1448
1449                         return 0;
1450                 }
1451         default:
1452                 return -ENOIOCTLCMD;
1453         }
1454         return 0;
1455 }
1456
1457 static int mxser_ioctl_special(unsigned int cmd, unsigned long arg)
1458 {
1459         int i, result, status;
1460
1461         switch (cmd) {
1462         case MOXA_GET_CONF:
1463                 if (copy_to_user((struct mxser_hwconf *) arg, mxsercfg, sizeof(struct mxser_hwconf) * 4))
1464                         return -EFAULT;
1465                 return 0;
1466         case MOXA_GET_MAJOR:
1467                 if (copy_to_user((int *) arg, &ttymajor, sizeof(int)))
1468                         return -EFAULT;
1469                 return 0;
1470
1471         case MOXA_GET_CUMAJOR:
1472                 if (copy_to_user((int *) arg, &calloutmajor, sizeof(int)))
1473                         return -EFAULT;
1474                 return 0;
1475
1476         case MOXA_CHKPORTENABLE:
1477                 result = 0;
1478                 for (i = 0; i < MXSER_PORTS; i++) {
1479                         if (mxvar_table[i].base)
1480                                 result |= (1 << i);
1481                 }
1482                 return put_user(result, (unsigned long *) arg);
1483         case MOXA_GETDATACOUNT:
1484                 if (copy_to_user((struct mxser_log *) arg, &mxvar_log, sizeof(mxvar_log)))
1485                         return -EFAULT;
1486                 return (0);
1487         case MOXA_GETMSTATUS:
1488                 for (i = 0; i < MXSER_PORTS; i++) {
1489                         GMStatus[i].ri = 0;
1490                         if (!mxvar_table[i].base) {
1491                                 GMStatus[i].dcd = 0;
1492                                 GMStatus[i].dsr = 0;
1493                                 GMStatus[i].cts = 0;
1494                                 continue;
1495                         }
1496
1497                         if (!mxvar_table[i].tty || !mxvar_table[i].tty->termios)
1498                                 GMStatus[i].cflag = mxvar_table[i].normal_termios.c_cflag;
1499                         else
1500                                 GMStatus[i].cflag = mxvar_table[i].tty->termios->c_cflag;
1501
1502                         status = inb(mxvar_table[i].base + UART_MSR);
1503                         if (status & 0x80 /*UART_MSR_DCD */ )
1504                                 GMStatus[i].dcd = 1;
1505                         else
1506                                 GMStatus[i].dcd = 0;
1507
1508                         if (status & 0x20 /*UART_MSR_DSR */ )
1509                                 GMStatus[i].dsr = 1;
1510                         else
1511                                 GMStatus[i].dsr = 0;
1512
1513
1514                         if (status & 0x10 /*UART_MSR_CTS */ )
1515                                 GMStatus[i].cts = 1;
1516                         else
1517                                 GMStatus[i].cts = 0;
1518                 }
1519                 if (copy_to_user((struct mxser_mstatus *) arg, GMStatus, sizeof(struct mxser_mstatus) * MXSER_PORTS))
1520                         return -EFAULT;
1521                 return 0;
1522         case MOXA_ASPP_MON_EXT:{
1523                         int status;
1524                         int opmode, p;
1525                         int shiftbit;
1526                         unsigned cflag, iflag;
1527
1528                         for (i = 0; i < MXSER_PORTS; i++) {
1529
1530                                 if (!mxvar_table[i].base)
1531                                         continue;
1532
1533                                 status = mxser_get_msr(mxvar_table[i].base, 0, i, &(mxvar_table[i]));
1534 //                      mxser_check_modem_status(&mxvar_table[i], status);
1535                                 if (status & UART_MSR_TERI)
1536                                         mxvar_table[i].icount.rng++;
1537                                 if (status & UART_MSR_DDSR)
1538                                         mxvar_table[i].icount.dsr++;
1539                                 if (status & UART_MSR_DDCD)
1540                                         mxvar_table[i].icount.dcd++;
1541                                 if (status & UART_MSR_DCTS)
1542                                         mxvar_table[i].icount.cts++;
1543
1544                                 mxvar_table[i].mon_data.modem_status = status;
1545                                 mon_data_ext.rx_cnt[i] = mxvar_table[i].mon_data.rxcnt;
1546                                 mon_data_ext.tx_cnt[i] = mxvar_table[i].mon_data.txcnt;
1547                                 mon_data_ext.up_rxcnt[i] = mxvar_table[i].mon_data.up_rxcnt;
1548                                 mon_data_ext.up_txcnt[i] = mxvar_table[i].mon_data.up_txcnt;
1549                                 mon_data_ext.modem_status[i] = mxvar_table[i].mon_data.modem_status;
1550                                 mon_data_ext.baudrate[i] = mxvar_table[i].realbaud;
1551
1552                                 if (!mxvar_table[i].tty || !mxvar_table[i].tty->termios) {
1553                                         cflag = mxvar_table[i].normal_termios.c_cflag;
1554                                         iflag = mxvar_table[i].normal_termios.c_iflag;
1555                                 } else {
1556                                         cflag = mxvar_table[i].tty->termios->c_cflag;
1557                                         iflag = mxvar_table[i].tty->termios->c_iflag;
1558                                 }
1559
1560                                 mon_data_ext.databits[i] = cflag & CSIZE;
1561
1562                                 mon_data_ext.stopbits[i] = cflag & CSTOPB;
1563
1564                                 mon_data_ext.parity[i] = cflag & (PARENB | PARODD | CMSPAR);
1565
1566                                 mon_data_ext.flowctrl[i] = 0x00;
1567
1568                                 if (cflag & CRTSCTS)
1569                                         mon_data_ext.flowctrl[i] |= 0x03;
1570
1571                                 if (iflag & (IXON | IXOFF))
1572                                         mon_data_ext.flowctrl[i] |= 0x0C;
1573
1574                                 if (mxvar_table[i].type == PORT_16550A)
1575                                         mon_data_ext.fifo[i] = 1;
1576                                 else
1577                                         mon_data_ext.fifo[i] = 0;
1578
1579                                 p = i % 4;
1580                                 shiftbit = p * 2;
1581                                 opmode = inb(mxvar_table[i].opmode_ioaddr) >> shiftbit;
1582                                 opmode &= OP_MODE_MASK;
1583
1584                                 mon_data_ext.iftype[i] = opmode;
1585
1586                         }
1587                         if (copy_to_user((struct mxser_mon_ext *) arg, &mon_data_ext, sizeof(struct mxser_mon_ext)))
1588                                 return -EFAULT;
1589
1590                         return 0;
1591
1592                 }
1593         default:
1594                 return -ENOIOCTLCMD;
1595         }
1596         return 0;
1597 }
1598
1599
1600 static void mxser_stoprx(struct tty_struct *tty)
1601 {
1602         struct mxser_struct *info = (struct mxser_struct *) tty->driver_data;
1603         //unsigned long flags;
1604
1605
1606         info->ldisc_stop_rx = 1;
1607         if (I_IXOFF(tty)) {
1608
1609                 //MX_LOCK(&info->slock);
1610                 // following add by Victor Yu. 09-02-2002
1611                 if (info->IsMoxaMustChipFlag) {
1612                         info->IER &= ~MOXA_MUST_RECV_ISR;
1613                         outb(info->IER, info->base + UART_IER);
1614                 } else {
1615                         // above add by Victor Yu. 09-02-2002
1616
1617                         info->x_char = STOP_CHAR(tty);
1618                         //      outb(info->IER, 0); // mask by Victor Yu. 09-02-2002
1619                         outb(0, info->base + UART_IER);
1620                         info->IER |= UART_IER_THRI;
1621                         outb(info->IER, info->base + UART_IER); /* force Tx interrupt */
1622                 }               // add by Victor Yu. 09-02-2002
1623                 //MX_UNLOCK(&info->slock);
1624         }
1625
1626         if (info->tty->termios->c_cflag & CRTSCTS) {
1627                 //MX_LOCK(&info->slock);
1628                 info->MCR &= ~UART_MCR_RTS;
1629                 outb(info->MCR, info->base + UART_MCR);
1630                 //MX_UNLOCK(&info->slock);
1631         }
1632 }
1633
1634 static void mxser_startrx(struct tty_struct *tty)
1635 {
1636         struct mxser_struct *info = (struct mxser_struct *) tty->driver_data;
1637         //unsigned long flags;
1638
1639         info->ldisc_stop_rx = 0;
1640         if (I_IXOFF(tty)) {
1641                 if (info->x_char)
1642                         info->x_char = 0;
1643                 else {
1644                         //MX_LOCK(&info->slock);
1645
1646                         // following add by Victor Yu. 09-02-2002
1647                         if (info->IsMoxaMustChipFlag) {
1648                                 info->IER |= MOXA_MUST_RECV_ISR;
1649                                 outb(info->IER, info->base + UART_IER);
1650                         } else {
1651                                 // above add by Victor Yu. 09-02-2002
1652
1653                                 info->x_char = START_CHAR(tty);
1654                                 //          outb(info->IER, 0); // mask by Victor Yu. 09-02-2002
1655                                 outb(0, info->base + UART_IER); // add by Victor Yu. 09-02-2002
1656                                 info->IER |= UART_IER_THRI;     /* force Tx interrupt */
1657                                 outb(info->IER, info->base + UART_IER);
1658                         }       // add by Victor Yu. 09-02-2002
1659                         //MX_UNLOCK(&info->slock);
1660                 }
1661         }
1662
1663         if (info->tty->termios->c_cflag & CRTSCTS) {
1664                 //MX_LOCK(&info->slock);
1665                 info->MCR |= UART_MCR_RTS;
1666                 outb(info->MCR, info->base + UART_MCR);
1667                 //MX_UNLOCK(&info->slock);
1668         }
1669 }
1670
1671 /*
1672  * This routine is called by the upper-layer tty layer to signal that
1673  * incoming characters should be throttled.
1674  */
1675 static void mxser_throttle(struct tty_struct *tty)
1676 {
1677         //struct mxser_struct *info = (struct mxser_struct *)tty->driver_data;
1678         //unsigned long flags;
1679         //MX_LOCK(&info->slock);
1680         mxser_stoprx(tty);
1681         //MX_UNLOCK(&info->slock);
1682 }
1683
1684 static void mxser_unthrottle(struct tty_struct *tty)
1685 {
1686         //struct mxser_struct *info = (struct mxser_struct *)tty->driver_data;
1687         //unsigned long flags;
1688         //MX_LOCK(&info->slock);
1689         mxser_startrx(tty);
1690         //MX_UNLOCK(&info->slock);
1691 }
1692
1693 static void mxser_set_termios(struct tty_struct *tty, struct termios *old_termios)
1694 {
1695         struct mxser_struct *info = (struct mxser_struct *) tty->driver_data;
1696         unsigned long flags;
1697
1698         if ((tty->termios->c_cflag != old_termios->c_cflag) || (RELEVANT_IFLAG(tty->termios->c_iflag) != RELEVANT_IFLAG(old_termios->c_iflag))) {
1699
1700                 mxser_change_speed(info, old_termios);
1701
1702                 if ((old_termios->c_cflag & CRTSCTS) && !(tty->termios->c_cflag & CRTSCTS)) {
1703                         tty->hw_stopped = 0;
1704                         mxser_start(tty);
1705                 }
1706         }
1707
1708 /* Handle sw stopped */
1709         if ((old_termios->c_iflag & IXON) && !(tty->termios->c_iflag & IXON)) {
1710                 tty->stopped = 0;
1711
1712                 // following add by Victor Yu. 09-02-2002
1713                 if (info->IsMoxaMustChipFlag) {
1714                         spin_lock_irqsave(&info->slock, flags);
1715                         DISABLE_MOXA_MUST_RX_SOFTWARE_FLOW_CONTROL(info->base);
1716                         spin_unlock_irqrestore(&info->slock, flags);
1717                 }
1718                 // above add by Victor Yu. 09-02-2002
1719
1720                 mxser_start(tty);
1721         }
1722 }
1723
1724 /*
1725  * mxser_stop() and mxser_start()
1726  *
1727  * This routines are called before setting or resetting tty->stopped.
1728  * They enable or disable transmitter interrupts, as necessary.
1729  */
1730 static void mxser_stop(struct tty_struct *tty)
1731 {
1732         struct mxser_struct *info = (struct mxser_struct *) tty->driver_data;
1733         unsigned long flags;
1734
1735         spin_lock_irqsave(&info->slock, flags);
1736         if (info->IER & UART_IER_THRI) {
1737                 info->IER &= ~UART_IER_THRI;
1738                 outb(info->IER, info->base + UART_IER);
1739         }
1740         spin_unlock_irqrestore(&info->slock, flags);
1741 }
1742
1743 static void mxser_start(struct tty_struct *tty)
1744 {
1745         struct mxser_struct *info = (struct mxser_struct *) tty->driver_data;
1746         unsigned long flags;
1747
1748         spin_lock_irqsave(&info->slock, flags);
1749         if (info->xmit_cnt && info->xmit_buf && !(info->IER & UART_IER_THRI)) {
1750                 info->IER |= UART_IER_THRI;
1751                 outb(info->IER, info->base + UART_IER);
1752         }
1753         spin_unlock_irqrestore(&info->slock, flags);
1754 }
1755
1756 /*
1757  * mxser_wait_until_sent() --- wait until the transmitter is empty
1758  */
1759 static void mxser_wait_until_sent(struct tty_struct *tty, int timeout)
1760 {
1761         struct mxser_struct *info = (struct mxser_struct *) tty->driver_data;
1762         unsigned long orig_jiffies, char_time;
1763         int lsr;
1764
1765         if (info->type == PORT_UNKNOWN)
1766                 return;
1767
1768         if (info->xmit_fifo_size == 0)
1769                 return;         /* Just in case.... */
1770
1771         orig_jiffies = jiffies;
1772         /*
1773          * Set the check interval to be 1/5 of the estimated time to
1774          * send a single character, and make it at least 1.  The check
1775          * interval should also be less than the timeout.
1776          *
1777          * Note: we have to use pretty tight timings here to satisfy
1778          * the NIST-PCTS.
1779          */
1780         char_time = (info->timeout - HZ / 50) / info->xmit_fifo_size;
1781         char_time = char_time / 5;
1782         if (char_time == 0)
1783                 char_time = 1;
1784         if (timeout && timeout < char_time)
1785                 char_time = timeout;
1786         /*
1787          * If the transmitter hasn't cleared in twice the approximate
1788          * amount of time to send the entire FIFO, it probably won't
1789          * ever clear.  This assumes the UART isn't doing flow
1790          * control, which is currently the case.  Hence, if it ever
1791          * takes longer than info->timeout, this is probably due to a
1792          * UART bug of some kind.  So, we clamp the timeout parameter at
1793          * 2*info->timeout.
1794          */
1795         if (!timeout || timeout > 2 * info->timeout)
1796                 timeout = 2 * info->timeout;
1797 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1798         printk(KERN_DEBUG "In rs_wait_until_sent(%d) check=%lu...", timeout, char_time);
1799         printk("jiff=%lu...", jiffies);
1800 #endif
1801         while (!((lsr = inb(info->base + UART_LSR)) & UART_LSR_TEMT)) {
1802 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1803                 printk("lsr = %d (jiff=%lu)...", lsr, jiffies);
1804 #endif
1805                 set_current_state(TASK_INTERRUPTIBLE);
1806                 schedule_timeout(char_time);
1807                 if (signal_pending(current))
1808                         break;
1809                 if (timeout && time_after(jiffies, orig_jiffies + timeout))
1810                         break;
1811         }
1812         set_current_state(TASK_RUNNING);
1813
1814 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1815         printk("lsr = %d (jiff=%lu)...done\n", lsr, jiffies);
1816 #endif
1817 }
1818
1819
1820 /*
1821  * This routine is called by tty_hangup() when a hangup is signaled.
1822  */
1823 void mxser_hangup(struct tty_struct *tty)
1824 {
1825         struct mxser_struct *info = (struct mxser_struct *) tty->driver_data;
1826
1827         mxser_flush_buffer(tty);
1828         mxser_shutdown(info);
1829         info->event = 0;
1830         info->count = 0;
1831         info->flags &= ~ASYNC_NORMAL_ACTIVE;
1832         info->tty = 0;
1833         wake_up_interruptible(&info->open_wait);
1834 }
1835
1836
1837 // added by James 03-12-2004.
1838 /*
1839  * mxser_rs_break() --- routine which turns the break handling on or off
1840  */
1841 static void mxser_rs_break(struct tty_struct *tty, int break_state)
1842 {
1843         struct mxser_struct *info = (struct mxser_struct *) tty->driver_data;
1844         unsigned long flags;
1845
1846         spin_lock_irqsave(&info->slock, flags);
1847         if (break_state == -1)
1848                 outb(inb(info->base + UART_LCR) | UART_LCR_SBC, info->base + UART_LCR);
1849         else
1850                 outb(inb(info->base + UART_LCR) & ~UART_LCR_SBC, info->base + UART_LCR);
1851         spin_unlock_irqrestore(&info->slock, flags);
1852 }
1853
1854 // (above) added by James.
1855
1856
1857 /*
1858  * This is the serial driver's generic interrupt routine
1859  */
1860 static irqreturn_t mxser_interrupt(int irq, void *dev_id, struct pt_regs *regs)
1861 {
1862         int status, iir, i;
1863         struct mxser_struct *info;
1864         struct mxser_struct *port;
1865         int max, irqbits, bits, msr;
1866         int pass_counter = 0;
1867         int handled = IRQ_NONE;
1868
1869         port = 0;
1870         //spin_lock(&gm_lock);
1871
1872         for (i = 0; i < MXSER_BOARDS; i++) {
1873                 if (dev_id == &(mxvar_table[i * MXSER_PORTS_PER_BOARD])) {
1874                         port = dev_id;
1875                         break;
1876                 }
1877         }
1878
1879         if (i == MXSER_BOARDS) {
1880                 goto irq_stop;
1881         }
1882         if (port == 0) {
1883                 goto irq_stop;
1884         }
1885         max = mxser_numports[mxsercfg[i].board_type - 1];
1886         while (1) {
1887                 irqbits = inb(port->vector) & port->vectormask;
1888                 if (irqbits == port->vectormask) {
1889                         break;
1890                 }
1891
1892                 handled = IRQ_HANDLED;
1893                 for (i = 0, bits = 1; i < max; i++, irqbits |= bits, bits <<= 1) {
1894                         if (irqbits == port->vectormask) {
1895                                 break;
1896                         }
1897                         if (bits & irqbits)
1898                                 continue;
1899                         info = port + i;
1900
1901                         // following add by Victor Yu. 09-13-2002
1902                         iir = inb(info->base + UART_IIR);
1903                         if (iir & UART_IIR_NO_INT)
1904                                 continue;
1905                         iir &= MOXA_MUST_IIR_MASK;
1906                         if (!info->tty) {
1907                                 status = inb(info->base + UART_LSR);
1908                                 outb(0x27, info->base + UART_FCR);
1909                                 inb(info->base + UART_MSR);
1910                                 continue;
1911                         }
1912                         // above add by Victor Yu. 09-13-2002
1913                         /*
1914                            if ( info->tty->flip.count < TTY_FLIPBUF_SIZE/4 ){
1915                            info->IER |= MOXA_MUST_RECV_ISR;
1916                            outb(info->IER, info->base + UART_IER);
1917                            }
1918                          */
1919
1920
1921                         /* mask by Victor Yu. 09-13-2002
1922                            if ( !info->tty ||
1923                            (inb(info->base + UART_IIR) & UART_IIR_NO_INT) )
1924                            continue;
1925                          */
1926                         /* mask by Victor Yu. 09-02-2002
1927                            status = inb(info->base + UART_LSR) & info->read_status_mask;
1928                          */
1929
1930                         // following add by Victor Yu. 09-02-2002
1931                         status = inb(info->base + UART_LSR);
1932
1933                         if (status & UART_LSR_PE) {
1934                                 info->err_shadow |= NPPI_NOTIFY_PARITY;
1935                         }
1936                         if (status & UART_LSR_FE) {
1937                                 info->err_shadow |= NPPI_NOTIFY_FRAMING;
1938                         }
1939                         if (status & UART_LSR_OE) {
1940                                 info->err_shadow |= NPPI_NOTIFY_HW_OVERRUN;
1941                         }
1942                         if (status & UART_LSR_BI)
1943                                 info->err_shadow |= NPPI_NOTIFY_BREAK;
1944
1945                         if (info->IsMoxaMustChipFlag) {
1946                                 /*
1947                                    if ( (status & 0x02) && !(status & 0x01) ) {
1948                                    outb(info->base+UART_FCR,  0x23);
1949                                    continue;
1950                                    }
1951                                  */
1952                                 if (iir == MOXA_MUST_IIR_GDA || iir == MOXA_MUST_IIR_RDA || iir == MOXA_MUST_IIR_RTO || iir == MOXA_MUST_IIR_LSR)
1953                                         mxser_receive_chars(info, &status);
1954
1955                         } else {
1956                                 // above add by Victor Yu. 09-02-2002
1957
1958                                 status &= info->read_status_mask;
1959                                 if (status & UART_LSR_DR)
1960                                         mxser_receive_chars(info, &status);
1961                         }
1962                         msr = inb(info->base + UART_MSR);
1963                         if (msr & UART_MSR_ANY_DELTA) {
1964                                 mxser_check_modem_status(info, msr);
1965                         }
1966                         // following add by Victor Yu. 09-13-2002
1967                         if (info->IsMoxaMustChipFlag) {
1968                                 if ((iir == 0x02) && (status & UART_LSR_THRE)) {
1969                                         mxser_transmit_chars(info);
1970                                 }
1971                         } else {
1972                                 // above add by Victor Yu. 09-13-2002
1973
1974                                 if (status & UART_LSR_THRE) {
1975 /* 8-2-99 by William
1976                             if ( info->x_char || (info->xmit_cnt > 0) )
1977 */
1978                                         mxser_transmit_chars(info);
1979                                 }
1980                         }
1981                 }
1982                 if (pass_counter++ > MXSER_ISR_PASS_LIMIT) {
1983                         break;  /* Prevent infinite loops */
1984                 }
1985         }
1986
1987       irq_stop:
1988         //spin_unlock(&gm_lock);
1989         return handled;
1990 }
1991
1992 static void mxser_receive_chars(struct mxser_struct *info, int *status)
1993 {
1994         struct tty_struct *tty = info->tty;
1995         unsigned char ch, gdl;
1996         int ignored = 0;
1997         int cnt = 0;
1998         unsigned char *cp;
1999         char *fp;
2000         int count;
2001         int recv_room;
2002         int max = 256;
2003         unsigned long flags;
2004
2005         spin_lock_irqsave(&info->slock, flags);
2006
2007         recv_room = tty->ldisc.receive_room(tty);
2008         if ((recv_room == 0) && (!info->ldisc_stop_rx)) {
2009                 //mxser_throttle(tty);
2010                 mxser_stoprx(tty);
2011                 //return;
2012         }
2013
2014         cp = tty->flip.char_buf;
2015         fp = tty->flip.flag_buf;
2016         count = 0;
2017
2018         // following add by Victor Yu. 09-02-2002
2019         if (info->IsMoxaMustChipFlag != MOXA_OTHER_UART) {
2020
2021                 if (*status & UART_LSR_SPECIAL) {
2022                         goto intr_old;
2023                 }
2024                 // following add by Victor Yu. 02-11-2004
2025                 if (info->IsMoxaMustChipFlag == MOXA_MUST_MU860_HWID && (*status & MOXA_MUST_LSR_RERR))
2026                         goto intr_old;
2027                 // above add by Victor Yu. 02-14-2004
2028                 if (*status & MOXA_MUST_LSR_RERR)
2029                         goto intr_old;
2030
2031                 gdl = inb(info->base + MOXA_MUST_GDL_REGISTER);
2032
2033                 if (info->IsMoxaMustChipFlag == MOXA_MUST_MU150_HWID)   // add by Victor Yu. 02-11-2004
2034                         gdl &= MOXA_MUST_GDL_MASK;
2035                 if (gdl >= recv_room) {
2036                         if (!info->ldisc_stop_rx) {
2037                                 //mxser_throttle(tty);
2038                                 mxser_stoprx(tty);
2039                         }
2040                         //return;
2041                 }
2042                 while (gdl--) {
2043                         ch = inb(info->base + UART_RX);
2044                         count++;
2045                         *cp++ = ch;
2046                         *fp++ = 0;
2047                         cnt++;
2048                         /*
2049                            if((count>=HI_WATER) && (info->stop_rx==0)){
2050                            mxser_stoprx(tty);
2051                            info->stop_rx=1;
2052                            break;
2053                            } */
2054                 }
2055                 goto end_intr;
2056         }
2057 intr_old:
2058         // above add by Victor Yu. 09-02-2002
2059
2060         do {
2061                 if (max-- < 0)
2062                         break;
2063                 /*
2064                    if((count>=HI_WATER) && (info->stop_rx==0)){
2065                    mxser_stoprx(tty);
2066                    info->stop_rx=1;
2067                    break;
2068                    }
2069                  */
2070
2071                 ch = inb(info->base + UART_RX);
2072                 // following add by Victor Yu. 09-02-2002
2073                 if (info->IsMoxaMustChipFlag && (*status & UART_LSR_OE) /*&& !(*status&UART_LSR_DR) */ )
2074                         outb(0x23, info->base + UART_FCR);
2075                 *status &= info->read_status_mask;
2076                 // above add by Victor Yu. 09-02-2002
2077                 if (*status & info->ignore_status_mask) {
2078                         if (++ignored > 100)
2079                                 break;
2080                 } else {
2081                         count++;
2082                         if (*status & UART_LSR_SPECIAL) {
2083                                 if (*status & UART_LSR_BI) {
2084                                         *fp++ = TTY_BREAK;
2085 /* added by casper 1/11/2000 */
2086                                         info->icount.brk++;
2087
2088 /* */
2089                                         if (info->flags & ASYNC_SAK)
2090                                                 do_SAK(tty);
2091                                 } else if (*status & UART_LSR_PE) {
2092                                         *fp++ = TTY_PARITY;
2093 /* added by casper 1/11/2000 */
2094                                         info->icount.parity++;
2095 /* */
2096                                 } else if (*status & UART_LSR_FE) {
2097                                         *fp++ = TTY_FRAME;
2098 /* added by casper 1/11/2000 */
2099                                         info->icount.frame++;
2100 /* */
2101                                 } else if (*status & UART_LSR_OE) {
2102                                         *fp++ = TTY_OVERRUN;
2103 /* added by casper 1/11/2000 */
2104                                         info->icount.overrun++;
2105 /* */
2106                                 } else
2107                                         *fp++ = 0;
2108                         } else
2109                                 *fp++ = 0;
2110                         *cp++ = ch;
2111                         cnt++;
2112                         if (cnt >= recv_room) {
2113                                 if (!info->ldisc_stop_rx) {
2114                                         //mxser_throttle(tty);
2115                                         mxser_stoprx(tty);
2116                                 }
2117                                 break;
2118                         }
2119
2120                 }
2121
2122                 // following add by Victor Yu. 09-02-2002
2123                 if (info->IsMoxaMustChipFlag)
2124                         break;
2125                 // above add by Victor Yu. 09-02-2002
2126
2127                 /* mask by Victor Yu. 09-02-2002
2128                  *status = inb(info->base + UART_LSR) & info->read_status_mask;
2129                  */
2130                 // following add by Victor Yu. 09-02-2002
2131                 *status = inb(info->base + UART_LSR);
2132                 // above add by Victor Yu. 09-02-2002
2133         } while (*status & UART_LSR_DR);
2134
2135       end_intr:         // add by Victor Yu. 09-02-2002
2136
2137         mxvar_log.rxcnt[info->port] += cnt;
2138         info->mon_data.rxcnt += cnt;
2139         info->mon_data.up_rxcnt += cnt;
2140
2141         tty->ldisc.receive_buf(tty, tty->flip.char_buf, tty->flip.flag_buf, count);
2142         spin_unlock_irqrestore(&info->slock, flags);
2143
2144 }
2145
2146 static void mxser_transmit_chars(struct mxser_struct *info)
2147 {
2148         int count, cnt;
2149         unsigned long flags;
2150
2151         spin_lock_irqsave(&info->slock, flags);
2152
2153         if (info->x_char) {
2154                 outb(info->x_char, info->base + UART_TX);
2155                 info->x_char = 0;
2156                 mxvar_log.txcnt[info->port]++;
2157                 info->mon_data.txcnt++;
2158                 info->mon_data.up_txcnt++;
2159
2160 /* added by casper 1/11/2000 */
2161                 info->icount.tx++;
2162 /* */
2163                 spin_unlock_irqrestore(&info->slock, flags);
2164                 return;
2165         }
2166
2167         if (info->xmit_buf == 0) {
2168                 spin_unlock_irqrestore(&info->slock, flags);
2169                 return;
2170         }
2171
2172         if ((info->xmit_cnt <= 0) || info->tty->stopped || (info->tty->hw_stopped && (info->type != PORT_16550A) && (!info->IsMoxaMustChipFlag))) {
2173                 info->IER &= ~UART_IER_THRI;
2174                 outb(info->IER, info->base + UART_IER);
2175                 spin_unlock_irqrestore(&info->slock, flags);
2176                 return;
2177         }
2178
2179         cnt = info->xmit_cnt;
2180         count = info->xmit_fifo_size;
2181         do {
2182                 outb(info->xmit_buf[info->xmit_tail++], info->base + UART_TX);
2183                 info->xmit_tail = info->xmit_tail & (SERIAL_XMIT_SIZE - 1);
2184                 if (--info->xmit_cnt <= 0)
2185                         break;
2186         } while (--count > 0);
2187         mxvar_log.txcnt[info->port] += (cnt - info->xmit_cnt);
2188
2189 // added by James 03-12-2004.
2190         info->mon_data.txcnt += (cnt - info->xmit_cnt);
2191         info->mon_data.up_txcnt += (cnt - info->xmit_cnt);
2192 // (above) added by James.
2193
2194 /* added by casper 1/11/2000 */
2195         info->icount.tx += (cnt - info->xmit_cnt);
2196 /* */
2197
2198         if (info->xmit_cnt < WAKEUP_CHARS) {
2199                 set_bit(MXSER_EVENT_TXLOW, &info->event);
2200                 schedule_work(&info->tqueue);
2201         }
2202         if (info->xmit_cnt <= 0) {
2203                 info->IER &= ~UART_IER_THRI;
2204                 outb(info->IER, info->base + UART_IER);
2205         }
2206         spin_unlock_irqrestore(&info->slock, flags);
2207 }
2208
2209 static void mxser_check_modem_status(struct mxser_struct *info, int status)
2210 {
2211         /* update input line counters */
2212         if (status & UART_MSR_TERI)
2213                 info->icount.rng++;
2214         if (status & UART_MSR_DDSR)
2215                 info->icount.dsr++;
2216         if (status & UART_MSR_DDCD)
2217                 info->icount.dcd++;
2218         if (status & UART_MSR_DCTS)
2219                 info->icount.cts++;
2220         info->mon_data.modem_status = status;
2221         wake_up_interruptible(&info->delta_msr_wait);
2222
2223
2224         if ((info->flags & ASYNC_CHECK_CD) && (status & UART_MSR_DDCD)) {
2225                 if (status & UART_MSR_DCD)
2226                         wake_up_interruptible(&info->open_wait);
2227                 schedule_work(&info->tqueue);
2228         }
2229
2230         if (info->flags & ASYNC_CTS_FLOW) {
2231                 if (info->tty->hw_stopped) {
2232                         if (status & UART_MSR_CTS) {
2233                                 info->tty->hw_stopped = 0;
2234
2235                                 if ((info->type != PORT_16550A) && (!info->IsMoxaMustChipFlag)) {
2236                                         info->IER |= UART_IER_THRI;
2237                                         outb(info->IER, info->base + UART_IER);
2238                                 }
2239                                 set_bit(MXSER_EVENT_TXLOW, &info->event);
2240                                 schedule_work(&info->tqueue);                   }
2241                 } else {
2242                         if (!(status & UART_MSR_CTS)) {
2243                                 info->tty->hw_stopped = 1;
2244                                 if ((info->type != PORT_16550A) && (!info->IsMoxaMustChipFlag)) {
2245                                         info->IER &= ~UART_IER_THRI;
2246                                         outb(info->IER, info->base + UART_IER);
2247                                 }
2248                         }
2249                 }
2250         }
2251 }
2252
2253 static int mxser_block_til_ready(struct tty_struct *tty, struct file *filp, struct mxser_struct *info)
2254 {
2255         DECLARE_WAITQUEUE(wait, current);
2256         int retval;
2257         int do_clocal = 0;
2258         unsigned long flags;
2259
2260         /*
2261          * If non-blocking mode is set, or the port is not enabled,
2262          * then make the check up front and then exit.
2263          */
2264         if ((filp->f_flags & O_NONBLOCK) || (tty->flags & (1 << TTY_IO_ERROR))) {
2265                 info->flags |= ASYNC_NORMAL_ACTIVE;
2266                 return (0);
2267         }
2268
2269         if (tty->termios->c_cflag & CLOCAL)
2270                 do_clocal = 1;
2271
2272         /*
2273          * Block waiting for the carrier detect and the line to become
2274          * free (i.e., not in use by the callout).  While we are in
2275          * this loop, info->count is dropped by one, so that
2276          * mxser_close() knows when to free things.  We restore it upon
2277          * exit, either normal or abnormal.
2278          */
2279         retval = 0;
2280         add_wait_queue(&info->open_wait, &wait);
2281
2282         spin_lock_irqsave(&info->slock, flags);
2283         if (!tty_hung_up_p(filp))
2284                 info->count--;
2285         spin_unlock_irqrestore(&info->slock, flags);
2286         info->blocked_open++;
2287         while (1) {
2288                 spin_lock_irqsave(&info->slock, flags);
2289                 outb(inb(info->base + UART_MCR) | UART_MCR_DTR | UART_MCR_RTS, info->base + UART_MCR);
2290                 spin_unlock_irqrestore(&info->slock, flags);
2291                 set_current_state(TASK_INTERRUPTIBLE);
2292                 if (tty_hung_up_p(filp) || !(info->flags & ASYNC_INITIALIZED)) {
2293                         if (info->flags & ASYNC_HUP_NOTIFY)
2294                                 retval = -EAGAIN;
2295                         else
2296                                 retval = -ERESTARTSYS;
2297                         break;
2298                 }
2299                 if (!(info->flags & ASYNC_CLOSING) && (do_clocal || (inb(info->base + UART_MSR) & UART_MSR_DCD)))
2300                         break;
2301                 if (signal_pending(current)) {
2302                         retval = -ERESTARTSYS;
2303                         break;
2304                 }
2305                 schedule();
2306         }
2307         set_current_state(TASK_RUNNING);
2308         remove_wait_queue(&info->open_wait, &wait);
2309         if (!tty_hung_up_p(filp))
2310                 info->count++;
2311         info->blocked_open--;
2312         if (retval)
2313                 return (retval);
2314         info->flags |= ASYNC_NORMAL_ACTIVE;
2315         return (0);
2316 }
2317
2318 static int mxser_startup(struct mxser_struct *info)
2319 {
2320
2321         unsigned long page;
2322         unsigned long flags;
2323
2324         page = __get_free_page(GFP_KERNEL);
2325         if (!page)
2326                 return (-ENOMEM);
2327
2328         spin_lock_irqsave(&info->slock, flags);
2329
2330         if (info->flags & ASYNC_INITIALIZED) {
2331                 free_page(page);
2332                 spin_unlock_irqrestore(&info->slock, flags);
2333                 return (0);
2334         }
2335
2336         if (!info->base || !info->type) {
2337                 if (info->tty)
2338                         set_bit(TTY_IO_ERROR, &info->tty->flags);
2339                 free_page(page);
2340                 spin_unlock_irqrestore(&info->slock, flags);
2341                 return (0);
2342         }
2343         if (info->xmit_buf)
2344                 free_page(page);
2345         else
2346                 info->xmit_buf = (unsigned char *) page;
2347
2348         /*
2349          * Clear the FIFO buffers and disable them
2350          * (they will be reenabled in mxser_change_speed())
2351          */
2352         if (info->IsMoxaMustChipFlag)
2353                 outb((UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT | MOXA_MUST_FCR_GDA_MODE_ENABLE), info->base + UART_FCR);
2354         else
2355                 outb((UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT), info->base + UART_FCR);
2356
2357         /*
2358          * At this point there's no way the LSR could still be 0xFF;
2359          * if it is, then bail out, because there's likely no UART
2360          * here.
2361          */
2362         if (inb(info->base + UART_LSR) == 0xff) {
2363                 spin_unlock_irqrestore(&info->slock, flags);
2364                 if (capable(CAP_SYS_ADMIN)) {
2365                         if (info->tty)
2366                                 set_bit(TTY_IO_ERROR, &info->tty->flags);
2367                         return (0);
2368                 } else
2369                         return (-ENODEV);
2370         }
2371
2372         /*
2373          * Clear the interrupt registers.
2374          */
2375         (void) inb(info->base + UART_LSR);
2376         (void) inb(info->base + UART_RX);
2377         (void) inb(info->base + UART_IIR);
2378         (void) inb(info->base + UART_MSR);
2379
2380         /*
2381          * Now, initialize the UART
2382          */
2383         outb(UART_LCR_WLEN8, info->base + UART_LCR);    /* reset DLAB */
2384         info->MCR = UART_MCR_DTR | UART_MCR_RTS;
2385         outb(info->MCR, info->base + UART_MCR);
2386
2387         /*
2388          * Finally, enable interrupts
2389          */
2390         info->IER = UART_IER_MSI | UART_IER_RLSI | UART_IER_RDI;
2391 //      info->IER = UART_IER_RLSI | UART_IER_RDI;
2392
2393         // following add by Victor Yu. 08-30-2002
2394         if (info->IsMoxaMustChipFlag)
2395                 info->IER |= MOXA_MUST_IER_EGDAI;
2396         // above add by Victor Yu. 08-30-2002
2397         outb(info->IER, info->base + UART_IER); /* enable interrupts */
2398
2399         /*
2400          * And clear the interrupt registers again for luck.
2401          */
2402         (void) inb(info->base + UART_LSR);
2403         (void) inb(info->base + UART_RX);
2404         (void) inb(info->base + UART_IIR);
2405         (void) inb(info->base + UART_MSR);
2406
2407         if (info->tty)
2408                 clear_bit(TTY_IO_ERROR, &info->tty->flags);
2409         info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
2410
2411         /*
2412          * and set the speed of the serial port
2413          */
2414         spin_unlock_irqrestore(&info->slock, flags);
2415         mxser_change_speed(info, 0);
2416
2417         info->flags |= ASYNC_INITIALIZED;
2418         return (0);
2419 }
2420
2421 /*
2422  * This routine will shutdown a serial port; interrupts maybe disabled, and
2423  * DTR is dropped if the hangup on close termio flag is on.
2424  */
2425 static void mxser_shutdown(struct mxser_struct *info)
2426 {
2427         unsigned long flags;
2428
2429         if (!(info->flags & ASYNC_INITIALIZED))
2430                 return;
2431
2432         spin_lock_irqsave(&info->slock, flags);
2433
2434         /*
2435          * clear delta_msr_wait queue to avoid mem leaks: we may free the irq
2436          * here so the queue might never be waken up
2437          */
2438         wake_up_interruptible(&info->delta_msr_wait);
2439
2440         /*
2441          * Free the IRQ, if necessary
2442          */
2443         if (info->xmit_buf) {
2444                 free_page((unsigned long) info->xmit_buf);
2445                 info->xmit_buf = 0;
2446         }
2447
2448         info->IER = 0;
2449         outb(0x00, info->base + UART_IER);
2450
2451         if (!info->tty || (info->tty->termios->c_cflag & HUPCL))
2452                 info->MCR &= ~(UART_MCR_DTR | UART_MCR_RTS);
2453         outb(info->MCR, info->base + UART_MCR);
2454
2455         /* clear Rx/Tx FIFO's */
2456         // following add by Victor Yu. 08-30-2002
2457         if (info->IsMoxaMustChipFlag)
2458                 outb((UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT | MOXA_MUST_FCR_GDA_MODE_ENABLE), info->base + UART_FCR);
2459         else
2460                 // above add by Victor Yu. 08-30-2002
2461                 outb((UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT), info->base + UART_FCR);
2462
2463         /* read data port to reset things */
2464         (void) inb(info->base + UART_RX);
2465
2466         if (info->tty)
2467                 set_bit(TTY_IO_ERROR, &info->tty->flags);
2468
2469         info->flags &= ~ASYNC_INITIALIZED;
2470
2471         // following add by Victor Yu. 09-23-2002
2472         if (info->IsMoxaMustChipFlag) {
2473                 SET_MOXA_MUST_NO_SOFTWARE_FLOW_CONTROL(info->base);
2474         }
2475         // above add by Victor Yu. 09-23-2002
2476
2477         spin_unlock_irqrestore(&info->slock, flags);
2478 }
2479
2480 /*
2481  * This routine is called to set the UART divisor registers to match
2482  * the specified baud rate for a serial port.
2483  */
2484 static int mxser_change_speed(struct mxser_struct *info, struct termios *old_termios)
2485 {
2486         unsigned cflag, cval, fcr;
2487         int ret = 0;
2488         unsigned char status;
2489         long baud;
2490         unsigned long flags;
2491
2492
2493         if (!info->tty || !info->tty->termios)
2494                 return ret;
2495         cflag = info->tty->termios->c_cflag;
2496         if (!(info->base))
2497                 return ret;
2498
2499
2500 #ifndef B921600
2501 #define B921600 (B460800 +1)
2502 #endif
2503         if (mxser_set_baud_method[info->port] == 0) {
2504                 switch (cflag & (CBAUD | CBAUDEX)) {
2505                 case B921600:
2506                         baud = 921600;
2507                         break;
2508                 case B460800:
2509                         baud = 460800;
2510                         break;
2511                 case B230400:
2512                         baud = 230400;
2513                         break;
2514                 case B115200:
2515                         baud = 115200;
2516                         break;
2517                 case B57600:
2518                         baud = 57600;
2519                         break;
2520                 case B38400:
2521                         baud = 38400;
2522                         break;
2523                 case B19200:
2524                         baud = 19200;
2525                         break;
2526                 case B9600:
2527                         baud = 9600;
2528                         break;
2529                 case B4800:
2530                         baud = 4800;
2531                         break;
2532                 case B2400:
2533                         baud = 2400;
2534                         break;
2535                 case B1800:
2536                         baud = 1800;
2537                         break;
2538                 case B1200:
2539                         baud = 1200;
2540                         break;
2541                 case B600:
2542                         baud = 600;
2543                         break;
2544                 case B300:
2545                         baud = 300;
2546                         break;
2547                 case B200:
2548                         baud = 200;
2549                         break;
2550                 case B150:
2551                         baud = 150;
2552                         break;
2553                 case B134:
2554                         baud = 134;
2555                         break;
2556                 case B110:
2557                         baud = 110;
2558                         break;
2559                 case B75:
2560                         baud = 75;
2561                         break;
2562                 case B50:
2563                         baud = 50;
2564                         break;
2565                 default:
2566                         baud = 0;
2567                         break;
2568                 }
2569                 mxser_set_baud(info, baud);
2570         }
2571
2572         /* byte size and parity */
2573         switch (cflag & CSIZE) {
2574         case CS5:
2575                 cval = 0x00;
2576                 break;
2577         case CS6:
2578                 cval = 0x01;
2579                 break;
2580         case CS7:
2581                 cval = 0x02;
2582                 break;
2583         case CS8:
2584                 cval = 0x03;
2585                 break;
2586         default:
2587                 cval = 0x00;
2588                 break;          /* too keep GCC shut... */
2589         }
2590         if (cflag & CSTOPB)
2591                 cval |= 0x04;
2592         if (cflag & PARENB)
2593                 cval |= UART_LCR_PARITY;
2594 #ifndef CMSPAR
2595 #define CMSPAR 010000000000
2596 #endif
2597         if (!(cflag & PARODD)) {
2598                 cval |= UART_LCR_EPAR;
2599         }
2600         if (cflag & CMSPAR)
2601                 cval |= UART_LCR_SPAR;
2602
2603         if ((info->type == PORT_8250) || (info->type == PORT_16450)) {
2604                 if (info->IsMoxaMustChipFlag) {
2605                         fcr = UART_FCR_ENABLE_FIFO;
2606                         fcr |= MOXA_MUST_FCR_GDA_MODE_ENABLE;
2607                         SET_MOXA_MUST_FIFO_VALUE(info);
2608                 } else
2609                         fcr = 0;
2610         } else {
2611                 fcr = UART_FCR_ENABLE_FIFO;
2612                 // following add by Victor Yu. 08-30-2002
2613                 if (info->IsMoxaMustChipFlag) {
2614                         fcr |= MOXA_MUST_FCR_GDA_MODE_ENABLE;
2615                         SET_MOXA_MUST_FIFO_VALUE(info);
2616                 } else {
2617                         // above add by Victor Yu. 08-30-2002
2618
2619                         switch (info->rx_trigger) {
2620                         case 1:
2621                                 fcr |= UART_FCR_TRIGGER_1;
2622                                 break;
2623                         case 4:
2624                                 fcr |= UART_FCR_TRIGGER_4;
2625                                 break;
2626                         case 8:
2627                                 fcr |= UART_FCR_TRIGGER_8;
2628                                 break;
2629                         default:
2630                                 fcr |= UART_FCR_TRIGGER_14;
2631                                 break;
2632                         }
2633                 }
2634         }
2635
2636         /* CTS flow control flag and modem status interrupts */
2637         info->IER &= ~UART_IER_MSI;
2638         info->MCR &= ~UART_MCR_AFE;
2639         if (cflag & CRTSCTS) {
2640                 info->flags |= ASYNC_CTS_FLOW;
2641                 info->IER |= UART_IER_MSI;
2642                 if ((info->type == PORT_16550A) || (info->IsMoxaMustChipFlag)) {
2643                         info->MCR |= UART_MCR_AFE;
2644                         //status = mxser_get_msr(info->base, 0, info->port);
2645 /*      save_flags(flags);
2646         cli();
2647         status = inb(baseaddr + UART_MSR);
2648         restore_flags(flags);*/
2649                         //mxser_check_modem_status(info, status);
2650                 } else {
2651                         //status = mxser_get_msr(info->base, 0, info->port);
2652
2653                         //MX_LOCK(&info->slock);
2654                         status = inb(info->base + UART_MSR);
2655                         //MX_UNLOCK(&info->slock);
2656                         if (info->tty->hw_stopped) {
2657                                 if (status & UART_MSR_CTS) {
2658                                         info->tty->hw_stopped = 0;
2659                                         if ((info->type != PORT_16550A) && (!info->IsMoxaMustChipFlag)) {
2660                                                 info->IER |= UART_IER_THRI;
2661                                                 outb(info->IER, info->base + UART_IER);
2662                                         }
2663                                         set_bit(MXSER_EVENT_TXLOW, &info->event);
2664                                         schedule_work(&info->tqueue);                           }
2665                         } else {
2666                                 if (!(status & UART_MSR_CTS)) {
2667                                         info->tty->hw_stopped = 1;
2668                                         if ((info->type != PORT_16550A) && (!info->IsMoxaMustChipFlag)) {
2669                                                 info->IER &= ~UART_IER_THRI;
2670                                                 outb(info->IER, info->base + UART_IER);
2671                                         }
2672                                 }
2673                         }
2674                 }
2675         } else {
2676                 info->flags &= ~ASYNC_CTS_FLOW;
2677         }
2678         outb(info->MCR, info->base + UART_MCR);
2679         if (cflag & CLOCAL) {
2680                 info->flags &= ~ASYNC_CHECK_CD;
2681         } else {
2682                 info->flags |= ASYNC_CHECK_CD;
2683                 info->IER |= UART_IER_MSI;
2684         }
2685         outb(info->IER, info->base + UART_IER);
2686
2687         /*
2688          * Set up parity check flag
2689          */
2690         info->read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
2691         if (I_INPCK(info->tty))
2692                 info->read_status_mask |= UART_LSR_FE | UART_LSR_PE;
2693         if (I_BRKINT(info->tty) || I_PARMRK(info->tty))
2694                 info->read_status_mask |= UART_LSR_BI;
2695
2696         info->ignore_status_mask = 0;
2697
2698         if (I_IGNBRK(info->tty)) {
2699                 info->ignore_status_mask |= UART_LSR_BI;
2700                 info->read_status_mask |= UART_LSR_BI;
2701                 /*
2702                  * If we're ignore parity and break indicators, ignore
2703                  * overruns too.  (For real raw support).
2704                  */
2705                 if (I_IGNPAR(info->tty)) {
2706                         info->ignore_status_mask |= UART_LSR_OE | UART_LSR_PE | UART_LSR_FE;
2707                         info->read_status_mask |= UART_LSR_OE | UART_LSR_PE | UART_LSR_FE;
2708                 }
2709         }
2710         // following add by Victor Yu. 09-02-2002
2711         if (info->IsMoxaMustChipFlag) {
2712                 spin_lock_irqsave(&info->slock, flags);
2713                 SET_MOXA_MUST_XON1_VALUE(info->base, START_CHAR(info->tty));
2714                 SET_MOXA_MUST_XOFF1_VALUE(info->base, STOP_CHAR(info->tty));
2715                 if (I_IXON(info->tty)) {
2716                         ENABLE_MOXA_MUST_RX_SOFTWARE_FLOW_CONTROL(info->base);
2717                 } else {
2718                         DISABLE_MOXA_MUST_RX_SOFTWARE_FLOW_CONTROL(info->base);
2719                 }
2720                 if (I_IXOFF(info->tty)) {
2721                         ENABLE_MOXA_MUST_TX_SOFTWARE_FLOW_CONTROL(info->base);
2722                 } else {
2723                         DISABLE_MOXA_MUST_TX_SOFTWARE_FLOW_CONTROL(info->base);
2724                 }
2725                 /*
2726                    if ( I_IXANY(info->tty) ) {
2727                    info->MCR |= MOXA_MUST_MCR_XON_ANY;
2728                    ENABLE_MOXA_MUST_XON_ANY_FLOW_CONTROL(info->base);
2729                    } else {
2730                    info->MCR &= ~MOXA_MUST_MCR_XON_ANY;
2731                    DISABLE_MOXA_MUST_XON_ANY_FLOW_CONTROL(info->base);
2732                    }
2733                  */
2734                 spin_unlock_irqrestore(&info->slock, flags);
2735         }
2736         // above add by Victor Yu. 09-02-2002
2737
2738
2739         outb(fcr, info->base + UART_FCR);       /* set fcr */
2740         outb(cval, info->base + UART_LCR);
2741
2742         return ret;
2743 }
2744
2745
2746 static int mxser_set_baud(struct mxser_struct *info, long newspd)
2747 {
2748         int quot = 0;
2749         unsigned char cval;
2750         int ret = 0;
2751         unsigned long flags;
2752
2753         if (!info->tty || !info->tty->termios)
2754                 return ret;
2755
2756         if (!(info->base))
2757                 return ret;
2758
2759         if (newspd > info->MaxCanSetBaudRate)
2760                 return 0;
2761
2762         info->realbaud = newspd;
2763         if (newspd == 134) {
2764                 quot = (2 * info->baud_base / 269);
2765         } else if (newspd) {
2766                 quot = info->baud_base / newspd;
2767
2768                 if (quot == 0)
2769                         quot = 1;
2770
2771         } else {
2772                 quot = 0;
2773         }
2774
2775         info->timeout = ((info->xmit_fifo_size * HZ * 10 * quot) / info->baud_base);
2776         info->timeout += HZ / 50;       /* Add .02 seconds of slop */
2777
2778         if (quot) {
2779                 spin_lock_irqsave(&info->slock, flags);
2780                 info->MCR |= UART_MCR_DTR;
2781                 outb(info->MCR, info->base + UART_MCR);
2782                 spin_unlock_irqrestore(&info->slock, flags);
2783         } else {
2784                 spin_lock_irqsave(&info->slock, flags);
2785                 info->MCR &= ~UART_MCR_DTR;
2786                 outb(info->MCR, info->base + UART_MCR);
2787                 spin_unlock_irqrestore(&info->slock, flags);
2788                 return ret;
2789         }
2790
2791         cval = inb(info->base + UART_LCR);
2792
2793         outb(cval | UART_LCR_DLAB, info->base + UART_LCR);      /* set DLAB */
2794
2795         outb(quot & 0xff, info->base + UART_DLL);       /* LS of divisor */
2796         outb(quot >> 8, info->base + UART_DLM); /* MS of divisor */
2797         outb(cval, info->base + UART_LCR);      /* reset DLAB */
2798
2799
2800         return ret;
2801 }
2802
2803
2804
2805 /*
2806  * ------------------------------------------------------------
2807  * friends of mxser_ioctl()
2808  * ------------------------------------------------------------
2809  */
2810 static int mxser_get_serial_info(struct mxser_struct *info, struct serial_struct *retinfo)
2811 {
2812         struct serial_struct tmp;
2813
2814         if (!retinfo)
2815                 return (-EFAULT);
2816         memset(&tmp, 0, sizeof(tmp));
2817         tmp.type = info->type;
2818         tmp.line = info->port;
2819         tmp.port = info->base;
2820         tmp.irq = info->irq;
2821         tmp.flags = info->flags;
2822         tmp.baud_base = info->baud_base;
2823         tmp.close_delay = info->close_delay;
2824         tmp.closing_wait = info->closing_wait;
2825         tmp.custom_divisor = info->custom_divisor;
2826         tmp.hub6 = 0;
2827         if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
2828                 return -EFAULT;
2829         return (0);
2830 }
2831
2832 static int mxser_set_serial_info(struct mxser_struct *info, struct serial_struct *new_info)
2833 {
2834         struct serial_struct new_serial;
2835         unsigned int flags;
2836         int retval = 0;
2837
2838         if (!new_info || !info->base)
2839                 return (-EFAULT);
2840         if (copy_from_user(&new_serial, new_info, sizeof(new_serial)))
2841                 return -EFAULT;
2842
2843         if ((new_serial.irq != info->irq) || (new_serial.port != info->base) || (new_serial.custom_divisor != info->custom_divisor) || (new_serial.baud_base != info->baud_base))
2844                 return (-EPERM);
2845
2846         flags = info->flags & ASYNC_SPD_MASK;
2847
2848         if (!capable(CAP_SYS_ADMIN)) {
2849                 if ((new_serial.baud_base != info->baud_base) || (new_serial.close_delay != info->close_delay) || ((new_serial.flags & ~ASYNC_USR_MASK) != (info->flags & ~ASYNC_USR_MASK)))
2850                         return (-EPERM);
2851                 info->flags = ((info->flags & ~ASYNC_USR_MASK) | (new_serial.flags & ASYNC_USR_MASK));
2852         } else {
2853                 /*
2854                  * OK, past this point, all the error checking has been done.
2855                  * At this point, we start making changes.....
2856                  */
2857                 info->flags = ((info->flags & ~ASYNC_FLAGS) | (new_serial.flags & ASYNC_FLAGS));
2858                 info->close_delay = new_serial.close_delay * HZ / 100;
2859                 info->closing_wait = new_serial.closing_wait * HZ / 100;
2860                 info->tty->low_latency = (info->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
2861                 info->tty->low_latency = 0;     //(info->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
2862         }
2863
2864         /* added by casper, 3/17/2000, for mouse */
2865         info->type = new_serial.type;
2866
2867         process_txrx_fifo(info);
2868
2869         /* */
2870         if (info->flags & ASYNC_INITIALIZED) {
2871                 if (flags != (info->flags & ASYNC_SPD_MASK)) {
2872                         mxser_change_speed(info, 0);
2873                 }
2874         } else {
2875                 retval = mxser_startup(info);
2876         }
2877         return (retval);
2878 }
2879
2880 /*
2881  * mxser_get_lsr_info - get line status register info
2882  *
2883  * Purpose: Let user call ioctl() to get info when the UART physically
2884  *          is emptied.  On bus types like RS485, the transmitter must
2885  *          release the bus after transmitting. This must be done when
2886  *          the transmit shift register is empty, not be done when the
2887  *          transmit holding register is empty.  This functionality
2888  *          allows an RS485 driver to be written in user space.
2889  */
2890 static int mxser_get_lsr_info(struct mxser_struct *info, unsigned int *value)
2891 {
2892         unsigned char status;
2893         unsigned int result;
2894         unsigned long flags;
2895
2896         spin_lock_irqsave(&info->slock, flags);
2897         status = inb(info->base + UART_LSR);
2898         spin_unlock_irqrestore(&info->slock, flags);
2899         result = ((status & UART_LSR_TEMT) ? TIOCSER_TEMT : 0);
2900         return put_user(result, value);
2901 }
2902
2903 /*
2904  * This routine sends a break character out the serial port.
2905  */
2906 static void mxser_send_break(struct mxser_struct *info, int duration)
2907 {
2908         unsigned long flags;
2909
2910         if (!info->base)
2911                 return;
2912         set_current_state(TASK_INTERRUPTIBLE);
2913         spin_lock_irqsave(&info->slock, flags);
2914         outb(inb(info->base + UART_LCR) | UART_LCR_SBC, info->base + UART_LCR);
2915         spin_unlock_irqrestore(&info->slock, flags);
2916         schedule_timeout(duration);
2917         spin_lock_irqsave(&info->slock, flags);
2918         outb(inb(info->base + UART_LCR) & ~UART_LCR_SBC, info->base + UART_LCR);
2919         spin_unlock_irqrestore(&info->slock, flags);
2920 }
2921
2922 static int mxser_tiocmget(struct tty_struct *tty, struct file *file)
2923 {
2924         struct mxser_struct *info = (struct mxser_struct *) tty->driver_data;
2925         unsigned char control, status;
2926         unsigned long flags;
2927
2928
2929         if (tty->index == MXSER_PORTS)
2930                 return (-ENOIOCTLCMD);
2931         if (tty->flags & (1 << TTY_IO_ERROR))
2932                 return (-EIO);
2933
2934         control = info->MCR;
2935
2936         spin_lock_irqsave(&info->slock, flags);
2937         status = inb(info->base + UART_MSR);
2938         if (status & UART_MSR_ANY_DELTA)
2939                 mxser_check_modem_status(info, status);
2940         spin_unlock_irqrestore(&info->slock, flags);
2941         return ((control & UART_MCR_RTS) ? TIOCM_RTS : 0) |
2942             ((control & UART_MCR_DTR) ? TIOCM_DTR : 0) | ((status & UART_MSR_DCD) ? TIOCM_CAR : 0) | ((status & UART_MSR_RI) ? TIOCM_RNG : 0) | ((status & UART_MSR_DSR) ? TIOCM_DSR : 0) | ((status & UART_MSR_CTS) ? TIOCM_CTS : 0);
2943 }
2944
2945 static int mxser_tiocmset(struct tty_struct *tty, struct file *file, unsigned int set, unsigned int clear)
2946 {
2947         struct mxser_struct *info = (struct mxser_struct *) tty->driver_data;
2948         unsigned long flags;
2949
2950
2951         if (tty->index == MXSER_PORTS)
2952                 return -ENOIOCTLCMD;
2953         if (tty->flags & (1 << TTY_IO_ERROR))
2954                 return -EIO;
2955
2956         spin_lock_irqsave(&info->slock, flags);
2957
2958         if (set & TIOCM_RTS)
2959                 info->MCR |= UART_MCR_RTS;
2960         if (set & TIOCM_DTR)
2961                 info->MCR |= UART_MCR_DTR;
2962
2963         if (clear & TIOCM_RTS)
2964                 info->MCR &= ~UART_MCR_RTS;
2965         if (clear & TIOCM_DTR)
2966                 info->MCR &= ~UART_MCR_DTR;
2967
2968         outb(info->MCR, info->base + UART_MCR);
2969         spin_unlock_irqrestore(&info->slock, flags);
2970         return 0;
2971 }
2972
2973
2974 static int mxser_read_register(int, unsigned short *);
2975 static int mxser_program_mode(int);
2976 static void mxser_normal_mode(int);
2977
2978 static int mxser_get_ISA_conf(int cap, struct mxser_hwconf *hwconf)
2979 {
2980         int id, i, bits;
2981         unsigned short regs[16], irq;
2982         unsigned char scratch, scratch2;
2983
2984         hwconf->IsMoxaMustChipFlag = MOXA_OTHER_UART;
2985
2986         id = mxser_read_register(cap, regs);
2987         if (id == C168_ASIC_ID) {
2988                 hwconf->board_type = MXSER_BOARD_C168_ISA;
2989                 hwconf->ports = 8;
2990         } else if (id == C104_ASIC_ID) {
2991                 hwconf->board_type = MXSER_BOARD_C104_ISA;
2992                 hwconf->ports = 4;
2993         } else if (id == C102_ASIC_ID) {
2994                 hwconf->board_type = MXSER_BOARD_C102_ISA;
2995                 hwconf->ports = 2;
2996         } else if (id == CI132_ASIC_ID) {
2997                 hwconf->board_type = MXSER_BOARD_CI132;
2998                 hwconf->ports = 2;
2999         } else if (id == CI134_ASIC_ID) {
3000                 hwconf->board_type = MXSER_BOARD_CI134;
3001                 hwconf->ports = 4;
3002         } else if (id == CI104J_ASIC_ID) {
3003                 hwconf->board_type = MXSER_BOARD_CI104J;
3004                 hwconf->ports = 4;
3005         } else
3006                 return (0);
3007
3008         irq = 0;
3009         if (hwconf->ports == 2) {
3010                 irq = regs[9] & 0xF000;
3011                 irq = irq | (irq >> 4);
3012                 if (irq != (regs[9] & 0xFF00))
3013                         return (MXSER_ERR_IRQ_CONFLIT);
3014         } else if (hwconf->ports == 4) {
3015                 irq = regs[9] & 0xF000;
3016                 irq = irq | (irq >> 4);
3017                 irq = irq | (irq >> 8);
3018                 if (irq != regs[9])
3019                         return (MXSER_ERR_IRQ_CONFLIT);
3020         } else if (hwconf->ports == 8) {
3021                 irq = regs[9] & 0xF000;
3022                 irq = irq | (irq >> 4);
3023                 irq = irq | (irq >> 8);
3024                 if ((irq != regs[9]) || (irq != regs[10]))
3025                         return (MXSER_ERR_IRQ_CONFLIT);
3026         }
3027
3028         if (!irq) {
3029                 return (MXSER_ERR_IRQ);
3030         }
3031         hwconf->irq = ((int) (irq & 0xF000) >> 12);
3032         for (i = 0; i < 8; i++)
3033                 hwconf->ioaddr[i] = (int) regs[i + 1] & 0xFFF8;
3034         if ((regs[12] & 0x80) == 0) {
3035                 return (MXSER_ERR_VECTOR);
3036         }
3037         hwconf->vector = (int) regs[11];        /* interrupt vector */
3038         if (id == 1)
3039                 hwconf->vector_mask = 0x00FF;
3040         else
3041                 hwconf->vector_mask = 0x000F;
3042         for (i = 7, bits = 0x0100; i >= 0; i--, bits <<= 1) {
3043                 if (regs[12] & bits) {
3044                         hwconf->baud_base[i] = 921600;
3045                         hwconf->MaxCanSetBaudRate[i] = 921600;  // add by Victor Yu. 09-04-2002
3046                 } else {
3047                         hwconf->baud_base[i] = 115200;
3048                         hwconf->MaxCanSetBaudRate[i] = 115200;  // add by Victor Yu. 09-04-2002
3049                 }
3050         }
3051         scratch2 = inb(cap + UART_LCR) & (~UART_LCR_DLAB);
3052         outb(scratch2 | UART_LCR_DLAB, cap + UART_LCR);
3053         outb(0, cap + UART_EFR);        /* EFR is the same as FCR */
3054         outb(scratch2, cap + UART_LCR);
3055         outb(UART_FCR_ENABLE_FIFO, cap + UART_FCR);
3056         scratch = inb(cap + UART_IIR);
3057
3058         if (scratch & 0xC0)
3059                 hwconf->uart_type = PORT_16550A;
3060         else
3061                 hwconf->uart_type = PORT_16450;
3062         if (id == 1)
3063                 hwconf->ports = 8;
3064         else
3065                 hwconf->ports = 4;
3066         request_region(hwconf->ioaddr[0], 8 * hwconf->ports, "mxser(IO)");
3067         request_region(hwconf->vector, 1, "mxser(vector)");
3068         return (hwconf->ports);
3069 }
3070
3071 #define CHIP_SK         0x01    /* Serial Data Clock  in Eprom */
3072 #define CHIP_DO         0x02    /* Serial Data Output in Eprom */
3073 #define CHIP_CS         0x04    /* Serial Chip Select in Eprom */
3074 #define CHIP_DI         0x08    /* Serial Data Input  in Eprom */
3075 #define EN_CCMD         0x000   /* Chip's command register     */
3076 #define EN0_RSARLO      0x008   /* Remote start address reg 0  */
3077 #define EN0_RSARHI      0x009   /* Remote start address reg 1  */
3078 #define EN0_RCNTLO      0x00A   /* Remote byte count reg WR    */
3079 #define EN0_RCNTHI      0x00B   /* Remote byte count reg WR    */
3080 #define EN0_DCFG        0x00E   /* Data configuration reg WR   */
3081 #define EN0_PORT        0x010   /* Rcv missed frame error counter RD */
3082 #define ENC_PAGE0       0x000   /* Select page 0 of chip registers   */
3083 #define ENC_PAGE3       0x0C0   /* Select page 3 of chip registers   */
3084 static int mxser_read_register(int port, unsigned short *regs)
3085 {
3086         int i, k, value, id;
3087         unsigned int j;
3088
3089         id = mxser_program_mode(port);
3090         if (id < 0)
3091                 return (id);
3092         for (i = 0; i < 14; i++) {
3093                 k = (i & 0x3F) | 0x180;
3094                 for (j = 0x100; j > 0; j >>= 1) {
3095                         outb(CHIP_CS, port);
3096                         if (k & j) {
3097                                 outb(CHIP_CS | CHIP_DO, port);
3098                                 outb(CHIP_CS | CHIP_DO | CHIP_SK, port);        /* A? bit of read */
3099                         } else {
3100                                 outb(CHIP_CS, port);
3101                                 outb(CHIP_CS | CHIP_SK, port);  /* A? bit of read */
3102                         }
3103                 }
3104                 (void) inb(port);
3105                 value = 0;
3106                 for (k = 0, j = 0x8000; k < 16; k++, j >>= 1) {
3107                         outb(CHIP_CS, port);
3108                         outb(CHIP_CS | CHIP_SK, port);
3109                         if (inb(port) & CHIP_DI)
3110                                 value |= j;
3111                 }
3112                 regs[i] = value;
3113                 outb(0, port);
3114         }
3115         mxser_normal_mode(port);
3116         return (id);
3117 }
3118
3119 static int mxser_program_mode(int port)
3120 {
3121         int id, i, j, n;
3122         //unsigned long flags;
3123
3124         spin_lock(&gm_lock);
3125         outb(0, port);
3126         outb(0, port);
3127         outb(0, port);
3128         (void) inb(port);
3129         (void) inb(port);
3130         outb(0, port);
3131         (void) inb(port);
3132         //restore_flags(flags);
3133         spin_unlock(&gm_lock);
3134
3135         id = inb(port + 1) & 0x1F;
3136         if ((id != C168_ASIC_ID) && (id != C104_ASIC_ID) && (id != C102_ASIC_ID) && (id != CI132_ASIC_ID) && (id != CI134_ASIC_ID) && (id != CI104J_ASIC_ID))
3137                 return (-1);
3138         for (i = 0, j = 0; i < 4; i++) {
3139                 n = inb(port + 2);
3140                 if (n == 'M') {
3141                         j = 1;
3142                 } else if ((j == 1) && (n == 1)) {
3143                         j = 2;
3144                         break;
3145                 } else
3146                         j = 0;
3147         }
3148         if (j != 2)
3149                 id = -2;
3150         return (id);
3151 }
3152
3153 static void mxser_normal_mode(int port)
3154 {
3155         int i, n;
3156
3157         outb(0xA5, port + 1);
3158         outb(0x80, port + 3);
3159         outb(12, port + 0);     /* 9600 bps */
3160         outb(0, port + 1);
3161         outb(0x03, port + 3);   /* 8 data bits */
3162         outb(0x13, port + 4);   /* loop back mode */
3163         for (i = 0; i < 16; i++) {
3164                 n = inb(port + 5);
3165                 if ((n & 0x61) == 0x60)
3166                         break;
3167                 if ((n & 1) == 1)
3168                         (void) inb(port);
3169         }
3170         outb(0x00, port + 4);
3171 }
3172
3173 // added by James 03-05-2004.
3174 // for secure device server:
3175 // stat = 1, the port8 DTR is set to ON.
3176 // stat = 0, the port8 DTR is set to OFF.
3177 void SDS_PORT8_DTR(int stat)
3178 {
3179         int _sds_oldmcr;
3180         _sds_oldmcr = inb(mxvar_table[7].base + UART_MCR);      // get old MCR
3181         if (stat == 1) {
3182                 outb(_sds_oldmcr | 0x01, mxvar_table[7].base + UART_MCR);       // set DTR ON
3183         }
3184         if (stat == 0) {
3185                 outb(_sds_oldmcr & 0xfe, mxvar_table[7].base + UART_MCR);       // set DTR OFF
3186         }
3187         return;
3188 }
3189
3190 module_init(mxser_module_init);
3191 module_exit(mxser_module_exit);