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/delay.h>
58 #include <linux/pci.h>
60 #include <asm/system.h>
63 #include <asm/bitops.h>
64 #include <asm/uaccess.h>
68 #define MXSER_VERSION "1.8"
69 #define MXSERMAJOR 174
70 #define MXSERCUMAJOR 175
72 #define MXSER_EVENT_TXLOW 1
73 #define MXSER_EVENT_HANGUP 2
75 #define MXSER_BOARDS 4 /* Max. boards */
76 #define MXSER_PORTS 32 /* Max. ports */
77 #define MXSER_PORTS_PER_BOARD 8 /* Max. ports per board */
78 #define MXSER_ISR_PASS_LIMIT 256
80 #define MXSER_ERR_IOADDR -1
81 #define MXSER_ERR_IRQ -2
82 #define MXSER_ERR_IRQ_CONFLIT -3
83 #define MXSER_ERR_VECTOR -4
85 #define SERIAL_TYPE_NORMAL 1
86 #define SERIAL_TYPE_CALLOUT 2
88 #define WAKEUP_CHARS 256
90 #define UART_MCR_AFE 0x20
91 #define UART_LSR_SPECIAL 0x1E
94 #define IRQ_T(info) ((info->flags & ASYNC_SHARE_IRQ) ? IRQF_SHARED : IRQF_DISABLED)
96 #define C168_ASIC_ID 1
97 #define C104_ASIC_ID 2
98 #define C102_ASIC_ID 0xB
99 #define CI132_ASIC_ID 4
100 #define CI134_ASIC_ID 3
101 #define CI104J_ASIC_ID 5
104 MXSER_BOARD_C168_ISA
= 1,
105 MXSER_BOARD_C104_ISA
,
107 MXSER_BOARD_C168_PCI
,
108 MXSER_BOARD_C104_PCI
,
109 MXSER_BOARD_C102_ISA
,
127 static char *mxser_brdname
[] = {
145 "Moxa UC7000 Serial",
151 static int mxser_numports
[] = {
175 #define UART_TYPE_NUM 2
177 static const unsigned int Gmoxa_uart_id
[UART_TYPE_NUM
] = {
178 MOXA_MUST_MU150_HWID
,
182 /* This is only for PCI */
183 #define UART_INFO_NUM 3
184 struct mxpciuart_info
{
195 static const struct mxpciuart_info Gpci_uart_info
[UART_INFO_NUM
] = {
196 {MOXA_OTHER_UART
, 16, 16, 16, 14, 14, 1, 921600L},
197 {MOXA_MUST_MU150_HWID
, 64, 64, 64, 48, 48, 16, 230400L},
198 {MOXA_MUST_MU860_HWID
, 128, 128, 128, 96, 96, 32, 921600L}
204 static struct pci_device_id mxser_pcibrds
[] = {
205 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_C168
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_C168_PCI
},
206 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_C104
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_C104_PCI
},
207 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CP132
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CP132
},
208 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CP114
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CP114
},
209 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CT114
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CT114
},
210 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CP102
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CP102
},
211 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CP104U
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CP104U
},
212 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CP168U
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CP168U
},
213 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CP132U
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CP132U
},
214 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CP134U
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CP134U
},
215 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CP104JU
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CP104JU
},
216 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_RC7000
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_RC7000
},
217 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CP118U
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CP118U
},
218 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CP102UL
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CP102UL
},
219 {PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CP102U
, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, MXSER_BOARD_CP102U
},
223 MODULE_DEVICE_TABLE(pci
, mxser_pcibrds
);
228 typedef struct _moxa_pci_info
{
229 unsigned short busNum
;
230 unsigned short devNum
;
231 struct pci_dev
*pdev
; /* add by Victor Yu. 06-23-2003 */
234 static int ioaddr
[MXSER_BOARDS
] = { 0, 0, 0, 0 };
235 static int ttymajor
= MXSERMAJOR
;
236 static int calloutmajor
= MXSERCUMAJOR
;
237 static int verbose
= 0;
239 /* Variables for insmod */
241 MODULE_AUTHOR("Casper Yang");
242 MODULE_DESCRIPTION("MOXA Smartio/Industio Family Multiport Board Device Driver");
243 module_param_array(ioaddr
, int, NULL
, 0);
244 module_param(ttymajor
, int, 0);
245 module_param(calloutmajor
, int, 0);
246 module_param(verbose
, bool, 0);
247 MODULE_LICENSE("GPL");
251 unsigned long rxcnt
[MXSER_PORTS
];
252 unsigned long txcnt
[MXSER_PORTS
];
259 unsigned long up_rxcnt
;
260 unsigned long up_txcnt
;
262 unsigned char hold_reason
;
265 struct mxser_mon_ext
{
266 unsigned long rx_cnt
[32];
267 unsigned long tx_cnt
[32];
268 unsigned long up_rxcnt
[32];
269 unsigned long up_txcnt
[32];
270 int modem_status
[32];
281 struct mxser_hwconf
{
288 int ioaddr
[MXSER_PORTS_PER_BOARD
];
289 int baud_base
[MXSER_PORTS_PER_BOARD
];
290 moxa_pci_info pciInfo
;
291 int IsMoxaMustChipFlag
; /* add by Victor Yu. 08-30-2002 */
292 int MaxCanSetBaudRate
[MXSER_PORTS_PER_BOARD
]; /* add by Victor Yu. 09-04-2002 */
293 int opmode_ioaddr
[MXSER_PORTS_PER_BOARD
]; /* add by Victor Yu. 01-05-2004 */
296 struct mxser_struct
{
298 int base
; /* port base address */
299 int irq
; /* port using irq no. */
300 int vector
; /* port irq vector */
301 int vectormask
; /* port vector mask */
303 int rx_trigger
; /* Rx fifo trigger level */
305 int baud_base
; /* max. speed */
306 int flags
; /* defined in tty.h */
307 int type
; /* UART type */
308 struct tty_struct
*tty
;
309 int read_status_mask
;
310 int ignore_status_mask
;
313 int x_char
; /* xon/xoff character */
315 unsigned short closing_wait
;
316 int IER
; /* Interrupt Enable Register */
317 int MCR
; /* Modem control register */
319 int count
; /* # of fd on device */
320 int blocked_open
; /* # of blocked opens */
321 unsigned char *xmit_buf
;
325 struct work_struct tqueue
;
326 struct ktermios normal_termios
;
327 struct ktermios callout_termios
;
328 wait_queue_head_t open_wait
;
329 wait_queue_head_t close_wait
;
330 wait_queue_head_t delta_msr_wait
;
331 struct async_icount icount
; /* kernel counters for the 4 input interrupts */
333 int IsMoxaMustChipFlag
; /* add by Victor Yu. 08-30-2002 */
334 int MaxCanSetBaudRate
; /* add by Victor Yu. 09-04-2002 */
335 int opmode_ioaddr
; /* add by Victor Yu. 01-05-2004 */
336 unsigned char stop_rx
;
337 unsigned char ldisc_stop_rx
;
339 struct mxser_mon mon_data
;
340 unsigned char err_shadow
;
344 struct mxser_mstatus
{
352 static struct mxser_mstatus GMStatus
[MXSER_PORTS
];
354 static int mxserBoardCAP
[MXSER_BOARDS
] = {
356 /* 0x180, 0x280, 0x200, 0x320 */
359 static struct tty_driver
*mxvar_sdriver
;
360 static struct mxser_struct mxvar_table
[MXSER_PORTS
];
361 static struct tty_struct
*mxvar_tty
[MXSER_PORTS
+ 1];
362 static struct ktermios
*mxvar_termios
[MXSER_PORTS
+ 1];
363 static struct ktermios
*mxvar_termios_locked
[MXSER_PORTS
+ 1];
364 static struct mxser_log mxvar_log
;
365 static int mxvar_diagflag
;
366 static unsigned char mxser_msr
[MXSER_PORTS
+ 1];
367 static struct mxser_mon_ext mon_data_ext
;
368 static int mxser_set_baud_method
[MXSER_PORTS
+ 1];
369 static spinlock_t gm_lock
;
372 * This is used to figure out the divisor speeds and the timeouts
375 static struct mxser_hwconf mxsercfg
[MXSER_BOARDS
];
381 static void mxser_getcfg(int board
, struct mxser_hwconf
*hwconf
);
382 static int mxser_init(void);
384 /* static void mxser_poll(unsigned long); */
385 static int mxser_get_ISA_conf(int, struct mxser_hwconf
*);
386 static int mxser_get_PCI_conf(int, int, int, struct mxser_hwconf
*);
387 static void mxser_do_softint(struct work_struct
*);
388 static int mxser_open(struct tty_struct
*, struct file
*);
389 static void mxser_close(struct tty_struct
*, struct file
*);
390 static int mxser_write(struct tty_struct
*, const unsigned char *, int);
391 static int mxser_write_room(struct tty_struct
*);
392 static void mxser_flush_buffer(struct tty_struct
*);
393 static int mxser_chars_in_buffer(struct tty_struct
*);
394 static void mxser_flush_chars(struct tty_struct
*);
395 static void mxser_put_char(struct tty_struct
*, unsigned char);
396 static int mxser_ioctl(struct tty_struct
*, struct file
*, uint
, ulong
);
397 static int mxser_ioctl_special(unsigned int, void __user
*);
398 static void mxser_throttle(struct tty_struct
*);
399 static void mxser_unthrottle(struct tty_struct
*);
400 static void mxser_set_termios(struct tty_struct
*, struct ktermios
*);
401 static void mxser_stop(struct tty_struct
*);
402 static void mxser_start(struct tty_struct
*);
403 static void mxser_hangup(struct tty_struct
*);
404 static void mxser_rs_break(struct tty_struct
*, int);
405 static irqreturn_t
mxser_interrupt(int, void *);
406 static void mxser_receive_chars(struct mxser_struct
*, int *);
407 static void mxser_transmit_chars(struct mxser_struct
*);
408 static void mxser_check_modem_status(struct mxser_struct
*, int);
409 static int mxser_block_til_ready(struct tty_struct
*, struct file
*, struct mxser_struct
*);
410 static int mxser_startup(struct mxser_struct
*);
411 static void mxser_shutdown(struct mxser_struct
*);
412 static int mxser_change_speed(struct mxser_struct
*, struct ktermios
*old_termios
);
413 static int mxser_get_serial_info(struct mxser_struct
*, struct serial_struct __user
*);
414 static int mxser_set_serial_info(struct mxser_struct
*, struct serial_struct __user
*);
415 static int mxser_get_lsr_info(struct mxser_struct
*, unsigned int __user
*);
416 static void mxser_send_break(struct mxser_struct
*, int);
417 static int mxser_tiocmget(struct tty_struct
*, struct file
*);
418 static int mxser_tiocmset(struct tty_struct
*, struct file
*, unsigned int, unsigned int);
419 static int mxser_set_baud(struct mxser_struct
*info
, long newspd
);
420 static void mxser_wait_until_sent(struct tty_struct
*tty
, int timeout
);
422 static void mxser_startrx(struct tty_struct
*tty
);
423 static void mxser_stoprx(struct tty_struct
*tty
);
426 static int CheckIsMoxaMust(int io
)
431 outb(0, io
+ UART_LCR
);
432 DISABLE_MOXA_MUST_ENCHANCE_MODE(io
);
433 oldmcr
= inb(io
+ UART_MCR
);
434 outb(0, io
+ UART_MCR
);
435 SET_MOXA_MUST_XON1_VALUE(io
, 0x11);
436 if ((hwid
= inb(io
+ UART_MCR
)) != 0) {
437 outb(oldmcr
, io
+ UART_MCR
);
438 return MOXA_OTHER_UART
;
441 GET_MOXA_MUST_HARDWARE_ID(io
, &hwid
);
442 for (i
= 0; i
< UART_TYPE_NUM
; i
++) {
443 if (hwid
== Gmoxa_uart_id
[i
])
446 return MOXA_OTHER_UART
;
449 /* above is modified by Victor Yu. 08-15-2002 */
451 static const struct tty_operations mxser_ops
= {
453 .close
= mxser_close
,
454 .write
= mxser_write
,
455 .put_char
= mxser_put_char
,
456 .flush_chars
= mxser_flush_chars
,
457 .write_room
= mxser_write_room
,
458 .chars_in_buffer
= mxser_chars_in_buffer
,
459 .flush_buffer
= mxser_flush_buffer
,
460 .ioctl
= mxser_ioctl
,
461 .throttle
= mxser_throttle
,
462 .unthrottle
= mxser_unthrottle
,
463 .set_termios
= mxser_set_termios
,
465 .start
= mxser_start
,
466 .hangup
= mxser_hangup
,
467 .break_ctl
= mxser_rs_break
,
468 .wait_until_sent
= mxser_wait_until_sent
,
469 .tiocmget
= mxser_tiocmget
,
470 .tiocmset
= mxser_tiocmset
,
474 * The MOXA Smartio/Industio serial driver boot-time initialization code!
477 static int __init
mxser_module_init(void)
482 printk(KERN_DEBUG
"Loading module mxser ...\n");
485 printk(KERN_DEBUG
"Done.\n");
489 static void __exit
mxser_module_exit(void)
494 printk(KERN_DEBUG
"Unloading module mxser ...\n");
496 err
= tty_unregister_driver(mxvar_sdriver
);
498 put_tty_driver(mxvar_sdriver
);
500 printk(KERN_ERR
"Couldn't unregister MOXA Smartio/Industio family serial driver\n");
502 for (i
= 0; i
< MXSER_BOARDS
; i
++) {
503 struct pci_dev
*pdev
;
505 if (mxsercfg
[i
].board_type
== -1)
508 pdev
= mxsercfg
[i
].pciInfo
.pdev
;
509 free_irq(mxsercfg
[i
].irq
, &mxvar_table
[i
* MXSER_PORTS_PER_BOARD
]);
510 if (pdev
!= NULL
) { /* PCI */
511 release_region(pci_resource_start(pdev
, 2), pci_resource_len(pdev
, 2));
512 release_region(pci_resource_start(pdev
, 3), pci_resource_len(pdev
, 3));
515 release_region(mxsercfg
[i
].ioaddr
[0], 8 * mxsercfg
[i
].ports
);
516 release_region(mxsercfg
[i
].vector
, 1);
521 printk(KERN_DEBUG
"Done.\n");
524 static void process_txrx_fifo(struct mxser_struct
*info
)
528 if ((info
->type
== PORT_16450
) || (info
->type
== PORT_8250
)) {
529 info
->rx_trigger
= 1;
530 info
->rx_high_water
= 1;
531 info
->rx_low_water
= 1;
532 info
->xmit_fifo_size
= 1;
534 for (i
= 0; i
< UART_INFO_NUM
; i
++) {
535 if (info
->IsMoxaMustChipFlag
== Gpci_uart_info
[i
].type
) {
536 info
->rx_trigger
= Gpci_uart_info
[i
].rx_trigger
;
537 info
->rx_low_water
= Gpci_uart_info
[i
].rx_low_water
;
538 info
->rx_high_water
= Gpci_uart_info
[i
].rx_high_water
;
539 info
->xmit_fifo_size
= Gpci_uart_info
[i
].xmit_fifo_size
;
546 static int mxser_initbrd(int board
, struct mxser_hwconf
*hwconf
)
548 struct mxser_struct
*info
;
552 n
= board
* MXSER_PORTS_PER_BOARD
;
553 info
= &mxvar_table
[n
];
555 printk(KERN_DEBUG
" ttyMI%d - ttyMI%d ",
556 n
, n
+ hwconf
->ports
- 1);
557 printk(" max. baud rate = %d bps.\n",
558 hwconf
->MaxCanSetBaudRate
[0]);
561 for (i
= 0; i
< hwconf
->ports
; i
++, n
++, info
++) {
563 info
->base
= hwconf
->ioaddr
[i
];
564 info
->irq
= hwconf
->irq
;
565 info
->vector
= hwconf
->vector
;
566 info
->vectormask
= hwconf
->vector_mask
;
567 info
->opmode_ioaddr
= hwconf
->opmode_ioaddr
[i
]; /* add by Victor Yu. 01-05-2004 */
569 info
->ldisc_stop_rx
= 0;
571 info
->IsMoxaMustChipFlag
= hwconf
->IsMoxaMustChipFlag
;
572 /* Enhance mode enabled here */
573 if (info
->IsMoxaMustChipFlag
!= MOXA_OTHER_UART
) {
574 ENABLE_MOXA_MUST_ENCHANCE_MODE(info
->base
);
577 info
->flags
= ASYNC_SHARE_IRQ
;
578 info
->type
= hwconf
->uart_type
;
579 info
->baud_base
= hwconf
->baud_base
[i
];
581 info
->MaxCanSetBaudRate
= hwconf
->MaxCanSetBaudRate
[i
];
583 process_txrx_fifo(info
);
586 info
->custom_divisor
= hwconf
->baud_base
[i
] * 16;
587 info
->close_delay
= 5 * HZ
/ 10;
588 info
->closing_wait
= 30 * HZ
;
589 INIT_WORK(&info
->tqueue
, mxser_do_softint
);
590 info
->normal_termios
= mxvar_sdriver
->init_termios
;
591 init_waitqueue_head(&info
->open_wait
);
592 init_waitqueue_head(&info
->close_wait
);
593 init_waitqueue_head(&info
->delta_msr_wait
);
594 memset(&info
->mon_data
, 0, sizeof(struct mxser_mon
));
595 info
->err_shadow
= 0;
596 spin_lock_init(&info
->slock
);
599 * Allocate the IRQ if necessary
603 /* before set INT ISR, disable all int */
604 for (i
= 0; i
< hwconf
->ports
; i
++) {
605 outb(inb(hwconf
->ioaddr
[i
] + UART_IER
) & 0xf0,
606 hwconf
->ioaddr
[i
] + UART_IER
);
609 n
= board
* MXSER_PORTS_PER_BOARD
;
610 info
= &mxvar_table
[n
];
612 retval
= request_irq(hwconf
->irq
, mxser_interrupt
, IRQ_T(info
),
615 printk(KERN_ERR
"Board %d: %s",
616 board
, mxser_brdname
[hwconf
->board_type
- 1]);
617 printk(" Request irq failed, IRQ (%d) may conflict with"
618 " another device.\n", info
->irq
);
624 static void mxser_getcfg(int board
, struct mxser_hwconf
*hwconf
)
626 mxsercfg
[board
] = *hwconf
;
630 static int mxser_get_PCI_conf(int busnum
, int devnum
, int board_type
, struct mxser_hwconf
*hwconf
)
633 /* unsigned int val; */
634 unsigned int ioaddress
;
635 struct pci_dev
*pdev
= hwconf
->pciInfo
.pdev
;
638 hwconf
->board_type
= board_type
;
639 hwconf
->ports
= mxser_numports
[board_type
- 1];
640 ioaddress
= pci_resource_start(pdev
, 2);
641 request_region(pci_resource_start(pdev
, 2), pci_resource_len(pdev
, 2),
644 for (i
= 0; i
< hwconf
->ports
; i
++)
645 hwconf
->ioaddr
[i
] = ioaddress
+ 8 * i
;
648 ioaddress
= pci_resource_start(pdev
, 3);
649 request_region(pci_resource_start(pdev
, 3), pci_resource_len(pdev
, 3),
651 hwconf
->vector
= ioaddress
;
654 hwconf
->irq
= hwconf
->pciInfo
.pdev
->irq
;
656 hwconf
->IsMoxaMustChipFlag
= CheckIsMoxaMust(hwconf
->ioaddr
[0]);
657 hwconf
->uart_type
= PORT_16550A
;
658 hwconf
->vector_mask
= 0;
661 for (i
= 0; i
< hwconf
->ports
; i
++) {
662 for (j
= 0; j
< UART_INFO_NUM
; j
++) {
663 if (Gpci_uart_info
[j
].type
== hwconf
->IsMoxaMustChipFlag
) {
664 hwconf
->MaxCanSetBaudRate
[i
] = Gpci_uart_info
[j
].max_baud
;
666 /* exception....CP-102 */
667 if (board_type
== MXSER_BOARD_CP102
)
668 hwconf
->MaxCanSetBaudRate
[i
] = 921600;
674 if (hwconf
->IsMoxaMustChipFlag
== MOXA_MUST_MU860_HWID
) {
675 for (i
= 0; i
< hwconf
->ports
; i
++) {
677 hwconf
->opmode_ioaddr
[i
] = ioaddress
+ 4;
679 hwconf
->opmode_ioaddr
[i
] = ioaddress
+ 0x0c;
681 outb(0, ioaddress
+ 4); /* default set to RS232 mode */
682 outb(0, ioaddress
+ 0x0c); /* default set to RS232 mode */
685 for (i
= 0; i
< hwconf
->ports
; i
++) {
686 hwconf
->vector_mask
|= (1 << i
);
687 hwconf
->baud_base
[i
] = 921600;
693 static int mxser_init(void)
695 int i
, m
, retval
, b
, n
;
696 struct pci_dev
*pdev
= NULL
;
698 unsigned char busnum
, devnum
;
699 struct mxser_hwconf hwconf
;
701 mxvar_sdriver
= alloc_tty_driver(MXSER_PORTS
+ 1);
704 spin_lock_init(&gm_lock
);
706 for (i
= 0; i
< MXSER_BOARDS
; i
++) {
707 mxsercfg
[i
].board_type
= -1;
710 printk(KERN_INFO
"MOXA Smartio/Industio family driver version %s\n",
713 /* Initialize the tty_driver structure */
714 memset(mxvar_sdriver
, 0, sizeof(struct tty_driver
));
715 mxvar_sdriver
->owner
= THIS_MODULE
;
716 mxvar_sdriver
->magic
= TTY_DRIVER_MAGIC
;
717 mxvar_sdriver
->name
= "ttyMI";
718 mxvar_sdriver
->major
= ttymajor
;
719 mxvar_sdriver
->minor_start
= 0;
720 mxvar_sdriver
->num
= MXSER_PORTS
+ 1;
721 mxvar_sdriver
->type
= TTY_DRIVER_TYPE_SERIAL
;
722 mxvar_sdriver
->subtype
= SERIAL_TYPE_NORMAL
;
723 mxvar_sdriver
->init_termios
= tty_std_termios
;
724 mxvar_sdriver
->init_termios
.c_cflag
= B9600
|CS8
|CREAD
|HUPCL
|CLOCAL
;
725 mxvar_sdriver
->init_termios
.c_ispeed
= 9600;
726 mxvar_sdriver
->init_termios
.c_ospeed
= 9600;
727 mxvar_sdriver
->flags
= TTY_DRIVER_REAL_RAW
;
728 tty_set_operations(mxvar_sdriver
, &mxser_ops
);
729 mxvar_sdriver
->ttys
= mxvar_tty
;
730 mxvar_sdriver
->termios
= mxvar_termios
;
731 mxvar_sdriver
->termios_locked
= mxvar_termios_locked
;
734 memset(mxvar_table
, 0, MXSER_PORTS
* sizeof(struct mxser_struct
));
735 memset(&mxvar_log
, 0, sizeof(struct mxser_log
));
737 memset(&mxser_msr
, 0, sizeof(unsigned char) * (MXSER_PORTS
+ 1));
738 memset(&mon_data_ext
, 0, sizeof(struct mxser_mon_ext
));
739 memset(&mxser_set_baud_method
, 0, sizeof(int) * (MXSER_PORTS
+ 1));
740 memset(&hwconf
, 0, sizeof(struct mxser_hwconf
));
743 /* Start finding ISA boards here */
744 for (b
= 0; b
< MXSER_BOARDS
&& m
< MXSER_BOARDS
; b
++) {
747 if (!(cap
= mxserBoardCAP
[b
]))
750 retval
= mxser_get_ISA_conf(cap
, &hwconf
);
753 printk(KERN_INFO
"Found MOXA %s board (CAP=0x%x)\n",
754 mxser_brdname
[hwconf
.board_type
- 1], ioaddr
[b
]);
757 if (retval
== MXSER_ERR_IRQ
)
758 printk(KERN_ERR
"Invalid interrupt number, "
759 "board not configured\n");
760 else if (retval
== MXSER_ERR_IRQ_CONFLIT
)
761 printk(KERN_ERR
"Invalid interrupt number, "
762 "board not configured\n");
763 else if (retval
== MXSER_ERR_VECTOR
)
764 printk(KERN_ERR
"Invalid interrupt vector, "
765 "board not configured\n");
766 else if (retval
== MXSER_ERR_IOADDR
)
767 printk(KERN_ERR
"Invalid I/O address, "
768 "board not configured\n");
773 hwconf
.pciInfo
.busNum
= 0;
774 hwconf
.pciInfo
.devNum
= 0;
775 hwconf
.pciInfo
.pdev
= NULL
;
777 mxser_getcfg(m
, &hwconf
);
779 * init mxsercfg first,
780 * or mxsercfg data is not correct on ISR.
782 /* mxser_initbrd will hook ISR. */
783 if (mxser_initbrd(m
, &hwconf
) < 0)
789 /* Start finding ISA boards from module arg */
790 for (b
= 0; b
< MXSER_BOARDS
&& m
< MXSER_BOARDS
; b
++) {
793 if (!(cap
= ioaddr
[b
]))
796 retval
= mxser_get_ISA_conf(cap
, &hwconf
);
799 printk(KERN_INFO
"Found MOXA %s board (CAP=0x%x)\n",
800 mxser_brdname
[hwconf
.board_type
- 1], ioaddr
[b
]);
803 if (retval
== MXSER_ERR_IRQ
)
804 printk(KERN_ERR
"Invalid interrupt number, "
805 "board not configured\n");
806 else if (retval
== MXSER_ERR_IRQ_CONFLIT
)
807 printk(KERN_ERR
"Invalid interrupt number, "
808 "board not configured\n");
809 else if (retval
== MXSER_ERR_VECTOR
)
810 printk(KERN_ERR
"Invalid interrupt vector, "
811 "board not configured\n");
812 else if (retval
== MXSER_ERR_IOADDR
)
813 printk(KERN_ERR
"Invalid I/O address, "
814 "board not configured\n");
819 hwconf
.pciInfo
.busNum
= 0;
820 hwconf
.pciInfo
.devNum
= 0;
821 hwconf
.pciInfo
.pdev
= NULL
;
823 mxser_getcfg(m
, &hwconf
);
825 * init mxsercfg first,
826 * or mxsercfg data is not correct on ISR.
828 /* mxser_initbrd will hook ISR. */
829 if (mxser_initbrd(m
, &hwconf
) < 0)
835 /* start finding PCI board here */
837 n
= ARRAY_SIZE(mxser_pcibrds
) - 1;
841 pdev
= pci_get_device(mxser_pcibrds
[b
].vendor
,
842 mxser_pcibrds
[b
].device
, pdev
);
847 hwconf
.pciInfo
.busNum
= busnum
= pdev
->bus
->number
;
848 hwconf
.pciInfo
.devNum
= devnum
= PCI_SLOT(pdev
->devfn
) << 3;
849 hwconf
.pciInfo
.pdev
= pdev
;
850 printk(KERN_INFO
"Found MOXA %s board(BusNo=%d,DevNo=%d)\n",
851 mxser_brdname
[(int) (mxser_pcibrds
[b
].driver_data
) - 1],
852 busnum
, devnum
>> 3);
854 if (m
>= MXSER_BOARDS
)
856 "Too many Smartio/Industio family boards find "
857 "(maximum %d), board not configured\n",
860 if (pci_enable_device(pdev
)) {
861 printk(KERN_ERR
"Moxa SmartI/O PCI enable "
865 retval
= mxser_get_PCI_conf(busnum
, devnum
,
866 (int)mxser_pcibrds
[b
].driver_data
,
869 if (retval
== MXSER_ERR_IRQ
)
871 "Invalid interrupt number, "
872 "board not configured\n");
873 else if (retval
== MXSER_ERR_IRQ_CONFLIT
)
875 "Invalid interrupt number, "
876 "board not configured\n");
877 else if (retval
== MXSER_ERR_VECTOR
)
879 "Invalid interrupt vector, "
880 "board not configured\n");
881 else if (retval
== MXSER_ERR_IOADDR
)
883 "Invalid I/O address, "
884 "board not configured\n");
887 mxser_getcfg(m
, &hwconf
);
888 /* init mxsercfg first,
889 * or mxsercfg data is not correct on ISR.
891 /* mxser_initbrd will hook ISR. */
892 if (mxser_initbrd(m
, &hwconf
) < 0)
895 /* Keep an extra reference if we succeeded. It will
896 be returned at unload time */
902 retval
= tty_register_driver(mxvar_sdriver
);
904 printk(KERN_ERR
"Couldn't install MOXA Smartio/Industio family"
906 put_tty_driver(mxvar_sdriver
);
908 for (i
= 0; i
< MXSER_BOARDS
; i
++) {
909 if (mxsercfg
[i
].board_type
== -1)
912 free_irq(mxsercfg
[i
].irq
, &mxvar_table
[i
* MXSER_PORTS_PER_BOARD
]);
913 /* todo: release io, vector */
922 static void mxser_do_softint(struct work_struct
*work
)
924 struct mxser_struct
*info
=
925 container_of(work
, struct mxser_struct
, tqueue
);
926 struct tty_struct
*tty
;
931 if (test_and_clear_bit(MXSER_EVENT_TXLOW
, &info
->event
))
933 if (test_and_clear_bit(MXSER_EVENT_HANGUP
, &info
->event
))
938 static unsigned char mxser_get_msr(int baseaddr
, int mode
, int port
, struct mxser_struct
*info
)
940 unsigned char status
= 0;
942 status
= inb(baseaddr
+ UART_MSR
);
944 mxser_msr
[port
] &= 0x0F;
945 mxser_msr
[port
] |= status
;
946 status
= mxser_msr
[port
];
954 * This routine is called whenever a serial port is opened. It
955 * enables interrupts for a serial port, linking in its async structure into
956 * the IRQ chain. It also performs the serial-specific
957 * initialization for the tty structure.
959 static int mxser_open(struct tty_struct
*tty
, struct file
*filp
)
961 struct mxser_struct
*info
;
964 /* initialize driver_data in case something fails */
965 tty
->driver_data
= NULL
;
968 if (line
== MXSER_PORTS
)
970 if (line
< 0 || line
> MXSER_PORTS
)
972 info
= mxvar_table
+ line
;
976 tty
->driver_data
= info
;
979 * Start up serial port
981 retval
= mxser_startup(info
);
985 retval
= mxser_block_til_ready(tty
, filp
, info
);
991 if ((info
->count
== 1) && (info
->flags
& ASYNC_SPLIT_TERMIOS
)) {
992 if (tty
->driver
->subtype
== SERIAL_TYPE_NORMAL
)
993 *tty
->termios
= info
->normal_termios
;
995 *tty
->termios
= info
->callout_termios
;
996 mxser_change_speed(info
, NULL
);
1000 status = mxser_get_msr(info->base, 0, info->port);
1001 mxser_check_modem_status(info, status);
1004 /* unmark here for very high baud rate (ex. 921600 bps) used */
1005 tty
->low_latency
= 1;
1010 * This routine is called when the serial port gets closed. First, we
1011 * wait for the last remaining data to be sent. Then, we unlink its
1012 * async structure from the interrupt chain if necessary, and we free
1013 * that IRQ if nothing is left in the chain.
1015 static void mxser_close(struct tty_struct
*tty
, struct file
*filp
)
1017 struct mxser_struct
*info
= tty
->driver_data
;
1019 unsigned long timeout
;
1020 unsigned long flags
;
1021 struct tty_ldisc
*ld
;
1023 if (tty
->index
== MXSER_PORTS
)
1028 spin_lock_irqsave(&info
->slock
, flags
);
1030 if (tty_hung_up_p(filp
)) {
1031 spin_unlock_irqrestore(&info
->slock
, flags
);
1034 if ((tty
->count
== 1) && (info
->count
!= 1)) {
1036 * Uh, oh. tty->count is 1, which means that the tty
1037 * structure will be freed. Info->count should always
1038 * be one in these conditions. If it's greater than
1039 * one, we've got real problems, since it means the
1040 * serial port won't be shutdown.
1042 printk(KERN_ERR
"mxser_close: bad serial port count; "
1043 "tty->count is 1, info->count is %d\n", info
->count
);
1046 if (--info
->count
< 0) {
1047 printk(KERN_ERR
"mxser_close: bad serial port count for "
1048 "ttys%d: %d\n", info
->port
, info
->count
);
1052 spin_unlock_irqrestore(&info
->slock
, flags
);
1055 info
->flags
|= ASYNC_CLOSING
;
1056 spin_unlock_irqrestore(&info
->slock
, flags
);
1058 * Save the termios structure, since this port may have
1059 * separate termios for callout and dialin.
1061 if (info
->flags
& ASYNC_NORMAL_ACTIVE
)
1062 info
->normal_termios
= *tty
->termios
;
1064 * Now we wait for the transmit buffer to clear; and we notify
1065 * the line discipline to only process XON/XOFF characters.
1068 if (info
->closing_wait
!= ASYNC_CLOSING_WAIT_NONE
)
1069 tty_wait_until_sent(tty
, info
->closing_wait
);
1071 * At this point we stop accepting input. To do this, we
1072 * disable the receive line status interrupts, and tell the
1073 * interrupt driver to stop checking the data ready bit in the
1074 * line status register.
1076 info
->IER
&= ~UART_IER_RLSI
;
1077 if (info
->IsMoxaMustChipFlag
)
1078 info
->IER
&= ~MOXA_MUST_RECV_ISR
;
1080 info->read_status_mask &= ~UART_LSR_DR;
1082 if (info
->flags
& ASYNC_INITIALIZED
) {
1083 outb(info
->IER
, info
->base
+ UART_IER
);
1085 * Before we drop DTR, make sure the UART transmitter
1086 * has completely drained; this is especially
1087 * important if there is a transmit FIFO!
1089 timeout
= jiffies
+ HZ
;
1090 while (!(inb(info
->base
+ UART_LSR
) & UART_LSR_TEMT
)) {
1091 schedule_timeout_interruptible(5);
1092 if (time_after(jiffies
, timeout
))
1096 mxser_shutdown(info
);
1098 if (tty
->driver
->flush_buffer
)
1099 tty
->driver
->flush_buffer(tty
);
1101 ld
= tty_ldisc_ref(tty
);
1103 if (ld
->flush_buffer
)
1104 ld
->flush_buffer(tty
);
1105 tty_ldisc_deref(ld
);
1111 if (info
->blocked_open
) {
1112 if (info
->close_delay
)
1113 schedule_timeout_interruptible(info
->close_delay
);
1114 wake_up_interruptible(&info
->open_wait
);
1117 info
->flags
&= ~(ASYNC_NORMAL_ACTIVE
| ASYNC_CLOSING
);
1118 wake_up_interruptible(&info
->close_wait
);
1122 static int mxser_write(struct tty_struct
*tty
, const unsigned char *buf
, int count
)
1125 struct mxser_struct
*info
= tty
->driver_data
;
1126 unsigned long flags
;
1128 if (!info
->xmit_buf
)
1132 c
= min_t(int, count
, min(SERIAL_XMIT_SIZE
- info
->xmit_cnt
- 1,
1133 SERIAL_XMIT_SIZE
- info
->xmit_head
));
1137 memcpy(info
->xmit_buf
+ info
->xmit_head
, buf
, c
);
1138 spin_lock_irqsave(&info
->slock
, flags
);
1139 info
->xmit_head
= (info
->xmit_head
+ c
) &
1140 (SERIAL_XMIT_SIZE
- 1);
1141 info
->xmit_cnt
+= c
;
1142 spin_unlock_irqrestore(&info
->slock
, flags
);
1149 if (info
->xmit_cnt
&& !tty
->stopped
&& !(info
->IER
& UART_IER_THRI
)) {
1150 if (!tty
->hw_stopped
||
1151 (info
->type
== PORT_16550A
) ||
1152 (info
->IsMoxaMustChipFlag
)) {
1153 spin_lock_irqsave(&info
->slock
, flags
);
1154 info
->IER
|= UART_IER_THRI
;
1155 outb(info
->IER
, info
->base
+ UART_IER
);
1156 spin_unlock_irqrestore(&info
->slock
, flags
);
1162 static void mxser_put_char(struct tty_struct
*tty
, unsigned char ch
)
1164 struct mxser_struct
*info
= tty
->driver_data
;
1165 unsigned long flags
;
1167 if (!info
->xmit_buf
)
1170 if (info
->xmit_cnt
>= SERIAL_XMIT_SIZE
- 1)
1173 spin_lock_irqsave(&info
->slock
, flags
);
1174 info
->xmit_buf
[info
->xmit_head
++] = ch
;
1175 info
->xmit_head
&= SERIAL_XMIT_SIZE
- 1;
1177 spin_unlock_irqrestore(&info
->slock
, flags
);
1178 if (!tty
->stopped
&& !(info
->IER
& UART_IER_THRI
)) {
1179 if (!tty
->hw_stopped
||
1180 (info
->type
== PORT_16550A
) ||
1181 info
->IsMoxaMustChipFlag
) {
1182 spin_lock_irqsave(&info
->slock
, flags
);
1183 info
->IER
|= UART_IER_THRI
;
1184 outb(info
->IER
, info
->base
+ UART_IER
);
1185 spin_unlock_irqrestore(&info
->slock
, flags
);
1191 static void mxser_flush_chars(struct tty_struct
*tty
)
1193 struct mxser_struct
*info
= tty
->driver_data
;
1194 unsigned long flags
;
1196 if (info
->xmit_cnt
<= 0 ||
1200 (info
->type
!= PORT_16550A
) &&
1201 (!info
->IsMoxaMustChipFlag
)
1205 spin_lock_irqsave(&info
->slock
, flags
);
1207 info
->IER
|= UART_IER_THRI
;
1208 outb(info
->IER
, info
->base
+ UART_IER
);
1210 spin_unlock_irqrestore(&info
->slock
, flags
);
1213 static int mxser_write_room(struct tty_struct
*tty
)
1215 struct mxser_struct
*info
= tty
->driver_data
;
1218 ret
= SERIAL_XMIT_SIZE
- info
->xmit_cnt
- 1;
1224 static int mxser_chars_in_buffer(struct tty_struct
*tty
)
1226 struct mxser_struct
*info
= tty
->driver_data
;
1227 return info
->xmit_cnt
;
1230 static void mxser_flush_buffer(struct tty_struct
*tty
)
1232 struct mxser_struct
*info
= tty
->driver_data
;
1234 unsigned long flags
;
1237 spin_lock_irqsave(&info
->slock
, flags
);
1238 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
1240 /* below added by shinhay */
1241 fcr
= inb(info
->base
+ UART_FCR
);
1242 outb((fcr
| UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
),
1243 info
->base
+ UART_FCR
);
1244 outb(fcr
, info
->base
+ UART_FCR
);
1246 spin_unlock_irqrestore(&info
->slock
, flags
);
1247 /* above added by shinhay */
1252 static int mxser_ioctl(struct tty_struct
*tty
, struct file
*file
, unsigned int cmd
, unsigned long arg
)
1254 struct mxser_struct
*info
= tty
->driver_data
;
1256 struct async_icount cprev
, cnow
; /* kernel counter temps */
1257 struct serial_icounter_struct __user
*p_cuser
;
1258 unsigned long templ
;
1259 unsigned long flags
;
1260 void __user
*argp
= (void __user
*)arg
;
1262 if (tty
->index
== MXSER_PORTS
)
1263 return mxser_ioctl_special(cmd
, argp
);
1265 /* following add by Victor Yu. 01-05-2004 */
1266 if (cmd
== MOXA_SET_OP_MODE
|| cmd
== MOXA_GET_OP_MODE
) {
1268 static unsigned char ModeMask
[] = { 0xfc, 0xf3, 0xcf, 0x3f };
1270 unsigned char val
, mask
;
1273 if (cmd
== MOXA_SET_OP_MODE
) {
1274 if (get_user(opmode
, (int __user
*) argp
))
1276 if (opmode
!= RS232_MODE
&&
1277 opmode
!= RS485_2WIRE_MODE
&&
1278 opmode
!= RS422_MODE
&&
1279 opmode
!= RS485_4WIRE_MODE
)
1283 val
= inb(info
->opmode_ioaddr
);
1285 val
|= (opmode
<< shiftbit
);
1286 outb(val
, info
->opmode_ioaddr
);
1289 opmode
= inb(info
->opmode_ioaddr
) >> shiftbit
;
1290 opmode
&= OP_MODE_MASK
;
1291 if (copy_to_user(argp
, &opmode
, sizeof(int)))
1296 /* above add by Victor Yu. 01-05-2004 */
1298 if ((cmd
!= TIOCGSERIAL
) && (cmd
!= TIOCMIWAIT
) && (cmd
!= TIOCGICOUNT
)) {
1299 if (tty
->flags
& (1 << TTY_IO_ERROR
))
1303 case TCSBRK
: /* SVID version: non-zero arg --> no break */
1304 retval
= tty_check_change(tty
);
1307 tty_wait_until_sent(tty
, 0);
1309 mxser_send_break(info
, HZ
/ 4); /* 1/4 second */
1311 case TCSBRKP
: /* support for POSIX tcsendbreak() */
1312 retval
= tty_check_change(tty
);
1315 tty_wait_until_sent(tty
, 0);
1316 mxser_send_break(info
, arg
? arg
* (HZ
/ 10) : HZ
/ 4);
1319 return put_user(C_CLOCAL(tty
) ? 1 : 0, (unsigned long __user
*)argp
);
1321 if (get_user(templ
, (unsigned long __user
*) argp
))
1324 tty
->termios
->c_cflag
= ((tty
->termios
->c_cflag
& ~CLOCAL
) | (arg
? CLOCAL
: 0));
1327 return mxser_get_serial_info(info
, argp
);
1329 return mxser_set_serial_info(info
, argp
);
1330 case TIOCSERGETLSR
: /* Get line status register */
1331 return mxser_get_lsr_info(info
, argp
);
1333 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1334 * - mask passed in arg for lines of interest
1335 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1336 * Caller should use TIOCGICOUNT to see which one it was
1339 spin_lock_irqsave(&info
->slock
, flags
);
1340 cnow
= info
->icount
; /* note the counters on entry */
1341 spin_unlock_irqrestore(&info
->slock
, flags
);
1343 wait_event_interruptible(info
->delta_msr_wait
, ({
1345 spin_lock_irqsave(&info
->slock
, flags
);
1346 cnow
= info
->icount
; /* atomic copy */
1347 spin_unlock_irqrestore(&info
->slock
, flags
);
1349 ((arg
& TIOCM_RNG
) && (cnow
.rng
!= cprev
.rng
)) ||
1350 ((arg
& TIOCM_DSR
) && (cnow
.dsr
!= cprev
.dsr
)) ||
1351 ((arg
& TIOCM_CD
) && (cnow
.dcd
!= cprev
.dcd
)) ||
1352 ((arg
& TIOCM_CTS
) && (cnow
.cts
!= cprev
.cts
));
1356 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1357 * Return: write counters to the user passed counter struct
1358 * NB: both 1->0 and 0->1 transitions are counted except for
1359 * RI where only 0->1 is counted.
1362 spin_lock_irqsave(&info
->slock
, flags
);
1363 cnow
= info
->icount
;
1364 spin_unlock_irqrestore(&info
->slock
, flags
);
1366 /* modified by casper 1/11/2000 */
1367 if (put_user(cnow
.frame
, &p_cuser
->frame
))
1369 if (put_user(cnow
.brk
, &p_cuser
->brk
))
1371 if (put_user(cnow
.overrun
, &p_cuser
->overrun
))
1373 if (put_user(cnow
.buf_overrun
, &p_cuser
->buf_overrun
))
1375 if (put_user(cnow
.parity
, &p_cuser
->parity
))
1377 if (put_user(cnow
.rx
, &p_cuser
->rx
))
1379 if (put_user(cnow
.tx
, &p_cuser
->tx
))
1381 put_user(cnow
.cts
, &p_cuser
->cts
);
1382 put_user(cnow
.dsr
, &p_cuser
->dsr
);
1383 put_user(cnow
.rng
, &p_cuser
->rng
);
1384 put_user(cnow
.dcd
, &p_cuser
->dcd
);
1386 case MOXA_HighSpeedOn
:
1387 return put_user(info
->baud_base
!= 115200 ? 1 : 0, (int __user
*)argp
);
1388 case MOXA_SDS_RSTICOUNTER
: {
1389 info
->mon_data
.rxcnt
= 0;
1390 info
->mon_data
.txcnt
= 0;
1393 /* (above) added by James. */
1394 case MOXA_ASPP_SETBAUD
:{
1396 if (get_user(baud
, (long __user
*)argp
))
1398 mxser_set_baud(info
, baud
);
1401 case MOXA_ASPP_GETBAUD
:
1402 if (copy_to_user(argp
, &info
->realbaud
, sizeof(long)))
1407 case MOXA_ASPP_OQUEUE
:{
1410 len
= mxser_chars_in_buffer(tty
);
1412 lsr
= inb(info
->base
+ UART_LSR
) & UART_LSR_TEMT
;
1414 len
+= (lsr
? 0 : 1);
1416 if (copy_to_user(argp
, &len
, sizeof(int)))
1421 case MOXA_ASPP_MON
: {
1424 /* info->mon_data.ser_param = tty->termios->c_cflag; */
1426 status
= mxser_get_msr(info
->base
, 1, info
->port
, info
);
1427 mxser_check_modem_status(info
, status
);
1429 mcr
= inb(info
->base
+ UART_MCR
);
1430 if (mcr
& MOXA_MUST_MCR_XON_FLAG
)
1431 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_XOFFHOLD
;
1433 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_XOFFHOLD
;
1435 if (mcr
& MOXA_MUST_MCR_TX_XON
)
1436 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_XOFFXENT
;
1438 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_XOFFXENT
;
1440 if (info
->tty
->hw_stopped
)
1441 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_CTSHOLD
;
1443 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_CTSHOLD
;
1445 if (copy_to_user(argp
, &info
->mon_data
,
1446 sizeof(struct mxser_mon
)))
1452 case MOXA_ASPP_LSTATUS
: {
1453 if (copy_to_user(argp
, &info
->err_shadow
,
1454 sizeof(unsigned char)))
1457 info
->err_shadow
= 0;
1460 case MOXA_SET_BAUD_METHOD
: {
1463 if (get_user(method
, (int __user
*)argp
))
1465 mxser_set_baud_method
[info
->port
] = method
;
1466 if (copy_to_user(argp
, &method
, sizeof(int)))
1472 return -ENOIOCTLCMD
;
1478 #define CMSPAR 010000000000
1481 static int mxser_ioctl_special(unsigned int cmd
, void __user
*argp
)
1483 int i
, result
, status
;
1487 if (copy_to_user(argp
, mxsercfg
,
1488 sizeof(struct mxser_hwconf
) * 4))
1491 case MOXA_GET_MAJOR
:
1492 if (copy_to_user(argp
, &ttymajor
, sizeof(int)))
1496 case MOXA_GET_CUMAJOR
:
1497 if (copy_to_user(argp
, &calloutmajor
, sizeof(int)))
1501 case MOXA_CHKPORTENABLE
:
1503 for (i
= 0; i
< MXSER_PORTS
; i
++) {
1504 if (mxvar_table
[i
].base
)
1507 return put_user(result
, (unsigned long __user
*)argp
);
1508 case MOXA_GETDATACOUNT
:
1509 if (copy_to_user(argp
, &mxvar_log
, sizeof(mxvar_log
)))
1512 case MOXA_GETMSTATUS
:
1513 for (i
= 0; i
< MXSER_PORTS
; i
++) {
1515 if (!mxvar_table
[i
].base
) {
1516 GMStatus
[i
].dcd
= 0;
1517 GMStatus
[i
].dsr
= 0;
1518 GMStatus
[i
].cts
= 0;
1522 if (!mxvar_table
[i
].tty
|| !mxvar_table
[i
].tty
->termios
)
1523 GMStatus
[i
].cflag
= mxvar_table
[i
].normal_termios
.c_cflag
;
1525 GMStatus
[i
].cflag
= mxvar_table
[i
].tty
->termios
->c_cflag
;
1527 status
= inb(mxvar_table
[i
].base
+ UART_MSR
);
1528 if (status
& 0x80 /*UART_MSR_DCD */ )
1529 GMStatus
[i
].dcd
= 1;
1531 GMStatus
[i
].dcd
= 0;
1533 if (status
& 0x20 /*UART_MSR_DSR */ )
1534 GMStatus
[i
].dsr
= 1;
1536 GMStatus
[i
].dsr
= 0;
1539 if (status
& 0x10 /*UART_MSR_CTS */ )
1540 GMStatus
[i
].cts
= 1;
1542 GMStatus
[i
].cts
= 0;
1544 if (copy_to_user(argp
, GMStatus
,
1545 sizeof(struct mxser_mstatus
) * MXSER_PORTS
))
1548 case MOXA_ASPP_MON_EXT
: {
1552 unsigned cflag
, iflag
;
1554 for (i
= 0; i
< MXSER_PORTS
; i
++) {
1555 if (!mxvar_table
[i
].base
)
1558 status
= mxser_get_msr(mxvar_table
[i
].base
, 0,
1559 i
, &(mxvar_table
[i
]));
1561 mxser_check_modem_status(&mxvar_table[i],
1564 if (status
& UART_MSR_TERI
)
1565 mxvar_table
[i
].icount
.rng
++;
1566 if (status
& UART_MSR_DDSR
)
1567 mxvar_table
[i
].icount
.dsr
++;
1568 if (status
& UART_MSR_DDCD
)
1569 mxvar_table
[i
].icount
.dcd
++;
1570 if (status
& UART_MSR_DCTS
)
1571 mxvar_table
[i
].icount
.cts
++;
1573 mxvar_table
[i
].mon_data
.modem_status
= status
;
1574 mon_data_ext
.rx_cnt
[i
] = mxvar_table
[i
].mon_data
.rxcnt
;
1575 mon_data_ext
.tx_cnt
[i
] = mxvar_table
[i
].mon_data
.txcnt
;
1576 mon_data_ext
.up_rxcnt
[i
] = mxvar_table
[i
].mon_data
.up_rxcnt
;
1577 mon_data_ext
.up_txcnt
[i
] = mxvar_table
[i
].mon_data
.up_txcnt
;
1578 mon_data_ext
.modem_status
[i
] = mxvar_table
[i
].mon_data
.modem_status
;
1579 mon_data_ext
.baudrate
[i
] = mxvar_table
[i
].realbaud
;
1581 if (!mxvar_table
[i
].tty
|| !mxvar_table
[i
].tty
->termios
) {
1582 cflag
= mxvar_table
[i
].normal_termios
.c_cflag
;
1583 iflag
= mxvar_table
[i
].normal_termios
.c_iflag
;
1585 cflag
= mxvar_table
[i
].tty
->termios
->c_cflag
;
1586 iflag
= mxvar_table
[i
].tty
->termios
->c_iflag
;
1589 mon_data_ext
.databits
[i
] = cflag
& CSIZE
;
1591 mon_data_ext
.stopbits
[i
] = cflag
& CSTOPB
;
1593 mon_data_ext
.parity
[i
] = cflag
& (PARENB
| PARODD
| CMSPAR
);
1595 mon_data_ext
.flowctrl
[i
] = 0x00;
1597 if (cflag
& CRTSCTS
)
1598 mon_data_ext
.flowctrl
[i
] |= 0x03;
1600 if (iflag
& (IXON
| IXOFF
))
1601 mon_data_ext
.flowctrl
[i
] |= 0x0C;
1603 if (mxvar_table
[i
].type
== PORT_16550A
)
1604 mon_data_ext
.fifo
[i
] = 1;
1606 mon_data_ext
.fifo
[i
] = 0;
1610 opmode
= inb(mxvar_table
[i
].opmode_ioaddr
) >> shiftbit
;
1611 opmode
&= OP_MODE_MASK
;
1613 mon_data_ext
.iftype
[i
] = opmode
;
1616 if (copy_to_user(argp
, &mon_data_ext
, sizeof(struct mxser_mon_ext
)))
1623 return -ENOIOCTLCMD
;
1628 static void mxser_stoprx(struct tty_struct
*tty
)
1630 struct mxser_struct
*info
= tty
->driver_data
;
1631 /* unsigned long flags; */
1633 info
->ldisc_stop_rx
= 1;
1635 /* MX_LOCK(&info->slock); */
1636 /* following add by Victor Yu. 09-02-2002 */
1637 if (info
->IsMoxaMustChipFlag
) {
1638 info
->IER
&= ~MOXA_MUST_RECV_ISR
;
1639 outb(info
->IER
, info
->base
+ UART_IER
);
1641 /* above add by Victor Yu. 09-02-2002 */
1642 info
->x_char
= STOP_CHAR(tty
);
1643 /* mask by Victor Yu. 09-02-2002 */
1644 /* outb(info->IER, 0); */
1645 outb(0, info
->base
+ UART_IER
);
1646 info
->IER
|= UART_IER_THRI
;
1647 /* force Tx interrupt */
1648 outb(info
->IER
, info
->base
+ UART_IER
);
1649 } /* add by Victor Yu. 09-02-2002 */
1650 /* MX_UNLOCK(&info->slock); */
1653 if (info
->tty
->termios
->c_cflag
& CRTSCTS
) {
1654 /* MX_LOCK(&info->slock); */
1655 info
->MCR
&= ~UART_MCR_RTS
;
1656 outb(info
->MCR
, info
->base
+ UART_MCR
);
1657 /* MX_UNLOCK(&info->slock); */
1661 static void mxser_startrx(struct tty_struct
*tty
)
1663 struct mxser_struct
*info
= tty
->driver_data
;
1664 /* unsigned long flags; */
1666 info
->ldisc_stop_rx
= 0;
1671 /* MX_LOCK(&info->slock); */
1673 /* following add by Victor Yu. 09-02-2002 */
1674 if (info
->IsMoxaMustChipFlag
) {
1675 info
->IER
|= MOXA_MUST_RECV_ISR
;
1676 outb(info
->IER
, info
->base
+ UART_IER
);
1678 /* above add by Victor Yu. 09-02-2002 */
1680 info
->x_char
= START_CHAR(tty
);
1681 /* mask by Victor Yu. 09-02-2002 */
1682 /* outb(info->IER, 0); */
1683 /* add by Victor Yu. 09-02-2002 */
1684 outb(0, info
->base
+ UART_IER
);
1685 /* force Tx interrupt */
1686 info
->IER
|= UART_IER_THRI
;
1687 outb(info
->IER
, info
->base
+ UART_IER
);
1688 } /* add by Victor Yu. 09-02-2002 */
1689 /* MX_UNLOCK(&info->slock); */
1693 if (info
->tty
->termios
->c_cflag
& CRTSCTS
) {
1694 /* MX_LOCK(&info->slock); */
1695 info
->MCR
|= UART_MCR_RTS
;
1696 outb(info
->MCR
, info
->base
+ UART_MCR
);
1697 /* MX_UNLOCK(&info->slock); */
1702 * This routine is called by the upper-layer tty layer to signal that
1703 * incoming characters should be throttled.
1705 static void mxser_throttle(struct tty_struct
*tty
)
1707 /* struct mxser_struct *info = tty->driver_data; */
1708 /* unsigned long flags; */
1710 /* MX_LOCK(&info->slock); */
1712 /* MX_UNLOCK(&info->slock); */
1715 static void mxser_unthrottle(struct tty_struct
*tty
)
1717 /* struct mxser_struct *info = tty->driver_data; */
1718 /* unsigned long flags; */
1720 /* MX_LOCK(&info->slock); */
1722 /* MX_UNLOCK(&info->slock); */
1725 static void mxser_set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
)
1727 struct mxser_struct
*info
= tty
->driver_data
;
1728 unsigned long flags
;
1730 mxser_change_speed(info
, old_termios
);
1732 if ((old_termios
->c_cflag
& CRTSCTS
) &&
1733 !(tty
->termios
->c_cflag
& CRTSCTS
)) {
1734 tty
->hw_stopped
= 0;
1738 /* Handle sw stopped */
1739 if ((old_termios
->c_iflag
& IXON
) &&
1740 !(tty
->termios
->c_iflag
& IXON
)) {
1743 /* following add by Victor Yu. 09-02-2002 */
1744 if (info
->IsMoxaMustChipFlag
) {
1745 spin_lock_irqsave(&info
->slock
, flags
);
1746 DISABLE_MOXA_MUST_RX_SOFTWARE_FLOW_CONTROL(info
->base
);
1747 spin_unlock_irqrestore(&info
->slock
, flags
);
1749 /* above add by Victor Yu. 09-02-2002 */
1756 * mxser_stop() and mxser_start()
1758 * This routines are called before setting or resetting tty->stopped.
1759 * They enable or disable transmitter interrupts, as necessary.
1761 static void mxser_stop(struct tty_struct
*tty
)
1763 struct mxser_struct
*info
= tty
->driver_data
;
1764 unsigned long flags
;
1766 spin_lock_irqsave(&info
->slock
, flags
);
1767 if (info
->IER
& UART_IER_THRI
) {
1768 info
->IER
&= ~UART_IER_THRI
;
1769 outb(info
->IER
, info
->base
+ UART_IER
);
1771 spin_unlock_irqrestore(&info
->slock
, flags
);
1774 static void mxser_start(struct tty_struct
*tty
)
1776 struct mxser_struct
*info
= tty
->driver_data
;
1777 unsigned long flags
;
1779 spin_lock_irqsave(&info
->slock
, flags
);
1780 if (info
->xmit_cnt
&& info
->xmit_buf
&& !(info
->IER
& UART_IER_THRI
)) {
1781 info
->IER
|= UART_IER_THRI
;
1782 outb(info
->IER
, info
->base
+ UART_IER
);
1784 spin_unlock_irqrestore(&info
->slock
, flags
);
1788 * mxser_wait_until_sent() --- wait until the transmitter is empty
1790 static void mxser_wait_until_sent(struct tty_struct
*tty
, int timeout
)
1792 struct mxser_struct
*info
= tty
->driver_data
;
1793 unsigned long orig_jiffies
, char_time
;
1796 if (info
->type
== PORT_UNKNOWN
)
1799 if (info
->xmit_fifo_size
== 0)
1800 return; /* Just in case.... */
1802 orig_jiffies
= jiffies
;
1804 * Set the check interval to be 1/5 of the estimated time to
1805 * send a single character, and make it at least 1. The check
1806 * interval should also be less than the timeout.
1808 * Note: we have to use pretty tight timings here to satisfy
1811 char_time
= (info
->timeout
- HZ
/ 50) / info
->xmit_fifo_size
;
1812 char_time
= char_time
/ 5;
1815 if (timeout
&& timeout
< char_time
)
1816 char_time
= timeout
;
1818 * If the transmitter hasn't cleared in twice the approximate
1819 * amount of time to send the entire FIFO, it probably won't
1820 * ever clear. This assumes the UART isn't doing flow
1821 * control, which is currently the case. Hence, if it ever
1822 * takes longer than info->timeout, this is probably due to a
1823 * UART bug of some kind. So, we clamp the timeout parameter at
1826 if (!timeout
|| timeout
> 2 * info
->timeout
)
1827 timeout
= 2 * info
->timeout
;
1828 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1829 printk(KERN_DEBUG
"In rs_wait_until_sent(%d) check=%lu...",
1830 timeout
, char_time
);
1831 printk("jiff=%lu...", jiffies
);
1833 while (!((lsr
= inb(info
->base
+ UART_LSR
)) & UART_LSR_TEMT
)) {
1834 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1835 printk("lsr = %d (jiff=%lu)...", lsr
, jiffies
);
1837 schedule_timeout_interruptible(char_time
);
1838 if (signal_pending(current
))
1840 if (timeout
&& time_after(jiffies
, orig_jiffies
+ timeout
))
1843 set_current_state(TASK_RUNNING
);
1845 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1846 printk("lsr = %d (jiff=%lu)...done\n", lsr
, jiffies
);
1852 * This routine is called by tty_hangup() when a hangup is signaled.
1854 void mxser_hangup(struct tty_struct
*tty
)
1856 struct mxser_struct
*info
= tty
->driver_data
;
1858 mxser_flush_buffer(tty
);
1859 mxser_shutdown(info
);
1862 info
->flags
&= ~ASYNC_NORMAL_ACTIVE
;
1864 wake_up_interruptible(&info
->open_wait
);
1868 /* added by James 03-12-2004. */
1870 * mxser_rs_break() --- routine which turns the break handling on or off
1872 static void mxser_rs_break(struct tty_struct
*tty
, int break_state
)
1874 struct mxser_struct
*info
= tty
->driver_data
;
1875 unsigned long flags
;
1877 spin_lock_irqsave(&info
->slock
, flags
);
1878 if (break_state
== -1)
1879 outb(inb(info
->base
+ UART_LCR
) | UART_LCR_SBC
,
1880 info
->base
+ UART_LCR
);
1882 outb(inb(info
->base
+ UART_LCR
) & ~UART_LCR_SBC
,
1883 info
->base
+ UART_LCR
);
1884 spin_unlock_irqrestore(&info
->slock
, flags
);
1887 /* (above) added by James. */
1891 * This is the serial driver's generic interrupt routine
1893 static irqreturn_t
mxser_interrupt(int irq
, void *dev_id
)
1896 struct mxser_struct
*info
;
1897 struct mxser_struct
*port
;
1898 int max
, irqbits
, bits
, msr
;
1899 int pass_counter
= 0;
1900 int handled
= IRQ_NONE
;
1903 /* spin_lock(&gm_lock); */
1905 for (i
= 0; i
< MXSER_BOARDS
; i
++) {
1906 if (dev_id
== &(mxvar_table
[i
* MXSER_PORTS_PER_BOARD
])) {
1912 if (i
== MXSER_BOARDS
)
1916 max
= mxser_numports
[mxsercfg
[i
].board_type
- 1];
1918 irqbits
= inb(port
->vector
) & port
->vectormask
;
1919 if (irqbits
== port
->vectormask
)
1922 handled
= IRQ_HANDLED
;
1923 for (i
= 0, bits
= 1; i
< max
; i
++, irqbits
|= bits
, bits
<<= 1) {
1924 if (irqbits
== port
->vectormask
)
1930 /* following add by Victor Yu. 09-13-2002 */
1931 iir
= inb(info
->base
+ UART_IIR
);
1932 if (iir
& UART_IIR_NO_INT
)
1934 iir
&= MOXA_MUST_IIR_MASK
;
1936 status
= inb(info
->base
+ UART_LSR
);
1937 outb(0x27, info
->base
+ UART_FCR
);
1938 inb(info
->base
+ UART_MSR
);
1941 /* above add by Victor Yu. 09-13-2002 */
1943 if (info->tty->flip.count < TTY_FLIPBUF_SIZE / 4) {
1944 info->IER |= MOXA_MUST_RECV_ISR;
1945 outb(info->IER, info->base + UART_IER);
1950 /* mask by Victor Yu. 09-13-2002
1952 (inb(info->base + UART_IIR) & UART_IIR_NO_INT) )
1955 /* mask by Victor Yu. 09-02-2002
1956 status = inb(info->base + UART_LSR) & info->read_status_mask;
1959 /* following add by Victor Yu. 09-02-2002 */
1960 status
= inb(info
->base
+ UART_LSR
);
1962 if (status
& UART_LSR_PE
)
1963 info
->err_shadow
|= NPPI_NOTIFY_PARITY
;
1964 if (status
& UART_LSR_FE
)
1965 info
->err_shadow
|= NPPI_NOTIFY_FRAMING
;
1966 if (status
& UART_LSR_OE
)
1967 info
->err_shadow
|= NPPI_NOTIFY_HW_OVERRUN
;
1968 if (status
& UART_LSR_BI
)
1969 info
->err_shadow
|= NPPI_NOTIFY_BREAK
;
1971 if (info
->IsMoxaMustChipFlag
) {
1973 if ( (status & 0x02) && !(status & 0x01) ) {
1974 outb(info->base+UART_FCR, 0x23);
1978 if (iir
== MOXA_MUST_IIR_GDA
||
1979 iir
== MOXA_MUST_IIR_RDA
||
1980 iir
== MOXA_MUST_IIR_RTO
||
1981 iir
== MOXA_MUST_IIR_LSR
)
1982 mxser_receive_chars(info
, &status
);
1985 /* above add by Victor Yu. 09-02-2002 */
1987 status
&= info
->read_status_mask
;
1988 if (status
& UART_LSR_DR
)
1989 mxser_receive_chars(info
, &status
);
1991 msr
= inb(info
->base
+ UART_MSR
);
1992 if (msr
& UART_MSR_ANY_DELTA
) {
1993 mxser_check_modem_status(info
, msr
);
1995 /* following add by Victor Yu. 09-13-2002 */
1996 if (info
->IsMoxaMustChipFlag
) {
1997 if ((iir
== 0x02) && (status
& UART_LSR_THRE
)) {
1998 mxser_transmit_chars(info
);
2001 /* above add by Victor Yu. 09-13-2002 */
2003 if (status
& UART_LSR_THRE
) {
2004 /* 8-2-99 by William
2005 if ( info->x_char || (info->xmit_cnt > 0) )
2007 mxser_transmit_chars(info
);
2011 if (pass_counter
++ > MXSER_ISR_PASS_LIMIT
) {
2012 break; /* Prevent infinite loops */
2017 /* spin_unlock(&gm_lock); */
2021 static void mxser_receive_chars(struct mxser_struct
*info
, int *status
)
2023 struct tty_struct
*tty
= info
->tty
;
2024 unsigned char ch
, gdl
;
2029 unsigned long flags
;
2031 spin_lock_irqsave(&info
->slock
, flags
);
2033 recv_room
= tty
->receive_room
;
2034 if ((recv_room
== 0) && (!info
->ldisc_stop_rx
)) {
2035 /* mxser_throttle(tty); */
2040 /* following add by Victor Yu. 09-02-2002 */
2041 if (info
->IsMoxaMustChipFlag
!= MOXA_OTHER_UART
) {
2043 if (*status
& UART_LSR_SPECIAL
) {
2046 /* following add by Victor Yu. 02-11-2004 */
2047 if (info
->IsMoxaMustChipFlag
== MOXA_MUST_MU860_HWID
&&
2048 (*status
& MOXA_MUST_LSR_RERR
))
2050 /* above add by Victor Yu. 02-14-2004 */
2051 if (*status
& MOXA_MUST_LSR_RERR
)
2054 gdl
= inb(info
->base
+ MOXA_MUST_GDL_REGISTER
);
2056 /* add by Victor Yu. 02-11-2004 */
2057 if (info
->IsMoxaMustChipFlag
== MOXA_MUST_MU150_HWID
)
2058 gdl
&= MOXA_MUST_GDL_MASK
;
2059 if (gdl
>= recv_room
) {
2060 if (!info
->ldisc_stop_rx
) {
2061 /* mxser_throttle(tty); */
2067 ch
= inb(info
->base
+ UART_RX
);
2068 tty_insert_flip_char(tty
, ch
, 0);
2071 if ((cnt >= HI_WATER) && (info->stop_rx == 0)) {
2080 /* above add by Victor Yu. 09-02-2002 */
2086 if ((cnt >= HI_WATER) && (info->stop_rx == 0)) {
2093 ch
= inb(info
->base
+ UART_RX
);
2094 /* following add by Victor Yu. 09-02-2002 */
2095 if (info
->IsMoxaMustChipFlag
&& (*status
& UART_LSR_OE
) /*&& !(*status&UART_LSR_DR) */ )
2096 outb(0x23, info
->base
+ UART_FCR
);
2097 *status
&= info
->read_status_mask
;
2098 /* above add by Victor Yu. 09-02-2002 */
2099 if (*status
& info
->ignore_status_mask
) {
2100 if (++ignored
> 100)
2104 if (*status
& UART_LSR_SPECIAL
) {
2105 if (*status
& UART_LSR_BI
) {
2107 /* added by casper 1/11/2000 */
2110 if (info
->flags
& ASYNC_SAK
)
2112 } else if (*status
& UART_LSR_PE
) {
2114 /* added by casper 1/11/2000 */
2115 info
->icount
.parity
++;
2117 } else if (*status
& UART_LSR_FE
) {
2119 /* added by casper 1/11/2000 */
2120 info
->icount
.frame
++;
2122 } else if (*status
& UART_LSR_OE
) {
2124 /* added by casper 1/11/2000 */
2125 info
->icount
.overrun
++;
2129 tty_insert_flip_char(tty
, ch
, flag
);
2131 if (cnt
>= recv_room
) {
2132 if (!info
->ldisc_stop_rx
) {
2133 /* mxser_throttle(tty); */
2141 /* following add by Victor Yu. 09-02-2002 */
2142 if (info
->IsMoxaMustChipFlag
)
2144 /* above add by Victor Yu. 09-02-2002 */
2146 /* mask by Victor Yu. 09-02-2002
2147 *status = inb(info->base + UART_LSR) & info->read_status_mask;
2149 /* following add by Victor Yu. 09-02-2002 */
2150 *status
= inb(info
->base
+ UART_LSR
);
2151 /* above add by Victor Yu. 09-02-2002 */
2152 } while (*status
& UART_LSR_DR
);
2154 end_intr
: /* add by Victor Yu. 09-02-2002 */
2155 mxvar_log
.rxcnt
[info
->port
] += cnt
;
2156 info
->mon_data
.rxcnt
+= cnt
;
2157 info
->mon_data
.up_rxcnt
+= cnt
;
2158 spin_unlock_irqrestore(&info
->slock
, flags
);
2160 tty_flip_buffer_push(tty
);
2163 static void mxser_transmit_chars(struct mxser_struct
*info
)
2166 unsigned long flags
;
2168 spin_lock_irqsave(&info
->slock
, flags
);
2171 outb(info
->x_char
, info
->base
+ UART_TX
);
2173 mxvar_log
.txcnt
[info
->port
]++;
2174 info
->mon_data
.txcnt
++;
2175 info
->mon_data
.up_txcnt
++;
2177 /* added by casper 1/11/2000 */
2180 spin_unlock_irqrestore(&info
->slock
, flags
);
2184 if (info
->xmit_buf
== 0) {
2185 spin_unlock_irqrestore(&info
->slock
, flags
);
2189 if ((info
->xmit_cnt
<= 0) || info
->tty
->stopped
||
2190 (info
->tty
->hw_stopped
&&
2191 (info
->type
!= PORT_16550A
) &&
2192 (!info
->IsMoxaMustChipFlag
))) {
2193 info
->IER
&= ~UART_IER_THRI
;
2194 outb(info
->IER
, info
->base
+ UART_IER
);
2195 spin_unlock_irqrestore(&info
->slock
, flags
);
2199 cnt
= info
->xmit_cnt
;
2200 count
= info
->xmit_fifo_size
;
2202 outb(info
->xmit_buf
[info
->xmit_tail
++],
2203 info
->base
+ UART_TX
);
2204 info
->xmit_tail
= info
->xmit_tail
& (SERIAL_XMIT_SIZE
- 1);
2205 if (--info
->xmit_cnt
<= 0)
2207 } while (--count
> 0);
2208 mxvar_log
.txcnt
[info
->port
] += (cnt
- info
->xmit_cnt
);
2210 /* added by James 03-12-2004. */
2211 info
->mon_data
.txcnt
+= (cnt
- info
->xmit_cnt
);
2212 info
->mon_data
.up_txcnt
+= (cnt
- info
->xmit_cnt
);
2213 /* (above) added by James. */
2215 /* added by casper 1/11/2000 */
2216 info
->icount
.tx
+= (cnt
- info
->xmit_cnt
);
2219 if (info
->xmit_cnt
< WAKEUP_CHARS
) {
2220 set_bit(MXSER_EVENT_TXLOW
, &info
->event
);
2221 schedule_work(&info
->tqueue
);
2223 if (info
->xmit_cnt
<= 0) {
2224 info
->IER
&= ~UART_IER_THRI
;
2225 outb(info
->IER
, info
->base
+ UART_IER
);
2227 spin_unlock_irqrestore(&info
->slock
, flags
);
2230 static void mxser_check_modem_status(struct mxser_struct
*info
, int status
)
2232 /* update input line counters */
2233 if (status
& UART_MSR_TERI
)
2235 if (status
& UART_MSR_DDSR
)
2237 if (status
& UART_MSR_DDCD
)
2239 if (status
& UART_MSR_DCTS
)
2241 info
->mon_data
.modem_status
= status
;
2242 wake_up_interruptible(&info
->delta_msr_wait
);
2244 if ((info
->flags
& ASYNC_CHECK_CD
) && (status
& UART_MSR_DDCD
)) {
2245 if (status
& UART_MSR_DCD
)
2246 wake_up_interruptible(&info
->open_wait
);
2247 schedule_work(&info
->tqueue
);
2250 if (info
->flags
& ASYNC_CTS_FLOW
) {
2251 if (info
->tty
->hw_stopped
) {
2252 if (status
& UART_MSR_CTS
) {
2253 info
->tty
->hw_stopped
= 0;
2255 if ((info
->type
!= PORT_16550A
) &&
2256 (!info
->IsMoxaMustChipFlag
)) {
2257 info
->IER
|= UART_IER_THRI
;
2258 outb(info
->IER
, info
->base
+ UART_IER
);
2260 set_bit(MXSER_EVENT_TXLOW
, &info
->event
);
2261 schedule_work(&info
->tqueue
); }
2263 if (!(status
& UART_MSR_CTS
)) {
2264 info
->tty
->hw_stopped
= 1;
2265 if ((info
->type
!= PORT_16550A
) &&
2266 (!info
->IsMoxaMustChipFlag
)) {
2267 info
->IER
&= ~UART_IER_THRI
;
2268 outb(info
->IER
, info
->base
+ UART_IER
);
2275 static int mxser_block_til_ready(struct tty_struct
*tty
, struct file
*filp
, struct mxser_struct
*info
)
2277 DECLARE_WAITQUEUE(wait
, current
);
2280 unsigned long flags
;
2283 * If non-blocking mode is set, or the port is not enabled,
2284 * then make the check up front and then exit.
2286 if ((filp
->f_flags
& O_NONBLOCK
) || (tty
->flags
& (1 << TTY_IO_ERROR
))) {
2287 info
->flags
|= ASYNC_NORMAL_ACTIVE
;
2291 if (tty
->termios
->c_cflag
& CLOCAL
)
2295 * Block waiting for the carrier detect and the line to become
2296 * free (i.e., not in use by the callout). While we are in
2297 * this loop, info->count is dropped by one, so that
2298 * mxser_close() knows when to free things. We restore it upon
2299 * exit, either normal or abnormal.
2302 add_wait_queue(&info
->open_wait
, &wait
);
2304 spin_lock_irqsave(&info
->slock
, flags
);
2305 if (!tty_hung_up_p(filp
))
2307 spin_unlock_irqrestore(&info
->slock
, flags
);
2308 info
->blocked_open
++;
2310 spin_lock_irqsave(&info
->slock
, flags
);
2311 outb(inb(info
->base
+ UART_MCR
) |
2312 UART_MCR_DTR
| UART_MCR_RTS
, info
->base
+ UART_MCR
);
2313 spin_unlock_irqrestore(&info
->slock
, flags
);
2314 set_current_state(TASK_INTERRUPTIBLE
);
2315 if (tty_hung_up_p(filp
) || !(info
->flags
& ASYNC_INITIALIZED
)) {
2316 if (info
->flags
& ASYNC_HUP_NOTIFY
)
2319 retval
= -ERESTARTSYS
;
2322 if (!(info
->flags
& ASYNC_CLOSING
) &&
2324 (inb(info
->base
+ UART_MSR
) & UART_MSR_DCD
)))
2326 if (signal_pending(current
)) {
2327 retval
= -ERESTARTSYS
;
2332 set_current_state(TASK_RUNNING
);
2333 remove_wait_queue(&info
->open_wait
, &wait
);
2334 if (!tty_hung_up_p(filp
))
2336 info
->blocked_open
--;
2339 info
->flags
|= ASYNC_NORMAL_ACTIVE
;
2343 static int mxser_startup(struct mxser_struct
*info
)
2346 unsigned long flags
;
2348 page
= __get_free_page(GFP_KERNEL
);
2352 spin_lock_irqsave(&info
->slock
, flags
);
2354 if (info
->flags
& ASYNC_INITIALIZED
) {
2356 spin_unlock_irqrestore(&info
->slock
, flags
);
2360 if (!info
->base
|| !info
->type
) {
2362 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
2364 spin_unlock_irqrestore(&info
->slock
, flags
);
2370 info
->xmit_buf
= (unsigned char *) page
;
2373 * Clear the FIFO buffers and disable them
2374 * (they will be reenabled in mxser_change_speed())
2376 if (info
->IsMoxaMustChipFlag
)
2377 outb((UART_FCR_CLEAR_RCVR
|
2378 UART_FCR_CLEAR_XMIT
|
2379 MOXA_MUST_FCR_GDA_MODE_ENABLE
), info
->base
+ UART_FCR
);
2381 outb((UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
),
2382 info
->base
+ UART_FCR
);
2385 * At this point there's no way the LSR could still be 0xFF;
2386 * if it is, then bail out, because there's likely no UART
2389 if (inb(info
->base
+ UART_LSR
) == 0xff) {
2390 spin_unlock_irqrestore(&info
->slock
, flags
);
2391 if (capable(CAP_SYS_ADMIN
)) {
2393 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
2400 * Clear the interrupt registers.
2402 (void) inb(info
->base
+ UART_LSR
);
2403 (void) inb(info
->base
+ UART_RX
);
2404 (void) inb(info
->base
+ UART_IIR
);
2405 (void) inb(info
->base
+ UART_MSR
);
2408 * Now, initialize the UART
2410 outb(UART_LCR_WLEN8
, info
->base
+ UART_LCR
); /* reset DLAB */
2411 info
->MCR
= UART_MCR_DTR
| UART_MCR_RTS
;
2412 outb(info
->MCR
, info
->base
+ UART_MCR
);
2415 * Finally, enable interrupts
2417 info
->IER
= UART_IER_MSI
| UART_IER_RLSI
| UART_IER_RDI
;
2418 /* info->IER = UART_IER_RLSI | UART_IER_RDI; */
2420 /* following add by Victor Yu. 08-30-2002 */
2421 if (info
->IsMoxaMustChipFlag
)
2422 info
->IER
|= MOXA_MUST_IER_EGDAI
;
2423 /* above add by Victor Yu. 08-30-2002 */
2424 outb(info
->IER
, info
->base
+ UART_IER
); /* enable interrupts */
2427 * And clear the interrupt registers again for luck.
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 clear_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
2436 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
2439 * and set the speed of the serial port
2441 spin_unlock_irqrestore(&info
->slock
, flags
);
2442 mxser_change_speed(info
, NULL
);
2444 info
->flags
|= ASYNC_INITIALIZED
;
2449 * This routine will shutdown a serial port; interrupts maybe disabled, and
2450 * DTR is dropped if the hangup on close termio flag is on.
2452 static void mxser_shutdown(struct mxser_struct
*info
)
2454 unsigned long flags
;
2456 if (!(info
->flags
& ASYNC_INITIALIZED
))
2459 spin_lock_irqsave(&info
->slock
, flags
);
2462 * clear delta_msr_wait queue to avoid mem leaks: we may free the irq
2463 * here so the queue might never be waken up
2465 wake_up_interruptible(&info
->delta_msr_wait
);
2468 * Free the IRQ, if necessary
2470 if (info
->xmit_buf
) {
2471 free_page((unsigned long) info
->xmit_buf
);
2472 info
->xmit_buf
= NULL
;
2476 outb(0x00, info
->base
+ UART_IER
);
2478 if (!info
->tty
|| (info
->tty
->termios
->c_cflag
& HUPCL
))
2479 info
->MCR
&= ~(UART_MCR_DTR
| UART_MCR_RTS
);
2480 outb(info
->MCR
, info
->base
+ UART_MCR
);
2482 /* clear Rx/Tx FIFO's */
2483 /* following add by Victor Yu. 08-30-2002 */
2484 if (info
->IsMoxaMustChipFlag
)
2485 outb((UART_FCR_CLEAR_RCVR
|
2486 UART_FCR_CLEAR_XMIT
|
2487 MOXA_MUST_FCR_GDA_MODE_ENABLE
), info
->base
+ UART_FCR
);
2489 /* above add by Victor Yu. 08-30-2002 */
2490 outb((UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
),
2491 info
->base
+ UART_FCR
);
2493 /* read data port to reset things */
2494 (void) inb(info
->base
+ UART_RX
);
2497 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
2499 info
->flags
&= ~ASYNC_INITIALIZED
;
2501 /* following add by Victor Yu. 09-23-2002 */
2502 if (info
->IsMoxaMustChipFlag
)
2503 SET_MOXA_MUST_NO_SOFTWARE_FLOW_CONTROL(info
->base
);
2504 /* above add by Victor Yu. 09-23-2002 */
2506 spin_unlock_irqrestore(&info
->slock
, flags
);
2510 * This routine is called to set the UART divisor registers to match
2511 * the specified baud rate for a serial port.
2513 static int mxser_change_speed(struct mxser_struct
*info
, struct ktermios
*old_termios
)
2515 unsigned cflag
, cval
, fcr
;
2517 unsigned char status
;
2519 unsigned long flags
;
2521 if (!info
->tty
|| !info
->tty
->termios
)
2523 cflag
= info
->tty
->termios
->c_cflag
;
2528 #define B921600 (B460800 +1)
2530 if (mxser_set_baud_method
[info
->port
] == 0) {
2531 baud
= tty_get_baud_rate(info
->tty
);
2532 mxser_set_baud(info
, baud
);
2535 /* byte size and parity */
2536 switch (cflag
& CSIZE
) {
2551 break; /* too keep GCC shut... */
2556 cval
|= UART_LCR_PARITY
;
2557 if (!(cflag
& PARODD
))
2558 cval
|= UART_LCR_EPAR
;
2560 cval
|= UART_LCR_SPAR
;
2562 if ((info
->type
== PORT_8250
) || (info
->type
== PORT_16450
)) {
2563 if (info
->IsMoxaMustChipFlag
) {
2564 fcr
= UART_FCR_ENABLE_FIFO
;
2565 fcr
|= MOXA_MUST_FCR_GDA_MODE_ENABLE
;
2566 SET_MOXA_MUST_FIFO_VALUE(info
);
2570 fcr
= UART_FCR_ENABLE_FIFO
;
2571 /* following add by Victor Yu. 08-30-2002 */
2572 if (info
->IsMoxaMustChipFlag
) {
2573 fcr
|= MOXA_MUST_FCR_GDA_MODE_ENABLE
;
2574 SET_MOXA_MUST_FIFO_VALUE(info
);
2576 /* above add by Victor Yu. 08-30-2002 */
2577 switch (info
->rx_trigger
) {
2579 fcr
|= UART_FCR_TRIGGER_1
;
2582 fcr
|= UART_FCR_TRIGGER_4
;
2585 fcr
|= UART_FCR_TRIGGER_8
;
2588 fcr
|= UART_FCR_TRIGGER_14
;
2594 /* CTS flow control flag and modem status interrupts */
2595 info
->IER
&= ~UART_IER_MSI
;
2596 info
->MCR
&= ~UART_MCR_AFE
;
2597 if (cflag
& CRTSCTS
) {
2598 info
->flags
|= ASYNC_CTS_FLOW
;
2599 info
->IER
|= UART_IER_MSI
;
2600 if ((info
->type
== PORT_16550A
) || (info
->IsMoxaMustChipFlag
)) {
2601 info
->MCR
|= UART_MCR_AFE
;
2602 /* status = mxser_get_msr(info->base, 0, info->port); */
2606 status = inb(baseaddr + UART_MSR);
2607 restore_flags(flags);
2609 /* mxser_check_modem_status(info, status); */
2611 /* status = mxser_get_msr(info->base, 0, info->port); */
2612 /* MX_LOCK(&info->slock); */
2613 status
= inb(info
->base
+ UART_MSR
);
2614 /* MX_UNLOCK(&info->slock); */
2615 if (info
->tty
->hw_stopped
) {
2616 if (status
& UART_MSR_CTS
) {
2617 info
->tty
->hw_stopped
= 0;
2618 if ((info
->type
!= PORT_16550A
) &&
2619 (!info
->IsMoxaMustChipFlag
)) {
2620 info
->IER
|= UART_IER_THRI
;
2621 outb(info
->IER
, info
->base
+ UART_IER
);
2623 set_bit(MXSER_EVENT_TXLOW
, &info
->event
);
2624 schedule_work(&info
->tqueue
); }
2626 if (!(status
& UART_MSR_CTS
)) {
2627 info
->tty
->hw_stopped
= 1;
2628 if ((info
->type
!= PORT_16550A
) &&
2629 (!info
->IsMoxaMustChipFlag
)) {
2630 info
->IER
&= ~UART_IER_THRI
;
2631 outb(info
->IER
, info
->base
+ UART_IER
);
2637 info
->flags
&= ~ASYNC_CTS_FLOW
;
2639 outb(info
->MCR
, info
->base
+ UART_MCR
);
2640 if (cflag
& CLOCAL
) {
2641 info
->flags
&= ~ASYNC_CHECK_CD
;
2643 info
->flags
|= ASYNC_CHECK_CD
;
2644 info
->IER
|= UART_IER_MSI
;
2646 outb(info
->IER
, info
->base
+ UART_IER
);
2649 * Set up parity check flag
2651 info
->read_status_mask
= UART_LSR_OE
| UART_LSR_THRE
| UART_LSR_DR
;
2652 if (I_INPCK(info
->tty
))
2653 info
->read_status_mask
|= UART_LSR_FE
| UART_LSR_PE
;
2654 if (I_BRKINT(info
->tty
) || I_PARMRK(info
->tty
))
2655 info
->read_status_mask
|= UART_LSR_BI
;
2657 info
->ignore_status_mask
= 0;
2659 if (I_IGNBRK(info
->tty
)) {
2660 info
->ignore_status_mask
|= UART_LSR_BI
;
2661 info
->read_status_mask
|= UART_LSR_BI
;
2663 * If we're ignore parity and break indicators, ignore
2664 * overruns too. (For real raw support).
2666 if (I_IGNPAR(info
->tty
)) {
2667 info
->ignore_status_mask
|=
2671 info
->read_status_mask
|=
2677 /* following add by Victor Yu. 09-02-2002 */
2678 if (info
->IsMoxaMustChipFlag
) {
2679 spin_lock_irqsave(&info
->slock
, flags
);
2680 SET_MOXA_MUST_XON1_VALUE(info
->base
, START_CHAR(info
->tty
));
2681 SET_MOXA_MUST_XOFF1_VALUE(info
->base
, STOP_CHAR(info
->tty
));
2682 if (I_IXON(info
->tty
)) {
2683 ENABLE_MOXA_MUST_RX_SOFTWARE_FLOW_CONTROL(info
->base
);
2685 DISABLE_MOXA_MUST_RX_SOFTWARE_FLOW_CONTROL(info
->base
);
2687 if (I_IXOFF(info
->tty
)) {
2688 ENABLE_MOXA_MUST_TX_SOFTWARE_FLOW_CONTROL(info
->base
);
2690 DISABLE_MOXA_MUST_TX_SOFTWARE_FLOW_CONTROL(info
->base
);
2693 if ( I_IXANY(info->tty) ) {
2694 info->MCR |= MOXA_MUST_MCR_XON_ANY;
2695 ENABLE_MOXA_MUST_XON_ANY_FLOW_CONTROL(info->base);
2697 info->MCR &= ~MOXA_MUST_MCR_XON_ANY;
2698 DISABLE_MOXA_MUST_XON_ANY_FLOW_CONTROL(info->base);
2701 spin_unlock_irqrestore(&info
->slock
, flags
);
2703 /* above add by Victor Yu. 09-02-2002 */
2706 outb(fcr
, info
->base
+ UART_FCR
); /* set fcr */
2707 outb(cval
, info
->base
+ UART_LCR
);
2713 static int mxser_set_baud(struct mxser_struct
*info
, long newspd
)
2718 unsigned long flags
;
2720 if (!info
->tty
|| !info
->tty
->termios
)
2726 if (newspd
> info
->MaxCanSetBaudRate
)
2729 info
->realbaud
= newspd
;
2730 if (newspd
== 134) {
2731 quot
= (2 * info
->baud_base
/ 269);
2732 } else if (newspd
) {
2733 quot
= info
->baud_base
/ newspd
;
2740 info
->timeout
= ((info
->xmit_fifo_size
* HZ
* 10 * quot
) / info
->baud_base
);
2741 info
->timeout
+= HZ
/ 50; /* Add .02 seconds of slop */
2744 spin_lock_irqsave(&info
->slock
, flags
);
2745 info
->MCR
|= UART_MCR_DTR
;
2746 outb(info
->MCR
, info
->base
+ UART_MCR
);
2747 spin_unlock_irqrestore(&info
->slock
, flags
);
2749 spin_lock_irqsave(&info
->slock
, flags
);
2750 info
->MCR
&= ~UART_MCR_DTR
;
2751 outb(info
->MCR
, info
->base
+ UART_MCR
);
2752 spin_unlock_irqrestore(&info
->slock
, flags
);
2756 cval
= inb(info
->base
+ UART_LCR
);
2758 outb(cval
| UART_LCR_DLAB
, info
->base
+ UART_LCR
); /* set DLAB */
2760 outb(quot
& 0xff, info
->base
+ UART_DLL
); /* LS of divisor */
2761 outb(quot
>> 8, info
->base
+ UART_DLM
); /* MS of divisor */
2762 outb(cval
, info
->base
+ UART_LCR
); /* reset DLAB */
2769 * ------------------------------------------------------------
2770 * friends of mxser_ioctl()
2771 * ------------------------------------------------------------
2773 static int mxser_get_serial_info(struct mxser_struct
*info
, struct serial_struct __user
*retinfo
)
2775 struct serial_struct tmp
;
2779 memset(&tmp
, 0, sizeof(tmp
));
2780 tmp
.type
= info
->type
;
2781 tmp
.line
= info
->port
;
2782 tmp
.port
= info
->base
;
2783 tmp
.irq
= info
->irq
;
2784 tmp
.flags
= info
->flags
;
2785 tmp
.baud_base
= info
->baud_base
;
2786 tmp
.close_delay
= info
->close_delay
;
2787 tmp
.closing_wait
= info
->closing_wait
;
2788 tmp
.custom_divisor
= info
->custom_divisor
;
2790 if (copy_to_user(retinfo
, &tmp
, sizeof(*retinfo
)))
2795 static int mxser_set_serial_info(struct mxser_struct
*info
, struct serial_struct __user
*new_info
)
2797 struct serial_struct new_serial
;
2801 if (!new_info
|| !info
->base
)
2803 if (copy_from_user(&new_serial
, new_info
, sizeof(new_serial
)))
2806 if ((new_serial
.irq
!= info
->irq
) ||
2807 (new_serial
.port
!= info
->base
) ||
2808 (new_serial
.custom_divisor
!= info
->custom_divisor
) ||
2809 (new_serial
.baud_base
!= info
->baud_base
))
2812 flags
= info
->flags
& ASYNC_SPD_MASK
;
2814 if (!capable(CAP_SYS_ADMIN
)) {
2815 if ((new_serial
.baud_base
!= info
->baud_base
) ||
2816 (new_serial
.close_delay
!= info
->close_delay
) ||
2817 ((new_serial
.flags
& ~ASYNC_USR_MASK
) != (info
->flags
& ~ASYNC_USR_MASK
)))
2819 info
->flags
= ((info
->flags
& ~ASYNC_USR_MASK
) |
2820 (new_serial
.flags
& ASYNC_USR_MASK
));
2823 * OK, past this point, all the error checking has been done.
2824 * At this point, we start making changes.....
2826 info
->flags
= ((info
->flags
& ~ASYNC_FLAGS
) |
2827 (new_serial
.flags
& ASYNC_FLAGS
));
2828 info
->close_delay
= new_serial
.close_delay
* HZ
/ 100;
2829 info
->closing_wait
= new_serial
.closing_wait
* HZ
/ 100;
2830 info
->tty
->low_latency
=
2831 (info
->flags
& ASYNC_LOW_LATENCY
) ? 1 : 0;
2832 info
->tty
->low_latency
= 0; /* (info->flags & ASYNC_LOW_LATENCY) ? 1 : 0; */
2835 /* added by casper, 3/17/2000, for mouse */
2836 info
->type
= new_serial
.type
;
2838 process_txrx_fifo(info
);
2840 if (info
->flags
& ASYNC_INITIALIZED
) {
2841 if (flags
!= (info
->flags
& ASYNC_SPD_MASK
)) {
2842 mxser_change_speed(info
, NULL
);
2845 retval
= mxser_startup(info
);
2851 * mxser_get_lsr_info - get line status register info
2853 * Purpose: Let user call ioctl() to get info when the UART physically
2854 * is emptied. On bus types like RS485, the transmitter must
2855 * release the bus after transmitting. This must be done when
2856 * the transmit shift register is empty, not be done when the
2857 * transmit holding register is empty. This functionality
2858 * allows an RS485 driver to be written in user space.
2860 static int mxser_get_lsr_info(struct mxser_struct
*info
, unsigned int __user
*value
)
2862 unsigned char status
;
2863 unsigned int result
;
2864 unsigned long flags
;
2866 spin_lock_irqsave(&info
->slock
, flags
);
2867 status
= inb(info
->base
+ UART_LSR
);
2868 spin_unlock_irqrestore(&info
->slock
, flags
);
2869 result
= ((status
& UART_LSR_TEMT
) ? TIOCSER_TEMT
: 0);
2870 return put_user(result
, value
);
2874 * This routine sends a break character out the serial port.
2876 static void mxser_send_break(struct mxser_struct
*info
, int duration
)
2878 unsigned long flags
;
2882 set_current_state(TASK_INTERRUPTIBLE
);
2883 spin_lock_irqsave(&info
->slock
, flags
);
2884 outb(inb(info
->base
+ UART_LCR
) | UART_LCR_SBC
,
2885 info
->base
+ UART_LCR
);
2886 spin_unlock_irqrestore(&info
->slock
, flags
);
2887 schedule_timeout(duration
);
2888 spin_lock_irqsave(&info
->slock
, flags
);
2889 outb(inb(info
->base
+ UART_LCR
) & ~UART_LCR_SBC
,
2890 info
->base
+ UART_LCR
);
2891 spin_unlock_irqrestore(&info
->slock
, flags
);
2894 static int mxser_tiocmget(struct tty_struct
*tty
, struct file
*file
)
2896 struct mxser_struct
*info
= tty
->driver_data
;
2897 unsigned char control
, status
;
2898 unsigned long flags
;
2901 if (tty
->index
== MXSER_PORTS
)
2902 return -ENOIOCTLCMD
;
2903 if (tty
->flags
& (1 << TTY_IO_ERROR
))
2906 control
= info
->MCR
;
2908 spin_lock_irqsave(&info
->slock
, flags
);
2909 status
= inb(info
->base
+ UART_MSR
);
2910 if (status
& UART_MSR_ANY_DELTA
)
2911 mxser_check_modem_status(info
, status
);
2912 spin_unlock_irqrestore(&info
->slock
, flags
);
2913 return ((control
& UART_MCR_RTS
) ? TIOCM_RTS
: 0) |
2914 ((control
& UART_MCR_DTR
) ? TIOCM_DTR
: 0) |
2915 ((status
& UART_MSR_DCD
) ? TIOCM_CAR
: 0) |
2916 ((status
& UART_MSR_RI
) ? TIOCM_RNG
: 0) |
2917 ((status
& UART_MSR_DSR
) ? TIOCM_DSR
: 0) |
2918 ((status
& UART_MSR_CTS
) ? TIOCM_CTS
: 0);
2921 static int mxser_tiocmset(struct tty_struct
*tty
, struct file
*file
, unsigned int set
, unsigned int clear
)
2923 struct mxser_struct
*info
= tty
->driver_data
;
2924 unsigned long flags
;
2927 if (tty
->index
== MXSER_PORTS
)
2928 return -ENOIOCTLCMD
;
2929 if (tty
->flags
& (1 << TTY_IO_ERROR
))
2932 spin_lock_irqsave(&info
->slock
, flags
);
2934 if (set
& TIOCM_RTS
)
2935 info
->MCR
|= UART_MCR_RTS
;
2936 if (set
& TIOCM_DTR
)
2937 info
->MCR
|= UART_MCR_DTR
;
2939 if (clear
& TIOCM_RTS
)
2940 info
->MCR
&= ~UART_MCR_RTS
;
2941 if (clear
& TIOCM_DTR
)
2942 info
->MCR
&= ~UART_MCR_DTR
;
2944 outb(info
->MCR
, info
->base
+ UART_MCR
);
2945 spin_unlock_irqrestore(&info
->slock
, flags
);
2950 static int mxser_read_register(int, unsigned short *);
2951 static int mxser_program_mode(int);
2952 static void mxser_normal_mode(int);
2954 static int mxser_get_ISA_conf(int cap
, struct mxser_hwconf
*hwconf
)
2957 unsigned short regs
[16], irq
;
2958 unsigned char scratch
, scratch2
;
2960 hwconf
->IsMoxaMustChipFlag
= MOXA_OTHER_UART
;
2962 id
= mxser_read_register(cap
, regs
);
2963 if (id
== C168_ASIC_ID
) {
2964 hwconf
->board_type
= MXSER_BOARD_C168_ISA
;
2966 } else if (id
== C104_ASIC_ID
) {
2967 hwconf
->board_type
= MXSER_BOARD_C104_ISA
;
2969 } else if (id
== C102_ASIC_ID
) {
2970 hwconf
->board_type
= MXSER_BOARD_C102_ISA
;
2972 } else if (id
== CI132_ASIC_ID
) {
2973 hwconf
->board_type
= MXSER_BOARD_CI132
;
2975 } else if (id
== CI134_ASIC_ID
) {
2976 hwconf
->board_type
= MXSER_BOARD_CI134
;
2978 } else if (id
== CI104J_ASIC_ID
) {
2979 hwconf
->board_type
= MXSER_BOARD_CI104J
;
2985 if (hwconf
->ports
== 2) {
2986 irq
= regs
[9] & 0xF000;
2987 irq
= irq
| (irq
>> 4);
2988 if (irq
!= (regs
[9] & 0xFF00))
2989 return MXSER_ERR_IRQ_CONFLIT
;
2990 } else if (hwconf
->ports
== 4) {
2991 irq
= regs
[9] & 0xF000;
2992 irq
= irq
| (irq
>> 4);
2993 irq
= irq
| (irq
>> 8);
2995 return MXSER_ERR_IRQ_CONFLIT
;
2996 } else if (hwconf
->ports
== 8) {
2997 irq
= regs
[9] & 0xF000;
2998 irq
= irq
| (irq
>> 4);
2999 irq
= irq
| (irq
>> 8);
3000 if ((irq
!= regs
[9]) || (irq
!= regs
[10]))
3001 return MXSER_ERR_IRQ_CONFLIT
;
3005 return MXSER_ERR_IRQ
;
3006 hwconf
->irq
= ((int)(irq
& 0xF000) >> 12);
3007 for (i
= 0; i
< 8; i
++)
3008 hwconf
->ioaddr
[i
] = (int) regs
[i
+ 1] & 0xFFF8;
3009 if ((regs
[12] & 0x80) == 0)
3010 return MXSER_ERR_VECTOR
;
3011 hwconf
->vector
= (int)regs
[11]; /* interrupt vector */
3013 hwconf
->vector_mask
= 0x00FF;
3015 hwconf
->vector_mask
= 0x000F;
3016 for (i
= 7, bits
= 0x0100; i
>= 0; i
--, bits
<<= 1) {
3017 if (regs
[12] & bits
) {
3018 hwconf
->baud_base
[i
] = 921600;
3019 hwconf
->MaxCanSetBaudRate
[i
] = 921600; /* add by Victor Yu. 09-04-2002 */
3021 hwconf
->baud_base
[i
] = 115200;
3022 hwconf
->MaxCanSetBaudRate
[i
] = 115200; /* add by Victor Yu. 09-04-2002 */
3025 scratch2
= inb(cap
+ UART_LCR
) & (~UART_LCR_DLAB
);
3026 outb(scratch2
| UART_LCR_DLAB
, cap
+ UART_LCR
);
3027 outb(0, cap
+ UART_EFR
); /* EFR is the same as FCR */
3028 outb(scratch2
, cap
+ UART_LCR
);
3029 outb(UART_FCR_ENABLE_FIFO
, cap
+ UART_FCR
);
3030 scratch
= inb(cap
+ UART_IIR
);
3033 hwconf
->uart_type
= PORT_16550A
;
3035 hwconf
->uart_type
= PORT_16450
;
3040 request_region(hwconf
->ioaddr
[0], 8 * hwconf
->ports
, "mxser(IO)");
3041 request_region(hwconf
->vector
, 1, "mxser(vector)");
3042 return hwconf
->ports
;
3045 #define CHIP_SK 0x01 /* Serial Data Clock in Eprom */
3046 #define CHIP_DO 0x02 /* Serial Data Output in Eprom */
3047 #define CHIP_CS 0x04 /* Serial Chip Select in Eprom */
3048 #define CHIP_DI 0x08 /* Serial Data Input in Eprom */
3049 #define EN_CCMD 0x000 /* Chip's command register */
3050 #define EN0_RSARLO 0x008 /* Remote start address reg 0 */
3051 #define EN0_RSARHI 0x009 /* Remote start address reg 1 */
3052 #define EN0_RCNTLO 0x00A /* Remote byte count reg WR */
3053 #define EN0_RCNTHI 0x00B /* Remote byte count reg WR */
3054 #define EN0_DCFG 0x00E /* Data configuration reg WR */
3055 #define EN0_PORT 0x010 /* Rcv missed frame error counter RD */
3056 #define ENC_PAGE0 0x000 /* Select page 0 of chip registers */
3057 #define ENC_PAGE3 0x0C0 /* Select page 3 of chip registers */
3058 static int mxser_read_register(int port
, unsigned short *regs
)
3060 int i
, k
, value
, id
;
3063 id
= mxser_program_mode(port
);
3066 for (i
= 0; i
< 14; i
++) {
3067 k
= (i
& 0x3F) | 0x180;
3068 for (j
= 0x100; j
> 0; j
>>= 1) {
3069 outb(CHIP_CS
, port
);
3071 outb(CHIP_CS
| CHIP_DO
, port
);
3072 outb(CHIP_CS
| CHIP_DO
| CHIP_SK
, port
); /* A? bit of read */
3074 outb(CHIP_CS
, port
);
3075 outb(CHIP_CS
| CHIP_SK
, port
); /* A? bit of read */
3080 for (k
= 0, j
= 0x8000; k
< 16; k
++, j
>>= 1) {
3081 outb(CHIP_CS
, port
);
3082 outb(CHIP_CS
| CHIP_SK
, port
);
3083 if (inb(port
) & CHIP_DI
)
3089 mxser_normal_mode(port
);
3093 static int mxser_program_mode(int port
)
3096 /* unsigned long flags; */
3098 spin_lock(&gm_lock
);
3106 /* restore_flags(flags); */
3107 spin_unlock(&gm_lock
);
3109 id
= inb(port
+ 1) & 0x1F;
3110 if ((id
!= C168_ASIC_ID
) &&
3111 (id
!= C104_ASIC_ID
) &&
3112 (id
!= C102_ASIC_ID
) &&
3113 (id
!= CI132_ASIC_ID
) &&
3114 (id
!= CI134_ASIC_ID
) &&
3115 (id
!= CI104J_ASIC_ID
))
3117 for (i
= 0, j
= 0; i
< 4; i
++) {
3121 } else if ((j
== 1) && (n
== 1)) {
3132 static void mxser_normal_mode(int port
)
3136 outb(0xA5, port
+ 1);
3137 outb(0x80, port
+ 3);
3138 outb(12, port
+ 0); /* 9600 bps */
3140 outb(0x03, port
+ 3); /* 8 data bits */
3141 outb(0x13, port
+ 4); /* loop back mode */
3142 for (i
= 0; i
< 16; i
++) {
3144 if ((n
& 0x61) == 0x60)
3149 outb(0x00, port
+ 4);
3152 module_init(mxser_module_init
);
3153 module_exit(mxser_module_exit
);