blob: 80a01150b86c40674d9f0158062b2e91bdbff676 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * mxser.c -- MOXA Smartio/Industio family multiport serial driver.
3 *
4 * Copyright (C) 1999-2001 Moxa Technologies (support@moxa.com.tw).
5 *
6 * This code is loosely based on the Linux serial driver, written by
7 * Linus Torvalds, Theodore T'so and others.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -070012 * (at your option) any later version.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 * Original release 10/26/00
24 *
25 * 02/06/01 Support MOXA Industio family boards.
26 * 02/06/01 Support TIOCGICOUNT.
27 * 02/06/01 Fix the problem for connecting to serial mouse.
28 * 02/06/01 Fix the problem for H/W flow control.
29 * 02/06/01 Fix the compling warning when CONFIG_PCI
30 * don't be defined.
31 *
32 * Fed through a cleanup, indent and remove of non 2.6 code by Alan Cox
33 * <alan@redhat.com>. The original 1.8 code is available on www.moxa.com.
34 * - Fixed x86_64 cleanness
35 * - Fixed sleep with spinlock held in mxser_send_break
36 */
37
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/autoconf.h>
41#include <linux/errno.h>
42#include <linux/signal.h>
43#include <linux/sched.h>
44#include <linux/timer.h>
45#include <linux/interrupt.h>
46#include <linux/tty.h>
47#include <linux/tty_flip.h>
48#include <linux/serial.h>
49#include <linux/serial_reg.h>
50#include <linux/major.h>
51#include <linux/string.h>
52#include <linux/fcntl.h>
53#include <linux/ptrace.h>
54#include <linux/gfp.h>
55#include <linux/ioport.h>
56#include <linux/mm.h>
57#include <linux/smp_lock.h>
58#include <linux/delay.h>
59#include <linux/pci.h>
60
61#include <asm/system.h>
62#include <asm/io.h>
63#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <asm/bitops.h>
65#include <asm/uaccess.h>
66
67#include "mxser.h"
68
69#define MXSER_VERSION "1.8"
70#define MXSERMAJOR 174
71#define MXSERCUMAJOR 175
72
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -070073#define MXSER_EVENT_TXLOW 1
74#define MXSER_EVENT_HANGUP 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76#define MXSER_BOARDS 4 /* Max. boards */
77#define MXSER_PORTS 32 /* Max. ports */
78#define MXSER_PORTS_PER_BOARD 8 /* Max. ports per board */
79#define MXSER_ISR_PASS_LIMIT 256
80
81#define MXSER_ERR_IOADDR -1
82#define MXSER_ERR_IRQ -2
83#define MXSER_ERR_IRQ_CONFLIT -3
84#define MXSER_ERR_VECTOR -4
85
86#define SERIAL_TYPE_NORMAL 1
87#define SERIAL_TYPE_CALLOUT 2
88
89#define WAKEUP_CHARS 256
90
91#define UART_MCR_AFE 0x20
92#define UART_LSR_SPECIAL 0x1E
93
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -070094#define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK|\
95 IXON|IXOFF))
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Thomas Gleixner0f2ed4c2006-07-01 19:29:33 -070097#define IRQ_T(info) ((info->flags & ASYNC_SHARE_IRQ) ? IRQF_SHARED : IRQF_DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99#define C168_ASIC_ID 1
100#define C104_ASIC_ID 2
101#define C102_ASIC_ID 0xB
102#define CI132_ASIC_ID 4
103#define CI134_ASIC_ID 3
104#define CI104J_ASIC_ID 5
105
106enum {
107 MXSER_BOARD_C168_ISA = 1,
108 MXSER_BOARD_C104_ISA,
109 MXSER_BOARD_CI104J,
110 MXSER_BOARD_C168_PCI,
111 MXSER_BOARD_C104_PCI,
112 MXSER_BOARD_C102_ISA,
113 MXSER_BOARD_CI132,
114 MXSER_BOARD_CI134,
115 MXSER_BOARD_CP132,
116 MXSER_BOARD_CP114,
117 MXSER_BOARD_CT114,
118 MXSER_BOARD_CP102,
119 MXSER_BOARD_CP104U,
120 MXSER_BOARD_CP168U,
121 MXSER_BOARD_CP132U,
122 MXSER_BOARD_CP134U,
123 MXSER_BOARD_CP104JU,
124 MXSER_BOARD_RC7000,
125 MXSER_BOARD_CP118U,
126 MXSER_BOARD_CP102UL,
127 MXSER_BOARD_CP102U,
128};
129
130static char *mxser_brdname[] = {
131 "C168 series",
132 "C104 series",
133 "CI-104J series",
134 "C168H/PCI series",
135 "C104H/PCI series",
136 "C102 series",
137 "CI-132 series",
138 "CI-134 series",
139 "CP-132 series",
140 "CP-114 series",
141 "CT-114 series",
142 "CP-102 series",
143 "CP-104U series",
144 "CP-168U series",
145 "CP-132U series",
146 "CP-134U series",
147 "CP-104JU series",
148 "Moxa UC7000 Serial",
149 "CP-118U series",
150 "CP-102UL series",
151 "CP-102U series",
152};
153
154static int mxser_numports[] = {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700155 8, /* C168-ISA */
156 4, /* C104-ISA */
157 4, /* CI104J */
158 8, /* C168-PCI */
159 4, /* C104-PCI */
160 2, /* C102-ISA */
161 2, /* CI132 */
162 4, /* CI134 */
163 2, /* CP132 */
164 4, /* CP114 */
165 4, /* CT114 */
166 2, /* CP102 */
167 4, /* CP104U */
168 8, /* CP168U */
169 2, /* CP132U */
170 4, /* CP134U */
171 4, /* CP104JU */
172 8, /* RC7000 */
173 8, /* CP118U */
174 2, /* CP102UL */
175 2, /* CP102U */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176};
177
178#define UART_TYPE_NUM 2
179
180static const unsigned int Gmoxa_uart_id[UART_TYPE_NUM] = {
181 MOXA_MUST_MU150_HWID,
182 MOXA_MUST_MU860_HWID
183};
184
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700185/* This is only for PCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186#define UART_INFO_NUM 3
187struct mxpciuart_info {
188 int type;
189 int tx_fifo;
190 int rx_fifo;
191 int xmit_fifo_size;
192 int rx_high_water;
193 int rx_trigger;
194 int rx_low_water;
195 long max_baud;
196};
197
198static const struct mxpciuart_info Gpci_uart_info[UART_INFO_NUM] = {
199 {MOXA_OTHER_UART, 16, 16, 16, 14, 14, 1, 921600L},
200 {MOXA_MUST_MU150_HWID, 64, 64, 64, 48, 48, 16, 230400L},
201 {MOXA_MUST_MU860_HWID, 128, 128, 128, 96, 96, 32, 921600L}
202};
203
204
205#ifdef CONFIG_PCI
206
207static struct pci_device_id mxser_pcibrds[] = {
208 {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_C168, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_C168_PCI},
209 {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_C104, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_C104_PCI},
210 {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP132, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CP132},
211 {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP114, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CP114},
212 {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CT114, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CT114},
213 {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP102, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CP102},
214 {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP104U, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CP104U},
215 {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP168U, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CP168U},
216 {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP132U, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CP132U},
217 {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP134U, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CP134U},
218 {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP104JU, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CP104JU},
219 {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_RC7000, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_RC7000},
220 {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP118U, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CP118U},
221 {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP102UL, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CP102UL},
222 {PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP102U, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MXSER_BOARD_CP102U},
223 {0}
224};
225
226MODULE_DEVICE_TABLE(pci, mxser_pcibrds);
227
228
229#endif
230
231typedef struct _moxa_pci_info {
232 unsigned short busNum;
233 unsigned short devNum;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700234 struct pci_dev *pdev; /* add by Victor Yu. 06-23-2003 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235} moxa_pci_info;
236
237static int ioaddr[MXSER_BOARDS] = { 0, 0, 0, 0 };
238static int ttymajor = MXSERMAJOR;
239static int calloutmajor = MXSERCUMAJOR;
240static int verbose = 0;
241
242/* Variables for insmod */
243
244MODULE_AUTHOR("Casper Yang");
245MODULE_DESCRIPTION("MOXA Smartio/Industio Family Multiport Board Device Driver");
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800246module_param_array(ioaddr, int, NULL, 0);
247module_param(ttymajor, int, 0);
248module_param(calloutmajor, int, 0);
249module_param(verbose, bool, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250MODULE_LICENSE("GPL");
251
252struct mxser_log {
253 int tick;
254 unsigned long rxcnt[MXSER_PORTS];
255 unsigned long txcnt[MXSER_PORTS];
256};
257
258
259struct mxser_mon {
260 unsigned long rxcnt;
261 unsigned long txcnt;
262 unsigned long up_rxcnt;
263 unsigned long up_txcnt;
264 int modem_status;
265 unsigned char hold_reason;
266};
267
268struct mxser_mon_ext {
269 unsigned long rx_cnt[32];
270 unsigned long tx_cnt[32];
271 unsigned long up_rxcnt[32];
272 unsigned long up_txcnt[32];
273 int modem_status[32];
274
275 long baudrate[32];
276 int databits[32];
277 int stopbits[32];
278 int parity[32];
279 int flowctrl[32];
280 int fifo[32];
281 int iftype[32];
282};
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284struct mxser_hwconf {
285 int board_type;
286 int ports;
287 int irq;
288 int vector;
289 int vector_mask;
290 int uart_type;
291 int ioaddr[MXSER_PORTS_PER_BOARD];
292 int baud_base[MXSER_PORTS_PER_BOARD];
293 moxa_pci_info pciInfo;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700294 int IsMoxaMustChipFlag; /* add by Victor Yu. 08-30-2002 */
295 int MaxCanSetBaudRate[MXSER_PORTS_PER_BOARD]; /* add by Victor Yu. 09-04-2002 */
296 int opmode_ioaddr[MXSER_PORTS_PER_BOARD]; /* add by Victor Yu. 01-05-2004 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297};
298
299struct mxser_struct {
300 int port;
301 int base; /* port base address */
302 int irq; /* port using irq no. */
303 int vector; /* port irq vector */
304 int vectormask; /* port vector mask */
305 int rx_high_water;
306 int rx_trigger; /* Rx fifo trigger level */
307 int rx_low_water;
308 int baud_base; /* max. speed */
309 int flags; /* defined in tty.h */
310 int type; /* UART type */
311 struct tty_struct *tty;
312 int read_status_mask;
313 int ignore_status_mask;
314 int xmit_fifo_size;
315 int custom_divisor;
316 int x_char; /* xon/xoff character */
317 int close_delay;
318 unsigned short closing_wait;
319 int IER; /* Interrupt Enable Register */
320 int MCR; /* Modem control register */
321 unsigned long event;
322 int count; /* # of fd on device */
323 int blocked_open; /* # of blocked opens */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 unsigned char *xmit_buf;
325 int xmit_head;
326 int xmit_tail;
327 int xmit_cnt;
328 struct work_struct tqueue;
Alan Cox606d0992006-12-08 02:38:45 -0800329 struct ktermios normal_termios;
330 struct ktermios callout_termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 wait_queue_head_t open_wait;
332 wait_queue_head_t close_wait;
333 wait_queue_head_t delta_msr_wait;
334 struct async_icount icount; /* kernel counters for the 4 input interrupts */
335 int timeout;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700336 int IsMoxaMustChipFlag; /* add by Victor Yu. 08-30-2002 */
337 int MaxCanSetBaudRate; /* add by Victor Yu. 09-04-2002 */
338 int opmode_ioaddr; /* add by Victor Yu. 01-05-2004 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 unsigned char stop_rx;
340 unsigned char ldisc_stop_rx;
341 long realbaud;
342 struct mxser_mon mon_data;
343 unsigned char err_shadow;
344 spinlock_t slock;
345};
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347struct mxser_mstatus {
348 tcflag_t cflag;
349 int cts;
350 int dsr;
351 int ri;
352 int dcd;
353};
354
355static struct mxser_mstatus GMStatus[MXSER_PORTS];
356
357static int mxserBoardCAP[MXSER_BOARDS] = {
358 0, 0, 0, 0
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700359 /* 0x180, 0x280, 0x200, 0x320 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360};
361
362static struct tty_driver *mxvar_sdriver;
363static struct mxser_struct mxvar_table[MXSER_PORTS];
364static struct tty_struct *mxvar_tty[MXSER_PORTS + 1];
Alan Cox606d0992006-12-08 02:38:45 -0800365static struct ktermios *mxvar_termios[MXSER_PORTS + 1];
366static struct ktermios *mxvar_termios_locked[MXSER_PORTS + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367static struct mxser_log mxvar_log;
368static int mxvar_diagflag;
369static unsigned char mxser_msr[MXSER_PORTS + 1];
370static struct mxser_mon_ext mon_data_ext;
371static int mxser_set_baud_method[MXSER_PORTS + 1];
372static spinlock_t gm_lock;
373
374/*
375 * This is used to figure out the divisor speeds and the timeouts
376 */
377
378static struct mxser_hwconf mxsercfg[MXSER_BOARDS];
379
380/*
381 * static functions:
382 */
383
384static void mxser_getcfg(int board, struct mxser_hwconf *hwconf);
385static int mxser_init(void);
386
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700387/* static void mxser_poll(unsigned long); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388static int mxser_get_ISA_conf(int, struct mxser_hwconf *);
389static int mxser_get_PCI_conf(int, int, int, struct mxser_hwconf *);
David Howellsc4028952006-11-22 14:57:56 +0000390static void mxser_do_softint(struct work_struct *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391static int mxser_open(struct tty_struct *, struct file *);
392static void mxser_close(struct tty_struct *, struct file *);
393static int mxser_write(struct tty_struct *, const unsigned char *, int);
394static int mxser_write_room(struct tty_struct *);
395static void mxser_flush_buffer(struct tty_struct *);
396static int mxser_chars_in_buffer(struct tty_struct *);
397static void mxser_flush_chars(struct tty_struct *);
398static void mxser_put_char(struct tty_struct *, unsigned char);
399static int mxser_ioctl(struct tty_struct *, struct file *, uint, ulong);
400static int mxser_ioctl_special(unsigned int, void __user *);
401static void mxser_throttle(struct tty_struct *);
402static void mxser_unthrottle(struct tty_struct *);
Alan Cox606d0992006-12-08 02:38:45 -0800403static void mxser_set_termios(struct tty_struct *, struct ktermios *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404static void mxser_stop(struct tty_struct *);
405static void mxser_start(struct tty_struct *);
406static void mxser_hangup(struct tty_struct *);
407static void mxser_rs_break(struct tty_struct *, int);
David Howells7d12e782006-10-05 14:55:46 +0100408static irqreturn_t mxser_interrupt(int, void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409static void mxser_receive_chars(struct mxser_struct *, int *);
410static void mxser_transmit_chars(struct mxser_struct *);
411static void mxser_check_modem_status(struct mxser_struct *, int);
412static int mxser_block_til_ready(struct tty_struct *, struct file *, struct mxser_struct *);
413static int mxser_startup(struct mxser_struct *);
414static void mxser_shutdown(struct mxser_struct *);
Alan Cox606d0992006-12-08 02:38:45 -0800415static int mxser_change_speed(struct mxser_struct *, struct ktermios *old_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416static int mxser_get_serial_info(struct mxser_struct *, struct serial_struct __user *);
417static int mxser_set_serial_info(struct mxser_struct *, struct serial_struct __user *);
418static int mxser_get_lsr_info(struct mxser_struct *, unsigned int __user *);
419static void mxser_send_break(struct mxser_struct *, int);
420static int mxser_tiocmget(struct tty_struct *, struct file *);
421static int mxser_tiocmset(struct tty_struct *, struct file *, unsigned int, unsigned int);
422static int mxser_set_baud(struct mxser_struct *info, long newspd);
423static void mxser_wait_until_sent(struct tty_struct *tty, int timeout);
424
425static void mxser_startrx(struct tty_struct *tty);
426static void mxser_stoprx(struct tty_struct *tty);
427
428
429static int CheckIsMoxaMust(int io)
430{
431 u8 oldmcr, hwid;
432 int i;
433
434 outb(0, io + UART_LCR);
435 DISABLE_MOXA_MUST_ENCHANCE_MODE(io);
436 oldmcr = inb(io + UART_MCR);
437 outb(0, io + UART_MCR);
438 SET_MOXA_MUST_XON1_VALUE(io, 0x11);
439 if ((hwid = inb(io + UART_MCR)) != 0) {
440 outb(oldmcr, io + UART_MCR);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700441 return MOXA_OTHER_UART;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
443
444 GET_MOXA_MUST_HARDWARE_ID(io, &hwid);
445 for (i = 0; i < UART_TYPE_NUM; i++) {
446 if (hwid == Gmoxa_uart_id[i])
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700447 return (int)hwid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
449 return MOXA_OTHER_UART;
450}
451
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700452/* above is modified by Victor Yu. 08-15-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Jeff Dikeb68e31d2006-10-02 02:17:18 -0700454static const struct tty_operations mxser_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 .open = mxser_open,
456 .close = mxser_close,
457 .write = mxser_write,
458 .put_char = mxser_put_char,
459 .flush_chars = mxser_flush_chars,
460 .write_room = mxser_write_room,
461 .chars_in_buffer = mxser_chars_in_buffer,
462 .flush_buffer = mxser_flush_buffer,
463 .ioctl = mxser_ioctl,
464 .throttle = mxser_throttle,
465 .unthrottle = mxser_unthrottle,
466 .set_termios = mxser_set_termios,
467 .stop = mxser_stop,
468 .start = mxser_start,
469 .hangup = mxser_hangup,
Kirill Smelkov57432342005-11-07 00:59:20 -0800470 .break_ctl = mxser_rs_break,
471 .wait_until_sent = mxser_wait_until_sent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 .tiocmget = mxser_tiocmget,
473 .tiocmset = mxser_tiocmset,
474};
475
476/*
477 * The MOXA Smartio/Industio serial driver boot-time initialization code!
478 */
479
480static int __init mxser_module_init(void)
481{
482 int ret;
483
484 if (verbose)
485 printk(KERN_DEBUG "Loading module mxser ...\n");
486 ret = mxser_init();
487 if (verbose)
488 printk(KERN_DEBUG "Done.\n");
489 return ret;
490}
491
492static void __exit mxser_module_exit(void)
493{
Kirill Smelkov64698b62005-11-07 00:59:22 -0800494 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 if (verbose)
497 printk(KERN_DEBUG "Unloading module mxser ...\n");
498
Kirill Smelkov64698b62005-11-07 00:59:22 -0800499 err = tty_unregister_driver(mxvar_sdriver);
500 if (!err)
501 put_tty_driver(mxvar_sdriver);
502 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 printk(KERN_ERR "Couldn't unregister MOXA Smartio/Industio family serial driver\n");
504
505 for (i = 0; i < MXSER_BOARDS; i++) {
506 struct pci_dev *pdev;
507
508 if (mxsercfg[i].board_type == -1)
509 continue;
510 else {
511 pdev = mxsercfg[i].pciInfo.pdev;
512 free_irq(mxsercfg[i].irq, &mxvar_table[i * MXSER_PORTS_PER_BOARD]);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700513 if (pdev != NULL) { /* PCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 release_region(pci_resource_start(pdev, 2), pci_resource_len(pdev, 2));
515 release_region(pci_resource_start(pdev, 3), pci_resource_len(pdev, 3));
Alan Cox1187ece2006-12-08 02:38:10 -0800516 pci_dev_put(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 } else {
518 release_region(mxsercfg[i].ioaddr[0], 8 * mxsercfg[i].ports);
519 release_region(mxsercfg[i].vector, 1);
520 }
521 }
522 }
523 if (verbose)
524 printk(KERN_DEBUG "Done.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
527static void process_txrx_fifo(struct mxser_struct *info)
528{
529 int i;
530
531 if ((info->type == PORT_16450) || (info->type == PORT_8250)) {
532 info->rx_trigger = 1;
533 info->rx_high_water = 1;
534 info->rx_low_water = 1;
535 info->xmit_fifo_size = 1;
536 } else {
537 for (i = 0; i < UART_INFO_NUM; i++) {
538 if (info->IsMoxaMustChipFlag == Gpci_uart_info[i].type) {
539 info->rx_trigger = Gpci_uart_info[i].rx_trigger;
540 info->rx_low_water = Gpci_uart_info[i].rx_low_water;
541 info->rx_high_water = Gpci_uart_info[i].rx_high_water;
542 info->xmit_fifo_size = Gpci_uart_info[i].xmit_fifo_size;
543 break;
544 }
545 }
546 }
547}
548
549static int mxser_initbrd(int board, struct mxser_hwconf *hwconf)
550{
551 struct mxser_struct *info;
552 int retval;
553 int i, n;
554
555 n = board * MXSER_PORTS_PER_BOARD;
556 info = &mxvar_table[n];
557 /*if (verbose) */ {
Jiri Slabyae25f8e2006-12-08 02:38:09 -0800558 printk(KERN_DEBUG " ttyMI%d - ttyMI%d ",
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700559 n, n + hwconf->ports - 1);
560 printk(" max. baud rate = %d bps.\n",
561 hwconf->MaxCanSetBaudRate[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
563
564 for (i = 0; i < hwconf->ports; i++, n++, info++) {
565 info->port = n;
566 info->base = hwconf->ioaddr[i];
567 info->irq = hwconf->irq;
568 info->vector = hwconf->vector;
569 info->vectormask = hwconf->vector_mask;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700570 info->opmode_ioaddr = hwconf->opmode_ioaddr[i]; /* add by Victor Yu. 01-05-2004 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 info->stop_rx = 0;
572 info->ldisc_stop_rx = 0;
573
574 info->IsMoxaMustChipFlag = hwconf->IsMoxaMustChipFlag;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700575 /* Enhance mode enabled here */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 if (info->IsMoxaMustChipFlag != MOXA_OTHER_UART) {
577 ENABLE_MOXA_MUST_ENCHANCE_MODE(info->base);
578 }
579
580 info->flags = ASYNC_SHARE_IRQ;
581 info->type = hwconf->uart_type;
582 info->baud_base = hwconf->baud_base[i];
583
584 info->MaxCanSetBaudRate = hwconf->MaxCanSetBaudRate[i];
585
586 process_txrx_fifo(info);
587
588
589 info->custom_divisor = hwconf->baud_base[i] * 16;
590 info->close_delay = 5 * HZ / 10;
591 info->closing_wait = 30 * HZ;
David Howellsc4028952006-11-22 14:57:56 +0000592 INIT_WORK(&info->tqueue, mxser_do_softint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 info->normal_termios = mxvar_sdriver->init_termios;
594 init_waitqueue_head(&info->open_wait);
595 init_waitqueue_head(&info->close_wait);
596 init_waitqueue_head(&info->delta_msr_wait);
597 memset(&info->mon_data, 0, sizeof(struct mxser_mon));
598 info->err_shadow = 0;
599 spin_lock_init(&info->slock);
600 }
601 /*
602 * Allocate the IRQ if necessary
603 */
604
605
606 /* before set INT ISR, disable all int */
607 for (i = 0; i < hwconf->ports; i++) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700608 outb(inb(hwconf->ioaddr[i] + UART_IER) & 0xf0,
609 hwconf->ioaddr[i] + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
611
612 n = board * MXSER_PORTS_PER_BOARD;
613 info = &mxvar_table[n];
614
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700615 retval = request_irq(hwconf->irq, mxser_interrupt, IRQ_T(info),
616 "mxser", info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 if (retval) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700618 printk(KERN_ERR "Board %d: %s",
619 board, mxser_brdname[hwconf->board_type - 1]);
620 printk(" Request irq failed, IRQ (%d) may conflict with"
621 " another device.\n", info->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 return retval;
623 }
624 return 0;
625}
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627static void mxser_getcfg(int board, struct mxser_hwconf *hwconf)
628{
629 mxsercfg[board] = *hwconf;
630}
631
632#ifdef CONFIG_PCI
633static int mxser_get_PCI_conf(int busnum, int devnum, int board_type, struct mxser_hwconf *hwconf)
634{
635 int i, j;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700636 /* unsigned int val; */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 unsigned int ioaddress;
638 struct pci_dev *pdev = hwconf->pciInfo.pdev;
639
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700640 /* io address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 hwconf->board_type = board_type;
642 hwconf->ports = mxser_numports[board_type - 1];
643 ioaddress = pci_resource_start(pdev, 2);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700644 request_region(pci_resource_start(pdev, 2), pci_resource_len(pdev, 2),
645 "mxser(IO)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700647 for (i = 0; i < hwconf->ports; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 hwconf->ioaddr[i] = ioaddress + 8 * i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700650 /* vector */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 ioaddress = pci_resource_start(pdev, 3);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700652 request_region(pci_resource_start(pdev, 3), pci_resource_len(pdev, 3),
653 "mxser(vector)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 hwconf->vector = ioaddress;
655
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700656 /* irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 hwconf->irq = hwconf->pciInfo.pdev->irq;
658
659 hwconf->IsMoxaMustChipFlag = CheckIsMoxaMust(hwconf->ioaddr[0]);
660 hwconf->uart_type = PORT_16550A;
661 hwconf->vector_mask = 0;
662
663
664 for (i = 0; i < hwconf->ports; i++) {
665 for (j = 0; j < UART_INFO_NUM; j++) {
666 if (Gpci_uart_info[j].type == hwconf->IsMoxaMustChipFlag) {
667 hwconf->MaxCanSetBaudRate[i] = Gpci_uart_info[j].max_baud;
668
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700669 /* exception....CP-102 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 if (board_type == MXSER_BOARD_CP102)
671 hwconf->MaxCanSetBaudRate[i] = 921600;
672 break;
673 }
674 }
675 }
676
677 if (hwconf->IsMoxaMustChipFlag == MOXA_MUST_MU860_HWID) {
678 for (i = 0; i < hwconf->ports; i++) {
679 if (i < 4)
680 hwconf->opmode_ioaddr[i] = ioaddress + 4;
681 else
682 hwconf->opmode_ioaddr[i] = ioaddress + 0x0c;
683 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700684 outb(0, ioaddress + 4); /* default set to RS232 mode */
685 outb(0, ioaddress + 0x0c); /* default set to RS232 mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 }
687
688 for (i = 0; i < hwconf->ports; i++) {
689 hwconf->vector_mask |= (1 << i);
690 hwconf->baud_base[i] = 921600;
691 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700692 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694#endif
695
696static int mxser_init(void)
697{
698 int i, m, retval, b, n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 struct pci_dev *pdev = NULL;
700 int index;
701 unsigned char busnum, devnum;
702 struct mxser_hwconf hwconf;
703
704 mxvar_sdriver = alloc_tty_driver(MXSER_PORTS + 1);
705 if (!mxvar_sdriver)
706 return -ENOMEM;
707 spin_lock_init(&gm_lock);
708
709 for (i = 0; i < MXSER_BOARDS; i++) {
710 mxsercfg[i].board_type = -1;
711 }
712
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700713 printk(KERN_INFO "MOXA Smartio/Industio family driver version %s\n",
714 MXSER_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 /* Initialize the tty_driver structure */
717 memset(mxvar_sdriver, 0, sizeof(struct tty_driver));
Jiri Slaby31f87cf2006-12-29 16:47:34 -0800718 mxvar_sdriver->owner = THIS_MODULE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 mxvar_sdriver->magic = TTY_DRIVER_MAGIC;
Jiri Slabyae25f8e2006-12-08 02:38:09 -0800720 mxvar_sdriver->name = "ttyMI";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 mxvar_sdriver->major = ttymajor;
722 mxvar_sdriver->minor_start = 0;
723 mxvar_sdriver->num = MXSER_PORTS + 1;
724 mxvar_sdriver->type = TTY_DRIVER_TYPE_SERIAL;
725 mxvar_sdriver->subtype = SERIAL_TYPE_NORMAL;
726 mxvar_sdriver->init_termios = tty_std_termios;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700727 mxvar_sdriver->init_termios.c_cflag = B9600|CS8|CREAD|HUPCL|CLOCAL;
Alan Cox606d0992006-12-08 02:38:45 -0800728 mxvar_sdriver->init_termios.c_ispeed = 9600;
729 mxvar_sdriver->init_termios.c_ospeed = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 mxvar_sdriver->flags = TTY_DRIVER_REAL_RAW;
731 tty_set_operations(mxvar_sdriver, &mxser_ops);
732 mxvar_sdriver->ttys = mxvar_tty;
733 mxvar_sdriver->termios = mxvar_termios;
734 mxvar_sdriver->termios_locked = mxvar_termios_locked;
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 mxvar_diagflag = 0;
737 memset(mxvar_table, 0, MXSER_PORTS * sizeof(struct mxser_struct));
738 memset(&mxvar_log, 0, sizeof(struct mxser_log));
739
740 memset(&mxser_msr, 0, sizeof(unsigned char) * (MXSER_PORTS + 1));
741 memset(&mon_data_ext, 0, sizeof(struct mxser_mon_ext));
742 memset(&mxser_set_baud_method, 0, sizeof(int) * (MXSER_PORTS + 1));
743 memset(&hwconf, 0, sizeof(struct mxser_hwconf));
744
745 m = 0;
746 /* Start finding ISA boards here */
747 for (b = 0; b < MXSER_BOARDS && m < MXSER_BOARDS; b++) {
748 int cap;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 if (!(cap = mxserBoardCAP[b]))
751 continue;
752
753 retval = mxser_get_ISA_conf(cap, &hwconf);
754
755 if (retval != 0)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700756 printk(KERN_INFO "Found MOXA %s board (CAP=0x%x)\n",
757 mxser_brdname[hwconf.board_type - 1], ioaddr[b]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759 if (retval <= 0) {
760 if (retval == MXSER_ERR_IRQ)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700761 printk(KERN_ERR "Invalid interrupt number, "
762 "board not configured\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 else if (retval == MXSER_ERR_IRQ_CONFLIT)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700764 printk(KERN_ERR "Invalid interrupt number, "
765 "board not configured\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 else if (retval == MXSER_ERR_VECTOR)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700767 printk(KERN_ERR "Invalid interrupt vector, "
768 "board not configured\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 else if (retval == MXSER_ERR_IOADDR)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700770 printk(KERN_ERR "Invalid I/O address, "
771 "board not configured\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773 continue;
774 }
775
776 hwconf.pciInfo.busNum = 0;
777 hwconf.pciInfo.devNum = 0;
778 hwconf.pciInfo.pdev = NULL;
779
780 mxser_getcfg(m, &hwconf);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700781 /*
782 * init mxsercfg first,
783 * or mxsercfg data is not correct on ISR.
784 */
785 /* mxser_initbrd will hook ISR. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 if (mxser_initbrd(m, &hwconf) < 0)
787 continue;
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 m++;
790 }
791
792 /* Start finding ISA boards from module arg */
793 for (b = 0; b < MXSER_BOARDS && m < MXSER_BOARDS; b++) {
794 int cap;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (!(cap = ioaddr[b]))
797 continue;
798
799 retval = mxser_get_ISA_conf(cap, &hwconf);
800
801 if (retval != 0)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700802 printk(KERN_INFO "Found MOXA %s board (CAP=0x%x)\n",
803 mxser_brdname[hwconf.board_type - 1], ioaddr[b]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 if (retval <= 0) {
806 if (retval == MXSER_ERR_IRQ)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700807 printk(KERN_ERR "Invalid interrupt number, "
808 "board not configured\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 else if (retval == MXSER_ERR_IRQ_CONFLIT)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700810 printk(KERN_ERR "Invalid interrupt number, "
811 "board not configured\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 else if (retval == MXSER_ERR_VECTOR)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700813 printk(KERN_ERR "Invalid interrupt vector, "
814 "board not configured\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 else if (retval == MXSER_ERR_IOADDR)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700816 printk(KERN_ERR "Invalid I/O address, "
817 "board not configured\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 continue;
820 }
821
822 hwconf.pciInfo.busNum = 0;
823 hwconf.pciInfo.devNum = 0;
824 hwconf.pciInfo.pdev = NULL;
825
826 mxser_getcfg(m, &hwconf);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700827 /*
828 * init mxsercfg first,
829 * or mxsercfg data is not correct on ISR.
830 */
831 /* mxser_initbrd will hook ISR. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 if (mxser_initbrd(m, &hwconf) < 0)
833 continue;
834
835 m++;
836 }
837
838 /* start finding PCI board here */
839#ifdef CONFIG_PCI
Tobias Klauserfe971072006-01-09 20:54:02 -0800840 n = ARRAY_SIZE(mxser_pcibrds) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 index = 0;
842 b = 0;
843 while (b < n) {
Alan Cox1187ece2006-12-08 02:38:10 -0800844 pdev = pci_get_device(mxser_pcibrds[b].vendor,
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700845 mxser_pcibrds[b].device, pdev);
Alan Cox1187ece2006-12-08 02:38:10 -0800846 if (pdev == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 b++;
848 continue;
849 }
850 hwconf.pciInfo.busNum = busnum = pdev->bus->number;
851 hwconf.pciInfo.devNum = devnum = PCI_SLOT(pdev->devfn) << 3;
852 hwconf.pciInfo.pdev = pdev;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700853 printk(KERN_INFO "Found MOXA %s board(BusNo=%d,DevNo=%d)\n",
854 mxser_brdname[(int) (mxser_pcibrds[b].driver_data) - 1],
855 busnum, devnum >> 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 index++;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700857 if (m >= MXSER_BOARDS)
858 printk(KERN_ERR
859 "Too many Smartio/Industio family boards find "
860 "(maximum %d), board not configured\n",
861 MXSER_BOARDS);
862 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 if (pci_enable_device(pdev)) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700864 printk(KERN_ERR "Moxa SmartI/O PCI enable "
865 "fail !\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 continue;
867 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700868 retval = mxser_get_PCI_conf(busnum, devnum,
869 (int)mxser_pcibrds[b].driver_data,
870 &hwconf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 if (retval < 0) {
872 if (retval == MXSER_ERR_IRQ)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700873 printk(KERN_ERR
874 "Invalid interrupt number, "
875 "board not configured\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 else if (retval == MXSER_ERR_IRQ_CONFLIT)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700877 printk(KERN_ERR
878 "Invalid interrupt number, "
879 "board not configured\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 else if (retval == MXSER_ERR_VECTOR)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700881 printk(KERN_ERR
882 "Invalid interrupt vector, "
883 "board not configured\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 else if (retval == MXSER_ERR_IOADDR)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700885 printk(KERN_ERR
886 "Invalid I/O address, "
887 "board not configured\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 continue;
889 }
890 mxser_getcfg(m, &hwconf);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700891 /* init mxsercfg first,
892 * or mxsercfg data is not correct on ISR.
893 */
894 /* mxser_initbrd will hook ISR. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 if (mxser_initbrd(m, &hwconf) < 0)
896 continue;
897 m++;
Alan Cox1187ece2006-12-08 02:38:10 -0800898 /* Keep an extra reference if we succeeded. It will
899 be returned at unload time */
900 pci_dev_get(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 }
902 }
903#endif
904
Kirill Smelkov64698b62005-11-07 00:59:22 -0800905 retval = tty_register_driver(mxvar_sdriver);
906 if (retval) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700907 printk(KERN_ERR "Couldn't install MOXA Smartio/Industio family"
908 " driver !\n");
Kirill Smelkov64698b62005-11-07 00:59:22 -0800909 put_tty_driver(mxvar_sdriver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 for (i = 0; i < MXSER_BOARDS; i++) {
912 if (mxsercfg[i].board_type == -1)
913 continue;
914 else {
915 free_irq(mxsercfg[i].irq, &mxvar_table[i * MXSER_PORTS_PER_BOARD]);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700916 /* todo: release io, vector */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 }
918 }
Kirill Smelkov64698b62005-11-07 00:59:22 -0800919 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 }
921
Kirill Smelkov64698b62005-11-07 00:59:22 -0800922 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923}
924
David Howellsc4028952006-11-22 14:57:56 +0000925static void mxser_do_softint(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
David Howellsc4028952006-11-22 14:57:56 +0000927 struct mxser_struct *info =
928 container_of(work, struct mxser_struct, tqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 struct tty_struct *tty;
930
931 tty = info->tty;
932
933 if (tty) {
934 if (test_and_clear_bit(MXSER_EVENT_TXLOW, &info->event))
935 tty_wakeup(tty);
936 if (test_and_clear_bit(MXSER_EVENT_HANGUP, &info->event))
937 tty_hangup(tty);
938 }
939}
940
941static unsigned char mxser_get_msr(int baseaddr, int mode, int port, struct mxser_struct *info)
942{
943 unsigned char status = 0;
944
945 status = inb(baseaddr + UART_MSR);
946
947 mxser_msr[port] &= 0x0F;
948 mxser_msr[port] |= status;
949 status = mxser_msr[port];
950 if (mode)
951 mxser_msr[port] = 0;
952
953 return status;
954}
955
956/*
957 * This routine is called whenever a serial port is opened. It
958 * enables interrupts for a serial port, linking in its async structure into
959 * the IRQ chain. It also performs the serial-specific
960 * initialization for the tty structure.
961 */
962static int mxser_open(struct tty_struct *tty, struct file *filp)
963{
964 struct mxser_struct *info;
965 int retval, line;
966
Kirill Smelkov6f08b722005-11-07 00:59:23 -0800967 /* initialize driver_data in case something fails */
968 tty->driver_data = NULL;
969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 line = tty->index;
971 if (line == MXSER_PORTS)
972 return 0;
973 if (line < 0 || line > MXSER_PORTS)
974 return -ENODEV;
975 info = mxvar_table + line;
976 if (!info->base)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700977 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
979 tty->driver_data = info;
980 info->tty = tty;
981 /*
982 * Start up serial port
983 */
984 retval = mxser_startup(info);
985 if (retval)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700986 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988 retval = mxser_block_til_ready(tty, filp, info);
989 if (retval)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700990 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 info->count++;
993
994 if ((info->count == 1) && (info->flags & ASYNC_SPLIT_TERMIOS)) {
995 if (tty->driver->subtype == SERIAL_TYPE_NORMAL)
996 *tty->termios = info->normal_termios;
997 else
998 *tty->termios = info->callout_termios;
999 mxser_change_speed(info, NULL);
1000 }
1001
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001002 /*
1003 status = mxser_get_msr(info->base, 0, info->port);
1004 mxser_check_modem_status(info, status);
1005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Cedric Le Goater8cddd702007-02-10 01:46:33 -08001007 /* unmark here for very high baud rate (ex. 921600 bps) used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 tty->low_latency = 1;
1009 return 0;
1010}
1011
1012/*
1013 * This routine is called when the serial port gets closed. First, we
1014 * wait for the last remaining data to be sent. Then, we unlink its
1015 * async structure from the interrupt chain if necessary, and we free
1016 * that IRQ if nothing is left in the chain.
1017 */
1018static void mxser_close(struct tty_struct *tty, struct file *filp)
1019{
Jesper Juhl56e139f2006-06-25 05:47:52 -07001020 struct mxser_struct *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
1022 unsigned long timeout;
1023 unsigned long flags;
1024 struct tty_ldisc *ld;
1025
1026 if (tty->index == MXSER_PORTS)
1027 return;
1028 if (!info)
Kirill Smelkov6f08b722005-11-07 00:59:23 -08001029 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031 spin_lock_irqsave(&info->slock, flags);
1032
1033 if (tty_hung_up_p(filp)) {
1034 spin_unlock_irqrestore(&info->slock, flags);
1035 return;
1036 }
1037 if ((tty->count == 1) && (info->count != 1)) {
1038 /*
1039 * Uh, oh. tty->count is 1, which means that the tty
1040 * structure will be freed. Info->count should always
1041 * be one in these conditions. If it's greater than
1042 * one, we've got real problems, since it means the
1043 * serial port won't be shutdown.
1044 */
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001045 printk(KERN_ERR "mxser_close: bad serial port count; "
1046 "tty->count is 1, info->count is %d\n", info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 info->count = 1;
1048 }
1049 if (--info->count < 0) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001050 printk(KERN_ERR "mxser_close: bad serial port count for "
1051 "ttys%d: %d\n", info->port, info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 info->count = 0;
1053 }
1054 if (info->count) {
1055 spin_unlock_irqrestore(&info->slock, flags);
1056 return;
1057 }
1058 info->flags |= ASYNC_CLOSING;
1059 spin_unlock_irqrestore(&info->slock, flags);
1060 /*
1061 * Save the termios structure, since this port may have
1062 * separate termios for callout and dialin.
1063 */
1064 if (info->flags & ASYNC_NORMAL_ACTIVE)
1065 info->normal_termios = *tty->termios;
1066 /*
1067 * Now we wait for the transmit buffer to clear; and we notify
1068 * the line discipline to only process XON/XOFF characters.
1069 */
1070 tty->closing = 1;
1071 if (info->closing_wait != ASYNC_CLOSING_WAIT_NONE)
1072 tty_wait_until_sent(tty, info->closing_wait);
1073 /*
1074 * At this point we stop accepting input. To do this, we
1075 * disable the receive line status interrupts, and tell the
1076 * interrupt driver to stop checking the data ready bit in the
1077 * line status register.
1078 */
1079 info->IER &= ~UART_IER_RLSI;
1080 if (info->IsMoxaMustChipFlag)
1081 info->IER &= ~MOXA_MUST_RECV_ISR;
1082/* by William
1083 info->read_status_mask &= ~UART_LSR_DR;
1084*/
1085 if (info->flags & ASYNC_INITIALIZED) {
1086 outb(info->IER, info->base + UART_IER);
1087 /*
1088 * Before we drop DTR, make sure the UART transmitter
1089 * has completely drained; this is especially
1090 * important if there is a transmit FIFO!
1091 */
1092 timeout = jiffies + HZ;
1093 while (!(inb(info->base + UART_LSR) & UART_LSR_TEMT)) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07001094 schedule_timeout_interruptible(5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 if (time_after(jiffies, timeout))
1096 break;
1097 }
1098 }
1099 mxser_shutdown(info);
1100
1101 if (tty->driver->flush_buffer)
1102 tty->driver->flush_buffer(tty);
1103
1104 ld = tty_ldisc_ref(tty);
1105 if (ld) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001106 if (ld->flush_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 ld->flush_buffer(tty);
1108 tty_ldisc_deref(ld);
1109 }
1110
1111 tty->closing = 0;
1112 info->event = 0;
1113 info->tty = NULL;
1114 if (info->blocked_open) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07001115 if (info->close_delay)
1116 schedule_timeout_interruptible(info->close_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 wake_up_interruptible(&info->open_wait);
1118 }
1119
1120 info->flags &= ~(ASYNC_NORMAL_ACTIVE | ASYNC_CLOSING);
1121 wake_up_interruptible(&info->close_wait);
1122
1123}
1124
1125static int mxser_write(struct tty_struct *tty, const unsigned char *buf, int count)
1126{
1127 int c, total = 0;
Jesper Juhl56e139f2006-06-25 05:47:52 -07001128 struct mxser_struct *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 unsigned long flags;
1130
Jesper Juhl8a7f7c92006-06-25 05:47:53 -07001131 if (!info->xmit_buf)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001132 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
1134 while (1) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001135 c = min_t(int, count, min(SERIAL_XMIT_SIZE - info->xmit_cnt - 1,
1136 SERIAL_XMIT_SIZE - info->xmit_head));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 if (c <= 0)
1138 break;
1139
1140 memcpy(info->xmit_buf + info->xmit_head, buf, c);
1141 spin_lock_irqsave(&info->slock, flags);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001142 info->xmit_head = (info->xmit_head + c) &
1143 (SERIAL_XMIT_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 info->xmit_cnt += c;
1145 spin_unlock_irqrestore(&info->slock, flags);
1146
1147 buf += c;
1148 count -= c;
1149 total += c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 }
1151
1152 if (info->xmit_cnt && !tty->stopped && !(info->IER & UART_IER_THRI)) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001153 if (!tty->hw_stopped ||
1154 (info->type == PORT_16550A) ||
1155 (info->IsMoxaMustChipFlag)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 spin_lock_irqsave(&info->slock, flags);
1157 info->IER |= UART_IER_THRI;
1158 outb(info->IER, info->base + UART_IER);
1159 spin_unlock_irqrestore(&info->slock, flags);
1160 }
1161 }
1162 return total;
1163}
1164
1165static void mxser_put_char(struct tty_struct *tty, unsigned char ch)
1166{
Jesper Juhl56e139f2006-06-25 05:47:52 -07001167 struct mxser_struct *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 unsigned long flags;
1169
Jesper Juhl8a7f7c92006-06-25 05:47:53 -07001170 if (!info->xmit_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 return;
1172
1173 if (info->xmit_cnt >= SERIAL_XMIT_SIZE - 1)
1174 return;
1175
1176 spin_lock_irqsave(&info->slock, flags);
1177 info->xmit_buf[info->xmit_head++] = ch;
1178 info->xmit_head &= SERIAL_XMIT_SIZE - 1;
1179 info->xmit_cnt++;
1180 spin_unlock_irqrestore(&info->slock, flags);
1181 if (!tty->stopped && !(info->IER & UART_IER_THRI)) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001182 if (!tty->hw_stopped ||
1183 (info->type == PORT_16550A) ||
1184 info->IsMoxaMustChipFlag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 spin_lock_irqsave(&info->slock, flags);
1186 info->IER |= UART_IER_THRI;
1187 outb(info->IER, info->base + UART_IER);
1188 spin_unlock_irqrestore(&info->slock, flags);
1189 }
1190 }
1191}
1192
1193
1194static void mxser_flush_chars(struct tty_struct *tty)
1195{
Jesper Juhl56e139f2006-06-25 05:47:52 -07001196 struct mxser_struct *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 unsigned long flags;
1198
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001199 if (info->xmit_cnt <= 0 ||
1200 tty->stopped ||
1201 !info->xmit_buf ||
1202 (tty->hw_stopped &&
1203 (info->type != PORT_16550A) &&
1204 (!info->IsMoxaMustChipFlag)
1205 ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 return;
1207
1208 spin_lock_irqsave(&info->slock, flags);
1209
1210 info->IER |= UART_IER_THRI;
1211 outb(info->IER, info->base + UART_IER);
1212
1213 spin_unlock_irqrestore(&info->slock, flags);
1214}
1215
1216static int mxser_write_room(struct tty_struct *tty)
1217{
Jesper Juhl56e139f2006-06-25 05:47:52 -07001218 struct mxser_struct *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 int ret;
1220
1221 ret = SERIAL_XMIT_SIZE - info->xmit_cnt - 1;
1222 if (ret < 0)
1223 ret = 0;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001224 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225}
1226
1227static int mxser_chars_in_buffer(struct tty_struct *tty)
1228{
Jesper Juhl56e139f2006-06-25 05:47:52 -07001229 struct mxser_struct *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 return info->xmit_cnt;
1231}
1232
1233static void mxser_flush_buffer(struct tty_struct *tty)
1234{
Jesper Juhl56e139f2006-06-25 05:47:52 -07001235 struct mxser_struct *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 char fcr;
1237 unsigned long flags;
1238
1239
1240 spin_lock_irqsave(&info->slock, flags);
1241 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
1242
1243 /* below added by shinhay */
1244 fcr = inb(info->base + UART_FCR);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001245 outb((fcr | UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT),
1246 info->base + UART_FCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 outb(fcr, info->base + UART_FCR);
1248
1249 spin_unlock_irqrestore(&info->slock, flags);
1250 /* above added by shinhay */
1251
Jiri Slabyb963a842007-02-10 01:44:55 -08001252 tty_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253}
1254
1255static int mxser_ioctl(struct tty_struct *tty, struct file *file, unsigned int cmd, unsigned long arg)
1256{
Jesper Juhl56e139f2006-06-25 05:47:52 -07001257 struct mxser_struct *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 int retval;
1259 struct async_icount cprev, cnow; /* kernel counter temps */
1260 struct serial_icounter_struct __user *p_cuser;
1261 unsigned long templ;
1262 unsigned long flags;
1263 void __user *argp = (void __user *)arg;
1264
1265 if (tty->index == MXSER_PORTS)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001266 return mxser_ioctl_special(cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001268 /* following add by Victor Yu. 01-05-2004 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 if (cmd == MOXA_SET_OP_MODE || cmd == MOXA_GET_OP_MODE) {
1270 int opmode, p;
1271 static unsigned char ModeMask[] = { 0xfc, 0xf3, 0xcf, 0x3f };
1272 int shiftbit;
1273 unsigned char val, mask;
1274
1275 p = info->port % 4;
1276 if (cmd == MOXA_SET_OP_MODE) {
1277 if (get_user(opmode, (int __user *) argp))
1278 return -EFAULT;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001279 if (opmode != RS232_MODE &&
1280 opmode != RS485_2WIRE_MODE &&
1281 opmode != RS422_MODE &&
1282 opmode != RS485_4WIRE_MODE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 return -EFAULT;
1284 mask = ModeMask[p];
1285 shiftbit = p * 2;
1286 val = inb(info->opmode_ioaddr);
1287 val &= mask;
1288 val |= (opmode << shiftbit);
1289 outb(val, info->opmode_ioaddr);
1290 } else {
1291 shiftbit = p * 2;
1292 opmode = inb(info->opmode_ioaddr) >> shiftbit;
1293 opmode &= OP_MODE_MASK;
1294 if (copy_to_user(argp, &opmode, sizeof(int)))
1295 return -EFAULT;
1296 }
1297 return 0;
1298 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001299 /* above add by Victor Yu. 01-05-2004 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
1301 if ((cmd != TIOCGSERIAL) && (cmd != TIOCMIWAIT) && (cmd != TIOCGICOUNT)) {
1302 if (tty->flags & (1 << TTY_IO_ERROR))
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001303 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 }
1305 switch (cmd) {
1306 case TCSBRK: /* SVID version: non-zero arg --> no break */
1307 retval = tty_check_change(tty);
1308 if (retval)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001309 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 tty_wait_until_sent(tty, 0);
1311 if (!arg)
1312 mxser_send_break(info, HZ / 4); /* 1/4 second */
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001313 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 case TCSBRKP: /* support for POSIX tcsendbreak() */
1315 retval = tty_check_change(tty);
1316 if (retval)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001317 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 tty_wait_until_sent(tty, 0);
1319 mxser_send_break(info, arg ? arg * (HZ / 10) : HZ / 4);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001320 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 case TIOCGSOFTCAR:
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001322 return put_user(C_CLOCAL(tty) ? 1 : 0, (unsigned long __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 case TIOCSSOFTCAR:
1324 if (get_user(templ, (unsigned long __user *) argp))
1325 return -EFAULT;
1326 arg = templ;
1327 tty->termios->c_cflag = ((tty->termios->c_cflag & ~CLOCAL) | (arg ? CLOCAL : 0));
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001328 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 case TIOCGSERIAL:
1330 return mxser_get_serial_info(info, argp);
1331 case TIOCSSERIAL:
1332 return mxser_set_serial_info(info, argp);
1333 case TIOCSERGETLSR: /* Get line status register */
1334 return mxser_get_lsr_info(info, argp);
1335 /*
1336 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1337 * - mask passed in arg for lines of interest
1338 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1339 * Caller should use TIOCGICOUNT to see which one it was
1340 */
Jiri Slabyfc838152007-04-23 14:41:04 -07001341 case TIOCMIWAIT:
1342 spin_lock_irqsave(&info->slock, flags);
1343 cnow = info->icount; /* note the counters on entry */
1344 spin_unlock_irqrestore(&info->slock, flags);
1345
1346 wait_event_interruptible(info->delta_msr_wait, ({
1347 cprev = cnow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 spin_lock_irqsave(&info->slock, flags);
Jiri Slabyfc838152007-04-23 14:41:04 -07001349 cnow = info->icount; /* atomic copy */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 spin_unlock_irqrestore(&info->slock, flags);
1351
Jiri Slabyfc838152007-04-23 14:41:04 -07001352 ((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
1353 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
1354 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
1355 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts));
1356 }));
1357 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 /*
1359 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1360 * Return: write counters to the user passed counter struct
1361 * NB: both 1->0 and 0->1 transitions are counted except for
1362 * RI where only 0->1 is counted.
1363 */
1364 case TIOCGICOUNT:
1365 spin_lock_irqsave(&info->slock, flags);
1366 cnow = info->icount;
1367 spin_unlock_irqrestore(&info->slock, flags);
1368 p_cuser = argp;
1369 /* modified by casper 1/11/2000 */
1370 if (put_user(cnow.frame, &p_cuser->frame))
1371 return -EFAULT;
1372 if (put_user(cnow.brk, &p_cuser->brk))
1373 return -EFAULT;
1374 if (put_user(cnow.overrun, &p_cuser->overrun))
1375 return -EFAULT;
1376 if (put_user(cnow.buf_overrun, &p_cuser->buf_overrun))
1377 return -EFAULT;
1378 if (put_user(cnow.parity, &p_cuser->parity))
1379 return -EFAULT;
1380 if (put_user(cnow.rx, &p_cuser->rx))
1381 return -EFAULT;
1382 if (put_user(cnow.tx, &p_cuser->tx))
1383 return -EFAULT;
1384 put_user(cnow.cts, &p_cuser->cts);
1385 put_user(cnow.dsr, &p_cuser->dsr);
1386 put_user(cnow.rng, &p_cuser->rng);
1387 put_user(cnow.dcd, &p_cuser->dcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 return 0;
1389 case MOXA_HighSpeedOn:
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001390 return put_user(info->baud_base != 115200 ? 1 : 0, (int __user *)argp);
1391 case MOXA_SDS_RSTICOUNTER: {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 info->mon_data.rxcnt = 0;
1393 info->mon_data.txcnt = 0;
1394 return 0;
1395 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001396/* (above) added by James. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 case MOXA_ASPP_SETBAUD:{
1398 long baud;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001399 if (get_user(baud, (long __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 return -EFAULT;
1401 mxser_set_baud(info, baud);
1402 return 0;
1403 }
1404 case MOXA_ASPP_GETBAUD:
1405 if (copy_to_user(argp, &info->realbaud, sizeof(long)))
1406 return -EFAULT;
1407
1408 return 0;
1409
1410 case MOXA_ASPP_OQUEUE:{
1411 int len, lsr;
1412
1413 len = mxser_chars_in_buffer(tty);
1414
1415 lsr = inb(info->base + UART_LSR) & UART_LSR_TEMT;
1416
1417 len += (lsr ? 0 : 1);
1418
1419 if (copy_to_user(argp, &len, sizeof(int)))
1420 return -EFAULT;
1421
1422 return 0;
1423 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001424 case MOXA_ASPP_MON: {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 int mcr, status;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001426
1427 /* info->mon_data.ser_param = tty->termios->c_cflag; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
1429 status = mxser_get_msr(info->base, 1, info->port, info);
1430 mxser_check_modem_status(info, status);
1431
1432 mcr = inb(info->base + UART_MCR);
1433 if (mcr & MOXA_MUST_MCR_XON_FLAG)
1434 info->mon_data.hold_reason &= ~NPPI_NOTIFY_XOFFHOLD;
1435 else
1436 info->mon_data.hold_reason |= NPPI_NOTIFY_XOFFHOLD;
1437
1438 if (mcr & MOXA_MUST_MCR_TX_XON)
1439 info->mon_data.hold_reason &= ~NPPI_NOTIFY_XOFFXENT;
1440 else
1441 info->mon_data.hold_reason |= NPPI_NOTIFY_XOFFXENT;
1442
1443 if (info->tty->hw_stopped)
1444 info->mon_data.hold_reason |= NPPI_NOTIFY_CTSHOLD;
1445 else
1446 info->mon_data.hold_reason &= ~NPPI_NOTIFY_CTSHOLD;
1447
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001448 if (copy_to_user(argp, &info->mon_data,
1449 sizeof(struct mxser_mon)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 return -EFAULT;
1451
1452 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 }
1454
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001455 case MOXA_ASPP_LSTATUS: {
1456 if (copy_to_user(argp, &info->err_shadow,
1457 sizeof(unsigned char)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 return -EFAULT;
1459
1460 info->err_shadow = 0;
1461 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001463 case MOXA_SET_BAUD_METHOD: {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 int method;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001465
1466 if (get_user(method, (int __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 return -EFAULT;
1468 mxser_set_baud_method[info->port] = method;
1469 if (copy_to_user(argp, &method, sizeof(int)))
1470 return -EFAULT;
1471
1472 return 0;
1473 }
1474 default:
1475 return -ENOIOCTLCMD;
1476 }
1477 return 0;
1478}
1479
1480#ifndef CMSPAR
1481#define CMSPAR 010000000000
1482#endif
1483
1484static int mxser_ioctl_special(unsigned int cmd, void __user *argp)
1485{
1486 int i, result, status;
1487
1488 switch (cmd) {
1489 case MOXA_GET_CONF:
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001490 if (copy_to_user(argp, mxsercfg,
1491 sizeof(struct mxser_hwconf) * 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 return -EFAULT;
1493 return 0;
1494 case MOXA_GET_MAJOR:
1495 if (copy_to_user(argp, &ttymajor, sizeof(int)))
1496 return -EFAULT;
1497 return 0;
1498
1499 case MOXA_GET_CUMAJOR:
1500 if (copy_to_user(argp, &calloutmajor, sizeof(int)))
1501 return -EFAULT;
1502 return 0;
1503
1504 case MOXA_CHKPORTENABLE:
1505 result = 0;
1506 for (i = 0; i < MXSER_PORTS; i++) {
1507 if (mxvar_table[i].base)
1508 result |= (1 << i);
1509 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001510 return put_user(result, (unsigned long __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 case MOXA_GETDATACOUNT:
1512 if (copy_to_user(argp, &mxvar_log, sizeof(mxvar_log)))
1513 return -EFAULT;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001514 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 case MOXA_GETMSTATUS:
1516 for (i = 0; i < MXSER_PORTS; i++) {
1517 GMStatus[i].ri = 0;
1518 if (!mxvar_table[i].base) {
1519 GMStatus[i].dcd = 0;
1520 GMStatus[i].dsr = 0;
1521 GMStatus[i].cts = 0;
1522 continue;
1523 }
1524
1525 if (!mxvar_table[i].tty || !mxvar_table[i].tty->termios)
1526 GMStatus[i].cflag = mxvar_table[i].normal_termios.c_cflag;
1527 else
1528 GMStatus[i].cflag = mxvar_table[i].tty->termios->c_cflag;
1529
1530 status = inb(mxvar_table[i].base + UART_MSR);
1531 if (status & 0x80 /*UART_MSR_DCD */ )
1532 GMStatus[i].dcd = 1;
1533 else
1534 GMStatus[i].dcd = 0;
1535
1536 if (status & 0x20 /*UART_MSR_DSR */ )
1537 GMStatus[i].dsr = 1;
1538 else
1539 GMStatus[i].dsr = 0;
1540
1541
1542 if (status & 0x10 /*UART_MSR_CTS */ )
1543 GMStatus[i].cts = 1;
1544 else
1545 GMStatus[i].cts = 0;
1546 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001547 if (copy_to_user(argp, GMStatus,
1548 sizeof(struct mxser_mstatus) * MXSER_PORTS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 return -EFAULT;
1550 return 0;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001551 case MOXA_ASPP_MON_EXT: {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 int status;
1553 int opmode, p;
1554 int shiftbit;
1555 unsigned cflag, iflag;
1556
1557 for (i = 0; i < MXSER_PORTS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 if (!mxvar_table[i].base)
1559 continue;
1560
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001561 status = mxser_get_msr(mxvar_table[i].base, 0,
1562 i, &(mxvar_table[i]));
1563 /*
1564 mxser_check_modem_status(&mxvar_table[i],
1565 status);
1566 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 if (status & UART_MSR_TERI)
1568 mxvar_table[i].icount.rng++;
1569 if (status & UART_MSR_DDSR)
1570 mxvar_table[i].icount.dsr++;
1571 if (status & UART_MSR_DDCD)
1572 mxvar_table[i].icount.dcd++;
1573 if (status & UART_MSR_DCTS)
1574 mxvar_table[i].icount.cts++;
1575
1576 mxvar_table[i].mon_data.modem_status = status;
1577 mon_data_ext.rx_cnt[i] = mxvar_table[i].mon_data.rxcnt;
1578 mon_data_ext.tx_cnt[i] = mxvar_table[i].mon_data.txcnt;
1579 mon_data_ext.up_rxcnt[i] = mxvar_table[i].mon_data.up_rxcnt;
1580 mon_data_ext.up_txcnt[i] = mxvar_table[i].mon_data.up_txcnt;
1581 mon_data_ext.modem_status[i] = mxvar_table[i].mon_data.modem_status;
1582 mon_data_ext.baudrate[i] = mxvar_table[i].realbaud;
1583
1584 if (!mxvar_table[i].tty || !mxvar_table[i].tty->termios) {
1585 cflag = mxvar_table[i].normal_termios.c_cflag;
1586 iflag = mxvar_table[i].normal_termios.c_iflag;
1587 } else {
1588 cflag = mxvar_table[i].tty->termios->c_cflag;
1589 iflag = mxvar_table[i].tty->termios->c_iflag;
1590 }
1591
1592 mon_data_ext.databits[i] = cflag & CSIZE;
1593
1594 mon_data_ext.stopbits[i] = cflag & CSTOPB;
1595
1596 mon_data_ext.parity[i] = cflag & (PARENB | PARODD | CMSPAR);
1597
1598 mon_data_ext.flowctrl[i] = 0x00;
1599
1600 if (cflag & CRTSCTS)
1601 mon_data_ext.flowctrl[i] |= 0x03;
1602
1603 if (iflag & (IXON | IXOFF))
1604 mon_data_ext.flowctrl[i] |= 0x0C;
1605
1606 if (mxvar_table[i].type == PORT_16550A)
1607 mon_data_ext.fifo[i] = 1;
1608 else
1609 mon_data_ext.fifo[i] = 0;
1610
1611 p = i % 4;
1612 shiftbit = p * 2;
1613 opmode = inb(mxvar_table[i].opmode_ioaddr) >> shiftbit;
1614 opmode &= OP_MODE_MASK;
1615
1616 mon_data_ext.iftype[i] = opmode;
1617
1618 }
1619 if (copy_to_user(argp, &mon_data_ext, sizeof(struct mxser_mon_ext)))
1620 return -EFAULT;
1621
1622 return 0;
1623
1624 }
1625 default:
1626 return -ENOIOCTLCMD;
1627 }
1628 return 0;
1629}
1630
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631static void mxser_stoprx(struct tty_struct *tty)
1632{
Jesper Juhl56e139f2006-06-25 05:47:52 -07001633 struct mxser_struct *info = tty->driver_data;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001634 /* unsigned long flags; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
1636 info->ldisc_stop_rx = 1;
1637 if (I_IXOFF(tty)) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001638 /* MX_LOCK(&info->slock); */
1639 /* following add by Victor Yu. 09-02-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 if (info->IsMoxaMustChipFlag) {
1641 info->IER &= ~MOXA_MUST_RECV_ISR;
1642 outb(info->IER, info->base + UART_IER);
1643 } else {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001644 /* above add by Victor Yu. 09-02-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 info->x_char = STOP_CHAR(tty);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001646 /* mask by Victor Yu. 09-02-2002 */
1647 /* outb(info->IER, 0); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 outb(0, info->base + UART_IER);
1649 info->IER |= UART_IER_THRI;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001650 /* force Tx interrupt */
1651 outb(info->IER, info->base + UART_IER);
1652 } /* add by Victor Yu. 09-02-2002 */
1653 /* MX_UNLOCK(&info->slock); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 }
1655
1656 if (info->tty->termios->c_cflag & CRTSCTS) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001657 /* MX_LOCK(&info->slock); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 info->MCR &= ~UART_MCR_RTS;
1659 outb(info->MCR, info->base + UART_MCR);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001660 /* MX_UNLOCK(&info->slock); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 }
1662}
1663
1664static void mxser_startrx(struct tty_struct *tty)
1665{
Jesper Juhl56e139f2006-06-25 05:47:52 -07001666 struct mxser_struct *info = tty->driver_data;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001667 /* unsigned long flags; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
1669 info->ldisc_stop_rx = 0;
1670 if (I_IXOFF(tty)) {
1671 if (info->x_char)
1672 info->x_char = 0;
1673 else {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001674 /* MX_LOCK(&info->slock); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001676 /* following add by Victor Yu. 09-02-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 if (info->IsMoxaMustChipFlag) {
1678 info->IER |= MOXA_MUST_RECV_ISR;
1679 outb(info->IER, info->base + UART_IER);
1680 } else {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001681 /* above add by Victor Yu. 09-02-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
1683 info->x_char = START_CHAR(tty);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001684 /* mask by Victor Yu. 09-02-2002 */
1685 /* outb(info->IER, 0); */
1686 /* add by Victor Yu. 09-02-2002 */
1687 outb(0, info->base + UART_IER);
1688 /* force Tx interrupt */
1689 info->IER |= UART_IER_THRI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 outb(info->IER, info->base + UART_IER);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001691 } /* add by Victor Yu. 09-02-2002 */
1692 /* MX_UNLOCK(&info->slock); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 }
1694 }
1695
1696 if (info->tty->termios->c_cflag & CRTSCTS) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001697 /* MX_LOCK(&info->slock); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 info->MCR |= UART_MCR_RTS;
1699 outb(info->MCR, info->base + UART_MCR);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001700 /* MX_UNLOCK(&info->slock); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 }
1702}
1703
1704/*
1705 * This routine is called by the upper-layer tty layer to signal that
1706 * incoming characters should be throttled.
1707 */
1708static void mxser_throttle(struct tty_struct *tty)
1709{
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001710 /* struct mxser_struct *info = tty->driver_data; */
1711 /* unsigned long flags; */
1712
1713 /* MX_LOCK(&info->slock); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 mxser_stoprx(tty);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001715 /* MX_UNLOCK(&info->slock); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716}
1717
1718static void mxser_unthrottle(struct tty_struct *tty)
1719{
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001720 /* struct mxser_struct *info = tty->driver_data; */
1721 /* unsigned long flags; */
1722
1723 /* MX_LOCK(&info->slock); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 mxser_startrx(tty);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001725 /* MX_UNLOCK(&info->slock); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726}
1727
Alan Cox606d0992006-12-08 02:38:45 -08001728static void mxser_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729{
Jesper Juhl56e139f2006-06-25 05:47:52 -07001730 struct mxser_struct *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 unsigned long flags;
1732
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001733 if ((tty->termios->c_cflag != old_termios->c_cflag) ||
1734 (RELEVANT_IFLAG(tty->termios->c_iflag) != RELEVANT_IFLAG(old_termios->c_iflag))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
1736 mxser_change_speed(info, old_termios);
1737
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001738 if ((old_termios->c_cflag & CRTSCTS) &&
1739 !(tty->termios->c_cflag & CRTSCTS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 tty->hw_stopped = 0;
1741 mxser_start(tty);
1742 }
1743 }
1744
1745/* Handle sw stopped */
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001746 if ((old_termios->c_iflag & IXON) &&
1747 !(tty->termios->c_iflag & IXON)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 tty->stopped = 0;
1749
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001750 /* following add by Victor Yu. 09-02-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 if (info->IsMoxaMustChipFlag) {
1752 spin_lock_irqsave(&info->slock, flags);
1753 DISABLE_MOXA_MUST_RX_SOFTWARE_FLOW_CONTROL(info->base);
1754 spin_unlock_irqrestore(&info->slock, flags);
1755 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001756 /* above add by Victor Yu. 09-02-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
1758 mxser_start(tty);
1759 }
1760}
1761
1762/*
1763 * mxser_stop() and mxser_start()
1764 *
1765 * This routines are called before setting or resetting tty->stopped.
1766 * They enable or disable transmitter interrupts, as necessary.
1767 */
1768static void mxser_stop(struct tty_struct *tty)
1769{
Jesper Juhl56e139f2006-06-25 05:47:52 -07001770 struct mxser_struct *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 unsigned long flags;
1772
1773 spin_lock_irqsave(&info->slock, flags);
1774 if (info->IER & UART_IER_THRI) {
1775 info->IER &= ~UART_IER_THRI;
1776 outb(info->IER, info->base + UART_IER);
1777 }
1778 spin_unlock_irqrestore(&info->slock, flags);
1779}
1780
1781static void mxser_start(struct tty_struct *tty)
1782{
Jesper Juhl56e139f2006-06-25 05:47:52 -07001783 struct mxser_struct *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 unsigned long flags;
1785
1786 spin_lock_irqsave(&info->slock, flags);
1787 if (info->xmit_cnt && info->xmit_buf && !(info->IER & UART_IER_THRI)) {
1788 info->IER |= UART_IER_THRI;
1789 outb(info->IER, info->base + UART_IER);
1790 }
1791 spin_unlock_irqrestore(&info->slock, flags);
1792}
1793
1794/*
1795 * mxser_wait_until_sent() --- wait until the transmitter is empty
1796 */
1797static void mxser_wait_until_sent(struct tty_struct *tty, int timeout)
1798{
Jesper Juhl56e139f2006-06-25 05:47:52 -07001799 struct mxser_struct *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 unsigned long orig_jiffies, char_time;
1801 int lsr;
1802
1803 if (info->type == PORT_UNKNOWN)
1804 return;
1805
1806 if (info->xmit_fifo_size == 0)
1807 return; /* Just in case.... */
1808
1809 orig_jiffies = jiffies;
1810 /*
1811 * Set the check interval to be 1/5 of the estimated time to
1812 * send a single character, and make it at least 1. The check
1813 * interval should also be less than the timeout.
1814 *
1815 * Note: we have to use pretty tight timings here to satisfy
1816 * the NIST-PCTS.
1817 */
1818 char_time = (info->timeout - HZ / 50) / info->xmit_fifo_size;
1819 char_time = char_time / 5;
1820 if (char_time == 0)
1821 char_time = 1;
1822 if (timeout && timeout < char_time)
1823 char_time = timeout;
1824 /*
1825 * If the transmitter hasn't cleared in twice the approximate
1826 * amount of time to send the entire FIFO, it probably won't
1827 * ever clear. This assumes the UART isn't doing flow
1828 * control, which is currently the case. Hence, if it ever
1829 * takes longer than info->timeout, this is probably due to a
1830 * UART bug of some kind. So, we clamp the timeout parameter at
1831 * 2*info->timeout.
1832 */
1833 if (!timeout || timeout > 2 * info->timeout)
1834 timeout = 2 * info->timeout;
1835#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001836 printk(KERN_DEBUG "In rs_wait_until_sent(%d) check=%lu...",
1837 timeout, char_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 printk("jiff=%lu...", jiffies);
1839#endif
1840 while (!((lsr = inb(info->base + UART_LSR)) & UART_LSR_TEMT)) {
1841#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1842 printk("lsr = %d (jiff=%lu)...", lsr, jiffies);
1843#endif
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07001844 schedule_timeout_interruptible(char_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 if (signal_pending(current))
1846 break;
1847 if (timeout && time_after(jiffies, orig_jiffies + timeout))
1848 break;
1849 }
1850 set_current_state(TASK_RUNNING);
1851
1852#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1853 printk("lsr = %d (jiff=%lu)...done\n", lsr, jiffies);
1854#endif
1855}
1856
1857
1858/*
1859 * This routine is called by tty_hangup() when a hangup is signaled.
1860 */
1861void mxser_hangup(struct tty_struct *tty)
1862{
Jesper Juhl56e139f2006-06-25 05:47:52 -07001863 struct mxser_struct *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
1865 mxser_flush_buffer(tty);
1866 mxser_shutdown(info);
1867 info->event = 0;
1868 info->count = 0;
1869 info->flags &= ~ASYNC_NORMAL_ACTIVE;
1870 info->tty = NULL;
1871 wake_up_interruptible(&info->open_wait);
1872}
1873
1874
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001875/* added by James 03-12-2004. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876/*
1877 * mxser_rs_break() --- routine which turns the break handling on or off
1878 */
1879static void mxser_rs_break(struct tty_struct *tty, int break_state)
1880{
Jesper Juhl56e139f2006-06-25 05:47:52 -07001881 struct mxser_struct *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 unsigned long flags;
1883
1884 spin_lock_irqsave(&info->slock, flags);
1885 if (break_state == -1)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001886 outb(inb(info->base + UART_LCR) | UART_LCR_SBC,
1887 info->base + UART_LCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 else
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001889 outb(inb(info->base + UART_LCR) & ~UART_LCR_SBC,
1890 info->base + UART_LCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 spin_unlock_irqrestore(&info->slock, flags);
1892}
1893
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001894/* (above) added by James. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
1896
1897/*
1898 * This is the serial driver's generic interrupt routine
1899 */
David Howells7d12e782006-10-05 14:55:46 +01001900static irqreturn_t mxser_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901{
1902 int status, iir, i;
1903 struct mxser_struct *info;
1904 struct mxser_struct *port;
1905 int max, irqbits, bits, msr;
1906 int pass_counter = 0;
1907 int handled = IRQ_NONE;
1908
1909 port = NULL;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001910 /* spin_lock(&gm_lock); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
1912 for (i = 0; i < MXSER_BOARDS; i++) {
1913 if (dev_id == &(mxvar_table[i * MXSER_PORTS_PER_BOARD])) {
1914 port = dev_id;
1915 break;
1916 }
1917 }
1918
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001919 if (i == MXSER_BOARDS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 goto irq_stop;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001921 if (port == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 goto irq_stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 max = mxser_numports[mxsercfg[i].board_type - 1];
1924 while (1) {
1925 irqbits = inb(port->vector) & port->vectormask;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001926 if (irqbits == port->vectormask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
1929 handled = IRQ_HANDLED;
1930 for (i = 0, bits = 1; i < max; i++, irqbits |= bits, bits <<= 1) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001931 if (irqbits == port->vectormask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 if (bits & irqbits)
1934 continue;
1935 info = port + i;
1936
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001937 /* following add by Victor Yu. 09-13-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 iir = inb(info->base + UART_IIR);
1939 if (iir & UART_IIR_NO_INT)
1940 continue;
1941 iir &= MOXA_MUST_IIR_MASK;
1942 if (!info->tty) {
1943 status = inb(info->base + UART_LSR);
1944 outb(0x27, info->base + UART_FCR);
1945 inb(info->base + UART_MSR);
1946 continue;
1947 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001948 /* above add by Victor Yu. 09-13-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 /*
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001950 if (info->tty->flip.count < TTY_FLIPBUF_SIZE / 4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 info->IER |= MOXA_MUST_RECV_ISR;
1952 outb(info->IER, info->base + UART_IER);
1953 }
1954 */
1955
1956
1957 /* mask by Victor Yu. 09-13-2002
1958 if ( !info->tty ||
1959 (inb(info->base + UART_IIR) & UART_IIR_NO_INT) )
1960 continue;
1961 */
1962 /* mask by Victor Yu. 09-02-2002
1963 status = inb(info->base + UART_LSR) & info->read_status_mask;
1964 */
1965
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001966 /* following add by Victor Yu. 09-02-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 status = inb(info->base + UART_LSR);
1968
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001969 if (status & UART_LSR_PE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 info->err_shadow |= NPPI_NOTIFY_PARITY;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001971 if (status & UART_LSR_FE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 info->err_shadow |= NPPI_NOTIFY_FRAMING;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001973 if (status & UART_LSR_OE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 info->err_shadow |= NPPI_NOTIFY_HW_OVERRUN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 if (status & UART_LSR_BI)
1976 info->err_shadow |= NPPI_NOTIFY_BREAK;
1977
1978 if (info->IsMoxaMustChipFlag) {
1979 /*
1980 if ( (status & 0x02) && !(status & 0x01) ) {
1981 outb(info->base+UART_FCR, 0x23);
1982 continue;
1983 }
1984 */
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001985 if (iir == MOXA_MUST_IIR_GDA ||
1986 iir == MOXA_MUST_IIR_RDA ||
1987 iir == MOXA_MUST_IIR_RTO ||
1988 iir == MOXA_MUST_IIR_LSR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 mxser_receive_chars(info, &status);
1990
1991 } else {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001992 /* above add by Victor Yu. 09-02-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994 status &= info->read_status_mask;
1995 if (status & UART_LSR_DR)
1996 mxser_receive_chars(info, &status);
1997 }
1998 msr = inb(info->base + UART_MSR);
1999 if (msr & UART_MSR_ANY_DELTA) {
2000 mxser_check_modem_status(info, msr);
2001 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002002 /* following add by Victor Yu. 09-13-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 if (info->IsMoxaMustChipFlag) {
2004 if ((iir == 0x02) && (status & UART_LSR_THRE)) {
2005 mxser_transmit_chars(info);
2006 }
2007 } else {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002008 /* above add by Victor Yu. 09-13-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
2010 if (status & UART_LSR_THRE) {
2011/* 8-2-99 by William
2012 if ( info->x_char || (info->xmit_cnt > 0) )
2013*/
2014 mxser_transmit_chars(info);
2015 }
2016 }
2017 }
2018 if (pass_counter++ > MXSER_ISR_PASS_LIMIT) {
2019 break; /* Prevent infinite loops */
2020 }
2021 }
2022
2023 irq_stop:
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002024 /* spin_unlock(&gm_lock); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 return handled;
2026}
2027
2028static void mxser_receive_chars(struct mxser_struct *info, int *status)
2029{
2030 struct tty_struct *tty = info->tty;
2031 unsigned char ch, gdl;
2032 int ignored = 0;
2033 int cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 int recv_room;
2035 int max = 256;
2036 unsigned long flags;
2037
2038 spin_lock_irqsave(&info->slock, flags);
2039
Alan Cox33f0f882006-01-09 20:54:13 -08002040 recv_room = tty->receive_room;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 if ((recv_room == 0) && (!info->ldisc_stop_rx)) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002042 /* mxser_throttle(tty); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 mxser_stoprx(tty);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002044 /* return; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 }
2046
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002047 /* following add by Victor Yu. 09-02-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 if (info->IsMoxaMustChipFlag != MOXA_OTHER_UART) {
2049
2050 if (*status & UART_LSR_SPECIAL) {
2051 goto intr_old;
2052 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002053 /* following add by Victor Yu. 02-11-2004 */
2054 if (info->IsMoxaMustChipFlag == MOXA_MUST_MU860_HWID &&
2055 (*status & MOXA_MUST_LSR_RERR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 goto intr_old;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002057 /* above add by Victor Yu. 02-14-2004 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 if (*status & MOXA_MUST_LSR_RERR)
2059 goto intr_old;
2060
2061 gdl = inb(info->base + MOXA_MUST_GDL_REGISTER);
2062
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002063 /* add by Victor Yu. 02-11-2004 */
2064 if (info->IsMoxaMustChipFlag == MOXA_MUST_MU150_HWID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 gdl &= MOXA_MUST_GDL_MASK;
2066 if (gdl >= recv_room) {
2067 if (!info->ldisc_stop_rx) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002068 /* mxser_throttle(tty); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 mxser_stoprx(tty);
2070 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002071 /* return; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 }
2073 while (gdl--) {
2074 ch = inb(info->base + UART_RX);
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002075 tty_insert_flip_char(tty, ch, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 cnt++;
2077 /*
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002078 if ((cnt >= HI_WATER) && (info->stop_rx == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 mxser_stoprx(tty);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002080 info->stop_rx = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 break;
2082 } */
2083 }
2084 goto end_intr;
2085 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002086 intr_old:
2087 /* above add by Victor Yu. 09-02-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
2089 do {
2090 if (max-- < 0)
2091 break;
2092 /*
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002093 if ((cnt >= HI_WATER) && (info->stop_rx == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 mxser_stoprx(tty);
2095 info->stop_rx=1;
2096 break;
2097 }
2098 */
2099
2100 ch = inb(info->base + UART_RX);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002101 /* following add by Victor Yu. 09-02-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 if (info->IsMoxaMustChipFlag && (*status & UART_LSR_OE) /*&& !(*status&UART_LSR_DR) */ )
2103 outb(0x23, info->base + UART_FCR);
2104 *status &= info->read_status_mask;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002105 /* above add by Victor Yu. 09-02-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 if (*status & info->ignore_status_mask) {
2107 if (++ignored > 100)
2108 break;
2109 } else {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002110 char flag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 if (*status & UART_LSR_SPECIAL) {
2112 if (*status & UART_LSR_BI) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002113 flag = TTY_BREAK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114/* added by casper 1/11/2000 */
2115 info->icount.brk++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116/* */
2117 if (info->flags & ASYNC_SAK)
2118 do_SAK(tty);
2119 } else if (*status & UART_LSR_PE) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002120 flag = TTY_PARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121/* added by casper 1/11/2000 */
2122 info->icount.parity++;
2123/* */
2124 } else if (*status & UART_LSR_FE) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002125 flag = TTY_FRAME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126/* added by casper 1/11/2000 */
2127 info->icount.frame++;
2128/* */
2129 } else if (*status & UART_LSR_OE) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002130 flag = TTY_OVERRUN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131/* added by casper 1/11/2000 */
2132 info->icount.overrun++;
2133/* */
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002134 }
2135 }
2136 tty_insert_flip_char(tty, ch, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 cnt++;
2138 if (cnt >= recv_room) {
2139 if (!info->ldisc_stop_rx) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002140 /* mxser_throttle(tty); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 mxser_stoprx(tty);
2142 }
2143 break;
2144 }
2145
2146 }
2147
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002148 /* following add by Victor Yu. 09-02-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 if (info->IsMoxaMustChipFlag)
2150 break;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002151 /* above add by Victor Yu. 09-02-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
2153 /* mask by Victor Yu. 09-02-2002
2154 *status = inb(info->base + UART_LSR) & info->read_status_mask;
2155 */
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002156 /* following add by Victor Yu. 09-02-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 *status = inb(info->base + UART_LSR);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002158 /* above add by Victor Yu. 09-02-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 } while (*status & UART_LSR_DR);
2160
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002161end_intr: /* add by Victor Yu. 09-02-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 mxvar_log.rxcnt[info->port] += cnt;
2163 info->mon_data.rxcnt += cnt;
2164 info->mon_data.up_rxcnt += cnt;
2165 spin_unlock_irqrestore(&info->slock, flags);
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002166
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 tty_flip_buffer_push(tty);
2168}
2169
2170static void mxser_transmit_chars(struct mxser_struct *info)
2171{
2172 int count, cnt;
2173 unsigned long flags;
2174
2175 spin_lock_irqsave(&info->slock, flags);
2176
2177 if (info->x_char) {
2178 outb(info->x_char, info->base + UART_TX);
2179 info->x_char = 0;
2180 mxvar_log.txcnt[info->port]++;
2181 info->mon_data.txcnt++;
2182 info->mon_data.up_txcnt++;
2183
2184/* added by casper 1/11/2000 */
2185 info->icount.tx++;
2186/* */
2187 spin_unlock_irqrestore(&info->slock, flags);
2188 return;
2189 }
2190
2191 if (info->xmit_buf == 0) {
2192 spin_unlock_irqrestore(&info->slock, flags);
2193 return;
2194 }
2195
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002196 if ((info->xmit_cnt <= 0) || info->tty->stopped ||
2197 (info->tty->hw_stopped &&
2198 (info->type != PORT_16550A) &&
2199 (!info->IsMoxaMustChipFlag))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 info->IER &= ~UART_IER_THRI;
2201 outb(info->IER, info->base + UART_IER);
2202 spin_unlock_irqrestore(&info->slock, flags);
2203 return;
2204 }
2205
2206 cnt = info->xmit_cnt;
2207 count = info->xmit_fifo_size;
2208 do {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002209 outb(info->xmit_buf[info->xmit_tail++],
2210 info->base + UART_TX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 info->xmit_tail = info->xmit_tail & (SERIAL_XMIT_SIZE - 1);
2212 if (--info->xmit_cnt <= 0)
2213 break;
2214 } while (--count > 0);
2215 mxvar_log.txcnt[info->port] += (cnt - info->xmit_cnt);
2216
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002217/* added by James 03-12-2004. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 info->mon_data.txcnt += (cnt - info->xmit_cnt);
2219 info->mon_data.up_txcnt += (cnt - info->xmit_cnt);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002220/* (above) added by James. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
2222/* added by casper 1/11/2000 */
2223 info->icount.tx += (cnt - info->xmit_cnt);
2224/* */
2225
2226 if (info->xmit_cnt < WAKEUP_CHARS) {
2227 set_bit(MXSER_EVENT_TXLOW, &info->event);
2228 schedule_work(&info->tqueue);
2229 }
2230 if (info->xmit_cnt <= 0) {
2231 info->IER &= ~UART_IER_THRI;
2232 outb(info->IER, info->base + UART_IER);
2233 }
2234 spin_unlock_irqrestore(&info->slock, flags);
2235}
2236
2237static void mxser_check_modem_status(struct mxser_struct *info, int status)
2238{
2239 /* update input line counters */
2240 if (status & UART_MSR_TERI)
2241 info->icount.rng++;
2242 if (status & UART_MSR_DDSR)
2243 info->icount.dsr++;
2244 if (status & UART_MSR_DDCD)
2245 info->icount.dcd++;
2246 if (status & UART_MSR_DCTS)
2247 info->icount.cts++;
2248 info->mon_data.modem_status = status;
2249 wake_up_interruptible(&info->delta_msr_wait);
2250
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 if ((info->flags & ASYNC_CHECK_CD) && (status & UART_MSR_DDCD)) {
2252 if (status & UART_MSR_DCD)
2253 wake_up_interruptible(&info->open_wait);
2254 schedule_work(&info->tqueue);
2255 }
2256
2257 if (info->flags & ASYNC_CTS_FLOW) {
2258 if (info->tty->hw_stopped) {
2259 if (status & UART_MSR_CTS) {
2260 info->tty->hw_stopped = 0;
2261
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002262 if ((info->type != PORT_16550A) &&
2263 (!info->IsMoxaMustChipFlag)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 info->IER |= UART_IER_THRI;
2265 outb(info->IER, info->base + UART_IER);
2266 }
2267 set_bit(MXSER_EVENT_TXLOW, &info->event);
2268 schedule_work(&info->tqueue); }
2269 } else {
2270 if (!(status & UART_MSR_CTS)) {
2271 info->tty->hw_stopped = 1;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002272 if ((info->type != PORT_16550A) &&
2273 (!info->IsMoxaMustChipFlag)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 info->IER &= ~UART_IER_THRI;
2275 outb(info->IER, info->base + UART_IER);
2276 }
2277 }
2278 }
2279 }
2280}
2281
2282static int mxser_block_til_ready(struct tty_struct *tty, struct file *filp, struct mxser_struct *info)
2283{
2284 DECLARE_WAITQUEUE(wait, current);
2285 int retval;
2286 int do_clocal = 0;
2287 unsigned long flags;
2288
2289 /*
2290 * If non-blocking mode is set, or the port is not enabled,
2291 * then make the check up front and then exit.
2292 */
2293 if ((filp->f_flags & O_NONBLOCK) || (tty->flags & (1 << TTY_IO_ERROR))) {
2294 info->flags |= ASYNC_NORMAL_ACTIVE;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002295 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 }
2297
2298 if (tty->termios->c_cflag & CLOCAL)
2299 do_clocal = 1;
2300
2301 /*
2302 * Block waiting for the carrier detect and the line to become
2303 * free (i.e., not in use by the callout). While we are in
2304 * this loop, info->count is dropped by one, so that
2305 * mxser_close() knows when to free things. We restore it upon
2306 * exit, either normal or abnormal.
2307 */
2308 retval = 0;
2309 add_wait_queue(&info->open_wait, &wait);
2310
2311 spin_lock_irqsave(&info->slock, flags);
2312 if (!tty_hung_up_p(filp))
2313 info->count--;
2314 spin_unlock_irqrestore(&info->slock, flags);
2315 info->blocked_open++;
2316 while (1) {
2317 spin_lock_irqsave(&info->slock, flags);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002318 outb(inb(info->base + UART_MCR) |
2319 UART_MCR_DTR | UART_MCR_RTS, info->base + UART_MCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 spin_unlock_irqrestore(&info->slock, flags);
2321 set_current_state(TASK_INTERRUPTIBLE);
2322 if (tty_hung_up_p(filp) || !(info->flags & ASYNC_INITIALIZED)) {
2323 if (info->flags & ASYNC_HUP_NOTIFY)
2324 retval = -EAGAIN;
2325 else
2326 retval = -ERESTARTSYS;
2327 break;
2328 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002329 if (!(info->flags & ASYNC_CLOSING) &&
2330 (do_clocal ||
2331 (inb(info->base + UART_MSR) & UART_MSR_DCD)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 break;
2333 if (signal_pending(current)) {
2334 retval = -ERESTARTSYS;
2335 break;
2336 }
2337 schedule();
2338 }
2339 set_current_state(TASK_RUNNING);
2340 remove_wait_queue(&info->open_wait, &wait);
2341 if (!tty_hung_up_p(filp))
2342 info->count++;
2343 info->blocked_open--;
2344 if (retval)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002345 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 info->flags |= ASYNC_NORMAL_ACTIVE;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002347 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348}
2349
2350static int mxser_startup(struct mxser_struct *info)
2351{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 unsigned long page;
2353 unsigned long flags;
2354
2355 page = __get_free_page(GFP_KERNEL);
2356 if (!page)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002357 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
2359 spin_lock_irqsave(&info->slock, flags);
2360
2361 if (info->flags & ASYNC_INITIALIZED) {
2362 free_page(page);
2363 spin_unlock_irqrestore(&info->slock, flags);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002364 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 }
2366
2367 if (!info->base || !info->type) {
2368 if (info->tty)
2369 set_bit(TTY_IO_ERROR, &info->tty->flags);
2370 free_page(page);
2371 spin_unlock_irqrestore(&info->slock, flags);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002372 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 }
2374 if (info->xmit_buf)
2375 free_page(page);
2376 else
2377 info->xmit_buf = (unsigned char *) page;
2378
2379 /*
2380 * Clear the FIFO buffers and disable them
2381 * (they will be reenabled in mxser_change_speed())
2382 */
2383 if (info->IsMoxaMustChipFlag)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002384 outb((UART_FCR_CLEAR_RCVR |
2385 UART_FCR_CLEAR_XMIT |
2386 MOXA_MUST_FCR_GDA_MODE_ENABLE), info->base + UART_FCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 else
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002388 outb((UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT),
2389 info->base + UART_FCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
2391 /*
2392 * At this point there's no way the LSR could still be 0xFF;
2393 * if it is, then bail out, because there's likely no UART
2394 * here.
2395 */
2396 if (inb(info->base + UART_LSR) == 0xff) {
2397 spin_unlock_irqrestore(&info->slock, flags);
2398 if (capable(CAP_SYS_ADMIN)) {
2399 if (info->tty)
2400 set_bit(TTY_IO_ERROR, &info->tty->flags);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002401 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 } else
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002403 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 }
2405
2406 /*
2407 * Clear the interrupt registers.
2408 */
2409 (void) inb(info->base + UART_LSR);
2410 (void) inb(info->base + UART_RX);
2411 (void) inb(info->base + UART_IIR);
2412 (void) inb(info->base + UART_MSR);
2413
2414 /*
2415 * Now, initialize the UART
2416 */
2417 outb(UART_LCR_WLEN8, info->base + UART_LCR); /* reset DLAB */
2418 info->MCR = UART_MCR_DTR | UART_MCR_RTS;
2419 outb(info->MCR, info->base + UART_MCR);
2420
2421 /*
2422 * Finally, enable interrupts
2423 */
2424 info->IER = UART_IER_MSI | UART_IER_RLSI | UART_IER_RDI;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002425 /* info->IER = UART_IER_RLSI | UART_IER_RDI; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002427 /* following add by Victor Yu. 08-30-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 if (info->IsMoxaMustChipFlag)
2429 info->IER |= MOXA_MUST_IER_EGDAI;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002430 /* above add by Victor Yu. 08-30-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 outb(info->IER, info->base + UART_IER); /* enable interrupts */
2432
2433 /*
2434 * And clear the interrupt registers again for luck.
2435 */
2436 (void) inb(info->base + UART_LSR);
2437 (void) inb(info->base + UART_RX);
2438 (void) inb(info->base + UART_IIR);
2439 (void) inb(info->base + UART_MSR);
2440
2441 if (info->tty)
2442 clear_bit(TTY_IO_ERROR, &info->tty->flags);
2443 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
2444
2445 /*
2446 * and set the speed of the serial port
2447 */
2448 spin_unlock_irqrestore(&info->slock, flags);
2449 mxser_change_speed(info, NULL);
2450
2451 info->flags |= ASYNC_INITIALIZED;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002452 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453}
2454
2455/*
2456 * This routine will shutdown a serial port; interrupts maybe disabled, and
2457 * DTR is dropped if the hangup on close termio flag is on.
2458 */
2459static void mxser_shutdown(struct mxser_struct *info)
2460{
2461 unsigned long flags;
2462
2463 if (!(info->flags & ASYNC_INITIALIZED))
2464 return;
2465
2466 spin_lock_irqsave(&info->slock, flags);
2467
2468 /*
2469 * clear delta_msr_wait queue to avoid mem leaks: we may free the irq
2470 * here so the queue might never be waken up
2471 */
2472 wake_up_interruptible(&info->delta_msr_wait);
2473
2474 /*
2475 * Free the IRQ, if necessary
2476 */
2477 if (info->xmit_buf) {
2478 free_page((unsigned long) info->xmit_buf);
2479 info->xmit_buf = NULL;
2480 }
2481
2482 info->IER = 0;
2483 outb(0x00, info->base + UART_IER);
2484
2485 if (!info->tty || (info->tty->termios->c_cflag & HUPCL))
2486 info->MCR &= ~(UART_MCR_DTR | UART_MCR_RTS);
2487 outb(info->MCR, info->base + UART_MCR);
2488
2489 /* clear Rx/Tx FIFO's */
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002490 /* following add by Victor Yu. 08-30-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 if (info->IsMoxaMustChipFlag)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002492 outb((UART_FCR_CLEAR_RCVR |
2493 UART_FCR_CLEAR_XMIT |
2494 MOXA_MUST_FCR_GDA_MODE_ENABLE), info->base + UART_FCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 else
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002496 /* above add by Victor Yu. 08-30-2002 */
2497 outb((UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT),
2498 info->base + UART_FCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499
2500 /* read data port to reset things */
2501 (void) inb(info->base + UART_RX);
2502
2503 if (info->tty)
2504 set_bit(TTY_IO_ERROR, &info->tty->flags);
2505
2506 info->flags &= ~ASYNC_INITIALIZED;
2507
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002508 /* following add by Victor Yu. 09-23-2002 */
2509 if (info->IsMoxaMustChipFlag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 SET_MOXA_MUST_NO_SOFTWARE_FLOW_CONTROL(info->base);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002511 /* above add by Victor Yu. 09-23-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
2513 spin_unlock_irqrestore(&info->slock, flags);
2514}
2515
2516/*
2517 * This routine is called to set the UART divisor registers to match
2518 * the specified baud rate for a serial port.
2519 */
Alan Cox606d0992006-12-08 02:38:45 -08002520static int mxser_change_speed(struct mxser_struct *info, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521{
2522 unsigned cflag, cval, fcr;
2523 int ret = 0;
2524 unsigned char status;
2525 long baud;
2526 unsigned long flags;
2527
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 if (!info->tty || !info->tty->termios)
2529 return ret;
2530 cflag = info->tty->termios->c_cflag;
2531 if (!(info->base))
2532 return ret;
2533
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534#ifndef B921600
2535#define B921600 (B460800 +1)
2536#endif
2537 if (mxser_set_baud_method[info->port] == 0) {
Alan Coxc7bce302006-09-30 23:27:24 -07002538 baud = tty_get_baud_rate(info->tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 mxser_set_baud(info, baud);
2540 }
2541
2542 /* byte size and parity */
2543 switch (cflag & CSIZE) {
2544 case CS5:
2545 cval = 0x00;
2546 break;
2547 case CS6:
2548 cval = 0x01;
2549 break;
2550 case CS7:
2551 cval = 0x02;
2552 break;
2553 case CS8:
2554 cval = 0x03;
2555 break;
2556 default:
2557 cval = 0x00;
2558 break; /* too keep GCC shut... */
2559 }
2560 if (cflag & CSTOPB)
2561 cval |= 0x04;
2562 if (cflag & PARENB)
2563 cval |= UART_LCR_PARITY;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002564 if (!(cflag & PARODD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 cval |= UART_LCR_EPAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 if (cflag & CMSPAR)
2567 cval |= UART_LCR_SPAR;
2568
2569 if ((info->type == PORT_8250) || (info->type == PORT_16450)) {
2570 if (info->IsMoxaMustChipFlag) {
2571 fcr = UART_FCR_ENABLE_FIFO;
2572 fcr |= MOXA_MUST_FCR_GDA_MODE_ENABLE;
2573 SET_MOXA_MUST_FIFO_VALUE(info);
2574 } else
2575 fcr = 0;
2576 } else {
2577 fcr = UART_FCR_ENABLE_FIFO;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002578 /* following add by Victor Yu. 08-30-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 if (info->IsMoxaMustChipFlag) {
2580 fcr |= MOXA_MUST_FCR_GDA_MODE_ENABLE;
2581 SET_MOXA_MUST_FIFO_VALUE(info);
2582 } else {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002583 /* above add by Victor Yu. 08-30-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 switch (info->rx_trigger) {
2585 case 1:
2586 fcr |= UART_FCR_TRIGGER_1;
2587 break;
2588 case 4:
2589 fcr |= UART_FCR_TRIGGER_4;
2590 break;
2591 case 8:
2592 fcr |= UART_FCR_TRIGGER_8;
2593 break;
2594 default:
2595 fcr |= UART_FCR_TRIGGER_14;
2596 break;
2597 }
2598 }
2599 }
2600
2601 /* CTS flow control flag and modem status interrupts */
2602 info->IER &= ~UART_IER_MSI;
2603 info->MCR &= ~UART_MCR_AFE;
2604 if (cflag & CRTSCTS) {
2605 info->flags |= ASYNC_CTS_FLOW;
2606 info->IER |= UART_IER_MSI;
2607 if ((info->type == PORT_16550A) || (info->IsMoxaMustChipFlag)) {
2608 info->MCR |= UART_MCR_AFE;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002609 /* status = mxser_get_msr(info->base, 0, info->port); */
2610/*
2611 save_flags(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 cli();
2613 status = inb(baseaddr + UART_MSR);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002614 restore_flags(flags);
2615*/
2616 /* mxser_check_modem_status(info, status); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 } else {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002618 /* status = mxser_get_msr(info->base, 0, info->port); */
2619 /* MX_LOCK(&info->slock); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 status = inb(info->base + UART_MSR);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002621 /* MX_UNLOCK(&info->slock); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 if (info->tty->hw_stopped) {
2623 if (status & UART_MSR_CTS) {
2624 info->tty->hw_stopped = 0;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002625 if ((info->type != PORT_16550A) &&
2626 (!info->IsMoxaMustChipFlag)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 info->IER |= UART_IER_THRI;
2628 outb(info->IER, info->base + UART_IER);
2629 }
2630 set_bit(MXSER_EVENT_TXLOW, &info->event);
2631 schedule_work(&info->tqueue); }
2632 } else {
2633 if (!(status & UART_MSR_CTS)) {
2634 info->tty->hw_stopped = 1;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002635 if ((info->type != PORT_16550A) &&
2636 (!info->IsMoxaMustChipFlag)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 info->IER &= ~UART_IER_THRI;
2638 outb(info->IER, info->base + UART_IER);
2639 }
2640 }
2641 }
2642 }
2643 } else {
2644 info->flags &= ~ASYNC_CTS_FLOW;
2645 }
2646 outb(info->MCR, info->base + UART_MCR);
2647 if (cflag & CLOCAL) {
2648 info->flags &= ~ASYNC_CHECK_CD;
2649 } else {
2650 info->flags |= ASYNC_CHECK_CD;
2651 info->IER |= UART_IER_MSI;
2652 }
2653 outb(info->IER, info->base + UART_IER);
2654
2655 /*
2656 * Set up parity check flag
2657 */
2658 info->read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
2659 if (I_INPCK(info->tty))
2660 info->read_status_mask |= UART_LSR_FE | UART_LSR_PE;
2661 if (I_BRKINT(info->tty) || I_PARMRK(info->tty))
2662 info->read_status_mask |= UART_LSR_BI;
2663
2664 info->ignore_status_mask = 0;
2665
2666 if (I_IGNBRK(info->tty)) {
2667 info->ignore_status_mask |= UART_LSR_BI;
2668 info->read_status_mask |= UART_LSR_BI;
2669 /*
2670 * If we're ignore parity and break indicators, ignore
2671 * overruns too. (For real raw support).
2672 */
2673 if (I_IGNPAR(info->tty)) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002674 info->ignore_status_mask |=
2675 UART_LSR_OE |
2676 UART_LSR_PE |
2677 UART_LSR_FE;
2678 info->read_status_mask |=
2679 UART_LSR_OE |
2680 UART_LSR_PE |
2681 UART_LSR_FE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 }
2683 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002684 /* following add by Victor Yu. 09-02-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 if (info->IsMoxaMustChipFlag) {
2686 spin_lock_irqsave(&info->slock, flags);
2687 SET_MOXA_MUST_XON1_VALUE(info->base, START_CHAR(info->tty));
2688 SET_MOXA_MUST_XOFF1_VALUE(info->base, STOP_CHAR(info->tty));
2689 if (I_IXON(info->tty)) {
2690 ENABLE_MOXA_MUST_RX_SOFTWARE_FLOW_CONTROL(info->base);
2691 } else {
2692 DISABLE_MOXA_MUST_RX_SOFTWARE_FLOW_CONTROL(info->base);
2693 }
2694 if (I_IXOFF(info->tty)) {
2695 ENABLE_MOXA_MUST_TX_SOFTWARE_FLOW_CONTROL(info->base);
2696 } else {
2697 DISABLE_MOXA_MUST_TX_SOFTWARE_FLOW_CONTROL(info->base);
2698 }
2699 /*
2700 if ( I_IXANY(info->tty) ) {
2701 info->MCR |= MOXA_MUST_MCR_XON_ANY;
2702 ENABLE_MOXA_MUST_XON_ANY_FLOW_CONTROL(info->base);
2703 } else {
2704 info->MCR &= ~MOXA_MUST_MCR_XON_ANY;
2705 DISABLE_MOXA_MUST_XON_ANY_FLOW_CONTROL(info->base);
2706 }
2707 */
2708 spin_unlock_irqrestore(&info->slock, flags);
2709 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002710 /* above add by Victor Yu. 09-02-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711
2712
2713 outb(fcr, info->base + UART_FCR); /* set fcr */
2714 outb(cval, info->base + UART_LCR);
2715
2716 return ret;
2717}
2718
2719
2720static int mxser_set_baud(struct mxser_struct *info, long newspd)
2721{
2722 int quot = 0;
2723 unsigned char cval;
2724 int ret = 0;
2725 unsigned long flags;
2726
2727 if (!info->tty || !info->tty->termios)
2728 return ret;
2729
2730 if (!(info->base))
2731 return ret;
2732
2733 if (newspd > info->MaxCanSetBaudRate)
2734 return 0;
2735
2736 info->realbaud = newspd;
2737 if (newspd == 134) {
2738 quot = (2 * info->baud_base / 269);
2739 } else if (newspd) {
2740 quot = info->baud_base / newspd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 if (quot == 0)
2742 quot = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 } else {
2744 quot = 0;
2745 }
2746
2747 info->timeout = ((info->xmit_fifo_size * HZ * 10 * quot) / info->baud_base);
2748 info->timeout += HZ / 50; /* Add .02 seconds of slop */
2749
2750 if (quot) {
2751 spin_lock_irqsave(&info->slock, flags);
2752 info->MCR |= UART_MCR_DTR;
2753 outb(info->MCR, info->base + UART_MCR);
2754 spin_unlock_irqrestore(&info->slock, flags);
2755 } else {
2756 spin_lock_irqsave(&info->slock, flags);
2757 info->MCR &= ~UART_MCR_DTR;
2758 outb(info->MCR, info->base + UART_MCR);
2759 spin_unlock_irqrestore(&info->slock, flags);
2760 return ret;
2761 }
2762
2763 cval = inb(info->base + UART_LCR);
2764
2765 outb(cval | UART_LCR_DLAB, info->base + UART_LCR); /* set DLAB */
2766
2767 outb(quot & 0xff, info->base + UART_DLL); /* LS of divisor */
2768 outb(quot >> 8, info->base + UART_DLM); /* MS of divisor */
2769 outb(cval, info->base + UART_LCR); /* reset DLAB */
2770
2771
2772 return ret;
2773}
2774
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775/*
2776 * ------------------------------------------------------------
2777 * friends of mxser_ioctl()
2778 * ------------------------------------------------------------
2779 */
2780static int mxser_get_serial_info(struct mxser_struct *info, struct serial_struct __user *retinfo)
2781{
2782 struct serial_struct tmp;
2783
2784 if (!retinfo)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002785 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 memset(&tmp, 0, sizeof(tmp));
2787 tmp.type = info->type;
2788 tmp.line = info->port;
2789 tmp.port = info->base;
2790 tmp.irq = info->irq;
2791 tmp.flags = info->flags;
2792 tmp.baud_base = info->baud_base;
2793 tmp.close_delay = info->close_delay;
2794 tmp.closing_wait = info->closing_wait;
2795 tmp.custom_divisor = info->custom_divisor;
2796 tmp.hub6 = 0;
2797 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
2798 return -EFAULT;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002799 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800}
2801
2802static int mxser_set_serial_info(struct mxser_struct *info, struct serial_struct __user *new_info)
2803{
2804 struct serial_struct new_serial;
2805 unsigned int flags;
2806 int retval = 0;
2807
2808 if (!new_info || !info->base)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002809 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 if (copy_from_user(&new_serial, new_info, sizeof(new_serial)))
2811 return -EFAULT;
2812
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002813 if ((new_serial.irq != info->irq) ||
2814 (new_serial.port != info->base) ||
2815 (new_serial.custom_divisor != info->custom_divisor) ||
2816 (new_serial.baud_base != info->baud_base))
2817 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818
2819 flags = info->flags & ASYNC_SPD_MASK;
2820
2821 if (!capable(CAP_SYS_ADMIN)) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002822 if ((new_serial.baud_base != info->baud_base) ||
2823 (new_serial.close_delay != info->close_delay) ||
2824 ((new_serial.flags & ~ASYNC_USR_MASK) != (info->flags & ~ASYNC_USR_MASK)))
2825 return -EPERM;
2826 info->flags = ((info->flags & ~ASYNC_USR_MASK) |
2827 (new_serial.flags & ASYNC_USR_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 } else {
2829 /*
2830 * OK, past this point, all the error checking has been done.
2831 * At this point, we start making changes.....
2832 */
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002833 info->flags = ((info->flags & ~ASYNC_FLAGS) |
2834 (new_serial.flags & ASYNC_FLAGS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 info->close_delay = new_serial.close_delay * HZ / 100;
2836 info->closing_wait = new_serial.closing_wait * HZ / 100;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002837 info->tty->low_latency =
2838 (info->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
2839 info->tty->low_latency = 0; /* (info->flags & ASYNC_LOW_LATENCY) ? 1 : 0; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 }
2841
2842 /* added by casper, 3/17/2000, for mouse */
2843 info->type = new_serial.type;
2844
2845 process_txrx_fifo(info);
2846
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 if (info->flags & ASYNC_INITIALIZED) {
2848 if (flags != (info->flags & ASYNC_SPD_MASK)) {
2849 mxser_change_speed(info, NULL);
2850 }
2851 } else {
2852 retval = mxser_startup(info);
2853 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002854 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855}
2856
2857/*
2858 * mxser_get_lsr_info - get line status register info
2859 *
2860 * Purpose: Let user call ioctl() to get info when the UART physically
2861 * is emptied. On bus types like RS485, the transmitter must
2862 * release the bus after transmitting. This must be done when
2863 * the transmit shift register is empty, not be done when the
2864 * transmit holding register is empty. This functionality
2865 * allows an RS485 driver to be written in user space.
2866 */
2867static int mxser_get_lsr_info(struct mxser_struct *info, unsigned int __user *value)
2868{
2869 unsigned char status;
2870 unsigned int result;
2871 unsigned long flags;
2872
2873 spin_lock_irqsave(&info->slock, flags);
2874 status = inb(info->base + UART_LSR);
2875 spin_unlock_irqrestore(&info->slock, flags);
2876 result = ((status & UART_LSR_TEMT) ? TIOCSER_TEMT : 0);
2877 return put_user(result, value);
2878}
2879
2880/*
2881 * This routine sends a break character out the serial port.
2882 */
2883static void mxser_send_break(struct mxser_struct *info, int duration)
2884{
2885 unsigned long flags;
2886
2887 if (!info->base)
2888 return;
2889 set_current_state(TASK_INTERRUPTIBLE);
2890 spin_lock_irqsave(&info->slock, flags);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002891 outb(inb(info->base + UART_LCR) | UART_LCR_SBC,
2892 info->base + UART_LCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 spin_unlock_irqrestore(&info->slock, flags);
2894 schedule_timeout(duration);
2895 spin_lock_irqsave(&info->slock, flags);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002896 outb(inb(info->base + UART_LCR) & ~UART_LCR_SBC,
2897 info->base + UART_LCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 spin_unlock_irqrestore(&info->slock, flags);
2899}
2900
2901static int mxser_tiocmget(struct tty_struct *tty, struct file *file)
2902{
Jesper Juhl56e139f2006-06-25 05:47:52 -07002903 struct mxser_struct *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 unsigned char control, status;
2905 unsigned long flags;
2906
2907
2908 if (tty->index == MXSER_PORTS)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002909 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 if (tty->flags & (1 << TTY_IO_ERROR))
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002911 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912
2913 control = info->MCR;
2914
2915 spin_lock_irqsave(&info->slock, flags);
2916 status = inb(info->base + UART_MSR);
2917 if (status & UART_MSR_ANY_DELTA)
2918 mxser_check_modem_status(info, status);
2919 spin_unlock_irqrestore(&info->slock, flags);
2920 return ((control & UART_MCR_RTS) ? TIOCM_RTS : 0) |
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002921 ((control & UART_MCR_DTR) ? TIOCM_DTR : 0) |
2922 ((status & UART_MSR_DCD) ? TIOCM_CAR : 0) |
2923 ((status & UART_MSR_RI) ? TIOCM_RNG : 0) |
2924 ((status & UART_MSR_DSR) ? TIOCM_DSR : 0) |
2925 ((status & UART_MSR_CTS) ? TIOCM_CTS : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926}
2927
2928static int mxser_tiocmset(struct tty_struct *tty, struct file *file, unsigned int set, unsigned int clear)
2929{
Jesper Juhl56e139f2006-06-25 05:47:52 -07002930 struct mxser_struct *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 unsigned long flags;
2932
2933
2934 if (tty->index == MXSER_PORTS)
2935 return -ENOIOCTLCMD;
2936 if (tty->flags & (1 << TTY_IO_ERROR))
2937 return -EIO;
2938
2939 spin_lock_irqsave(&info->slock, flags);
2940
2941 if (set & TIOCM_RTS)
2942 info->MCR |= UART_MCR_RTS;
2943 if (set & TIOCM_DTR)
2944 info->MCR |= UART_MCR_DTR;
2945
2946 if (clear & TIOCM_RTS)
2947 info->MCR &= ~UART_MCR_RTS;
2948 if (clear & TIOCM_DTR)
2949 info->MCR &= ~UART_MCR_DTR;
2950
2951 outb(info->MCR, info->base + UART_MCR);
2952 spin_unlock_irqrestore(&info->slock, flags);
2953 return 0;
2954}
2955
2956
2957static int mxser_read_register(int, unsigned short *);
2958static int mxser_program_mode(int);
2959static void mxser_normal_mode(int);
2960
2961static int mxser_get_ISA_conf(int cap, struct mxser_hwconf *hwconf)
2962{
2963 int id, i, bits;
2964 unsigned short regs[16], irq;
2965 unsigned char scratch, scratch2;
2966
2967 hwconf->IsMoxaMustChipFlag = MOXA_OTHER_UART;
2968
2969 id = mxser_read_register(cap, regs);
2970 if (id == C168_ASIC_ID) {
2971 hwconf->board_type = MXSER_BOARD_C168_ISA;
2972 hwconf->ports = 8;
2973 } else if (id == C104_ASIC_ID) {
2974 hwconf->board_type = MXSER_BOARD_C104_ISA;
2975 hwconf->ports = 4;
2976 } else if (id == C102_ASIC_ID) {
2977 hwconf->board_type = MXSER_BOARD_C102_ISA;
2978 hwconf->ports = 2;
2979 } else if (id == CI132_ASIC_ID) {
2980 hwconf->board_type = MXSER_BOARD_CI132;
2981 hwconf->ports = 2;
2982 } else if (id == CI134_ASIC_ID) {
2983 hwconf->board_type = MXSER_BOARD_CI134;
2984 hwconf->ports = 4;
2985 } else if (id == CI104J_ASIC_ID) {
2986 hwconf->board_type = MXSER_BOARD_CI104J;
2987 hwconf->ports = 4;
2988 } else
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002989 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
2991 irq = 0;
2992 if (hwconf->ports == 2) {
2993 irq = regs[9] & 0xF000;
2994 irq = irq | (irq >> 4);
2995 if (irq != (regs[9] & 0xFF00))
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002996 return MXSER_ERR_IRQ_CONFLIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 } else if (hwconf->ports == 4) {
2998 irq = regs[9] & 0xF000;
2999 irq = irq | (irq >> 4);
3000 irq = irq | (irq >> 8);
3001 if (irq != regs[9])
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07003002 return MXSER_ERR_IRQ_CONFLIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 } else if (hwconf->ports == 8) {
3004 irq = regs[9] & 0xF000;
3005 irq = irq | (irq >> 4);
3006 irq = irq | (irq >> 8);
3007 if ((irq != regs[9]) || (irq != regs[10]))
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07003008 return MXSER_ERR_IRQ_CONFLIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 }
3010
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07003011 if (!irq)
3012 return MXSER_ERR_IRQ;
3013 hwconf->irq = ((int)(irq & 0xF000) >> 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 for (i = 0; i < 8; i++)
3015 hwconf->ioaddr[i] = (int) regs[i + 1] & 0xFFF8;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07003016 if ((regs[12] & 0x80) == 0)
3017 return MXSER_ERR_VECTOR;
3018 hwconf->vector = (int)regs[11]; /* interrupt vector */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 if (id == 1)
3020 hwconf->vector_mask = 0x00FF;
3021 else
3022 hwconf->vector_mask = 0x000F;
3023 for (i = 7, bits = 0x0100; i >= 0; i--, bits <<= 1) {
3024 if (regs[12] & bits) {
3025 hwconf->baud_base[i] = 921600;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07003026 hwconf->MaxCanSetBaudRate[i] = 921600; /* add by Victor Yu. 09-04-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 } else {
3028 hwconf->baud_base[i] = 115200;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07003029 hwconf->MaxCanSetBaudRate[i] = 115200; /* add by Victor Yu. 09-04-2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 }
3031 }
3032 scratch2 = inb(cap + UART_LCR) & (~UART_LCR_DLAB);
3033 outb(scratch2 | UART_LCR_DLAB, cap + UART_LCR);
3034 outb(0, cap + UART_EFR); /* EFR is the same as FCR */
3035 outb(scratch2, cap + UART_LCR);
3036 outb(UART_FCR_ENABLE_FIFO, cap + UART_FCR);
3037 scratch = inb(cap + UART_IIR);
3038
3039 if (scratch & 0xC0)
3040 hwconf->uart_type = PORT_16550A;
3041 else
3042 hwconf->uart_type = PORT_16450;
3043 if (id == 1)
3044 hwconf->ports = 8;
3045 else
3046 hwconf->ports = 4;
3047 request_region(hwconf->ioaddr[0], 8 * hwconf->ports, "mxser(IO)");
3048 request_region(hwconf->vector, 1, "mxser(vector)");
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07003049 return hwconf->ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050}
3051
3052#define CHIP_SK 0x01 /* Serial Data Clock in Eprom */
3053#define CHIP_DO 0x02 /* Serial Data Output in Eprom */
3054#define CHIP_CS 0x04 /* Serial Chip Select in Eprom */
3055#define CHIP_DI 0x08 /* Serial Data Input in Eprom */
3056#define EN_CCMD 0x000 /* Chip's command register */
3057#define EN0_RSARLO 0x008 /* Remote start address reg 0 */
3058#define EN0_RSARHI 0x009 /* Remote start address reg 1 */
3059#define EN0_RCNTLO 0x00A /* Remote byte count reg WR */
3060#define EN0_RCNTHI 0x00B /* Remote byte count reg WR */
3061#define EN0_DCFG 0x00E /* Data configuration reg WR */
3062#define EN0_PORT 0x010 /* Rcv missed frame error counter RD */
3063#define ENC_PAGE0 0x000 /* Select page 0 of chip registers */
3064#define ENC_PAGE3 0x0C0 /* Select page 3 of chip registers */
3065static int mxser_read_register(int port, unsigned short *regs)
3066{
3067 int i, k, value, id;
3068 unsigned int j;
3069
3070 id = mxser_program_mode(port);
3071 if (id < 0)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07003072 return id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 for (i = 0; i < 14; i++) {
3074 k = (i & 0x3F) | 0x180;
3075 for (j = 0x100; j > 0; j >>= 1) {
3076 outb(CHIP_CS, port);
3077 if (k & j) {
3078 outb(CHIP_CS | CHIP_DO, port);
3079 outb(CHIP_CS | CHIP_DO | CHIP_SK, port); /* A? bit of read */
3080 } else {
3081 outb(CHIP_CS, port);
3082 outb(CHIP_CS | CHIP_SK, port); /* A? bit of read */
3083 }
3084 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07003085 (void)inb(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 value = 0;
3087 for (k = 0, j = 0x8000; k < 16; k++, j >>= 1) {
3088 outb(CHIP_CS, port);
3089 outb(CHIP_CS | CHIP_SK, port);
3090 if (inb(port) & CHIP_DI)
3091 value |= j;
3092 }
3093 regs[i] = value;
3094 outb(0, port);
3095 }
3096 mxser_normal_mode(port);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07003097 return id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098}
3099
3100static int mxser_program_mode(int port)
3101{
3102 int id, i, j, n;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07003103 /* unsigned long flags; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104
3105 spin_lock(&gm_lock);
3106 outb(0, port);
3107 outb(0, port);
3108 outb(0, port);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07003109 (void)inb(port);
3110 (void)inb(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 outb(0, port);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07003112 (void)inb(port);
3113 /* restore_flags(flags); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 spin_unlock(&gm_lock);
3115
3116 id = inb(port + 1) & 0x1F;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07003117 if ((id != C168_ASIC_ID) &&
3118 (id != C104_ASIC_ID) &&
3119 (id != C102_ASIC_ID) &&
3120 (id != CI132_ASIC_ID) &&
3121 (id != CI134_ASIC_ID) &&
3122 (id != CI104J_ASIC_ID))
3123 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 for (i = 0, j = 0; i < 4; i++) {
3125 n = inb(port + 2);
3126 if (n == 'M') {
3127 j = 1;
3128 } else if ((j == 1) && (n == 1)) {
3129 j = 2;
3130 break;
3131 } else
3132 j = 0;
3133 }
3134 if (j != 2)
3135 id = -2;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07003136 return id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137}
3138
3139static void mxser_normal_mode(int port)
3140{
3141 int i, n;
3142
3143 outb(0xA5, port + 1);
3144 outb(0x80, port + 3);
3145 outb(12, port + 0); /* 9600 bps */
3146 outb(0, port + 1);
3147 outb(0x03, port + 3); /* 8 data bits */
3148 outb(0x13, port + 4); /* loop back mode */
3149 for (i = 0; i < 16; i++) {
3150 n = inb(port + 5);
3151 if ((n & 0x61) == 0x60)
3152 break;
3153 if ((n & 1) == 1)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07003154 (void)inb(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155 }
3156 outb(0x00, port + 4);
3157}
3158
3159module_init(mxser_module_init);
3160module_exit(mxser_module_exit);