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 unsigned char *xmit_buf
;
328 struct work_struct tqueue
;
329 struct ktermios normal_termios
;
330 struct ktermios callout_termios
;
331 wait_queue_head_t open_wait
;
332 wait_queue_head_t close_wait
;
333 wait_queue_head_t delta_msr_wait
;
334 struct async_icount icount
; /* kernel counters for the 4 input interrupts */
336 int IsMoxaMustChipFlag
; /* add by Victor Yu. 08-30-2002 */
337 int MaxCanSetBaudRate
; /* add by Victor Yu. 09-04-2002 */
338 int opmode_ioaddr
; /* add by Victor Yu. 01-05-2004 */
339 unsigned char stop_rx
;
340 unsigned char ldisc_stop_rx
;
342 struct mxser_mon mon_data
;
343 unsigned char err_shadow
;
347 struct mxser_mstatus
{
355 static struct mxser_mstatus GMStatus
[MXSER_PORTS
];
357 static int mxserBoardCAP
[MXSER_BOARDS
] = {
359 /* 0x180, 0x280, 0x200, 0x320 */
362 static struct tty_driver
*mxvar_sdriver
;
363 static struct mxser_struct mxvar_table
[MXSER_PORTS
];
364 static struct tty_struct
*mxvar_tty
[MXSER_PORTS
+ 1];
365 static struct ktermios
*mxvar_termios
[MXSER_PORTS
+ 1];
366 static struct ktermios
*mxvar_termios_locked
[MXSER_PORTS
+ 1];
367 static struct mxser_log mxvar_log
;
368 static int mxvar_diagflag
;
369 static unsigned char mxser_msr
[MXSER_PORTS
+ 1];
370 static struct mxser_mon_ext mon_data_ext
;
371 static int mxser_set_baud_method
[MXSER_PORTS
+ 1];
372 static spinlock_t gm_lock
;
375 * This is used to figure out the divisor speeds and the timeouts
378 static struct mxser_hwconf mxsercfg
[MXSER_BOARDS
];
384 static void mxser_getcfg(int board
, struct mxser_hwconf
*hwconf
);
385 static int mxser_init(void);
387 /* static void mxser_poll(unsigned long); */
388 static int mxser_get_ISA_conf(int, struct mxser_hwconf
*);
389 static int mxser_get_PCI_conf(int, int, int, struct mxser_hwconf
*);
390 static void mxser_do_softint(struct work_struct
*);
391 static int mxser_open(struct tty_struct
*, struct file
*);
392 static void mxser_close(struct tty_struct
*, struct file
*);
393 static int mxser_write(struct tty_struct
*, const unsigned char *, int);
394 static int mxser_write_room(struct tty_struct
*);
395 static void mxser_flush_buffer(struct tty_struct
*);
396 static int mxser_chars_in_buffer(struct tty_struct
*);
397 static void mxser_flush_chars(struct tty_struct
*);
398 static void mxser_put_char(struct tty_struct
*, unsigned char);
399 static int mxser_ioctl(struct tty_struct
*, struct file
*, uint
, ulong
);
400 static int mxser_ioctl_special(unsigned int, void __user
*);
401 static void mxser_throttle(struct tty_struct
*);
402 static void mxser_unthrottle(struct tty_struct
*);
403 static void mxser_set_termios(struct tty_struct
*, struct ktermios
*);
404 static void mxser_stop(struct tty_struct
*);
405 static void mxser_start(struct tty_struct
*);
406 static void mxser_hangup(struct tty_struct
*);
407 static void mxser_rs_break(struct tty_struct
*, int);
408 static irqreturn_t
mxser_interrupt(int, void *);
409 static void mxser_receive_chars(struct mxser_struct
*, int *);
410 static void mxser_transmit_chars(struct mxser_struct
*);
411 static void mxser_check_modem_status(struct mxser_struct
*, int);
412 static int mxser_block_til_ready(struct tty_struct
*, struct file
*, struct mxser_struct
*);
413 static int mxser_startup(struct mxser_struct
*);
414 static void mxser_shutdown(struct mxser_struct
*);
415 static int mxser_change_speed(struct mxser_struct
*, struct ktermios
*old_termios
);
416 static int mxser_get_serial_info(struct mxser_struct
*, struct serial_struct __user
*);
417 static int mxser_set_serial_info(struct mxser_struct
*, struct serial_struct __user
*);
418 static int mxser_get_lsr_info(struct mxser_struct
*, unsigned int __user
*);
419 static void mxser_send_break(struct mxser_struct
*, int);
420 static int mxser_tiocmget(struct tty_struct
*, struct file
*);
421 static int mxser_tiocmset(struct tty_struct
*, struct file
*, unsigned int, unsigned int);
422 static int mxser_set_baud(struct mxser_struct
*info
, long newspd
);
423 static void mxser_wait_until_sent(struct tty_struct
*tty
, int timeout
);
425 static void mxser_startrx(struct tty_struct
*tty
);
426 static void mxser_stoprx(struct tty_struct
*tty
);
429 static int CheckIsMoxaMust(int io
)
434 outb(0, io
+ UART_LCR
);
435 DISABLE_MOXA_MUST_ENCHANCE_MODE(io
);
436 oldmcr
= inb(io
+ UART_MCR
);
437 outb(0, io
+ UART_MCR
);
438 SET_MOXA_MUST_XON1_VALUE(io
, 0x11);
439 if ((hwid
= inb(io
+ UART_MCR
)) != 0) {
440 outb(oldmcr
, io
+ UART_MCR
);
441 return MOXA_OTHER_UART
;
444 GET_MOXA_MUST_HARDWARE_ID(io
, &hwid
);
445 for (i
= 0; i
< UART_TYPE_NUM
; i
++) {
446 if (hwid
== Gmoxa_uart_id
[i
])
449 return MOXA_OTHER_UART
;
452 /* above is modified by Victor Yu. 08-15-2002 */
454 static const struct tty_operations mxser_ops
= {
456 .close
= mxser_close
,
457 .write
= mxser_write
,
458 .put_char
= mxser_put_char
,
459 .flush_chars
= mxser_flush_chars
,
460 .write_room
= mxser_write_room
,
461 .chars_in_buffer
= mxser_chars_in_buffer
,
462 .flush_buffer
= mxser_flush_buffer
,
463 .ioctl
= mxser_ioctl
,
464 .throttle
= mxser_throttle
,
465 .unthrottle
= mxser_unthrottle
,
466 .set_termios
= mxser_set_termios
,
468 .start
= mxser_start
,
469 .hangup
= mxser_hangup
,
470 .break_ctl
= mxser_rs_break
,
471 .wait_until_sent
= mxser_wait_until_sent
,
472 .tiocmget
= mxser_tiocmget
,
473 .tiocmset
= mxser_tiocmset
,
477 * The MOXA Smartio/Industio serial driver boot-time initialization code!
480 static int __init
mxser_module_init(void)
485 printk(KERN_DEBUG
"Loading module mxser ...\n");
488 printk(KERN_DEBUG
"Done.\n");
492 static void __exit
mxser_module_exit(void)
497 printk(KERN_DEBUG
"Unloading module mxser ...\n");
499 err
= tty_unregister_driver(mxvar_sdriver
);
501 put_tty_driver(mxvar_sdriver
);
503 printk(KERN_ERR
"Couldn't unregister MOXA Smartio/Industio family serial driver\n");
505 for (i
= 0; i
< MXSER_BOARDS
; i
++) {
506 struct pci_dev
*pdev
;
508 if (mxsercfg
[i
].board_type
== -1)
511 pdev
= mxsercfg
[i
].pciInfo
.pdev
;
512 free_irq(mxsercfg
[i
].irq
, &mxvar_table
[i
* MXSER_PORTS_PER_BOARD
]);
513 if (pdev
!= NULL
) { /* PCI */
514 release_region(pci_resource_start(pdev
, 2), pci_resource_len(pdev
, 2));
515 release_region(pci_resource_start(pdev
, 3), pci_resource_len(pdev
, 3));
518 release_region(mxsercfg
[i
].ioaddr
[0], 8 * mxsercfg
[i
].ports
);
519 release_region(mxsercfg
[i
].vector
, 1);
524 printk(KERN_DEBUG
"Done.\n");
527 static void process_txrx_fifo(struct mxser_struct
*info
)
531 if ((info
->type
== PORT_16450
) || (info
->type
== PORT_8250
)) {
532 info
->rx_trigger
= 1;
533 info
->rx_high_water
= 1;
534 info
->rx_low_water
= 1;
535 info
->xmit_fifo_size
= 1;
537 for (i
= 0; i
< UART_INFO_NUM
; i
++) {
538 if (info
->IsMoxaMustChipFlag
== Gpci_uart_info
[i
].type
) {
539 info
->rx_trigger
= Gpci_uart_info
[i
].rx_trigger
;
540 info
->rx_low_water
= Gpci_uart_info
[i
].rx_low_water
;
541 info
->rx_high_water
= Gpci_uart_info
[i
].rx_high_water
;
542 info
->xmit_fifo_size
= Gpci_uart_info
[i
].xmit_fifo_size
;
549 static int mxser_initbrd(int board
, struct mxser_hwconf
*hwconf
)
551 struct mxser_struct
*info
;
555 n
= board
* MXSER_PORTS_PER_BOARD
;
556 info
= &mxvar_table
[n
];
558 printk(KERN_DEBUG
" ttyMI%d - ttyMI%d ",
559 n
, n
+ hwconf
->ports
- 1);
560 printk(" max. baud rate = %d bps.\n",
561 hwconf
->MaxCanSetBaudRate
[0]);
564 for (i
= 0; i
< hwconf
->ports
; i
++, n
++, info
++) {
566 info
->base
= hwconf
->ioaddr
[i
];
567 info
->irq
= hwconf
->irq
;
568 info
->vector
= hwconf
->vector
;
569 info
->vectormask
= hwconf
->vector_mask
;
570 info
->opmode_ioaddr
= hwconf
->opmode_ioaddr
[i
]; /* add by Victor Yu. 01-05-2004 */
572 info
->ldisc_stop_rx
= 0;
574 info
->IsMoxaMustChipFlag
= hwconf
->IsMoxaMustChipFlag
;
575 /* Enhance mode enabled here */
576 if (info
->IsMoxaMustChipFlag
!= MOXA_OTHER_UART
) {
577 ENABLE_MOXA_MUST_ENCHANCE_MODE(info
->base
);
580 info
->flags
= ASYNC_SHARE_IRQ
;
581 info
->type
= hwconf
->uart_type
;
582 info
->baud_base
= hwconf
->baud_base
[i
];
584 info
->MaxCanSetBaudRate
= hwconf
->MaxCanSetBaudRate
[i
];
586 process_txrx_fifo(info
);
589 info
->custom_divisor
= hwconf
->baud_base
[i
] * 16;
590 info
->close_delay
= 5 * HZ
/ 10;
591 info
->closing_wait
= 30 * HZ
;
592 INIT_WORK(&info
->tqueue
, mxser_do_softint
);
593 info
->normal_termios
= mxvar_sdriver
->init_termios
;
594 init_waitqueue_head(&info
->open_wait
);
595 init_waitqueue_head(&info
->close_wait
);
596 init_waitqueue_head(&info
->delta_msr_wait
);
597 memset(&info
->mon_data
, 0, sizeof(struct mxser_mon
));
598 info
->err_shadow
= 0;
599 spin_lock_init(&info
->slock
);
602 * Allocate the IRQ if necessary
606 /* before set INT ISR, disable all int */
607 for (i
= 0; i
< hwconf
->ports
; i
++) {
608 outb(inb(hwconf
->ioaddr
[i
] + UART_IER
) & 0xf0,
609 hwconf
->ioaddr
[i
] + UART_IER
);
612 n
= board
* MXSER_PORTS_PER_BOARD
;
613 info
= &mxvar_table
[n
];
615 retval
= request_irq(hwconf
->irq
, mxser_interrupt
, IRQ_T(info
),
618 printk(KERN_ERR
"Board %d: %s",
619 board
, mxser_brdname
[hwconf
->board_type
- 1]);
620 printk(" Request irq failed, IRQ (%d) may conflict with"
621 " another device.\n", info
->irq
);
627 static void mxser_getcfg(int board
, struct mxser_hwconf
*hwconf
)
629 mxsercfg
[board
] = *hwconf
;
633 static int mxser_get_PCI_conf(int busnum
, int devnum
, int board_type
, struct mxser_hwconf
*hwconf
)
636 /* unsigned int val; */
637 unsigned int ioaddress
;
638 struct pci_dev
*pdev
= hwconf
->pciInfo
.pdev
;
641 hwconf
->board_type
= board_type
;
642 hwconf
->ports
= mxser_numports
[board_type
- 1];
643 ioaddress
= pci_resource_start(pdev
, 2);
644 request_region(pci_resource_start(pdev
, 2), pci_resource_len(pdev
, 2),
647 for (i
= 0; i
< hwconf
->ports
; i
++)
648 hwconf
->ioaddr
[i
] = ioaddress
+ 8 * i
;
651 ioaddress
= pci_resource_start(pdev
, 3);
652 request_region(pci_resource_start(pdev
, 3), pci_resource_len(pdev
, 3),
654 hwconf
->vector
= ioaddress
;
657 hwconf
->irq
= hwconf
->pciInfo
.pdev
->irq
;
659 hwconf
->IsMoxaMustChipFlag
= CheckIsMoxaMust(hwconf
->ioaddr
[0]);
660 hwconf
->uart_type
= PORT_16550A
;
661 hwconf
->vector_mask
= 0;
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
;
669 /* exception....CP-102 */
670 if (board_type
== MXSER_BOARD_CP102
)
671 hwconf
->MaxCanSetBaudRate
[i
] = 921600;
677 if (hwconf
->IsMoxaMustChipFlag
== MOXA_MUST_MU860_HWID
) {
678 for (i
= 0; i
< hwconf
->ports
; i
++) {
680 hwconf
->opmode_ioaddr
[i
] = ioaddress
+ 4;
682 hwconf
->opmode_ioaddr
[i
] = ioaddress
+ 0x0c;
684 outb(0, ioaddress
+ 4); /* default set to RS232 mode */
685 outb(0, ioaddress
+ 0x0c); /* default set to RS232 mode */
688 for (i
= 0; i
< hwconf
->ports
; i
++) {
689 hwconf
->vector_mask
|= (1 << i
);
690 hwconf
->baud_base
[i
] = 921600;
696 static int mxser_init(void)
698 int i
, m
, retval
, b
, n
;
699 struct pci_dev
*pdev
= NULL
;
701 unsigned char busnum
, devnum
;
702 struct mxser_hwconf hwconf
;
704 mxvar_sdriver
= alloc_tty_driver(MXSER_PORTS
+ 1);
707 spin_lock_init(&gm_lock
);
709 for (i
= 0; i
< MXSER_BOARDS
; i
++) {
710 mxsercfg
[i
].board_type
= -1;
713 printk(KERN_INFO
"MOXA Smartio/Industio family driver version %s\n",
716 /* Initialize the tty_driver structure */
717 memset(mxvar_sdriver
, 0, sizeof(struct tty_driver
));
718 mxvar_sdriver
->owner
= THIS_MODULE
;
719 mxvar_sdriver
->magic
= TTY_DRIVER_MAGIC
;
720 mxvar_sdriver
->name
= "ttyMI";
721 mxvar_sdriver
->major
= ttymajor
;
722 mxvar_sdriver
->minor_start
= 0;
723 mxvar_sdriver
->num
= MXSER_PORTS
+ 1;
724 mxvar_sdriver
->type
= TTY_DRIVER_TYPE_SERIAL
;
725 mxvar_sdriver
->subtype
= SERIAL_TYPE_NORMAL
;
726 mxvar_sdriver
->init_termios
= tty_std_termios
;
727 mxvar_sdriver
->init_termios
.c_cflag
= B9600
|CS8
|CREAD
|HUPCL
|CLOCAL
;
728 mxvar_sdriver
->init_termios
.c_ispeed
= 9600;
729 mxvar_sdriver
->init_termios
.c_ospeed
= 9600;
730 mxvar_sdriver
->flags
= TTY_DRIVER_REAL_RAW
;
731 tty_set_operations(mxvar_sdriver
, &mxser_ops
);
732 mxvar_sdriver
->ttys
= mxvar_tty
;
733 mxvar_sdriver
->termios
= mxvar_termios
;
734 mxvar_sdriver
->termios_locked
= mxvar_termios_locked
;
737 memset(mxvar_table
, 0, MXSER_PORTS
* sizeof(struct mxser_struct
));
738 memset(&mxvar_log
, 0, sizeof(struct mxser_log
));
740 memset(&mxser_msr
, 0, sizeof(unsigned char) * (MXSER_PORTS
+ 1));
741 memset(&mon_data_ext
, 0, sizeof(struct mxser_mon_ext
));
742 memset(&mxser_set_baud_method
, 0, sizeof(int) * (MXSER_PORTS
+ 1));
743 memset(&hwconf
, 0, sizeof(struct mxser_hwconf
));
746 /* Start finding ISA boards here */
747 for (b
= 0; b
< MXSER_BOARDS
&& m
< MXSER_BOARDS
; b
++) {
750 if (!(cap
= mxserBoardCAP
[b
]))
753 retval
= mxser_get_ISA_conf(cap
, &hwconf
);
756 printk(KERN_INFO
"Found MOXA %s board (CAP=0x%x)\n",
757 mxser_brdname
[hwconf
.board_type
- 1], ioaddr
[b
]);
760 if (retval
== MXSER_ERR_IRQ
)
761 printk(KERN_ERR
"Invalid interrupt number, "
762 "board not configured\n");
763 else if (retval
== MXSER_ERR_IRQ_CONFLIT
)
764 printk(KERN_ERR
"Invalid interrupt number, "
765 "board not configured\n");
766 else if (retval
== MXSER_ERR_VECTOR
)
767 printk(KERN_ERR
"Invalid interrupt vector, "
768 "board not configured\n");
769 else if (retval
== MXSER_ERR_IOADDR
)
770 printk(KERN_ERR
"Invalid I/O address, "
771 "board not configured\n");
776 hwconf
.pciInfo
.busNum
= 0;
777 hwconf
.pciInfo
.devNum
= 0;
778 hwconf
.pciInfo
.pdev
= NULL
;
780 mxser_getcfg(m
, &hwconf
);
782 * init mxsercfg first,
783 * or mxsercfg data is not correct on ISR.
785 /* mxser_initbrd will hook ISR. */
786 if (mxser_initbrd(m
, &hwconf
) < 0)
792 /* Start finding ISA boards from module arg */
793 for (b
= 0; b
< MXSER_BOARDS
&& m
< MXSER_BOARDS
; b
++) {
796 if (!(cap
= ioaddr
[b
]))
799 retval
= mxser_get_ISA_conf(cap
, &hwconf
);
802 printk(KERN_INFO
"Found MOXA %s board (CAP=0x%x)\n",
803 mxser_brdname
[hwconf
.board_type
- 1], ioaddr
[b
]);
806 if (retval
== MXSER_ERR_IRQ
)
807 printk(KERN_ERR
"Invalid interrupt number, "
808 "board not configured\n");
809 else if (retval
== MXSER_ERR_IRQ_CONFLIT
)
810 printk(KERN_ERR
"Invalid interrupt number, "
811 "board not configured\n");
812 else if (retval
== MXSER_ERR_VECTOR
)
813 printk(KERN_ERR
"Invalid interrupt vector, "
814 "board not configured\n");
815 else if (retval
== MXSER_ERR_IOADDR
)
816 printk(KERN_ERR
"Invalid I/O address, "
817 "board not configured\n");
822 hwconf
.pciInfo
.busNum
= 0;
823 hwconf
.pciInfo
.devNum
= 0;
824 hwconf
.pciInfo
.pdev
= NULL
;
826 mxser_getcfg(m
, &hwconf
);
828 * init mxsercfg first,
829 * or mxsercfg data is not correct on ISR.
831 /* mxser_initbrd will hook ISR. */
832 if (mxser_initbrd(m
, &hwconf
) < 0)
838 /* start finding PCI board here */
840 n
= ARRAY_SIZE(mxser_pcibrds
) - 1;
844 pdev
= pci_get_device(mxser_pcibrds
[b
].vendor
,
845 mxser_pcibrds
[b
].device
, pdev
);
850 hwconf
.pciInfo
.busNum
= busnum
= pdev
->bus
->number
;
851 hwconf
.pciInfo
.devNum
= devnum
= PCI_SLOT(pdev
->devfn
) << 3;
852 hwconf
.pciInfo
.pdev
= pdev
;
853 printk(KERN_INFO
"Found MOXA %s board(BusNo=%d,DevNo=%d)\n",
854 mxser_brdname
[(int) (mxser_pcibrds
[b
].driver_data
) - 1],
855 busnum
, devnum
>> 3);
857 if (m
>= MXSER_BOARDS
)
859 "Too many Smartio/Industio family boards find "
860 "(maximum %d), board not configured\n",
863 if (pci_enable_device(pdev
)) {
864 printk(KERN_ERR
"Moxa SmartI/O PCI enable "
868 retval
= mxser_get_PCI_conf(busnum
, devnum
,
869 (int)mxser_pcibrds
[b
].driver_data
,
872 if (retval
== MXSER_ERR_IRQ
)
874 "Invalid interrupt number, "
875 "board not configured\n");
876 else if (retval
== MXSER_ERR_IRQ_CONFLIT
)
878 "Invalid interrupt number, "
879 "board not configured\n");
880 else if (retval
== MXSER_ERR_VECTOR
)
882 "Invalid interrupt vector, "
883 "board not configured\n");
884 else if (retval
== MXSER_ERR_IOADDR
)
886 "Invalid I/O address, "
887 "board not configured\n");
890 mxser_getcfg(m
, &hwconf
);
891 /* init mxsercfg first,
892 * or mxsercfg data is not correct on ISR.
894 /* mxser_initbrd will hook ISR. */
895 if (mxser_initbrd(m
, &hwconf
) < 0)
898 /* Keep an extra reference if we succeeded. It will
899 be returned at unload time */
905 retval
= tty_register_driver(mxvar_sdriver
);
907 printk(KERN_ERR
"Couldn't install MOXA Smartio/Industio family"
909 put_tty_driver(mxvar_sdriver
);
911 for (i
= 0; i
< MXSER_BOARDS
; i
++) {
912 if (mxsercfg
[i
].board_type
== -1)
915 free_irq(mxsercfg
[i
].irq
, &mxvar_table
[i
* MXSER_PORTS_PER_BOARD
]);
916 /* todo: release io, vector */
925 static void mxser_do_softint(struct work_struct
*work
)
927 struct mxser_struct
*info
=
928 container_of(work
, struct mxser_struct
, tqueue
);
929 struct tty_struct
*tty
;
934 if (test_and_clear_bit(MXSER_EVENT_TXLOW
, &info
->event
))
936 if (test_and_clear_bit(MXSER_EVENT_HANGUP
, &info
->event
))
941 static unsigned char mxser_get_msr(int baseaddr
, int mode
, int port
, struct mxser_struct
*info
)
943 unsigned char status
= 0;
945 status
= inb(baseaddr
+ UART_MSR
);
947 mxser_msr
[port
] &= 0x0F;
948 mxser_msr
[port
] |= status
;
949 status
= mxser_msr
[port
];
957 * This routine is called whenever a serial port is opened. It
958 * enables interrupts for a serial port, linking in its async structure into
959 * the IRQ chain. It also performs the serial-specific
960 * initialization for the tty structure.
962 static int mxser_open(struct tty_struct
*tty
, struct file
*filp
)
964 struct mxser_struct
*info
;
967 /* initialize driver_data in case something fails */
968 tty
->driver_data
= NULL
;
971 if (line
== MXSER_PORTS
)
973 if (line
< 0 || line
> MXSER_PORTS
)
975 info
= mxvar_table
+ line
;
979 tty
->driver_data
= info
;
982 * Start up serial port
984 retval
= mxser_startup(info
);
988 retval
= mxser_block_til_ready(tty
, filp
, info
);
994 if ((info
->count
== 1) && (info
->flags
& ASYNC_SPLIT_TERMIOS
)) {
995 if (tty
->driver
->subtype
== SERIAL_TYPE_NORMAL
)
996 *tty
->termios
= info
->normal_termios
;
998 *tty
->termios
= info
->callout_termios
;
999 mxser_change_speed(info
, NULL
);
1003 status = mxser_get_msr(info->base, 0, info->port);
1004 mxser_check_modem_status(info, status);
1007 /* unmark here for very high baud rate (ex. 921600 bps) used */
1008 tty
->low_latency
= 1;
1013 * This routine is called when the serial port gets closed. First, we
1014 * wait for the last remaining data to be sent. Then, we unlink its
1015 * async structure from the interrupt chain if necessary, and we free
1016 * that IRQ if nothing is left in the chain.
1018 static void mxser_close(struct tty_struct
*tty
, struct file
*filp
)
1020 struct mxser_struct
*info
= tty
->driver_data
;
1022 unsigned long timeout
;
1023 unsigned long flags
;
1024 struct tty_ldisc
*ld
;
1026 if (tty
->index
== MXSER_PORTS
)
1031 spin_lock_irqsave(&info
->slock
, flags
);
1033 if (tty_hung_up_p(filp
)) {
1034 spin_unlock_irqrestore(&info
->slock
, flags
);
1037 if ((tty
->count
== 1) && (info
->count
!= 1)) {
1039 * Uh, oh. tty->count is 1, which means that the tty
1040 * structure will be freed. Info->count should always
1041 * be one in these conditions. If it's greater than
1042 * one, we've got real problems, since it means the
1043 * serial port won't be shutdown.
1045 printk(KERN_ERR
"mxser_close: bad serial port count; "
1046 "tty->count is 1, info->count is %d\n", info
->count
);
1049 if (--info
->count
< 0) {
1050 printk(KERN_ERR
"mxser_close: bad serial port count for "
1051 "ttys%d: %d\n", info
->port
, info
->count
);
1055 spin_unlock_irqrestore(&info
->slock
, flags
);
1058 info
->flags
|= ASYNC_CLOSING
;
1059 spin_unlock_irqrestore(&info
->slock
, flags
);
1061 * Save the termios structure, since this port may have
1062 * separate termios for callout and dialin.
1064 if (info
->flags
& ASYNC_NORMAL_ACTIVE
)
1065 info
->normal_termios
= *tty
->termios
;
1067 * Now we wait for the transmit buffer to clear; and we notify
1068 * the line discipline to only process XON/XOFF characters.
1071 if (info
->closing_wait
!= ASYNC_CLOSING_WAIT_NONE
)
1072 tty_wait_until_sent(tty
, info
->closing_wait
);
1074 * At this point we stop accepting input. To do this, we
1075 * disable the receive line status interrupts, and tell the
1076 * interrupt driver to stop checking the data ready bit in the
1077 * line status register.
1079 info
->IER
&= ~UART_IER_RLSI
;
1080 if (info
->IsMoxaMustChipFlag
)
1081 info
->IER
&= ~MOXA_MUST_RECV_ISR
;
1083 info->read_status_mask &= ~UART_LSR_DR;
1085 if (info
->flags
& ASYNC_INITIALIZED
) {
1086 outb(info
->IER
, info
->base
+ UART_IER
);
1088 * Before we drop DTR, make sure the UART transmitter
1089 * has completely drained; this is especially
1090 * important if there is a transmit FIFO!
1092 timeout
= jiffies
+ HZ
;
1093 while (!(inb(info
->base
+ UART_LSR
) & UART_LSR_TEMT
)) {
1094 schedule_timeout_interruptible(5);
1095 if (time_after(jiffies
, timeout
))
1099 mxser_shutdown(info
);
1101 if (tty
->driver
->flush_buffer
)
1102 tty
->driver
->flush_buffer(tty
);
1104 ld
= tty_ldisc_ref(tty
);
1106 if (ld
->flush_buffer
)
1107 ld
->flush_buffer(tty
);
1108 tty_ldisc_deref(ld
);
1114 if (info
->blocked_open
) {
1115 if (info
->close_delay
)
1116 schedule_timeout_interruptible(info
->close_delay
);
1117 wake_up_interruptible(&info
->open_wait
);
1120 info
->flags
&= ~(ASYNC_NORMAL_ACTIVE
| ASYNC_CLOSING
);
1121 wake_up_interruptible(&info
->close_wait
);
1125 static int mxser_write(struct tty_struct
*tty
, const unsigned char *buf
, int count
)
1128 struct mxser_struct
*info
= tty
->driver_data
;
1129 unsigned long flags
;
1131 if (!info
->xmit_buf
)
1135 c
= min_t(int, count
, min(SERIAL_XMIT_SIZE
- info
->xmit_cnt
- 1,
1136 SERIAL_XMIT_SIZE
- info
->xmit_head
));
1140 memcpy(info
->xmit_buf
+ info
->xmit_head
, buf
, c
);
1141 spin_lock_irqsave(&info
->slock
, flags
);
1142 info
->xmit_head
= (info
->xmit_head
+ c
) &
1143 (SERIAL_XMIT_SIZE
- 1);
1144 info
->xmit_cnt
+= c
;
1145 spin_unlock_irqrestore(&info
->slock
, flags
);
1152 if (info
->xmit_cnt
&& !tty
->stopped
&& !(info
->IER
& UART_IER_THRI
)) {
1153 if (!tty
->hw_stopped
||
1154 (info
->type
== PORT_16550A
) ||
1155 (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
);
1165 static void mxser_put_char(struct tty_struct
*tty
, unsigned char ch
)
1167 struct mxser_struct
*info
= tty
->driver_data
;
1168 unsigned long flags
;
1170 if (!info
->xmit_buf
)
1173 if (info
->xmit_cnt
>= SERIAL_XMIT_SIZE
- 1)
1176 spin_lock_irqsave(&info
->slock
, flags
);
1177 info
->xmit_buf
[info
->xmit_head
++] = ch
;
1178 info
->xmit_head
&= SERIAL_XMIT_SIZE
- 1;
1180 spin_unlock_irqrestore(&info
->slock
, flags
);
1181 if (!tty
->stopped
&& !(info
->IER
& UART_IER_THRI
)) {
1182 if (!tty
->hw_stopped
||
1183 (info
->type
== PORT_16550A
) ||
1184 info
->IsMoxaMustChipFlag
) {
1185 spin_lock_irqsave(&info
->slock
, flags
);
1186 info
->IER
|= UART_IER_THRI
;
1187 outb(info
->IER
, info
->base
+ UART_IER
);
1188 spin_unlock_irqrestore(&info
->slock
, flags
);
1194 static void mxser_flush_chars(struct tty_struct
*tty
)
1196 struct mxser_struct
*info
= tty
->driver_data
;
1197 unsigned long flags
;
1199 if (info
->xmit_cnt
<= 0 ||
1203 (info
->type
!= PORT_16550A
) &&
1204 (!info
->IsMoxaMustChipFlag
)
1208 spin_lock_irqsave(&info
->slock
, flags
);
1210 info
->IER
|= UART_IER_THRI
;
1211 outb(info
->IER
, info
->base
+ UART_IER
);
1213 spin_unlock_irqrestore(&info
->slock
, flags
);
1216 static int mxser_write_room(struct tty_struct
*tty
)
1218 struct mxser_struct
*info
= tty
->driver_data
;
1221 ret
= SERIAL_XMIT_SIZE
- info
->xmit_cnt
- 1;
1227 static int mxser_chars_in_buffer(struct tty_struct
*tty
)
1229 struct mxser_struct
*info
= tty
->driver_data
;
1230 return info
->xmit_cnt
;
1233 static void mxser_flush_buffer(struct tty_struct
*tty
)
1235 struct mxser_struct
*info
= tty
->driver_data
;
1237 unsigned long flags
;
1240 spin_lock_irqsave(&info
->slock
, flags
);
1241 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
1243 /* below added by shinhay */
1244 fcr
= inb(info
->base
+ UART_FCR
);
1245 outb((fcr
| UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
),
1246 info
->base
+ UART_FCR
);
1247 outb(fcr
, info
->base
+ UART_FCR
);
1249 spin_unlock_irqrestore(&info
->slock
, flags
);
1250 /* above added by shinhay */
1255 static int mxser_ioctl(struct tty_struct
*tty
, struct file
*file
, unsigned int cmd
, unsigned long arg
)
1257 struct mxser_struct
*info
= tty
->driver_data
;
1259 struct async_icount cprev
, cnow
; /* kernel counter temps */
1260 struct serial_icounter_struct __user
*p_cuser
;
1261 unsigned long templ
;
1262 unsigned long flags
;
1263 void __user
*argp
= (void __user
*)arg
;
1265 if (tty
->index
== MXSER_PORTS
)
1266 return mxser_ioctl_special(cmd
, argp
);
1268 /* following add by Victor Yu. 01-05-2004 */
1269 if (cmd
== MOXA_SET_OP_MODE
|| cmd
== MOXA_GET_OP_MODE
) {
1271 static unsigned char ModeMask
[] = { 0xfc, 0xf3, 0xcf, 0x3f };
1273 unsigned char val
, mask
;
1276 if (cmd
== MOXA_SET_OP_MODE
) {
1277 if (get_user(opmode
, (int __user
*) argp
))
1279 if (opmode
!= RS232_MODE
&&
1280 opmode
!= RS485_2WIRE_MODE
&&
1281 opmode
!= RS422_MODE
&&
1282 opmode
!= RS485_4WIRE_MODE
)
1286 val
= inb(info
->opmode_ioaddr
);
1288 val
|= (opmode
<< shiftbit
);
1289 outb(val
, info
->opmode_ioaddr
);
1292 opmode
= inb(info
->opmode_ioaddr
) >> shiftbit
;
1293 opmode
&= OP_MODE_MASK
;
1294 if (copy_to_user(argp
, &opmode
, sizeof(int)))
1299 /* above add by Victor Yu. 01-05-2004 */
1301 if ((cmd
!= TIOCGSERIAL
) && (cmd
!= TIOCMIWAIT
) && (cmd
!= TIOCGICOUNT
)) {
1302 if (tty
->flags
& (1 << TTY_IO_ERROR
))
1306 case TCSBRK
: /* SVID version: non-zero arg --> no break */
1307 retval
= tty_check_change(tty
);
1310 tty_wait_until_sent(tty
, 0);
1312 mxser_send_break(info
, HZ
/ 4); /* 1/4 second */
1314 case TCSBRKP
: /* support for POSIX tcsendbreak() */
1315 retval
= tty_check_change(tty
);
1318 tty_wait_until_sent(tty
, 0);
1319 mxser_send_break(info
, arg
? arg
* (HZ
/ 10) : HZ
/ 4);
1322 return put_user(C_CLOCAL(tty
) ? 1 : 0, (unsigned long __user
*)argp
);
1324 if (get_user(templ
, (unsigned long __user
*) argp
))
1327 tty
->termios
->c_cflag
= ((tty
->termios
->c_cflag
& ~CLOCAL
) | (arg
? CLOCAL
: 0));
1330 return mxser_get_serial_info(info
, argp
);
1332 return mxser_set_serial_info(info
, argp
);
1333 case TIOCSERGETLSR
: /* Get line status register */
1334 return mxser_get_lsr_info(info
, argp
);
1336 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1337 * - mask passed in arg for lines of interest
1338 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1339 * Caller should use TIOCGICOUNT to see which one it was
1342 DECLARE_WAITQUEUE(wait
, current
);
1344 spin_lock_irqsave(&info
->slock
, flags
);
1345 cprev
= info
->icount
; /* note the counters on entry */
1346 spin_unlock_irqrestore(&info
->slock
, flags
);
1348 add_wait_queue(&info
->delta_msr_wait
, &wait
);
1350 spin_lock_irqsave(&info
->slock
, flags
);
1351 cnow
= info
->icount
; /* atomic copy */
1352 spin_unlock_irqrestore(&info
->slock
, flags
);
1354 set_current_state(TASK_INTERRUPTIBLE
);
1355 if (((arg
& TIOCM_RNG
) &&
1356 (cnow
.rng
!= cprev
.rng
)) ||
1357 ((arg
& TIOCM_DSR
) &&
1358 (cnow
.dsr
!= cprev
.dsr
)) ||
1359 ((arg
& TIOCM_CD
) &&
1360 (cnow
.dcd
!= cprev
.dcd
)) ||
1361 ((arg
& TIOCM_CTS
) &&
1362 (cnow
.cts
!= cprev
.cts
))) {
1366 /* see if a signal did it */
1367 if (signal_pending(current
)) {
1373 current
->state
= TASK_RUNNING
;
1374 remove_wait_queue(&info
->delta_msr_wait
, &wait
);
1379 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1380 * Return: write counters to the user passed counter struct
1381 * NB: both 1->0 and 0->1 transitions are counted except for
1382 * RI where only 0->1 is counted.
1385 spin_lock_irqsave(&info
->slock
, flags
);
1386 cnow
= info
->icount
;
1387 spin_unlock_irqrestore(&info
->slock
, flags
);
1389 /* modified by casper 1/11/2000 */
1390 if (put_user(cnow
.frame
, &p_cuser
->frame
))
1392 if (put_user(cnow
.brk
, &p_cuser
->brk
))
1394 if (put_user(cnow
.overrun
, &p_cuser
->overrun
))
1396 if (put_user(cnow
.buf_overrun
, &p_cuser
->buf_overrun
))
1398 if (put_user(cnow
.parity
, &p_cuser
->parity
))
1400 if (put_user(cnow
.rx
, &p_cuser
->rx
))
1402 if (put_user(cnow
.tx
, &p_cuser
->tx
))
1404 put_user(cnow
.cts
, &p_cuser
->cts
);
1405 put_user(cnow
.dsr
, &p_cuser
->dsr
);
1406 put_user(cnow
.rng
, &p_cuser
->rng
);
1407 put_user(cnow
.dcd
, &p_cuser
->dcd
);
1409 case MOXA_HighSpeedOn
:
1410 return put_user(info
->baud_base
!= 115200 ? 1 : 0, (int __user
*)argp
);
1411 case MOXA_SDS_RSTICOUNTER
: {
1412 info
->mon_data
.rxcnt
= 0;
1413 info
->mon_data
.txcnt
= 0;
1416 /* (above) added by James. */
1417 case MOXA_ASPP_SETBAUD
:{
1419 if (get_user(baud
, (long __user
*)argp
))
1421 mxser_set_baud(info
, baud
);
1424 case MOXA_ASPP_GETBAUD
:
1425 if (copy_to_user(argp
, &info
->realbaud
, sizeof(long)))
1430 case MOXA_ASPP_OQUEUE
:{
1433 len
= mxser_chars_in_buffer(tty
);
1435 lsr
= inb(info
->base
+ UART_LSR
) & UART_LSR_TEMT
;
1437 len
+= (lsr
? 0 : 1);
1439 if (copy_to_user(argp
, &len
, sizeof(int)))
1444 case MOXA_ASPP_MON
: {
1447 /* info->mon_data.ser_param = tty->termios->c_cflag; */
1449 status
= mxser_get_msr(info
->base
, 1, info
->port
, info
);
1450 mxser_check_modem_status(info
, status
);
1452 mcr
= inb(info
->base
+ UART_MCR
);
1453 if (mcr
& MOXA_MUST_MCR_XON_FLAG
)
1454 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_XOFFHOLD
;
1456 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_XOFFHOLD
;
1458 if (mcr
& MOXA_MUST_MCR_TX_XON
)
1459 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_XOFFXENT
;
1461 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_XOFFXENT
;
1463 if (info
->tty
->hw_stopped
)
1464 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_CTSHOLD
;
1466 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_CTSHOLD
;
1468 if (copy_to_user(argp
, &info
->mon_data
,
1469 sizeof(struct mxser_mon
)))
1475 case MOXA_ASPP_LSTATUS
: {
1476 if (copy_to_user(argp
, &info
->err_shadow
,
1477 sizeof(unsigned char)))
1480 info
->err_shadow
= 0;
1483 case MOXA_SET_BAUD_METHOD
: {
1486 if (get_user(method
, (int __user
*)argp
))
1488 mxser_set_baud_method
[info
->port
] = method
;
1489 if (copy_to_user(argp
, &method
, sizeof(int)))
1495 return -ENOIOCTLCMD
;
1501 #define CMSPAR 010000000000
1504 static int mxser_ioctl_special(unsigned int cmd
, void __user
*argp
)
1506 int i
, result
, status
;
1510 if (copy_to_user(argp
, mxsercfg
,
1511 sizeof(struct mxser_hwconf
) * 4))
1514 case MOXA_GET_MAJOR
:
1515 if (copy_to_user(argp
, &ttymajor
, sizeof(int)))
1519 case MOXA_GET_CUMAJOR
:
1520 if (copy_to_user(argp
, &calloutmajor
, sizeof(int)))
1524 case MOXA_CHKPORTENABLE
:
1526 for (i
= 0; i
< MXSER_PORTS
; i
++) {
1527 if (mxvar_table
[i
].base
)
1530 return put_user(result
, (unsigned long __user
*)argp
);
1531 case MOXA_GETDATACOUNT
:
1532 if (copy_to_user(argp
, &mxvar_log
, sizeof(mxvar_log
)))
1535 case MOXA_GETMSTATUS
:
1536 for (i
= 0; i
< MXSER_PORTS
; i
++) {
1538 if (!mxvar_table
[i
].base
) {
1539 GMStatus
[i
].dcd
= 0;
1540 GMStatus
[i
].dsr
= 0;
1541 GMStatus
[i
].cts
= 0;
1545 if (!mxvar_table
[i
].tty
|| !mxvar_table
[i
].tty
->termios
)
1546 GMStatus
[i
].cflag
= mxvar_table
[i
].normal_termios
.c_cflag
;
1548 GMStatus
[i
].cflag
= mxvar_table
[i
].tty
->termios
->c_cflag
;
1550 status
= inb(mxvar_table
[i
].base
+ UART_MSR
);
1551 if (status
& 0x80 /*UART_MSR_DCD */ )
1552 GMStatus
[i
].dcd
= 1;
1554 GMStatus
[i
].dcd
= 0;
1556 if (status
& 0x20 /*UART_MSR_DSR */ )
1557 GMStatus
[i
].dsr
= 1;
1559 GMStatus
[i
].dsr
= 0;
1562 if (status
& 0x10 /*UART_MSR_CTS */ )
1563 GMStatus
[i
].cts
= 1;
1565 GMStatus
[i
].cts
= 0;
1567 if (copy_to_user(argp
, GMStatus
,
1568 sizeof(struct mxser_mstatus
) * MXSER_PORTS
))
1571 case MOXA_ASPP_MON_EXT
: {
1575 unsigned cflag
, iflag
;
1577 for (i
= 0; i
< MXSER_PORTS
; i
++) {
1578 if (!mxvar_table
[i
].base
)
1581 status
= mxser_get_msr(mxvar_table
[i
].base
, 0,
1582 i
, &(mxvar_table
[i
]));
1584 mxser_check_modem_status(&mxvar_table[i],
1587 if (status
& UART_MSR_TERI
)
1588 mxvar_table
[i
].icount
.rng
++;
1589 if (status
& UART_MSR_DDSR
)
1590 mxvar_table
[i
].icount
.dsr
++;
1591 if (status
& UART_MSR_DDCD
)
1592 mxvar_table
[i
].icount
.dcd
++;
1593 if (status
& UART_MSR_DCTS
)
1594 mxvar_table
[i
].icount
.cts
++;
1596 mxvar_table
[i
].mon_data
.modem_status
= status
;
1597 mon_data_ext
.rx_cnt
[i
] = mxvar_table
[i
].mon_data
.rxcnt
;
1598 mon_data_ext
.tx_cnt
[i
] = mxvar_table
[i
].mon_data
.txcnt
;
1599 mon_data_ext
.up_rxcnt
[i
] = mxvar_table
[i
].mon_data
.up_rxcnt
;
1600 mon_data_ext
.up_txcnt
[i
] = mxvar_table
[i
].mon_data
.up_txcnt
;
1601 mon_data_ext
.modem_status
[i
] = mxvar_table
[i
].mon_data
.modem_status
;
1602 mon_data_ext
.baudrate
[i
] = mxvar_table
[i
].realbaud
;
1604 if (!mxvar_table
[i
].tty
|| !mxvar_table
[i
].tty
->termios
) {
1605 cflag
= mxvar_table
[i
].normal_termios
.c_cflag
;
1606 iflag
= mxvar_table
[i
].normal_termios
.c_iflag
;
1608 cflag
= mxvar_table
[i
].tty
->termios
->c_cflag
;
1609 iflag
= mxvar_table
[i
].tty
->termios
->c_iflag
;
1612 mon_data_ext
.databits
[i
] = cflag
& CSIZE
;
1614 mon_data_ext
.stopbits
[i
] = cflag
& CSTOPB
;
1616 mon_data_ext
.parity
[i
] = cflag
& (PARENB
| PARODD
| CMSPAR
);
1618 mon_data_ext
.flowctrl
[i
] = 0x00;
1620 if (cflag
& CRTSCTS
)
1621 mon_data_ext
.flowctrl
[i
] |= 0x03;
1623 if (iflag
& (IXON
| IXOFF
))
1624 mon_data_ext
.flowctrl
[i
] |= 0x0C;
1626 if (mxvar_table
[i
].type
== PORT_16550A
)
1627 mon_data_ext
.fifo
[i
] = 1;
1629 mon_data_ext
.fifo
[i
] = 0;
1633 opmode
= inb(mxvar_table
[i
].opmode_ioaddr
) >> shiftbit
;
1634 opmode
&= OP_MODE_MASK
;
1636 mon_data_ext
.iftype
[i
] = opmode
;
1639 if (copy_to_user(argp
, &mon_data_ext
, sizeof(struct mxser_mon_ext
)))
1646 return -ENOIOCTLCMD
;
1651 static void mxser_stoprx(struct tty_struct
*tty
)
1653 struct mxser_struct
*info
= tty
->driver_data
;
1654 /* unsigned long flags; */
1656 info
->ldisc_stop_rx
= 1;
1658 /* MX_LOCK(&info->slock); */
1659 /* following add by Victor Yu. 09-02-2002 */
1660 if (info
->IsMoxaMustChipFlag
) {
1661 info
->IER
&= ~MOXA_MUST_RECV_ISR
;
1662 outb(info
->IER
, info
->base
+ UART_IER
);
1664 /* above add by Victor Yu. 09-02-2002 */
1665 info
->x_char
= STOP_CHAR(tty
);
1666 /* mask by Victor Yu. 09-02-2002 */
1667 /* outb(info->IER, 0); */
1668 outb(0, info
->base
+ UART_IER
);
1669 info
->IER
|= UART_IER_THRI
;
1670 /* force Tx interrupt */
1671 outb(info
->IER
, info
->base
+ UART_IER
);
1672 } /* add by Victor Yu. 09-02-2002 */
1673 /* MX_UNLOCK(&info->slock); */
1676 if (info
->tty
->termios
->c_cflag
& CRTSCTS
) {
1677 /* MX_LOCK(&info->slock); */
1678 info
->MCR
&= ~UART_MCR_RTS
;
1679 outb(info
->MCR
, info
->base
+ UART_MCR
);
1680 /* MX_UNLOCK(&info->slock); */
1684 static void mxser_startrx(struct tty_struct
*tty
)
1686 struct mxser_struct
*info
= tty
->driver_data
;
1687 /* unsigned long flags; */
1689 info
->ldisc_stop_rx
= 0;
1694 /* MX_LOCK(&info->slock); */
1696 /* following add by Victor Yu. 09-02-2002 */
1697 if (info
->IsMoxaMustChipFlag
) {
1698 info
->IER
|= MOXA_MUST_RECV_ISR
;
1699 outb(info
->IER
, info
->base
+ UART_IER
);
1701 /* above add by Victor Yu. 09-02-2002 */
1703 info
->x_char
= START_CHAR(tty
);
1704 /* mask by Victor Yu. 09-02-2002 */
1705 /* outb(info->IER, 0); */
1706 /* add by Victor Yu. 09-02-2002 */
1707 outb(0, info
->base
+ UART_IER
);
1708 /* force Tx interrupt */
1709 info
->IER
|= UART_IER_THRI
;
1710 outb(info
->IER
, info
->base
+ UART_IER
);
1711 } /* add by Victor Yu. 09-02-2002 */
1712 /* MX_UNLOCK(&info->slock); */
1716 if (info
->tty
->termios
->c_cflag
& CRTSCTS
) {
1717 /* MX_LOCK(&info->slock); */
1718 info
->MCR
|= UART_MCR_RTS
;
1719 outb(info
->MCR
, info
->base
+ UART_MCR
);
1720 /* MX_UNLOCK(&info->slock); */
1725 * This routine is called by the upper-layer tty layer to signal that
1726 * incoming characters should be throttled.
1728 static void mxser_throttle(struct tty_struct
*tty
)
1730 /* struct mxser_struct *info = tty->driver_data; */
1731 /* unsigned long flags; */
1733 /* MX_LOCK(&info->slock); */
1735 /* MX_UNLOCK(&info->slock); */
1738 static void mxser_unthrottle(struct tty_struct
*tty
)
1740 /* struct mxser_struct *info = tty->driver_data; */
1741 /* unsigned long flags; */
1743 /* MX_LOCK(&info->slock); */
1745 /* MX_UNLOCK(&info->slock); */
1748 static void mxser_set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
)
1750 struct mxser_struct
*info
= tty
->driver_data
;
1751 unsigned long flags
;
1753 if ((tty
->termios
->c_cflag
!= old_termios
->c_cflag
) ||
1754 (RELEVANT_IFLAG(tty
->termios
->c_iflag
) != RELEVANT_IFLAG(old_termios
->c_iflag
))) {
1756 mxser_change_speed(info
, old_termios
);
1758 if ((old_termios
->c_cflag
& CRTSCTS
) &&
1759 !(tty
->termios
->c_cflag
& CRTSCTS
)) {
1760 tty
->hw_stopped
= 0;
1765 /* Handle sw stopped */
1766 if ((old_termios
->c_iflag
& IXON
) &&
1767 !(tty
->termios
->c_iflag
& IXON
)) {
1770 /* following add by Victor Yu. 09-02-2002 */
1771 if (info
->IsMoxaMustChipFlag
) {
1772 spin_lock_irqsave(&info
->slock
, flags
);
1773 DISABLE_MOXA_MUST_RX_SOFTWARE_FLOW_CONTROL(info
->base
);
1774 spin_unlock_irqrestore(&info
->slock
, flags
);
1776 /* above add by Victor Yu. 09-02-2002 */
1783 * mxser_stop() and mxser_start()
1785 * This routines are called before setting or resetting tty->stopped.
1786 * They enable or disable transmitter interrupts, as necessary.
1788 static void mxser_stop(struct tty_struct
*tty
)
1790 struct mxser_struct
*info
= tty
->driver_data
;
1791 unsigned long flags
;
1793 spin_lock_irqsave(&info
->slock
, flags
);
1794 if (info
->IER
& UART_IER_THRI
) {
1795 info
->IER
&= ~UART_IER_THRI
;
1796 outb(info
->IER
, info
->base
+ UART_IER
);
1798 spin_unlock_irqrestore(&info
->slock
, flags
);
1801 static void mxser_start(struct tty_struct
*tty
)
1803 struct mxser_struct
*info
= tty
->driver_data
;
1804 unsigned long flags
;
1806 spin_lock_irqsave(&info
->slock
, flags
);
1807 if (info
->xmit_cnt
&& info
->xmit_buf
&& !(info
->IER
& UART_IER_THRI
)) {
1808 info
->IER
|= UART_IER_THRI
;
1809 outb(info
->IER
, info
->base
+ UART_IER
);
1811 spin_unlock_irqrestore(&info
->slock
, flags
);
1815 * mxser_wait_until_sent() --- wait until the transmitter is empty
1817 static void mxser_wait_until_sent(struct tty_struct
*tty
, int timeout
)
1819 struct mxser_struct
*info
= tty
->driver_data
;
1820 unsigned long orig_jiffies
, char_time
;
1823 if (info
->type
== PORT_UNKNOWN
)
1826 if (info
->xmit_fifo_size
== 0)
1827 return; /* Just in case.... */
1829 orig_jiffies
= jiffies
;
1831 * Set the check interval to be 1/5 of the estimated time to
1832 * send a single character, and make it at least 1. The check
1833 * interval should also be less than the timeout.
1835 * Note: we have to use pretty tight timings here to satisfy
1838 char_time
= (info
->timeout
- HZ
/ 50) / info
->xmit_fifo_size
;
1839 char_time
= char_time
/ 5;
1842 if (timeout
&& timeout
< char_time
)
1843 char_time
= timeout
;
1845 * If the transmitter hasn't cleared in twice the approximate
1846 * amount of time to send the entire FIFO, it probably won't
1847 * ever clear. This assumes the UART isn't doing flow
1848 * control, which is currently the case. Hence, if it ever
1849 * takes longer than info->timeout, this is probably due to a
1850 * UART bug of some kind. So, we clamp the timeout parameter at
1853 if (!timeout
|| timeout
> 2 * info
->timeout
)
1854 timeout
= 2 * info
->timeout
;
1855 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1856 printk(KERN_DEBUG
"In rs_wait_until_sent(%d) check=%lu...",
1857 timeout
, char_time
);
1858 printk("jiff=%lu...", jiffies
);
1860 while (!((lsr
= inb(info
->base
+ UART_LSR
)) & UART_LSR_TEMT
)) {
1861 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1862 printk("lsr = %d (jiff=%lu)...", lsr
, jiffies
);
1864 schedule_timeout_interruptible(char_time
);
1865 if (signal_pending(current
))
1867 if (timeout
&& time_after(jiffies
, orig_jiffies
+ timeout
))
1870 set_current_state(TASK_RUNNING
);
1872 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1873 printk("lsr = %d (jiff=%lu)...done\n", lsr
, jiffies
);
1879 * This routine is called by tty_hangup() when a hangup is signaled.
1881 void mxser_hangup(struct tty_struct
*tty
)
1883 struct mxser_struct
*info
= tty
->driver_data
;
1885 mxser_flush_buffer(tty
);
1886 mxser_shutdown(info
);
1889 info
->flags
&= ~ASYNC_NORMAL_ACTIVE
;
1891 wake_up_interruptible(&info
->open_wait
);
1895 /* added by James 03-12-2004. */
1897 * mxser_rs_break() --- routine which turns the break handling on or off
1899 static void mxser_rs_break(struct tty_struct
*tty
, int break_state
)
1901 struct mxser_struct
*info
= tty
->driver_data
;
1902 unsigned long flags
;
1904 spin_lock_irqsave(&info
->slock
, flags
);
1905 if (break_state
== -1)
1906 outb(inb(info
->base
+ UART_LCR
) | UART_LCR_SBC
,
1907 info
->base
+ UART_LCR
);
1909 outb(inb(info
->base
+ UART_LCR
) & ~UART_LCR_SBC
,
1910 info
->base
+ UART_LCR
);
1911 spin_unlock_irqrestore(&info
->slock
, flags
);
1914 /* (above) added by James. */
1918 * This is the serial driver's generic interrupt routine
1920 static irqreturn_t
mxser_interrupt(int irq
, void *dev_id
)
1923 struct mxser_struct
*info
;
1924 struct mxser_struct
*port
;
1925 int max
, irqbits
, bits
, msr
;
1926 int pass_counter
= 0;
1927 int handled
= IRQ_NONE
;
1930 /* spin_lock(&gm_lock); */
1932 for (i
= 0; i
< MXSER_BOARDS
; i
++) {
1933 if (dev_id
== &(mxvar_table
[i
* MXSER_PORTS_PER_BOARD
])) {
1939 if (i
== MXSER_BOARDS
)
1943 max
= mxser_numports
[mxsercfg
[i
].board_type
- 1];
1945 irqbits
= inb(port
->vector
) & port
->vectormask
;
1946 if (irqbits
== port
->vectormask
)
1949 handled
= IRQ_HANDLED
;
1950 for (i
= 0, bits
= 1; i
< max
; i
++, irqbits
|= bits
, bits
<<= 1) {
1951 if (irqbits
== port
->vectormask
)
1957 /* following add by Victor Yu. 09-13-2002 */
1958 iir
= inb(info
->base
+ UART_IIR
);
1959 if (iir
& UART_IIR_NO_INT
)
1961 iir
&= MOXA_MUST_IIR_MASK
;
1963 status
= inb(info
->base
+ UART_LSR
);
1964 outb(0x27, info
->base
+ UART_FCR
);
1965 inb(info
->base
+ UART_MSR
);
1968 /* above add by Victor Yu. 09-13-2002 */
1970 if (info->tty->flip.count < TTY_FLIPBUF_SIZE / 4) {
1971 info->IER |= MOXA_MUST_RECV_ISR;
1972 outb(info->IER, info->base + UART_IER);
1977 /* mask by Victor Yu. 09-13-2002
1979 (inb(info->base + UART_IIR) & UART_IIR_NO_INT) )
1982 /* mask by Victor Yu. 09-02-2002
1983 status = inb(info->base + UART_LSR) & info->read_status_mask;
1986 /* following add by Victor Yu. 09-02-2002 */
1987 status
= inb(info
->base
+ UART_LSR
);
1989 if (status
& UART_LSR_PE
)
1990 info
->err_shadow
|= NPPI_NOTIFY_PARITY
;
1991 if (status
& UART_LSR_FE
)
1992 info
->err_shadow
|= NPPI_NOTIFY_FRAMING
;
1993 if (status
& UART_LSR_OE
)
1994 info
->err_shadow
|= NPPI_NOTIFY_HW_OVERRUN
;
1995 if (status
& UART_LSR_BI
)
1996 info
->err_shadow
|= NPPI_NOTIFY_BREAK
;
1998 if (info
->IsMoxaMustChipFlag
) {
2000 if ( (status & 0x02) && !(status & 0x01) ) {
2001 outb(info->base+UART_FCR, 0x23);
2005 if (iir
== MOXA_MUST_IIR_GDA
||
2006 iir
== MOXA_MUST_IIR_RDA
||
2007 iir
== MOXA_MUST_IIR_RTO
||
2008 iir
== MOXA_MUST_IIR_LSR
)
2009 mxser_receive_chars(info
, &status
);
2012 /* above add by Victor Yu. 09-02-2002 */
2014 status
&= info
->read_status_mask
;
2015 if (status
& UART_LSR_DR
)
2016 mxser_receive_chars(info
, &status
);
2018 msr
= inb(info
->base
+ UART_MSR
);
2019 if (msr
& UART_MSR_ANY_DELTA
) {
2020 mxser_check_modem_status(info
, msr
);
2022 /* following add by Victor Yu. 09-13-2002 */
2023 if (info
->IsMoxaMustChipFlag
) {
2024 if ((iir
== 0x02) && (status
& UART_LSR_THRE
)) {
2025 mxser_transmit_chars(info
);
2028 /* above add by Victor Yu. 09-13-2002 */
2030 if (status
& UART_LSR_THRE
) {
2031 /* 8-2-99 by William
2032 if ( info->x_char || (info->xmit_cnt > 0) )
2034 mxser_transmit_chars(info
);
2038 if (pass_counter
++ > MXSER_ISR_PASS_LIMIT
) {
2039 break; /* Prevent infinite loops */
2044 /* spin_unlock(&gm_lock); */
2048 static void mxser_receive_chars(struct mxser_struct
*info
, int *status
)
2050 struct tty_struct
*tty
= info
->tty
;
2051 unsigned char ch
, gdl
;
2056 unsigned long flags
;
2058 spin_lock_irqsave(&info
->slock
, flags
);
2060 recv_room
= tty
->receive_room
;
2061 if ((recv_room
== 0) && (!info
->ldisc_stop_rx
)) {
2062 /* mxser_throttle(tty); */
2067 /* following add by Victor Yu. 09-02-2002 */
2068 if (info
->IsMoxaMustChipFlag
!= MOXA_OTHER_UART
) {
2070 if (*status
& UART_LSR_SPECIAL
) {
2073 /* following add by Victor Yu. 02-11-2004 */
2074 if (info
->IsMoxaMustChipFlag
== MOXA_MUST_MU860_HWID
&&
2075 (*status
& MOXA_MUST_LSR_RERR
))
2077 /* above add by Victor Yu. 02-14-2004 */
2078 if (*status
& MOXA_MUST_LSR_RERR
)
2081 gdl
= inb(info
->base
+ MOXA_MUST_GDL_REGISTER
);
2083 /* add by Victor Yu. 02-11-2004 */
2084 if (info
->IsMoxaMustChipFlag
== MOXA_MUST_MU150_HWID
)
2085 gdl
&= MOXA_MUST_GDL_MASK
;
2086 if (gdl
>= recv_room
) {
2087 if (!info
->ldisc_stop_rx
) {
2088 /* mxser_throttle(tty); */
2094 ch
= inb(info
->base
+ UART_RX
);
2095 tty_insert_flip_char(tty
, ch
, 0);
2098 if ((cnt >= HI_WATER) && (info->stop_rx == 0)) {
2107 /* above add by Victor Yu. 09-02-2002 */
2113 if ((cnt >= HI_WATER) && (info->stop_rx == 0)) {
2120 ch
= inb(info
->base
+ UART_RX
);
2121 /* following add by Victor Yu. 09-02-2002 */
2122 if (info
->IsMoxaMustChipFlag
&& (*status
& UART_LSR_OE
) /*&& !(*status&UART_LSR_DR) */ )
2123 outb(0x23, info
->base
+ UART_FCR
);
2124 *status
&= info
->read_status_mask
;
2125 /* above add by Victor Yu. 09-02-2002 */
2126 if (*status
& info
->ignore_status_mask
) {
2127 if (++ignored
> 100)
2131 if (*status
& UART_LSR_SPECIAL
) {
2132 if (*status
& UART_LSR_BI
) {
2134 /* added by casper 1/11/2000 */
2137 if (info
->flags
& ASYNC_SAK
)
2139 } else if (*status
& UART_LSR_PE
) {
2141 /* added by casper 1/11/2000 */
2142 info
->icount
.parity
++;
2144 } else if (*status
& UART_LSR_FE
) {
2146 /* added by casper 1/11/2000 */
2147 info
->icount
.frame
++;
2149 } else if (*status
& UART_LSR_OE
) {
2151 /* added by casper 1/11/2000 */
2152 info
->icount
.overrun
++;
2156 tty_insert_flip_char(tty
, ch
, flag
);
2158 if (cnt
>= recv_room
) {
2159 if (!info
->ldisc_stop_rx
) {
2160 /* mxser_throttle(tty); */
2168 /* following add by Victor Yu. 09-02-2002 */
2169 if (info
->IsMoxaMustChipFlag
)
2171 /* above add by Victor Yu. 09-02-2002 */
2173 /* mask by Victor Yu. 09-02-2002
2174 *status = inb(info->base + UART_LSR) & info->read_status_mask;
2176 /* following add by Victor Yu. 09-02-2002 */
2177 *status
= inb(info
->base
+ UART_LSR
);
2178 /* above add by Victor Yu. 09-02-2002 */
2179 } while (*status
& UART_LSR_DR
);
2181 end_intr
: /* add by Victor Yu. 09-02-2002 */
2182 mxvar_log
.rxcnt
[info
->port
] += cnt
;
2183 info
->mon_data
.rxcnt
+= cnt
;
2184 info
->mon_data
.up_rxcnt
+= cnt
;
2185 spin_unlock_irqrestore(&info
->slock
, flags
);
2187 tty_flip_buffer_push(tty
);
2190 static void mxser_transmit_chars(struct mxser_struct
*info
)
2193 unsigned long flags
;
2195 spin_lock_irqsave(&info
->slock
, flags
);
2198 outb(info
->x_char
, info
->base
+ UART_TX
);
2200 mxvar_log
.txcnt
[info
->port
]++;
2201 info
->mon_data
.txcnt
++;
2202 info
->mon_data
.up_txcnt
++;
2204 /* added by casper 1/11/2000 */
2207 spin_unlock_irqrestore(&info
->slock
, flags
);
2211 if (info
->xmit_buf
== 0) {
2212 spin_unlock_irqrestore(&info
->slock
, flags
);
2216 if ((info
->xmit_cnt
<= 0) || info
->tty
->stopped
||
2217 (info
->tty
->hw_stopped
&&
2218 (info
->type
!= PORT_16550A
) &&
2219 (!info
->IsMoxaMustChipFlag
))) {
2220 info
->IER
&= ~UART_IER_THRI
;
2221 outb(info
->IER
, info
->base
+ UART_IER
);
2222 spin_unlock_irqrestore(&info
->slock
, flags
);
2226 cnt
= info
->xmit_cnt
;
2227 count
= info
->xmit_fifo_size
;
2229 outb(info
->xmit_buf
[info
->xmit_tail
++],
2230 info
->base
+ UART_TX
);
2231 info
->xmit_tail
= info
->xmit_tail
& (SERIAL_XMIT_SIZE
- 1);
2232 if (--info
->xmit_cnt
<= 0)
2234 } while (--count
> 0);
2235 mxvar_log
.txcnt
[info
->port
] += (cnt
- info
->xmit_cnt
);
2237 /* added by James 03-12-2004. */
2238 info
->mon_data
.txcnt
+= (cnt
- info
->xmit_cnt
);
2239 info
->mon_data
.up_txcnt
+= (cnt
- info
->xmit_cnt
);
2240 /* (above) added by James. */
2242 /* added by casper 1/11/2000 */
2243 info
->icount
.tx
+= (cnt
- info
->xmit_cnt
);
2246 if (info
->xmit_cnt
< WAKEUP_CHARS
) {
2247 set_bit(MXSER_EVENT_TXLOW
, &info
->event
);
2248 schedule_work(&info
->tqueue
);
2250 if (info
->xmit_cnt
<= 0) {
2251 info
->IER
&= ~UART_IER_THRI
;
2252 outb(info
->IER
, info
->base
+ UART_IER
);
2254 spin_unlock_irqrestore(&info
->slock
, flags
);
2257 static void mxser_check_modem_status(struct mxser_struct
*info
, int status
)
2259 /* update input line counters */
2260 if (status
& UART_MSR_TERI
)
2262 if (status
& UART_MSR_DDSR
)
2264 if (status
& UART_MSR_DDCD
)
2266 if (status
& UART_MSR_DCTS
)
2268 info
->mon_data
.modem_status
= status
;
2269 wake_up_interruptible(&info
->delta_msr_wait
);
2271 if ((info
->flags
& ASYNC_CHECK_CD
) && (status
& UART_MSR_DDCD
)) {
2272 if (status
& UART_MSR_DCD
)
2273 wake_up_interruptible(&info
->open_wait
);
2274 schedule_work(&info
->tqueue
);
2277 if (info
->flags
& ASYNC_CTS_FLOW
) {
2278 if (info
->tty
->hw_stopped
) {
2279 if (status
& UART_MSR_CTS
) {
2280 info
->tty
->hw_stopped
= 0;
2282 if ((info
->type
!= PORT_16550A
) &&
2283 (!info
->IsMoxaMustChipFlag
)) {
2284 info
->IER
|= UART_IER_THRI
;
2285 outb(info
->IER
, info
->base
+ UART_IER
);
2287 set_bit(MXSER_EVENT_TXLOW
, &info
->event
);
2288 schedule_work(&info
->tqueue
); }
2290 if (!(status
& UART_MSR_CTS
)) {
2291 info
->tty
->hw_stopped
= 1;
2292 if ((info
->type
!= PORT_16550A
) &&
2293 (!info
->IsMoxaMustChipFlag
)) {
2294 info
->IER
&= ~UART_IER_THRI
;
2295 outb(info
->IER
, info
->base
+ UART_IER
);
2302 static int mxser_block_til_ready(struct tty_struct
*tty
, struct file
*filp
, struct mxser_struct
*info
)
2304 DECLARE_WAITQUEUE(wait
, current
);
2307 unsigned long flags
;
2310 * If non-blocking mode is set, or the port is not enabled,
2311 * then make the check up front and then exit.
2313 if ((filp
->f_flags
& O_NONBLOCK
) || (tty
->flags
& (1 << TTY_IO_ERROR
))) {
2314 info
->flags
|= ASYNC_NORMAL_ACTIVE
;
2318 if (tty
->termios
->c_cflag
& CLOCAL
)
2322 * Block waiting for the carrier detect and the line to become
2323 * free (i.e., not in use by the callout). While we are in
2324 * this loop, info->count is dropped by one, so that
2325 * mxser_close() knows when to free things. We restore it upon
2326 * exit, either normal or abnormal.
2329 add_wait_queue(&info
->open_wait
, &wait
);
2331 spin_lock_irqsave(&info
->slock
, flags
);
2332 if (!tty_hung_up_p(filp
))
2334 spin_unlock_irqrestore(&info
->slock
, flags
);
2335 info
->blocked_open
++;
2337 spin_lock_irqsave(&info
->slock
, flags
);
2338 outb(inb(info
->base
+ UART_MCR
) |
2339 UART_MCR_DTR
| UART_MCR_RTS
, info
->base
+ UART_MCR
);
2340 spin_unlock_irqrestore(&info
->slock
, flags
);
2341 set_current_state(TASK_INTERRUPTIBLE
);
2342 if (tty_hung_up_p(filp
) || !(info
->flags
& ASYNC_INITIALIZED
)) {
2343 if (info
->flags
& ASYNC_HUP_NOTIFY
)
2346 retval
= -ERESTARTSYS
;
2349 if (!(info
->flags
& ASYNC_CLOSING
) &&
2351 (inb(info
->base
+ UART_MSR
) & UART_MSR_DCD
)))
2353 if (signal_pending(current
)) {
2354 retval
= -ERESTARTSYS
;
2359 set_current_state(TASK_RUNNING
);
2360 remove_wait_queue(&info
->open_wait
, &wait
);
2361 if (!tty_hung_up_p(filp
))
2363 info
->blocked_open
--;
2366 info
->flags
|= ASYNC_NORMAL_ACTIVE
;
2370 static int mxser_startup(struct mxser_struct
*info
)
2373 unsigned long flags
;
2375 page
= __get_free_page(GFP_KERNEL
);
2379 spin_lock_irqsave(&info
->slock
, flags
);
2381 if (info
->flags
& ASYNC_INITIALIZED
) {
2383 spin_unlock_irqrestore(&info
->slock
, flags
);
2387 if (!info
->base
|| !info
->type
) {
2389 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
2391 spin_unlock_irqrestore(&info
->slock
, flags
);
2397 info
->xmit_buf
= (unsigned char *) page
;
2400 * Clear the FIFO buffers and disable them
2401 * (they will be reenabled in mxser_change_speed())
2403 if (info
->IsMoxaMustChipFlag
)
2404 outb((UART_FCR_CLEAR_RCVR
|
2405 UART_FCR_CLEAR_XMIT
|
2406 MOXA_MUST_FCR_GDA_MODE_ENABLE
), info
->base
+ UART_FCR
);
2408 outb((UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
),
2409 info
->base
+ UART_FCR
);
2412 * At this point there's no way the LSR could still be 0xFF;
2413 * if it is, then bail out, because there's likely no UART
2416 if (inb(info
->base
+ UART_LSR
) == 0xff) {
2417 spin_unlock_irqrestore(&info
->slock
, flags
);
2418 if (capable(CAP_SYS_ADMIN
)) {
2420 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
2427 * Clear the interrupt registers.
2429 (void) inb(info
->base
+ UART_LSR
);
2430 (void) inb(info
->base
+ UART_RX
);
2431 (void) inb(info
->base
+ UART_IIR
);
2432 (void) inb(info
->base
+ UART_MSR
);
2435 * Now, initialize the UART
2437 outb(UART_LCR_WLEN8
, info
->base
+ UART_LCR
); /* reset DLAB */
2438 info
->MCR
= UART_MCR_DTR
| UART_MCR_RTS
;
2439 outb(info
->MCR
, info
->base
+ UART_MCR
);
2442 * Finally, enable interrupts
2444 info
->IER
= UART_IER_MSI
| UART_IER_RLSI
| UART_IER_RDI
;
2445 /* info->IER = UART_IER_RLSI | UART_IER_RDI; */
2447 /* following add by Victor Yu. 08-30-2002 */
2448 if (info
->IsMoxaMustChipFlag
)
2449 info
->IER
|= MOXA_MUST_IER_EGDAI
;
2450 /* above add by Victor Yu. 08-30-2002 */
2451 outb(info
->IER
, info
->base
+ UART_IER
); /* enable interrupts */
2454 * And clear the interrupt registers again for luck.
2456 (void) inb(info
->base
+ UART_LSR
);
2457 (void) inb(info
->base
+ UART_RX
);
2458 (void) inb(info
->base
+ UART_IIR
);
2459 (void) inb(info
->base
+ UART_MSR
);
2462 clear_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
2463 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
2466 * and set the speed of the serial port
2468 spin_unlock_irqrestore(&info
->slock
, flags
);
2469 mxser_change_speed(info
, NULL
);
2471 info
->flags
|= ASYNC_INITIALIZED
;
2476 * This routine will shutdown a serial port; interrupts maybe disabled, and
2477 * DTR is dropped if the hangup on close termio flag is on.
2479 static void mxser_shutdown(struct mxser_struct
*info
)
2481 unsigned long flags
;
2483 if (!(info
->flags
& ASYNC_INITIALIZED
))
2486 spin_lock_irqsave(&info
->slock
, flags
);
2489 * clear delta_msr_wait queue to avoid mem leaks: we may free the irq
2490 * here so the queue might never be waken up
2492 wake_up_interruptible(&info
->delta_msr_wait
);
2495 * Free the IRQ, if necessary
2497 if (info
->xmit_buf
) {
2498 free_page((unsigned long) info
->xmit_buf
);
2499 info
->xmit_buf
= NULL
;
2503 outb(0x00, info
->base
+ UART_IER
);
2505 if (!info
->tty
|| (info
->tty
->termios
->c_cflag
& HUPCL
))
2506 info
->MCR
&= ~(UART_MCR_DTR
| UART_MCR_RTS
);
2507 outb(info
->MCR
, info
->base
+ UART_MCR
);
2509 /* clear Rx/Tx FIFO's */
2510 /* following add by Victor Yu. 08-30-2002 */
2511 if (info
->IsMoxaMustChipFlag
)
2512 outb((UART_FCR_CLEAR_RCVR
|
2513 UART_FCR_CLEAR_XMIT
|
2514 MOXA_MUST_FCR_GDA_MODE_ENABLE
), info
->base
+ UART_FCR
);
2516 /* above add by Victor Yu. 08-30-2002 */
2517 outb((UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
),
2518 info
->base
+ UART_FCR
);
2520 /* read data port to reset things */
2521 (void) inb(info
->base
+ UART_RX
);
2524 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
2526 info
->flags
&= ~ASYNC_INITIALIZED
;
2528 /* following add by Victor Yu. 09-23-2002 */
2529 if (info
->IsMoxaMustChipFlag
)
2530 SET_MOXA_MUST_NO_SOFTWARE_FLOW_CONTROL(info
->base
);
2531 /* above add by Victor Yu. 09-23-2002 */
2533 spin_unlock_irqrestore(&info
->slock
, flags
);
2537 * This routine is called to set the UART divisor registers to match
2538 * the specified baud rate for a serial port.
2540 static int mxser_change_speed(struct mxser_struct
*info
, struct ktermios
*old_termios
)
2542 unsigned cflag
, cval
, fcr
;
2544 unsigned char status
;
2546 unsigned long flags
;
2548 if (!info
->tty
|| !info
->tty
->termios
)
2550 cflag
= info
->tty
->termios
->c_cflag
;
2555 #define B921600 (B460800 +1)
2557 if (mxser_set_baud_method
[info
->port
] == 0) {
2558 baud
= tty_get_baud_rate(info
->tty
);
2559 mxser_set_baud(info
, baud
);
2562 /* byte size and parity */
2563 switch (cflag
& CSIZE
) {
2578 break; /* too keep GCC shut... */
2583 cval
|= UART_LCR_PARITY
;
2584 if (!(cflag
& PARODD
))
2585 cval
|= UART_LCR_EPAR
;
2587 cval
|= UART_LCR_SPAR
;
2589 if ((info
->type
== PORT_8250
) || (info
->type
== PORT_16450
)) {
2590 if (info
->IsMoxaMustChipFlag
) {
2591 fcr
= UART_FCR_ENABLE_FIFO
;
2592 fcr
|= MOXA_MUST_FCR_GDA_MODE_ENABLE
;
2593 SET_MOXA_MUST_FIFO_VALUE(info
);
2597 fcr
= UART_FCR_ENABLE_FIFO
;
2598 /* following add by Victor Yu. 08-30-2002 */
2599 if (info
->IsMoxaMustChipFlag
) {
2600 fcr
|= MOXA_MUST_FCR_GDA_MODE_ENABLE
;
2601 SET_MOXA_MUST_FIFO_VALUE(info
);
2603 /* above add by Victor Yu. 08-30-2002 */
2604 switch (info
->rx_trigger
) {
2606 fcr
|= UART_FCR_TRIGGER_1
;
2609 fcr
|= UART_FCR_TRIGGER_4
;
2612 fcr
|= UART_FCR_TRIGGER_8
;
2615 fcr
|= UART_FCR_TRIGGER_14
;
2621 /* CTS flow control flag and modem status interrupts */
2622 info
->IER
&= ~UART_IER_MSI
;
2623 info
->MCR
&= ~UART_MCR_AFE
;
2624 if (cflag
& CRTSCTS
) {
2625 info
->flags
|= ASYNC_CTS_FLOW
;
2626 info
->IER
|= UART_IER_MSI
;
2627 if ((info
->type
== PORT_16550A
) || (info
->IsMoxaMustChipFlag
)) {
2628 info
->MCR
|= UART_MCR_AFE
;
2629 /* status = mxser_get_msr(info->base, 0, info->port); */
2633 status = inb(baseaddr + UART_MSR);
2634 restore_flags(flags);
2636 /* mxser_check_modem_status(info, status); */
2638 /* status = mxser_get_msr(info->base, 0, info->port); */
2639 /* MX_LOCK(&info->slock); */
2640 status
= inb(info
->base
+ UART_MSR
);
2641 /* MX_UNLOCK(&info->slock); */
2642 if (info
->tty
->hw_stopped
) {
2643 if (status
& UART_MSR_CTS
) {
2644 info
->tty
->hw_stopped
= 0;
2645 if ((info
->type
!= PORT_16550A
) &&
2646 (!info
->IsMoxaMustChipFlag
)) {
2647 info
->IER
|= UART_IER_THRI
;
2648 outb(info
->IER
, info
->base
+ UART_IER
);
2650 set_bit(MXSER_EVENT_TXLOW
, &info
->event
);
2651 schedule_work(&info
->tqueue
); }
2653 if (!(status
& UART_MSR_CTS
)) {
2654 info
->tty
->hw_stopped
= 1;
2655 if ((info
->type
!= PORT_16550A
) &&
2656 (!info
->IsMoxaMustChipFlag
)) {
2657 info
->IER
&= ~UART_IER_THRI
;
2658 outb(info
->IER
, info
->base
+ UART_IER
);
2664 info
->flags
&= ~ASYNC_CTS_FLOW
;
2666 outb(info
->MCR
, info
->base
+ UART_MCR
);
2667 if (cflag
& CLOCAL
) {
2668 info
->flags
&= ~ASYNC_CHECK_CD
;
2670 info
->flags
|= ASYNC_CHECK_CD
;
2671 info
->IER
|= UART_IER_MSI
;
2673 outb(info
->IER
, info
->base
+ UART_IER
);
2676 * Set up parity check flag
2678 info
->read_status_mask
= UART_LSR_OE
| UART_LSR_THRE
| UART_LSR_DR
;
2679 if (I_INPCK(info
->tty
))
2680 info
->read_status_mask
|= UART_LSR_FE
| UART_LSR_PE
;
2681 if (I_BRKINT(info
->tty
) || I_PARMRK(info
->tty
))
2682 info
->read_status_mask
|= UART_LSR_BI
;
2684 info
->ignore_status_mask
= 0;
2686 if (I_IGNBRK(info
->tty
)) {
2687 info
->ignore_status_mask
|= UART_LSR_BI
;
2688 info
->read_status_mask
|= UART_LSR_BI
;
2690 * If we're ignore parity and break indicators, ignore
2691 * overruns too. (For real raw support).
2693 if (I_IGNPAR(info
->tty
)) {
2694 info
->ignore_status_mask
|=
2698 info
->read_status_mask
|=
2704 /* following add by Victor Yu. 09-02-2002 */
2705 if (info
->IsMoxaMustChipFlag
) {
2706 spin_lock_irqsave(&info
->slock
, flags
);
2707 SET_MOXA_MUST_XON1_VALUE(info
->base
, START_CHAR(info
->tty
));
2708 SET_MOXA_MUST_XOFF1_VALUE(info
->base
, STOP_CHAR(info
->tty
));
2709 if (I_IXON(info
->tty
)) {
2710 ENABLE_MOXA_MUST_RX_SOFTWARE_FLOW_CONTROL(info
->base
);
2712 DISABLE_MOXA_MUST_RX_SOFTWARE_FLOW_CONTROL(info
->base
);
2714 if (I_IXOFF(info
->tty
)) {
2715 ENABLE_MOXA_MUST_TX_SOFTWARE_FLOW_CONTROL(info
->base
);
2717 DISABLE_MOXA_MUST_TX_SOFTWARE_FLOW_CONTROL(info
->base
);
2720 if ( I_IXANY(info->tty) ) {
2721 info->MCR |= MOXA_MUST_MCR_XON_ANY;
2722 ENABLE_MOXA_MUST_XON_ANY_FLOW_CONTROL(info->base);
2724 info->MCR &= ~MOXA_MUST_MCR_XON_ANY;
2725 DISABLE_MOXA_MUST_XON_ANY_FLOW_CONTROL(info->base);
2728 spin_unlock_irqrestore(&info
->slock
, flags
);
2730 /* above add by Victor Yu. 09-02-2002 */
2733 outb(fcr
, info
->base
+ UART_FCR
); /* set fcr */
2734 outb(cval
, info
->base
+ UART_LCR
);
2740 static int mxser_set_baud(struct mxser_struct
*info
, long newspd
)
2745 unsigned long flags
;
2747 if (!info
->tty
|| !info
->tty
->termios
)
2753 if (newspd
> info
->MaxCanSetBaudRate
)
2756 info
->realbaud
= newspd
;
2757 if (newspd
== 134) {
2758 quot
= (2 * info
->baud_base
/ 269);
2759 } else if (newspd
) {
2760 quot
= info
->baud_base
/ newspd
;
2767 info
->timeout
= ((info
->xmit_fifo_size
* HZ
* 10 * quot
) / info
->baud_base
);
2768 info
->timeout
+= HZ
/ 50; /* Add .02 seconds of slop */
2771 spin_lock_irqsave(&info
->slock
, flags
);
2772 info
->MCR
|= UART_MCR_DTR
;
2773 outb(info
->MCR
, info
->base
+ UART_MCR
);
2774 spin_unlock_irqrestore(&info
->slock
, flags
);
2776 spin_lock_irqsave(&info
->slock
, flags
);
2777 info
->MCR
&= ~UART_MCR_DTR
;
2778 outb(info
->MCR
, info
->base
+ UART_MCR
);
2779 spin_unlock_irqrestore(&info
->slock
, flags
);
2783 cval
= inb(info
->base
+ UART_LCR
);
2785 outb(cval
| UART_LCR_DLAB
, info
->base
+ UART_LCR
); /* set DLAB */
2787 outb(quot
& 0xff, info
->base
+ UART_DLL
); /* LS of divisor */
2788 outb(quot
>> 8, info
->base
+ UART_DLM
); /* MS of divisor */
2789 outb(cval
, info
->base
+ UART_LCR
); /* reset DLAB */
2796 * ------------------------------------------------------------
2797 * friends of mxser_ioctl()
2798 * ------------------------------------------------------------
2800 static int mxser_get_serial_info(struct mxser_struct
*info
, struct serial_struct __user
*retinfo
)
2802 struct serial_struct tmp
;
2806 memset(&tmp
, 0, sizeof(tmp
));
2807 tmp
.type
= info
->type
;
2808 tmp
.line
= info
->port
;
2809 tmp
.port
= info
->base
;
2810 tmp
.irq
= info
->irq
;
2811 tmp
.flags
= info
->flags
;
2812 tmp
.baud_base
= info
->baud_base
;
2813 tmp
.close_delay
= info
->close_delay
;
2814 tmp
.closing_wait
= info
->closing_wait
;
2815 tmp
.custom_divisor
= info
->custom_divisor
;
2817 if (copy_to_user(retinfo
, &tmp
, sizeof(*retinfo
)))
2822 static int mxser_set_serial_info(struct mxser_struct
*info
, struct serial_struct __user
*new_info
)
2824 struct serial_struct new_serial
;
2828 if (!new_info
|| !info
->base
)
2830 if (copy_from_user(&new_serial
, new_info
, sizeof(new_serial
)))
2833 if ((new_serial
.irq
!= info
->irq
) ||
2834 (new_serial
.port
!= info
->base
) ||
2835 (new_serial
.custom_divisor
!= info
->custom_divisor
) ||
2836 (new_serial
.baud_base
!= info
->baud_base
))
2839 flags
= info
->flags
& ASYNC_SPD_MASK
;
2841 if (!capable(CAP_SYS_ADMIN
)) {
2842 if ((new_serial
.baud_base
!= info
->baud_base
) ||
2843 (new_serial
.close_delay
!= info
->close_delay
) ||
2844 ((new_serial
.flags
& ~ASYNC_USR_MASK
) != (info
->flags
& ~ASYNC_USR_MASK
)))
2846 info
->flags
= ((info
->flags
& ~ASYNC_USR_MASK
) |
2847 (new_serial
.flags
& ASYNC_USR_MASK
));
2850 * OK, past this point, all the error checking has been done.
2851 * At this point, we start making changes.....
2853 info
->flags
= ((info
->flags
& ~ASYNC_FLAGS
) |
2854 (new_serial
.flags
& ASYNC_FLAGS
));
2855 info
->close_delay
= new_serial
.close_delay
* HZ
/ 100;
2856 info
->closing_wait
= new_serial
.closing_wait
* HZ
/ 100;
2857 info
->tty
->low_latency
=
2858 (info
->flags
& ASYNC_LOW_LATENCY
) ? 1 : 0;
2859 info
->tty
->low_latency
= 0; /* (info->flags & ASYNC_LOW_LATENCY) ? 1 : 0; */
2862 /* added by casper, 3/17/2000, for mouse */
2863 info
->type
= new_serial
.type
;
2865 process_txrx_fifo(info
);
2867 if (info
->flags
& ASYNC_INITIALIZED
) {
2868 if (flags
!= (info
->flags
& ASYNC_SPD_MASK
)) {
2869 mxser_change_speed(info
, NULL
);
2872 retval
= mxser_startup(info
);
2878 * mxser_get_lsr_info - get line status register info
2880 * Purpose: Let user call ioctl() to get info when the UART physically
2881 * is emptied. On bus types like RS485, the transmitter must
2882 * release the bus after transmitting. This must be done when
2883 * the transmit shift register is empty, not be done when the
2884 * transmit holding register is empty. This functionality
2885 * allows an RS485 driver to be written in user space.
2887 static int mxser_get_lsr_info(struct mxser_struct
*info
, unsigned int __user
*value
)
2889 unsigned char status
;
2890 unsigned int result
;
2891 unsigned long flags
;
2893 spin_lock_irqsave(&info
->slock
, flags
);
2894 status
= inb(info
->base
+ UART_LSR
);
2895 spin_unlock_irqrestore(&info
->slock
, flags
);
2896 result
= ((status
& UART_LSR_TEMT
) ? TIOCSER_TEMT
: 0);
2897 return put_user(result
, value
);
2901 * This routine sends a break character out the serial port.
2903 static void mxser_send_break(struct mxser_struct
*info
, int duration
)
2905 unsigned long flags
;
2909 set_current_state(TASK_INTERRUPTIBLE
);
2910 spin_lock_irqsave(&info
->slock
, flags
);
2911 outb(inb(info
->base
+ UART_LCR
) | UART_LCR_SBC
,
2912 info
->base
+ UART_LCR
);
2913 spin_unlock_irqrestore(&info
->slock
, flags
);
2914 schedule_timeout(duration
);
2915 spin_lock_irqsave(&info
->slock
, flags
);
2916 outb(inb(info
->base
+ UART_LCR
) & ~UART_LCR_SBC
,
2917 info
->base
+ UART_LCR
);
2918 spin_unlock_irqrestore(&info
->slock
, flags
);
2921 static int mxser_tiocmget(struct tty_struct
*tty
, struct file
*file
)
2923 struct mxser_struct
*info
= tty
->driver_data
;
2924 unsigned char control
, status
;
2925 unsigned long flags
;
2928 if (tty
->index
== MXSER_PORTS
)
2929 return -ENOIOCTLCMD
;
2930 if (tty
->flags
& (1 << TTY_IO_ERROR
))
2933 control
= info
->MCR
;
2935 spin_lock_irqsave(&info
->slock
, flags
);
2936 status
= inb(info
->base
+ UART_MSR
);
2937 if (status
& UART_MSR_ANY_DELTA
)
2938 mxser_check_modem_status(info
, status
);
2939 spin_unlock_irqrestore(&info
->slock
, flags
);
2940 return ((control
& UART_MCR_RTS
) ? TIOCM_RTS
: 0) |
2941 ((control
& UART_MCR_DTR
) ? TIOCM_DTR
: 0) |
2942 ((status
& UART_MSR_DCD
) ? TIOCM_CAR
: 0) |
2943 ((status
& UART_MSR_RI
) ? TIOCM_RNG
: 0) |
2944 ((status
& UART_MSR_DSR
) ? TIOCM_DSR
: 0) |
2945 ((status
& UART_MSR_CTS
) ? TIOCM_CTS
: 0);
2948 static int mxser_tiocmset(struct tty_struct
*tty
, struct file
*file
, unsigned int set
, unsigned int clear
)
2950 struct mxser_struct
*info
= tty
->driver_data
;
2951 unsigned long flags
;
2954 if (tty
->index
== MXSER_PORTS
)
2955 return -ENOIOCTLCMD
;
2956 if (tty
->flags
& (1 << TTY_IO_ERROR
))
2959 spin_lock_irqsave(&info
->slock
, flags
);
2961 if (set
& TIOCM_RTS
)
2962 info
->MCR
|= UART_MCR_RTS
;
2963 if (set
& TIOCM_DTR
)
2964 info
->MCR
|= UART_MCR_DTR
;
2966 if (clear
& TIOCM_RTS
)
2967 info
->MCR
&= ~UART_MCR_RTS
;
2968 if (clear
& TIOCM_DTR
)
2969 info
->MCR
&= ~UART_MCR_DTR
;
2971 outb(info
->MCR
, info
->base
+ UART_MCR
);
2972 spin_unlock_irqrestore(&info
->slock
, flags
);
2977 static int mxser_read_register(int, unsigned short *);
2978 static int mxser_program_mode(int);
2979 static void mxser_normal_mode(int);
2981 static int mxser_get_ISA_conf(int cap
, struct mxser_hwconf
*hwconf
)
2984 unsigned short regs
[16], irq
;
2985 unsigned char scratch
, scratch2
;
2987 hwconf
->IsMoxaMustChipFlag
= MOXA_OTHER_UART
;
2989 id
= mxser_read_register(cap
, regs
);
2990 if (id
== C168_ASIC_ID
) {
2991 hwconf
->board_type
= MXSER_BOARD_C168_ISA
;
2993 } else if (id
== C104_ASIC_ID
) {
2994 hwconf
->board_type
= MXSER_BOARD_C104_ISA
;
2996 } else if (id
== C102_ASIC_ID
) {
2997 hwconf
->board_type
= MXSER_BOARD_C102_ISA
;
2999 } else if (id
== CI132_ASIC_ID
) {
3000 hwconf
->board_type
= MXSER_BOARD_CI132
;
3002 } else if (id
== CI134_ASIC_ID
) {
3003 hwconf
->board_type
= MXSER_BOARD_CI134
;
3005 } else if (id
== CI104J_ASIC_ID
) {
3006 hwconf
->board_type
= MXSER_BOARD_CI104J
;
3012 if (hwconf
->ports
== 2) {
3013 irq
= regs
[9] & 0xF000;
3014 irq
= irq
| (irq
>> 4);
3015 if (irq
!= (regs
[9] & 0xFF00))
3016 return MXSER_ERR_IRQ_CONFLIT
;
3017 } else if (hwconf
->ports
== 4) {
3018 irq
= regs
[9] & 0xF000;
3019 irq
= irq
| (irq
>> 4);
3020 irq
= irq
| (irq
>> 8);
3022 return MXSER_ERR_IRQ_CONFLIT
;
3023 } else if (hwconf
->ports
== 8) {
3024 irq
= regs
[9] & 0xF000;
3025 irq
= irq
| (irq
>> 4);
3026 irq
= irq
| (irq
>> 8);
3027 if ((irq
!= regs
[9]) || (irq
!= regs
[10]))
3028 return MXSER_ERR_IRQ_CONFLIT
;
3032 return MXSER_ERR_IRQ
;
3033 hwconf
->irq
= ((int)(irq
& 0xF000) >> 12);
3034 for (i
= 0; i
< 8; i
++)
3035 hwconf
->ioaddr
[i
] = (int) regs
[i
+ 1] & 0xFFF8;
3036 if ((regs
[12] & 0x80) == 0)
3037 return MXSER_ERR_VECTOR
;
3038 hwconf
->vector
= (int)regs
[11]; /* interrupt vector */
3040 hwconf
->vector_mask
= 0x00FF;
3042 hwconf
->vector_mask
= 0x000F;
3043 for (i
= 7, bits
= 0x0100; i
>= 0; i
--, bits
<<= 1) {
3044 if (regs
[12] & bits
) {
3045 hwconf
->baud_base
[i
] = 921600;
3046 hwconf
->MaxCanSetBaudRate
[i
] = 921600; /* add by Victor Yu. 09-04-2002 */
3048 hwconf
->baud_base
[i
] = 115200;
3049 hwconf
->MaxCanSetBaudRate
[i
] = 115200; /* add by Victor Yu. 09-04-2002 */
3052 scratch2
= inb(cap
+ UART_LCR
) & (~UART_LCR_DLAB
);
3053 outb(scratch2
| UART_LCR_DLAB
, cap
+ UART_LCR
);
3054 outb(0, cap
+ UART_EFR
); /* EFR is the same as FCR */
3055 outb(scratch2
, cap
+ UART_LCR
);
3056 outb(UART_FCR_ENABLE_FIFO
, cap
+ UART_FCR
);
3057 scratch
= inb(cap
+ UART_IIR
);
3060 hwconf
->uart_type
= PORT_16550A
;
3062 hwconf
->uart_type
= PORT_16450
;
3067 request_region(hwconf
->ioaddr
[0], 8 * hwconf
->ports
, "mxser(IO)");
3068 request_region(hwconf
->vector
, 1, "mxser(vector)");
3069 return hwconf
->ports
;
3072 #define CHIP_SK 0x01 /* Serial Data Clock in Eprom */
3073 #define CHIP_DO 0x02 /* Serial Data Output in Eprom */
3074 #define CHIP_CS 0x04 /* Serial Chip Select in Eprom */
3075 #define CHIP_DI 0x08 /* Serial Data Input in Eprom */
3076 #define EN_CCMD 0x000 /* Chip's command register */
3077 #define EN0_RSARLO 0x008 /* Remote start address reg 0 */
3078 #define EN0_RSARHI 0x009 /* Remote start address reg 1 */
3079 #define EN0_RCNTLO 0x00A /* Remote byte count reg WR */
3080 #define EN0_RCNTHI 0x00B /* Remote byte count reg WR */
3081 #define EN0_DCFG 0x00E /* Data configuration reg WR */
3082 #define EN0_PORT 0x010 /* Rcv missed frame error counter RD */
3083 #define ENC_PAGE0 0x000 /* Select page 0 of chip registers */
3084 #define ENC_PAGE3 0x0C0 /* Select page 3 of chip registers */
3085 static int mxser_read_register(int port
, unsigned short *regs
)
3087 int i
, k
, value
, id
;
3090 id
= mxser_program_mode(port
);
3093 for (i
= 0; i
< 14; i
++) {
3094 k
= (i
& 0x3F) | 0x180;
3095 for (j
= 0x100; j
> 0; j
>>= 1) {
3096 outb(CHIP_CS
, port
);
3098 outb(CHIP_CS
| CHIP_DO
, port
);
3099 outb(CHIP_CS
| CHIP_DO
| CHIP_SK
, port
); /* A? bit of read */
3101 outb(CHIP_CS
, port
);
3102 outb(CHIP_CS
| CHIP_SK
, port
); /* A? bit of read */
3107 for (k
= 0, j
= 0x8000; k
< 16; k
++, j
>>= 1) {
3108 outb(CHIP_CS
, port
);
3109 outb(CHIP_CS
| CHIP_SK
, port
);
3110 if (inb(port
) & CHIP_DI
)
3116 mxser_normal_mode(port
);
3120 static int mxser_program_mode(int port
)
3123 /* unsigned long flags; */
3125 spin_lock(&gm_lock
);
3133 /* restore_flags(flags); */
3134 spin_unlock(&gm_lock
);
3136 id
= inb(port
+ 1) & 0x1F;
3137 if ((id
!= C168_ASIC_ID
) &&
3138 (id
!= C104_ASIC_ID
) &&
3139 (id
!= C102_ASIC_ID
) &&
3140 (id
!= CI132_ASIC_ID
) &&
3141 (id
!= CI134_ASIC_ID
) &&
3142 (id
!= CI104J_ASIC_ID
))
3144 for (i
= 0, j
= 0; i
< 4; i
++) {
3148 } else if ((j
== 1) && (n
== 1)) {
3159 static void mxser_normal_mode(int port
)
3163 outb(0xA5, port
+ 1);
3164 outb(0x80, port
+ 3);
3165 outb(12, port
+ 0); /* 9600 bps */
3167 outb(0x03, port
+ 3); /* 8 data bits */
3168 outb(0x13, port
+ 4); /* loop back mode */
3169 for (i
= 0; i
< 16; i
++) {
3171 if ((n
& 0x61) == 0x60)
3176 outb(0x00, port
+ 4);
3179 module_init(mxser_module_init
);
3180 module_exit(mxser_module_exit
);