2 * mxser.c -- MOXA Smartio/Industio family multiport serial driver.
4 * Copyright (C) 1999-2006 Moxa Technologies (support@moxa.com).
5 * Copyright (C) 2006-2008 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@lxorguk.ukuu.org.uk>. The original 1.8 code is available on
19 * - Fixed x86_64 cleanness
22 #include <linux/module.h>
23 #include <linux/errno.h>
24 #include <linux/signal.h>
25 #include <linux/sched.h>
26 #include <linux/smp_lock.h>
27 #include <linux/timer.h>
28 #include <linux/interrupt.h>
29 #include <linux/tty.h>
30 #include <linux/tty_flip.h>
31 #include <linux/serial.h>
32 #include <linux/serial_reg.h>
33 #include <linux/major.h>
34 #include <linux/string.h>
35 #include <linux/fcntl.h>
36 #include <linux/ptrace.h>
37 #include <linux/gfp.h>
38 #include <linux/ioport.h>
40 #include <linux/delay.h>
41 #include <linux/pci.h>
42 #include <linux/bitops.h>
44 #include <asm/system.h>
47 #include <asm/uaccess.h>
51 #define MXSER_VERSION "2.0.5" /* 1.14 */
52 #define MXSERMAJOR 174
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 /*CheckIsMoxaMust return value*/
60 #define MOXA_OTHER_UART 0x00
61 #define MOXA_MUST_MU150_HWID 0x01
62 #define MOXA_MUST_MU860_HWID 0x02
64 #define WAKEUP_CHARS 256
66 #define UART_MCR_AFE 0x20
67 #define UART_LSR_SPECIAL 0x1E
69 #define PCI_DEVICE_ID_POS104UL 0x1044
70 #define PCI_DEVICE_ID_CB108 0x1080
71 #define PCI_DEVICE_ID_CP102UF 0x1023
72 #define PCI_DEVICE_ID_CP112UL 0x1120
73 #define PCI_DEVICE_ID_CB114 0x1142
74 #define PCI_DEVICE_ID_CP114UL 0x1143
75 #define PCI_DEVICE_ID_CB134I 0x1341
76 #define PCI_DEVICE_ID_CP138U 0x1380
79 #define C168_ASIC_ID 1
80 #define C104_ASIC_ID 2
81 #define C102_ASIC_ID 0xB
82 #define CI132_ASIC_ID 4
83 #define CI134_ASIC_ID 3
84 #define CI104J_ASIC_ID 5
86 #define MXSER_HIGHBAUD 1
89 /* This is only for PCI */
99 } Gpci_uart_info
[] = {
100 {MOXA_OTHER_UART
, 16, 16, 16, 14, 14, 1, 921600L},
101 {MOXA_MUST_MU150_HWID
, 64, 64, 64, 48, 48, 16, 230400L},
102 {MOXA_MUST_MU860_HWID
, 128, 128, 128, 96, 96, 32, 921600L}
104 #define UART_INFO_NUM ARRAY_SIZE(Gpci_uart_info)
106 struct mxser_cardinfo
{
112 static const struct mxser_cardinfo mxser_cards
[] = {
113 /* 0*/ { "C168 series", 8, },
114 { "C104 series", 4, },
115 { "CI-104J series", 4, },
116 { "C168H/PCI series", 8, },
117 { "C104H/PCI series", 4, },
118 /* 5*/ { "C102 series", 4, MXSER_HAS2
}, /* C102-ISA */
119 { "CI-132 series", 4, MXSER_HAS2
},
120 { "CI-134 series", 4, },
121 { "CP-132 series", 2, },
122 { "CP-114 series", 4, },
123 /*10*/ { "CT-114 series", 4, },
124 { "CP-102 series", 2, MXSER_HIGHBAUD
},
125 { "CP-104U series", 4, },
126 { "CP-168U series", 8, },
127 { "CP-132U series", 2, },
128 /*15*/ { "CP-134U series", 4, },
129 { "CP-104JU series", 4, },
130 { "Moxa UC7000 Serial", 8, }, /* RC7000 */
131 { "CP-118U series", 8, },
132 { "CP-102UL series", 2, },
133 /*20*/ { "CP-102U series", 2, },
134 { "CP-118EL series", 8, },
135 { "CP-168EL series", 8, },
136 { "CP-104EL series", 4, },
137 { "CB-108 series", 8, },
138 /*25*/ { "CB-114 series", 4, },
139 { "CB-134I series", 4, },
140 { "CP-138U series", 8, },
141 { "POS-104UL series", 4, },
142 { "CP-114UL series", 4, },
143 /*30*/ { "CP-102UF series", 2, },
144 { "CP-112UL series", 2, },
147 /* driver_data correspond to the lines in the structure above
148 see also ISA probe function before you change something */
149 static struct pci_device_id mxser_pcibrds
[] = {
150 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_C168
), .driver_data
= 3 },
151 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_C104
), .driver_data
= 4 },
152 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP132
), .driver_data
= 8 },
153 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP114
), .driver_data
= 9 },
154 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CT114
), .driver_data
= 10 },
155 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP102
), .driver_data
= 11 },
156 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP104U
), .driver_data
= 12 },
157 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP168U
), .driver_data
= 13 },
158 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP132U
), .driver_data
= 14 },
159 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP134U
), .driver_data
= 15 },
160 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP104JU
),.driver_data
= 16 },
161 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_RC7000
), .driver_data
= 17 },
162 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP118U
), .driver_data
= 18 },
163 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP102UL
),.driver_data
= 19 },
164 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP102U
), .driver_data
= 20 },
165 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP118EL
),.driver_data
= 21 },
166 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP168EL
),.driver_data
= 22 },
167 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP104EL
),.driver_data
= 23 },
168 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CB108
), .driver_data
= 24 },
169 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CB114
), .driver_data
= 25 },
170 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CB134I
), .driver_data
= 26 },
171 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CP138U
), .driver_data
= 27 },
172 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_POS104UL
), .driver_data
= 28 },
173 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CP114UL
), .driver_data
= 29 },
174 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CP102UF
), .driver_data
= 30 },
175 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CP112UL
), .driver_data
= 31 },
178 MODULE_DEVICE_TABLE(pci
, mxser_pcibrds
);
180 static unsigned long ioaddr
[MXSER_BOARDS
];
181 static int ttymajor
= MXSERMAJOR
;
183 /* Variables for insmod */
185 MODULE_AUTHOR("Casper Yang");
186 MODULE_DESCRIPTION("MOXA Smartio/Industio Family Multiport Board Device Driver");
187 module_param_array(ioaddr
, ulong
, NULL
, 0);
188 MODULE_PARM_DESC(ioaddr
, "ISA io addresses to look for a moxa board");
189 module_param(ttymajor
, int, 0);
190 MODULE_LICENSE("GPL");
194 unsigned long rxcnt
[MXSER_PORTS
];
195 unsigned long txcnt
[MXSER_PORTS
];
201 unsigned long up_rxcnt
;
202 unsigned long up_txcnt
;
204 unsigned char hold_reason
;
207 struct mxser_mon_ext
{
208 unsigned long rx_cnt
[32];
209 unsigned long tx_cnt
[32];
210 unsigned long up_rxcnt
[32];
211 unsigned long up_txcnt
[32];
212 int modem_status
[32];
226 struct tty_port port
;
227 struct mxser_board
*board
;
229 unsigned long ioaddr
;
230 unsigned long opmode_ioaddr
;
234 int rx_trigger
; /* Rx fifo trigger level */
236 int baud_base
; /* max. speed */
237 int type
; /* UART type */
239 int x_char
; /* xon/xoff character */
240 int IER
; /* Interrupt Enable Register */
241 int MCR
; /* Modem control register */
243 unsigned char stop_rx
;
244 unsigned char ldisc_stop_rx
;
247 unsigned char err_shadow
;
249 struct async_icount icount
; /* kernel counters for 4 input interrupts */
252 int read_status_mask
;
253 int ignore_status_mask
;
259 struct ktermios normal_termios
;
261 struct mxser_mon mon_data
;
269 const struct mxser_cardinfo
*info
;
270 unsigned long vector
;
271 unsigned long vector_mask
;
276 struct mxser_port ports
[MXSER_PORTS_PER_BOARD
];
279 struct mxser_mstatus
{
287 static struct mxser_board mxser_boards
[MXSER_BOARDS
];
288 static struct tty_driver
*mxvar_sdriver
;
289 static struct mxser_log mxvar_log
;
290 static int mxser_set_baud_method
[MXSER_PORTS
+ 1];
292 static void mxser_enable_must_enchance_mode(unsigned long baseio
)
297 oldlcr
= inb(baseio
+ UART_LCR
);
298 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
300 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
301 efr
|= MOXA_MUST_EFR_EFRB_ENABLE
;
303 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
304 outb(oldlcr
, baseio
+ UART_LCR
);
307 static void mxser_disable_must_enchance_mode(unsigned long baseio
)
312 oldlcr
= inb(baseio
+ UART_LCR
);
313 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
315 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
316 efr
&= ~MOXA_MUST_EFR_EFRB_ENABLE
;
318 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
319 outb(oldlcr
, baseio
+ UART_LCR
);
322 static void mxser_set_must_xon1_value(unsigned long baseio
, u8 value
)
327 oldlcr
= inb(baseio
+ UART_LCR
);
328 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
330 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
331 efr
&= ~MOXA_MUST_EFR_BANK_MASK
;
332 efr
|= MOXA_MUST_EFR_BANK0
;
334 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
335 outb(value
, baseio
+ MOXA_MUST_XON1_REGISTER
);
336 outb(oldlcr
, baseio
+ UART_LCR
);
339 static void mxser_set_must_xoff1_value(unsigned long baseio
, u8 value
)
344 oldlcr
= inb(baseio
+ UART_LCR
);
345 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
347 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
348 efr
&= ~MOXA_MUST_EFR_BANK_MASK
;
349 efr
|= MOXA_MUST_EFR_BANK0
;
351 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
352 outb(value
, baseio
+ MOXA_MUST_XOFF1_REGISTER
);
353 outb(oldlcr
, baseio
+ UART_LCR
);
356 static void mxser_set_must_fifo_value(struct mxser_port
*info
)
361 oldlcr
= inb(info
->ioaddr
+ UART_LCR
);
362 outb(MOXA_MUST_ENTER_ENCHANCE
, info
->ioaddr
+ UART_LCR
);
364 efr
= inb(info
->ioaddr
+ MOXA_MUST_EFR_REGISTER
);
365 efr
&= ~MOXA_MUST_EFR_BANK_MASK
;
366 efr
|= MOXA_MUST_EFR_BANK1
;
368 outb(efr
, info
->ioaddr
+ MOXA_MUST_EFR_REGISTER
);
369 outb((u8
)info
->rx_high_water
, info
->ioaddr
+ MOXA_MUST_RBRTH_REGISTER
);
370 outb((u8
)info
->rx_trigger
, info
->ioaddr
+ MOXA_MUST_RBRTI_REGISTER
);
371 outb((u8
)info
->rx_low_water
, info
->ioaddr
+ MOXA_MUST_RBRTL_REGISTER
);
372 outb(oldlcr
, info
->ioaddr
+ UART_LCR
);
375 static void mxser_set_must_enum_value(unsigned long baseio
, u8 value
)
380 oldlcr
= inb(baseio
+ UART_LCR
);
381 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
383 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
384 efr
&= ~MOXA_MUST_EFR_BANK_MASK
;
385 efr
|= MOXA_MUST_EFR_BANK2
;
387 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
388 outb(value
, baseio
+ MOXA_MUST_ENUM_REGISTER
);
389 outb(oldlcr
, baseio
+ UART_LCR
);
392 static void mxser_get_must_hardware_id(unsigned long baseio
, u8
*pId
)
397 oldlcr
= inb(baseio
+ UART_LCR
);
398 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
400 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
401 efr
&= ~MOXA_MUST_EFR_BANK_MASK
;
402 efr
|= MOXA_MUST_EFR_BANK2
;
404 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
405 *pId
= inb(baseio
+ MOXA_MUST_HWID_REGISTER
);
406 outb(oldlcr
, baseio
+ UART_LCR
);
409 static void SET_MOXA_MUST_NO_SOFTWARE_FLOW_CONTROL(unsigned long baseio
)
414 oldlcr
= inb(baseio
+ UART_LCR
);
415 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
417 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
418 efr
&= ~MOXA_MUST_EFR_SF_MASK
;
420 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
421 outb(oldlcr
, baseio
+ UART_LCR
);
424 static void mxser_enable_must_tx_software_flow_control(unsigned long baseio
)
429 oldlcr
= inb(baseio
+ UART_LCR
);
430 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
432 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
433 efr
&= ~MOXA_MUST_EFR_SF_TX_MASK
;
434 efr
|= MOXA_MUST_EFR_SF_TX1
;
436 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
437 outb(oldlcr
, baseio
+ UART_LCR
);
440 static void mxser_disable_must_tx_software_flow_control(unsigned long baseio
)
445 oldlcr
= inb(baseio
+ UART_LCR
);
446 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
448 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
449 efr
&= ~MOXA_MUST_EFR_SF_TX_MASK
;
451 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
452 outb(oldlcr
, baseio
+ UART_LCR
);
455 static void mxser_enable_must_rx_software_flow_control(unsigned long baseio
)
460 oldlcr
= inb(baseio
+ UART_LCR
);
461 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
463 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
464 efr
&= ~MOXA_MUST_EFR_SF_RX_MASK
;
465 efr
|= MOXA_MUST_EFR_SF_RX1
;
467 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
468 outb(oldlcr
, baseio
+ UART_LCR
);
471 static void mxser_disable_must_rx_software_flow_control(unsigned long baseio
)
476 oldlcr
= inb(baseio
+ UART_LCR
);
477 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
479 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
480 efr
&= ~MOXA_MUST_EFR_SF_RX_MASK
;
482 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
483 outb(oldlcr
, baseio
+ UART_LCR
);
487 static int __devinit
CheckIsMoxaMust(unsigned long io
)
492 outb(0, io
+ UART_LCR
);
493 mxser_disable_must_enchance_mode(io
);
494 oldmcr
= inb(io
+ UART_MCR
);
495 outb(0, io
+ UART_MCR
);
496 mxser_set_must_xon1_value(io
, 0x11);
497 if ((hwid
= inb(io
+ UART_MCR
)) != 0) {
498 outb(oldmcr
, io
+ UART_MCR
);
499 return MOXA_OTHER_UART
;
502 mxser_get_must_hardware_id(io
, &hwid
);
503 for (i
= 1; i
< UART_INFO_NUM
; i
++) { /* 0 = OTHER_UART */
504 if (hwid
== Gpci_uart_info
[i
].type
)
507 return MOXA_OTHER_UART
;
511 static void process_txrx_fifo(struct mxser_port
*info
)
515 if ((info
->type
== PORT_16450
) || (info
->type
== PORT_8250
)) {
516 info
->rx_trigger
= 1;
517 info
->rx_high_water
= 1;
518 info
->rx_low_water
= 1;
519 info
->xmit_fifo_size
= 1;
521 for (i
= 0; i
< UART_INFO_NUM
; i
++)
522 if (info
->board
->chip_flag
== Gpci_uart_info
[i
].type
) {
523 info
->rx_trigger
= Gpci_uart_info
[i
].rx_trigger
;
524 info
->rx_low_water
= Gpci_uart_info
[i
].rx_low_water
;
525 info
->rx_high_water
= Gpci_uart_info
[i
].rx_high_water
;
526 info
->xmit_fifo_size
= Gpci_uart_info
[i
].xmit_fifo_size
;
531 static unsigned char mxser_get_msr(int baseaddr
, int mode
, int port
)
533 static unsigned char mxser_msr
[MXSER_PORTS
+ 1];
534 unsigned char status
= 0;
536 status
= inb(baseaddr
+ UART_MSR
);
538 mxser_msr
[port
] &= 0x0F;
539 mxser_msr
[port
] |= status
;
540 status
= mxser_msr
[port
];
547 static int mxser_carrier_raised(struct tty_port
*port
)
549 struct mxser_port
*mp
= container_of(port
, struct mxser_port
, port
);
550 return (inb(mp
->ioaddr
+ UART_MSR
) & UART_MSR_DCD
)?1:0;
553 static void mxser_dtr_rts(struct tty_port
*port
, int on
)
555 struct mxser_port
*mp
= container_of(port
, struct mxser_port
, port
);
558 spin_lock_irqsave(&mp
->slock
, flags
);
560 outb(inb(mp
->ioaddr
+ UART_MCR
) |
561 UART_MCR_DTR
| UART_MCR_RTS
, mp
->ioaddr
+ UART_MCR
);
563 outb(inb(mp
->ioaddr
+ UART_MCR
)&~(UART_MCR_DTR
| UART_MCR_RTS
),
564 mp
->ioaddr
+ UART_MCR
);
565 spin_unlock_irqrestore(&mp
->slock
, flags
);
568 static int mxser_set_baud(struct tty_struct
*tty
, long newspd
)
570 struct mxser_port
*info
= tty
->driver_data
;
577 if (newspd
> info
->max_baud
)
581 quot
= 2 * info
->baud_base
/ 269;
582 tty_encode_baud_rate(tty
, 134, 134);
584 quot
= info
->baud_base
/ newspd
;
587 baud
= info
->baud_base
/quot
;
588 tty_encode_baud_rate(tty
, baud
, baud
);
593 info
->timeout
= ((info
->xmit_fifo_size
* HZ
* 10 * quot
) / info
->baud_base
);
594 info
->timeout
+= HZ
/ 50; /* Add .02 seconds of slop */
597 info
->MCR
|= UART_MCR_DTR
;
598 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
600 info
->MCR
&= ~UART_MCR_DTR
;
601 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
605 cval
= inb(info
->ioaddr
+ UART_LCR
);
607 outb(cval
| UART_LCR_DLAB
, info
->ioaddr
+ UART_LCR
); /* set DLAB */
609 outb(quot
& 0xff, info
->ioaddr
+ UART_DLL
); /* LS of divisor */
610 outb(quot
>> 8, info
->ioaddr
+ UART_DLM
); /* MS of divisor */
611 outb(cval
, info
->ioaddr
+ UART_LCR
); /* reset DLAB */
614 if (C_BAUD(tty
) == BOTHER
) {
615 quot
= info
->baud_base
% newspd
;
617 if (quot
% newspd
> newspd
/ 2) {
623 mxser_set_must_enum_value(info
->ioaddr
, quot
);
626 mxser_set_must_enum_value(info
->ioaddr
, 0);
632 * This routine is called to set the UART divisor registers to match
633 * the specified baud rate for a serial port.
635 static int mxser_change_speed(struct tty_struct
*tty
,
636 struct ktermios
*old_termios
)
638 struct mxser_port
*info
= tty
->driver_data
;
639 unsigned cflag
, cval
, fcr
;
641 unsigned char status
;
643 cflag
= tty
->termios
->c_cflag
;
647 if (mxser_set_baud_method
[tty
->index
] == 0)
648 mxser_set_baud(tty
, tty_get_baud_rate(tty
));
650 /* byte size and parity */
651 switch (cflag
& CSIZE
) {
666 break; /* too keep GCC shut... */
671 cval
|= UART_LCR_PARITY
;
672 if (!(cflag
& PARODD
))
673 cval
|= UART_LCR_EPAR
;
675 cval
|= UART_LCR_SPAR
;
677 if ((info
->type
== PORT_8250
) || (info
->type
== PORT_16450
)) {
678 if (info
->board
->chip_flag
) {
679 fcr
= UART_FCR_ENABLE_FIFO
;
680 fcr
|= MOXA_MUST_FCR_GDA_MODE_ENABLE
;
681 mxser_set_must_fifo_value(info
);
685 fcr
= UART_FCR_ENABLE_FIFO
;
686 if (info
->board
->chip_flag
) {
687 fcr
|= MOXA_MUST_FCR_GDA_MODE_ENABLE
;
688 mxser_set_must_fifo_value(info
);
690 switch (info
->rx_trigger
) {
692 fcr
|= UART_FCR_TRIGGER_1
;
695 fcr
|= UART_FCR_TRIGGER_4
;
698 fcr
|= UART_FCR_TRIGGER_8
;
701 fcr
|= UART_FCR_TRIGGER_14
;
707 /* CTS flow control flag and modem status interrupts */
708 info
->IER
&= ~UART_IER_MSI
;
709 info
->MCR
&= ~UART_MCR_AFE
;
710 if (cflag
& CRTSCTS
) {
711 info
->port
.flags
|= ASYNC_CTS_FLOW
;
712 info
->IER
|= UART_IER_MSI
;
713 if ((info
->type
== PORT_16550A
) || (info
->board
->chip_flag
)) {
714 info
->MCR
|= UART_MCR_AFE
;
716 status
= inb(info
->ioaddr
+ UART_MSR
);
717 if (tty
->hw_stopped
) {
718 if (status
& UART_MSR_CTS
) {
720 if (info
->type
!= PORT_16550A
&&
721 !info
->board
->chip_flag
) {
722 outb(info
->IER
& ~UART_IER_THRI
,
725 info
->IER
|= UART_IER_THRI
;
726 outb(info
->IER
, info
->ioaddr
+
732 if (!(status
& UART_MSR_CTS
)) {
734 if ((info
->type
!= PORT_16550A
) &&
735 (!info
->board
->chip_flag
)) {
736 info
->IER
&= ~UART_IER_THRI
;
737 outb(info
->IER
, info
->ioaddr
+
744 info
->port
.flags
&= ~ASYNC_CTS_FLOW
;
746 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
747 if (cflag
& CLOCAL
) {
748 info
->port
.flags
&= ~ASYNC_CHECK_CD
;
750 info
->port
.flags
|= ASYNC_CHECK_CD
;
751 info
->IER
|= UART_IER_MSI
;
753 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
756 * Set up parity check flag
758 info
->read_status_mask
= UART_LSR_OE
| UART_LSR_THRE
| UART_LSR_DR
;
760 info
->read_status_mask
|= UART_LSR_FE
| UART_LSR_PE
;
761 if (I_BRKINT(tty
) || I_PARMRK(tty
))
762 info
->read_status_mask
|= UART_LSR_BI
;
764 info
->ignore_status_mask
= 0;
767 info
->ignore_status_mask
|= UART_LSR_BI
;
768 info
->read_status_mask
|= UART_LSR_BI
;
770 * If we're ignore parity and break indicators, ignore
771 * overruns too. (For real raw support).
774 info
->ignore_status_mask
|=
778 info
->read_status_mask
|=
784 if (info
->board
->chip_flag
) {
785 mxser_set_must_xon1_value(info
->ioaddr
, START_CHAR(tty
));
786 mxser_set_must_xoff1_value(info
->ioaddr
, STOP_CHAR(tty
));
788 mxser_enable_must_rx_software_flow_control(
791 mxser_disable_must_rx_software_flow_control(
795 mxser_enable_must_tx_software_flow_control(
798 mxser_disable_must_tx_software_flow_control(
804 outb(fcr
, info
->ioaddr
+ UART_FCR
); /* set fcr */
805 outb(cval
, info
->ioaddr
+ UART_LCR
);
810 static void mxser_check_modem_status(struct tty_struct
*tty
,
811 struct mxser_port
*port
, int status
)
813 /* update input line counters */
814 if (status
& UART_MSR_TERI
)
816 if (status
& UART_MSR_DDSR
)
818 if (status
& UART_MSR_DDCD
)
820 if (status
& UART_MSR_DCTS
)
822 port
->mon_data
.modem_status
= status
;
823 wake_up_interruptible(&port
->port
.delta_msr_wait
);
825 if ((port
->port
.flags
& ASYNC_CHECK_CD
) && (status
& UART_MSR_DDCD
)) {
826 if (status
& UART_MSR_DCD
)
827 wake_up_interruptible(&port
->port
.open_wait
);
830 if (port
->port
.flags
& ASYNC_CTS_FLOW
) {
831 if (tty
->hw_stopped
) {
832 if (status
& UART_MSR_CTS
) {
835 if ((port
->type
!= PORT_16550A
) &&
836 (!port
->board
->chip_flag
)) {
837 outb(port
->IER
& ~UART_IER_THRI
,
838 port
->ioaddr
+ UART_IER
);
839 port
->IER
|= UART_IER_THRI
;
840 outb(port
->IER
, port
->ioaddr
+
846 if (!(status
& UART_MSR_CTS
)) {
848 if (port
->type
!= PORT_16550A
&&
849 !port
->board
->chip_flag
) {
850 port
->IER
&= ~UART_IER_THRI
;
851 outb(port
->IER
, port
->ioaddr
+
859 static int mxser_startup(struct tty_struct
*tty
)
861 struct mxser_port
*info
= tty
->driver_data
;
865 page
= __get_free_page(GFP_KERNEL
);
869 spin_lock_irqsave(&info
->slock
, flags
);
871 if (info
->port
.flags
& ASYNC_INITIALIZED
) {
873 spin_unlock_irqrestore(&info
->slock
, flags
);
877 if (!info
->ioaddr
|| !info
->type
) {
878 set_bit(TTY_IO_ERROR
, &tty
->flags
);
880 spin_unlock_irqrestore(&info
->slock
, flags
);
883 if (info
->port
.xmit_buf
)
886 info
->port
.xmit_buf
= (unsigned char *) page
;
889 * Clear the FIFO buffers and disable them
890 * (they will be reenabled in mxser_change_speed())
892 if (info
->board
->chip_flag
)
893 outb((UART_FCR_CLEAR_RCVR
|
894 UART_FCR_CLEAR_XMIT
|
895 MOXA_MUST_FCR_GDA_MODE_ENABLE
), info
->ioaddr
+ UART_FCR
);
897 outb((UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
),
898 info
->ioaddr
+ UART_FCR
);
901 * At this point there's no way the LSR could still be 0xFF;
902 * if it is, then bail out, because there's likely no UART
905 if (inb(info
->ioaddr
+ UART_LSR
) == 0xff) {
906 spin_unlock_irqrestore(&info
->slock
, flags
);
907 if (capable(CAP_SYS_ADMIN
)) {
908 set_bit(TTY_IO_ERROR
, &tty
->flags
);
915 * Clear the interrupt registers.
917 (void) inb(info
->ioaddr
+ UART_LSR
);
918 (void) inb(info
->ioaddr
+ UART_RX
);
919 (void) inb(info
->ioaddr
+ UART_IIR
);
920 (void) inb(info
->ioaddr
+ UART_MSR
);
923 * Now, initialize the UART
925 outb(UART_LCR_WLEN8
, info
->ioaddr
+ UART_LCR
); /* reset DLAB */
926 info
->MCR
= UART_MCR_DTR
| UART_MCR_RTS
;
927 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
930 * Finally, enable interrupts
932 info
->IER
= UART_IER_MSI
| UART_IER_RLSI
| UART_IER_RDI
;
934 if (info
->board
->chip_flag
)
935 info
->IER
|= MOXA_MUST_IER_EGDAI
;
936 outb(info
->IER
, info
->ioaddr
+ UART_IER
); /* enable interrupts */
939 * And clear the interrupt registers again for luck.
941 (void) inb(info
->ioaddr
+ UART_LSR
);
942 (void) inb(info
->ioaddr
+ UART_RX
);
943 (void) inb(info
->ioaddr
+ UART_IIR
);
944 (void) inb(info
->ioaddr
+ UART_MSR
);
946 clear_bit(TTY_IO_ERROR
, &tty
->flags
);
947 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
950 * and set the speed of the serial port
952 mxser_change_speed(tty
, NULL
);
953 info
->port
.flags
|= ASYNC_INITIALIZED
;
954 spin_unlock_irqrestore(&info
->slock
, flags
);
960 * This routine will shutdown a serial port; interrupts maybe disabled, and
961 * DTR is dropped if the hangup on close termio flag is on.
963 static void mxser_shutdown(struct tty_struct
*tty
)
965 struct mxser_port
*info
= tty
->driver_data
;
968 if (!(info
->port
.flags
& ASYNC_INITIALIZED
))
971 spin_lock_irqsave(&info
->slock
, flags
);
974 * clear delta_msr_wait queue to avoid mem leaks: we may free the irq
975 * here so the queue might never be waken up
977 wake_up_interruptible(&info
->port
.delta_msr_wait
);
980 * Free the IRQ, if necessary
982 if (info
->port
.xmit_buf
) {
983 free_page((unsigned long) info
->port
.xmit_buf
);
984 info
->port
.xmit_buf
= NULL
;
988 outb(0x00, info
->ioaddr
+ UART_IER
);
990 if (tty
->termios
->c_cflag
& HUPCL
)
991 info
->MCR
&= ~(UART_MCR_DTR
| UART_MCR_RTS
);
992 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
994 /* clear Rx/Tx FIFO's */
995 if (info
->board
->chip_flag
)
996 outb(UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
|
997 MOXA_MUST_FCR_GDA_MODE_ENABLE
,
998 info
->ioaddr
+ UART_FCR
);
1000 outb(UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
,
1001 info
->ioaddr
+ UART_FCR
);
1003 /* read data port to reset things */
1004 (void) inb(info
->ioaddr
+ UART_RX
);
1006 set_bit(TTY_IO_ERROR
, &tty
->flags
);
1008 info
->port
.flags
&= ~ASYNC_INITIALIZED
;
1010 if (info
->board
->chip_flag
)
1011 SET_MOXA_MUST_NO_SOFTWARE_FLOW_CONTROL(info
->ioaddr
);
1013 spin_unlock_irqrestore(&info
->slock
, flags
);
1017 * This routine is called whenever a serial port is opened. It
1018 * enables interrupts for a serial port, linking in its async structure into
1019 * the IRQ chain. It also performs the serial-specific
1020 * initialization for the tty structure.
1022 static int mxser_open(struct tty_struct
*tty
, struct file
*filp
)
1024 struct mxser_port
*info
;
1025 unsigned long flags
;
1029 if (line
== MXSER_PORTS
)
1031 if (line
< 0 || line
> MXSER_PORTS
)
1033 info
= &mxser_boards
[line
/ MXSER_PORTS_PER_BOARD
].ports
[line
% MXSER_PORTS_PER_BOARD
];
1037 tty
->driver_data
= info
;
1038 tty_port_tty_set(&info
->port
, tty
);
1040 * Start up serial port
1042 spin_lock_irqsave(&info
->port
.lock
, flags
);
1044 spin_unlock_irqrestore(&info
->port
.lock
, flags
);
1045 retval
= mxser_startup(tty
);
1049 retval
= tty_port_block_til_ready(&info
->port
, tty
, filp
);
1056 static void mxser_flush_buffer(struct tty_struct
*tty
)
1058 struct mxser_port
*info
= tty
->driver_data
;
1060 unsigned long flags
;
1063 spin_lock_irqsave(&info
->slock
, flags
);
1064 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
1066 fcr
= inb(info
->ioaddr
+ UART_FCR
);
1067 outb((fcr
| UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
),
1068 info
->ioaddr
+ UART_FCR
);
1069 outb(fcr
, info
->ioaddr
+ UART_FCR
);
1071 spin_unlock_irqrestore(&info
->slock
, flags
);
1077 static void mxser_close_port(struct tty_struct
*tty
, struct tty_port
*port
)
1079 struct mxser_port
*info
= container_of(port
, struct mxser_port
, port
);
1080 unsigned long timeout
;
1082 * Save the termios structure, since this port may have
1083 * separate termios for callout and dialin.
1085 * FIXME: Can this go ?
1087 if (port
->flags
& ASYNC_NORMAL_ACTIVE
)
1088 info
->normal_termios
= *tty
->termios
;
1090 * At this point we stop accepting input. To do this, we
1091 * disable the receive line status interrupts, and tell the
1092 * interrupt driver to stop checking the data ready bit in the
1093 * line status register.
1095 info
->IER
&= ~UART_IER_RLSI
;
1096 if (info
->board
->chip_flag
)
1097 info
->IER
&= ~MOXA_MUST_RECV_ISR
;
1099 if (port
->flags
& ASYNC_INITIALIZED
) {
1100 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1102 * Before we drop DTR, make sure the UART transmitter
1103 * has completely drained; this is especially
1104 * important if there is a transmit FIFO!
1106 timeout
= jiffies
+ HZ
;
1107 while (!(inb(info
->ioaddr
+ UART_LSR
) & UART_LSR_TEMT
)) {
1108 schedule_timeout_interruptible(5);
1109 if (time_after(jiffies
, timeout
))
1113 mxser_shutdown(tty
);
1118 * This routine is called when the serial port gets closed. First, we
1119 * wait for the last remaining data to be sent. Then, we unlink its
1120 * async structure from the interrupt chain if necessary, and we free
1121 * that IRQ if nothing is left in the chain.
1123 static void mxser_close(struct tty_struct
*tty
, struct file
*filp
)
1125 struct mxser_port
*info
= tty
->driver_data
;
1126 struct tty_port
*port
= &info
->port
;
1128 if (tty
->index
== MXSER_PORTS
)
1130 if (tty_port_close_start(port
, tty
, filp
) == 0)
1132 mxser_close_port(tty
, port
);
1133 mxser_flush_buffer(tty
);
1134 /* Right now the tty_port set is done outside of the close_end helper
1135 as we don't yet have everyone using refcounts */
1136 tty_port_close_end(port
, tty
);
1137 tty_port_tty_set(port
, NULL
);
1140 static int mxser_write(struct tty_struct
*tty
, const unsigned char *buf
, int count
)
1143 struct mxser_port
*info
= tty
->driver_data
;
1144 unsigned long flags
;
1146 if (!info
->port
.xmit_buf
)
1150 c
= min_t(int, count
, min(SERIAL_XMIT_SIZE
- info
->xmit_cnt
- 1,
1151 SERIAL_XMIT_SIZE
- info
->xmit_head
));
1155 memcpy(info
->port
.xmit_buf
+ info
->xmit_head
, buf
, c
);
1156 spin_lock_irqsave(&info
->slock
, flags
);
1157 info
->xmit_head
= (info
->xmit_head
+ c
) &
1158 (SERIAL_XMIT_SIZE
- 1);
1159 info
->xmit_cnt
+= c
;
1160 spin_unlock_irqrestore(&info
->slock
, flags
);
1167 if (info
->xmit_cnt
&& !tty
->stopped
) {
1168 if (!tty
->hw_stopped
||
1169 (info
->type
== PORT_16550A
) ||
1170 (info
->board
->chip_flag
)) {
1171 spin_lock_irqsave(&info
->slock
, flags
);
1172 outb(info
->IER
& ~UART_IER_THRI
, info
->ioaddr
+
1174 info
->IER
|= UART_IER_THRI
;
1175 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1176 spin_unlock_irqrestore(&info
->slock
, flags
);
1182 static int mxser_put_char(struct tty_struct
*tty
, unsigned char ch
)
1184 struct mxser_port
*info
= tty
->driver_data
;
1185 unsigned long flags
;
1187 if (!info
->port
.xmit_buf
)
1190 if (info
->xmit_cnt
>= SERIAL_XMIT_SIZE
- 1)
1193 spin_lock_irqsave(&info
->slock
, flags
);
1194 info
->port
.xmit_buf
[info
->xmit_head
++] = ch
;
1195 info
->xmit_head
&= SERIAL_XMIT_SIZE
- 1;
1197 spin_unlock_irqrestore(&info
->slock
, flags
);
1198 if (!tty
->stopped
) {
1199 if (!tty
->hw_stopped
||
1200 (info
->type
== PORT_16550A
) ||
1201 info
->board
->chip_flag
) {
1202 spin_lock_irqsave(&info
->slock
, flags
);
1203 outb(info
->IER
& ~UART_IER_THRI
, info
->ioaddr
+ UART_IER
);
1204 info
->IER
|= UART_IER_THRI
;
1205 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1206 spin_unlock_irqrestore(&info
->slock
, flags
);
1213 static void mxser_flush_chars(struct tty_struct
*tty
)
1215 struct mxser_port
*info
= tty
->driver_data
;
1216 unsigned long flags
;
1218 if (info
->xmit_cnt
<= 0 || tty
->stopped
|| !info
->port
.xmit_buf
||
1219 (tty
->hw_stopped
&& info
->type
!= PORT_16550A
&&
1220 !info
->board
->chip_flag
))
1223 spin_lock_irqsave(&info
->slock
, flags
);
1225 outb(info
->IER
& ~UART_IER_THRI
, info
->ioaddr
+ UART_IER
);
1226 info
->IER
|= UART_IER_THRI
;
1227 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1229 spin_unlock_irqrestore(&info
->slock
, flags
);
1232 static int mxser_write_room(struct tty_struct
*tty
)
1234 struct mxser_port
*info
= tty
->driver_data
;
1237 ret
= SERIAL_XMIT_SIZE
- info
->xmit_cnt
- 1;
1238 return ret
< 0 ? 0 : ret
;
1241 static int mxser_chars_in_buffer(struct tty_struct
*tty
)
1243 struct mxser_port
*info
= tty
->driver_data
;
1244 return info
->xmit_cnt
;
1248 * ------------------------------------------------------------
1249 * friends of mxser_ioctl()
1250 * ------------------------------------------------------------
1252 static int mxser_get_serial_info(struct tty_struct
*tty
,
1253 struct serial_struct __user
*retinfo
)
1255 struct mxser_port
*info
= tty
->driver_data
;
1256 struct serial_struct tmp
= {
1259 .port
= info
->ioaddr
,
1260 .irq
= info
->board
->irq
,
1261 .flags
= info
->port
.flags
,
1262 .baud_base
= info
->baud_base
,
1263 .close_delay
= info
->port
.close_delay
,
1264 .closing_wait
= info
->port
.closing_wait
,
1265 .custom_divisor
= info
->custom_divisor
,
1268 if (copy_to_user(retinfo
, &tmp
, sizeof(*retinfo
)))
1273 static int mxser_set_serial_info(struct tty_struct
*tty
,
1274 struct serial_struct __user
*new_info
)
1276 struct mxser_port
*info
= tty
->driver_data
;
1277 struct serial_struct new_serial
;
1279 unsigned long sl_flags
;
1283 if (!new_info
|| !info
->ioaddr
)
1285 if (copy_from_user(&new_serial
, new_info
, sizeof(new_serial
)))
1288 if (new_serial
.irq
!= info
->board
->irq
||
1289 new_serial
.port
!= info
->ioaddr
)
1292 flags
= info
->port
.flags
& ASYNC_SPD_MASK
;
1294 if (!capable(CAP_SYS_ADMIN
)) {
1295 if ((new_serial
.baud_base
!= info
->baud_base
) ||
1296 (new_serial
.close_delay
!= info
->port
.close_delay
) ||
1297 ((new_serial
.flags
& ~ASYNC_USR_MASK
) != (info
->port
.flags
& ~ASYNC_USR_MASK
)))
1299 info
->port
.flags
= ((info
->port
.flags
& ~ASYNC_USR_MASK
) |
1300 (new_serial
.flags
& ASYNC_USR_MASK
));
1303 * OK, past this point, all the error checking has been done.
1304 * At this point, we start making changes.....
1306 info
->port
.flags
= ((info
->port
.flags
& ~ASYNC_FLAGS
) |
1307 (new_serial
.flags
& ASYNC_FLAGS
));
1308 info
->port
.close_delay
= new_serial
.close_delay
* HZ
/ 100;
1309 info
->port
.closing_wait
= new_serial
.closing_wait
* HZ
/ 100;
1310 tty
->low_latency
= (info
->port
.flags
& ASYNC_LOW_LATENCY
)
1312 if ((info
->port
.flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_CUST
&&
1313 (new_serial
.baud_base
!= info
->baud_base
||
1314 new_serial
.custom_divisor
!=
1315 info
->custom_divisor
)) {
1316 baud
= new_serial
.baud_base
/ new_serial
.custom_divisor
;
1317 tty_encode_baud_rate(tty
, baud
, baud
);
1321 info
->type
= new_serial
.type
;
1323 process_txrx_fifo(info
);
1325 if (info
->port
.flags
& ASYNC_INITIALIZED
) {
1326 if (flags
!= (info
->port
.flags
& ASYNC_SPD_MASK
)) {
1327 spin_lock_irqsave(&info
->slock
, sl_flags
);
1328 mxser_change_speed(tty
, NULL
);
1329 spin_unlock_irqrestore(&info
->slock
, sl_flags
);
1332 retval
= mxser_startup(tty
);
1338 * mxser_get_lsr_info - get line status register info
1340 * Purpose: Let user call ioctl() to get info when the UART physically
1341 * is emptied. On bus types like RS485, the transmitter must
1342 * release the bus after transmitting. This must be done when
1343 * the transmit shift register is empty, not be done when the
1344 * transmit holding register is empty. This functionality
1345 * allows an RS485 driver to be written in user space.
1347 static int mxser_get_lsr_info(struct mxser_port
*info
,
1348 unsigned int __user
*value
)
1350 unsigned char status
;
1351 unsigned int result
;
1352 unsigned long flags
;
1354 spin_lock_irqsave(&info
->slock
, flags
);
1355 status
= inb(info
->ioaddr
+ UART_LSR
);
1356 spin_unlock_irqrestore(&info
->slock
, flags
);
1357 result
= ((status
& UART_LSR_TEMT
) ? TIOCSER_TEMT
: 0);
1358 return put_user(result
, value
);
1361 static int mxser_tiocmget(struct tty_struct
*tty
, struct file
*file
)
1363 struct mxser_port
*info
= tty
->driver_data
;
1364 unsigned char control
, status
;
1365 unsigned long flags
;
1368 if (tty
->index
== MXSER_PORTS
)
1369 return -ENOIOCTLCMD
;
1370 if (test_bit(TTY_IO_ERROR
, &tty
->flags
))
1373 control
= info
->MCR
;
1375 spin_lock_irqsave(&info
->slock
, flags
);
1376 status
= inb(info
->ioaddr
+ UART_MSR
);
1377 if (status
& UART_MSR_ANY_DELTA
)
1378 mxser_check_modem_status(tty
, info
, status
);
1379 spin_unlock_irqrestore(&info
->slock
, flags
);
1380 return ((control
& UART_MCR_RTS
) ? TIOCM_RTS
: 0) |
1381 ((control
& UART_MCR_DTR
) ? TIOCM_DTR
: 0) |
1382 ((status
& UART_MSR_DCD
) ? TIOCM_CAR
: 0) |
1383 ((status
& UART_MSR_RI
) ? TIOCM_RNG
: 0) |
1384 ((status
& UART_MSR_DSR
) ? TIOCM_DSR
: 0) |
1385 ((status
& UART_MSR_CTS
) ? TIOCM_CTS
: 0);
1388 static int mxser_tiocmset(struct tty_struct
*tty
, struct file
*file
,
1389 unsigned int set
, unsigned int clear
)
1391 struct mxser_port
*info
= tty
->driver_data
;
1392 unsigned long flags
;
1395 if (tty
->index
== MXSER_PORTS
)
1396 return -ENOIOCTLCMD
;
1397 if (test_bit(TTY_IO_ERROR
, &tty
->flags
))
1400 spin_lock_irqsave(&info
->slock
, flags
);
1402 if (set
& TIOCM_RTS
)
1403 info
->MCR
|= UART_MCR_RTS
;
1404 if (set
& TIOCM_DTR
)
1405 info
->MCR
|= UART_MCR_DTR
;
1407 if (clear
& TIOCM_RTS
)
1408 info
->MCR
&= ~UART_MCR_RTS
;
1409 if (clear
& TIOCM_DTR
)
1410 info
->MCR
&= ~UART_MCR_DTR
;
1412 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
1413 spin_unlock_irqrestore(&info
->slock
, flags
);
1417 static int __init
mxser_program_mode(int port
)
1429 id
= inb(port
+ 1) & 0x1F;
1430 if ((id
!= C168_ASIC_ID
) &&
1431 (id
!= C104_ASIC_ID
) &&
1432 (id
!= C102_ASIC_ID
) &&
1433 (id
!= CI132_ASIC_ID
) &&
1434 (id
!= CI134_ASIC_ID
) &&
1435 (id
!= CI104J_ASIC_ID
))
1437 for (i
= 0, j
= 0; i
< 4; i
++) {
1441 } else if ((j
== 1) && (n
== 1)) {
1452 static void __init
mxser_normal_mode(int port
)
1456 outb(0xA5, port
+ 1);
1457 outb(0x80, port
+ 3);
1458 outb(12, port
+ 0); /* 9600 bps */
1460 outb(0x03, port
+ 3); /* 8 data bits */
1461 outb(0x13, port
+ 4); /* loop back mode */
1462 for (i
= 0; i
< 16; i
++) {
1464 if ((n
& 0x61) == 0x60)
1469 outb(0x00, port
+ 4);
1472 #define CHIP_SK 0x01 /* Serial Data Clock in Eprom */
1473 #define CHIP_DO 0x02 /* Serial Data Output in Eprom */
1474 #define CHIP_CS 0x04 /* Serial Chip Select in Eprom */
1475 #define CHIP_DI 0x08 /* Serial Data Input in Eprom */
1476 #define EN_CCMD 0x000 /* Chip's command register */
1477 #define EN0_RSARLO 0x008 /* Remote start address reg 0 */
1478 #define EN0_RSARHI 0x009 /* Remote start address reg 1 */
1479 #define EN0_RCNTLO 0x00A /* Remote byte count reg WR */
1480 #define EN0_RCNTHI 0x00B /* Remote byte count reg WR */
1481 #define EN0_DCFG 0x00E /* Data configuration reg WR */
1482 #define EN0_PORT 0x010 /* Rcv missed frame error counter RD */
1483 #define ENC_PAGE0 0x000 /* Select page 0 of chip registers */
1484 #define ENC_PAGE3 0x0C0 /* Select page 3 of chip registers */
1485 static int __init
mxser_read_register(int port
, unsigned short *regs
)
1487 int i
, k
, value
, id
;
1490 id
= mxser_program_mode(port
);
1493 for (i
= 0; i
< 14; i
++) {
1494 k
= (i
& 0x3F) | 0x180;
1495 for (j
= 0x100; j
> 0; j
>>= 1) {
1496 outb(CHIP_CS
, port
);
1498 outb(CHIP_CS
| CHIP_DO
, port
);
1499 outb(CHIP_CS
| CHIP_DO
| CHIP_SK
, port
); /* A? bit of read */
1501 outb(CHIP_CS
, port
);
1502 outb(CHIP_CS
| CHIP_SK
, port
); /* A? bit of read */
1507 for (k
= 0, j
= 0x8000; k
< 16; k
++, j
>>= 1) {
1508 outb(CHIP_CS
, port
);
1509 outb(CHIP_CS
| CHIP_SK
, port
);
1510 if (inb(port
) & CHIP_DI
)
1516 mxser_normal_mode(port
);
1520 static int mxser_ioctl_special(unsigned int cmd
, void __user
*argp
)
1522 struct mxser_port
*port
;
1523 struct tty_struct
*tty
;
1529 case MOXA_GET_MAJOR
:
1530 if (printk_ratelimit())
1531 printk(KERN_WARNING
"mxser: '%s' uses deprecated ioctl "
1532 "%x (GET_MAJOR), fix your userspace\n",
1533 current
->comm
, cmd
);
1534 return put_user(ttymajor
, (int __user
*)argp
);
1536 case MOXA_CHKPORTENABLE
:
1539 for (i
= 0; i
< MXSER_BOARDS
; i
++)
1540 for (j
= 0; j
< MXSER_PORTS_PER_BOARD
; j
++)
1541 if (mxser_boards
[i
].ports
[j
].ioaddr
)
1544 return put_user(result
, (unsigned long __user
*)argp
);
1545 case MOXA_GETDATACOUNT
:
1547 if (copy_to_user(argp
, &mxvar_log
, sizeof(mxvar_log
)))
1551 case MOXA_GETMSTATUS
: {
1552 struct mxser_mstatus ms
, __user
*msu
= argp
;
1554 for (i
= 0; i
< MXSER_BOARDS
; i
++)
1555 for (j
= 0; j
< MXSER_PORTS_PER_BOARD
; j
++) {
1556 port
= &mxser_boards
[i
].ports
[j
];
1557 memset(&ms
, 0, sizeof(ms
));
1562 tty
= tty_port_tty_get(&port
->port
);
1564 if (!tty
|| !tty
->termios
)
1565 ms
.cflag
= port
->normal_termios
.c_cflag
;
1567 ms
.cflag
= tty
->termios
->c_cflag
;
1569 status
= inb(port
->ioaddr
+ UART_MSR
);
1570 if (status
& UART_MSR_DCD
)
1572 if (status
& UART_MSR_DSR
)
1574 if (status
& UART_MSR_CTS
)
1577 if (copy_to_user(msu
, &ms
, sizeof(ms
))) {
1586 case MOXA_ASPP_MON_EXT
: {
1587 struct mxser_mon_ext
*me
; /* it's 2k, stack unfriendly */
1588 unsigned int cflag
, iflag
, p
;
1591 me
= kzalloc(sizeof(*me
), GFP_KERNEL
);
1596 for (i
= 0, p
= 0; i
< MXSER_BOARDS
; i
++) {
1597 for (j
= 0; j
< MXSER_PORTS_PER_BOARD
; j
++, p
++) {
1598 if (p
>= ARRAY_SIZE(me
->rx_cnt
)) {
1602 port
= &mxser_boards
[i
].ports
[j
];
1606 status
= mxser_get_msr(port
->ioaddr
, 0, p
);
1608 if (status
& UART_MSR_TERI
)
1610 if (status
& UART_MSR_DDSR
)
1612 if (status
& UART_MSR_DDCD
)
1614 if (status
& UART_MSR_DCTS
)
1617 port
->mon_data
.modem_status
= status
;
1618 me
->rx_cnt
[p
] = port
->mon_data
.rxcnt
;
1619 me
->tx_cnt
[p
] = port
->mon_data
.txcnt
;
1620 me
->up_rxcnt
[p
] = port
->mon_data
.up_rxcnt
;
1621 me
->up_txcnt
[p
] = port
->mon_data
.up_txcnt
;
1622 me
->modem_status
[p
] =
1623 port
->mon_data
.modem_status
;
1624 tty
= tty_port_tty_get(&port
->port
);
1626 if (!tty
|| !tty
->termios
) {
1627 cflag
= port
->normal_termios
.c_cflag
;
1628 iflag
= port
->normal_termios
.c_iflag
;
1629 me
->baudrate
[p
] = tty_termios_baud_rate(&port
->normal_termios
);
1631 cflag
= tty
->termios
->c_cflag
;
1632 iflag
= tty
->termios
->c_iflag
;
1633 me
->baudrate
[p
] = tty_get_baud_rate(tty
);
1637 me
->databits
[p
] = cflag
& CSIZE
;
1638 me
->stopbits
[p
] = cflag
& CSTOPB
;
1639 me
->parity
[p
] = cflag
& (PARENB
| PARODD
|
1642 if (cflag
& CRTSCTS
)
1643 me
->flowctrl
[p
] |= 0x03;
1645 if (iflag
& (IXON
| IXOFF
))
1646 me
->flowctrl
[p
] |= 0x0C;
1648 if (port
->type
== PORT_16550A
)
1651 opmode
= inb(port
->opmode_ioaddr
) >>
1653 opmode
&= OP_MODE_MASK
;
1654 me
->iftype
[p
] = opmode
;
1658 if (copy_to_user(argp
, me
, sizeof(*me
)))
1664 return -ENOIOCTLCMD
;
1669 static int mxser_cflags_changed(struct mxser_port
*info
, unsigned long arg
,
1670 struct async_icount
*cprev
)
1672 struct async_icount cnow
;
1673 unsigned long flags
;
1676 spin_lock_irqsave(&info
->slock
, flags
);
1677 cnow
= info
->icount
; /* atomic copy */
1678 spin_unlock_irqrestore(&info
->slock
, flags
);
1680 ret
= ((arg
& TIOCM_RNG
) && (cnow
.rng
!= cprev
->rng
)) ||
1681 ((arg
& TIOCM_DSR
) && (cnow
.dsr
!= cprev
->dsr
)) ||
1682 ((arg
& TIOCM_CD
) && (cnow
.dcd
!= cprev
->dcd
)) ||
1683 ((arg
& TIOCM_CTS
) && (cnow
.cts
!= cprev
->cts
));
1690 static int mxser_ioctl(struct tty_struct
*tty
, struct file
*file
,
1691 unsigned int cmd
, unsigned long arg
)
1693 struct mxser_port
*info
= tty
->driver_data
;
1694 struct async_icount cnow
;
1695 unsigned long flags
;
1696 void __user
*argp
= (void __user
*)arg
;
1699 if (tty
->index
== MXSER_PORTS
)
1700 return mxser_ioctl_special(cmd
, argp
);
1702 if (cmd
== MOXA_SET_OP_MODE
|| cmd
== MOXA_GET_OP_MODE
) {
1704 unsigned long opmode
;
1705 static unsigned char ModeMask
[] = { 0xfc, 0xf3, 0xcf, 0x3f };
1707 unsigned char val
, mask
;
1710 if (cmd
== MOXA_SET_OP_MODE
) {
1711 if (get_user(opmode
, (int __user
*) argp
))
1713 if (opmode
!= RS232_MODE
&&
1714 opmode
!= RS485_2WIRE_MODE
&&
1715 opmode
!= RS422_MODE
&&
1716 opmode
!= RS485_4WIRE_MODE
)
1721 val
= inb(info
->opmode_ioaddr
);
1723 val
|= (opmode
<< shiftbit
);
1724 outb(val
, info
->opmode_ioaddr
);
1729 opmode
= inb(info
->opmode_ioaddr
) >> shiftbit
;
1730 opmode
&= OP_MODE_MASK
;
1732 if (put_user(opmode
, (int __user
*)argp
))
1738 if (cmd
!= TIOCGSERIAL
&& cmd
!= TIOCMIWAIT
&& cmd
!= TIOCGICOUNT
&&
1739 test_bit(TTY_IO_ERROR
, &tty
->flags
))
1745 retval
= mxser_get_serial_info(tty
, argp
);
1750 retval
= mxser_set_serial_info(tty
, argp
);
1753 case TIOCSERGETLSR
: /* Get line status register */
1754 return mxser_get_lsr_info(info
, argp
);
1756 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1757 * - mask passed in arg for lines of interest
1758 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1759 * Caller should use TIOCGICOUNT to see which one it was
1762 spin_lock_irqsave(&info
->slock
, flags
);
1763 cnow
= info
->icount
; /* note the counters on entry */
1764 spin_unlock_irqrestore(&info
->slock
, flags
);
1766 return wait_event_interruptible(info
->port
.delta_msr_wait
,
1767 mxser_cflags_changed(info
, arg
, &cnow
));
1769 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1770 * Return: write counters to the user passed counter struct
1771 * NB: both 1->0 and 0->1 transitions are counted except for
1772 * RI where only 0->1 is counted.
1775 struct serial_icounter_struct icnt
= { 0 };
1776 spin_lock_irqsave(&info
->slock
, flags
);
1777 cnow
= info
->icount
;
1778 spin_unlock_irqrestore(&info
->slock
, flags
);
1780 icnt
.frame
= cnow
.frame
;
1781 icnt
.brk
= cnow
.brk
;
1782 icnt
.overrun
= cnow
.overrun
;
1783 icnt
.buf_overrun
= cnow
.buf_overrun
;
1784 icnt
.parity
= cnow
.parity
;
1787 icnt
.cts
= cnow
.cts
;
1788 icnt
.dsr
= cnow
.dsr
;
1789 icnt
.rng
= cnow
.rng
;
1790 icnt
.dcd
= cnow
.dcd
;
1792 return copy_to_user(argp
, &icnt
, sizeof(icnt
)) ? -EFAULT
: 0;
1794 case MOXA_HighSpeedOn
:
1795 return put_user(info
->baud_base
!= 115200 ? 1 : 0, (int __user
*)argp
);
1796 case MOXA_SDS_RSTICOUNTER
:
1798 info
->mon_data
.rxcnt
= 0;
1799 info
->mon_data
.txcnt
= 0;
1803 case MOXA_ASPP_OQUEUE
:{
1807 len
= mxser_chars_in_buffer(tty
);
1808 lsr
= inb(info
->ioaddr
+ UART_LSR
) & UART_LSR_THRE
;
1809 len
+= (lsr
? 0 : 1);
1812 return put_user(len
, (int __user
*)argp
);
1814 case MOXA_ASPP_MON
: {
1818 status
= mxser_get_msr(info
->ioaddr
, 1, tty
->index
);
1819 mxser_check_modem_status(tty
, info
, status
);
1821 mcr
= inb(info
->ioaddr
+ UART_MCR
);
1822 if (mcr
& MOXA_MUST_MCR_XON_FLAG
)
1823 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_XOFFHOLD
;
1825 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_XOFFHOLD
;
1827 if (mcr
& MOXA_MUST_MCR_TX_XON
)
1828 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_XOFFXENT
;
1830 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_XOFFXENT
;
1832 if (tty
->hw_stopped
)
1833 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_CTSHOLD
;
1835 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_CTSHOLD
;
1837 if (copy_to_user(argp
, &info
->mon_data
,
1838 sizeof(struct mxser_mon
)))
1843 case MOXA_ASPP_LSTATUS
: {
1844 if (put_user(info
->err_shadow
, (unsigned char __user
*)argp
))
1847 info
->err_shadow
= 0;
1850 case MOXA_SET_BAUD_METHOD
: {
1853 if (get_user(method
, (int __user
*)argp
))
1855 mxser_set_baud_method
[tty
->index
] = method
;
1856 return put_user(method
, (int __user
*)argp
);
1859 return -ENOIOCTLCMD
;
1864 static void mxser_stoprx(struct tty_struct
*tty
)
1866 struct mxser_port
*info
= tty
->driver_data
;
1868 info
->ldisc_stop_rx
= 1;
1870 if (info
->board
->chip_flag
) {
1871 info
->IER
&= ~MOXA_MUST_RECV_ISR
;
1872 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1874 info
->x_char
= STOP_CHAR(tty
);
1875 outb(0, info
->ioaddr
+ UART_IER
);
1876 info
->IER
|= UART_IER_THRI
;
1877 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1881 if (tty
->termios
->c_cflag
& CRTSCTS
) {
1882 info
->MCR
&= ~UART_MCR_RTS
;
1883 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
1888 * This routine is called by the upper-layer tty layer to signal that
1889 * incoming characters should be throttled.
1891 static void mxser_throttle(struct tty_struct
*tty
)
1896 static void mxser_unthrottle(struct tty_struct
*tty
)
1898 struct mxser_port
*info
= tty
->driver_data
;
1901 info
->ldisc_stop_rx
= 0;
1906 if (info
->board
->chip_flag
) {
1907 info
->IER
|= MOXA_MUST_RECV_ISR
;
1908 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1910 info
->x_char
= START_CHAR(tty
);
1911 outb(0, info
->ioaddr
+ UART_IER
);
1912 info
->IER
|= UART_IER_THRI
;
1913 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1918 if (tty
->termios
->c_cflag
& CRTSCTS
) {
1919 info
->MCR
|= UART_MCR_RTS
;
1920 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
1925 * mxser_stop() and mxser_start()
1927 * This routines are called before setting or resetting tty->stopped.
1928 * They enable or disable transmitter interrupts, as necessary.
1930 static void mxser_stop(struct tty_struct
*tty
)
1932 struct mxser_port
*info
= tty
->driver_data
;
1933 unsigned long flags
;
1935 spin_lock_irqsave(&info
->slock
, flags
);
1936 if (info
->IER
& UART_IER_THRI
) {
1937 info
->IER
&= ~UART_IER_THRI
;
1938 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1940 spin_unlock_irqrestore(&info
->slock
, flags
);
1943 static void mxser_start(struct tty_struct
*tty
)
1945 struct mxser_port
*info
= tty
->driver_data
;
1946 unsigned long flags
;
1948 spin_lock_irqsave(&info
->slock
, flags
);
1949 if (info
->xmit_cnt
&& info
->port
.xmit_buf
) {
1950 outb(info
->IER
& ~UART_IER_THRI
, info
->ioaddr
+ UART_IER
);
1951 info
->IER
|= UART_IER_THRI
;
1952 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1954 spin_unlock_irqrestore(&info
->slock
, flags
);
1957 static void mxser_set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
)
1959 struct mxser_port
*info
= tty
->driver_data
;
1960 unsigned long flags
;
1962 spin_lock_irqsave(&info
->slock
, flags
);
1963 mxser_change_speed(tty
, old_termios
);
1964 spin_unlock_irqrestore(&info
->slock
, flags
);
1966 if ((old_termios
->c_cflag
& CRTSCTS
) &&
1967 !(tty
->termios
->c_cflag
& CRTSCTS
)) {
1968 tty
->hw_stopped
= 0;
1972 /* Handle sw stopped */
1973 if ((old_termios
->c_iflag
& IXON
) &&
1974 !(tty
->termios
->c_iflag
& IXON
)) {
1977 if (info
->board
->chip_flag
) {
1978 spin_lock_irqsave(&info
->slock
, flags
);
1979 mxser_disable_must_rx_software_flow_control(
1981 spin_unlock_irqrestore(&info
->slock
, flags
);
1989 * mxser_wait_until_sent() --- wait until the transmitter is empty
1991 static void mxser_wait_until_sent(struct tty_struct
*tty
, int timeout
)
1993 struct mxser_port
*info
= tty
->driver_data
;
1994 unsigned long orig_jiffies
, char_time
;
1997 if (info
->type
== PORT_UNKNOWN
)
2000 if (info
->xmit_fifo_size
== 0)
2001 return; /* Just in case.... */
2003 orig_jiffies
= jiffies
;
2005 * Set the check interval to be 1/5 of the estimated time to
2006 * send a single character, and make it at least 1. The check
2007 * interval should also be less than the timeout.
2009 * Note: we have to use pretty tight timings here to satisfy
2012 char_time
= (info
->timeout
- HZ
/ 50) / info
->xmit_fifo_size
;
2013 char_time
= char_time
/ 5;
2016 if (timeout
&& timeout
< char_time
)
2017 char_time
= timeout
;
2019 * If the transmitter hasn't cleared in twice the approximate
2020 * amount of time to send the entire FIFO, it probably won't
2021 * ever clear. This assumes the UART isn't doing flow
2022 * control, which is currently the case. Hence, if it ever
2023 * takes longer than info->timeout, this is probably due to a
2024 * UART bug of some kind. So, we clamp the timeout parameter at
2027 if (!timeout
|| timeout
> 2 * info
->timeout
)
2028 timeout
= 2 * info
->timeout
;
2029 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2030 printk(KERN_DEBUG
"In rs_wait_until_sent(%d) check=%lu...",
2031 timeout
, char_time
);
2032 printk("jiff=%lu...", jiffies
);
2035 while (!((lsr
= inb(info
->ioaddr
+ UART_LSR
)) & UART_LSR_TEMT
)) {
2036 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2037 printk("lsr = %d (jiff=%lu)...", lsr
, jiffies
);
2039 schedule_timeout_interruptible(char_time
);
2040 if (signal_pending(current
))
2042 if (timeout
&& time_after(jiffies
, orig_jiffies
+ timeout
))
2045 set_current_state(TASK_RUNNING
);
2048 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2049 printk("lsr = %d (jiff=%lu)...done\n", lsr
, jiffies
);
2054 * This routine is called by tty_hangup() when a hangup is signaled.
2056 static void mxser_hangup(struct tty_struct
*tty
)
2058 struct mxser_port
*info
= tty
->driver_data
;
2060 mxser_flush_buffer(tty
);
2061 mxser_shutdown(tty
);
2062 tty_port_hangup(&info
->port
);
2066 * mxser_rs_break() --- routine which turns the break handling on or off
2068 static int mxser_rs_break(struct tty_struct
*tty
, int break_state
)
2070 struct mxser_port
*info
= tty
->driver_data
;
2071 unsigned long flags
;
2073 spin_lock_irqsave(&info
->slock
, flags
);
2074 if (break_state
== -1)
2075 outb(inb(info
->ioaddr
+ UART_LCR
) | UART_LCR_SBC
,
2076 info
->ioaddr
+ UART_LCR
);
2078 outb(inb(info
->ioaddr
+ UART_LCR
) & ~UART_LCR_SBC
,
2079 info
->ioaddr
+ UART_LCR
);
2080 spin_unlock_irqrestore(&info
->slock
, flags
);
2084 static void mxser_receive_chars(struct tty_struct
*tty
,
2085 struct mxser_port
*port
, int *status
)
2087 unsigned char ch
, gdl
;
2093 recv_room
= tty
->receive_room
;
2094 if (recv_room
== 0 && !port
->ldisc_stop_rx
)
2096 if (port
->board
->chip_flag
!= MOXA_OTHER_UART
) {
2098 if (*status
& UART_LSR_SPECIAL
)
2100 if (port
->board
->chip_flag
== MOXA_MUST_MU860_HWID
&&
2101 (*status
& MOXA_MUST_LSR_RERR
))
2103 if (*status
& MOXA_MUST_LSR_RERR
)
2106 gdl
= inb(port
->ioaddr
+ MOXA_MUST_GDL_REGISTER
);
2108 if (port
->board
->chip_flag
== MOXA_MUST_MU150_HWID
)
2109 gdl
&= MOXA_MUST_GDL_MASK
;
2110 if (gdl
>= recv_room
) {
2111 if (!port
->ldisc_stop_rx
)
2115 ch
= inb(port
->ioaddr
+ UART_RX
);
2116 tty_insert_flip_char(tty
, ch
, 0);
2127 ch
= inb(port
->ioaddr
+ UART_RX
);
2128 if (port
->board
->chip_flag
&& (*status
& UART_LSR_OE
))
2129 outb(0x23, port
->ioaddr
+ UART_FCR
);
2130 *status
&= port
->read_status_mask
;
2131 if (*status
& port
->ignore_status_mask
) {
2132 if (++ignored
> 100)
2136 if (*status
& UART_LSR_SPECIAL
) {
2137 if (*status
& UART_LSR_BI
) {
2141 if (port
->port
.flags
& ASYNC_SAK
)
2143 } else if (*status
& UART_LSR_PE
) {
2145 port
->icount
.parity
++;
2146 } else if (*status
& UART_LSR_FE
) {
2148 port
->icount
.frame
++;
2149 } else if (*status
& UART_LSR_OE
) {
2151 port
->icount
.overrun
++;
2155 tty_insert_flip_char(tty
, ch
, flag
);
2157 if (cnt
>= recv_room
) {
2158 if (!port
->ldisc_stop_rx
)
2165 if (port
->board
->chip_flag
)
2168 *status
= inb(port
->ioaddr
+ UART_LSR
);
2169 } while (*status
& UART_LSR_DR
);
2172 mxvar_log
.rxcnt
[tty
->index
] += cnt
;
2173 port
->mon_data
.rxcnt
+= cnt
;
2174 port
->mon_data
.up_rxcnt
+= cnt
;
2177 * We are called from an interrupt context with &port->slock
2178 * being held. Drop it temporarily in order to prevent
2179 * recursive locking.
2181 spin_unlock(&port
->slock
);
2182 tty_flip_buffer_push(tty
);
2183 spin_lock(&port
->slock
);
2186 static void mxser_transmit_chars(struct tty_struct
*tty
, struct mxser_port
*port
)
2191 outb(port
->x_char
, port
->ioaddr
+ UART_TX
);
2193 mxvar_log
.txcnt
[tty
->index
]++;
2194 port
->mon_data
.txcnt
++;
2195 port
->mon_data
.up_txcnt
++;
2200 if (port
->port
.xmit_buf
== NULL
)
2203 if (port
->xmit_cnt
<= 0 || tty
->stopped
||
2205 (port
->type
!= PORT_16550A
) &&
2206 (!port
->board
->chip_flag
))) {
2207 port
->IER
&= ~UART_IER_THRI
;
2208 outb(port
->IER
, port
->ioaddr
+ UART_IER
);
2212 cnt
= port
->xmit_cnt
;
2213 count
= port
->xmit_fifo_size
;
2215 outb(port
->port
.xmit_buf
[port
->xmit_tail
++],
2216 port
->ioaddr
+ UART_TX
);
2217 port
->xmit_tail
= port
->xmit_tail
& (SERIAL_XMIT_SIZE
- 1);
2218 if (--port
->xmit_cnt
<= 0)
2220 } while (--count
> 0);
2221 mxvar_log
.txcnt
[tty
->index
] += (cnt
- port
->xmit_cnt
);
2223 port
->mon_data
.txcnt
+= (cnt
- port
->xmit_cnt
);
2224 port
->mon_data
.up_txcnt
+= (cnt
- port
->xmit_cnt
);
2225 port
->icount
.tx
+= (cnt
- port
->xmit_cnt
);
2227 if (port
->xmit_cnt
< WAKEUP_CHARS
&& tty
)
2230 if (port
->xmit_cnt
<= 0) {
2231 port
->IER
&= ~UART_IER_THRI
;
2232 outb(port
->IER
, port
->ioaddr
+ UART_IER
);
2237 * This is the serial driver's generic interrupt routine
2239 static irqreturn_t
mxser_interrupt(int irq
, void *dev_id
)
2242 struct mxser_board
*brd
= NULL
;
2243 struct mxser_port
*port
;
2244 int max
, irqbits
, bits
, msr
;
2245 unsigned int int_cnt
, pass_counter
= 0;
2246 int handled
= IRQ_NONE
;
2247 struct tty_struct
*tty
;
2249 for (i
= 0; i
< MXSER_BOARDS
; i
++)
2250 if (dev_id
== &mxser_boards
[i
]) {
2255 if (i
== MXSER_BOARDS
)
2259 max
= brd
->info
->nports
;
2260 while (pass_counter
++ < MXSER_ISR_PASS_LIMIT
) {
2261 irqbits
= inb(brd
->vector
) & brd
->vector_mask
;
2262 if (irqbits
== brd
->vector_mask
)
2265 handled
= IRQ_HANDLED
;
2266 for (i
= 0, bits
= 1; i
< max
; i
++, irqbits
|= bits
, bits
<<= 1) {
2267 if (irqbits
== brd
->vector_mask
)
2271 port
= &brd
->ports
[i
];
2274 spin_lock(&port
->slock
);
2276 iir
= inb(port
->ioaddr
+ UART_IIR
);
2277 if (iir
& UART_IIR_NO_INT
)
2279 iir
&= MOXA_MUST_IIR_MASK
;
2280 tty
= tty_port_tty_get(&port
->port
);
2282 (port
->port
.flags
& ASYNC_CLOSING
) ||
2283 !(port
->port
.flags
&
2284 ASYNC_INITIALIZED
)) {
2285 status
= inb(port
->ioaddr
+ UART_LSR
);
2286 outb(0x27, port
->ioaddr
+ UART_FCR
);
2287 inb(port
->ioaddr
+ UART_MSR
);
2292 status
= inb(port
->ioaddr
+ UART_LSR
);
2294 if (status
& UART_LSR_PE
)
2295 port
->err_shadow
|= NPPI_NOTIFY_PARITY
;
2296 if (status
& UART_LSR_FE
)
2297 port
->err_shadow
|= NPPI_NOTIFY_FRAMING
;
2298 if (status
& UART_LSR_OE
)
2300 NPPI_NOTIFY_HW_OVERRUN
;
2301 if (status
& UART_LSR_BI
)
2302 port
->err_shadow
|= NPPI_NOTIFY_BREAK
;
2304 if (port
->board
->chip_flag
) {
2305 if (iir
== MOXA_MUST_IIR_GDA
||
2306 iir
== MOXA_MUST_IIR_RDA
||
2307 iir
== MOXA_MUST_IIR_RTO
||
2308 iir
== MOXA_MUST_IIR_LSR
)
2309 mxser_receive_chars(tty
, port
,
2313 status
&= port
->read_status_mask
;
2314 if (status
& UART_LSR_DR
)
2315 mxser_receive_chars(tty
, port
,
2318 msr
= inb(port
->ioaddr
+ UART_MSR
);
2319 if (msr
& UART_MSR_ANY_DELTA
)
2320 mxser_check_modem_status(tty
, port
, msr
);
2322 if (port
->board
->chip_flag
) {
2323 if (iir
== 0x02 && (status
&
2325 mxser_transmit_chars(tty
, port
);
2327 if (status
& UART_LSR_THRE
)
2328 mxser_transmit_chars(tty
, port
);
2331 } while (int_cnt
++ < MXSER_ISR_PASS_LIMIT
);
2332 spin_unlock(&port
->slock
);
2340 static const struct tty_operations mxser_ops
= {
2342 .close
= mxser_close
,
2343 .write
= mxser_write
,
2344 .put_char
= mxser_put_char
,
2345 .flush_chars
= mxser_flush_chars
,
2346 .write_room
= mxser_write_room
,
2347 .chars_in_buffer
= mxser_chars_in_buffer
,
2348 .flush_buffer
= mxser_flush_buffer
,
2349 .ioctl
= mxser_ioctl
,
2350 .throttle
= mxser_throttle
,
2351 .unthrottle
= mxser_unthrottle
,
2352 .set_termios
= mxser_set_termios
,
2354 .start
= mxser_start
,
2355 .hangup
= mxser_hangup
,
2356 .break_ctl
= mxser_rs_break
,
2357 .wait_until_sent
= mxser_wait_until_sent
,
2358 .tiocmget
= mxser_tiocmget
,
2359 .tiocmset
= mxser_tiocmset
,
2362 struct tty_port_operations mxser_port_ops
= {
2363 .carrier_raised
= mxser_carrier_raised
,
2364 .dtr_rts
= mxser_dtr_rts
,
2368 * The MOXA Smartio/Industio serial driver boot-time initialization code!
2371 static void mxser_release_res(struct mxser_board
*brd
, struct pci_dev
*pdev
,
2375 free_irq(brd
->irq
, brd
);
2376 if (pdev
!= NULL
) { /* PCI */
2378 pci_release_region(pdev
, 2);
2379 pci_release_region(pdev
, 3);
2382 release_region(brd
->ports
[0].ioaddr
, 8 * brd
->info
->nports
);
2383 release_region(brd
->vector
, 1);
2387 static int __devinit
mxser_initbrd(struct mxser_board
*brd
,
2388 struct pci_dev
*pdev
)
2390 struct mxser_port
*info
;
2394 printk(KERN_INFO
"mxser: max. baud rate = %d bps\n",
2395 brd
->ports
[0].max_baud
);
2397 for (i
= 0; i
< brd
->info
->nports
; i
++) {
2398 info
= &brd
->ports
[i
];
2399 tty_port_init(&info
->port
);
2400 info
->port
.ops
= &mxser_port_ops
;
2403 info
->ldisc_stop_rx
= 0;
2405 /* Enhance mode enabled here */
2406 if (brd
->chip_flag
!= MOXA_OTHER_UART
)
2407 mxser_enable_must_enchance_mode(info
->ioaddr
);
2409 info
->port
.flags
= ASYNC_SHARE_IRQ
;
2410 info
->type
= brd
->uart_type
;
2412 process_txrx_fifo(info
);
2414 info
->custom_divisor
= info
->baud_base
* 16;
2415 info
->port
.close_delay
= 5 * HZ
/ 10;
2416 info
->port
.closing_wait
= 30 * HZ
;
2417 info
->normal_termios
= mxvar_sdriver
->init_termios
;
2418 memset(&info
->mon_data
, 0, sizeof(struct mxser_mon
));
2419 info
->err_shadow
= 0;
2420 spin_lock_init(&info
->slock
);
2422 /* before set INT ISR, disable all int */
2423 outb(inb(info
->ioaddr
+ UART_IER
) & 0xf0,
2424 info
->ioaddr
+ UART_IER
);
2427 retval
= request_irq(brd
->irq
, mxser_interrupt
, IRQF_SHARED
, "mxser",
2430 printk(KERN_ERR
"Board %s: Request irq failed, IRQ (%d) may "
2431 "conflict with another device.\n",
2432 brd
->info
->name
, brd
->irq
);
2433 /* We hold resources, we need to release them. */
2434 mxser_release_res(brd
, pdev
, 0);
2439 static int __init
mxser_get_ISA_conf(int cap
, struct mxser_board
*brd
)
2442 unsigned short regs
[16], irq
;
2443 unsigned char scratch
, scratch2
;
2445 brd
->chip_flag
= MOXA_OTHER_UART
;
2447 id
= mxser_read_register(cap
, regs
);
2450 brd
->info
= &mxser_cards
[0];
2453 brd
->info
= &mxser_cards
[1];
2455 case CI104J_ASIC_ID
:
2456 brd
->info
= &mxser_cards
[2];
2459 brd
->info
= &mxser_cards
[5];
2462 brd
->info
= &mxser_cards
[6];
2465 brd
->info
= &mxser_cards
[7];
2472 /* some ISA cards have 2 ports, but we want to see them as 4-port (why?)
2473 Flag-hack checks if configuration should be read as 2-port here. */
2474 if (brd
->info
->nports
== 2 || (brd
->info
->flags
& MXSER_HAS2
)) {
2475 irq
= regs
[9] & 0xF000;
2476 irq
= irq
| (irq
>> 4);
2477 if (irq
!= (regs
[9] & 0xFF00))
2478 goto err_irqconflict
;
2479 } else if (brd
->info
->nports
== 4) {
2480 irq
= regs
[9] & 0xF000;
2481 irq
= irq
| (irq
>> 4);
2482 irq
= irq
| (irq
>> 8);
2484 goto err_irqconflict
;
2485 } else if (brd
->info
->nports
== 8) {
2486 irq
= regs
[9] & 0xF000;
2487 irq
= irq
| (irq
>> 4);
2488 irq
= irq
| (irq
>> 8);
2489 if ((irq
!= regs
[9]) || (irq
!= regs
[10]))
2490 goto err_irqconflict
;
2494 printk(KERN_ERR
"mxser: interrupt number unset\n");
2497 brd
->irq
= ((int)(irq
& 0xF000) >> 12);
2498 for (i
= 0; i
< 8; i
++)
2499 brd
->ports
[i
].ioaddr
= (int) regs
[i
+ 1] & 0xFFF8;
2500 if ((regs
[12] & 0x80) == 0) {
2501 printk(KERN_ERR
"mxser: invalid interrupt vector\n");
2504 brd
->vector
= (int)regs
[11]; /* interrupt vector */
2506 brd
->vector_mask
= 0x00FF;
2508 brd
->vector_mask
= 0x000F;
2509 for (i
= 7, bits
= 0x0100; i
>= 0; i
--, bits
<<= 1) {
2510 if (regs
[12] & bits
) {
2511 brd
->ports
[i
].baud_base
= 921600;
2512 brd
->ports
[i
].max_baud
= 921600;
2514 brd
->ports
[i
].baud_base
= 115200;
2515 brd
->ports
[i
].max_baud
= 115200;
2518 scratch2
= inb(cap
+ UART_LCR
) & (~UART_LCR_DLAB
);
2519 outb(scratch2
| UART_LCR_DLAB
, cap
+ UART_LCR
);
2520 outb(0, cap
+ UART_EFR
); /* EFR is the same as FCR */
2521 outb(scratch2
, cap
+ UART_LCR
);
2522 outb(UART_FCR_ENABLE_FIFO
, cap
+ UART_FCR
);
2523 scratch
= inb(cap
+ UART_IIR
);
2526 brd
->uart_type
= PORT_16550A
;
2528 brd
->uart_type
= PORT_16450
;
2529 if (!request_region(brd
->ports
[0].ioaddr
, 8 * brd
->info
->nports
,
2531 printk(KERN_ERR
"mxser: can't request ports I/O region: "
2532 "0x%.8lx-0x%.8lx\n",
2533 brd
->ports
[0].ioaddr
, brd
->ports
[0].ioaddr
+
2534 8 * brd
->info
->nports
- 1);
2537 if (!request_region(brd
->vector
, 1, "mxser(vector)")) {
2538 release_region(brd
->ports
[0].ioaddr
, 8 * brd
->info
->nports
);
2539 printk(KERN_ERR
"mxser: can't request interrupt vector region: "
2540 "0x%.8lx-0x%.8lx\n",
2541 brd
->ports
[0].ioaddr
, brd
->ports
[0].ioaddr
+
2542 8 * brd
->info
->nports
- 1);
2545 return brd
->info
->nports
;
2548 printk(KERN_ERR
"mxser: invalid interrupt number\n");
2552 static int __devinit
mxser_probe(struct pci_dev
*pdev
,
2553 const struct pci_device_id
*ent
)
2556 struct mxser_board
*brd
;
2558 unsigned long ioaddress
;
2559 int retval
= -EINVAL
;
2561 for (i
= 0; i
< MXSER_BOARDS
; i
++)
2562 if (mxser_boards
[i
].info
== NULL
)
2565 if (i
>= MXSER_BOARDS
) {
2566 dev_err(&pdev
->dev
, "too many boards found (maximum %d), board "
2567 "not configured\n", MXSER_BOARDS
);
2571 brd
= &mxser_boards
[i
];
2572 brd
->idx
= i
* MXSER_PORTS_PER_BOARD
;
2573 dev_info(&pdev
->dev
, "found MOXA %s board (BusNo=%d, DevNo=%d)\n",
2574 mxser_cards
[ent
->driver_data
].name
,
2575 pdev
->bus
->number
, PCI_SLOT(pdev
->devfn
));
2577 retval
= pci_enable_device(pdev
);
2579 dev_err(&pdev
->dev
, "PCI enable failed\n");
2584 ioaddress
= pci_resource_start(pdev
, 2);
2585 retval
= pci_request_region(pdev
, 2, "mxser(IO)");
2589 brd
->info
= &mxser_cards
[ent
->driver_data
];
2590 for (i
= 0; i
< brd
->info
->nports
; i
++)
2591 brd
->ports
[i
].ioaddr
= ioaddress
+ 8 * i
;
2594 ioaddress
= pci_resource_start(pdev
, 3);
2595 retval
= pci_request_region(pdev
, 3, "mxser(vector)");
2598 brd
->vector
= ioaddress
;
2601 brd
->irq
= pdev
->irq
;
2603 brd
->chip_flag
= CheckIsMoxaMust(brd
->ports
[0].ioaddr
);
2604 brd
->uart_type
= PORT_16550A
;
2605 brd
->vector_mask
= 0;
2607 for (i
= 0; i
< brd
->info
->nports
; i
++) {
2608 for (j
= 0; j
< UART_INFO_NUM
; j
++) {
2609 if (Gpci_uart_info
[j
].type
== brd
->chip_flag
) {
2610 brd
->ports
[i
].max_baud
=
2611 Gpci_uart_info
[j
].max_baud
;
2613 /* exception....CP-102 */
2614 if (brd
->info
->flags
& MXSER_HIGHBAUD
)
2615 brd
->ports
[i
].max_baud
= 921600;
2621 if (brd
->chip_flag
== MOXA_MUST_MU860_HWID
) {
2622 for (i
= 0; i
< brd
->info
->nports
; i
++) {
2624 brd
->ports
[i
].opmode_ioaddr
= ioaddress
+ 4;
2626 brd
->ports
[i
].opmode_ioaddr
= ioaddress
+ 0x0c;
2628 outb(0, ioaddress
+ 4); /* default set to RS232 mode */
2629 outb(0, ioaddress
+ 0x0c); /* default set to RS232 mode */
2632 for (i
= 0; i
< brd
->info
->nports
; i
++) {
2633 brd
->vector_mask
|= (1 << i
);
2634 brd
->ports
[i
].baud_base
= 921600;
2637 /* mxser_initbrd will hook ISR. */
2638 retval
= mxser_initbrd(brd
, pdev
);
2642 for (i
= 0; i
< brd
->info
->nports
; i
++)
2643 tty_register_device(mxvar_sdriver
, brd
->idx
+ i
, &pdev
->dev
);
2645 pci_set_drvdata(pdev
, brd
);
2649 pci_release_region(pdev
, 2);
2659 static void __devexit
mxser_remove(struct pci_dev
*pdev
)
2661 struct mxser_board
*brd
= pci_get_drvdata(pdev
);
2664 for (i
= 0; i
< brd
->info
->nports
; i
++)
2665 tty_unregister_device(mxvar_sdriver
, brd
->idx
+ i
);
2667 mxser_release_res(brd
, pdev
, 1);
2671 static struct pci_driver mxser_driver
= {
2673 .id_table
= mxser_pcibrds
,
2674 .probe
= mxser_probe
,
2675 .remove
= __devexit_p(mxser_remove
)
2678 static int __init
mxser_module_init(void)
2680 struct mxser_board
*brd
;
2681 unsigned int b
, i
, m
;
2684 mxvar_sdriver
= alloc_tty_driver(MXSER_PORTS
+ 1);
2688 printk(KERN_INFO
"MOXA Smartio/Industio family driver version %s\n",
2691 /* Initialize the tty_driver structure */
2692 mxvar_sdriver
->owner
= THIS_MODULE
;
2693 mxvar_sdriver
->magic
= TTY_DRIVER_MAGIC
;
2694 mxvar_sdriver
->name
= "ttyMI";
2695 mxvar_sdriver
->major
= ttymajor
;
2696 mxvar_sdriver
->minor_start
= 0;
2697 mxvar_sdriver
->num
= MXSER_PORTS
+ 1;
2698 mxvar_sdriver
->type
= TTY_DRIVER_TYPE_SERIAL
;
2699 mxvar_sdriver
->subtype
= SERIAL_TYPE_NORMAL
;
2700 mxvar_sdriver
->init_termios
= tty_std_termios
;
2701 mxvar_sdriver
->init_termios
.c_cflag
= B9600
|CS8
|CREAD
|HUPCL
|CLOCAL
;
2702 mxvar_sdriver
->flags
= TTY_DRIVER_REAL_RAW
|TTY_DRIVER_DYNAMIC_DEV
;
2703 tty_set_operations(mxvar_sdriver
, &mxser_ops
);
2705 retval
= tty_register_driver(mxvar_sdriver
);
2707 printk(KERN_ERR
"Couldn't install MOXA Smartio/Industio family "
2712 /* Start finding ISA boards here */
2713 for (m
= 0, b
= 0; b
< MXSER_BOARDS
; b
++) {
2717 brd
= &mxser_boards
[m
];
2718 retval
= mxser_get_ISA_conf(ioaddr
[b
], brd
);
2724 printk(KERN_INFO
"mxser: found MOXA %s board (CAP=0x%lx)\n",
2725 brd
->info
->name
, ioaddr
[b
]);
2727 /* mxser_initbrd will hook ISR. */
2728 if (mxser_initbrd(brd
, NULL
) < 0) {
2733 brd
->idx
= m
* MXSER_PORTS_PER_BOARD
;
2734 for (i
= 0; i
< brd
->info
->nports
; i
++)
2735 tty_register_device(mxvar_sdriver
, brd
->idx
+ i
, NULL
);
2740 retval
= pci_register_driver(&mxser_driver
);
2742 printk(KERN_ERR
"mxser: can't register pci driver\n");
2746 } /* else: we have some ISA cards under control */
2751 tty_unregister_driver(mxvar_sdriver
);
2753 put_tty_driver(mxvar_sdriver
);
2757 static void __exit
mxser_module_exit(void)
2761 pci_unregister_driver(&mxser_driver
);
2763 for (i
= 0; i
< MXSER_BOARDS
; i
++) /* ISA remains */
2764 if (mxser_boards
[i
].info
!= NULL
)
2765 for (j
= 0; j
< mxser_boards
[i
].info
->nports
; j
++)
2766 tty_unregister_device(mxvar_sdriver
,
2767 mxser_boards
[i
].idx
+ j
);
2768 tty_unregister_driver(mxvar_sdriver
);
2769 put_tty_driver(mxvar_sdriver
);
2771 for (i
= 0; i
< MXSER_BOARDS
; i
++)
2772 if (mxser_boards
[i
].info
!= NULL
)
2773 mxser_release_res(&mxser_boards
[i
], NULL
, 1);
2776 module_init(mxser_module_init
);
2777 module_exit(mxser_module_exit
);