2 * mxser.c -- MOXA Smartio/Industio family multiport serial driver.
4 * Copyright (C) 1999-2001 Moxa Technologies (support@moxa.com.tw).
6 * This code is loosely based on the Linux serial driver, written by
7 * Linus Torvalds, Theodore T'so and others.
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.
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.
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.
23 * Original release 10/26/00
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
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
39 #include <linux/module.h>
40 #include <linux/autoconf.h>
41 #include <linux/errno.h>
42 #include <linux/signal.h>
43 #include <linux/sched.h>
44 #include <linux/timer.h>
45 #include <linux/interrupt.h>
46 #include <linux/tty.h>
47 #include <linux/tty_flip.h>
48 #include <linux/serial.h>
49 #include <linux/serial_reg.h>
50 #include <linux/major.h>
51 #include <linux/string.h>
52 #include <linux/fcntl.h>
53 #include <linux/ptrace.h>
54 #include <linux/gfp.h>
55 #include <linux/ioport.h>
57 #include <linux/smp_lock.h>
58 #include <linux/delay.h>
59 #include <linux/pci.h>
61 #include <asm/system.h>
64 #include <asm/bitops.h>
65 #include <asm/uaccess.h>
69 #define MXSER_VERSION "1.8"
70 #define MXSERMAJOR 174
71 #define MXSERCUMAJOR 175
73 #define MXSER_EVENT_TXLOW 1
74 #define MXSER_EVENT_HANGUP 2
76 #define MXSER_BOARDS 4 /* Max. boards */
77 #define MXSER_PORTS 32 /* Max. ports */
78 #define MXSER_PORTS_PER_BOARD 8 /* Max. ports per board */
79 #define MXSER_ISR_PASS_LIMIT 256
81 #define MXSER_ERR_IOADDR -1
82 #define MXSER_ERR_IRQ -2
83 #define MXSER_ERR_IRQ_CONFLIT -3
84 #define MXSER_ERR_VECTOR -4
86 #define SERIAL_TYPE_NORMAL 1
87 #define SERIAL_TYPE_CALLOUT 2
89 #define WAKEUP_CHARS 256
91 #define UART_MCR_AFE 0x20
92 #define UART_LSR_SPECIAL 0x1E
94 #define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK|\
97 #define IRQ_T(info) ((info->flags & ASYNC_SHARE_IRQ) ? IRQF_SHARED : IRQF_DISABLED)
99 #define C168_ASIC_ID 1
100 #define C104_ASIC_ID 2
101 #define C102_ASIC_ID 0xB
102 #define CI132_ASIC_ID 4
103 #define CI134_ASIC_ID 3
104 #define CI104J_ASIC_ID 5
107 MXSER_BOARD_C168_ISA
= 1,
108 MXSER_BOARD_C104_ISA
,
110 MXSER_BOARD_C168_PCI
,
111 MXSER_BOARD_C104_PCI
,
112 MXSER_BOARD_C102_ISA
,
130 static char *mxser_brdname
[] = {
148 "Moxa UC7000 Serial",
154 static int mxser_numports
[] = {
178 #define UART_TYPE_NUM 2
180 static const unsigned int Gmoxa_uart_id
[UART_TYPE_NUM
] = {
181 MOXA_MUST_MU150_HWID
,
185 /* This is only for PCI */
186 #define UART_INFO_NUM 3
187 struct mxpciuart_info
{
198 static const struct mxpciuart_info Gpci_uart_info
[UART_INFO_NUM
] = {
199 {MOXA_OTHER_UART
, 16, 16, 16, 14, 14, 1, 921600L},
200 {MOXA_MUST_MU150_HWID
, 64, 64, 64, 48, 48, 16, 230400L},
201 {MOXA_MUST_MU860_HWID
, 128, 128, 128, 96, 96, 32, 921600L}
207 static struct pci_device_id mxser_pcibrds
[] = {
208 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_C168
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_C168_PCI
},
209 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_C104
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_C104_PCI
},
210 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CP132
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CP132
},
211 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CP114
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CP114
},
212 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CT114
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CT114
},
213 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CP102
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CP102
},
214 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CP104U
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CP104U
},
215 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CP168U
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CP168U
},
216 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CP132U
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CP132U
},
217 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CP134U
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CP134U
},
218 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CP104JU
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CP104JU
},
219 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_RC7000
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_RC7000
},
220 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CP118U
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CP118U
},
221 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CP102UL
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CP102UL
},
222 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CP102U
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CP102U
},
226 MODULE_DEVICE_TABLE(pci
, mxser_pcibrds
);
231 typedef struct _moxa_pci_info
{
232 unsigned short busNum
;
233 unsigned short devNum
;
234 struct pci_dev
*pdev
; /* add by Victor Yu. 06-23-2003 */
237 static int ioaddr
[MXSER_BOARDS
] = { 0, 0, 0, 0 };
238 static int ttymajor
= MXSERMAJOR
;
239 static int calloutmajor
= MXSERCUMAJOR
;
240 static int verbose
= 0;
242 /* Variables for insmod */
244 MODULE_AUTHOR("Casper Yang");
245 MODULE_DESCRIPTION("MOXA Smartio/Industio Family Multiport Board Device Driver");
246 module_param_array(ioaddr
, int, NULL
, 0);
247 module_param(ttymajor
, int, 0);
248 module_param(calloutmajor
, int, 0);
249 module_param(verbose
, bool, 0);
250 MODULE_LICENSE("GPL");
254 unsigned long rxcnt
[MXSER_PORTS
];
255 unsigned long txcnt
[MXSER_PORTS
];
262 unsigned long up_rxcnt
;
263 unsigned long up_txcnt
;
265 unsigned char hold_reason
;
268 struct mxser_mon_ext
{
269 unsigned long rx_cnt
[32];
270 unsigned long tx_cnt
[32];
271 unsigned long up_rxcnt
[32];
272 unsigned long up_txcnt
[32];
273 int modem_status
[32];
284 struct mxser_hwconf
{
291 int ioaddr
[MXSER_PORTS_PER_BOARD
];
292 int baud_base
[MXSER_PORTS_PER_BOARD
];
293 moxa_pci_info pciInfo
;
294 int IsMoxaMustChipFlag
; /* add by Victor Yu. 08-30-2002 */
295 int MaxCanSetBaudRate
[MXSER_PORTS_PER_BOARD
]; /* add by Victor Yu. 09-04-2002 */
296 int opmode_ioaddr
[MXSER_PORTS_PER_BOARD
]; /* add by Victor Yu. 01-05-2004 */
299 struct mxser_struct
{
301 int base
; /* port base address */
302 int irq
; /* port using irq no. */
303 int vector
; /* port irq vector */
304 int vectormask
; /* port vector mask */
306 int rx_trigger
; /* Rx fifo trigger level */
308 int baud_base
; /* max. speed */
309 int flags
; /* defined in tty.h */
310 int type
; /* UART type */
311 struct tty_struct
*tty
;
312 int read_status_mask
;
313 int ignore_status_mask
;
316 int x_char
; /* xon/xoff character */
318 unsigned short closing_wait
;
319 int IER
; /* Interrupt Enable Register */
320 int MCR
; /* Modem control register */
322 int count
; /* # of fd on device */
323 int blocked_open
; /* # of blocked opens */
324 long session
; /* Session of opening process */
325 long pgrp
; /* pgrp of opening process */
326 unsigned char *xmit_buf
;
330 struct work_struct tqueue
;
331 struct ktermios normal_termios
;
332 struct ktermios callout_termios
;
333 wait_queue_head_t open_wait
;
334 wait_queue_head_t close_wait
;
335 wait_queue_head_t delta_msr_wait
;
336 struct async_icount icount
; /* kernel counters for the 4 input interrupts */
338 int IsMoxaMustChipFlag
; /* add by Victor Yu. 08-30-2002 */
339 int MaxCanSetBaudRate
; /* add by Victor Yu. 09-04-2002 */
340 int opmode_ioaddr
; /* add by Victor Yu. 01-05-2004 */
341 unsigned char stop_rx
;
342 unsigned char ldisc_stop_rx
;
344 struct mxser_mon mon_data
;
345 unsigned char err_shadow
;
349 struct mxser_mstatus
{
357 static struct mxser_mstatus GMStatus
[MXSER_PORTS
];
359 static int mxserBoardCAP
[MXSER_BOARDS
] = {
361 /* 0x180, 0x280, 0x200, 0x320 */
364 static struct tty_driver
*mxvar_sdriver
;
365 static struct mxser_struct mxvar_table
[MXSER_PORTS
];
366 static struct tty_struct
*mxvar_tty
[MXSER_PORTS
+ 1];
367 static struct ktermios
*mxvar_termios
[MXSER_PORTS
+ 1];
368 static struct ktermios
*mxvar_termios_locked
[MXSER_PORTS
+ 1];
369 static struct mxser_log mxvar_log
;
370 static int mxvar_diagflag
;
371 static unsigned char mxser_msr
[MXSER_PORTS
+ 1];
372 static struct mxser_mon_ext mon_data_ext
;
373 static int mxser_set_baud_method
[MXSER_PORTS
+ 1];
374 static spinlock_t gm_lock
;
377 * This is used to figure out the divisor speeds and the timeouts
380 static struct mxser_hwconf mxsercfg
[MXSER_BOARDS
];
386 static void mxser_getcfg(int board
, struct mxser_hwconf
*hwconf
);
387 static int mxser_init(void);
389 /* static void mxser_poll(unsigned long); */
390 static int mxser_get_ISA_conf(int, struct mxser_hwconf
*);
391 static int mxser_get_PCI_conf(int, int, int, struct mxser_hwconf
*);
392 static void mxser_do_softint(struct work_struct
*);
393 static int mxser_open(struct tty_struct
*, struct file
*);
394 static void mxser_close(struct tty_struct
*, struct file
*);
395 static int mxser_write(struct tty_struct
*, const unsigned char *, int);
396 static int mxser_write_room(struct tty_struct
*);
397 static void mxser_flush_buffer(struct tty_struct
*);
398 static int mxser_chars_in_buffer(struct tty_struct
*);
399 static void mxser_flush_chars(struct tty_struct
*);
400 static void mxser_put_char(struct tty_struct
*, unsigned char);
401 static int mxser_ioctl(struct tty_struct
*, struct file
*, uint
, ulong
);
402 static int mxser_ioctl_special(unsigned int, void __user
*);
403 static void mxser_throttle(struct tty_struct
*);
404 static void mxser_unthrottle(struct tty_struct
*);
405 static void mxser_set_termios(struct tty_struct
*, struct ktermios
*);
406 static void mxser_stop(struct tty_struct
*);
407 static void mxser_start(struct tty_struct
*);
408 static void mxser_hangup(struct tty_struct
*);
409 static void mxser_rs_break(struct tty_struct
*, int);
410 static irqreturn_t
mxser_interrupt(int, void *);
411 static void mxser_receive_chars(struct mxser_struct
*, int *);
412 static void mxser_transmit_chars(struct mxser_struct
*);
413 static void mxser_check_modem_status(struct mxser_struct
*, int);
414 static int mxser_block_til_ready(struct tty_struct
*, struct file
*, struct mxser_struct
*);
415 static int mxser_startup(struct mxser_struct
*);
416 static void mxser_shutdown(struct mxser_struct
*);
417 static int mxser_change_speed(struct mxser_struct
*, struct ktermios
*old_termios
);
418 static int mxser_get_serial_info(struct mxser_struct
*, struct serial_struct __user
*);
419 static int mxser_set_serial_info(struct mxser_struct
*, struct serial_struct __user
*);
420 static int mxser_get_lsr_info(struct mxser_struct
*, unsigned int __user
*);
421 static void mxser_send_break(struct mxser_struct
*, int);
422 static int mxser_tiocmget(struct tty_struct
*, struct file
*);
423 static int mxser_tiocmset(struct tty_struct
*, struct file
*, unsigned int, unsigned int);
424 static int mxser_set_baud(struct mxser_struct
*info
, long newspd
);
425 static void mxser_wait_until_sent(struct tty_struct
*tty
, int timeout
);
427 static void mxser_startrx(struct tty_struct
*tty
);
428 static void mxser_stoprx(struct tty_struct
*tty
);
431 static int CheckIsMoxaMust(int io
)
436 outb(0, io
+ UART_LCR
);
437 DISABLE_MOXA_MUST_ENCHANCE_MODE(io
);
438 oldmcr
= inb(io
+ UART_MCR
);
439 outb(0, io
+ UART_MCR
);
440 SET_MOXA_MUST_XON1_VALUE(io
, 0x11);
441 if ((hwid
= inb(io
+ UART_MCR
)) != 0) {
442 outb(oldmcr
, io
+ UART_MCR
);
443 return MOXA_OTHER_UART
;
446 GET_MOXA_MUST_HARDWARE_ID(io
, &hwid
);
447 for (i
= 0; i
< UART_TYPE_NUM
; i
++) {
448 if (hwid
== Gmoxa_uart_id
[i
])
451 return MOXA_OTHER_UART
;
454 /* above is modified by Victor Yu. 08-15-2002 */
456 static const struct tty_operations mxser_ops
= {
458 .close
= mxser_close
,
459 .write
= mxser_write
,
460 .put_char
= mxser_put_char
,
461 .flush_chars
= mxser_flush_chars
,
462 .write_room
= mxser_write_room
,
463 .chars_in_buffer
= mxser_chars_in_buffer
,
464 .flush_buffer
= mxser_flush_buffer
,
465 .ioctl
= mxser_ioctl
,
466 .throttle
= mxser_throttle
,
467 .unthrottle
= mxser_unthrottle
,
468 .set_termios
= mxser_set_termios
,
470 .start
= mxser_start
,
471 .hangup
= mxser_hangup
,
472 .break_ctl
= mxser_rs_break
,
473 .wait_until_sent
= mxser_wait_until_sent
,
474 .tiocmget
= mxser_tiocmget
,
475 .tiocmset
= mxser_tiocmset
,
479 * The MOXA Smartio/Industio serial driver boot-time initialization code!
482 static int __init
mxser_module_init(void)
487 printk(KERN_DEBUG
"Loading module mxser ...\n");
490 printk(KERN_DEBUG
"Done.\n");
494 static void __exit
mxser_module_exit(void)
499 printk(KERN_DEBUG
"Unloading module mxser ...\n");
501 err
= tty_unregister_driver(mxvar_sdriver
);
503 put_tty_driver(mxvar_sdriver
);
505 printk(KERN_ERR
"Couldn't unregister MOXA Smartio/Industio family serial driver\n");
507 for (i
= 0; i
< MXSER_BOARDS
; i
++) {
508 struct pci_dev
*pdev
;
510 if (mxsercfg
[i
].board_type
== -1)
513 pdev
= mxsercfg
[i
].pciInfo
.pdev
;
514 free_irq(mxsercfg
[i
].irq
, &mxvar_table
[i
* MXSER_PORTS_PER_BOARD
]);
515 if (pdev
!= NULL
) { /* PCI */
516 release_region(pci_resource_start(pdev
, 2), pci_resource_len(pdev
, 2));
517 release_region(pci_resource_start(pdev
, 3), pci_resource_len(pdev
, 3));
520 release_region(mxsercfg
[i
].ioaddr
[0], 8 * mxsercfg
[i
].ports
);
521 release_region(mxsercfg
[i
].vector
, 1);
526 printk(KERN_DEBUG
"Done.\n");
529 static void process_txrx_fifo(struct mxser_struct
*info
)
533 if ((info
->type
== PORT_16450
) || (info
->type
== PORT_8250
)) {
534 info
->rx_trigger
= 1;
535 info
->rx_high_water
= 1;
536 info
->rx_low_water
= 1;
537 info
->xmit_fifo_size
= 1;
539 for (i
= 0; i
< UART_INFO_NUM
; i
++) {
540 if (info
->IsMoxaMustChipFlag
== Gpci_uart_info
[i
].type
) {
541 info
->rx_trigger
= Gpci_uart_info
[i
].rx_trigger
;
542 info
->rx_low_water
= Gpci_uart_info
[i
].rx_low_water
;
543 info
->rx_high_water
= Gpci_uart_info
[i
].rx_high_water
;
544 info
->xmit_fifo_size
= Gpci_uart_info
[i
].xmit_fifo_size
;
551 static int mxser_initbrd(int board
, struct mxser_hwconf
*hwconf
)
553 struct mxser_struct
*info
;
557 n
= board
* MXSER_PORTS_PER_BOARD
;
558 info
= &mxvar_table
[n
];
560 printk(KERN_DEBUG
" ttyMI%d - ttyMI%d ",
561 n
, n
+ hwconf
->ports
- 1);
562 printk(" max. baud rate = %d bps.\n",
563 hwconf
->MaxCanSetBaudRate
[0]);
566 for (i
= 0; i
< hwconf
->ports
; i
++, n
++, info
++) {
568 info
->base
= hwconf
->ioaddr
[i
];
569 info
->irq
= hwconf
->irq
;
570 info
->vector
= hwconf
->vector
;
571 info
->vectormask
= hwconf
->vector_mask
;
572 info
->opmode_ioaddr
= hwconf
->opmode_ioaddr
[i
]; /* add by Victor Yu. 01-05-2004 */
574 info
->ldisc_stop_rx
= 0;
576 info
->IsMoxaMustChipFlag
= hwconf
->IsMoxaMustChipFlag
;
577 /* Enhance mode enabled here */
578 if (info
->IsMoxaMustChipFlag
!= MOXA_OTHER_UART
) {
579 ENABLE_MOXA_MUST_ENCHANCE_MODE(info
->base
);
582 info
->flags
= ASYNC_SHARE_IRQ
;
583 info
->type
= hwconf
->uart_type
;
584 info
->baud_base
= hwconf
->baud_base
[i
];
586 info
->MaxCanSetBaudRate
= hwconf
->MaxCanSetBaudRate
[i
];
588 process_txrx_fifo(info
);
591 info
->custom_divisor
= hwconf
->baud_base
[i
] * 16;
592 info
->close_delay
= 5 * HZ
/ 10;
593 info
->closing_wait
= 30 * HZ
;
594 INIT_WORK(&info
->tqueue
, mxser_do_softint
);
595 info
->normal_termios
= mxvar_sdriver
->init_termios
;
596 init_waitqueue_head(&info
->open_wait
);
597 init_waitqueue_head(&info
->close_wait
);
598 init_waitqueue_head(&info
->delta_msr_wait
);
599 memset(&info
->mon_data
, 0, sizeof(struct mxser_mon
));
600 info
->err_shadow
= 0;
601 spin_lock_init(&info
->slock
);
604 * Allocate the IRQ if necessary
608 /* before set INT ISR, disable all int */
609 for (i
= 0; i
< hwconf
->ports
; i
++) {
610 outb(inb(hwconf
->ioaddr
[i
] + UART_IER
) & 0xf0,
611 hwconf
->ioaddr
[i
] + UART_IER
);
614 n
= board
* MXSER_PORTS_PER_BOARD
;
615 info
= &mxvar_table
[n
];
617 retval
= request_irq(hwconf
->irq
, mxser_interrupt
, IRQ_T(info
),
620 printk(KERN_ERR
"Board %d: %s",
621 board
, mxser_brdname
[hwconf
->board_type
- 1]);
622 printk(" Request irq failed, IRQ (%d) may conflict with"
623 " another device.\n", info
->irq
);
629 static void mxser_getcfg(int board
, struct mxser_hwconf
*hwconf
)
631 mxsercfg
[board
] = *hwconf
;
635 static int mxser_get_PCI_conf(int busnum
, int devnum
, int board_type
, struct mxser_hwconf
*hwconf
)
638 /* unsigned int val; */
639 unsigned int ioaddress
;
640 struct pci_dev
*pdev
= hwconf
->pciInfo
.pdev
;
643 hwconf
->board_type
= board_type
;
644 hwconf
->ports
= mxser_numports
[board_type
- 1];
645 ioaddress
= pci_resource_start(pdev
, 2);
646 request_region(pci_resource_start(pdev
, 2), pci_resource_len(pdev
, 2),
649 for (i
= 0; i
< hwconf
->ports
; i
++)
650 hwconf
->ioaddr
[i
] = ioaddress
+ 8 * i
;
653 ioaddress
= pci_resource_start(pdev
, 3);
654 request_region(pci_resource_start(pdev
, 3), pci_resource_len(pdev
, 3),
656 hwconf
->vector
= ioaddress
;
659 hwconf
->irq
= hwconf
->pciInfo
.pdev
->irq
;
661 hwconf
->IsMoxaMustChipFlag
= CheckIsMoxaMust(hwconf
->ioaddr
[0]);
662 hwconf
->uart_type
= PORT_16550A
;
663 hwconf
->vector_mask
= 0;
666 for (i
= 0; i
< hwconf
->ports
; i
++) {
667 for (j
= 0; j
< UART_INFO_NUM
; j
++) {
668 if (Gpci_uart_info
[j
].type
== hwconf
->IsMoxaMustChipFlag
) {
669 hwconf
->MaxCanSetBaudRate
[i
] = Gpci_uart_info
[j
].max_baud
;
671 /* exception....CP-102 */
672 if (board_type
== MXSER_BOARD_CP102
)
673 hwconf
->MaxCanSetBaudRate
[i
] = 921600;
679 if (hwconf
->IsMoxaMustChipFlag
== MOXA_MUST_MU860_HWID
) {
680 for (i
= 0; i
< hwconf
->ports
; i
++) {
682 hwconf
->opmode_ioaddr
[i
] = ioaddress
+ 4;
684 hwconf
->opmode_ioaddr
[i
] = ioaddress
+ 0x0c;
686 outb(0, ioaddress
+ 4); /* default set to RS232 mode */
687 outb(0, ioaddress
+ 0x0c); /* default set to RS232 mode */
690 for (i
= 0; i
< hwconf
->ports
; i
++) {
691 hwconf
->vector_mask
|= (1 << i
);
692 hwconf
->baud_base
[i
] = 921600;
698 static int mxser_init(void)
700 int i
, m
, retval
, b
, n
;
701 struct pci_dev
*pdev
= NULL
;
703 unsigned char busnum
, devnum
;
704 struct mxser_hwconf hwconf
;
706 mxvar_sdriver
= alloc_tty_driver(MXSER_PORTS
+ 1);
709 spin_lock_init(&gm_lock
);
711 for (i
= 0; i
< MXSER_BOARDS
; i
++) {
712 mxsercfg
[i
].board_type
= -1;
715 printk(KERN_INFO
"MOXA Smartio/Industio family driver version %s\n",
718 /* Initialize the tty_driver structure */
719 memset(mxvar_sdriver
, 0, sizeof(struct tty_driver
));
720 mxvar_sdriver
->owner
= THIS_MODULE
;
721 mxvar_sdriver
->magic
= TTY_DRIVER_MAGIC
;
722 mxvar_sdriver
->name
= "ttyMI";
723 mxvar_sdriver
->major
= ttymajor
;
724 mxvar_sdriver
->minor_start
= 0;
725 mxvar_sdriver
->num
= MXSER_PORTS
+ 1;
726 mxvar_sdriver
->type
= TTY_DRIVER_TYPE_SERIAL
;
727 mxvar_sdriver
->subtype
= SERIAL_TYPE_NORMAL
;
728 mxvar_sdriver
->init_termios
= tty_std_termios
;
729 mxvar_sdriver
->init_termios
.c_cflag
= B9600
|CS8
|CREAD
|HUPCL
|CLOCAL
;
730 mxvar_sdriver
->init_termios
.c_ispeed
= 9600;
731 mxvar_sdriver
->init_termios
.c_ospeed
= 9600;
732 mxvar_sdriver
->flags
= TTY_DRIVER_REAL_RAW
;
733 tty_set_operations(mxvar_sdriver
, &mxser_ops
);
734 mxvar_sdriver
->ttys
= mxvar_tty
;
735 mxvar_sdriver
->termios
= mxvar_termios
;
736 mxvar_sdriver
->termios_locked
= mxvar_termios_locked
;
739 memset(mxvar_table
, 0, MXSER_PORTS
* sizeof(struct mxser_struct
));
740 memset(&mxvar_log
, 0, sizeof(struct mxser_log
));
742 memset(&mxser_msr
, 0, sizeof(unsigned char) * (MXSER_PORTS
+ 1));
743 memset(&mon_data_ext
, 0, sizeof(struct mxser_mon_ext
));
744 memset(&mxser_set_baud_method
, 0, sizeof(int) * (MXSER_PORTS
+ 1));
745 memset(&hwconf
, 0, sizeof(struct mxser_hwconf
));
748 /* Start finding ISA boards here */
749 for (b
= 0; b
< MXSER_BOARDS
&& m
< MXSER_BOARDS
; b
++) {
752 if (!(cap
= mxserBoardCAP
[b
]))
755 retval
= mxser_get_ISA_conf(cap
, &hwconf
);
758 printk(KERN_INFO
"Found MOXA %s board (CAP=0x%x)\n",
759 mxser_brdname
[hwconf
.board_type
- 1], ioaddr
[b
]);
762 if (retval
== MXSER_ERR_IRQ
)
763 printk(KERN_ERR
"Invalid interrupt number, "
764 "board not configured\n");
765 else if (retval
== MXSER_ERR_IRQ_CONFLIT
)
766 printk(KERN_ERR
"Invalid interrupt number, "
767 "board not configured\n");
768 else if (retval
== MXSER_ERR_VECTOR
)
769 printk(KERN_ERR
"Invalid interrupt vector, "
770 "board not configured\n");
771 else if (retval
== MXSER_ERR_IOADDR
)
772 printk(KERN_ERR
"Invalid I/O address, "
773 "board not configured\n");
778 hwconf
.pciInfo
.busNum
= 0;
779 hwconf
.pciInfo
.devNum
= 0;
780 hwconf
.pciInfo
.pdev
= NULL
;
782 mxser_getcfg(m
, &hwconf
);
784 * init mxsercfg first,
785 * or mxsercfg data is not correct on ISR.
787 /* mxser_initbrd will hook ISR. */
788 if (mxser_initbrd(m
, &hwconf
) < 0)
794 /* Start finding ISA boards from module arg */
795 for (b
= 0; b
< MXSER_BOARDS
&& m
< MXSER_BOARDS
; b
++) {
798 if (!(cap
= ioaddr
[b
]))
801 retval
= mxser_get_ISA_conf(cap
, &hwconf
);
804 printk(KERN_INFO
"Found MOXA %s board (CAP=0x%x)\n",
805 mxser_brdname
[hwconf
.board_type
- 1], ioaddr
[b
]);
808 if (retval
== MXSER_ERR_IRQ
)
809 printk(KERN_ERR
"Invalid interrupt number, "
810 "board not configured\n");
811 else if (retval
== MXSER_ERR_IRQ_CONFLIT
)
812 printk(KERN_ERR
"Invalid interrupt number, "
813 "board not configured\n");
814 else if (retval
== MXSER_ERR_VECTOR
)
815 printk(KERN_ERR
"Invalid interrupt vector, "
816 "board not configured\n");
817 else if (retval
== MXSER_ERR_IOADDR
)
818 printk(KERN_ERR
"Invalid I/O address, "
819 "board not configured\n");
824 hwconf
.pciInfo
.busNum
= 0;
825 hwconf
.pciInfo
.devNum
= 0;
826 hwconf
.pciInfo
.pdev
= NULL
;
828 mxser_getcfg(m
, &hwconf
);
830 * init mxsercfg first,
831 * or mxsercfg data is not correct on ISR.
833 /* mxser_initbrd will hook ISR. */
834 if (mxser_initbrd(m
, &hwconf
) < 0)
840 /* start finding PCI board here */
842 n
= ARRAY_SIZE(mxser_pcibrds
) - 1;
846 pdev
= pci_get_device(mxser_pcibrds
[b
].vendor
,
847 mxser_pcibrds
[b
].device
, pdev
);
852 hwconf
.pciInfo
.busNum
= busnum
= pdev
->bus
->number
;
853 hwconf
.pciInfo
.devNum
= devnum
= PCI_SLOT(pdev
->devfn
) << 3;
854 hwconf
.pciInfo
.pdev
= pdev
;
855 printk(KERN_INFO
"Found MOXA %s board(BusNo=%d,DevNo=%d)\n",
856 mxser_brdname
[(int) (mxser_pcibrds
[b
].driver_data
) - 1],
857 busnum
, devnum
>> 3);
859 if (m
>= MXSER_BOARDS
)
861 "Too many Smartio/Industio family boards find "
862 "(maximum %d), board not configured\n",
865 if (pci_enable_device(pdev
)) {
866 printk(KERN_ERR
"Moxa SmartI/O PCI enable "
870 retval
= mxser_get_PCI_conf(busnum
, devnum
,
871 (int)mxser_pcibrds
[b
].driver_data
,
874 if (retval
== MXSER_ERR_IRQ
)
876 "Invalid interrupt number, "
877 "board not configured\n");
878 else if (retval
== MXSER_ERR_IRQ_CONFLIT
)
880 "Invalid interrupt number, "
881 "board not configured\n");
882 else if (retval
== MXSER_ERR_VECTOR
)
884 "Invalid interrupt vector, "
885 "board not configured\n");
886 else if (retval
== MXSER_ERR_IOADDR
)
888 "Invalid I/O address, "
889 "board not configured\n");
892 mxser_getcfg(m
, &hwconf
);
893 /* init mxsercfg first,
894 * or mxsercfg data is not correct on ISR.
896 /* mxser_initbrd will hook ISR. */
897 if (mxser_initbrd(m
, &hwconf
) < 0)
900 /* Keep an extra reference if we succeeded. It will
901 be returned at unload time */
907 retval
= tty_register_driver(mxvar_sdriver
);
909 printk(KERN_ERR
"Couldn't install MOXA Smartio/Industio family"
911 put_tty_driver(mxvar_sdriver
);
913 for (i
= 0; i
< MXSER_BOARDS
; i
++) {
914 if (mxsercfg
[i
].board_type
== -1)
917 free_irq(mxsercfg
[i
].irq
, &mxvar_table
[i
* MXSER_PORTS_PER_BOARD
]);
918 /* todo: release io, vector */
927 static void mxser_do_softint(struct work_struct
*work
)
929 struct mxser_struct
*info
=
930 container_of(work
, struct mxser_struct
, tqueue
);
931 struct tty_struct
*tty
;
936 if (test_and_clear_bit(MXSER_EVENT_TXLOW
, &info
->event
))
938 if (test_and_clear_bit(MXSER_EVENT_HANGUP
, &info
->event
))
943 static unsigned char mxser_get_msr(int baseaddr
, int mode
, int port
, struct mxser_struct
*info
)
945 unsigned char status
= 0;
947 status
= inb(baseaddr
+ UART_MSR
);
949 mxser_msr
[port
] &= 0x0F;
950 mxser_msr
[port
] |= status
;
951 status
= mxser_msr
[port
];
959 * This routine is called whenever a serial port is opened. It
960 * enables interrupts for a serial port, linking in its async structure into
961 * the IRQ chain. It also performs the serial-specific
962 * initialization for the tty structure.
964 static int mxser_open(struct tty_struct
*tty
, struct file
*filp
)
966 struct mxser_struct
*info
;
969 /* initialize driver_data in case something fails */
970 tty
->driver_data
= NULL
;
973 if (line
== MXSER_PORTS
)
975 if (line
< 0 || line
> MXSER_PORTS
)
977 info
= mxvar_table
+ line
;
981 tty
->driver_data
= info
;
984 * Start up serial port
986 retval
= mxser_startup(info
);
990 retval
= mxser_block_til_ready(tty
, filp
, info
);
996 if ((info
->count
== 1) && (info
->flags
& ASYNC_SPLIT_TERMIOS
)) {
997 if (tty
->driver
->subtype
== SERIAL_TYPE_NORMAL
)
998 *tty
->termios
= info
->normal_termios
;
1000 *tty
->termios
= info
->callout_termios
;
1001 mxser_change_speed(info
, NULL
);
1004 info
->session
= process_session(current
);
1005 info
->pgrp
= process_group(current
);
1008 status = mxser_get_msr(info->base, 0, info->port);
1009 mxser_check_modem_status(info, status);
1012 /* unmark here for very high baud rate (ex. 921600 bps) used */
1013 tty
->low_latency
= 1;
1018 * This routine is called when the serial port gets closed. First, we
1019 * wait for the last remaining data to be sent. Then, we unlink its
1020 * async structure from the interrupt chain if necessary, and we free
1021 * that IRQ if nothing is left in the chain.
1023 static void mxser_close(struct tty_struct
*tty
, struct file
*filp
)
1025 struct mxser_struct
*info
= tty
->driver_data
;
1027 unsigned long timeout
;
1028 unsigned long flags
;
1029 struct tty_ldisc
*ld
;
1031 if (tty
->index
== MXSER_PORTS
)
1036 spin_lock_irqsave(&info
->slock
, flags
);
1038 if (tty_hung_up_p(filp
)) {
1039 spin_unlock_irqrestore(&info
->slock
, flags
);
1042 if ((tty
->count
== 1) && (info
->count
!= 1)) {
1044 * Uh, oh. tty->count is 1, which means that the tty
1045 * structure will be freed. Info->count should always
1046 * be one in these conditions. If it's greater than
1047 * one, we've got real problems, since it means the
1048 * serial port won't be shutdown.
1050 printk(KERN_ERR
"mxser_close: bad serial port count; "
1051 "tty->count is 1, info->count is %d\n", info
->count
);
1054 if (--info
->count
< 0) {
1055 printk(KERN_ERR
"mxser_close: bad serial port count for "
1056 "ttys%d: %d\n", info
->port
, info
->count
);
1060 spin_unlock_irqrestore(&info
->slock
, flags
);
1063 info
->flags
|= ASYNC_CLOSING
;
1064 spin_unlock_irqrestore(&info
->slock
, flags
);
1066 * Save the termios structure, since this port may have
1067 * separate termios for callout and dialin.
1069 if (info
->flags
& ASYNC_NORMAL_ACTIVE
)
1070 info
->normal_termios
= *tty
->termios
;
1072 * Now we wait for the transmit buffer to clear; and we notify
1073 * the line discipline to only process XON/XOFF characters.
1076 if (info
->closing_wait
!= ASYNC_CLOSING_WAIT_NONE
)
1077 tty_wait_until_sent(tty
, info
->closing_wait
);
1079 * At this point we stop accepting input. To do this, we
1080 * disable the receive line status interrupts, and tell the
1081 * interrupt driver to stop checking the data ready bit in the
1082 * line status register.
1084 info
->IER
&= ~UART_IER_RLSI
;
1085 if (info
->IsMoxaMustChipFlag
)
1086 info
->IER
&= ~MOXA_MUST_RECV_ISR
;
1088 info->read_status_mask &= ~UART_LSR_DR;
1090 if (info
->flags
& ASYNC_INITIALIZED
) {
1091 outb(info
->IER
, info
->base
+ UART_IER
);
1093 * Before we drop DTR, make sure the UART transmitter
1094 * has completely drained; this is especially
1095 * important if there is a transmit FIFO!
1097 timeout
= jiffies
+ HZ
;
1098 while (!(inb(info
->base
+ UART_LSR
) & UART_LSR_TEMT
)) {
1099 schedule_timeout_interruptible(5);
1100 if (time_after(jiffies
, timeout
))
1104 mxser_shutdown(info
);
1106 if (tty
->driver
->flush_buffer
)
1107 tty
->driver
->flush_buffer(tty
);
1109 ld
= tty_ldisc_ref(tty
);
1111 if (ld
->flush_buffer
)
1112 ld
->flush_buffer(tty
);
1113 tty_ldisc_deref(ld
);
1119 if (info
->blocked_open
) {
1120 if (info
->close_delay
)
1121 schedule_timeout_interruptible(info
->close_delay
);
1122 wake_up_interruptible(&info
->open_wait
);
1125 info
->flags
&= ~(ASYNC_NORMAL_ACTIVE
| ASYNC_CLOSING
);
1126 wake_up_interruptible(&info
->close_wait
);
1130 static int mxser_write(struct tty_struct
*tty
, const unsigned char *buf
, int count
)
1133 struct mxser_struct
*info
= tty
->driver_data
;
1134 unsigned long flags
;
1136 if (!info
->xmit_buf
)
1140 c
= min_t(int, count
, min(SERIAL_XMIT_SIZE
- info
->xmit_cnt
- 1,
1141 SERIAL_XMIT_SIZE
- info
->xmit_head
));
1145 memcpy(info
->xmit_buf
+ info
->xmit_head
, buf
, c
);
1146 spin_lock_irqsave(&info
->slock
, flags
);
1147 info
->xmit_head
= (info
->xmit_head
+ c
) &
1148 (SERIAL_XMIT_SIZE
- 1);
1149 info
->xmit_cnt
+= c
;
1150 spin_unlock_irqrestore(&info
->slock
, flags
);
1157 if (info
->xmit_cnt
&& !tty
->stopped
&& !(info
->IER
& UART_IER_THRI
)) {
1158 if (!tty
->hw_stopped
||
1159 (info
->type
== PORT_16550A
) ||
1160 (info
->IsMoxaMustChipFlag
)) {
1161 spin_lock_irqsave(&info
->slock
, flags
);
1162 info
->IER
|= UART_IER_THRI
;
1163 outb(info
->IER
, info
->base
+ UART_IER
);
1164 spin_unlock_irqrestore(&info
->slock
, flags
);
1170 static void mxser_put_char(struct tty_struct
*tty
, unsigned char ch
)
1172 struct mxser_struct
*info
= tty
->driver_data
;
1173 unsigned long flags
;
1175 if (!info
->xmit_buf
)
1178 if (info
->xmit_cnt
>= SERIAL_XMIT_SIZE
- 1)
1181 spin_lock_irqsave(&info
->slock
, flags
);
1182 info
->xmit_buf
[info
->xmit_head
++] = ch
;
1183 info
->xmit_head
&= SERIAL_XMIT_SIZE
- 1;
1185 spin_unlock_irqrestore(&info
->slock
, flags
);
1186 if (!tty
->stopped
&& !(info
->IER
& UART_IER_THRI
)) {
1187 if (!tty
->hw_stopped
||
1188 (info
->type
== PORT_16550A
) ||
1189 info
->IsMoxaMustChipFlag
) {
1190 spin_lock_irqsave(&info
->slock
, flags
);
1191 info
->IER
|= UART_IER_THRI
;
1192 outb(info
->IER
, info
->base
+ UART_IER
);
1193 spin_unlock_irqrestore(&info
->slock
, flags
);
1199 static void mxser_flush_chars(struct tty_struct
*tty
)
1201 struct mxser_struct
*info
= tty
->driver_data
;
1202 unsigned long flags
;
1204 if (info
->xmit_cnt
<= 0 ||
1208 (info
->type
!= PORT_16550A
) &&
1209 (!info
->IsMoxaMustChipFlag
)
1213 spin_lock_irqsave(&info
->slock
, flags
);
1215 info
->IER
|= UART_IER_THRI
;
1216 outb(info
->IER
, info
->base
+ UART_IER
);
1218 spin_unlock_irqrestore(&info
->slock
, flags
);
1221 static int mxser_write_room(struct tty_struct
*tty
)
1223 struct mxser_struct
*info
= tty
->driver_data
;
1226 ret
= SERIAL_XMIT_SIZE
- info
->xmit_cnt
- 1;
1232 static int mxser_chars_in_buffer(struct tty_struct
*tty
)
1234 struct mxser_struct
*info
= tty
->driver_data
;
1235 return info
->xmit_cnt
;
1238 static void mxser_flush_buffer(struct tty_struct
*tty
)
1240 struct mxser_struct
*info
= tty
->driver_data
;
1242 unsigned long flags
;
1245 spin_lock_irqsave(&info
->slock
, flags
);
1246 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
1248 /* below added by shinhay */
1249 fcr
= inb(info
->base
+ UART_FCR
);
1250 outb((fcr
| UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
),
1251 info
->base
+ UART_FCR
);
1252 outb(fcr
, info
->base
+ UART_FCR
);
1254 spin_unlock_irqrestore(&info
->slock
, flags
);
1255 /* above added by shinhay */
1257 wake_up_interruptible(&tty
->write_wait
);
1258 if ((tty
->flags
& (1 << TTY_DO_WRITE_WAKEUP
)) && tty
->ldisc
.write_wakeup
)
1259 (tty
->ldisc
.write_wakeup
) (tty
);
1262 static int mxser_ioctl(struct tty_struct
*tty
, struct file
*file
, unsigned int cmd
, unsigned long arg
)
1264 struct mxser_struct
*info
= tty
->driver_data
;
1266 struct async_icount cprev
, cnow
; /* kernel counter temps */
1267 struct serial_icounter_struct __user
*p_cuser
;
1268 unsigned long templ
;
1269 unsigned long flags
;
1270 void __user
*argp
= (void __user
*)arg
;
1272 if (tty
->index
== MXSER_PORTS
)
1273 return mxser_ioctl_special(cmd
, argp
);
1275 /* following add by Victor Yu. 01-05-2004 */
1276 if (cmd
== MOXA_SET_OP_MODE
|| cmd
== MOXA_GET_OP_MODE
) {
1278 static unsigned char ModeMask
[] = { 0xfc, 0xf3, 0xcf, 0x3f };
1280 unsigned char val
, mask
;
1283 if (cmd
== MOXA_SET_OP_MODE
) {
1284 if (get_user(opmode
, (int __user
*) argp
))
1286 if (opmode
!= RS232_MODE
&&
1287 opmode
!= RS485_2WIRE_MODE
&&
1288 opmode
!= RS422_MODE
&&
1289 opmode
!= RS485_4WIRE_MODE
)
1293 val
= inb(info
->opmode_ioaddr
);
1295 val
|= (opmode
<< shiftbit
);
1296 outb(val
, info
->opmode_ioaddr
);
1299 opmode
= inb(info
->opmode_ioaddr
) >> shiftbit
;
1300 opmode
&= OP_MODE_MASK
;
1301 if (copy_to_user(argp
, &opmode
, sizeof(int)))
1306 /* above add by Victor Yu. 01-05-2004 */
1308 if ((cmd
!= TIOCGSERIAL
) && (cmd
!= TIOCMIWAIT
) && (cmd
!= TIOCGICOUNT
)) {
1309 if (tty
->flags
& (1 << TTY_IO_ERROR
))
1313 case TCSBRK
: /* SVID version: non-zero arg --> no break */
1314 retval
= tty_check_change(tty
);
1317 tty_wait_until_sent(tty
, 0);
1319 mxser_send_break(info
, HZ
/ 4); /* 1/4 second */
1321 case TCSBRKP
: /* support for POSIX tcsendbreak() */
1322 retval
= tty_check_change(tty
);
1325 tty_wait_until_sent(tty
, 0);
1326 mxser_send_break(info
, arg
? arg
* (HZ
/ 10) : HZ
/ 4);
1329 return put_user(C_CLOCAL(tty
) ? 1 : 0, (unsigned long __user
*)argp
);
1331 if (get_user(templ
, (unsigned long __user
*) argp
))
1334 tty
->termios
->c_cflag
= ((tty
->termios
->c_cflag
& ~CLOCAL
) | (arg
? CLOCAL
: 0));
1337 return mxser_get_serial_info(info
, argp
);
1339 return mxser_set_serial_info(info
, argp
);
1340 case TIOCSERGETLSR
: /* Get line status register */
1341 return mxser_get_lsr_info(info
, argp
);
1343 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1344 * - mask passed in arg for lines of interest
1345 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1346 * Caller should use TIOCGICOUNT to see which one it was
1349 DECLARE_WAITQUEUE(wait
, current
);
1351 spin_lock_irqsave(&info
->slock
, flags
);
1352 cprev
= info
->icount
; /* note the counters on entry */
1353 spin_unlock_irqrestore(&info
->slock
, flags
);
1355 add_wait_queue(&info
->delta_msr_wait
, &wait
);
1357 spin_lock_irqsave(&info
->slock
, flags
);
1358 cnow
= info
->icount
; /* atomic copy */
1359 spin_unlock_irqrestore(&info
->slock
, flags
);
1361 set_current_state(TASK_INTERRUPTIBLE
);
1362 if (((arg
& TIOCM_RNG
) &&
1363 (cnow
.rng
!= cprev
.rng
)) ||
1364 ((arg
& TIOCM_DSR
) &&
1365 (cnow
.dsr
!= cprev
.dsr
)) ||
1366 ((arg
& TIOCM_CD
) &&
1367 (cnow
.dcd
!= cprev
.dcd
)) ||
1368 ((arg
& TIOCM_CTS
) &&
1369 (cnow
.cts
!= cprev
.cts
))) {
1373 /* see if a signal did it */
1374 if (signal_pending(current
)) {
1380 current
->state
= TASK_RUNNING
;
1381 remove_wait_queue(&info
->delta_msr_wait
, &wait
);
1386 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1387 * Return: write counters to the user passed counter struct
1388 * NB: both 1->0 and 0->1 transitions are counted except for
1389 * RI where only 0->1 is counted.
1392 spin_lock_irqsave(&info
->slock
, flags
);
1393 cnow
= info
->icount
;
1394 spin_unlock_irqrestore(&info
->slock
, flags
);
1396 /* modified by casper 1/11/2000 */
1397 if (put_user(cnow
.frame
, &p_cuser
->frame
))
1399 if (put_user(cnow
.brk
, &p_cuser
->brk
))
1401 if (put_user(cnow
.overrun
, &p_cuser
->overrun
))
1403 if (put_user(cnow
.buf_overrun
, &p_cuser
->buf_overrun
))
1405 if (put_user(cnow
.parity
, &p_cuser
->parity
))
1407 if (put_user(cnow
.rx
, &p_cuser
->rx
))
1409 if (put_user(cnow
.tx
, &p_cuser
->tx
))
1411 put_user(cnow
.cts
, &p_cuser
->cts
);
1412 put_user(cnow
.dsr
, &p_cuser
->dsr
);
1413 put_user(cnow
.rng
, &p_cuser
->rng
);
1414 put_user(cnow
.dcd
, &p_cuser
->dcd
);
1416 case MOXA_HighSpeedOn
:
1417 return put_user(info
->baud_base
!= 115200 ? 1 : 0, (int __user
*)argp
);
1418 case MOXA_SDS_RSTICOUNTER
: {
1419 info
->mon_data
.rxcnt
= 0;
1420 info
->mon_data
.txcnt
= 0;
1423 /* (above) added by James. */
1424 case MOXA_ASPP_SETBAUD
:{
1426 if (get_user(baud
, (long __user
*)argp
))
1428 mxser_set_baud(info
, baud
);
1431 case MOXA_ASPP_GETBAUD
:
1432 if (copy_to_user(argp
, &info
->realbaud
, sizeof(long)))
1437 case MOXA_ASPP_OQUEUE
:{
1440 len
= mxser_chars_in_buffer(tty
);
1442 lsr
= inb(info
->base
+ UART_LSR
) & UART_LSR_TEMT
;
1444 len
+= (lsr
? 0 : 1);
1446 if (copy_to_user(argp
, &len
, sizeof(int)))
1451 case MOXA_ASPP_MON
: {
1454 /* info->mon_data.ser_param = tty->termios->c_cflag; */
1456 status
= mxser_get_msr(info
->base
, 1, info
->port
, info
);
1457 mxser_check_modem_status(info
, status
);
1459 mcr
= inb(info
->base
+ UART_MCR
);
1460 if (mcr
& MOXA_MUST_MCR_XON_FLAG
)
1461 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_XOFFHOLD
;
1463 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_XOFFHOLD
;
1465 if (mcr
& MOXA_MUST_MCR_TX_XON
)
1466 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_XOFFXENT
;
1468 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_XOFFXENT
;
1470 if (info
->tty
->hw_stopped
)
1471 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_CTSHOLD
;
1473 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_CTSHOLD
;
1475 if (copy_to_user(argp
, &info
->mon_data
,
1476 sizeof(struct mxser_mon
)))
1482 case MOXA_ASPP_LSTATUS
: {
1483 if (copy_to_user(argp
, &info
->err_shadow
,
1484 sizeof(unsigned char)))
1487 info
->err_shadow
= 0;
1490 case MOXA_SET_BAUD_METHOD
: {
1493 if (get_user(method
, (int __user
*)argp
))
1495 mxser_set_baud_method
[info
->port
] = method
;
1496 if (copy_to_user(argp
, &method
, sizeof(int)))
1502 return -ENOIOCTLCMD
;
1508 #define CMSPAR 010000000000
1511 static int mxser_ioctl_special(unsigned int cmd
, void __user
*argp
)
1513 int i
, result
, status
;
1517 if (copy_to_user(argp
, mxsercfg
,
1518 sizeof(struct mxser_hwconf
) * 4))
1521 case MOXA_GET_MAJOR
:
1522 if (copy_to_user(argp
, &ttymajor
, sizeof(int)))
1526 case MOXA_GET_CUMAJOR
:
1527 if (copy_to_user(argp
, &calloutmajor
, sizeof(int)))
1531 case MOXA_CHKPORTENABLE
:
1533 for (i
= 0; i
< MXSER_PORTS
; i
++) {
1534 if (mxvar_table
[i
].base
)
1537 return put_user(result
, (unsigned long __user
*)argp
);
1538 case MOXA_GETDATACOUNT
:
1539 if (copy_to_user(argp
, &mxvar_log
, sizeof(mxvar_log
)))
1542 case MOXA_GETMSTATUS
:
1543 for (i
= 0; i
< MXSER_PORTS
; i
++) {
1545 if (!mxvar_table
[i
].base
) {
1546 GMStatus
[i
].dcd
= 0;
1547 GMStatus
[i
].dsr
= 0;
1548 GMStatus
[i
].cts
= 0;
1552 if (!mxvar_table
[i
].tty
|| !mxvar_table
[i
].tty
->termios
)
1553 GMStatus
[i
].cflag
= mxvar_table
[i
].normal_termios
.c_cflag
;
1555 GMStatus
[i
].cflag
= mxvar_table
[i
].tty
->termios
->c_cflag
;
1557 status
= inb(mxvar_table
[i
].base
+ UART_MSR
);
1558 if (status
& 0x80 /*UART_MSR_DCD */ )
1559 GMStatus
[i
].dcd
= 1;
1561 GMStatus
[i
].dcd
= 0;
1563 if (status
& 0x20 /*UART_MSR_DSR */ )
1564 GMStatus
[i
].dsr
= 1;
1566 GMStatus
[i
].dsr
= 0;
1569 if (status
& 0x10 /*UART_MSR_CTS */ )
1570 GMStatus
[i
].cts
= 1;
1572 GMStatus
[i
].cts
= 0;
1574 if (copy_to_user(argp
, GMStatus
,
1575 sizeof(struct mxser_mstatus
) * MXSER_PORTS
))
1578 case MOXA_ASPP_MON_EXT
: {
1582 unsigned cflag
, iflag
;
1584 for (i
= 0; i
< MXSER_PORTS
; i
++) {
1585 if (!mxvar_table
[i
].base
)
1588 status
= mxser_get_msr(mxvar_table
[i
].base
, 0,
1589 i
, &(mxvar_table
[i
]));
1591 mxser_check_modem_status(&mxvar_table[i],
1594 if (status
& UART_MSR_TERI
)
1595 mxvar_table
[i
].icount
.rng
++;
1596 if (status
& UART_MSR_DDSR
)
1597 mxvar_table
[i
].icount
.dsr
++;
1598 if (status
& UART_MSR_DDCD
)
1599 mxvar_table
[i
].icount
.dcd
++;
1600 if (status
& UART_MSR_DCTS
)
1601 mxvar_table
[i
].icount
.cts
++;
1603 mxvar_table
[i
].mon_data
.modem_status
= status
;
1604 mon_data_ext
.rx_cnt
[i
] = mxvar_table
[i
].mon_data
.rxcnt
;
1605 mon_data_ext
.tx_cnt
[i
] = mxvar_table
[i
].mon_data
.txcnt
;
1606 mon_data_ext
.up_rxcnt
[i
] = mxvar_table
[i
].mon_data
.up_rxcnt
;
1607 mon_data_ext
.up_txcnt
[i
] = mxvar_table
[i
].mon_data
.up_txcnt
;
1608 mon_data_ext
.modem_status
[i
] = mxvar_table
[i
].mon_data
.modem_status
;
1609 mon_data_ext
.baudrate
[i
] = mxvar_table
[i
].realbaud
;
1611 if (!mxvar_table
[i
].tty
|| !mxvar_table
[i
].tty
->termios
) {
1612 cflag
= mxvar_table
[i
].normal_termios
.c_cflag
;
1613 iflag
= mxvar_table
[i
].normal_termios
.c_iflag
;
1615 cflag
= mxvar_table
[i
].tty
->termios
->c_cflag
;
1616 iflag
= mxvar_table
[i
].tty
->termios
->c_iflag
;
1619 mon_data_ext
.databits
[i
] = cflag
& CSIZE
;
1621 mon_data_ext
.stopbits
[i
] = cflag
& CSTOPB
;
1623 mon_data_ext
.parity
[i
] = cflag
& (PARENB
| PARODD
| CMSPAR
);
1625 mon_data_ext
.flowctrl
[i
] = 0x00;
1627 if (cflag
& CRTSCTS
)
1628 mon_data_ext
.flowctrl
[i
] |= 0x03;
1630 if (iflag
& (IXON
| IXOFF
))
1631 mon_data_ext
.flowctrl
[i
] |= 0x0C;
1633 if (mxvar_table
[i
].type
== PORT_16550A
)
1634 mon_data_ext
.fifo
[i
] = 1;
1636 mon_data_ext
.fifo
[i
] = 0;
1640 opmode
= inb(mxvar_table
[i
].opmode_ioaddr
) >> shiftbit
;
1641 opmode
&= OP_MODE_MASK
;
1643 mon_data_ext
.iftype
[i
] = opmode
;
1646 if (copy_to_user(argp
, &mon_data_ext
, sizeof(struct mxser_mon_ext
)))
1653 return -ENOIOCTLCMD
;
1658 static void mxser_stoprx(struct tty_struct
*tty
)
1660 struct mxser_struct
*info
= tty
->driver_data
;
1661 /* unsigned long flags; */
1663 info
->ldisc_stop_rx
= 1;
1665 /* MX_LOCK(&info->slock); */
1666 /* following add by Victor Yu. 09-02-2002 */
1667 if (info
->IsMoxaMustChipFlag
) {
1668 info
->IER
&= ~MOXA_MUST_RECV_ISR
;
1669 outb(info
->IER
, info
->base
+ UART_IER
);
1671 /* above add by Victor Yu. 09-02-2002 */
1672 info
->x_char
= STOP_CHAR(tty
);
1673 /* mask by Victor Yu. 09-02-2002 */
1674 /* outb(info->IER, 0); */
1675 outb(0, info
->base
+ UART_IER
);
1676 info
->IER
|= UART_IER_THRI
;
1677 /* force Tx interrupt */
1678 outb(info
->IER
, info
->base
+ UART_IER
);
1679 } /* add by Victor Yu. 09-02-2002 */
1680 /* MX_UNLOCK(&info->slock); */
1683 if (info
->tty
->termios
->c_cflag
& CRTSCTS
) {
1684 /* MX_LOCK(&info->slock); */
1685 info
->MCR
&= ~UART_MCR_RTS
;
1686 outb(info
->MCR
, info
->base
+ UART_MCR
);
1687 /* MX_UNLOCK(&info->slock); */
1691 static void mxser_startrx(struct tty_struct
*tty
)
1693 struct mxser_struct
*info
= tty
->driver_data
;
1694 /* unsigned long flags; */
1696 info
->ldisc_stop_rx
= 0;
1701 /* MX_LOCK(&info->slock); */
1703 /* following add by Victor Yu. 09-02-2002 */
1704 if (info
->IsMoxaMustChipFlag
) {
1705 info
->IER
|= MOXA_MUST_RECV_ISR
;
1706 outb(info
->IER
, info
->base
+ UART_IER
);
1708 /* above add by Victor Yu. 09-02-2002 */
1710 info
->x_char
= START_CHAR(tty
);
1711 /* mask by Victor Yu. 09-02-2002 */
1712 /* outb(info->IER, 0); */
1713 /* add by Victor Yu. 09-02-2002 */
1714 outb(0, info
->base
+ UART_IER
);
1715 /* force Tx interrupt */
1716 info
->IER
|= UART_IER_THRI
;
1717 outb(info
->IER
, info
->base
+ UART_IER
);
1718 } /* add by Victor Yu. 09-02-2002 */
1719 /* MX_UNLOCK(&info->slock); */
1723 if (info
->tty
->termios
->c_cflag
& CRTSCTS
) {
1724 /* MX_LOCK(&info->slock); */
1725 info
->MCR
|= UART_MCR_RTS
;
1726 outb(info
->MCR
, info
->base
+ UART_MCR
);
1727 /* MX_UNLOCK(&info->slock); */
1732 * This routine is called by the upper-layer tty layer to signal that
1733 * incoming characters should be throttled.
1735 static void mxser_throttle(struct tty_struct
*tty
)
1737 /* struct mxser_struct *info = tty->driver_data; */
1738 /* unsigned long flags; */
1740 /* MX_LOCK(&info->slock); */
1742 /* MX_UNLOCK(&info->slock); */
1745 static void mxser_unthrottle(struct tty_struct
*tty
)
1747 /* struct mxser_struct *info = tty->driver_data; */
1748 /* unsigned long flags; */
1750 /* MX_LOCK(&info->slock); */
1752 /* MX_UNLOCK(&info->slock); */
1755 static void mxser_set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
)
1757 struct mxser_struct
*info
= tty
->driver_data
;
1758 unsigned long flags
;
1760 if ((tty
->termios
->c_cflag
!= old_termios
->c_cflag
) ||
1761 (RELEVANT_IFLAG(tty
->termios
->c_iflag
) != RELEVANT_IFLAG(old_termios
->c_iflag
))) {
1763 mxser_change_speed(info
, old_termios
);
1765 if ((old_termios
->c_cflag
& CRTSCTS
) &&
1766 !(tty
->termios
->c_cflag
& CRTSCTS
)) {
1767 tty
->hw_stopped
= 0;
1772 /* Handle sw stopped */
1773 if ((old_termios
->c_iflag
& IXON
) &&
1774 !(tty
->termios
->c_iflag
& IXON
)) {
1777 /* following add by Victor Yu. 09-02-2002 */
1778 if (info
->IsMoxaMustChipFlag
) {
1779 spin_lock_irqsave(&info
->slock
, flags
);
1780 DISABLE_MOXA_MUST_RX_SOFTWARE_FLOW_CONTROL(info
->base
);
1781 spin_unlock_irqrestore(&info
->slock
, flags
);
1783 /* above add by Victor Yu. 09-02-2002 */
1790 * mxser_stop() and mxser_start()
1792 * This routines are called before setting or resetting tty->stopped.
1793 * They enable or disable transmitter interrupts, as necessary.
1795 static void mxser_stop(struct tty_struct
*tty
)
1797 struct mxser_struct
*info
= tty
->driver_data
;
1798 unsigned long flags
;
1800 spin_lock_irqsave(&info
->slock
, flags
);
1801 if (info
->IER
& UART_IER_THRI
) {
1802 info
->IER
&= ~UART_IER_THRI
;
1803 outb(info
->IER
, info
->base
+ UART_IER
);
1805 spin_unlock_irqrestore(&info
->slock
, flags
);
1808 static void mxser_start(struct tty_struct
*tty
)
1810 struct mxser_struct
*info
= tty
->driver_data
;
1811 unsigned long flags
;
1813 spin_lock_irqsave(&info
->slock
, flags
);
1814 if (info
->xmit_cnt
&& info
->xmit_buf
&& !(info
->IER
& UART_IER_THRI
)) {
1815 info
->IER
|= UART_IER_THRI
;
1816 outb(info
->IER
, info
->base
+ UART_IER
);
1818 spin_unlock_irqrestore(&info
->slock
, flags
);
1822 * mxser_wait_until_sent() --- wait until the transmitter is empty
1824 static void mxser_wait_until_sent(struct tty_struct
*tty
, int timeout
)
1826 struct mxser_struct
*info
= tty
->driver_data
;
1827 unsigned long orig_jiffies
, char_time
;
1830 if (info
->type
== PORT_UNKNOWN
)
1833 if (info
->xmit_fifo_size
== 0)
1834 return; /* Just in case.... */
1836 orig_jiffies
= jiffies
;
1838 * Set the check interval to be 1/5 of the estimated time to
1839 * send a single character, and make it at least 1. The check
1840 * interval should also be less than the timeout.
1842 * Note: we have to use pretty tight timings here to satisfy
1845 char_time
= (info
->timeout
- HZ
/ 50) / info
->xmit_fifo_size
;
1846 char_time
= char_time
/ 5;
1849 if (timeout
&& timeout
< char_time
)
1850 char_time
= timeout
;
1852 * If the transmitter hasn't cleared in twice the approximate
1853 * amount of time to send the entire FIFO, it probably won't
1854 * ever clear. This assumes the UART isn't doing flow
1855 * control, which is currently the case. Hence, if it ever
1856 * takes longer than info->timeout, this is probably due to a
1857 * UART bug of some kind. So, we clamp the timeout parameter at
1860 if (!timeout
|| timeout
> 2 * info
->timeout
)
1861 timeout
= 2 * info
->timeout
;
1862 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1863 printk(KERN_DEBUG
"In rs_wait_until_sent(%d) check=%lu...",
1864 timeout
, char_time
);
1865 printk("jiff=%lu...", jiffies
);
1867 while (!((lsr
= inb(info
->base
+ UART_LSR
)) & UART_LSR_TEMT
)) {
1868 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1869 printk("lsr = %d (jiff=%lu)...", lsr
, jiffies
);
1871 schedule_timeout_interruptible(char_time
);
1872 if (signal_pending(current
))
1874 if (timeout
&& time_after(jiffies
, orig_jiffies
+ timeout
))
1877 set_current_state(TASK_RUNNING
);
1879 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1880 printk("lsr = %d (jiff=%lu)...done\n", lsr
, jiffies
);
1886 * This routine is called by tty_hangup() when a hangup is signaled.
1888 void mxser_hangup(struct tty_struct
*tty
)
1890 struct mxser_struct
*info
= tty
->driver_data
;
1892 mxser_flush_buffer(tty
);
1893 mxser_shutdown(info
);
1896 info
->flags
&= ~ASYNC_NORMAL_ACTIVE
;
1898 wake_up_interruptible(&info
->open_wait
);
1902 /* added by James 03-12-2004. */
1904 * mxser_rs_break() --- routine which turns the break handling on or off
1906 static void mxser_rs_break(struct tty_struct
*tty
, int break_state
)
1908 struct mxser_struct
*info
= tty
->driver_data
;
1909 unsigned long flags
;
1911 spin_lock_irqsave(&info
->slock
, flags
);
1912 if (break_state
== -1)
1913 outb(inb(info
->base
+ UART_LCR
) | UART_LCR_SBC
,
1914 info
->base
+ UART_LCR
);
1916 outb(inb(info
->base
+ UART_LCR
) & ~UART_LCR_SBC
,
1917 info
->base
+ UART_LCR
);
1918 spin_unlock_irqrestore(&info
->slock
, flags
);
1921 /* (above) added by James. */
1925 * This is the serial driver's generic interrupt routine
1927 static irqreturn_t
mxser_interrupt(int irq
, void *dev_id
)
1930 struct mxser_struct
*info
;
1931 struct mxser_struct
*port
;
1932 int max
, irqbits
, bits
, msr
;
1933 int pass_counter
= 0;
1934 int handled
= IRQ_NONE
;
1937 /* spin_lock(&gm_lock); */
1939 for (i
= 0; i
< MXSER_BOARDS
; i
++) {
1940 if (dev_id
== &(mxvar_table
[i
* MXSER_PORTS_PER_BOARD
])) {
1946 if (i
== MXSER_BOARDS
)
1950 max
= mxser_numports
[mxsercfg
[i
].board_type
- 1];
1952 irqbits
= inb(port
->vector
) & port
->vectormask
;
1953 if (irqbits
== port
->vectormask
)
1956 handled
= IRQ_HANDLED
;
1957 for (i
= 0, bits
= 1; i
< max
; i
++, irqbits
|= bits
, bits
<<= 1) {
1958 if (irqbits
== port
->vectormask
)
1964 /* following add by Victor Yu. 09-13-2002 */
1965 iir
= inb(info
->base
+ UART_IIR
);
1966 if (iir
& UART_IIR_NO_INT
)
1968 iir
&= MOXA_MUST_IIR_MASK
;
1970 status
= inb(info
->base
+ UART_LSR
);
1971 outb(0x27, info
->base
+ UART_FCR
);
1972 inb(info
->base
+ UART_MSR
);
1975 /* above add by Victor Yu. 09-13-2002 */
1977 if (info->tty->flip.count < TTY_FLIPBUF_SIZE / 4) {
1978 info->IER |= MOXA_MUST_RECV_ISR;
1979 outb(info->IER, info->base + UART_IER);
1984 /* mask by Victor Yu. 09-13-2002
1986 (inb(info->base + UART_IIR) & UART_IIR_NO_INT) )
1989 /* mask by Victor Yu. 09-02-2002
1990 status = inb(info->base + UART_LSR) & info->read_status_mask;
1993 /* following add by Victor Yu. 09-02-2002 */
1994 status
= inb(info
->base
+ UART_LSR
);
1996 if (status
& UART_LSR_PE
)
1997 info
->err_shadow
|= NPPI_NOTIFY_PARITY
;
1998 if (status
& UART_LSR_FE
)
1999 info
->err_shadow
|= NPPI_NOTIFY_FRAMING
;
2000 if (status
& UART_LSR_OE
)
2001 info
->err_shadow
|= NPPI_NOTIFY_HW_OVERRUN
;
2002 if (status
& UART_LSR_BI
)
2003 info
->err_shadow
|= NPPI_NOTIFY_BREAK
;
2005 if (info
->IsMoxaMustChipFlag
) {
2007 if ( (status & 0x02) && !(status & 0x01) ) {
2008 outb(info->base+UART_FCR, 0x23);
2012 if (iir
== MOXA_MUST_IIR_GDA
||
2013 iir
== MOXA_MUST_IIR_RDA
||
2014 iir
== MOXA_MUST_IIR_RTO
||
2015 iir
== MOXA_MUST_IIR_LSR
)
2016 mxser_receive_chars(info
, &status
);
2019 /* above add by Victor Yu. 09-02-2002 */
2021 status
&= info
->read_status_mask
;
2022 if (status
& UART_LSR_DR
)
2023 mxser_receive_chars(info
, &status
);
2025 msr
= inb(info
->base
+ UART_MSR
);
2026 if (msr
& UART_MSR_ANY_DELTA
) {
2027 mxser_check_modem_status(info
, msr
);
2029 /* following add by Victor Yu. 09-13-2002 */
2030 if (info
->IsMoxaMustChipFlag
) {
2031 if ((iir
== 0x02) && (status
& UART_LSR_THRE
)) {
2032 mxser_transmit_chars(info
);
2035 /* above add by Victor Yu. 09-13-2002 */
2037 if (status
& UART_LSR_THRE
) {
2038 /* 8-2-99 by William
2039 if ( info->x_char || (info->xmit_cnt > 0) )
2041 mxser_transmit_chars(info
);
2045 if (pass_counter
++ > MXSER_ISR_PASS_LIMIT
) {
2046 break; /* Prevent infinite loops */
2051 /* spin_unlock(&gm_lock); */
2055 static void mxser_receive_chars(struct mxser_struct
*info
, int *status
)
2057 struct tty_struct
*tty
= info
->tty
;
2058 unsigned char ch
, gdl
;
2063 unsigned long flags
;
2065 spin_lock_irqsave(&info
->slock
, flags
);
2067 recv_room
= tty
->receive_room
;
2068 if ((recv_room
== 0) && (!info
->ldisc_stop_rx
)) {
2069 /* mxser_throttle(tty); */
2074 /* following add by Victor Yu. 09-02-2002 */
2075 if (info
->IsMoxaMustChipFlag
!= MOXA_OTHER_UART
) {
2077 if (*status
& UART_LSR_SPECIAL
) {
2080 /* following add by Victor Yu. 02-11-2004 */
2081 if (info
->IsMoxaMustChipFlag
== MOXA_MUST_MU860_HWID
&&
2082 (*status
& MOXA_MUST_LSR_RERR
))
2084 /* above add by Victor Yu. 02-14-2004 */
2085 if (*status
& MOXA_MUST_LSR_RERR
)
2088 gdl
= inb(info
->base
+ MOXA_MUST_GDL_REGISTER
);
2090 /* add by Victor Yu. 02-11-2004 */
2091 if (info
->IsMoxaMustChipFlag
== MOXA_MUST_MU150_HWID
)
2092 gdl
&= MOXA_MUST_GDL_MASK
;
2093 if (gdl
>= recv_room
) {
2094 if (!info
->ldisc_stop_rx
) {
2095 /* mxser_throttle(tty); */
2101 ch
= inb(info
->base
+ UART_RX
);
2102 tty_insert_flip_char(tty
, ch
, 0);
2105 if ((cnt >= HI_WATER) && (info->stop_rx == 0)) {
2114 /* above add by Victor Yu. 09-02-2002 */
2120 if ((cnt >= HI_WATER) && (info->stop_rx == 0)) {
2127 ch
= inb(info
->base
+ UART_RX
);
2128 /* following add by Victor Yu. 09-02-2002 */
2129 if (info
->IsMoxaMustChipFlag
&& (*status
& UART_LSR_OE
) /*&& !(*status&UART_LSR_DR) */ )
2130 outb(0x23, info
->base
+ UART_FCR
);
2131 *status
&= info
->read_status_mask
;
2132 /* above add by Victor Yu. 09-02-2002 */
2133 if (*status
& info
->ignore_status_mask
) {
2134 if (++ignored
> 100)
2138 if (*status
& UART_LSR_SPECIAL
) {
2139 if (*status
& UART_LSR_BI
) {
2141 /* added by casper 1/11/2000 */
2144 if (info
->flags
& ASYNC_SAK
)
2146 } else if (*status
& UART_LSR_PE
) {
2148 /* added by casper 1/11/2000 */
2149 info
->icount
.parity
++;
2151 } else if (*status
& UART_LSR_FE
) {
2153 /* added by casper 1/11/2000 */
2154 info
->icount
.frame
++;
2156 } else if (*status
& UART_LSR_OE
) {
2158 /* added by casper 1/11/2000 */
2159 info
->icount
.overrun
++;
2163 tty_insert_flip_char(tty
, ch
, flag
);
2165 if (cnt
>= recv_room
) {
2166 if (!info
->ldisc_stop_rx
) {
2167 /* mxser_throttle(tty); */
2175 /* following add by Victor Yu. 09-02-2002 */
2176 if (info
->IsMoxaMustChipFlag
)
2178 /* above add by Victor Yu. 09-02-2002 */
2180 /* mask by Victor Yu. 09-02-2002
2181 *status = inb(info->base + UART_LSR) & info->read_status_mask;
2183 /* following add by Victor Yu. 09-02-2002 */
2184 *status
= inb(info
->base
+ UART_LSR
);
2185 /* above add by Victor Yu. 09-02-2002 */
2186 } while (*status
& UART_LSR_DR
);
2188 end_intr
: /* add by Victor Yu. 09-02-2002 */
2189 mxvar_log
.rxcnt
[info
->port
] += cnt
;
2190 info
->mon_data
.rxcnt
+= cnt
;
2191 info
->mon_data
.up_rxcnt
+= cnt
;
2192 spin_unlock_irqrestore(&info
->slock
, flags
);
2194 tty_flip_buffer_push(tty
);
2197 static void mxser_transmit_chars(struct mxser_struct
*info
)
2200 unsigned long flags
;
2202 spin_lock_irqsave(&info
->slock
, flags
);
2205 outb(info
->x_char
, info
->base
+ UART_TX
);
2207 mxvar_log
.txcnt
[info
->port
]++;
2208 info
->mon_data
.txcnt
++;
2209 info
->mon_data
.up_txcnt
++;
2211 /* added by casper 1/11/2000 */
2214 spin_unlock_irqrestore(&info
->slock
, flags
);
2218 if (info
->xmit_buf
== 0) {
2219 spin_unlock_irqrestore(&info
->slock
, flags
);
2223 if ((info
->xmit_cnt
<= 0) || info
->tty
->stopped
||
2224 (info
->tty
->hw_stopped
&&
2225 (info
->type
!= PORT_16550A
) &&
2226 (!info
->IsMoxaMustChipFlag
))) {
2227 info
->IER
&= ~UART_IER_THRI
;
2228 outb(info
->IER
, info
->base
+ UART_IER
);
2229 spin_unlock_irqrestore(&info
->slock
, flags
);
2233 cnt
= info
->xmit_cnt
;
2234 count
= info
->xmit_fifo_size
;
2236 outb(info
->xmit_buf
[info
->xmit_tail
++],
2237 info
->base
+ UART_TX
);
2238 info
->xmit_tail
= info
->xmit_tail
& (SERIAL_XMIT_SIZE
- 1);
2239 if (--info
->xmit_cnt
<= 0)
2241 } while (--count
> 0);
2242 mxvar_log
.txcnt
[info
->port
] += (cnt
- info
->xmit_cnt
);
2244 /* added by James 03-12-2004. */
2245 info
->mon_data
.txcnt
+= (cnt
- info
->xmit_cnt
);
2246 info
->mon_data
.up_txcnt
+= (cnt
- info
->xmit_cnt
);
2247 /* (above) added by James. */
2249 /* added by casper 1/11/2000 */
2250 info
->icount
.tx
+= (cnt
- info
->xmit_cnt
);
2253 if (info
->xmit_cnt
< WAKEUP_CHARS
) {
2254 set_bit(MXSER_EVENT_TXLOW
, &info
->event
);
2255 schedule_work(&info
->tqueue
);
2257 if (info
->xmit_cnt
<= 0) {
2258 info
->IER
&= ~UART_IER_THRI
;
2259 outb(info
->IER
, info
->base
+ UART_IER
);
2261 spin_unlock_irqrestore(&info
->slock
, flags
);
2264 static void mxser_check_modem_status(struct mxser_struct
*info
, int status
)
2266 /* update input line counters */
2267 if (status
& UART_MSR_TERI
)
2269 if (status
& UART_MSR_DDSR
)
2271 if (status
& UART_MSR_DDCD
)
2273 if (status
& UART_MSR_DCTS
)
2275 info
->mon_data
.modem_status
= status
;
2276 wake_up_interruptible(&info
->delta_msr_wait
);
2278 if ((info
->flags
& ASYNC_CHECK_CD
) && (status
& UART_MSR_DDCD
)) {
2279 if (status
& UART_MSR_DCD
)
2280 wake_up_interruptible(&info
->open_wait
);
2281 schedule_work(&info
->tqueue
);
2284 if (info
->flags
& ASYNC_CTS_FLOW
) {
2285 if (info
->tty
->hw_stopped
) {
2286 if (status
& UART_MSR_CTS
) {
2287 info
->tty
->hw_stopped
= 0;
2289 if ((info
->type
!= PORT_16550A
) &&
2290 (!info
->IsMoxaMustChipFlag
)) {
2291 info
->IER
|= UART_IER_THRI
;
2292 outb(info
->IER
, info
->base
+ UART_IER
);
2294 set_bit(MXSER_EVENT_TXLOW
, &info
->event
);
2295 schedule_work(&info
->tqueue
); }
2297 if (!(status
& UART_MSR_CTS
)) {
2298 info
->tty
->hw_stopped
= 1;
2299 if ((info
->type
!= PORT_16550A
) &&
2300 (!info
->IsMoxaMustChipFlag
)) {
2301 info
->IER
&= ~UART_IER_THRI
;
2302 outb(info
->IER
, info
->base
+ UART_IER
);
2309 static int mxser_block_til_ready(struct tty_struct
*tty
, struct file
*filp
, struct mxser_struct
*info
)
2311 DECLARE_WAITQUEUE(wait
, current
);
2314 unsigned long flags
;
2317 * If non-blocking mode is set, or the port is not enabled,
2318 * then make the check up front and then exit.
2320 if ((filp
->f_flags
& O_NONBLOCK
) || (tty
->flags
& (1 << TTY_IO_ERROR
))) {
2321 info
->flags
|= ASYNC_NORMAL_ACTIVE
;
2325 if (tty
->termios
->c_cflag
& CLOCAL
)
2329 * Block waiting for the carrier detect and the line to become
2330 * free (i.e., not in use by the callout). While we are in
2331 * this loop, info->count is dropped by one, so that
2332 * mxser_close() knows when to free things. We restore it upon
2333 * exit, either normal or abnormal.
2336 add_wait_queue(&info
->open_wait
, &wait
);
2338 spin_lock_irqsave(&info
->slock
, flags
);
2339 if (!tty_hung_up_p(filp
))
2341 spin_unlock_irqrestore(&info
->slock
, flags
);
2342 info
->blocked_open
++;
2344 spin_lock_irqsave(&info
->slock
, flags
);
2345 outb(inb(info
->base
+ UART_MCR
) |
2346 UART_MCR_DTR
| UART_MCR_RTS
, info
->base
+ UART_MCR
);
2347 spin_unlock_irqrestore(&info
->slock
, flags
);
2348 set_current_state(TASK_INTERRUPTIBLE
);
2349 if (tty_hung_up_p(filp
) || !(info
->flags
& ASYNC_INITIALIZED
)) {
2350 if (info
->flags
& ASYNC_HUP_NOTIFY
)
2353 retval
= -ERESTARTSYS
;
2356 if (!(info
->flags
& ASYNC_CLOSING
) &&
2358 (inb(info
->base
+ UART_MSR
) & UART_MSR_DCD
)))
2360 if (signal_pending(current
)) {
2361 retval
= -ERESTARTSYS
;
2366 set_current_state(TASK_RUNNING
);
2367 remove_wait_queue(&info
->open_wait
, &wait
);
2368 if (!tty_hung_up_p(filp
))
2370 info
->blocked_open
--;
2373 info
->flags
|= ASYNC_NORMAL_ACTIVE
;
2377 static int mxser_startup(struct mxser_struct
*info
)
2380 unsigned long flags
;
2382 page
= __get_free_page(GFP_KERNEL
);
2386 spin_lock_irqsave(&info
->slock
, flags
);
2388 if (info
->flags
& ASYNC_INITIALIZED
) {
2390 spin_unlock_irqrestore(&info
->slock
, flags
);
2394 if (!info
->base
|| !info
->type
) {
2396 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
2398 spin_unlock_irqrestore(&info
->slock
, flags
);
2404 info
->xmit_buf
= (unsigned char *) page
;
2407 * Clear the FIFO buffers and disable them
2408 * (they will be reenabled in mxser_change_speed())
2410 if (info
->IsMoxaMustChipFlag
)
2411 outb((UART_FCR_CLEAR_RCVR
|
2412 UART_FCR_CLEAR_XMIT
|
2413 MOXA_MUST_FCR_GDA_MODE_ENABLE
), info
->base
+ UART_FCR
);
2415 outb((UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
),
2416 info
->base
+ UART_FCR
);
2419 * At this point there's no way the LSR could still be 0xFF;
2420 * if it is, then bail out, because there's likely no UART
2423 if (inb(info
->base
+ UART_LSR
) == 0xff) {
2424 spin_unlock_irqrestore(&info
->slock
, flags
);
2425 if (capable(CAP_SYS_ADMIN
)) {
2427 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
2434 * Clear the interrupt registers.
2436 (void) inb(info
->base
+ UART_LSR
);
2437 (void) inb(info
->base
+ UART_RX
);
2438 (void) inb(info
->base
+ UART_IIR
);
2439 (void) inb(info
->base
+ UART_MSR
);
2442 * Now, initialize the UART
2444 outb(UART_LCR_WLEN8
, info
->base
+ UART_LCR
); /* reset DLAB */
2445 info
->MCR
= UART_MCR_DTR
| UART_MCR_RTS
;
2446 outb(info
->MCR
, info
->base
+ UART_MCR
);
2449 * Finally, enable interrupts
2451 info
->IER
= UART_IER_MSI
| UART_IER_RLSI
| UART_IER_RDI
;
2452 /* info->IER = UART_IER_RLSI | UART_IER_RDI; */
2454 /* following add by Victor Yu. 08-30-2002 */
2455 if (info
->IsMoxaMustChipFlag
)
2456 info
->IER
|= MOXA_MUST_IER_EGDAI
;
2457 /* above add by Victor Yu. 08-30-2002 */
2458 outb(info
->IER
, info
->base
+ UART_IER
); /* enable interrupts */
2461 * And clear the interrupt registers again for luck.
2463 (void) inb(info
->base
+ UART_LSR
);
2464 (void) inb(info
->base
+ UART_RX
);
2465 (void) inb(info
->base
+ UART_IIR
);
2466 (void) inb(info
->base
+ UART_MSR
);
2469 clear_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
2470 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
2473 * and set the speed of the serial port
2475 spin_unlock_irqrestore(&info
->slock
, flags
);
2476 mxser_change_speed(info
, NULL
);
2478 info
->flags
|= ASYNC_INITIALIZED
;
2483 * This routine will shutdown a serial port; interrupts maybe disabled, and
2484 * DTR is dropped if the hangup on close termio flag is on.
2486 static void mxser_shutdown(struct mxser_struct
*info
)
2488 unsigned long flags
;
2490 if (!(info
->flags
& ASYNC_INITIALIZED
))
2493 spin_lock_irqsave(&info
->slock
, flags
);
2496 * clear delta_msr_wait queue to avoid mem leaks: we may free the irq
2497 * here so the queue might never be waken up
2499 wake_up_interruptible(&info
->delta_msr_wait
);
2502 * Free the IRQ, if necessary
2504 if (info
->xmit_buf
) {
2505 free_page((unsigned long) info
->xmit_buf
);
2506 info
->xmit_buf
= NULL
;
2510 outb(0x00, info
->base
+ UART_IER
);
2512 if (!info
->tty
|| (info
->tty
->termios
->c_cflag
& HUPCL
))
2513 info
->MCR
&= ~(UART_MCR_DTR
| UART_MCR_RTS
);
2514 outb(info
->MCR
, info
->base
+ UART_MCR
);
2516 /* clear Rx/Tx FIFO's */
2517 /* following add by Victor Yu. 08-30-2002 */
2518 if (info
->IsMoxaMustChipFlag
)
2519 outb((UART_FCR_CLEAR_RCVR
|
2520 UART_FCR_CLEAR_XMIT
|
2521 MOXA_MUST_FCR_GDA_MODE_ENABLE
), info
->base
+ UART_FCR
);
2523 /* above add by Victor Yu. 08-30-2002 */
2524 outb((UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
),
2525 info
->base
+ UART_FCR
);
2527 /* read data port to reset things */
2528 (void) inb(info
->base
+ UART_RX
);
2531 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
2533 info
->flags
&= ~ASYNC_INITIALIZED
;
2535 /* following add by Victor Yu. 09-23-2002 */
2536 if (info
->IsMoxaMustChipFlag
)
2537 SET_MOXA_MUST_NO_SOFTWARE_FLOW_CONTROL(info
->base
);
2538 /* above add by Victor Yu. 09-23-2002 */
2540 spin_unlock_irqrestore(&info
->slock
, flags
);
2544 * This routine is called to set the UART divisor registers to match
2545 * the specified baud rate for a serial port.
2547 static int mxser_change_speed(struct mxser_struct
*info
, struct ktermios
*old_termios
)
2549 unsigned cflag
, cval
, fcr
;
2551 unsigned char status
;
2553 unsigned long flags
;
2555 if (!info
->tty
|| !info
->tty
->termios
)
2557 cflag
= info
->tty
->termios
->c_cflag
;
2562 #define B921600 (B460800 +1)
2564 if (mxser_set_baud_method
[info
->port
] == 0) {
2565 baud
= tty_get_baud_rate(info
->tty
);
2566 mxser_set_baud(info
, baud
);
2569 /* byte size and parity */
2570 switch (cflag
& CSIZE
) {
2585 break; /* too keep GCC shut... */
2590 cval
|= UART_LCR_PARITY
;
2591 if (!(cflag
& PARODD
))
2592 cval
|= UART_LCR_EPAR
;
2594 cval
|= UART_LCR_SPAR
;
2596 if ((info
->type
== PORT_8250
) || (info
->type
== PORT_16450
)) {
2597 if (info
->IsMoxaMustChipFlag
) {
2598 fcr
= UART_FCR_ENABLE_FIFO
;
2599 fcr
|= MOXA_MUST_FCR_GDA_MODE_ENABLE
;
2600 SET_MOXA_MUST_FIFO_VALUE(info
);
2604 fcr
= UART_FCR_ENABLE_FIFO
;
2605 /* following add by Victor Yu. 08-30-2002 */
2606 if (info
->IsMoxaMustChipFlag
) {
2607 fcr
|= MOXA_MUST_FCR_GDA_MODE_ENABLE
;
2608 SET_MOXA_MUST_FIFO_VALUE(info
);
2610 /* above add by Victor Yu. 08-30-2002 */
2611 switch (info
->rx_trigger
) {
2613 fcr
|= UART_FCR_TRIGGER_1
;
2616 fcr
|= UART_FCR_TRIGGER_4
;
2619 fcr
|= UART_FCR_TRIGGER_8
;
2622 fcr
|= UART_FCR_TRIGGER_14
;
2628 /* CTS flow control flag and modem status interrupts */
2629 info
->IER
&= ~UART_IER_MSI
;
2630 info
->MCR
&= ~UART_MCR_AFE
;
2631 if (cflag
& CRTSCTS
) {
2632 info
->flags
|= ASYNC_CTS_FLOW
;
2633 info
->IER
|= UART_IER_MSI
;
2634 if ((info
->type
== PORT_16550A
) || (info
->IsMoxaMustChipFlag
)) {
2635 info
->MCR
|= UART_MCR_AFE
;
2636 /* status = mxser_get_msr(info->base, 0, info->port); */
2640 status = inb(baseaddr + UART_MSR);
2641 restore_flags(flags);
2643 /* mxser_check_modem_status(info, status); */
2645 /* status = mxser_get_msr(info->base, 0, info->port); */
2646 /* MX_LOCK(&info->slock); */
2647 status
= inb(info
->base
+ UART_MSR
);
2648 /* MX_UNLOCK(&info->slock); */
2649 if (info
->tty
->hw_stopped
) {
2650 if (status
& UART_MSR_CTS
) {
2651 info
->tty
->hw_stopped
= 0;
2652 if ((info
->type
!= PORT_16550A
) &&
2653 (!info
->IsMoxaMustChipFlag
)) {
2654 info
->IER
|= UART_IER_THRI
;
2655 outb(info
->IER
, info
->base
+ UART_IER
);
2657 set_bit(MXSER_EVENT_TXLOW
, &info
->event
);
2658 schedule_work(&info
->tqueue
); }
2660 if (!(status
& UART_MSR_CTS
)) {
2661 info
->tty
->hw_stopped
= 1;
2662 if ((info
->type
!= PORT_16550A
) &&
2663 (!info
->IsMoxaMustChipFlag
)) {
2664 info
->IER
&= ~UART_IER_THRI
;
2665 outb(info
->IER
, info
->base
+ UART_IER
);
2671 info
->flags
&= ~ASYNC_CTS_FLOW
;
2673 outb(info
->MCR
, info
->base
+ UART_MCR
);
2674 if (cflag
& CLOCAL
) {
2675 info
->flags
&= ~ASYNC_CHECK_CD
;
2677 info
->flags
|= ASYNC_CHECK_CD
;
2678 info
->IER
|= UART_IER_MSI
;
2680 outb(info
->IER
, info
->base
+ UART_IER
);
2683 * Set up parity check flag
2685 info
->read_status_mask
= UART_LSR_OE
| UART_LSR_THRE
| UART_LSR_DR
;
2686 if (I_INPCK(info
->tty
))
2687 info
->read_status_mask
|= UART_LSR_FE
| UART_LSR_PE
;
2688 if (I_BRKINT(info
->tty
) || I_PARMRK(info
->tty
))
2689 info
->read_status_mask
|= UART_LSR_BI
;
2691 info
->ignore_status_mask
= 0;
2693 if (I_IGNBRK(info
->tty
)) {
2694 info
->ignore_status_mask
|= UART_LSR_BI
;
2695 info
->read_status_mask
|= UART_LSR_BI
;
2697 * If we're ignore parity and break indicators, ignore
2698 * overruns too. (For real raw support).
2700 if (I_IGNPAR(info
->tty
)) {
2701 info
->ignore_status_mask
|=
2705 info
->read_status_mask
|=
2711 /* following add by Victor Yu. 09-02-2002 */
2712 if (info
->IsMoxaMustChipFlag
) {
2713 spin_lock_irqsave(&info
->slock
, flags
);
2714 SET_MOXA_MUST_XON1_VALUE(info
->base
, START_CHAR(info
->tty
));
2715 SET_MOXA_MUST_XOFF1_VALUE(info
->base
, STOP_CHAR(info
->tty
));
2716 if (I_IXON(info
->tty
)) {
2717 ENABLE_MOXA_MUST_RX_SOFTWARE_FLOW_CONTROL(info
->base
);
2719 DISABLE_MOXA_MUST_RX_SOFTWARE_FLOW_CONTROL(info
->base
);
2721 if (I_IXOFF(info
->tty
)) {
2722 ENABLE_MOXA_MUST_TX_SOFTWARE_FLOW_CONTROL(info
->base
);
2724 DISABLE_MOXA_MUST_TX_SOFTWARE_FLOW_CONTROL(info
->base
);
2727 if ( I_IXANY(info->tty) ) {
2728 info->MCR |= MOXA_MUST_MCR_XON_ANY;
2729 ENABLE_MOXA_MUST_XON_ANY_FLOW_CONTROL(info->base);
2731 info->MCR &= ~MOXA_MUST_MCR_XON_ANY;
2732 DISABLE_MOXA_MUST_XON_ANY_FLOW_CONTROL(info->base);
2735 spin_unlock_irqrestore(&info
->slock
, flags
);
2737 /* above add by Victor Yu. 09-02-2002 */
2740 outb(fcr
, info
->base
+ UART_FCR
); /* set fcr */
2741 outb(cval
, info
->base
+ UART_LCR
);
2747 static int mxser_set_baud(struct mxser_struct
*info
, long newspd
)
2752 unsigned long flags
;
2754 if (!info
->tty
|| !info
->tty
->termios
)
2760 if (newspd
> info
->MaxCanSetBaudRate
)
2763 info
->realbaud
= newspd
;
2764 if (newspd
== 134) {
2765 quot
= (2 * info
->baud_base
/ 269);
2766 } else if (newspd
) {
2767 quot
= info
->baud_base
/ newspd
;
2774 info
->timeout
= ((info
->xmit_fifo_size
* HZ
* 10 * quot
) / info
->baud_base
);
2775 info
->timeout
+= HZ
/ 50; /* Add .02 seconds of slop */
2778 spin_lock_irqsave(&info
->slock
, flags
);
2779 info
->MCR
|= UART_MCR_DTR
;
2780 outb(info
->MCR
, info
->base
+ UART_MCR
);
2781 spin_unlock_irqrestore(&info
->slock
, flags
);
2783 spin_lock_irqsave(&info
->slock
, flags
);
2784 info
->MCR
&= ~UART_MCR_DTR
;
2785 outb(info
->MCR
, info
->base
+ UART_MCR
);
2786 spin_unlock_irqrestore(&info
->slock
, flags
);
2790 cval
= inb(info
->base
+ UART_LCR
);
2792 outb(cval
| UART_LCR_DLAB
, info
->base
+ UART_LCR
); /* set DLAB */
2794 outb(quot
& 0xff, info
->base
+ UART_DLL
); /* LS of divisor */
2795 outb(quot
>> 8, info
->base
+ UART_DLM
); /* MS of divisor */
2796 outb(cval
, info
->base
+ UART_LCR
); /* reset DLAB */
2803 * ------------------------------------------------------------
2804 * friends of mxser_ioctl()
2805 * ------------------------------------------------------------
2807 static int mxser_get_serial_info(struct mxser_struct
*info
, struct serial_struct __user
*retinfo
)
2809 struct serial_struct tmp
;
2813 memset(&tmp
, 0, sizeof(tmp
));
2814 tmp
.type
= info
->type
;
2815 tmp
.line
= info
->port
;
2816 tmp
.port
= info
->base
;
2817 tmp
.irq
= info
->irq
;
2818 tmp
.flags
= info
->flags
;
2819 tmp
.baud_base
= info
->baud_base
;
2820 tmp
.close_delay
= info
->close_delay
;
2821 tmp
.closing_wait
= info
->closing_wait
;
2822 tmp
.custom_divisor
= info
->custom_divisor
;
2824 if (copy_to_user(retinfo
, &tmp
, sizeof(*retinfo
)))
2829 static int mxser_set_serial_info(struct mxser_struct
*info
, struct serial_struct __user
*new_info
)
2831 struct serial_struct new_serial
;
2835 if (!new_info
|| !info
->base
)
2837 if (copy_from_user(&new_serial
, new_info
, sizeof(new_serial
)))
2840 if ((new_serial
.irq
!= info
->irq
) ||
2841 (new_serial
.port
!= info
->base
) ||
2842 (new_serial
.custom_divisor
!= info
->custom_divisor
) ||
2843 (new_serial
.baud_base
!= info
->baud_base
))
2846 flags
= info
->flags
& ASYNC_SPD_MASK
;
2848 if (!capable(CAP_SYS_ADMIN
)) {
2849 if ((new_serial
.baud_base
!= info
->baud_base
) ||
2850 (new_serial
.close_delay
!= info
->close_delay
) ||
2851 ((new_serial
.flags
& ~ASYNC_USR_MASK
) != (info
->flags
& ~ASYNC_USR_MASK
)))
2853 info
->flags
= ((info
->flags
& ~ASYNC_USR_MASK
) |
2854 (new_serial
.flags
& ASYNC_USR_MASK
));
2857 * OK, past this point, all the error checking has been done.
2858 * At this point, we start making changes.....
2860 info
->flags
= ((info
->flags
& ~ASYNC_FLAGS
) |
2861 (new_serial
.flags
& ASYNC_FLAGS
));
2862 info
->close_delay
= new_serial
.close_delay
* HZ
/ 100;
2863 info
->closing_wait
= new_serial
.closing_wait
* HZ
/ 100;
2864 info
->tty
->low_latency
=
2865 (info
->flags
& ASYNC_LOW_LATENCY
) ? 1 : 0;
2866 info
->tty
->low_latency
= 0; /* (info->flags & ASYNC_LOW_LATENCY) ? 1 : 0; */
2869 /* added by casper, 3/17/2000, for mouse */
2870 info
->type
= new_serial
.type
;
2872 process_txrx_fifo(info
);
2874 if (info
->flags
& ASYNC_INITIALIZED
) {
2875 if (flags
!= (info
->flags
& ASYNC_SPD_MASK
)) {
2876 mxser_change_speed(info
, NULL
);
2879 retval
= mxser_startup(info
);
2885 * mxser_get_lsr_info - get line status register info
2887 * Purpose: Let user call ioctl() to get info when the UART physically
2888 * is emptied. On bus types like RS485, the transmitter must
2889 * release the bus after transmitting. This must be done when
2890 * the transmit shift register is empty, not be done when the
2891 * transmit holding register is empty. This functionality
2892 * allows an RS485 driver to be written in user space.
2894 static int mxser_get_lsr_info(struct mxser_struct
*info
, unsigned int __user
*value
)
2896 unsigned char status
;
2897 unsigned int result
;
2898 unsigned long flags
;
2900 spin_lock_irqsave(&info
->slock
, flags
);
2901 status
= inb(info
->base
+ UART_LSR
);
2902 spin_unlock_irqrestore(&info
->slock
, flags
);
2903 result
= ((status
& UART_LSR_TEMT
) ? TIOCSER_TEMT
: 0);
2904 return put_user(result
, value
);
2908 * This routine sends a break character out the serial port.
2910 static void mxser_send_break(struct mxser_struct
*info
, int duration
)
2912 unsigned long flags
;
2916 set_current_state(TASK_INTERRUPTIBLE
);
2917 spin_lock_irqsave(&info
->slock
, flags
);
2918 outb(inb(info
->base
+ UART_LCR
) | UART_LCR_SBC
,
2919 info
->base
+ UART_LCR
);
2920 spin_unlock_irqrestore(&info
->slock
, flags
);
2921 schedule_timeout(duration
);
2922 spin_lock_irqsave(&info
->slock
, flags
);
2923 outb(inb(info
->base
+ UART_LCR
) & ~UART_LCR_SBC
,
2924 info
->base
+ UART_LCR
);
2925 spin_unlock_irqrestore(&info
->slock
, flags
);
2928 static int mxser_tiocmget(struct tty_struct
*tty
, struct file
*file
)
2930 struct mxser_struct
*info
= tty
->driver_data
;
2931 unsigned char control
, status
;
2932 unsigned long flags
;
2935 if (tty
->index
== MXSER_PORTS
)
2936 return -ENOIOCTLCMD
;
2937 if (tty
->flags
& (1 << TTY_IO_ERROR
))
2940 control
= info
->MCR
;
2942 spin_lock_irqsave(&info
->slock
, flags
);
2943 status
= inb(info
->base
+ UART_MSR
);
2944 if (status
& UART_MSR_ANY_DELTA
)
2945 mxser_check_modem_status(info
, status
);
2946 spin_unlock_irqrestore(&info
->slock
, flags
);
2947 return ((control
& UART_MCR_RTS
) ? TIOCM_RTS
: 0) |
2948 ((control
& UART_MCR_DTR
) ? TIOCM_DTR
: 0) |
2949 ((status
& UART_MSR_DCD
) ? TIOCM_CAR
: 0) |
2950 ((status
& UART_MSR_RI
) ? TIOCM_RNG
: 0) |
2951 ((status
& UART_MSR_DSR
) ? TIOCM_DSR
: 0) |
2952 ((status
& UART_MSR_CTS
) ? TIOCM_CTS
: 0);
2955 static int mxser_tiocmset(struct tty_struct
*tty
, struct file
*file
, unsigned int set
, unsigned int clear
)
2957 struct mxser_struct
*info
= tty
->driver_data
;
2958 unsigned long flags
;
2961 if (tty
->index
== MXSER_PORTS
)
2962 return -ENOIOCTLCMD
;
2963 if (tty
->flags
& (1 << TTY_IO_ERROR
))
2966 spin_lock_irqsave(&info
->slock
, flags
);
2968 if (set
& TIOCM_RTS
)
2969 info
->MCR
|= UART_MCR_RTS
;
2970 if (set
& TIOCM_DTR
)
2971 info
->MCR
|= UART_MCR_DTR
;
2973 if (clear
& TIOCM_RTS
)
2974 info
->MCR
&= ~UART_MCR_RTS
;
2975 if (clear
& TIOCM_DTR
)
2976 info
->MCR
&= ~UART_MCR_DTR
;
2978 outb(info
->MCR
, info
->base
+ UART_MCR
);
2979 spin_unlock_irqrestore(&info
->slock
, flags
);
2984 static int mxser_read_register(int, unsigned short *);
2985 static int mxser_program_mode(int);
2986 static void mxser_normal_mode(int);
2988 static int mxser_get_ISA_conf(int cap
, struct mxser_hwconf
*hwconf
)
2991 unsigned short regs
[16], irq
;
2992 unsigned char scratch
, scratch2
;
2994 hwconf
->IsMoxaMustChipFlag
= MOXA_OTHER_UART
;
2996 id
= mxser_read_register(cap
, regs
);
2997 if (id
== C168_ASIC_ID
) {
2998 hwconf
->board_type
= MXSER_BOARD_C168_ISA
;
3000 } else if (id
== C104_ASIC_ID
) {
3001 hwconf
->board_type
= MXSER_BOARD_C104_ISA
;
3003 } else if (id
== C102_ASIC_ID
) {
3004 hwconf
->board_type
= MXSER_BOARD_C102_ISA
;
3006 } else if (id
== CI132_ASIC_ID
) {
3007 hwconf
->board_type
= MXSER_BOARD_CI132
;
3009 } else if (id
== CI134_ASIC_ID
) {
3010 hwconf
->board_type
= MXSER_BOARD_CI134
;
3012 } else if (id
== CI104J_ASIC_ID
) {
3013 hwconf
->board_type
= MXSER_BOARD_CI104J
;
3019 if (hwconf
->ports
== 2) {
3020 irq
= regs
[9] & 0xF000;
3021 irq
= irq
| (irq
>> 4);
3022 if (irq
!= (regs
[9] & 0xFF00))
3023 return MXSER_ERR_IRQ_CONFLIT
;
3024 } else if (hwconf
->ports
== 4) {
3025 irq
= regs
[9] & 0xF000;
3026 irq
= irq
| (irq
>> 4);
3027 irq
= irq
| (irq
>> 8);
3029 return MXSER_ERR_IRQ_CONFLIT
;
3030 } else if (hwconf
->ports
== 8) {
3031 irq
= regs
[9] & 0xF000;
3032 irq
= irq
| (irq
>> 4);
3033 irq
= irq
| (irq
>> 8);
3034 if ((irq
!= regs
[9]) || (irq
!= regs
[10]))
3035 return MXSER_ERR_IRQ_CONFLIT
;
3039 return MXSER_ERR_IRQ
;
3040 hwconf
->irq
= ((int)(irq
& 0xF000) >> 12);
3041 for (i
= 0; i
< 8; i
++)
3042 hwconf
->ioaddr
[i
] = (int) regs
[i
+ 1] & 0xFFF8;
3043 if ((regs
[12] & 0x80) == 0)
3044 return MXSER_ERR_VECTOR
;
3045 hwconf
->vector
= (int)regs
[11]; /* interrupt vector */
3047 hwconf
->vector_mask
= 0x00FF;
3049 hwconf
->vector_mask
= 0x000F;
3050 for (i
= 7, bits
= 0x0100; i
>= 0; i
--, bits
<<= 1) {
3051 if (regs
[12] & bits
) {
3052 hwconf
->baud_base
[i
] = 921600;
3053 hwconf
->MaxCanSetBaudRate
[i
] = 921600; /* add by Victor Yu. 09-04-2002 */
3055 hwconf
->baud_base
[i
] = 115200;
3056 hwconf
->MaxCanSetBaudRate
[i
] = 115200; /* add by Victor Yu. 09-04-2002 */
3059 scratch2
= inb(cap
+ UART_LCR
) & (~UART_LCR_DLAB
);
3060 outb(scratch2
| UART_LCR_DLAB
, cap
+ UART_LCR
);
3061 outb(0, cap
+ UART_EFR
); /* EFR is the same as FCR */
3062 outb(scratch2
, cap
+ UART_LCR
);
3063 outb(UART_FCR_ENABLE_FIFO
, cap
+ UART_FCR
);
3064 scratch
= inb(cap
+ UART_IIR
);
3067 hwconf
->uart_type
= PORT_16550A
;
3069 hwconf
->uart_type
= PORT_16450
;
3074 request_region(hwconf
->ioaddr
[0], 8 * hwconf
->ports
, "mxser(IO)");
3075 request_region(hwconf
->vector
, 1, "mxser(vector)");
3076 return hwconf
->ports
;
3079 #define CHIP_SK 0x01 /* Serial Data Clock in Eprom */
3080 #define CHIP_DO 0x02 /* Serial Data Output in Eprom */
3081 #define CHIP_CS 0x04 /* Serial Chip Select in Eprom */
3082 #define CHIP_DI 0x08 /* Serial Data Input in Eprom */
3083 #define EN_CCMD 0x000 /* Chip's command register */
3084 #define EN0_RSARLO 0x008 /* Remote start address reg 0 */
3085 #define EN0_RSARHI 0x009 /* Remote start address reg 1 */
3086 #define EN0_RCNTLO 0x00A /* Remote byte count reg WR */
3087 #define EN0_RCNTHI 0x00B /* Remote byte count reg WR */
3088 #define EN0_DCFG 0x00E /* Data configuration reg WR */
3089 #define EN0_PORT 0x010 /* Rcv missed frame error counter RD */
3090 #define ENC_PAGE0 0x000 /* Select page 0 of chip registers */
3091 #define ENC_PAGE3 0x0C0 /* Select page 3 of chip registers */
3092 static int mxser_read_register(int port
, unsigned short *regs
)
3094 int i
, k
, value
, id
;
3097 id
= mxser_program_mode(port
);
3100 for (i
= 0; i
< 14; i
++) {
3101 k
= (i
& 0x3F) | 0x180;
3102 for (j
= 0x100; j
> 0; j
>>= 1) {
3103 outb(CHIP_CS
, port
);
3105 outb(CHIP_CS
| CHIP_DO
, port
);
3106 outb(CHIP_CS
| CHIP_DO
| CHIP_SK
, port
); /* A? bit of read */
3108 outb(CHIP_CS
, port
);
3109 outb(CHIP_CS
| CHIP_SK
, port
); /* A? bit of read */
3114 for (k
= 0, j
= 0x8000; k
< 16; k
++, j
>>= 1) {
3115 outb(CHIP_CS
, port
);
3116 outb(CHIP_CS
| CHIP_SK
, port
);
3117 if (inb(port
) & CHIP_DI
)
3123 mxser_normal_mode(port
);
3127 static int mxser_program_mode(int port
)
3130 /* unsigned long flags; */
3132 spin_lock(&gm_lock
);
3140 /* restore_flags(flags); */
3141 spin_unlock(&gm_lock
);
3143 id
= inb(port
+ 1) & 0x1F;
3144 if ((id
!= C168_ASIC_ID
) &&
3145 (id
!= C104_ASIC_ID
) &&
3146 (id
!= C102_ASIC_ID
) &&
3147 (id
!= CI132_ASIC_ID
) &&
3148 (id
!= CI134_ASIC_ID
) &&
3149 (id
!= CI104J_ASIC_ID
))
3151 for (i
= 0, j
= 0; i
< 4; i
++) {
3155 } else if ((j
== 1) && (n
== 1)) {
3166 static void mxser_normal_mode(int port
)
3170 outb(0xA5, port
+ 1);
3171 outb(0x80, port
+ 3);
3172 outb(12, port
+ 0); /* 9600 bps */
3174 outb(0x03, port
+ 3); /* 8 data bits */
3175 outb(0x13, port
+ 4); /* loop back mode */
3176 for (i
= 0; i
< 16; i
++) {
3178 if ((n
& 0x61) == 0x60)
3183 outb(0x00, port
+ 4);
3186 module_init(mxser_module_init
);
3187 module_exit(mxser_module_exit
);