2 * mxser.c -- MOXA Smartio/Industio family multiport serial driver.
4 * Copyright (C) 1999-2006 Moxa Technologies (support@moxa.com.tw).
5 * Copyright (C) 2006-2007 Jiri Slaby <jirislaby@gmail.com>
7 * This code is loosely based on the 1.8 moxa driver which is based on
8 * Linux serial driver, written by Linus Torvalds, Theodore T'so and
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * Fed through a cleanup, indent and remove of non 2.6 code by Alan Cox
17 * <alan@redhat.com>. The original 1.8 code is available on www.moxa.com.
18 * - Fixed x86_64 cleanness
19 * - Fixed sleep with spinlock held in mxser_send_break
22 #include <linux/module.h>
23 #include <linux/errno.h>
24 #include <linux/signal.h>
25 #include <linux/sched.h>
26 #include <linux/timer.h>
27 #include <linux/interrupt.h>
28 #include <linux/tty.h>
29 #include <linux/tty_flip.h>
30 #include <linux/serial.h>
31 #include <linux/serial_reg.h>
32 #include <linux/major.h>
33 #include <linux/string.h>
34 #include <linux/fcntl.h>
35 #include <linux/ptrace.h>
36 #include <linux/gfp.h>
37 #include <linux/ioport.h>
39 #include <linux/delay.h>
40 #include <linux/pci.h>
41 #include <linux/bitops.h>
43 #include <asm/system.h>
46 #include <asm/uaccess.h>
48 #include "mxser_new.h"
50 #define MXSER_VERSION "2.0.2" /* 1.10 */
51 #define MXSERMAJOR 174
52 #define MXSERCUMAJOR 175
54 #define MXSER_BOARDS 4 /* Max. boards */
55 #define MXSER_PORTS_PER_BOARD 8 /* Max. ports per board */
56 #define MXSER_PORTS (MXSER_BOARDS * MXSER_PORTS_PER_BOARD)
57 #define MXSER_ISR_PASS_LIMIT 100
59 #define MXSER_ERR_IOADDR -1
60 #define MXSER_ERR_IRQ -2
61 #define MXSER_ERR_IRQ_CONFLIT -3
62 #define MXSER_ERR_VECTOR -4
64 /*CheckIsMoxaMust return value*/
65 #define MOXA_OTHER_UART 0x00
66 #define MOXA_MUST_MU150_HWID 0x01
67 #define MOXA_MUST_MU860_HWID 0x02
69 #define WAKEUP_CHARS 256
71 #define UART_MCR_AFE 0x20
72 #define UART_LSR_SPECIAL 0x1E
74 #define PCI_DEVICE_ID_CB108 0x1080
75 #define PCI_DEVICE_ID_CB114 0x1142
76 #define PCI_DEVICE_ID_CB134I 0x1341
77 #define PCI_DEVICE_ID_CP138U 0x1380
78 #define PCI_DEVICE_ID_POS104UL 0x1044
81 #define C168_ASIC_ID 1
82 #define C104_ASIC_ID 2
83 #define C102_ASIC_ID 0xB
84 #define CI132_ASIC_ID 4
85 #define CI134_ASIC_ID 3
86 #define CI104J_ASIC_ID 5
88 #define MXSER_HIGHBAUD 1
91 /* This is only for PCI */
101 } Gpci_uart_info
[] = {
102 {MOXA_OTHER_UART
, 16, 16, 16, 14, 14, 1, 921600L},
103 {MOXA_MUST_MU150_HWID
, 64, 64, 64, 48, 48, 16, 230400L},
104 {MOXA_MUST_MU860_HWID
, 128, 128, 128, 96, 96, 32, 921600L}
106 #define UART_INFO_NUM ARRAY_SIZE(Gpci_uart_info)
108 struct mxser_cardinfo
{
114 static const struct mxser_cardinfo mxser_cards
[] = {
115 /* 0*/ { 8, "C168 series", },
116 { 4, "C104 series", },
117 { 4, "CI-104J series", },
118 { 8, "C168H/PCI series", },
119 { 4, "C104H/PCI series", },
120 /* 5*/ { 4, "C102 series", MXSER_HAS2
}, /* C102-ISA */
121 { 4, "CI-132 series", MXSER_HAS2
},
122 { 4, "CI-134 series", },
123 { 2, "CP-132 series", },
124 { 4, "CP-114 series", },
125 /*10*/ { 4, "CT-114 series", },
126 { 2, "CP-102 series", MXSER_HIGHBAUD
},
127 { 4, "CP-104U series", },
128 { 8, "CP-168U series", },
129 { 2, "CP-132U series", },
130 /*15*/ { 4, "CP-134U series", },
131 { 4, "CP-104JU series", },
132 { 8, "Moxa UC7000 Serial", }, /* RC7000 */
133 { 8, "CP-118U series", },
134 { 2, "CP-102UL series", },
135 /*20*/ { 2, "CP-102U series", },
136 { 8, "CP-118EL series", },
137 { 8, "CP-168EL series", },
138 { 4, "CP-104EL series", },
139 { 8, "CB-108 series", },
140 /*25*/ { 4, "CB-114 series", },
141 { 4, "CB-134I series", },
142 { 8, "CP-138U series", },
143 { 4, "POS-104UL series", }
146 /* driver_data correspond to the lines in the structure above
147 see also ISA probe function before you change something */
148 static struct pci_device_id mxser_pcibrds
[] = {
149 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_C168
), .driver_data
= 3 },
150 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_C104
), .driver_data
= 4 },
151 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP132
), .driver_data
= 8 },
152 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP114
), .driver_data
= 9 },
153 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CT114
), .driver_data
= 10 },
154 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP102
), .driver_data
= 11 },
155 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP104U
), .driver_data
= 12 },
156 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP168U
), .driver_data
= 13 },
157 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP132U
), .driver_data
= 14 },
158 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP134U
), .driver_data
= 15 },
159 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP104JU
),.driver_data
= 16 },
160 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_RC7000
), .driver_data
= 17 },
161 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP118U
), .driver_data
= 18 },
162 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP102UL
),.driver_data
= 19 },
163 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP102U
), .driver_data
= 20 },
164 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP118EL
),.driver_data
= 21 },
165 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP168EL
),.driver_data
= 22 },
166 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP104EL
),.driver_data
= 23 },
167 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CB108
), .driver_data
= 24 },
168 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CB114
), .driver_data
= 25 },
169 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CB134I
), .driver_data
= 26 },
170 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CP138U
), .driver_data
= 27 },
171 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_POS104UL
), .driver_data
= 28 },
174 MODULE_DEVICE_TABLE(pci
, mxser_pcibrds
);
176 static int ioaddr
[MXSER_BOARDS
] = { 0, 0, 0, 0 };
177 static int ttymajor
= MXSERMAJOR
;
178 static int calloutmajor
= MXSERCUMAJOR
;
180 /* Variables for insmod */
182 MODULE_AUTHOR("Casper Yang");
183 MODULE_DESCRIPTION("MOXA Smartio/Industio Family Multiport Board Device Driver");
184 module_param_array(ioaddr
, int, NULL
, 0);
185 module_param(ttymajor
, int, 0);
186 MODULE_LICENSE("GPL");
190 unsigned long rxcnt
[MXSER_PORTS
];
191 unsigned long txcnt
[MXSER_PORTS
];
198 unsigned long up_rxcnt
;
199 unsigned long up_txcnt
;
201 unsigned char hold_reason
;
204 struct mxser_mon_ext
{
205 unsigned long rx_cnt
[32];
206 unsigned long tx_cnt
[32];
207 unsigned long up_rxcnt
[32];
208 unsigned long up_txcnt
[32];
209 int modem_status
[32];
223 struct mxser_board
*board
;
224 struct tty_struct
*tty
;
226 unsigned long ioaddr
;
227 unsigned long opmode_ioaddr
;
231 int rx_trigger
; /* Rx fifo trigger level */
233 int baud_base
; /* max. speed */
234 int type
; /* UART type */
235 int flags
; /* defined in tty.h */
237 int x_char
; /* xon/xoff character */
238 int IER
; /* Interrupt Enable Register */
239 int MCR
; /* Modem control register */
241 unsigned char stop_rx
;
242 unsigned char ldisc_stop_rx
;
246 unsigned short closing_wait
;
247 unsigned char err_shadow
;
250 int count
; /* # of fd on device */
251 int blocked_open
; /* # of blocked opens */
252 struct async_icount icount
; /* kernel counters for 4 input interrupts */
255 int read_status_mask
;
256 int ignore_status_mask
;
258 unsigned char *xmit_buf
;
263 struct ktermios normal_termios
;
265 struct mxser_mon mon_data
;
268 wait_queue_head_t open_wait
;
269 wait_queue_head_t delta_msr_wait
;
275 const struct mxser_cardinfo
*info
;
276 unsigned long vector
;
277 unsigned long vector_mask
;
282 struct mxser_port ports
[MXSER_PORTS_PER_BOARD
];
285 struct mxser_mstatus
{
293 static struct mxser_mstatus GMStatus
[MXSER_PORTS
];
295 static int mxserBoardCAP
[MXSER_BOARDS
] = {
297 /* 0x180, 0x280, 0x200, 0x320 */
300 static struct mxser_board mxser_boards
[MXSER_BOARDS
];
301 static struct tty_driver
*mxvar_sdriver
;
302 static struct mxser_log mxvar_log
;
303 static int mxvar_diagflag
;
304 static unsigned char mxser_msr
[MXSER_PORTS
+ 1];
305 static struct mxser_mon_ext mon_data_ext
;
306 static int mxser_set_baud_method
[MXSER_PORTS
+ 1];
309 static int __devinit
CheckIsMoxaMust(unsigned long io
)
314 outb(0, io
+ UART_LCR
);
315 DISABLE_MOXA_MUST_ENCHANCE_MODE(io
);
316 oldmcr
= inb(io
+ UART_MCR
);
317 outb(0, io
+ UART_MCR
);
318 SET_MOXA_MUST_XON1_VALUE(io
, 0x11);
319 if ((hwid
= inb(io
+ UART_MCR
)) != 0) {
320 outb(oldmcr
, io
+ UART_MCR
);
321 return MOXA_OTHER_UART
;
324 GET_MOXA_MUST_HARDWARE_ID(io
, &hwid
);
325 for (i
= 1; i
< UART_INFO_NUM
; i
++) { /* 0 = OTHER_UART */
326 if (hwid
== Gpci_uart_info
[i
].type
)
329 return MOXA_OTHER_UART
;
333 static void process_txrx_fifo(struct mxser_port
*info
)
337 if ((info
->type
== PORT_16450
) || (info
->type
== PORT_8250
)) {
338 info
->rx_trigger
= 1;
339 info
->rx_high_water
= 1;
340 info
->rx_low_water
= 1;
341 info
->xmit_fifo_size
= 1;
343 for (i
= 0; i
< UART_INFO_NUM
; i
++)
344 if (info
->board
->chip_flag
== Gpci_uart_info
[i
].type
) {
345 info
->rx_trigger
= Gpci_uart_info
[i
].rx_trigger
;
346 info
->rx_low_water
= Gpci_uart_info
[i
].rx_low_water
;
347 info
->rx_high_water
= Gpci_uart_info
[i
].rx_high_water
;
348 info
->xmit_fifo_size
= Gpci_uart_info
[i
].xmit_fifo_size
;
353 static unsigned char mxser_get_msr(int baseaddr
, int mode
, int port
)
355 unsigned char status
= 0;
357 status
= inb(baseaddr
+ UART_MSR
);
359 mxser_msr
[port
] &= 0x0F;
360 mxser_msr
[port
] |= status
;
361 status
= mxser_msr
[port
];
368 static int mxser_block_til_ready(struct tty_struct
*tty
, struct file
*filp
,
369 struct mxser_port
*port
)
371 DECLARE_WAITQUEUE(wait
, current
);
377 * If non-blocking mode is set, or the port is not enabled,
378 * then make the check up front and then exit.
380 if ((filp
->f_flags
& O_NONBLOCK
) ||
381 test_bit(TTY_IO_ERROR
, &tty
->flags
)) {
382 port
->flags
|= ASYNC_NORMAL_ACTIVE
;
386 if (tty
->termios
->c_cflag
& CLOCAL
)
390 * Block waiting for the carrier detect and the line to become
391 * free (i.e., not in use by the callout). While we are in
392 * this loop, port->count is dropped by one, so that
393 * mxser_close() knows when to free things. We restore it upon
394 * exit, either normal or abnormal.
397 add_wait_queue(&port
->open_wait
, &wait
);
399 spin_lock_irqsave(&port
->slock
, flags
);
400 if (!tty_hung_up_p(filp
))
402 spin_unlock_irqrestore(&port
->slock
, flags
);
403 port
->blocked_open
++;
405 spin_lock_irqsave(&port
->slock
, flags
);
406 outb(inb(port
->ioaddr
+ UART_MCR
) |
407 UART_MCR_DTR
| UART_MCR_RTS
, port
->ioaddr
+ UART_MCR
);
408 spin_unlock_irqrestore(&port
->slock
, flags
);
409 set_current_state(TASK_INTERRUPTIBLE
);
410 if (tty_hung_up_p(filp
) || !(port
->flags
& ASYNC_INITIALIZED
)) {
411 if (port
->flags
& ASYNC_HUP_NOTIFY
)
414 retval
= -ERESTARTSYS
;
417 if (!(port
->flags
& ASYNC_CLOSING
) &&
419 (inb(port
->ioaddr
+ UART_MSR
) & UART_MSR_DCD
)))
421 if (signal_pending(current
)) {
422 retval
= -ERESTARTSYS
;
427 set_current_state(TASK_RUNNING
);
428 remove_wait_queue(&port
->open_wait
, &wait
);
429 if (!tty_hung_up_p(filp
))
431 port
->blocked_open
--;
434 port
->flags
|= ASYNC_NORMAL_ACTIVE
;
438 static int mxser_set_baud(struct mxser_port
*info
, long newspd
)
443 if (!info
->tty
|| !info
->tty
->termios
)
449 if (newspd
> info
->max_baud
)
453 quot
= 2 * info
->baud_base
/ 269;
454 tty_encode_baud_rate(info
->tty
, 134, 134);
456 quot
= info
->baud_base
/ newspd
;
459 baud
= info
->baud_base
/quot
;
460 tty_encode_baud_rate(info
->tty
, baud
, baud
);
465 info
->timeout
= ((info
->xmit_fifo_size
* HZ
* 10 * quot
) / info
->baud_base
);
466 info
->timeout
+= HZ
/ 50; /* Add .02 seconds of slop */
469 info
->MCR
|= UART_MCR_DTR
;
470 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
472 info
->MCR
&= ~UART_MCR_DTR
;
473 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
477 cval
= inb(info
->ioaddr
+ UART_LCR
);
479 outb(cval
| UART_LCR_DLAB
, info
->ioaddr
+ UART_LCR
); /* set DLAB */
481 outb(quot
& 0xff, info
->ioaddr
+ UART_DLL
); /* LS of divisor */
482 outb(quot
>> 8, info
->ioaddr
+ UART_DLM
); /* MS of divisor */
483 outb(cval
, info
->ioaddr
+ UART_LCR
); /* reset DLAB */
486 if (C_BAUD(info
->tty
) == BOTHER
) {
487 quot
= info
->baud_base
% newspd
;
489 if (quot
% newspd
> newspd
/ 2) {
495 SET_MOXA_MUST_ENUM_VALUE(info
->ioaddr
, quot
);
498 SET_MOXA_MUST_ENUM_VALUE(info
->ioaddr
, 0);
504 * This routine is called to set the UART divisor registers to match
505 * the specified baud rate for a serial port.
507 static int mxser_change_speed(struct mxser_port
*info
,
508 struct ktermios
*old_termios
)
510 unsigned cflag
, cval
, fcr
;
512 unsigned char status
;
514 if (!info
->tty
|| !info
->tty
->termios
)
516 cflag
= info
->tty
->termios
->c_cflag
;
520 if (mxser_set_baud_method
[info
->tty
->index
] == 0)
521 mxser_set_baud(info
, tty_get_baud_rate(info
->tty
));
523 /* byte size and parity */
524 switch (cflag
& CSIZE
) {
539 break; /* too keep GCC shut... */
544 cval
|= UART_LCR_PARITY
;
545 if (!(cflag
& PARODD
))
546 cval
|= UART_LCR_EPAR
;
548 cval
|= UART_LCR_SPAR
;
550 if ((info
->type
== PORT_8250
) || (info
->type
== PORT_16450
)) {
551 if (info
->board
->chip_flag
) {
552 fcr
= UART_FCR_ENABLE_FIFO
;
553 fcr
|= MOXA_MUST_FCR_GDA_MODE_ENABLE
;
554 SET_MOXA_MUST_FIFO_VALUE(info
);
558 fcr
= UART_FCR_ENABLE_FIFO
;
559 if (info
->board
->chip_flag
) {
560 fcr
|= MOXA_MUST_FCR_GDA_MODE_ENABLE
;
561 SET_MOXA_MUST_FIFO_VALUE(info
);
563 switch (info
->rx_trigger
) {
565 fcr
|= UART_FCR_TRIGGER_1
;
568 fcr
|= UART_FCR_TRIGGER_4
;
571 fcr
|= UART_FCR_TRIGGER_8
;
574 fcr
|= UART_FCR_TRIGGER_14
;
580 /* CTS flow control flag and modem status interrupts */
581 info
->IER
&= ~UART_IER_MSI
;
582 info
->MCR
&= ~UART_MCR_AFE
;
583 if (cflag
& CRTSCTS
) {
584 info
->flags
|= ASYNC_CTS_FLOW
;
585 info
->IER
|= UART_IER_MSI
;
586 if ((info
->type
== PORT_16550A
) || (info
->board
->chip_flag
)) {
587 info
->MCR
|= UART_MCR_AFE
;
589 status
= inb(info
->ioaddr
+ UART_MSR
);
590 if (info
->tty
->hw_stopped
) {
591 if (status
& UART_MSR_CTS
) {
592 info
->tty
->hw_stopped
= 0;
593 if (info
->type
!= PORT_16550A
&&
594 !info
->board
->chip_flag
) {
595 outb(info
->IER
& ~UART_IER_THRI
,
598 info
->IER
|= UART_IER_THRI
;
599 outb(info
->IER
, info
->ioaddr
+
602 tty_wakeup(info
->tty
);
605 if (!(status
& UART_MSR_CTS
)) {
606 info
->tty
->hw_stopped
= 1;
607 if ((info
->type
!= PORT_16550A
) &&
608 (!info
->board
->chip_flag
)) {
609 info
->IER
&= ~UART_IER_THRI
;
610 outb(info
->IER
, info
->ioaddr
+
617 info
->flags
&= ~ASYNC_CTS_FLOW
;
619 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
620 if (cflag
& CLOCAL
) {
621 info
->flags
&= ~ASYNC_CHECK_CD
;
623 info
->flags
|= ASYNC_CHECK_CD
;
624 info
->IER
|= UART_IER_MSI
;
626 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
629 * Set up parity check flag
631 info
->read_status_mask
= UART_LSR_OE
| UART_LSR_THRE
| UART_LSR_DR
;
632 if (I_INPCK(info
->tty
))
633 info
->read_status_mask
|= UART_LSR_FE
| UART_LSR_PE
;
634 if (I_BRKINT(info
->tty
) || I_PARMRK(info
->tty
))
635 info
->read_status_mask
|= UART_LSR_BI
;
637 info
->ignore_status_mask
= 0;
639 if (I_IGNBRK(info
->tty
)) {
640 info
->ignore_status_mask
|= UART_LSR_BI
;
641 info
->read_status_mask
|= UART_LSR_BI
;
643 * If we're ignore parity and break indicators, ignore
644 * overruns too. (For real raw support).
646 if (I_IGNPAR(info
->tty
)) {
647 info
->ignore_status_mask
|=
651 info
->read_status_mask
|=
657 if (info
->board
->chip_flag
) {
658 SET_MOXA_MUST_XON1_VALUE(info
->ioaddr
, START_CHAR(info
->tty
));
659 SET_MOXA_MUST_XOFF1_VALUE(info
->ioaddr
, STOP_CHAR(info
->tty
));
660 if (I_IXON(info
->tty
)) {
661 ENABLE_MOXA_MUST_RX_SOFTWARE_FLOW_CONTROL(info
->ioaddr
);
663 DISABLE_MOXA_MUST_RX_SOFTWARE_FLOW_CONTROL(info
->ioaddr
);
665 if (I_IXOFF(info
->tty
)) {
666 ENABLE_MOXA_MUST_TX_SOFTWARE_FLOW_CONTROL(info
->ioaddr
);
668 DISABLE_MOXA_MUST_TX_SOFTWARE_FLOW_CONTROL(info
->ioaddr
);
673 outb(fcr
, info
->ioaddr
+ UART_FCR
); /* set fcr */
674 outb(cval
, info
->ioaddr
+ UART_LCR
);
679 static void mxser_check_modem_status(struct mxser_port
*port
, int status
)
681 /* update input line counters */
682 if (status
& UART_MSR_TERI
)
684 if (status
& UART_MSR_DDSR
)
686 if (status
& UART_MSR_DDCD
)
688 if (status
& UART_MSR_DCTS
)
690 port
->mon_data
.modem_status
= status
;
691 wake_up_interruptible(&port
->delta_msr_wait
);
693 if ((port
->flags
& ASYNC_CHECK_CD
) && (status
& UART_MSR_DDCD
)) {
694 if (status
& UART_MSR_DCD
)
695 wake_up_interruptible(&port
->open_wait
);
698 if (port
->flags
& ASYNC_CTS_FLOW
) {
699 if (port
->tty
->hw_stopped
) {
700 if (status
& UART_MSR_CTS
) {
701 port
->tty
->hw_stopped
= 0;
703 if ((port
->type
!= PORT_16550A
) &&
704 (!port
->board
->chip_flag
)) {
705 outb(port
->IER
& ~UART_IER_THRI
,
706 port
->ioaddr
+ UART_IER
);
707 port
->IER
|= UART_IER_THRI
;
708 outb(port
->IER
, port
->ioaddr
+
711 tty_wakeup(port
->tty
);
714 if (!(status
& UART_MSR_CTS
)) {
715 port
->tty
->hw_stopped
= 1;
716 if (port
->type
!= PORT_16550A
&&
717 !port
->board
->chip_flag
) {
718 port
->IER
&= ~UART_IER_THRI
;
719 outb(port
->IER
, port
->ioaddr
+
727 static int mxser_startup(struct mxser_port
*info
)
732 page
= __get_free_page(GFP_KERNEL
);
736 spin_lock_irqsave(&info
->slock
, flags
);
738 if (info
->flags
& ASYNC_INITIALIZED
) {
740 spin_unlock_irqrestore(&info
->slock
, flags
);
744 if (!info
->ioaddr
|| !info
->type
) {
746 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
748 spin_unlock_irqrestore(&info
->slock
, flags
);
754 info
->xmit_buf
= (unsigned char *) page
;
757 * Clear the FIFO buffers and disable them
758 * (they will be reenabled in mxser_change_speed())
760 if (info
->board
->chip_flag
)
761 outb((UART_FCR_CLEAR_RCVR
|
762 UART_FCR_CLEAR_XMIT
|
763 MOXA_MUST_FCR_GDA_MODE_ENABLE
), info
->ioaddr
+ UART_FCR
);
765 outb((UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
),
766 info
->ioaddr
+ UART_FCR
);
769 * At this point there's no way the LSR could still be 0xFF;
770 * if it is, then bail out, because there's likely no UART
773 if (inb(info
->ioaddr
+ UART_LSR
) == 0xff) {
774 spin_unlock_irqrestore(&info
->slock
, flags
);
775 if (capable(CAP_SYS_ADMIN
)) {
777 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
784 * Clear the interrupt registers.
786 (void) inb(info
->ioaddr
+ UART_LSR
);
787 (void) inb(info
->ioaddr
+ UART_RX
);
788 (void) inb(info
->ioaddr
+ UART_IIR
);
789 (void) inb(info
->ioaddr
+ UART_MSR
);
792 * Now, initialize the UART
794 outb(UART_LCR_WLEN8
, info
->ioaddr
+ UART_LCR
); /* reset DLAB */
795 info
->MCR
= UART_MCR_DTR
| UART_MCR_RTS
;
796 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
799 * Finally, enable interrupts
801 info
->IER
= UART_IER_MSI
| UART_IER_RLSI
| UART_IER_RDI
;
803 if (info
->board
->chip_flag
)
804 info
->IER
|= MOXA_MUST_IER_EGDAI
;
805 outb(info
->IER
, info
->ioaddr
+ UART_IER
); /* enable interrupts */
808 * And clear the interrupt registers again for luck.
810 (void) inb(info
->ioaddr
+ UART_LSR
);
811 (void) inb(info
->ioaddr
+ UART_RX
);
812 (void) inb(info
->ioaddr
+ UART_IIR
);
813 (void) inb(info
->ioaddr
+ UART_MSR
);
816 clear_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
817 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
820 * and set the speed of the serial port
822 mxser_change_speed(info
, NULL
);
823 info
->flags
|= ASYNC_INITIALIZED
;
824 spin_unlock_irqrestore(&info
->slock
, flags
);
830 * This routine will shutdown a serial port; interrupts maybe disabled, and
831 * DTR is dropped if the hangup on close termio flag is on.
833 static void mxser_shutdown(struct mxser_port
*info
)
837 if (!(info
->flags
& ASYNC_INITIALIZED
))
840 spin_lock_irqsave(&info
->slock
, flags
);
843 * clear delta_msr_wait queue to avoid mem leaks: we may free the irq
844 * here so the queue might never be waken up
846 wake_up_interruptible(&info
->delta_msr_wait
);
849 * Free the IRQ, if necessary
851 if (info
->xmit_buf
) {
852 free_page((unsigned long) info
->xmit_buf
);
853 info
->xmit_buf
= NULL
;
857 outb(0x00, info
->ioaddr
+ UART_IER
);
859 if (!info
->tty
|| (info
->tty
->termios
->c_cflag
& HUPCL
))
860 info
->MCR
&= ~(UART_MCR_DTR
| UART_MCR_RTS
);
861 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
863 /* clear Rx/Tx FIFO's */
864 if (info
->board
->chip_flag
)
865 outb(UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
|
866 MOXA_MUST_FCR_GDA_MODE_ENABLE
,
867 info
->ioaddr
+ UART_FCR
);
869 outb(UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
,
870 info
->ioaddr
+ UART_FCR
);
872 /* read data port to reset things */
873 (void) inb(info
->ioaddr
+ UART_RX
);
876 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
878 info
->flags
&= ~ASYNC_INITIALIZED
;
880 if (info
->board
->chip_flag
)
881 SET_MOXA_MUST_NO_SOFTWARE_FLOW_CONTROL(info
->ioaddr
);
883 spin_unlock_irqrestore(&info
->slock
, flags
);
887 * This routine is called whenever a serial port is opened. It
888 * enables interrupts for a serial port, linking in its async structure into
889 * the IRQ chain. It also performs the serial-specific
890 * initialization for the tty structure.
892 static int mxser_open(struct tty_struct
*tty
, struct file
*filp
)
894 struct mxser_port
*info
;
899 if (line
== MXSER_PORTS
)
901 if (line
< 0 || line
> MXSER_PORTS
)
903 info
= &mxser_boards
[line
/ MXSER_PORTS_PER_BOARD
].ports
[line
% MXSER_PORTS_PER_BOARD
];
907 tty
->driver_data
= info
;
910 * Start up serial port
912 spin_lock_irqsave(&info
->slock
, flags
);
914 spin_unlock_irqrestore(&info
->slock
, flags
);
915 retval
= mxser_startup(info
);
919 retval
= mxser_block_til_ready(tty
, filp
, info
);
923 /* unmark here for very high baud rate (ex. 921600 bps) used */
924 tty
->low_latency
= 1;
929 * This routine is called when the serial port gets closed. First, we
930 * wait for the last remaining data to be sent. Then, we unlink its
931 * async structure from the interrupt chain if necessary, and we free
932 * that IRQ if nothing is left in the chain.
934 static void mxser_close(struct tty_struct
*tty
, struct file
*filp
)
936 struct mxser_port
*info
= tty
->driver_data
;
938 unsigned long timeout
;
941 if (tty
->index
== MXSER_PORTS
)
946 spin_lock_irqsave(&info
->slock
, flags
);
948 if (tty_hung_up_p(filp
)) {
949 spin_unlock_irqrestore(&info
->slock
, flags
);
952 if ((tty
->count
== 1) && (info
->count
!= 1)) {
954 * Uh, oh. tty->count is 1, which means that the tty
955 * structure will be freed. Info->count should always
956 * be one in these conditions. If it's greater than
957 * one, we've got real problems, since it means the
958 * serial port won't be shutdown.
960 printk(KERN_ERR
"mxser_close: bad serial port count; "
961 "tty->count is 1, info->count is %d\n", info
->count
);
964 if (--info
->count
< 0) {
965 printk(KERN_ERR
"mxser_close: bad serial port count for "
966 "ttys%d: %d\n", tty
->index
, info
->count
);
970 spin_unlock_irqrestore(&info
->slock
, flags
);
973 info
->flags
|= ASYNC_CLOSING
;
974 spin_unlock_irqrestore(&info
->slock
, flags
);
976 * Save the termios structure, since this port may have
977 * separate termios for callout and dialin.
979 if (info
->flags
& ASYNC_NORMAL_ACTIVE
)
980 info
->normal_termios
= *tty
->termios
;
982 * Now we wait for the transmit buffer to clear; and we notify
983 * the line discipline to only process XON/XOFF characters.
986 if (info
->closing_wait
!= ASYNC_CLOSING_WAIT_NONE
)
987 tty_wait_until_sent(tty
, info
->closing_wait
);
989 * At this point we stop accepting input. To do this, we
990 * disable the receive line status interrupts, and tell the
991 * interrupt driver to stop checking the data ready bit in the
992 * line status register.
994 info
->IER
&= ~UART_IER_RLSI
;
995 if (info
->board
->chip_flag
)
996 info
->IER
&= ~MOXA_MUST_RECV_ISR
;
998 if (info
->flags
& ASYNC_INITIALIZED
) {
999 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1001 * Before we drop DTR, make sure the UART transmitter
1002 * has completely drained; this is especially
1003 * important if there is a transmit FIFO!
1005 timeout
= jiffies
+ HZ
;
1006 while (!(inb(info
->ioaddr
+ UART_LSR
) & UART_LSR_TEMT
)) {
1007 schedule_timeout_interruptible(5);
1008 if (time_after(jiffies
, timeout
))
1012 mxser_shutdown(info
);
1014 if (tty
->driver
->flush_buffer
)
1015 tty
->driver
->flush_buffer(tty
);
1017 tty_ldisc_flush(tty
);
1022 if (info
->blocked_open
) {
1023 if (info
->close_delay
)
1024 schedule_timeout_interruptible(info
->close_delay
);
1025 wake_up_interruptible(&info
->open_wait
);
1028 info
->flags
&= ~(ASYNC_NORMAL_ACTIVE
| ASYNC_CLOSING
);
1031 static int mxser_write(struct tty_struct
*tty
, const unsigned char *buf
, int count
)
1034 struct mxser_port
*info
= tty
->driver_data
;
1035 unsigned long flags
;
1037 if (!info
->xmit_buf
)
1041 c
= min_t(int, count
, min(SERIAL_XMIT_SIZE
- info
->xmit_cnt
- 1,
1042 SERIAL_XMIT_SIZE
- info
->xmit_head
));
1046 memcpy(info
->xmit_buf
+ info
->xmit_head
, buf
, c
);
1047 spin_lock_irqsave(&info
->slock
, flags
);
1048 info
->xmit_head
= (info
->xmit_head
+ c
) &
1049 (SERIAL_XMIT_SIZE
- 1);
1050 info
->xmit_cnt
+= c
;
1051 spin_unlock_irqrestore(&info
->slock
, flags
);
1058 if (info
->xmit_cnt
&& !tty
->stopped
) {
1059 if (!tty
->hw_stopped
||
1060 (info
->type
== PORT_16550A
) ||
1061 (info
->board
->chip_flag
)) {
1062 spin_lock_irqsave(&info
->slock
, flags
);
1063 outb(info
->IER
& ~UART_IER_THRI
, info
->ioaddr
+
1065 info
->IER
|= UART_IER_THRI
;
1066 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1067 spin_unlock_irqrestore(&info
->slock
, flags
);
1073 static void mxser_put_char(struct tty_struct
*tty
, unsigned char ch
)
1075 struct mxser_port
*info
= tty
->driver_data
;
1076 unsigned long flags
;
1078 if (!info
->xmit_buf
)
1081 if (info
->xmit_cnt
>= SERIAL_XMIT_SIZE
- 1)
1084 spin_lock_irqsave(&info
->slock
, flags
);
1085 info
->xmit_buf
[info
->xmit_head
++] = ch
;
1086 info
->xmit_head
&= SERIAL_XMIT_SIZE
- 1;
1088 spin_unlock_irqrestore(&info
->slock
, flags
);
1089 if (!tty
->stopped
) {
1090 if (!tty
->hw_stopped
||
1091 (info
->type
== PORT_16550A
) ||
1092 info
->board
->chip_flag
) {
1093 spin_lock_irqsave(&info
->slock
, flags
);
1094 outb(info
->IER
& ~UART_IER_THRI
, info
->ioaddr
+ UART_IER
);
1095 info
->IER
|= UART_IER_THRI
;
1096 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1097 spin_unlock_irqrestore(&info
->slock
, flags
);
1103 static void mxser_flush_chars(struct tty_struct
*tty
)
1105 struct mxser_port
*info
= tty
->driver_data
;
1106 unsigned long flags
;
1108 if (info
->xmit_cnt
<= 0 ||
1112 (info
->type
!= PORT_16550A
) &&
1113 (!info
->board
->chip_flag
)
1117 spin_lock_irqsave(&info
->slock
, flags
);
1119 outb(info
->IER
& ~UART_IER_THRI
, info
->ioaddr
+ UART_IER
);
1120 info
->IER
|= UART_IER_THRI
;
1121 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1123 spin_unlock_irqrestore(&info
->slock
, flags
);
1126 static int mxser_write_room(struct tty_struct
*tty
)
1128 struct mxser_port
*info
= tty
->driver_data
;
1131 ret
= SERIAL_XMIT_SIZE
- info
->xmit_cnt
- 1;
1137 static int mxser_chars_in_buffer(struct tty_struct
*tty
)
1139 struct mxser_port
*info
= tty
->driver_data
;
1140 return info
->xmit_cnt
;
1143 static void mxser_flush_buffer(struct tty_struct
*tty
)
1145 struct mxser_port
*info
= tty
->driver_data
;
1147 unsigned long flags
;
1150 spin_lock_irqsave(&info
->slock
, flags
);
1151 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
1153 fcr
= inb(info
->ioaddr
+ UART_FCR
);
1154 outb((fcr
| UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
),
1155 info
->ioaddr
+ UART_FCR
);
1156 outb(fcr
, info
->ioaddr
+ UART_FCR
);
1158 spin_unlock_irqrestore(&info
->slock
, flags
);
1164 * ------------------------------------------------------------
1165 * friends of mxser_ioctl()
1166 * ------------------------------------------------------------
1168 static int mxser_get_serial_info(struct mxser_port
*info
,
1169 struct serial_struct __user
*retinfo
)
1171 struct serial_struct tmp
;
1175 memset(&tmp
, 0, sizeof(tmp
));
1176 tmp
.type
= info
->type
;
1177 tmp
.line
= info
->tty
->index
;
1178 tmp
.port
= info
->ioaddr
;
1179 tmp
.irq
= info
->board
->irq
;
1180 tmp
.flags
= info
->flags
;
1181 tmp
.baud_base
= info
->baud_base
;
1182 tmp
.close_delay
= info
->close_delay
;
1183 tmp
.closing_wait
= info
->closing_wait
;
1184 tmp
.custom_divisor
= info
->custom_divisor
;
1186 if (copy_to_user(retinfo
, &tmp
, sizeof(*retinfo
)))
1191 static int mxser_set_serial_info(struct mxser_port
*info
,
1192 struct serial_struct __user
*new_info
)
1194 struct serial_struct new_serial
;
1195 unsigned long sl_flags
;
1199 if (!new_info
|| !info
->ioaddr
)
1201 if (copy_from_user(&new_serial
, new_info
, sizeof(new_serial
)))
1204 if ((new_serial
.irq
!= info
->board
->irq
) ||
1205 (new_serial
.port
!= info
->ioaddr
) ||
1206 (new_serial
.custom_divisor
!= info
->custom_divisor
) ||
1207 (new_serial
.baud_base
!= info
->baud_base
))
1210 flags
= info
->flags
& ASYNC_SPD_MASK
;
1212 if (!capable(CAP_SYS_ADMIN
)) {
1213 if ((new_serial
.baud_base
!= info
->baud_base
) ||
1214 (new_serial
.close_delay
!= info
->close_delay
) ||
1215 ((new_serial
.flags
& ~ASYNC_USR_MASK
) != (info
->flags
& ~ASYNC_USR_MASK
)))
1217 info
->flags
= ((info
->flags
& ~ASYNC_USR_MASK
) |
1218 (new_serial
.flags
& ASYNC_USR_MASK
));
1221 * OK, past this point, all the error checking has been done.
1222 * At this point, we start making changes.....
1224 info
->flags
= ((info
->flags
& ~ASYNC_FLAGS
) |
1225 (new_serial
.flags
& ASYNC_FLAGS
));
1226 info
->close_delay
= new_serial
.close_delay
* HZ
/ 100;
1227 info
->closing_wait
= new_serial
.closing_wait
* HZ
/ 100;
1228 info
->tty
->low_latency
=
1229 (info
->flags
& ASYNC_LOW_LATENCY
) ? 1 : 0;
1230 info
->tty
->low_latency
= 0;
1233 info
->type
= new_serial
.type
;
1235 process_txrx_fifo(info
);
1237 if (info
->flags
& ASYNC_INITIALIZED
) {
1238 if (flags
!= (info
->flags
& ASYNC_SPD_MASK
)) {
1239 spin_lock_irqsave(&info
->slock
, sl_flags
);
1240 mxser_change_speed(info
, NULL
);
1241 spin_unlock_irqrestore(&info
->slock
, sl_flags
);
1244 retval
= mxser_startup(info
);
1250 * mxser_get_lsr_info - get line status register info
1252 * Purpose: Let user call ioctl() to get info when the UART physically
1253 * is emptied. On bus types like RS485, the transmitter must
1254 * release the bus after transmitting. This must be done when
1255 * the transmit shift register is empty, not be done when the
1256 * transmit holding register is empty. This functionality
1257 * allows an RS485 driver to be written in user space.
1259 static int mxser_get_lsr_info(struct mxser_port
*info
,
1260 unsigned int __user
*value
)
1262 unsigned char status
;
1263 unsigned int result
;
1264 unsigned long flags
;
1266 spin_lock_irqsave(&info
->slock
, flags
);
1267 status
= inb(info
->ioaddr
+ UART_LSR
);
1268 spin_unlock_irqrestore(&info
->slock
, flags
);
1269 result
= ((status
& UART_LSR_TEMT
) ? TIOCSER_TEMT
: 0);
1270 return put_user(result
, value
);
1274 * This routine sends a break character out the serial port.
1276 static void mxser_send_break(struct mxser_port
*info
, int duration
)
1278 unsigned long flags
;
1282 set_current_state(TASK_INTERRUPTIBLE
);
1283 spin_lock_irqsave(&info
->slock
, flags
);
1284 outb(inb(info
->ioaddr
+ UART_LCR
) | UART_LCR_SBC
,
1285 info
->ioaddr
+ UART_LCR
);
1286 spin_unlock_irqrestore(&info
->slock
, flags
);
1287 schedule_timeout(duration
);
1288 spin_lock_irqsave(&info
->slock
, flags
);
1289 outb(inb(info
->ioaddr
+ UART_LCR
) & ~UART_LCR_SBC
,
1290 info
->ioaddr
+ UART_LCR
);
1291 spin_unlock_irqrestore(&info
->slock
, flags
);
1294 static int mxser_tiocmget(struct tty_struct
*tty
, struct file
*file
)
1296 struct mxser_port
*info
= tty
->driver_data
;
1297 unsigned char control
, status
;
1298 unsigned long flags
;
1301 if (tty
->index
== MXSER_PORTS
)
1302 return -ENOIOCTLCMD
;
1303 if (test_bit(TTY_IO_ERROR
, &tty
->flags
))
1306 control
= info
->MCR
;
1308 spin_lock_irqsave(&info
->slock
, flags
);
1309 status
= inb(info
->ioaddr
+ UART_MSR
);
1310 if (status
& UART_MSR_ANY_DELTA
)
1311 mxser_check_modem_status(info
, status
);
1312 spin_unlock_irqrestore(&info
->slock
, flags
);
1313 return ((control
& UART_MCR_RTS
) ? TIOCM_RTS
: 0) |
1314 ((control
& UART_MCR_DTR
) ? TIOCM_DTR
: 0) |
1315 ((status
& UART_MSR_DCD
) ? TIOCM_CAR
: 0) |
1316 ((status
& UART_MSR_RI
) ? TIOCM_RNG
: 0) |
1317 ((status
& UART_MSR_DSR
) ? TIOCM_DSR
: 0) |
1318 ((status
& UART_MSR_CTS
) ? TIOCM_CTS
: 0);
1321 static int mxser_tiocmset(struct tty_struct
*tty
, struct file
*file
,
1322 unsigned int set
, unsigned int clear
)
1324 struct mxser_port
*info
= tty
->driver_data
;
1325 unsigned long flags
;
1328 if (tty
->index
== MXSER_PORTS
)
1329 return -ENOIOCTLCMD
;
1330 if (test_bit(TTY_IO_ERROR
, &tty
->flags
))
1333 spin_lock_irqsave(&info
->slock
, flags
);
1335 if (set
& TIOCM_RTS
)
1336 info
->MCR
|= UART_MCR_RTS
;
1337 if (set
& TIOCM_DTR
)
1338 info
->MCR
|= UART_MCR_DTR
;
1340 if (clear
& TIOCM_RTS
)
1341 info
->MCR
&= ~UART_MCR_RTS
;
1342 if (clear
& TIOCM_DTR
)
1343 info
->MCR
&= ~UART_MCR_DTR
;
1345 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
1346 spin_unlock_irqrestore(&info
->slock
, flags
);
1350 static int __init
mxser_program_mode(int port
)
1362 id
= inb(port
+ 1) & 0x1F;
1363 if ((id
!= C168_ASIC_ID
) &&
1364 (id
!= C104_ASIC_ID
) &&
1365 (id
!= C102_ASIC_ID
) &&
1366 (id
!= CI132_ASIC_ID
) &&
1367 (id
!= CI134_ASIC_ID
) &&
1368 (id
!= CI104J_ASIC_ID
))
1370 for (i
= 0, j
= 0; i
< 4; i
++) {
1374 } else if ((j
== 1) && (n
== 1)) {
1385 static void __init
mxser_normal_mode(int port
)
1389 outb(0xA5, port
+ 1);
1390 outb(0x80, port
+ 3);
1391 outb(12, port
+ 0); /* 9600 bps */
1393 outb(0x03, port
+ 3); /* 8 data bits */
1394 outb(0x13, port
+ 4); /* loop back mode */
1395 for (i
= 0; i
< 16; i
++) {
1397 if ((n
& 0x61) == 0x60)
1402 outb(0x00, port
+ 4);
1405 #define CHIP_SK 0x01 /* Serial Data Clock in Eprom */
1406 #define CHIP_DO 0x02 /* Serial Data Output in Eprom */
1407 #define CHIP_CS 0x04 /* Serial Chip Select in Eprom */
1408 #define CHIP_DI 0x08 /* Serial Data Input in Eprom */
1409 #define EN_CCMD 0x000 /* Chip's command register */
1410 #define EN0_RSARLO 0x008 /* Remote start address reg 0 */
1411 #define EN0_RSARHI 0x009 /* Remote start address reg 1 */
1412 #define EN0_RCNTLO 0x00A /* Remote byte count reg WR */
1413 #define EN0_RCNTHI 0x00B /* Remote byte count reg WR */
1414 #define EN0_DCFG 0x00E /* Data configuration reg WR */
1415 #define EN0_PORT 0x010 /* Rcv missed frame error counter RD */
1416 #define ENC_PAGE0 0x000 /* Select page 0 of chip registers */
1417 #define ENC_PAGE3 0x0C0 /* Select page 3 of chip registers */
1418 static int __init
mxser_read_register(int port
, unsigned short *regs
)
1420 int i
, k
, value
, id
;
1423 id
= mxser_program_mode(port
);
1426 for (i
= 0; i
< 14; i
++) {
1427 k
= (i
& 0x3F) | 0x180;
1428 for (j
= 0x100; j
> 0; j
>>= 1) {
1429 outb(CHIP_CS
, port
);
1431 outb(CHIP_CS
| CHIP_DO
, port
);
1432 outb(CHIP_CS
| CHIP_DO
| CHIP_SK
, port
); /* A? bit of read */
1434 outb(CHIP_CS
, port
);
1435 outb(CHIP_CS
| CHIP_SK
, port
); /* A? bit of read */
1440 for (k
= 0, j
= 0x8000; k
< 16; k
++, j
>>= 1) {
1441 outb(CHIP_CS
, port
);
1442 outb(CHIP_CS
| CHIP_SK
, port
);
1443 if (inb(port
) & CHIP_DI
)
1449 mxser_normal_mode(port
);
1453 static int mxser_ioctl_special(unsigned int cmd
, void __user
*argp
)
1455 struct mxser_port
*port
;
1461 /* if (copy_to_user(argp, mxsercfg,
1462 sizeof(struct mxser_hwconf) * 4))
1466 case MOXA_GET_MAJOR
:
1467 if (copy_to_user(argp
, &ttymajor
, sizeof(int)))
1471 case MOXA_GET_CUMAJOR
:
1472 if (copy_to_user(argp
, &calloutmajor
, sizeof(int)))
1476 case MOXA_CHKPORTENABLE
:
1479 for (i
= 0; i
< MXSER_BOARDS
; i
++)
1480 for (j
= 0; j
< MXSER_PORTS_PER_BOARD
; j
++)
1481 if (mxser_boards
[i
].ports
[j
].ioaddr
)
1484 return put_user(result
, (unsigned long __user
*)argp
);
1485 case MOXA_GETDATACOUNT
:
1486 if (copy_to_user(argp
, &mxvar_log
, sizeof(mxvar_log
)))
1489 case MOXA_GETMSTATUS
:
1490 for (i
= 0; i
< MXSER_BOARDS
; i
++)
1491 for (j
= 0; j
< MXSER_PORTS_PER_BOARD
; j
++) {
1492 port
= &mxser_boards
[i
].ports
[j
];
1495 if (!port
->ioaddr
) {
1496 GMStatus
[i
].dcd
= 0;
1497 GMStatus
[i
].dsr
= 0;
1498 GMStatus
[i
].cts
= 0;
1502 if (!port
->tty
|| !port
->tty
->termios
)
1504 port
->normal_termios
.c_cflag
;
1507 port
->tty
->termios
->c_cflag
;
1509 status
= inb(port
->ioaddr
+ UART_MSR
);
1510 if (status
& 0x80 /*UART_MSR_DCD */ )
1511 GMStatus
[i
].dcd
= 1;
1513 GMStatus
[i
].dcd
= 0;
1515 if (status
& 0x20 /*UART_MSR_DSR */ )
1516 GMStatus
[i
].dsr
= 1;
1518 GMStatus
[i
].dsr
= 0;
1521 if (status
& 0x10 /*UART_MSR_CTS */ )
1522 GMStatus
[i
].cts
= 1;
1524 GMStatus
[i
].cts
= 0;
1526 if (copy_to_user(argp
, GMStatus
,
1527 sizeof(struct mxser_mstatus
) * MXSER_PORTS
))
1530 case MOXA_ASPP_MON_EXT
: {
1532 unsigned long opmode
;
1533 unsigned cflag
, iflag
;
1535 for (i
= 0; i
< MXSER_BOARDS
; i
++)
1536 for (j
= 0; j
< MXSER_PORTS_PER_BOARD
; j
++) {
1537 port
= &mxser_boards
[i
].ports
[j
];
1541 status
= mxser_get_msr(port
->ioaddr
, 0, i
);
1543 if (status
& UART_MSR_TERI
)
1545 if (status
& UART_MSR_DDSR
)
1547 if (status
& UART_MSR_DDCD
)
1549 if (status
& UART_MSR_DCTS
)
1552 port
->mon_data
.modem_status
= status
;
1553 mon_data_ext
.rx_cnt
[i
] = port
->mon_data
.rxcnt
;
1554 mon_data_ext
.tx_cnt
[i
] = port
->mon_data
.txcnt
;
1555 mon_data_ext
.up_rxcnt
[i
] =
1556 port
->mon_data
.up_rxcnt
;
1557 mon_data_ext
.up_txcnt
[i
] =
1558 port
->mon_data
.up_txcnt
;
1559 mon_data_ext
.modem_status
[i
] =
1560 port
->mon_data
.modem_status
;
1561 mon_data_ext
.baudrate
[i
] =
1562 tty_get_baud_rate(port
->tty
);
1564 if (!port
->tty
|| !port
->tty
->termios
) {
1565 cflag
= port
->normal_termios
.c_cflag
;
1566 iflag
= port
->normal_termios
.c_iflag
;
1568 cflag
= port
->tty
->termios
->c_cflag
;
1569 iflag
= port
->tty
->termios
->c_iflag
;
1572 mon_data_ext
.databits
[i
] = cflag
& CSIZE
;
1574 mon_data_ext
.stopbits
[i
] = cflag
& CSTOPB
;
1576 mon_data_ext
.parity
[i
] =
1577 cflag
& (PARENB
| PARODD
| CMSPAR
);
1579 mon_data_ext
.flowctrl
[i
] = 0x00;
1581 if (cflag
& CRTSCTS
)
1582 mon_data_ext
.flowctrl
[i
] |= 0x03;
1584 if (iflag
& (IXON
| IXOFF
))
1585 mon_data_ext
.flowctrl
[i
] |= 0x0C;
1587 if (port
->type
== PORT_16550A
)
1588 mon_data_ext
.fifo
[i
] = 1;
1590 mon_data_ext
.fifo
[i
] = 0;
1594 opmode
= inb(port
->opmode_ioaddr
) >> shiftbit
;
1595 opmode
&= OP_MODE_MASK
;
1597 mon_data_ext
.iftype
[i
] = opmode
;
1600 if (copy_to_user(argp
, &mon_data_ext
,
1601 sizeof(mon_data_ext
)))
1607 return -ENOIOCTLCMD
;
1612 static int mxser_ioctl(struct tty_struct
*tty
, struct file
*file
,
1613 unsigned int cmd
, unsigned long arg
)
1615 struct mxser_port
*info
= tty
->driver_data
;
1616 struct async_icount cprev
, cnow
; /* kernel counter temps */
1617 struct serial_icounter_struct __user
*p_cuser
;
1618 unsigned long templ
;
1619 unsigned long flags
;
1620 void __user
*argp
= (void __user
*)arg
;
1623 if (tty
->index
== MXSER_PORTS
)
1624 return mxser_ioctl_special(cmd
, argp
);
1626 if (cmd
== MOXA_SET_OP_MODE
|| cmd
== MOXA_GET_OP_MODE
) {
1628 unsigned long opmode
;
1629 static unsigned char ModeMask
[] = { 0xfc, 0xf3, 0xcf, 0x3f };
1631 unsigned char val
, mask
;
1634 if (cmd
== MOXA_SET_OP_MODE
) {
1635 if (get_user(opmode
, (int __user
*) argp
))
1637 if (opmode
!= RS232_MODE
&&
1638 opmode
!= RS485_2WIRE_MODE
&&
1639 opmode
!= RS422_MODE
&&
1640 opmode
!= RS485_4WIRE_MODE
)
1644 val
= inb(info
->opmode_ioaddr
);
1646 val
|= (opmode
<< shiftbit
);
1647 outb(val
, info
->opmode_ioaddr
);
1650 opmode
= inb(info
->opmode_ioaddr
) >> shiftbit
;
1651 opmode
&= OP_MODE_MASK
;
1652 if (copy_to_user(argp
, &opmode
, sizeof(int)))
1658 if (cmd
!= TIOCGSERIAL
&& cmd
!= TIOCMIWAIT
&& cmd
!= TIOCGICOUNT
&&
1659 test_bit(TTY_IO_ERROR
, &tty
->flags
))
1663 case TCSBRK
: /* SVID version: non-zero arg --> no break */
1664 retval
= tty_check_change(tty
);
1667 tty_wait_until_sent(tty
, 0);
1669 mxser_send_break(info
, HZ
/ 4); /* 1/4 second */
1671 case TCSBRKP
: /* support for POSIX tcsendbreak() */
1672 retval
= tty_check_change(tty
);
1675 tty_wait_until_sent(tty
, 0);
1676 mxser_send_break(info
, arg
? arg
* (HZ
/ 10) : HZ
/ 4);
1679 return put_user(C_CLOCAL(tty
) ? 1 : 0, (unsigned long __user
*)argp
);
1681 if (get_user(templ
, (unsigned long __user
*) argp
))
1684 tty
->termios
->c_cflag
= ((tty
->termios
->c_cflag
& ~CLOCAL
) | (arg
? CLOCAL
: 0));
1687 return mxser_get_serial_info(info
, argp
);
1689 return mxser_set_serial_info(info
, argp
);
1690 case TIOCSERGETLSR
: /* Get line status register */
1691 return mxser_get_lsr_info(info
, argp
);
1693 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1694 * - mask passed in arg for lines of interest
1695 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1696 * Caller should use TIOCGICOUNT to see which one it was
1699 spin_lock_irqsave(&info
->slock
, flags
);
1700 cnow
= info
->icount
; /* note the counters on entry */
1701 spin_unlock_irqrestore(&info
->slock
, flags
);
1703 wait_event_interruptible(info
->delta_msr_wait
, ({
1705 spin_lock_irqsave(&info
->slock
, flags
);
1706 cnow
= info
->icount
; /* atomic copy */
1707 spin_unlock_irqrestore(&info
->slock
, flags
);
1709 ((arg
& TIOCM_RNG
) && (cnow
.rng
!= cprev
.rng
)) ||
1710 ((arg
& TIOCM_DSR
) && (cnow
.dsr
!= cprev
.dsr
)) ||
1711 ((arg
& TIOCM_CD
) && (cnow
.dcd
!= cprev
.dcd
)) ||
1712 ((arg
& TIOCM_CTS
) && (cnow
.cts
!= cprev
.cts
));
1716 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1717 * Return: write counters to the user passed counter struct
1718 * NB: both 1->0 and 0->1 transitions are counted except for
1719 * RI where only 0->1 is counted.
1722 spin_lock_irqsave(&info
->slock
, flags
);
1723 cnow
= info
->icount
;
1724 spin_unlock_irqrestore(&info
->slock
, flags
);
1726 if (put_user(cnow
.frame
, &p_cuser
->frame
))
1728 if (put_user(cnow
.brk
, &p_cuser
->brk
))
1730 if (put_user(cnow
.overrun
, &p_cuser
->overrun
))
1732 if (put_user(cnow
.buf_overrun
, &p_cuser
->buf_overrun
))
1734 if (put_user(cnow
.parity
, &p_cuser
->parity
))
1736 if (put_user(cnow
.rx
, &p_cuser
->rx
))
1738 if (put_user(cnow
.tx
, &p_cuser
->tx
))
1740 put_user(cnow
.cts
, &p_cuser
->cts
);
1741 put_user(cnow
.dsr
, &p_cuser
->dsr
);
1742 put_user(cnow
.rng
, &p_cuser
->rng
);
1743 put_user(cnow
.dcd
, &p_cuser
->dcd
);
1745 case MOXA_HighSpeedOn
:
1746 return put_user(info
->baud_base
!= 115200 ? 1 : 0, (int __user
*)argp
);
1747 case MOXA_SDS_RSTICOUNTER
:
1748 info
->mon_data
.rxcnt
= 0;
1749 info
->mon_data
.txcnt
= 0;
1752 case MOXA_ASPP_OQUEUE
:{
1755 len
= mxser_chars_in_buffer(tty
);
1757 lsr
= inb(info
->ioaddr
+ UART_LSR
) & UART_LSR_TEMT
;
1759 len
+= (lsr
? 0 : 1);
1761 if (copy_to_user(argp
, &len
, sizeof(int)))
1766 case MOXA_ASPP_MON
: {
1769 status
= mxser_get_msr(info
->ioaddr
, 1, tty
->index
);
1770 mxser_check_modem_status(info
, status
);
1772 mcr
= inb(info
->ioaddr
+ UART_MCR
);
1773 if (mcr
& MOXA_MUST_MCR_XON_FLAG
)
1774 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_XOFFHOLD
;
1776 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_XOFFHOLD
;
1778 if (mcr
& MOXA_MUST_MCR_TX_XON
)
1779 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_XOFFXENT
;
1781 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_XOFFXENT
;
1783 if (info
->tty
->hw_stopped
)
1784 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_CTSHOLD
;
1786 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_CTSHOLD
;
1788 if (copy_to_user(argp
, &info
->mon_data
,
1789 sizeof(struct mxser_mon
)))
1794 case MOXA_ASPP_LSTATUS
: {
1795 if (copy_to_user(argp
, &info
->err_shadow
,
1796 sizeof(unsigned char)))
1799 info
->err_shadow
= 0;
1802 case MOXA_SET_BAUD_METHOD
: {
1805 if (get_user(method
, (int __user
*)argp
))
1807 mxser_set_baud_method
[tty
->index
] = method
;
1808 if (copy_to_user(argp
, &method
, sizeof(int)))
1814 return -ENOIOCTLCMD
;
1819 static void mxser_stoprx(struct tty_struct
*tty
)
1821 struct mxser_port
*info
= tty
->driver_data
;
1823 info
->ldisc_stop_rx
= 1;
1825 if (info
->board
->chip_flag
) {
1826 info
->IER
&= ~MOXA_MUST_RECV_ISR
;
1827 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1829 info
->x_char
= STOP_CHAR(tty
);
1830 outb(0, info
->ioaddr
+ UART_IER
);
1831 info
->IER
|= UART_IER_THRI
;
1832 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1836 if (info
->tty
->termios
->c_cflag
& CRTSCTS
) {
1837 info
->MCR
&= ~UART_MCR_RTS
;
1838 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
1843 * This routine is called by the upper-layer tty layer to signal that
1844 * incoming characters should be throttled.
1846 static void mxser_throttle(struct tty_struct
*tty
)
1851 static void mxser_unthrottle(struct tty_struct
*tty
)
1853 struct mxser_port
*info
= tty
->driver_data
;
1856 info
->ldisc_stop_rx
= 0;
1861 if (info
->board
->chip_flag
) {
1862 info
->IER
|= MOXA_MUST_RECV_ISR
;
1863 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1865 info
->x_char
= START_CHAR(tty
);
1866 outb(0, info
->ioaddr
+ UART_IER
);
1867 info
->IER
|= UART_IER_THRI
;
1868 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1873 if (info
->tty
->termios
->c_cflag
& CRTSCTS
) {
1874 info
->MCR
|= UART_MCR_RTS
;
1875 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
1880 * mxser_stop() and mxser_start()
1882 * This routines are called before setting or resetting tty->stopped.
1883 * They enable or disable transmitter interrupts, as necessary.
1885 static void mxser_stop(struct tty_struct
*tty
)
1887 struct mxser_port
*info
= tty
->driver_data
;
1888 unsigned long flags
;
1890 spin_lock_irqsave(&info
->slock
, flags
);
1891 if (info
->IER
& UART_IER_THRI
) {
1892 info
->IER
&= ~UART_IER_THRI
;
1893 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1895 spin_unlock_irqrestore(&info
->slock
, flags
);
1898 static void mxser_start(struct tty_struct
*tty
)
1900 struct mxser_port
*info
= tty
->driver_data
;
1901 unsigned long flags
;
1903 spin_lock_irqsave(&info
->slock
, flags
);
1904 if (info
->xmit_cnt
&& info
->xmit_buf
) {
1905 outb(info
->IER
& ~UART_IER_THRI
, info
->ioaddr
+ UART_IER
);
1906 info
->IER
|= UART_IER_THRI
;
1907 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1909 spin_unlock_irqrestore(&info
->slock
, flags
);
1912 static void mxser_set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
)
1914 struct mxser_port
*info
= tty
->driver_data
;
1915 unsigned long flags
;
1917 spin_lock_irqsave(&info
->slock
, flags
);
1918 mxser_change_speed(info
, old_termios
);
1919 spin_unlock_irqrestore(&info
->slock
, flags
);
1921 if ((old_termios
->c_cflag
& CRTSCTS
) &&
1922 !(tty
->termios
->c_cflag
& CRTSCTS
)) {
1923 tty
->hw_stopped
= 0;
1927 /* Handle sw stopped */
1928 if ((old_termios
->c_iflag
& IXON
) &&
1929 !(tty
->termios
->c_iflag
& IXON
)) {
1932 if (info
->board
->chip_flag
) {
1933 spin_lock_irqsave(&info
->slock
, flags
);
1934 DISABLE_MOXA_MUST_RX_SOFTWARE_FLOW_CONTROL(info
->ioaddr
);
1935 spin_unlock_irqrestore(&info
->slock
, flags
);
1943 * mxser_wait_until_sent() --- wait until the transmitter is empty
1945 static void mxser_wait_until_sent(struct tty_struct
*tty
, int timeout
)
1947 struct mxser_port
*info
= tty
->driver_data
;
1948 unsigned long orig_jiffies
, char_time
;
1951 if (info
->type
== PORT_UNKNOWN
)
1954 if (info
->xmit_fifo_size
== 0)
1955 return; /* Just in case.... */
1957 orig_jiffies
= jiffies
;
1959 * Set the check interval to be 1/5 of the estimated time to
1960 * send a single character, and make it at least 1. The check
1961 * interval should also be less than the timeout.
1963 * Note: we have to use pretty tight timings here to satisfy
1966 char_time
= (info
->timeout
- HZ
/ 50) / info
->xmit_fifo_size
;
1967 char_time
= char_time
/ 5;
1970 if (timeout
&& timeout
< char_time
)
1971 char_time
= timeout
;
1973 * If the transmitter hasn't cleared in twice the approximate
1974 * amount of time to send the entire FIFO, it probably won't
1975 * ever clear. This assumes the UART isn't doing flow
1976 * control, which is currently the case. Hence, if it ever
1977 * takes longer than info->timeout, this is probably due to a
1978 * UART bug of some kind. So, we clamp the timeout parameter at
1981 if (!timeout
|| timeout
> 2 * info
->timeout
)
1982 timeout
= 2 * info
->timeout
;
1983 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1984 printk(KERN_DEBUG
"In rs_wait_until_sent(%d) check=%lu...",
1985 timeout
, char_time
);
1986 printk("jiff=%lu...", jiffies
);
1988 while (!((lsr
= inb(info
->ioaddr
+ UART_LSR
)) & UART_LSR_TEMT
)) {
1989 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1990 printk("lsr = %d (jiff=%lu)...", lsr
, jiffies
);
1992 schedule_timeout_interruptible(char_time
);
1993 if (signal_pending(current
))
1995 if (timeout
&& time_after(jiffies
, orig_jiffies
+ timeout
))
1998 set_current_state(TASK_RUNNING
);
2000 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2001 printk("lsr = %d (jiff=%lu)...done\n", lsr
, jiffies
);
2006 * This routine is called by tty_hangup() when a hangup is signaled.
2008 static void mxser_hangup(struct tty_struct
*tty
)
2010 struct mxser_port
*info
= tty
->driver_data
;
2012 mxser_flush_buffer(tty
);
2013 mxser_shutdown(info
);
2016 info
->flags
&= ~ASYNC_NORMAL_ACTIVE
;
2018 wake_up_interruptible(&info
->open_wait
);
2022 * mxser_rs_break() --- routine which turns the break handling on or off
2024 static void mxser_rs_break(struct tty_struct
*tty
, int break_state
)
2026 struct mxser_port
*info
= tty
->driver_data
;
2027 unsigned long flags
;
2029 spin_lock_irqsave(&info
->slock
, flags
);
2030 if (break_state
== -1)
2031 outb(inb(info
->ioaddr
+ UART_LCR
) | UART_LCR_SBC
,
2032 info
->ioaddr
+ UART_LCR
);
2034 outb(inb(info
->ioaddr
+ UART_LCR
) & ~UART_LCR_SBC
,
2035 info
->ioaddr
+ UART_LCR
);
2036 spin_unlock_irqrestore(&info
->slock
, flags
);
2039 static void mxser_receive_chars(struct mxser_port
*port
, int *status
)
2041 struct tty_struct
*tty
= port
->tty
;
2042 unsigned char ch
, gdl
;
2048 recv_room
= tty
->receive_room
;
2049 if ((recv_room
== 0) && (!port
->ldisc_stop_rx
))
2052 if (port
->board
->chip_flag
!= MOXA_OTHER_UART
) {
2054 if (*status
& UART_LSR_SPECIAL
)
2056 if (port
->board
->chip_flag
== MOXA_MUST_MU860_HWID
&&
2057 (*status
& MOXA_MUST_LSR_RERR
))
2059 if (*status
& MOXA_MUST_LSR_RERR
)
2062 gdl
= inb(port
->ioaddr
+ MOXA_MUST_GDL_REGISTER
);
2064 if (port
->board
->chip_flag
== MOXA_MUST_MU150_HWID
)
2065 gdl
&= MOXA_MUST_GDL_MASK
;
2066 if (gdl
>= recv_room
) {
2067 if (!port
->ldisc_stop_rx
)
2071 ch
= inb(port
->ioaddr
+ UART_RX
);
2072 tty_insert_flip_char(tty
, ch
, 0);
2083 ch
= inb(port
->ioaddr
+ UART_RX
);
2084 if (port
->board
->chip_flag
&& (*status
& UART_LSR_OE
))
2085 outb(0x23, port
->ioaddr
+ UART_FCR
);
2086 *status
&= port
->read_status_mask
;
2087 if (*status
& port
->ignore_status_mask
) {
2088 if (++ignored
> 100)
2092 if (*status
& UART_LSR_SPECIAL
) {
2093 if (*status
& UART_LSR_BI
) {
2097 if (port
->flags
& ASYNC_SAK
)
2099 } else if (*status
& UART_LSR_PE
) {
2101 port
->icount
.parity
++;
2102 } else if (*status
& UART_LSR_FE
) {
2104 port
->icount
.frame
++;
2105 } else if (*status
& UART_LSR_OE
) {
2107 port
->icount
.overrun
++;
2111 tty_insert_flip_char(tty
, ch
, flag
);
2113 if (cnt
>= recv_room
) {
2114 if (!port
->ldisc_stop_rx
)
2121 if (port
->board
->chip_flag
)
2124 *status
= inb(port
->ioaddr
+ UART_LSR
);
2125 } while (*status
& UART_LSR_DR
);
2128 mxvar_log
.rxcnt
[port
->tty
->index
] += cnt
;
2129 port
->mon_data
.rxcnt
+= cnt
;
2130 port
->mon_data
.up_rxcnt
+= cnt
;
2133 * We are called from an interrupt context with &port->slock
2134 * being held. Drop it temporarily in order to prevent
2135 * recursive locking.
2137 spin_unlock(&port
->slock
);
2138 tty_flip_buffer_push(tty
);
2139 spin_lock(&port
->slock
);
2142 static void mxser_transmit_chars(struct mxser_port
*port
)
2147 outb(port
->x_char
, port
->ioaddr
+ UART_TX
);
2149 mxvar_log
.txcnt
[port
->tty
->index
]++;
2150 port
->mon_data
.txcnt
++;
2151 port
->mon_data
.up_txcnt
++;
2156 if (port
->xmit_buf
== NULL
)
2159 if ((port
->xmit_cnt
<= 0) || port
->tty
->stopped
||
2160 (port
->tty
->hw_stopped
&&
2161 (port
->type
!= PORT_16550A
) &&
2162 (!port
->board
->chip_flag
))) {
2163 port
->IER
&= ~UART_IER_THRI
;
2164 outb(port
->IER
, port
->ioaddr
+ UART_IER
);
2168 cnt
= port
->xmit_cnt
;
2169 count
= port
->xmit_fifo_size
;
2171 outb(port
->xmit_buf
[port
->xmit_tail
++],
2172 port
->ioaddr
+ UART_TX
);
2173 port
->xmit_tail
= port
->xmit_tail
& (SERIAL_XMIT_SIZE
- 1);
2174 if (--port
->xmit_cnt
<= 0)
2176 } while (--count
> 0);
2177 mxvar_log
.txcnt
[port
->tty
->index
] += (cnt
- port
->xmit_cnt
);
2179 port
->mon_data
.txcnt
+= (cnt
- port
->xmit_cnt
);
2180 port
->mon_data
.up_txcnt
+= (cnt
- port
->xmit_cnt
);
2181 port
->icount
.tx
+= (cnt
- port
->xmit_cnt
);
2183 if (port
->xmit_cnt
< WAKEUP_CHARS
)
2184 tty_wakeup(port
->tty
);
2186 if (port
->xmit_cnt
<= 0) {
2187 port
->IER
&= ~UART_IER_THRI
;
2188 outb(port
->IER
, port
->ioaddr
+ UART_IER
);
2193 * This is the serial driver's generic interrupt routine
2195 static irqreturn_t
mxser_interrupt(int irq
, void *dev_id
)
2198 struct mxser_board
*brd
= NULL
;
2199 struct mxser_port
*port
;
2200 int max
, irqbits
, bits
, msr
;
2201 unsigned int int_cnt
, pass_counter
= 0;
2202 int handled
= IRQ_NONE
;
2204 for (i
= 0; i
< MXSER_BOARDS
; i
++)
2205 if (dev_id
== &mxser_boards
[i
]) {
2210 if (i
== MXSER_BOARDS
)
2214 max
= brd
->info
->nports
;
2215 while (pass_counter
++ < MXSER_ISR_PASS_LIMIT
) {
2216 irqbits
= inb(brd
->vector
) & brd
->vector_mask
;
2217 if (irqbits
== brd
->vector_mask
)
2220 handled
= IRQ_HANDLED
;
2221 for (i
= 0, bits
= 1; i
< max
; i
++, irqbits
|= bits
, bits
<<= 1) {
2222 if (irqbits
== brd
->vector_mask
)
2226 port
= &brd
->ports
[i
];
2229 spin_lock(&port
->slock
);
2231 iir
= inb(port
->ioaddr
+ UART_IIR
);
2232 if (iir
& UART_IIR_NO_INT
)
2234 iir
&= MOXA_MUST_IIR_MASK
;
2236 (port
->flags
& ASYNC_CLOSING
) ||
2238 ASYNC_INITIALIZED
)) {
2239 status
= inb(port
->ioaddr
+ UART_LSR
);
2240 outb(0x27, port
->ioaddr
+ UART_FCR
);
2241 inb(port
->ioaddr
+ UART_MSR
);
2245 status
= inb(port
->ioaddr
+ UART_LSR
);
2247 if (status
& UART_LSR_PE
)
2248 port
->err_shadow
|= NPPI_NOTIFY_PARITY
;
2249 if (status
& UART_LSR_FE
)
2250 port
->err_shadow
|= NPPI_NOTIFY_FRAMING
;
2251 if (status
& UART_LSR_OE
)
2253 NPPI_NOTIFY_HW_OVERRUN
;
2254 if (status
& UART_LSR_BI
)
2255 port
->err_shadow
|= NPPI_NOTIFY_BREAK
;
2257 if (port
->board
->chip_flag
) {
2258 if (iir
== MOXA_MUST_IIR_GDA
||
2259 iir
== MOXA_MUST_IIR_RDA
||
2260 iir
== MOXA_MUST_IIR_RTO
||
2261 iir
== MOXA_MUST_IIR_LSR
)
2262 mxser_receive_chars(port
,
2266 status
&= port
->read_status_mask
;
2267 if (status
& UART_LSR_DR
)
2268 mxser_receive_chars(port
,
2271 msr
= inb(port
->ioaddr
+ UART_MSR
);
2272 if (msr
& UART_MSR_ANY_DELTA
)
2273 mxser_check_modem_status(port
, msr
);
2275 if (port
->board
->chip_flag
) {
2276 if (iir
== 0x02 && (status
&
2278 mxser_transmit_chars(port
);
2280 if (status
& UART_LSR_THRE
)
2281 mxser_transmit_chars(port
);
2283 } while (int_cnt
++ < MXSER_ISR_PASS_LIMIT
);
2284 spin_unlock(&port
->slock
);
2292 static const struct tty_operations mxser_ops
= {
2294 .close
= mxser_close
,
2295 .write
= mxser_write
,
2296 .put_char
= mxser_put_char
,
2297 .flush_chars
= mxser_flush_chars
,
2298 .write_room
= mxser_write_room
,
2299 .chars_in_buffer
= mxser_chars_in_buffer
,
2300 .flush_buffer
= mxser_flush_buffer
,
2301 .ioctl
= mxser_ioctl
,
2302 .throttle
= mxser_throttle
,
2303 .unthrottle
= mxser_unthrottle
,
2304 .set_termios
= mxser_set_termios
,
2306 .start
= mxser_start
,
2307 .hangup
= mxser_hangup
,
2308 .break_ctl
= mxser_rs_break
,
2309 .wait_until_sent
= mxser_wait_until_sent
,
2310 .tiocmget
= mxser_tiocmget
,
2311 .tiocmset
= mxser_tiocmset
,
2315 * The MOXA Smartio/Industio serial driver boot-time initialization code!
2318 static void mxser_release_res(struct mxser_board
*brd
, struct pci_dev
*pdev
,
2322 free_irq(brd
->irq
, brd
);
2323 if (pdev
!= NULL
) { /* PCI */
2325 pci_release_region(pdev
, 2);
2326 pci_release_region(pdev
, 3);
2329 release_region(brd
->ports
[0].ioaddr
, 8 * brd
->info
->nports
);
2330 release_region(brd
->vector
, 1);
2334 static int __devinit
mxser_initbrd(struct mxser_board
*brd
,
2335 struct pci_dev
*pdev
)
2337 struct mxser_port
*info
;
2341 printk(KERN_INFO
"max. baud rate = %d bps.\n", brd
->ports
[0].max_baud
);
2343 for (i
= 0; i
< brd
->info
->nports
; i
++) {
2344 info
= &brd
->ports
[i
];
2347 info
->ldisc_stop_rx
= 0;
2349 /* Enhance mode enabled here */
2350 if (brd
->chip_flag
!= MOXA_OTHER_UART
)
2351 ENABLE_MOXA_MUST_ENCHANCE_MODE(info
->ioaddr
);
2353 info
->flags
= ASYNC_SHARE_IRQ
;
2354 info
->type
= brd
->uart_type
;
2356 process_txrx_fifo(info
);
2358 info
->custom_divisor
= info
->baud_base
* 16;
2359 info
->close_delay
= 5 * HZ
/ 10;
2360 info
->closing_wait
= 30 * HZ
;
2361 info
->normal_termios
= mxvar_sdriver
->init_termios
;
2362 init_waitqueue_head(&info
->open_wait
);
2363 init_waitqueue_head(&info
->delta_msr_wait
);
2364 memset(&info
->mon_data
, 0, sizeof(struct mxser_mon
));
2365 info
->err_shadow
= 0;
2366 spin_lock_init(&info
->slock
);
2368 /* before set INT ISR, disable all int */
2369 outb(inb(info
->ioaddr
+ UART_IER
) & 0xf0,
2370 info
->ioaddr
+ UART_IER
);
2373 retval
= request_irq(brd
->irq
, mxser_interrupt
, IRQF_SHARED
, "mxser",
2376 printk(KERN_ERR
"Board %s: Request irq failed, IRQ (%d) may "
2377 "conflict with another device.\n",
2378 brd
->info
->name
, brd
->irq
);
2379 /* We hold resources, we need to release them. */
2380 mxser_release_res(brd
, pdev
, 0);
2385 static int __init
mxser_get_ISA_conf(int cap
, struct mxser_board
*brd
)
2388 unsigned short regs
[16], irq
;
2389 unsigned char scratch
, scratch2
;
2391 brd
->chip_flag
= MOXA_OTHER_UART
;
2393 id
= mxser_read_register(cap
, regs
);
2396 brd
->info
= &mxser_cards
[0];
2399 brd
->info
= &mxser_cards
[1];
2401 case CI104J_ASIC_ID
:
2402 brd
->info
= &mxser_cards
[2];
2405 brd
->info
= &mxser_cards
[5];
2408 brd
->info
= &mxser_cards
[6];
2411 brd
->info
= &mxser_cards
[7];
2418 /* some ISA cards have 2 ports, but we want to see them as 4-port (why?)
2419 Flag-hack checks if configuration should be read as 2-port here. */
2420 if (brd
->info
->nports
== 2 || (brd
->info
->flags
& MXSER_HAS2
)) {
2421 irq
= regs
[9] & 0xF000;
2422 irq
= irq
| (irq
>> 4);
2423 if (irq
!= (regs
[9] & 0xFF00))
2424 return MXSER_ERR_IRQ_CONFLIT
;
2425 } else if (brd
->info
->nports
== 4) {
2426 irq
= regs
[9] & 0xF000;
2427 irq
= irq
| (irq
>> 4);
2428 irq
= irq
| (irq
>> 8);
2430 return MXSER_ERR_IRQ_CONFLIT
;
2431 } else if (brd
->info
->nports
== 8) {
2432 irq
= regs
[9] & 0xF000;
2433 irq
= irq
| (irq
>> 4);
2434 irq
= irq
| (irq
>> 8);
2435 if ((irq
!= regs
[9]) || (irq
!= regs
[10]))
2436 return MXSER_ERR_IRQ_CONFLIT
;
2440 return MXSER_ERR_IRQ
;
2441 brd
->irq
= ((int)(irq
& 0xF000) >> 12);
2442 for (i
= 0; i
< 8; i
++)
2443 brd
->ports
[i
].ioaddr
= (int) regs
[i
+ 1] & 0xFFF8;
2444 if ((regs
[12] & 0x80) == 0)
2445 return MXSER_ERR_VECTOR
;
2446 brd
->vector
= (int)regs
[11]; /* interrupt vector */
2448 brd
->vector_mask
= 0x00FF;
2450 brd
->vector_mask
= 0x000F;
2451 for (i
= 7, bits
= 0x0100; i
>= 0; i
--, bits
<<= 1) {
2452 if (regs
[12] & bits
) {
2453 brd
->ports
[i
].baud_base
= 921600;
2454 brd
->ports
[i
].max_baud
= 921600;
2456 brd
->ports
[i
].baud_base
= 115200;
2457 brd
->ports
[i
].max_baud
= 115200;
2460 scratch2
= inb(cap
+ UART_LCR
) & (~UART_LCR_DLAB
);
2461 outb(scratch2
| UART_LCR_DLAB
, cap
+ UART_LCR
);
2462 outb(0, cap
+ UART_EFR
); /* EFR is the same as FCR */
2463 outb(scratch2
, cap
+ UART_LCR
);
2464 outb(UART_FCR_ENABLE_FIFO
, cap
+ UART_FCR
);
2465 scratch
= inb(cap
+ UART_IIR
);
2468 brd
->uart_type
= PORT_16550A
;
2470 brd
->uart_type
= PORT_16450
;
2471 if (!request_region(brd
->ports
[0].ioaddr
, 8 * brd
->info
->nports
,
2473 return MXSER_ERR_IOADDR
;
2474 if (!request_region(brd
->vector
, 1, "mxser(vector)")) {
2475 release_region(brd
->ports
[0].ioaddr
, 8 * brd
->info
->nports
);
2476 return MXSER_ERR_VECTOR
;
2478 return brd
->info
->nports
;
2481 static int __devinit
mxser_probe(struct pci_dev
*pdev
,
2482 const struct pci_device_id
*ent
)
2485 struct mxser_board
*brd
;
2487 unsigned long ioaddress
;
2488 int retval
= -EINVAL
;
2490 for (i
= 0; i
< MXSER_BOARDS
; i
++)
2491 if (mxser_boards
[i
].info
== NULL
)
2494 if (i
>= MXSER_BOARDS
) {
2495 printk(KERN_ERR
"Too many Smartio/Industio family boards found "
2496 "(maximum %d), board not configured\n", MXSER_BOARDS
);
2500 brd
= &mxser_boards
[i
];
2501 brd
->idx
= i
* MXSER_PORTS_PER_BOARD
;
2502 printk(KERN_INFO
"Found MOXA %s board (BusNo=%d, DevNo=%d)\n",
2503 mxser_cards
[ent
->driver_data
].name
,
2504 pdev
->bus
->number
, PCI_SLOT(pdev
->devfn
));
2506 retval
= pci_enable_device(pdev
);
2508 printk(KERN_ERR
"Moxa SmartI/O PCI enable fail !\n");
2513 ioaddress
= pci_resource_start(pdev
, 2);
2514 retval
= pci_request_region(pdev
, 2, "mxser(IO)");
2518 brd
->info
= &mxser_cards
[ent
->driver_data
];
2519 for (i
= 0; i
< brd
->info
->nports
; i
++)
2520 brd
->ports
[i
].ioaddr
= ioaddress
+ 8 * i
;
2523 ioaddress
= pci_resource_start(pdev
, 3);
2524 retval
= pci_request_region(pdev
, 3, "mxser(vector)");
2527 brd
->vector
= ioaddress
;
2530 brd
->irq
= pdev
->irq
;
2532 brd
->chip_flag
= CheckIsMoxaMust(brd
->ports
[0].ioaddr
);
2533 brd
->uart_type
= PORT_16550A
;
2534 brd
->vector_mask
= 0;
2536 for (i
= 0; i
< brd
->info
->nports
; i
++) {
2537 for (j
= 0; j
< UART_INFO_NUM
; j
++) {
2538 if (Gpci_uart_info
[j
].type
== brd
->chip_flag
) {
2539 brd
->ports
[i
].max_baud
=
2540 Gpci_uart_info
[j
].max_baud
;
2542 /* exception....CP-102 */
2543 if (brd
->info
->flags
& MXSER_HIGHBAUD
)
2544 brd
->ports
[i
].max_baud
= 921600;
2550 if (brd
->chip_flag
== MOXA_MUST_MU860_HWID
) {
2551 for (i
= 0; i
< brd
->info
->nports
; i
++) {
2553 brd
->ports
[i
].opmode_ioaddr
= ioaddress
+ 4;
2555 brd
->ports
[i
].opmode_ioaddr
= ioaddress
+ 0x0c;
2557 outb(0, ioaddress
+ 4); /* default set to RS232 mode */
2558 outb(0, ioaddress
+ 0x0c); /* default set to RS232 mode */
2561 for (i
= 0; i
< brd
->info
->nports
; i
++) {
2562 brd
->vector_mask
|= (1 << i
);
2563 brd
->ports
[i
].baud_base
= 921600;
2566 /* mxser_initbrd will hook ISR. */
2567 retval
= mxser_initbrd(brd
, pdev
);
2571 for (i
= 0; i
< brd
->info
->nports
; i
++)
2572 tty_register_device(mxvar_sdriver
, brd
->idx
+ i
, &pdev
->dev
);
2574 pci_set_drvdata(pdev
, brd
);
2578 pci_release_region(pdev
, 2);
2588 static void __devexit
mxser_remove(struct pci_dev
*pdev
)
2590 struct mxser_board
*brd
= pci_get_drvdata(pdev
);
2593 for (i
= 0; i
< brd
->info
->nports
; i
++)
2594 tty_unregister_device(mxvar_sdriver
, brd
->idx
+ i
);
2596 mxser_release_res(brd
, pdev
, 1);
2600 static struct pci_driver mxser_driver
= {
2602 .id_table
= mxser_pcibrds
,
2603 .probe
= mxser_probe
,
2604 .remove
= __devexit_p(mxser_remove
)
2607 static int __init
mxser_module_init(void)
2609 struct mxser_board
*brd
;
2611 unsigned int i
, m
, isaloop
;
2614 pr_debug("Loading module mxser ...\n");
2616 mxvar_sdriver
= alloc_tty_driver(MXSER_PORTS
+ 1);
2620 printk(KERN_INFO
"MOXA Smartio/Industio family driver version %s\n",
2623 /* Initialize the tty_driver structure */
2624 mxvar_sdriver
->owner
= THIS_MODULE
;
2625 mxvar_sdriver
->magic
= TTY_DRIVER_MAGIC
;
2626 mxvar_sdriver
->name
= "ttyMI";
2627 mxvar_sdriver
->major
= ttymajor
;
2628 mxvar_sdriver
->minor_start
= 0;
2629 mxvar_sdriver
->num
= MXSER_PORTS
+ 1;
2630 mxvar_sdriver
->type
= TTY_DRIVER_TYPE_SERIAL
;
2631 mxvar_sdriver
->subtype
= SERIAL_TYPE_NORMAL
;
2632 mxvar_sdriver
->init_termios
= tty_std_termios
;
2633 mxvar_sdriver
->init_termios
.c_cflag
= B9600
|CS8
|CREAD
|HUPCL
|CLOCAL
;
2634 mxvar_sdriver
->flags
= TTY_DRIVER_REAL_RAW
|TTY_DRIVER_DYNAMIC_DEV
;
2635 tty_set_operations(mxvar_sdriver
, &mxser_ops
);
2637 retval
= tty_register_driver(mxvar_sdriver
);
2639 printk(KERN_ERR
"Couldn't install MOXA Smartio/Industio family "
2647 /* Start finding ISA boards here */
2648 for (isaloop
= 0; isaloop
< 2; isaloop
++)
2649 for (b
= 0; b
< MXSER_BOARDS
&& m
< MXSER_BOARDS
; b
++) {
2651 cap
= mxserBoardCAP
[b
]; /* predefined */
2653 cap
= ioaddr
[b
]; /* module param */
2658 brd
= &mxser_boards
[m
];
2659 retval
= mxser_get_ISA_conf(cap
, brd
);
2662 printk(KERN_INFO
"Found MOXA %s board "
2664 brd
->info
->name
, ioaddr
[b
]);
2667 if (retval
== MXSER_ERR_IRQ
)
2668 printk(KERN_ERR
"Invalid interrupt "
2669 "number, board not "
2671 else if (retval
== MXSER_ERR_IRQ_CONFLIT
)
2672 printk(KERN_ERR
"Invalid interrupt "
2673 "number, board not "
2675 else if (retval
== MXSER_ERR_VECTOR
)
2676 printk(KERN_ERR
"Invalid interrupt "
2677 "vector, board not "
2679 else if (retval
== MXSER_ERR_IOADDR
)
2680 printk(KERN_ERR
"Invalid I/O address, "
2681 "board not configured\n");
2687 /* mxser_initbrd will hook ISR. */
2688 if (mxser_initbrd(brd
, NULL
) < 0) {
2693 brd
->idx
= m
* MXSER_PORTS_PER_BOARD
;
2694 for (i
= 0; i
< brd
->info
->nports
; i
++)
2695 tty_register_device(mxvar_sdriver
, brd
->idx
+ i
,
2701 retval
= pci_register_driver(&mxser_driver
);
2703 printk(KERN_ERR
"Can't register pci driver\n");
2707 } /* else: we have some ISA cards under control */
2710 pr_debug("Done.\n");
2714 tty_unregister_driver(mxvar_sdriver
);
2716 put_tty_driver(mxvar_sdriver
);
2720 static void __exit
mxser_module_exit(void)
2724 pr_debug("Unloading module mxser ...\n");
2726 pci_unregister_driver(&mxser_driver
);
2728 for (i
= 0; i
< MXSER_BOARDS
; i
++) /* ISA remains */
2729 if (mxser_boards
[i
].info
!= NULL
)
2730 for (j
= 0; j
< mxser_boards
[i
].info
->nports
; j
++)
2731 tty_unregister_device(mxvar_sdriver
,
2732 mxser_boards
[i
].idx
+ j
);
2733 tty_unregister_driver(mxvar_sdriver
);
2734 put_tty_driver(mxvar_sdriver
);
2736 for (i
= 0; i
< MXSER_BOARDS
; i
++)
2737 if (mxser_boards
[i
].info
!= NULL
)
2738 mxser_release_res(&mxser_boards
[i
], NULL
, 1);
2740 pr_debug("Done.\n");
2743 module_init(mxser_module_init
);
2744 module_exit(mxser_module_exit
);