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/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>
50 #define MXSER_VERSION "2.0.4" /* 1.12 */
51 #define MXSERMAJOR 174
53 #define MXSER_BOARDS 4 /* Max. boards */
54 #define MXSER_PORTS_PER_BOARD 8 /* Max. ports per board */
55 #define MXSER_PORTS (MXSER_BOARDS * MXSER_PORTS_PER_BOARD)
56 #define MXSER_ISR_PASS_LIMIT 100
58 /*CheckIsMoxaMust return value*/
59 #define MOXA_OTHER_UART 0x00
60 #define MOXA_MUST_MU150_HWID 0x01
61 #define MOXA_MUST_MU860_HWID 0x02
63 #define WAKEUP_CHARS 256
65 #define UART_MCR_AFE 0x20
66 #define UART_LSR_SPECIAL 0x1E
68 #define PCI_DEVICE_ID_POS104UL 0x1044
69 #define PCI_DEVICE_ID_CB108 0x1080
70 #define PCI_DEVICE_ID_CP102UF 0x1023
71 #define PCI_DEVICE_ID_CB114 0x1142
72 #define PCI_DEVICE_ID_CP114UL 0x1143
73 #define PCI_DEVICE_ID_CB134I 0x1341
74 #define PCI_DEVICE_ID_CP138U 0x1380
77 #define C168_ASIC_ID 1
78 #define C104_ASIC_ID 2
79 #define C102_ASIC_ID 0xB
80 #define CI132_ASIC_ID 4
81 #define CI134_ASIC_ID 3
82 #define CI104J_ASIC_ID 5
84 #define MXSER_HIGHBAUD 1
87 /* This is only for PCI */
97 } Gpci_uart_info
[] = {
98 {MOXA_OTHER_UART
, 16, 16, 16, 14, 14, 1, 921600L},
99 {MOXA_MUST_MU150_HWID
, 64, 64, 64, 48, 48, 16, 230400L},
100 {MOXA_MUST_MU860_HWID
, 128, 128, 128, 96, 96, 32, 921600L}
102 #define UART_INFO_NUM ARRAY_SIZE(Gpci_uart_info)
104 struct mxser_cardinfo
{
110 static const struct mxser_cardinfo mxser_cards
[] = {
111 /* 0*/ { "C168 series", 8, },
112 { "C104 series", 4, },
113 { "CI-104J series", 4, },
114 { "C168H/PCI series", 8, },
115 { "C104H/PCI series", 4, },
116 /* 5*/ { "C102 series", 4, MXSER_HAS2
}, /* C102-ISA */
117 { "CI-132 series", 4, MXSER_HAS2
},
118 { "CI-134 series", 4, },
119 { "CP-132 series", 2, },
120 { "CP-114 series", 4, },
121 /*10*/ { "CT-114 series", 4, },
122 { "CP-102 series", 2, MXSER_HIGHBAUD
},
123 { "CP-104U series", 4, },
124 { "CP-168U series", 8, },
125 { "CP-132U series", 2, },
126 /*15*/ { "CP-134U series", 4, },
127 { "CP-104JU series", 4, },
128 { "Moxa UC7000 Serial", 8, }, /* RC7000 */
129 { "CP-118U series", 8, },
130 { "CP-102UL series", 2, },
131 /*20*/ { "CP-102U series", 2, },
132 { "CP-118EL series", 8, },
133 { "CP-168EL series", 8, },
134 { "CP-104EL series", 4, },
135 { "CB-108 series", 8, },
136 /*25*/ { "CB-114 series", 4, },
137 { "CB-134I series", 4, },
138 { "CP-138U series", 8, },
139 { "POS-104UL series", 4, },
140 { "CP-114UL series", 4, },
141 /*30*/ { "CP-102UF series", 2, }
144 /* driver_data correspond to the lines in the structure above
145 see also ISA probe function before you change something */
146 static struct pci_device_id mxser_pcibrds
[] = {
147 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_C168
), .driver_data
= 3 },
148 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_C104
), .driver_data
= 4 },
149 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP132
), .driver_data
= 8 },
150 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP114
), .driver_data
= 9 },
151 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CT114
), .driver_data
= 10 },
152 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP102
), .driver_data
= 11 },
153 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP104U
), .driver_data
= 12 },
154 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP168U
), .driver_data
= 13 },
155 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP132U
), .driver_data
= 14 },
156 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP134U
), .driver_data
= 15 },
157 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP104JU
),.driver_data
= 16 },
158 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_RC7000
), .driver_data
= 17 },
159 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP118U
), .driver_data
= 18 },
160 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP102UL
),.driver_data
= 19 },
161 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP102U
), .driver_data
= 20 },
162 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP118EL
),.driver_data
= 21 },
163 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP168EL
),.driver_data
= 22 },
164 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_MOXA_CP104EL
),.driver_data
= 23 },
165 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CB108
), .driver_data
= 24 },
166 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CB114
), .driver_data
= 25 },
167 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CB134I
), .driver_data
= 26 },
168 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CP138U
), .driver_data
= 27 },
169 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_POS104UL
), .driver_data
= 28 },
170 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CP114UL
), .driver_data
= 29 },
171 { PCI_VDEVICE(MOXA
, PCI_DEVICE_ID_CP102UF
), .driver_data
= 30 },
174 MODULE_DEVICE_TABLE(pci
, mxser_pcibrds
);
176 static unsigned long ioaddr
[MXSER_BOARDS
];
177 static int ttymajor
= MXSERMAJOR
;
179 /* Variables for insmod */
181 MODULE_AUTHOR("Casper Yang");
182 MODULE_DESCRIPTION("MOXA Smartio/Industio Family Multiport Board Device Driver");
183 module_param_array(ioaddr
, ulong
, NULL
, 0);
184 MODULE_PARM_DESC(ioaddr
, "ISA io addresses to look for a moxa board");
185 module_param(ttymajor
, int, 0);
186 MODULE_LICENSE("GPL");
190 unsigned long rxcnt
[MXSER_PORTS
];
191 unsigned long txcnt
[MXSER_PORTS
];
197 unsigned long up_rxcnt
;
198 unsigned long up_txcnt
;
200 unsigned char hold_reason
;
203 struct mxser_mon_ext
{
204 unsigned long rx_cnt
[32];
205 unsigned long tx_cnt
[32];
206 unsigned long up_rxcnt
[32];
207 unsigned long up_txcnt
[32];
208 int modem_status
[32];
222 struct tty_port port
;
223 struct mxser_board
*board
;
225 unsigned long ioaddr
;
226 unsigned long opmode_ioaddr
;
230 int rx_trigger
; /* Rx fifo trigger level */
232 int baud_base
; /* max. speed */
233 int type
; /* UART type */
235 int x_char
; /* xon/xoff character */
236 int IER
; /* Interrupt Enable Register */
237 int MCR
; /* Modem control register */
239 unsigned char stop_rx
;
240 unsigned char ldisc_stop_rx
;
243 unsigned char err_shadow
;
245 struct async_icount icount
; /* kernel counters for 4 input interrupts */
248 int read_status_mask
;
249 int ignore_status_mask
;
255 struct ktermios normal_termios
;
257 struct mxser_mon mon_data
;
260 wait_queue_head_t delta_msr_wait
;
266 const struct mxser_cardinfo
*info
;
267 unsigned long vector
;
268 unsigned long vector_mask
;
273 struct mxser_port ports
[MXSER_PORTS_PER_BOARD
];
276 struct mxser_mstatus
{
284 static struct mxser_board mxser_boards
[MXSER_BOARDS
];
285 static struct tty_driver
*mxvar_sdriver
;
286 static struct mxser_log mxvar_log
;
287 static int mxser_set_baud_method
[MXSER_PORTS
+ 1];
289 static void mxser_enable_must_enchance_mode(unsigned long baseio
)
294 oldlcr
= inb(baseio
+ UART_LCR
);
295 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
297 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
298 efr
|= MOXA_MUST_EFR_EFRB_ENABLE
;
300 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
301 outb(oldlcr
, baseio
+ UART_LCR
);
304 static void mxser_disable_must_enchance_mode(unsigned long baseio
)
309 oldlcr
= inb(baseio
+ UART_LCR
);
310 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
312 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
313 efr
&= ~MOXA_MUST_EFR_EFRB_ENABLE
;
315 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
316 outb(oldlcr
, baseio
+ UART_LCR
);
319 static void mxser_set_must_xon1_value(unsigned long baseio
, u8 value
)
324 oldlcr
= inb(baseio
+ UART_LCR
);
325 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
327 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
328 efr
&= ~MOXA_MUST_EFR_BANK_MASK
;
329 efr
|= MOXA_MUST_EFR_BANK0
;
331 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
332 outb(value
, baseio
+ MOXA_MUST_XON1_REGISTER
);
333 outb(oldlcr
, baseio
+ UART_LCR
);
336 static void mxser_set_must_xoff1_value(unsigned long baseio
, u8 value
)
341 oldlcr
= inb(baseio
+ UART_LCR
);
342 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
344 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
345 efr
&= ~MOXA_MUST_EFR_BANK_MASK
;
346 efr
|= MOXA_MUST_EFR_BANK0
;
348 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
349 outb(value
, baseio
+ MOXA_MUST_XOFF1_REGISTER
);
350 outb(oldlcr
, baseio
+ UART_LCR
);
353 static void mxser_set_must_fifo_value(struct mxser_port
*info
)
358 oldlcr
= inb(info
->ioaddr
+ UART_LCR
);
359 outb(MOXA_MUST_ENTER_ENCHANCE
, info
->ioaddr
+ UART_LCR
);
361 efr
= inb(info
->ioaddr
+ MOXA_MUST_EFR_REGISTER
);
362 efr
&= ~MOXA_MUST_EFR_BANK_MASK
;
363 efr
|= MOXA_MUST_EFR_BANK1
;
365 outb(efr
, info
->ioaddr
+ MOXA_MUST_EFR_REGISTER
);
366 outb((u8
)info
->rx_high_water
, info
->ioaddr
+ MOXA_MUST_RBRTH_REGISTER
);
367 outb((u8
)info
->rx_trigger
, info
->ioaddr
+ MOXA_MUST_RBRTI_REGISTER
);
368 outb((u8
)info
->rx_low_water
, info
->ioaddr
+ MOXA_MUST_RBRTL_REGISTER
);
369 outb(oldlcr
, info
->ioaddr
+ UART_LCR
);
372 static void mxser_set_must_enum_value(unsigned long baseio
, u8 value
)
377 oldlcr
= inb(baseio
+ UART_LCR
);
378 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
380 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
381 efr
&= ~MOXA_MUST_EFR_BANK_MASK
;
382 efr
|= MOXA_MUST_EFR_BANK2
;
384 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
385 outb(value
, baseio
+ MOXA_MUST_ENUM_REGISTER
);
386 outb(oldlcr
, baseio
+ UART_LCR
);
389 static void mxser_get_must_hardware_id(unsigned long baseio
, u8
*pId
)
394 oldlcr
= inb(baseio
+ UART_LCR
);
395 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
397 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
398 efr
&= ~MOXA_MUST_EFR_BANK_MASK
;
399 efr
|= MOXA_MUST_EFR_BANK2
;
401 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
402 *pId
= inb(baseio
+ MOXA_MUST_HWID_REGISTER
);
403 outb(oldlcr
, baseio
+ UART_LCR
);
406 static void SET_MOXA_MUST_NO_SOFTWARE_FLOW_CONTROL(unsigned long baseio
)
411 oldlcr
= inb(baseio
+ UART_LCR
);
412 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
414 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
415 efr
&= ~MOXA_MUST_EFR_SF_MASK
;
417 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
418 outb(oldlcr
, baseio
+ UART_LCR
);
421 static void mxser_enable_must_tx_software_flow_control(unsigned long baseio
)
426 oldlcr
= inb(baseio
+ UART_LCR
);
427 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
429 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
430 efr
&= ~MOXA_MUST_EFR_SF_TX_MASK
;
431 efr
|= MOXA_MUST_EFR_SF_TX1
;
433 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
434 outb(oldlcr
, baseio
+ UART_LCR
);
437 static void mxser_disable_must_tx_software_flow_control(unsigned long baseio
)
442 oldlcr
= inb(baseio
+ UART_LCR
);
443 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
445 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
446 efr
&= ~MOXA_MUST_EFR_SF_TX_MASK
;
448 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
449 outb(oldlcr
, baseio
+ UART_LCR
);
452 static void mxser_enable_must_rx_software_flow_control(unsigned long baseio
)
457 oldlcr
= inb(baseio
+ UART_LCR
);
458 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
460 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
461 efr
&= ~MOXA_MUST_EFR_SF_RX_MASK
;
462 efr
|= MOXA_MUST_EFR_SF_RX1
;
464 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
465 outb(oldlcr
, baseio
+ UART_LCR
);
468 static void mxser_disable_must_rx_software_flow_control(unsigned long baseio
)
473 oldlcr
= inb(baseio
+ UART_LCR
);
474 outb(MOXA_MUST_ENTER_ENCHANCE
, baseio
+ UART_LCR
);
476 efr
= inb(baseio
+ MOXA_MUST_EFR_REGISTER
);
477 efr
&= ~MOXA_MUST_EFR_SF_RX_MASK
;
479 outb(efr
, baseio
+ MOXA_MUST_EFR_REGISTER
);
480 outb(oldlcr
, baseio
+ UART_LCR
);
484 static int __devinit
CheckIsMoxaMust(unsigned long io
)
489 outb(0, io
+ UART_LCR
);
490 mxser_disable_must_enchance_mode(io
);
491 oldmcr
= inb(io
+ UART_MCR
);
492 outb(0, io
+ UART_MCR
);
493 mxser_set_must_xon1_value(io
, 0x11);
494 if ((hwid
= inb(io
+ UART_MCR
)) != 0) {
495 outb(oldmcr
, io
+ UART_MCR
);
496 return MOXA_OTHER_UART
;
499 mxser_get_must_hardware_id(io
, &hwid
);
500 for (i
= 1; i
< UART_INFO_NUM
; i
++) { /* 0 = OTHER_UART */
501 if (hwid
== Gpci_uart_info
[i
].type
)
504 return MOXA_OTHER_UART
;
508 static void process_txrx_fifo(struct mxser_port
*info
)
512 if ((info
->type
== PORT_16450
) || (info
->type
== PORT_8250
)) {
513 info
->rx_trigger
= 1;
514 info
->rx_high_water
= 1;
515 info
->rx_low_water
= 1;
516 info
->xmit_fifo_size
= 1;
518 for (i
= 0; i
< UART_INFO_NUM
; i
++)
519 if (info
->board
->chip_flag
== Gpci_uart_info
[i
].type
) {
520 info
->rx_trigger
= Gpci_uart_info
[i
].rx_trigger
;
521 info
->rx_low_water
= Gpci_uart_info
[i
].rx_low_water
;
522 info
->rx_high_water
= Gpci_uart_info
[i
].rx_high_water
;
523 info
->xmit_fifo_size
= Gpci_uart_info
[i
].xmit_fifo_size
;
528 static unsigned char mxser_get_msr(int baseaddr
, int mode
, int port
)
530 static unsigned char mxser_msr
[MXSER_PORTS
+ 1];
531 unsigned char status
= 0;
533 status
= inb(baseaddr
+ UART_MSR
);
535 mxser_msr
[port
] &= 0x0F;
536 mxser_msr
[port
] |= status
;
537 status
= mxser_msr
[port
];
544 static int mxser_carrier_raised(struct tty_port
*port
)
546 struct mxser_port
*mp
= container_of(port
, struct mxser_port
, port
);
547 return (inb(mp
->ioaddr
+ UART_MSR
) & UART_MSR_DCD
)?1:0;
550 static void mxser_raise_dtr_rts(struct tty_port
*port
)
552 struct mxser_port
*mp
= container_of(port
, struct mxser_port
, port
);
555 spin_lock_irqsave(&mp
->slock
, flags
);
556 outb(inb(mp
->ioaddr
+ UART_MCR
) |
557 UART_MCR_DTR
| UART_MCR_RTS
, mp
->ioaddr
+ UART_MCR
);
558 spin_unlock_irqrestore(&mp
->slock
, flags
);
561 static int mxser_set_baud(struct tty_struct
*tty
, long newspd
)
563 struct mxser_port
*info
= tty
->driver_data
;
570 if (newspd
> info
->max_baud
)
574 quot
= 2 * info
->baud_base
/ 269;
575 tty_encode_baud_rate(tty
, 134, 134);
577 quot
= info
->baud_base
/ newspd
;
580 baud
= info
->baud_base
/quot
;
581 tty_encode_baud_rate(tty
, baud
, baud
);
586 info
->timeout
= ((info
->xmit_fifo_size
* HZ
* 10 * quot
) / info
->baud_base
);
587 info
->timeout
+= HZ
/ 50; /* Add .02 seconds of slop */
590 info
->MCR
|= UART_MCR_DTR
;
591 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
593 info
->MCR
&= ~UART_MCR_DTR
;
594 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
598 cval
= inb(info
->ioaddr
+ UART_LCR
);
600 outb(cval
| UART_LCR_DLAB
, info
->ioaddr
+ UART_LCR
); /* set DLAB */
602 outb(quot
& 0xff, info
->ioaddr
+ UART_DLL
); /* LS of divisor */
603 outb(quot
>> 8, info
->ioaddr
+ UART_DLM
); /* MS of divisor */
604 outb(cval
, info
->ioaddr
+ UART_LCR
); /* reset DLAB */
607 if (C_BAUD(tty
) == BOTHER
) {
608 quot
= info
->baud_base
% newspd
;
610 if (quot
% newspd
> newspd
/ 2) {
616 mxser_set_must_enum_value(info
->ioaddr
, quot
);
619 mxser_set_must_enum_value(info
->ioaddr
, 0);
625 * This routine is called to set the UART divisor registers to match
626 * the specified baud rate for a serial port.
628 static int mxser_change_speed(struct tty_struct
*tty
,
629 struct ktermios
*old_termios
)
631 struct mxser_port
*info
= tty
->driver_data
;
632 unsigned cflag
, cval
, fcr
;
634 unsigned char status
;
636 cflag
= tty
->termios
->c_cflag
;
640 if (mxser_set_baud_method
[tty
->index
] == 0)
641 mxser_set_baud(tty
, tty_get_baud_rate(tty
));
643 /* byte size and parity */
644 switch (cflag
& CSIZE
) {
659 break; /* too keep GCC shut... */
664 cval
|= UART_LCR_PARITY
;
665 if (!(cflag
& PARODD
))
666 cval
|= UART_LCR_EPAR
;
668 cval
|= UART_LCR_SPAR
;
670 if ((info
->type
== PORT_8250
) || (info
->type
== PORT_16450
)) {
671 if (info
->board
->chip_flag
) {
672 fcr
= UART_FCR_ENABLE_FIFO
;
673 fcr
|= MOXA_MUST_FCR_GDA_MODE_ENABLE
;
674 mxser_set_must_fifo_value(info
);
678 fcr
= UART_FCR_ENABLE_FIFO
;
679 if (info
->board
->chip_flag
) {
680 fcr
|= MOXA_MUST_FCR_GDA_MODE_ENABLE
;
681 mxser_set_must_fifo_value(info
);
683 switch (info
->rx_trigger
) {
685 fcr
|= UART_FCR_TRIGGER_1
;
688 fcr
|= UART_FCR_TRIGGER_4
;
691 fcr
|= UART_FCR_TRIGGER_8
;
694 fcr
|= UART_FCR_TRIGGER_14
;
700 /* CTS flow control flag and modem status interrupts */
701 info
->IER
&= ~UART_IER_MSI
;
702 info
->MCR
&= ~UART_MCR_AFE
;
703 if (cflag
& CRTSCTS
) {
704 info
->port
.flags
|= ASYNC_CTS_FLOW
;
705 info
->IER
|= UART_IER_MSI
;
706 if ((info
->type
== PORT_16550A
) || (info
->board
->chip_flag
)) {
707 info
->MCR
|= UART_MCR_AFE
;
709 status
= inb(info
->ioaddr
+ UART_MSR
);
710 if (tty
->hw_stopped
) {
711 if (status
& UART_MSR_CTS
) {
713 if (info
->type
!= PORT_16550A
&&
714 !info
->board
->chip_flag
) {
715 outb(info
->IER
& ~UART_IER_THRI
,
718 info
->IER
|= UART_IER_THRI
;
719 outb(info
->IER
, info
->ioaddr
+
725 if (!(status
& UART_MSR_CTS
)) {
727 if ((info
->type
!= PORT_16550A
) &&
728 (!info
->board
->chip_flag
)) {
729 info
->IER
&= ~UART_IER_THRI
;
730 outb(info
->IER
, info
->ioaddr
+
737 info
->port
.flags
&= ~ASYNC_CTS_FLOW
;
739 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
740 if (cflag
& CLOCAL
) {
741 info
->port
.flags
&= ~ASYNC_CHECK_CD
;
743 info
->port
.flags
|= ASYNC_CHECK_CD
;
744 info
->IER
|= UART_IER_MSI
;
746 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
749 * Set up parity check flag
751 info
->read_status_mask
= UART_LSR_OE
| UART_LSR_THRE
| UART_LSR_DR
;
753 info
->read_status_mask
|= UART_LSR_FE
| UART_LSR_PE
;
754 if (I_BRKINT(tty
) || I_PARMRK(tty
))
755 info
->read_status_mask
|= UART_LSR_BI
;
757 info
->ignore_status_mask
= 0;
760 info
->ignore_status_mask
|= UART_LSR_BI
;
761 info
->read_status_mask
|= UART_LSR_BI
;
763 * If we're ignore parity and break indicators, ignore
764 * overruns too. (For real raw support).
767 info
->ignore_status_mask
|=
771 info
->read_status_mask
|=
777 if (info
->board
->chip_flag
) {
778 mxser_set_must_xon1_value(info
->ioaddr
, START_CHAR(tty
));
779 mxser_set_must_xoff1_value(info
->ioaddr
, STOP_CHAR(tty
));
781 mxser_enable_must_rx_software_flow_control(
784 mxser_disable_must_rx_software_flow_control(
788 mxser_enable_must_tx_software_flow_control(
791 mxser_disable_must_tx_software_flow_control(
797 outb(fcr
, info
->ioaddr
+ UART_FCR
); /* set fcr */
798 outb(cval
, info
->ioaddr
+ UART_LCR
);
803 static void mxser_check_modem_status(struct tty_struct
*tty
,
804 struct mxser_port
*port
, int status
)
806 /* update input line counters */
807 if (status
& UART_MSR_TERI
)
809 if (status
& UART_MSR_DDSR
)
811 if (status
& UART_MSR_DDCD
)
813 if (status
& UART_MSR_DCTS
)
815 port
->mon_data
.modem_status
= status
;
816 wake_up_interruptible(&port
->delta_msr_wait
);
818 if ((port
->port
.flags
& ASYNC_CHECK_CD
) && (status
& UART_MSR_DDCD
)) {
819 if (status
& UART_MSR_DCD
)
820 wake_up_interruptible(&port
->port
.open_wait
);
823 if (port
->port
.flags
& ASYNC_CTS_FLOW
) {
824 if (tty
->hw_stopped
) {
825 if (status
& UART_MSR_CTS
) {
828 if ((port
->type
!= PORT_16550A
) &&
829 (!port
->board
->chip_flag
)) {
830 outb(port
->IER
& ~UART_IER_THRI
,
831 port
->ioaddr
+ UART_IER
);
832 port
->IER
|= UART_IER_THRI
;
833 outb(port
->IER
, port
->ioaddr
+
839 if (!(status
& UART_MSR_CTS
)) {
841 if (port
->type
!= PORT_16550A
&&
842 !port
->board
->chip_flag
) {
843 port
->IER
&= ~UART_IER_THRI
;
844 outb(port
->IER
, port
->ioaddr
+
852 static int mxser_startup(struct tty_struct
*tty
)
854 struct mxser_port
*info
= tty
->driver_data
;
858 page
= __get_free_page(GFP_KERNEL
);
862 spin_lock_irqsave(&info
->slock
, flags
);
864 if (info
->port
.flags
& ASYNC_INITIALIZED
) {
866 spin_unlock_irqrestore(&info
->slock
, flags
);
870 if (!info
->ioaddr
|| !info
->type
) {
871 set_bit(TTY_IO_ERROR
, &tty
->flags
);
873 spin_unlock_irqrestore(&info
->slock
, flags
);
876 if (info
->port
.xmit_buf
)
879 info
->port
.xmit_buf
= (unsigned char *) page
;
882 * Clear the FIFO buffers and disable them
883 * (they will be reenabled in mxser_change_speed())
885 if (info
->board
->chip_flag
)
886 outb((UART_FCR_CLEAR_RCVR
|
887 UART_FCR_CLEAR_XMIT
|
888 MOXA_MUST_FCR_GDA_MODE_ENABLE
), info
->ioaddr
+ UART_FCR
);
890 outb((UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
),
891 info
->ioaddr
+ UART_FCR
);
894 * At this point there's no way the LSR could still be 0xFF;
895 * if it is, then bail out, because there's likely no UART
898 if (inb(info
->ioaddr
+ UART_LSR
) == 0xff) {
899 spin_unlock_irqrestore(&info
->slock
, flags
);
900 if (capable(CAP_SYS_ADMIN
)) {
902 set_bit(TTY_IO_ERROR
, &tty
->flags
);
909 * Clear the interrupt registers.
911 (void) inb(info
->ioaddr
+ UART_LSR
);
912 (void) inb(info
->ioaddr
+ UART_RX
);
913 (void) inb(info
->ioaddr
+ UART_IIR
);
914 (void) inb(info
->ioaddr
+ UART_MSR
);
917 * Now, initialize the UART
919 outb(UART_LCR_WLEN8
, info
->ioaddr
+ UART_LCR
); /* reset DLAB */
920 info
->MCR
= UART_MCR_DTR
| UART_MCR_RTS
;
921 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
924 * Finally, enable interrupts
926 info
->IER
= UART_IER_MSI
| UART_IER_RLSI
| UART_IER_RDI
;
928 if (info
->board
->chip_flag
)
929 info
->IER
|= MOXA_MUST_IER_EGDAI
;
930 outb(info
->IER
, info
->ioaddr
+ UART_IER
); /* enable interrupts */
933 * And clear the interrupt registers again for luck.
935 (void) inb(info
->ioaddr
+ UART_LSR
);
936 (void) inb(info
->ioaddr
+ UART_RX
);
937 (void) inb(info
->ioaddr
+ UART_IIR
);
938 (void) inb(info
->ioaddr
+ UART_MSR
);
940 clear_bit(TTY_IO_ERROR
, &tty
->flags
);
941 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
944 * and set the speed of the serial port
946 mxser_change_speed(tty
, NULL
);
947 info
->port
.flags
|= ASYNC_INITIALIZED
;
948 spin_unlock_irqrestore(&info
->slock
, flags
);
954 * This routine will shutdown a serial port; interrupts maybe disabled, and
955 * DTR is dropped if the hangup on close termio flag is on.
957 static void mxser_shutdown(struct tty_struct
*tty
)
959 struct mxser_port
*info
= tty
->driver_data
;
962 if (!(info
->port
.flags
& ASYNC_INITIALIZED
))
965 spin_lock_irqsave(&info
->slock
, flags
);
968 * clear delta_msr_wait queue to avoid mem leaks: we may free the irq
969 * here so the queue might never be waken up
971 wake_up_interruptible(&info
->delta_msr_wait
);
974 * Free the IRQ, if necessary
976 if (info
->port
.xmit_buf
) {
977 free_page((unsigned long) info
->port
.xmit_buf
);
978 info
->port
.xmit_buf
= NULL
;
982 outb(0x00, info
->ioaddr
+ UART_IER
);
984 if (tty
->termios
->c_cflag
& HUPCL
)
985 info
->MCR
&= ~(UART_MCR_DTR
| UART_MCR_RTS
);
986 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
988 /* clear Rx/Tx FIFO's */
989 if (info
->board
->chip_flag
)
990 outb(UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
|
991 MOXA_MUST_FCR_GDA_MODE_ENABLE
,
992 info
->ioaddr
+ UART_FCR
);
994 outb(UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
,
995 info
->ioaddr
+ UART_FCR
);
997 /* read data port to reset things */
998 (void) inb(info
->ioaddr
+ UART_RX
);
1000 set_bit(TTY_IO_ERROR
, &tty
->flags
);
1002 info
->port
.flags
&= ~ASYNC_INITIALIZED
;
1004 if (info
->board
->chip_flag
)
1005 SET_MOXA_MUST_NO_SOFTWARE_FLOW_CONTROL(info
->ioaddr
);
1007 spin_unlock_irqrestore(&info
->slock
, flags
);
1011 * This routine is called whenever a serial port is opened. It
1012 * enables interrupts for a serial port, linking in its async structure into
1013 * the IRQ chain. It also performs the serial-specific
1014 * initialization for the tty structure.
1016 static int mxser_open(struct tty_struct
*tty
, struct file
*filp
)
1018 struct mxser_port
*info
;
1019 unsigned long flags
;
1023 if (line
== MXSER_PORTS
)
1025 if (line
< 0 || line
> MXSER_PORTS
)
1027 info
= &mxser_boards
[line
/ MXSER_PORTS_PER_BOARD
].ports
[line
% MXSER_PORTS_PER_BOARD
];
1031 tty
->driver_data
= info
;
1032 tty_port_tty_set(&info
->port
, tty
);
1034 * Start up serial port
1036 spin_lock_irqsave(&info
->port
.lock
, flags
);
1038 spin_unlock_irqrestore(&info
->port
.lock
, flags
);
1039 retval
= mxser_startup(tty
);
1043 retval
= tty_port_block_til_ready(&info
->port
, tty
, filp
);
1047 /* unmark here for very high baud rate (ex. 921600 bps) used */
1048 tty
->low_latency
= 1;
1052 static void mxser_flush_buffer(struct tty_struct
*tty
)
1054 struct mxser_port
*info
= tty
->driver_data
;
1056 unsigned long flags
;
1059 spin_lock_irqsave(&info
->slock
, flags
);
1060 info
->xmit_cnt
= info
->xmit_head
= info
->xmit_tail
= 0;
1062 fcr
= inb(info
->ioaddr
+ UART_FCR
);
1063 outb((fcr
| UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
),
1064 info
->ioaddr
+ UART_FCR
);
1065 outb(fcr
, info
->ioaddr
+ UART_FCR
);
1067 spin_unlock_irqrestore(&info
->slock
, flags
);
1074 * This routine is called when the serial port gets closed. First, we
1075 * wait for the last remaining data to be sent. Then, we unlink its
1076 * async structure from the interrupt chain if necessary, and we free
1077 * that IRQ if nothing is left in the chain.
1079 static void mxser_close(struct tty_struct
*tty
, struct file
*filp
)
1081 struct mxser_port
*info
= tty
->driver_data
;
1082 struct tty_port
*port
= &info
->port
;
1084 unsigned long timeout
;
1086 if (tty
->index
== MXSER_PORTS
)
1091 if (tty_port_close_start(port
, tty
, filp
) == 0)
1095 * Save the termios structure, since this port may have
1096 * separate termios for callout and dialin.
1098 * FIXME: Can this go ?
1100 if (info
->port
.flags
& ASYNC_NORMAL_ACTIVE
)
1101 info
->normal_termios
= *tty
->termios
;
1103 * At this point we stop accepting input. To do this, we
1104 * disable the receive line status interrupts, and tell the
1105 * interrupt driver to stop checking the data ready bit in the
1106 * line status register.
1108 info
->IER
&= ~UART_IER_RLSI
;
1109 if (info
->board
->chip_flag
)
1110 info
->IER
&= ~MOXA_MUST_RECV_ISR
;
1112 if (info
->port
.flags
& ASYNC_INITIALIZED
) {
1113 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1115 * Before we drop DTR, make sure the UART transmitter
1116 * has completely drained; this is especially
1117 * important if there is a transmit FIFO!
1119 timeout
= jiffies
+ HZ
;
1120 while (!(inb(info
->ioaddr
+ UART_LSR
) & UART_LSR_TEMT
)) {
1121 schedule_timeout_interruptible(5);
1122 if (time_after(jiffies
, timeout
))
1126 mxser_shutdown(tty
);
1127 mxser_flush_buffer(tty
);
1129 /* Right now the tty_port set is done outside of the close_end helper
1130 as we don't yet have everyone using refcounts */
1131 tty_port_close_end(port
, tty
);
1132 tty_port_tty_set(port
, NULL
);
1135 static int mxser_write(struct tty_struct
*tty
, const unsigned char *buf
, int count
)
1138 struct mxser_port
*info
= tty
->driver_data
;
1139 unsigned long flags
;
1141 if (!info
->port
.xmit_buf
)
1145 c
= min_t(int, count
, min(SERIAL_XMIT_SIZE
- info
->xmit_cnt
- 1,
1146 SERIAL_XMIT_SIZE
- info
->xmit_head
));
1150 memcpy(info
->port
.xmit_buf
+ info
->xmit_head
, buf
, c
);
1151 spin_lock_irqsave(&info
->slock
, flags
);
1152 info
->xmit_head
= (info
->xmit_head
+ c
) &
1153 (SERIAL_XMIT_SIZE
- 1);
1154 info
->xmit_cnt
+= c
;
1155 spin_unlock_irqrestore(&info
->slock
, flags
);
1162 if (info
->xmit_cnt
&& !tty
->stopped
) {
1163 if (!tty
->hw_stopped
||
1164 (info
->type
== PORT_16550A
) ||
1165 (info
->board
->chip_flag
)) {
1166 spin_lock_irqsave(&info
->slock
, flags
);
1167 outb(info
->IER
& ~UART_IER_THRI
, info
->ioaddr
+
1169 info
->IER
|= UART_IER_THRI
;
1170 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1171 spin_unlock_irqrestore(&info
->slock
, flags
);
1177 static int mxser_put_char(struct tty_struct
*tty
, unsigned char ch
)
1179 struct mxser_port
*info
= tty
->driver_data
;
1180 unsigned long flags
;
1182 if (!info
->port
.xmit_buf
)
1185 if (info
->xmit_cnt
>= SERIAL_XMIT_SIZE
- 1)
1188 spin_lock_irqsave(&info
->slock
, flags
);
1189 info
->port
.xmit_buf
[info
->xmit_head
++] = ch
;
1190 info
->xmit_head
&= SERIAL_XMIT_SIZE
- 1;
1192 spin_unlock_irqrestore(&info
->slock
, flags
);
1193 if (!tty
->stopped
) {
1194 if (!tty
->hw_stopped
||
1195 (info
->type
== PORT_16550A
) ||
1196 info
->board
->chip_flag
) {
1197 spin_lock_irqsave(&info
->slock
, flags
);
1198 outb(info
->IER
& ~UART_IER_THRI
, info
->ioaddr
+ UART_IER
);
1199 info
->IER
|= UART_IER_THRI
;
1200 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1201 spin_unlock_irqrestore(&info
->slock
, flags
);
1208 static void mxser_flush_chars(struct tty_struct
*tty
)
1210 struct mxser_port
*info
= tty
->driver_data
;
1211 unsigned long flags
;
1213 if (info
->xmit_cnt
<= 0 || tty
->stopped
|| !info
->port
.xmit_buf
||
1214 (tty
->hw_stopped
&& info
->type
!= PORT_16550A
&&
1215 !info
->board
->chip_flag
))
1218 spin_lock_irqsave(&info
->slock
, flags
);
1220 outb(info
->IER
& ~UART_IER_THRI
, info
->ioaddr
+ UART_IER
);
1221 info
->IER
|= UART_IER_THRI
;
1222 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1224 spin_unlock_irqrestore(&info
->slock
, flags
);
1227 static int mxser_write_room(struct tty_struct
*tty
)
1229 struct mxser_port
*info
= tty
->driver_data
;
1232 ret
= SERIAL_XMIT_SIZE
- info
->xmit_cnt
- 1;
1233 return ret
< 0 ? 0 : ret
;
1236 static int mxser_chars_in_buffer(struct tty_struct
*tty
)
1238 struct mxser_port
*info
= tty
->driver_data
;
1239 return info
->xmit_cnt
;
1243 * ------------------------------------------------------------
1244 * friends of mxser_ioctl()
1245 * ------------------------------------------------------------
1247 static int mxser_get_serial_info(struct tty_struct
*tty
,
1248 struct serial_struct __user
*retinfo
)
1250 struct mxser_port
*info
= tty
->driver_data
;
1251 struct serial_struct tmp
= {
1254 .port
= info
->ioaddr
,
1255 .irq
= info
->board
->irq
,
1256 .flags
= info
->port
.flags
,
1257 .baud_base
= info
->baud_base
,
1258 .close_delay
= info
->port
.close_delay
,
1259 .closing_wait
= info
->port
.closing_wait
,
1260 .custom_divisor
= info
->custom_divisor
,
1263 if (copy_to_user(retinfo
, &tmp
, sizeof(*retinfo
)))
1268 static int mxser_set_serial_info(struct tty_struct
*tty
,
1269 struct serial_struct __user
*new_info
)
1271 struct mxser_port
*info
= tty
->driver_data
;
1272 struct serial_struct new_serial
;
1274 unsigned long sl_flags
;
1278 if (!new_info
|| !info
->ioaddr
)
1280 if (copy_from_user(&new_serial
, new_info
, sizeof(new_serial
)))
1283 if (new_serial
.irq
!= info
->board
->irq
||
1284 new_serial
.port
!= info
->ioaddr
)
1287 flags
= info
->port
.flags
& ASYNC_SPD_MASK
;
1289 if (!capable(CAP_SYS_ADMIN
)) {
1290 if ((new_serial
.baud_base
!= info
->baud_base
) ||
1291 (new_serial
.close_delay
!= info
->port
.close_delay
) ||
1292 ((new_serial
.flags
& ~ASYNC_USR_MASK
) != (info
->port
.flags
& ~ASYNC_USR_MASK
)))
1294 info
->port
.flags
= ((info
->port
.flags
& ~ASYNC_USR_MASK
) |
1295 (new_serial
.flags
& ASYNC_USR_MASK
));
1298 * OK, past this point, all the error checking has been done.
1299 * At this point, we start making changes.....
1301 info
->port
.flags
= ((info
->port
.flags
& ~ASYNC_FLAGS
) |
1302 (new_serial
.flags
& ASYNC_FLAGS
));
1303 info
->port
.close_delay
= new_serial
.close_delay
* HZ
/ 100;
1304 info
->port
.closing_wait
= new_serial
.closing_wait
* HZ
/ 100;
1305 tty
->low_latency
= (info
->port
.flags
& ASYNC_LOW_LATENCY
)
1307 if ((info
->port
.flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_CUST
&&
1308 (new_serial
.baud_base
!= info
->baud_base
||
1309 new_serial
.custom_divisor
!=
1310 info
->custom_divisor
)) {
1311 baud
= new_serial
.baud_base
/ new_serial
.custom_divisor
;
1312 tty_encode_baud_rate(tty
, baud
, baud
);
1316 info
->type
= new_serial
.type
;
1318 process_txrx_fifo(info
);
1320 if (info
->port
.flags
& ASYNC_INITIALIZED
) {
1321 if (flags
!= (info
->port
.flags
& ASYNC_SPD_MASK
)) {
1322 spin_lock_irqsave(&info
->slock
, sl_flags
);
1323 mxser_change_speed(tty
, NULL
);
1324 spin_unlock_irqrestore(&info
->slock
, sl_flags
);
1327 retval
= mxser_startup(tty
);
1333 * mxser_get_lsr_info - get line status register info
1335 * Purpose: Let user call ioctl() to get info when the UART physically
1336 * is emptied. On bus types like RS485, the transmitter must
1337 * release the bus after transmitting. This must be done when
1338 * the transmit shift register is empty, not be done when the
1339 * transmit holding register is empty. This functionality
1340 * allows an RS485 driver to be written in user space.
1342 static int mxser_get_lsr_info(struct mxser_port
*info
,
1343 unsigned int __user
*value
)
1345 unsigned char status
;
1346 unsigned int result
;
1347 unsigned long flags
;
1349 spin_lock_irqsave(&info
->slock
, flags
);
1350 status
= inb(info
->ioaddr
+ UART_LSR
);
1351 spin_unlock_irqrestore(&info
->slock
, flags
);
1352 result
= ((status
& UART_LSR_TEMT
) ? TIOCSER_TEMT
: 0);
1353 return put_user(result
, value
);
1356 static int mxser_tiocmget(struct tty_struct
*tty
, struct file
*file
)
1358 struct mxser_port
*info
= tty
->driver_data
;
1359 unsigned char control
, status
;
1360 unsigned long flags
;
1363 if (tty
->index
== MXSER_PORTS
)
1364 return -ENOIOCTLCMD
;
1365 if (test_bit(TTY_IO_ERROR
, &tty
->flags
))
1368 control
= info
->MCR
;
1370 spin_lock_irqsave(&info
->slock
, flags
);
1371 status
= inb(info
->ioaddr
+ UART_MSR
);
1372 if (status
& UART_MSR_ANY_DELTA
)
1373 mxser_check_modem_status(tty
, info
, status
);
1374 spin_unlock_irqrestore(&info
->slock
, flags
);
1375 return ((control
& UART_MCR_RTS
) ? TIOCM_RTS
: 0) |
1376 ((control
& UART_MCR_DTR
) ? TIOCM_DTR
: 0) |
1377 ((status
& UART_MSR_DCD
) ? TIOCM_CAR
: 0) |
1378 ((status
& UART_MSR_RI
) ? TIOCM_RNG
: 0) |
1379 ((status
& UART_MSR_DSR
) ? TIOCM_DSR
: 0) |
1380 ((status
& UART_MSR_CTS
) ? TIOCM_CTS
: 0);
1383 static int mxser_tiocmset(struct tty_struct
*tty
, struct file
*file
,
1384 unsigned int set
, unsigned int clear
)
1386 struct mxser_port
*info
= tty
->driver_data
;
1387 unsigned long flags
;
1390 if (tty
->index
== MXSER_PORTS
)
1391 return -ENOIOCTLCMD
;
1392 if (test_bit(TTY_IO_ERROR
, &tty
->flags
))
1395 spin_lock_irqsave(&info
->slock
, flags
);
1397 if (set
& TIOCM_RTS
)
1398 info
->MCR
|= UART_MCR_RTS
;
1399 if (set
& TIOCM_DTR
)
1400 info
->MCR
|= UART_MCR_DTR
;
1402 if (clear
& TIOCM_RTS
)
1403 info
->MCR
&= ~UART_MCR_RTS
;
1404 if (clear
& TIOCM_DTR
)
1405 info
->MCR
&= ~UART_MCR_DTR
;
1407 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
1408 spin_unlock_irqrestore(&info
->slock
, flags
);
1412 static int __init
mxser_program_mode(int port
)
1424 id
= inb(port
+ 1) & 0x1F;
1425 if ((id
!= C168_ASIC_ID
) &&
1426 (id
!= C104_ASIC_ID
) &&
1427 (id
!= C102_ASIC_ID
) &&
1428 (id
!= CI132_ASIC_ID
) &&
1429 (id
!= CI134_ASIC_ID
) &&
1430 (id
!= CI104J_ASIC_ID
))
1432 for (i
= 0, j
= 0; i
< 4; i
++) {
1436 } else if ((j
== 1) && (n
== 1)) {
1447 static void __init
mxser_normal_mode(int port
)
1451 outb(0xA5, port
+ 1);
1452 outb(0x80, port
+ 3);
1453 outb(12, port
+ 0); /* 9600 bps */
1455 outb(0x03, port
+ 3); /* 8 data bits */
1456 outb(0x13, port
+ 4); /* loop back mode */
1457 for (i
= 0; i
< 16; i
++) {
1459 if ((n
& 0x61) == 0x60)
1464 outb(0x00, port
+ 4);
1467 #define CHIP_SK 0x01 /* Serial Data Clock in Eprom */
1468 #define CHIP_DO 0x02 /* Serial Data Output in Eprom */
1469 #define CHIP_CS 0x04 /* Serial Chip Select in Eprom */
1470 #define CHIP_DI 0x08 /* Serial Data Input in Eprom */
1471 #define EN_CCMD 0x000 /* Chip's command register */
1472 #define EN0_RSARLO 0x008 /* Remote start address reg 0 */
1473 #define EN0_RSARHI 0x009 /* Remote start address reg 1 */
1474 #define EN0_RCNTLO 0x00A /* Remote byte count reg WR */
1475 #define EN0_RCNTHI 0x00B /* Remote byte count reg WR */
1476 #define EN0_DCFG 0x00E /* Data configuration reg WR */
1477 #define EN0_PORT 0x010 /* Rcv missed frame error counter RD */
1478 #define ENC_PAGE0 0x000 /* Select page 0 of chip registers */
1479 #define ENC_PAGE3 0x0C0 /* Select page 3 of chip registers */
1480 static int __init
mxser_read_register(int port
, unsigned short *regs
)
1482 int i
, k
, value
, id
;
1485 id
= mxser_program_mode(port
);
1488 for (i
= 0; i
< 14; i
++) {
1489 k
= (i
& 0x3F) | 0x180;
1490 for (j
= 0x100; j
> 0; j
>>= 1) {
1491 outb(CHIP_CS
, port
);
1493 outb(CHIP_CS
| CHIP_DO
, port
);
1494 outb(CHIP_CS
| CHIP_DO
| CHIP_SK
, port
); /* A? bit of read */
1496 outb(CHIP_CS
, port
);
1497 outb(CHIP_CS
| CHIP_SK
, port
); /* A? bit of read */
1502 for (k
= 0, j
= 0x8000; k
< 16; k
++, j
>>= 1) {
1503 outb(CHIP_CS
, port
);
1504 outb(CHIP_CS
| CHIP_SK
, port
);
1505 if (inb(port
) & CHIP_DI
)
1511 mxser_normal_mode(port
);
1515 static int mxser_ioctl_special(unsigned int cmd
, void __user
*argp
)
1517 struct mxser_port
*port
;
1518 struct tty_struct
*tty
;
1524 case MOXA_GET_MAJOR
:
1525 if (printk_ratelimit())
1526 printk(KERN_WARNING
"mxser: '%s' uses deprecated ioctl "
1527 "%x (GET_MAJOR), fix your userspace\n",
1528 current
->comm
, cmd
);
1529 return put_user(ttymajor
, (int __user
*)argp
);
1531 case MOXA_CHKPORTENABLE
:
1534 for (i
= 0; i
< MXSER_BOARDS
; i
++)
1535 for (j
= 0; j
< MXSER_PORTS_PER_BOARD
; j
++)
1536 if (mxser_boards
[i
].ports
[j
].ioaddr
)
1539 return put_user(result
, (unsigned long __user
*)argp
);
1540 case MOXA_GETDATACOUNT
:
1542 if (copy_to_user(argp
, &mxvar_log
, sizeof(mxvar_log
)))
1546 case MOXA_GETMSTATUS
: {
1547 struct mxser_mstatus ms
, __user
*msu
= argp
;
1549 for (i
= 0; i
< MXSER_BOARDS
; i
++)
1550 for (j
= 0; j
< MXSER_PORTS_PER_BOARD
; j
++) {
1551 port
= &mxser_boards
[i
].ports
[j
];
1552 memset(&ms
, 0, sizeof(ms
));
1557 tty
= tty_port_tty_get(&port
->port
);
1559 if (!tty
|| !tty
->termios
)
1560 ms
.cflag
= port
->normal_termios
.c_cflag
;
1562 ms
.cflag
= tty
->termios
->c_cflag
;
1564 status
= inb(port
->ioaddr
+ UART_MSR
);
1565 if (status
& UART_MSR_DCD
)
1567 if (status
& UART_MSR_DSR
)
1569 if (status
& UART_MSR_CTS
)
1572 if (copy_to_user(msu
, &ms
, sizeof(ms
))) {
1581 case MOXA_ASPP_MON_EXT
: {
1582 struct mxser_mon_ext
*me
; /* it's 2k, stack unfriendly */
1583 unsigned int cflag
, iflag
, p
;
1586 me
= kzalloc(sizeof(*me
), GFP_KERNEL
);
1591 for (i
= 0, p
= 0; i
< MXSER_BOARDS
; i
++) {
1592 for (j
= 0; j
< MXSER_PORTS_PER_BOARD
; j
++, p
++) {
1593 if (p
>= ARRAY_SIZE(me
->rx_cnt
)) {
1597 port
= &mxser_boards
[i
].ports
[j
];
1601 status
= mxser_get_msr(port
->ioaddr
, 0, p
);
1603 if (status
& UART_MSR_TERI
)
1605 if (status
& UART_MSR_DDSR
)
1607 if (status
& UART_MSR_DDCD
)
1609 if (status
& UART_MSR_DCTS
)
1612 port
->mon_data
.modem_status
= status
;
1613 me
->rx_cnt
[p
] = port
->mon_data
.rxcnt
;
1614 me
->tx_cnt
[p
] = port
->mon_data
.txcnt
;
1615 me
->up_rxcnt
[p
] = port
->mon_data
.up_rxcnt
;
1616 me
->up_txcnt
[p
] = port
->mon_data
.up_txcnt
;
1617 me
->modem_status
[p
] =
1618 port
->mon_data
.modem_status
;
1619 tty
= tty_port_tty_get(&port
->port
);
1621 if (!tty
|| !tty
->termios
) {
1622 cflag
= port
->normal_termios
.c_cflag
;
1623 iflag
= port
->normal_termios
.c_iflag
;
1624 me
->baudrate
[p
] = tty_termios_baud_rate(&port
->normal_termios
);
1626 cflag
= tty
->termios
->c_cflag
;
1627 iflag
= tty
->termios
->c_iflag
;
1628 me
->baudrate
[p
] = tty_get_baud_rate(tty
);
1632 me
->databits
[p
] = cflag
& CSIZE
;
1633 me
->stopbits
[p
] = cflag
& CSTOPB
;
1634 me
->parity
[p
] = cflag
& (PARENB
| PARODD
|
1637 if (cflag
& CRTSCTS
)
1638 me
->flowctrl
[p
] |= 0x03;
1640 if (iflag
& (IXON
| IXOFF
))
1641 me
->flowctrl
[p
] |= 0x0C;
1643 if (port
->type
== PORT_16550A
)
1646 opmode
= inb(port
->opmode_ioaddr
) >>
1648 opmode
&= OP_MODE_MASK
;
1649 me
->iftype
[p
] = opmode
;
1653 if (copy_to_user(argp
, me
, sizeof(*me
)))
1659 return -ENOIOCTLCMD
;
1664 static int mxser_cflags_changed(struct mxser_port
*info
, unsigned long arg
,
1665 struct async_icount
*cprev
)
1667 struct async_icount cnow
;
1668 unsigned long flags
;
1671 spin_lock_irqsave(&info
->slock
, flags
);
1672 cnow
= info
->icount
; /* atomic copy */
1673 spin_unlock_irqrestore(&info
->slock
, flags
);
1675 ret
= ((arg
& TIOCM_RNG
) && (cnow
.rng
!= cprev
->rng
)) ||
1676 ((arg
& TIOCM_DSR
) && (cnow
.dsr
!= cprev
->dsr
)) ||
1677 ((arg
& TIOCM_CD
) && (cnow
.dcd
!= cprev
->dcd
)) ||
1678 ((arg
& TIOCM_CTS
) && (cnow
.cts
!= cprev
->cts
));
1685 static int mxser_ioctl(struct tty_struct
*tty
, struct file
*file
,
1686 unsigned int cmd
, unsigned long arg
)
1688 struct mxser_port
*info
= tty
->driver_data
;
1689 struct async_icount cnow
;
1690 unsigned long flags
;
1691 void __user
*argp
= (void __user
*)arg
;
1694 if (tty
->index
== MXSER_PORTS
)
1695 return mxser_ioctl_special(cmd
, argp
);
1697 if (cmd
== MOXA_SET_OP_MODE
|| cmd
== MOXA_GET_OP_MODE
) {
1699 unsigned long opmode
;
1700 static unsigned char ModeMask
[] = { 0xfc, 0xf3, 0xcf, 0x3f };
1702 unsigned char val
, mask
;
1705 if (cmd
== MOXA_SET_OP_MODE
) {
1706 if (get_user(opmode
, (int __user
*) argp
))
1708 if (opmode
!= RS232_MODE
&&
1709 opmode
!= RS485_2WIRE_MODE
&&
1710 opmode
!= RS422_MODE
&&
1711 opmode
!= RS485_4WIRE_MODE
)
1716 val
= inb(info
->opmode_ioaddr
);
1718 val
|= (opmode
<< shiftbit
);
1719 outb(val
, info
->opmode_ioaddr
);
1724 opmode
= inb(info
->opmode_ioaddr
) >> shiftbit
;
1725 opmode
&= OP_MODE_MASK
;
1727 if (put_user(opmode
, (int __user
*)argp
))
1733 if (cmd
!= TIOCGSERIAL
&& cmd
!= TIOCMIWAIT
&& cmd
!= TIOCGICOUNT
&&
1734 test_bit(TTY_IO_ERROR
, &tty
->flags
))
1740 retval
= mxser_get_serial_info(tty
, argp
);
1745 retval
= mxser_set_serial_info(tty
, argp
);
1748 case TIOCSERGETLSR
: /* Get line status register */
1749 return mxser_get_lsr_info(info
, argp
);
1751 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1752 * - mask passed in arg for lines of interest
1753 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1754 * Caller should use TIOCGICOUNT to see which one it was
1757 spin_lock_irqsave(&info
->slock
, flags
);
1758 cnow
= info
->icount
; /* note the counters on entry */
1759 spin_unlock_irqrestore(&info
->slock
, flags
);
1761 return wait_event_interruptible(info
->delta_msr_wait
,
1762 mxser_cflags_changed(info
, arg
, &cnow
));
1764 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1765 * Return: write counters to the user passed counter struct
1766 * NB: both 1->0 and 0->1 transitions are counted except for
1767 * RI where only 0->1 is counted.
1770 struct serial_icounter_struct icnt
= { 0 };
1771 spin_lock_irqsave(&info
->slock
, flags
);
1772 cnow
= info
->icount
;
1773 spin_unlock_irqrestore(&info
->slock
, flags
);
1775 icnt
.frame
= cnow
.frame
;
1776 icnt
.brk
= cnow
.brk
;
1777 icnt
.overrun
= cnow
.overrun
;
1778 icnt
.buf_overrun
= cnow
.buf_overrun
;
1779 icnt
.parity
= cnow
.parity
;
1782 icnt
.cts
= cnow
.cts
;
1783 icnt
.dsr
= cnow
.dsr
;
1784 icnt
.rng
= cnow
.rng
;
1785 icnt
.dcd
= cnow
.dcd
;
1787 return copy_to_user(argp
, &icnt
, sizeof(icnt
)) ? -EFAULT
: 0;
1789 case MOXA_HighSpeedOn
:
1790 return put_user(info
->baud_base
!= 115200 ? 1 : 0, (int __user
*)argp
);
1791 case MOXA_SDS_RSTICOUNTER
:
1793 info
->mon_data
.rxcnt
= 0;
1794 info
->mon_data
.txcnt
= 0;
1798 case MOXA_ASPP_OQUEUE
:{
1802 len
= mxser_chars_in_buffer(tty
);
1803 lsr
= inb(info
->ioaddr
+ UART_LSR
) & UART_LSR_TEMT
;
1804 len
+= (lsr
? 0 : 1);
1807 return put_user(len
, (int __user
*)argp
);
1809 case MOXA_ASPP_MON
: {
1813 status
= mxser_get_msr(info
->ioaddr
, 1, tty
->index
);
1814 mxser_check_modem_status(tty
, info
, status
);
1816 mcr
= inb(info
->ioaddr
+ UART_MCR
);
1817 if (mcr
& MOXA_MUST_MCR_XON_FLAG
)
1818 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_XOFFHOLD
;
1820 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_XOFFHOLD
;
1822 if (mcr
& MOXA_MUST_MCR_TX_XON
)
1823 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_XOFFXENT
;
1825 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_XOFFXENT
;
1827 if (tty
->hw_stopped
)
1828 info
->mon_data
.hold_reason
|= NPPI_NOTIFY_CTSHOLD
;
1830 info
->mon_data
.hold_reason
&= ~NPPI_NOTIFY_CTSHOLD
;
1832 if (copy_to_user(argp
, &info
->mon_data
,
1833 sizeof(struct mxser_mon
)))
1838 case MOXA_ASPP_LSTATUS
: {
1839 if (put_user(info
->err_shadow
, (unsigned char __user
*)argp
))
1842 info
->err_shadow
= 0;
1845 case MOXA_SET_BAUD_METHOD
: {
1848 if (get_user(method
, (int __user
*)argp
))
1850 mxser_set_baud_method
[tty
->index
] = method
;
1851 return put_user(method
, (int __user
*)argp
);
1854 return -ENOIOCTLCMD
;
1859 static void mxser_stoprx(struct tty_struct
*tty
)
1861 struct mxser_port
*info
= tty
->driver_data
;
1863 info
->ldisc_stop_rx
= 1;
1865 if (info
->board
->chip_flag
) {
1866 info
->IER
&= ~MOXA_MUST_RECV_ISR
;
1867 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1869 info
->x_char
= STOP_CHAR(tty
);
1870 outb(0, info
->ioaddr
+ UART_IER
);
1871 info
->IER
|= UART_IER_THRI
;
1872 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1876 if (tty
->termios
->c_cflag
& CRTSCTS
) {
1877 info
->MCR
&= ~UART_MCR_RTS
;
1878 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
1883 * This routine is called by the upper-layer tty layer to signal that
1884 * incoming characters should be throttled.
1886 static void mxser_throttle(struct tty_struct
*tty
)
1891 static void mxser_unthrottle(struct tty_struct
*tty
)
1893 struct mxser_port
*info
= tty
->driver_data
;
1896 info
->ldisc_stop_rx
= 0;
1901 if (info
->board
->chip_flag
) {
1902 info
->IER
|= MOXA_MUST_RECV_ISR
;
1903 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1905 info
->x_char
= START_CHAR(tty
);
1906 outb(0, info
->ioaddr
+ UART_IER
);
1907 info
->IER
|= UART_IER_THRI
;
1908 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1913 if (tty
->termios
->c_cflag
& CRTSCTS
) {
1914 info
->MCR
|= UART_MCR_RTS
;
1915 outb(info
->MCR
, info
->ioaddr
+ UART_MCR
);
1920 * mxser_stop() and mxser_start()
1922 * This routines are called before setting or resetting tty->stopped.
1923 * They enable or disable transmitter interrupts, as necessary.
1925 static void mxser_stop(struct tty_struct
*tty
)
1927 struct mxser_port
*info
= tty
->driver_data
;
1928 unsigned long flags
;
1930 spin_lock_irqsave(&info
->slock
, flags
);
1931 if (info
->IER
& UART_IER_THRI
) {
1932 info
->IER
&= ~UART_IER_THRI
;
1933 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1935 spin_unlock_irqrestore(&info
->slock
, flags
);
1938 static void mxser_start(struct tty_struct
*tty
)
1940 struct mxser_port
*info
= tty
->driver_data
;
1941 unsigned long flags
;
1943 spin_lock_irqsave(&info
->slock
, flags
);
1944 if (info
->xmit_cnt
&& info
->port
.xmit_buf
) {
1945 outb(info
->IER
& ~UART_IER_THRI
, info
->ioaddr
+ UART_IER
);
1946 info
->IER
|= UART_IER_THRI
;
1947 outb(info
->IER
, info
->ioaddr
+ UART_IER
);
1949 spin_unlock_irqrestore(&info
->slock
, flags
);
1952 static void mxser_set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
)
1954 struct mxser_port
*info
= tty
->driver_data
;
1955 unsigned long flags
;
1957 spin_lock_irqsave(&info
->slock
, flags
);
1958 mxser_change_speed(tty
, old_termios
);
1959 spin_unlock_irqrestore(&info
->slock
, flags
);
1961 if ((old_termios
->c_cflag
& CRTSCTS
) &&
1962 !(tty
->termios
->c_cflag
& CRTSCTS
)) {
1963 tty
->hw_stopped
= 0;
1967 /* Handle sw stopped */
1968 if ((old_termios
->c_iflag
& IXON
) &&
1969 !(tty
->termios
->c_iflag
& IXON
)) {
1972 if (info
->board
->chip_flag
) {
1973 spin_lock_irqsave(&info
->slock
, flags
);
1974 mxser_disable_must_rx_software_flow_control(
1976 spin_unlock_irqrestore(&info
->slock
, flags
);
1984 * mxser_wait_until_sent() --- wait until the transmitter is empty
1986 static void mxser_wait_until_sent(struct tty_struct
*tty
, int timeout
)
1988 struct mxser_port
*info
= tty
->driver_data
;
1989 unsigned long orig_jiffies
, char_time
;
1992 if (info
->type
== PORT_UNKNOWN
)
1995 if (info
->xmit_fifo_size
== 0)
1996 return; /* Just in case.... */
1998 orig_jiffies
= jiffies
;
2000 * Set the check interval to be 1/5 of the estimated time to
2001 * send a single character, and make it at least 1. The check
2002 * interval should also be less than the timeout.
2004 * Note: we have to use pretty tight timings here to satisfy
2007 char_time
= (info
->timeout
- HZ
/ 50) / info
->xmit_fifo_size
;
2008 char_time
= char_time
/ 5;
2011 if (timeout
&& timeout
< char_time
)
2012 char_time
= timeout
;
2014 * If the transmitter hasn't cleared in twice the approximate
2015 * amount of time to send the entire FIFO, it probably won't
2016 * ever clear. This assumes the UART isn't doing flow
2017 * control, which is currently the case. Hence, if it ever
2018 * takes longer than info->timeout, this is probably due to a
2019 * UART bug of some kind. So, we clamp the timeout parameter at
2022 if (!timeout
|| timeout
> 2 * info
->timeout
)
2023 timeout
= 2 * info
->timeout
;
2024 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2025 printk(KERN_DEBUG
"In rs_wait_until_sent(%d) check=%lu...",
2026 timeout
, char_time
);
2027 printk("jiff=%lu...", jiffies
);
2030 while (!((lsr
= inb(info
->ioaddr
+ UART_LSR
)) & UART_LSR_TEMT
)) {
2031 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2032 printk("lsr = %d (jiff=%lu)...", lsr
, jiffies
);
2034 schedule_timeout_interruptible(char_time
);
2035 if (signal_pending(current
))
2037 if (timeout
&& time_after(jiffies
, orig_jiffies
+ timeout
))
2040 set_current_state(TASK_RUNNING
);
2043 #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2044 printk("lsr = %d (jiff=%lu)...done\n", lsr
, jiffies
);
2049 * This routine is called by tty_hangup() when a hangup is signaled.
2051 static void mxser_hangup(struct tty_struct
*tty
)
2053 struct mxser_port
*info
= tty
->driver_data
;
2055 mxser_flush_buffer(tty
);
2056 mxser_shutdown(tty
);
2057 tty_port_hangup(&info
->port
);
2061 * mxser_rs_break() --- routine which turns the break handling on or off
2063 static int mxser_rs_break(struct tty_struct
*tty
, int break_state
)
2065 struct mxser_port
*info
= tty
->driver_data
;
2066 unsigned long flags
;
2068 spin_lock_irqsave(&info
->slock
, flags
);
2069 if (break_state
== -1)
2070 outb(inb(info
->ioaddr
+ UART_LCR
) | UART_LCR_SBC
,
2071 info
->ioaddr
+ UART_LCR
);
2073 outb(inb(info
->ioaddr
+ UART_LCR
) & ~UART_LCR_SBC
,
2074 info
->ioaddr
+ UART_LCR
);
2075 spin_unlock_irqrestore(&info
->slock
, flags
);
2079 static void mxser_receive_chars(struct tty_struct
*tty
,
2080 struct mxser_port
*port
, int *status
)
2082 unsigned char ch
, gdl
;
2088 recv_room
= tty
->receive_room
;
2089 if (recv_room
== 0 && !port
->ldisc_stop_rx
)
2091 if (port
->board
->chip_flag
!= MOXA_OTHER_UART
) {
2093 if (*status
& UART_LSR_SPECIAL
)
2095 if (port
->board
->chip_flag
== MOXA_MUST_MU860_HWID
&&
2096 (*status
& MOXA_MUST_LSR_RERR
))
2098 if (*status
& MOXA_MUST_LSR_RERR
)
2101 gdl
= inb(port
->ioaddr
+ MOXA_MUST_GDL_REGISTER
);
2103 if (port
->board
->chip_flag
== MOXA_MUST_MU150_HWID
)
2104 gdl
&= MOXA_MUST_GDL_MASK
;
2105 if (gdl
>= recv_room
) {
2106 if (!port
->ldisc_stop_rx
)
2110 ch
= inb(port
->ioaddr
+ UART_RX
);
2111 tty_insert_flip_char(tty
, ch
, 0);
2122 ch
= inb(port
->ioaddr
+ UART_RX
);
2123 if (port
->board
->chip_flag
&& (*status
& UART_LSR_OE
))
2124 outb(0x23, port
->ioaddr
+ UART_FCR
);
2125 *status
&= port
->read_status_mask
;
2126 if (*status
& port
->ignore_status_mask
) {
2127 if (++ignored
> 100)
2131 if (*status
& UART_LSR_SPECIAL
) {
2132 if (*status
& UART_LSR_BI
) {
2136 if (port
->port
.flags
& ASYNC_SAK
)
2138 } else if (*status
& UART_LSR_PE
) {
2140 port
->icount
.parity
++;
2141 } else if (*status
& UART_LSR_FE
) {
2143 port
->icount
.frame
++;
2144 } else if (*status
& UART_LSR_OE
) {
2146 port
->icount
.overrun
++;
2150 tty_insert_flip_char(tty
, ch
, flag
);
2152 if (cnt
>= recv_room
) {
2153 if (!port
->ldisc_stop_rx
)
2160 if (port
->board
->chip_flag
)
2163 *status
= inb(port
->ioaddr
+ UART_LSR
);
2164 } while (*status
& UART_LSR_DR
);
2167 mxvar_log
.rxcnt
[tty
->index
] += cnt
;
2168 port
->mon_data
.rxcnt
+= cnt
;
2169 port
->mon_data
.up_rxcnt
+= cnt
;
2172 * We are called from an interrupt context with &port->slock
2173 * being held. Drop it temporarily in order to prevent
2174 * recursive locking.
2176 spin_unlock(&port
->slock
);
2177 tty_flip_buffer_push(tty
);
2178 spin_lock(&port
->slock
);
2181 static void mxser_transmit_chars(struct tty_struct
*tty
, struct mxser_port
*port
)
2186 outb(port
->x_char
, port
->ioaddr
+ UART_TX
);
2188 mxvar_log
.txcnt
[tty
->index
]++;
2189 port
->mon_data
.txcnt
++;
2190 port
->mon_data
.up_txcnt
++;
2195 if (port
->port
.xmit_buf
== NULL
)
2198 if (port
->xmit_cnt
<= 0 || tty
->stopped
||
2200 (port
->type
!= PORT_16550A
) &&
2201 (!port
->board
->chip_flag
))) {
2202 port
->IER
&= ~UART_IER_THRI
;
2203 outb(port
->IER
, port
->ioaddr
+ UART_IER
);
2207 cnt
= port
->xmit_cnt
;
2208 count
= port
->xmit_fifo_size
;
2210 outb(port
->port
.xmit_buf
[port
->xmit_tail
++],
2211 port
->ioaddr
+ UART_TX
);
2212 port
->xmit_tail
= port
->xmit_tail
& (SERIAL_XMIT_SIZE
- 1);
2213 if (--port
->xmit_cnt
<= 0)
2215 } while (--count
> 0);
2216 mxvar_log
.txcnt
[tty
->index
] += (cnt
- port
->xmit_cnt
);
2218 port
->mon_data
.txcnt
+= (cnt
- port
->xmit_cnt
);
2219 port
->mon_data
.up_txcnt
+= (cnt
- port
->xmit_cnt
);
2220 port
->icount
.tx
+= (cnt
- port
->xmit_cnt
);
2222 if (port
->xmit_cnt
< WAKEUP_CHARS
&& tty
)
2225 if (port
->xmit_cnt
<= 0) {
2226 port
->IER
&= ~UART_IER_THRI
;
2227 outb(port
->IER
, port
->ioaddr
+ UART_IER
);
2232 * This is the serial driver's generic interrupt routine
2234 static irqreturn_t
mxser_interrupt(int irq
, void *dev_id
)
2237 struct mxser_board
*brd
= NULL
;
2238 struct mxser_port
*port
;
2239 int max
, irqbits
, bits
, msr
;
2240 unsigned int int_cnt
, pass_counter
= 0;
2241 int handled
= IRQ_NONE
;
2242 struct tty_struct
*tty
;
2244 for (i
= 0; i
< MXSER_BOARDS
; i
++)
2245 if (dev_id
== &mxser_boards
[i
]) {
2250 if (i
== MXSER_BOARDS
)
2254 max
= brd
->info
->nports
;
2255 while (pass_counter
++ < MXSER_ISR_PASS_LIMIT
) {
2256 irqbits
= inb(brd
->vector
) & brd
->vector_mask
;
2257 if (irqbits
== brd
->vector_mask
)
2260 handled
= IRQ_HANDLED
;
2261 for (i
= 0, bits
= 1; i
< max
; i
++, irqbits
|= bits
, bits
<<= 1) {
2262 if (irqbits
== brd
->vector_mask
)
2266 port
= &brd
->ports
[i
];
2269 spin_lock(&port
->slock
);
2271 iir
= inb(port
->ioaddr
+ UART_IIR
);
2272 if (iir
& UART_IIR_NO_INT
)
2274 iir
&= MOXA_MUST_IIR_MASK
;
2275 tty
= tty_port_tty_get(&port
->port
);
2277 (port
->port
.flags
& ASYNC_CLOSING
) ||
2278 !(port
->port
.flags
&
2279 ASYNC_INITIALIZED
)) {
2280 status
= inb(port
->ioaddr
+ UART_LSR
);
2281 outb(0x27, port
->ioaddr
+ UART_FCR
);
2282 inb(port
->ioaddr
+ UART_MSR
);
2287 status
= inb(port
->ioaddr
+ UART_LSR
);
2289 if (status
& UART_LSR_PE
)
2290 port
->err_shadow
|= NPPI_NOTIFY_PARITY
;
2291 if (status
& UART_LSR_FE
)
2292 port
->err_shadow
|= NPPI_NOTIFY_FRAMING
;
2293 if (status
& UART_LSR_OE
)
2295 NPPI_NOTIFY_HW_OVERRUN
;
2296 if (status
& UART_LSR_BI
)
2297 port
->err_shadow
|= NPPI_NOTIFY_BREAK
;
2299 if (port
->board
->chip_flag
) {
2300 if (iir
== MOXA_MUST_IIR_GDA
||
2301 iir
== MOXA_MUST_IIR_RDA
||
2302 iir
== MOXA_MUST_IIR_RTO
||
2303 iir
== MOXA_MUST_IIR_LSR
)
2304 mxser_receive_chars(tty
, port
,
2308 status
&= port
->read_status_mask
;
2309 if (status
& UART_LSR_DR
)
2310 mxser_receive_chars(tty
, port
,
2313 msr
= inb(port
->ioaddr
+ UART_MSR
);
2314 if (msr
& UART_MSR_ANY_DELTA
)
2315 mxser_check_modem_status(tty
, port
, msr
);
2317 if (port
->board
->chip_flag
) {
2318 if (iir
== 0x02 && (status
&
2320 mxser_transmit_chars(tty
, port
);
2322 if (status
& UART_LSR_THRE
)
2323 mxser_transmit_chars(tty
, port
);
2326 } while (int_cnt
++ < MXSER_ISR_PASS_LIMIT
);
2327 spin_unlock(&port
->slock
);
2335 static const struct tty_operations mxser_ops
= {
2337 .close
= mxser_close
,
2338 .write
= mxser_write
,
2339 .put_char
= mxser_put_char
,
2340 .flush_chars
= mxser_flush_chars
,
2341 .write_room
= mxser_write_room
,
2342 .chars_in_buffer
= mxser_chars_in_buffer
,
2343 .flush_buffer
= mxser_flush_buffer
,
2344 .ioctl
= mxser_ioctl
,
2345 .throttle
= mxser_throttle
,
2346 .unthrottle
= mxser_unthrottle
,
2347 .set_termios
= mxser_set_termios
,
2349 .start
= mxser_start
,
2350 .hangup
= mxser_hangup
,
2351 .break_ctl
= mxser_rs_break
,
2352 .wait_until_sent
= mxser_wait_until_sent
,
2353 .tiocmget
= mxser_tiocmget
,
2354 .tiocmset
= mxser_tiocmset
,
2357 struct tty_port_operations mxser_port_ops
= {
2358 .carrier_raised
= mxser_carrier_raised
,
2359 .raise_dtr_rts
= mxser_raise_dtr_rts
,
2363 * The MOXA Smartio/Industio serial driver boot-time initialization code!
2366 static void mxser_release_res(struct mxser_board
*brd
, struct pci_dev
*pdev
,
2370 free_irq(brd
->irq
, brd
);
2371 if (pdev
!= NULL
) { /* PCI */
2373 pci_release_region(pdev
, 2);
2374 pci_release_region(pdev
, 3);
2377 release_region(brd
->ports
[0].ioaddr
, 8 * brd
->info
->nports
);
2378 release_region(brd
->vector
, 1);
2382 static int __devinit
mxser_initbrd(struct mxser_board
*brd
,
2383 struct pci_dev
*pdev
)
2385 struct mxser_port
*info
;
2389 printk(KERN_INFO
"mxser: max. baud rate = %d bps\n",
2390 brd
->ports
[0].max_baud
);
2392 for (i
= 0; i
< brd
->info
->nports
; i
++) {
2393 info
= &brd
->ports
[i
];
2394 tty_port_init(&info
->port
);
2395 info
->port
.ops
= &mxser_port_ops
;
2398 info
->ldisc_stop_rx
= 0;
2400 /* Enhance mode enabled here */
2401 if (brd
->chip_flag
!= MOXA_OTHER_UART
)
2402 mxser_enable_must_enchance_mode(info
->ioaddr
);
2404 info
->port
.flags
= ASYNC_SHARE_IRQ
;
2405 info
->type
= brd
->uart_type
;
2407 process_txrx_fifo(info
);
2409 info
->custom_divisor
= info
->baud_base
* 16;
2410 info
->port
.close_delay
= 5 * HZ
/ 10;
2411 info
->port
.closing_wait
= 30 * HZ
;
2412 info
->normal_termios
= mxvar_sdriver
->init_termios
;
2413 init_waitqueue_head(&info
->delta_msr_wait
);
2414 memset(&info
->mon_data
, 0, sizeof(struct mxser_mon
));
2415 info
->err_shadow
= 0;
2416 spin_lock_init(&info
->slock
);
2418 /* before set INT ISR, disable all int */
2419 outb(inb(info
->ioaddr
+ UART_IER
) & 0xf0,
2420 info
->ioaddr
+ UART_IER
);
2423 retval
= request_irq(brd
->irq
, mxser_interrupt
, IRQF_SHARED
, "mxser",
2426 printk(KERN_ERR
"Board %s: Request irq failed, IRQ (%d) may "
2427 "conflict with another device.\n",
2428 brd
->info
->name
, brd
->irq
);
2429 /* We hold resources, we need to release them. */
2430 mxser_release_res(brd
, pdev
, 0);
2435 static int __init
mxser_get_ISA_conf(int cap
, struct mxser_board
*brd
)
2438 unsigned short regs
[16], irq
;
2439 unsigned char scratch
, scratch2
;
2441 brd
->chip_flag
= MOXA_OTHER_UART
;
2443 id
= mxser_read_register(cap
, regs
);
2446 brd
->info
= &mxser_cards
[0];
2449 brd
->info
= &mxser_cards
[1];
2451 case CI104J_ASIC_ID
:
2452 brd
->info
= &mxser_cards
[2];
2455 brd
->info
= &mxser_cards
[5];
2458 brd
->info
= &mxser_cards
[6];
2461 brd
->info
= &mxser_cards
[7];
2468 /* some ISA cards have 2 ports, but we want to see them as 4-port (why?)
2469 Flag-hack checks if configuration should be read as 2-port here. */
2470 if (brd
->info
->nports
== 2 || (brd
->info
->flags
& MXSER_HAS2
)) {
2471 irq
= regs
[9] & 0xF000;
2472 irq
= irq
| (irq
>> 4);
2473 if (irq
!= (regs
[9] & 0xFF00))
2474 goto err_irqconflict
;
2475 } else if (brd
->info
->nports
== 4) {
2476 irq
= regs
[9] & 0xF000;
2477 irq
= irq
| (irq
>> 4);
2478 irq
= irq
| (irq
>> 8);
2480 goto err_irqconflict
;
2481 } else if (brd
->info
->nports
== 8) {
2482 irq
= regs
[9] & 0xF000;
2483 irq
= irq
| (irq
>> 4);
2484 irq
= irq
| (irq
>> 8);
2485 if ((irq
!= regs
[9]) || (irq
!= regs
[10]))
2486 goto err_irqconflict
;
2490 printk(KERN_ERR
"mxser: interrupt number unset\n");
2493 brd
->irq
= ((int)(irq
& 0xF000) >> 12);
2494 for (i
= 0; i
< 8; i
++)
2495 brd
->ports
[i
].ioaddr
= (int) regs
[i
+ 1] & 0xFFF8;
2496 if ((regs
[12] & 0x80) == 0) {
2497 printk(KERN_ERR
"mxser: invalid interrupt vector\n");
2500 brd
->vector
= (int)regs
[11]; /* interrupt vector */
2502 brd
->vector_mask
= 0x00FF;
2504 brd
->vector_mask
= 0x000F;
2505 for (i
= 7, bits
= 0x0100; i
>= 0; i
--, bits
<<= 1) {
2506 if (regs
[12] & bits
) {
2507 brd
->ports
[i
].baud_base
= 921600;
2508 brd
->ports
[i
].max_baud
= 921600;
2510 brd
->ports
[i
].baud_base
= 115200;
2511 brd
->ports
[i
].max_baud
= 115200;
2514 scratch2
= inb(cap
+ UART_LCR
) & (~UART_LCR_DLAB
);
2515 outb(scratch2
| UART_LCR_DLAB
, cap
+ UART_LCR
);
2516 outb(0, cap
+ UART_EFR
); /* EFR is the same as FCR */
2517 outb(scratch2
, cap
+ UART_LCR
);
2518 outb(UART_FCR_ENABLE_FIFO
, cap
+ UART_FCR
);
2519 scratch
= inb(cap
+ UART_IIR
);
2522 brd
->uart_type
= PORT_16550A
;
2524 brd
->uart_type
= PORT_16450
;
2525 if (!request_region(brd
->ports
[0].ioaddr
, 8 * brd
->info
->nports
,
2527 printk(KERN_ERR
"mxser: can't request ports I/O region: "
2528 "0x%.8lx-0x%.8lx\n",
2529 brd
->ports
[0].ioaddr
, brd
->ports
[0].ioaddr
+
2530 8 * brd
->info
->nports
- 1);
2533 if (!request_region(brd
->vector
, 1, "mxser(vector)")) {
2534 release_region(brd
->ports
[0].ioaddr
, 8 * brd
->info
->nports
);
2535 printk(KERN_ERR
"mxser: can't request interrupt vector region: "
2536 "0x%.8lx-0x%.8lx\n",
2537 brd
->ports
[0].ioaddr
, brd
->ports
[0].ioaddr
+
2538 8 * brd
->info
->nports
- 1);
2541 return brd
->info
->nports
;
2544 printk(KERN_ERR
"mxser: invalid interrupt number\n");
2548 static int __devinit
mxser_probe(struct pci_dev
*pdev
,
2549 const struct pci_device_id
*ent
)
2552 struct mxser_board
*brd
;
2554 unsigned long ioaddress
;
2555 int retval
= -EINVAL
;
2557 for (i
= 0; i
< MXSER_BOARDS
; i
++)
2558 if (mxser_boards
[i
].info
== NULL
)
2561 if (i
>= MXSER_BOARDS
) {
2562 dev_err(&pdev
->dev
, "too many boards found (maximum %d), board "
2563 "not configured\n", MXSER_BOARDS
);
2567 brd
= &mxser_boards
[i
];
2568 brd
->idx
= i
* MXSER_PORTS_PER_BOARD
;
2569 dev_info(&pdev
->dev
, "found MOXA %s board (BusNo=%d, DevNo=%d)\n",
2570 mxser_cards
[ent
->driver_data
].name
,
2571 pdev
->bus
->number
, PCI_SLOT(pdev
->devfn
));
2573 retval
= pci_enable_device(pdev
);
2575 dev_err(&pdev
->dev
, "PCI enable failed\n");
2580 ioaddress
= pci_resource_start(pdev
, 2);
2581 retval
= pci_request_region(pdev
, 2, "mxser(IO)");
2585 brd
->info
= &mxser_cards
[ent
->driver_data
];
2586 for (i
= 0; i
< brd
->info
->nports
; i
++)
2587 brd
->ports
[i
].ioaddr
= ioaddress
+ 8 * i
;
2590 ioaddress
= pci_resource_start(pdev
, 3);
2591 retval
= pci_request_region(pdev
, 3, "mxser(vector)");
2594 brd
->vector
= ioaddress
;
2597 brd
->irq
= pdev
->irq
;
2599 brd
->chip_flag
= CheckIsMoxaMust(brd
->ports
[0].ioaddr
);
2600 brd
->uart_type
= PORT_16550A
;
2601 brd
->vector_mask
= 0;
2603 for (i
= 0; i
< brd
->info
->nports
; i
++) {
2604 for (j
= 0; j
< UART_INFO_NUM
; j
++) {
2605 if (Gpci_uart_info
[j
].type
== brd
->chip_flag
) {
2606 brd
->ports
[i
].max_baud
=
2607 Gpci_uart_info
[j
].max_baud
;
2609 /* exception....CP-102 */
2610 if (brd
->info
->flags
& MXSER_HIGHBAUD
)
2611 brd
->ports
[i
].max_baud
= 921600;
2617 if (brd
->chip_flag
== MOXA_MUST_MU860_HWID
) {
2618 for (i
= 0; i
< brd
->info
->nports
; i
++) {
2620 brd
->ports
[i
].opmode_ioaddr
= ioaddress
+ 4;
2622 brd
->ports
[i
].opmode_ioaddr
= ioaddress
+ 0x0c;
2624 outb(0, ioaddress
+ 4); /* default set to RS232 mode */
2625 outb(0, ioaddress
+ 0x0c); /* default set to RS232 mode */
2628 for (i
= 0; i
< brd
->info
->nports
; i
++) {
2629 brd
->vector_mask
|= (1 << i
);
2630 brd
->ports
[i
].baud_base
= 921600;
2633 /* mxser_initbrd will hook ISR. */
2634 retval
= mxser_initbrd(brd
, pdev
);
2638 for (i
= 0; i
< brd
->info
->nports
; i
++)
2639 tty_register_device(mxvar_sdriver
, brd
->idx
+ i
, &pdev
->dev
);
2641 pci_set_drvdata(pdev
, brd
);
2645 pci_release_region(pdev
, 2);
2655 static void __devexit
mxser_remove(struct pci_dev
*pdev
)
2657 struct mxser_board
*brd
= pci_get_drvdata(pdev
);
2660 for (i
= 0; i
< brd
->info
->nports
; i
++)
2661 tty_unregister_device(mxvar_sdriver
, brd
->idx
+ i
);
2663 mxser_release_res(brd
, pdev
, 1);
2667 static struct pci_driver mxser_driver
= {
2669 .id_table
= mxser_pcibrds
,
2670 .probe
= mxser_probe
,
2671 .remove
= __devexit_p(mxser_remove
)
2674 static int __init
mxser_module_init(void)
2676 struct mxser_board
*brd
;
2677 unsigned int b
, i
, m
;
2680 mxvar_sdriver
= alloc_tty_driver(MXSER_PORTS
+ 1);
2684 printk(KERN_INFO
"MOXA Smartio/Industio family driver version %s\n",
2687 /* Initialize the tty_driver structure */
2688 mxvar_sdriver
->owner
= THIS_MODULE
;
2689 mxvar_sdriver
->magic
= TTY_DRIVER_MAGIC
;
2690 mxvar_sdriver
->name
= "ttyMI";
2691 mxvar_sdriver
->major
= ttymajor
;
2692 mxvar_sdriver
->minor_start
= 0;
2693 mxvar_sdriver
->num
= MXSER_PORTS
+ 1;
2694 mxvar_sdriver
->type
= TTY_DRIVER_TYPE_SERIAL
;
2695 mxvar_sdriver
->subtype
= SERIAL_TYPE_NORMAL
;
2696 mxvar_sdriver
->init_termios
= tty_std_termios
;
2697 mxvar_sdriver
->init_termios
.c_cflag
= B9600
|CS8
|CREAD
|HUPCL
|CLOCAL
;
2698 mxvar_sdriver
->flags
= TTY_DRIVER_REAL_RAW
|TTY_DRIVER_DYNAMIC_DEV
;
2699 tty_set_operations(mxvar_sdriver
, &mxser_ops
);
2701 retval
= tty_register_driver(mxvar_sdriver
);
2703 printk(KERN_ERR
"Couldn't install MOXA Smartio/Industio family "
2708 /* Start finding ISA boards here */
2709 for (m
= 0, b
= 0; b
< MXSER_BOARDS
; b
++) {
2713 brd
= &mxser_boards
[m
];
2714 retval
= mxser_get_ISA_conf(!ioaddr
[b
], brd
);
2720 printk(KERN_INFO
"mxser: found MOXA %s board (CAP=0x%lx)\n",
2721 brd
->info
->name
, ioaddr
[b
]);
2723 /* mxser_initbrd will hook ISR. */
2724 if (mxser_initbrd(brd
, NULL
) < 0) {
2729 brd
->idx
= m
* MXSER_PORTS_PER_BOARD
;
2730 for (i
= 0; i
< brd
->info
->nports
; i
++)
2731 tty_register_device(mxvar_sdriver
, brd
->idx
+ i
, NULL
);
2736 retval
= pci_register_driver(&mxser_driver
);
2738 printk(KERN_ERR
"mxser: can't register pci driver\n");
2742 } /* else: we have some ISA cards under control */
2747 tty_unregister_driver(mxvar_sdriver
);
2749 put_tty_driver(mxvar_sdriver
);
2753 static void __exit
mxser_module_exit(void)
2757 pci_unregister_driver(&mxser_driver
);
2759 for (i
= 0; i
< MXSER_BOARDS
; i
++) /* ISA remains */
2760 if (mxser_boards
[i
].info
!= NULL
)
2761 for (j
= 0; j
< mxser_boards
[i
].info
->nports
; j
++)
2762 tty_unregister_device(mxvar_sdriver
,
2763 mxser_boards
[i
].idx
+ j
);
2764 tty_unregister_driver(mxvar_sdriver
);
2765 put_tty_driver(mxvar_sdriver
);
2767 for (i
= 0; i
< MXSER_BOARDS
; i
++)
2768 if (mxser_boards
[i
].info
!= NULL
)
2769 mxser_release_res(&mxser_boards
[i
], NULL
, 1);
2772 module_init(mxser_module_init
);
2773 module_exit(mxser_module_exit
);