1 /*****************************************************************************/
3 * moxa.c -- MOXA Intellio family multiport serial driver.
5 * Copyright (C) 1999-2000 Moxa Technologies (support@moxa.com.tw).
7 * This code is loosely based on the Linux serial driver, written by
8 * Linus Torvalds, Theodore T'so and others.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
17 * MOXA Intellio Series Driver
23 #include <linux/module.h>
24 #include <linux/types.h>
26 #include <linux/ioport.h>
27 #include <linux/errno.h>
28 #include <linux/signal.h>
29 #include <linux/sched.h>
30 #include <linux/timer.h>
31 #include <linux/interrupt.h>
32 #include <linux/tty.h>
33 #include <linux/tty_flip.h>
34 #include <linux/major.h>
35 #include <linux/string.h>
36 #include <linux/fcntl.h>
37 #include <linux/ptrace.h>
38 #include <linux/serial.h>
39 #include <linux/tty_driver.h>
40 #include <linux/delay.h>
41 #include <linux/pci.h>
42 #include <linux/init.h>
43 #include <linux/bitops.h>
45 #include <asm/system.h>
47 #include <asm/uaccess.h>
49 #define MOXA_VERSION "5.1k"
52 #define MOXACUMAJOR 173
54 #define MAX_BOARDS 4 /* Don't change this value */
55 #define MAX_PORTS_PER_BOARD 32 /* Don't change this value */
56 #define MAX_PORTS (MAX_BOARDS * MAX_PORTS_PER_BOARD)
59 * Define the Moxa PCI vendor and device IDs.
61 #define MOXA_BUS_TYPE_ISA 0
62 #define MOXA_BUS_TYPE_PCI 1
65 MOXA_BOARD_C218_PCI = 1,
72 static char *moxa_brdname[] =
74 "C218 Turbo PCI series",
75 "C218 Turbo ISA series",
76 "C320 Turbo PCI series",
77 "C320 Turbo ISA series",
82 static struct pci_device_id moxa_pcibrds[] = {
83 { PCI_DEVICE(PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_C218),
84 .driver_data = MOXA_BOARD_C218_PCI },
85 { PCI_DEVICE(PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_C320),
86 .driver_data = MOXA_BOARD_C320_PCI },
87 { PCI_DEVICE(PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP204J),
88 .driver_data = MOXA_BOARD_CP204J },
91 MODULE_DEVICE_TABLE(pci, moxa_pcibrds);
92 #endif /* CONFIG_PCI */
94 struct moxa_isa_board_conf {
97 unsigned long baseAddr;
100 static struct moxa_isa_board_conf moxa_isa_boards[] =
102 /* {MOXA_BOARD_C218_ISA,8,0xDC000}, */
105 static struct moxa_board_conf {
108 unsigned long baseAddr;
113 void __iomem *basemem;
114 void __iomem *intNdx;
115 void __iomem *intPend;
116 void __iomem *intTable;
117 } moxa_boards[MAX_BOARDS];
119 struct mxser_mstatus {
136 unsigned short closing_wait;
139 long event; /* long req'd for set_bit --RR */
141 unsigned long statusflags;
142 struct tty_struct *tty;
144 wait_queue_head_t open_wait;
145 wait_queue_head_t close_wait;
147 struct timer_list emptyTimer;
151 void __iomem *tableAddr;
160 #define TXSTOPPED 0x1
162 #define EMPTYWAIT 0x4
165 #define SERIAL_DO_RESTART
167 #define WAKEUP_CHARS 256
169 static int verbose = 0;
170 static int ttymajor = MOXAMAJOR;
171 /* Variables for insmod */
173 static int baseaddr[4];
175 static int numports[4];
178 MODULE_AUTHOR("William Chen");
179 MODULE_DESCRIPTION("MOXA Intellio Family Multiport Board Device Driver");
180 MODULE_LICENSE("GPL");
182 module_param_array(type, int, NULL, 0);
183 module_param_array(baseaddr, int, NULL, 0);
184 module_param_array(numports, int, NULL, 0);
186 module_param(ttymajor, int, 0);
187 module_param(verbose, bool, 0644);
192 static int moxa_open(struct tty_struct *, struct file *);
193 static void moxa_close(struct tty_struct *, struct file *);
194 static int moxa_write(struct tty_struct *, const unsigned char *, int);
195 static int moxa_write_room(struct tty_struct *);
196 static void moxa_flush_buffer(struct tty_struct *);
197 static int moxa_chars_in_buffer(struct tty_struct *);
198 static void moxa_flush_chars(struct tty_struct *);
199 static void moxa_put_char(struct tty_struct *, unsigned char);
200 static int moxa_ioctl(struct tty_struct *, struct file *, unsigned int, unsigned long);
201 static void moxa_throttle(struct tty_struct *);
202 static void moxa_unthrottle(struct tty_struct *);
203 static void moxa_set_termios(struct tty_struct *, struct ktermios *);
204 static void moxa_stop(struct tty_struct *);
205 static void moxa_start(struct tty_struct *);
206 static void moxa_hangup(struct tty_struct *);
207 static int moxa_tiocmget(struct tty_struct *tty, struct file *file);
208 static int moxa_tiocmset(struct tty_struct *tty, struct file *file,
209 unsigned int set, unsigned int clear);
210 static void moxa_poll(unsigned long);
211 static void set_tty_param(struct tty_struct *);
212 static int block_till_ready(struct tty_struct *, struct file *,
214 static void setup_empty_event(struct tty_struct *);
215 static void check_xmit_empty(unsigned long);
216 static void shut_down(struct moxa_port *);
217 static void receive_data(struct moxa_port *);
219 * moxa board interface functions:
221 static void MoxaDriverInit(void);
222 static int MoxaDriverIoctl(unsigned int, unsigned long, int);
223 static int MoxaDriverPoll(void);
224 static int MoxaPortsOfCard(int);
225 static int MoxaPortIsValid(int);
226 static void MoxaPortEnable(int);
227 static void MoxaPortDisable(int);
228 static long MoxaPortGetMaxBaud(int);
229 static long MoxaPortSetBaud(int, long);
230 static int MoxaPortSetTermio(int, struct ktermios *, speed_t);
231 static int MoxaPortGetLineOut(int, int *, int *);
232 static void MoxaPortLineCtrl(int, int, int);
233 static void MoxaPortFlowCtrl(int, int, int, int, int, int);
234 static int MoxaPortLineStatus(int);
235 static int MoxaPortDCDChange(int);
236 static int MoxaPortDCDON(int);
237 static void MoxaPortFlushData(int, int);
238 static int MoxaPortWriteData(int, unsigned char *, int);
239 static int MoxaPortReadData(int, struct tty_struct *tty);
240 static int MoxaPortTxQueue(int);
241 static int MoxaPortRxQueue(int);
242 static int MoxaPortTxFree(int);
243 static void MoxaPortTxDisable(int);
244 static void MoxaPortTxEnable(int);
245 static int MoxaPortResetBrkCnt(int);
246 static void MoxaPortSendBreak(int, int);
247 static int moxa_get_serial_info(struct moxa_port *, struct serial_struct __user *);
248 static int moxa_set_serial_info(struct moxa_port *, struct serial_struct __user *);
249 static void MoxaSetFifo(int port, int enable);
251 static const struct tty_operations moxa_ops = {
255 .write_room = moxa_write_room,
256 .flush_buffer = moxa_flush_buffer,
257 .chars_in_buffer = moxa_chars_in_buffer,
258 .flush_chars = moxa_flush_chars,
259 .put_char = moxa_put_char,
261 .throttle = moxa_throttle,
262 .unthrottle = moxa_unthrottle,
263 .set_termios = moxa_set_termios,
266 .hangup = moxa_hangup,
267 .tiocmget = moxa_tiocmget,
268 .tiocmset = moxa_tiocmset,
271 static struct tty_driver *moxaDriver;
272 static struct moxa_port moxa_ports[MAX_PORTS];
273 static DEFINE_TIMER(moxaTimer, moxa_poll, 0, 0);
274 static DEFINE_SPINLOCK(moxa_lock);
277 static int __devinit moxa_pci_probe(struct pci_dev *pdev,
278 const struct pci_device_id *ent)
280 struct moxa_board_conf *board;
282 int board_type = ent->driver_data;
285 retval = pci_enable_device(pdev);
289 for (i = 0; i < MAX_BOARDS; i++)
290 if (moxa_boards[i].basemem == NULL)
294 if (i >= MAX_BOARDS) {
296 printk("More than %d MOXA Intellio family boards "
297 "found. Board is ignored.\n", MAX_BOARDS);
301 board = &moxa_boards[i];
302 board->basemem = pci_iomap(pdev, 2, 0x4000);
303 if (board->basemem == NULL)
306 board->boardType = board_type;
307 switch (board_type) {
308 case MOXA_BOARD_C218_ISA:
309 case MOXA_BOARD_C218_PCI:
313 case MOXA_BOARD_CP204J:
320 board->busType = MOXA_BUS_TYPE_PCI;
322 pci_set_drvdata(pdev, board);
329 static void __devexit moxa_pci_remove(struct pci_dev *pdev)
331 struct moxa_board_conf *brd = pci_get_drvdata(pdev);
333 pci_iounmap(pdev, brd->basemem);
337 static struct pci_driver moxa_pci_driver = {
339 .id_table = moxa_pcibrds,
340 .probe = moxa_pci_probe,
341 .remove = __devexit_p(moxa_pci_remove)
343 #endif /* CONFIG_PCI */
345 static int __init moxa_init(void)
347 int i, numBoards, retval = 0;
348 struct moxa_port *ch;
350 printk(KERN_INFO "MOXA Intellio family driver version %s\n", MOXA_VERSION);
351 moxaDriver = alloc_tty_driver(MAX_PORTS + 1);
355 moxaDriver->owner = THIS_MODULE;
356 moxaDriver->name = "ttyMX";
357 moxaDriver->major = ttymajor;
358 moxaDriver->minor_start = 0;
359 moxaDriver->type = TTY_DRIVER_TYPE_SERIAL;
360 moxaDriver->subtype = SERIAL_TYPE_NORMAL;
361 moxaDriver->init_termios = tty_std_termios;
362 moxaDriver->init_termios.c_cflag = B9600 | CS8 | CREAD | CLOCAL | HUPCL;
363 moxaDriver->init_termios.c_ispeed = 9600;
364 moxaDriver->init_termios.c_ospeed = 9600;
365 moxaDriver->flags = TTY_DRIVER_REAL_RAW;
366 tty_set_operations(moxaDriver, &moxa_ops);
368 for (i = 0, ch = moxa_ports; i < MAX_PORTS; i++, ch++) {
369 ch->type = PORT_16550A;
371 ch->close_delay = 5 * HZ / 10;
372 ch->closing_wait = 30 * HZ;
373 ch->cflag = B9600 | CS8 | CREAD | CLOCAL | HUPCL;
374 init_waitqueue_head(&ch->open_wait);
375 init_waitqueue_head(&ch->close_wait);
377 setup_timer(&ch->emptyTimer, check_xmit_empty,
381 printk("Tty devices major number = %d\n", ttymajor);
383 if (tty_register_driver(moxaDriver)) {
384 printk(KERN_ERR "Couldn't install MOXA Smartio family driver !\n");
385 put_tty_driver(moxaDriver);
389 mod_timer(&moxaTimer, jiffies + HZ / 50);
391 /* Find the boards defined in source code */
393 for (i = 0; i < MAX_BOARDS; i++) {
394 if ((moxa_isa_boards[i].boardType == MOXA_BOARD_C218_ISA) ||
395 (moxa_isa_boards[i].boardType == MOXA_BOARD_C320_ISA)) {
396 moxa_boards[numBoards].boardType = moxa_isa_boards[i].boardType;
397 if (moxa_isa_boards[i].boardType == MOXA_BOARD_C218_ISA)
398 moxa_boards[numBoards].numPorts = 8;
400 moxa_boards[numBoards].numPorts = moxa_isa_boards[i].numPorts;
401 moxa_boards[numBoards].busType = MOXA_BUS_TYPE_ISA;
402 moxa_boards[numBoards].baseAddr = moxa_isa_boards[i].baseAddr;
404 printk("Board %2d: %s board(baseAddr=%lx)\n",
406 moxa_brdname[moxa_boards[numBoards].boardType - 1],
407 moxa_boards[numBoards].baseAddr);
411 /* Find the boards defined form module args. */
413 for (i = 0; i < MAX_BOARDS; i++) {
414 if ((type[i] == MOXA_BOARD_C218_ISA) ||
415 (type[i] == MOXA_BOARD_C320_ISA)) {
417 printk("Board %2d: %s board(baseAddr=%lx)\n",
419 moxa_brdname[type[i] - 1],
420 (unsigned long) baseaddr[i]);
421 if (numBoards >= MAX_BOARDS) {
423 printk("More than %d MOXA Intellio family boards found. Board is ignored.", MAX_BOARDS);
426 moxa_boards[numBoards].boardType = type[i];
427 if (moxa_isa_boards[i].boardType == MOXA_BOARD_C218_ISA)
428 moxa_boards[numBoards].numPorts = 8;
430 moxa_boards[numBoards].numPorts = numports[i];
431 moxa_boards[numBoards].busType = MOXA_BUS_TYPE_ISA;
432 moxa_boards[numBoards].baseAddr = baseaddr[i];
439 retval = pci_register_driver(&moxa_pci_driver);
441 printk(KERN_ERR "Can't register moxa pci driver!\n");
447 for (i = 0; i < numBoards; i++) {
448 moxa_boards[i].basemem = ioremap(moxa_boards[i].baseAddr,
455 static void __exit moxa_exit(void)
460 printk("Unloading module moxa ...\n");
462 del_timer_sync(&moxaTimer);
464 for (i = 0; i < MAX_PORTS; i++)
465 del_timer_sync(&moxa_ports[i].emptyTimer);
467 if (tty_unregister_driver(moxaDriver))
468 printk("Couldn't unregister MOXA Intellio family serial driver\n");
469 put_tty_driver(moxaDriver);
472 pci_unregister_driver(&moxa_pci_driver);
475 for (i = 0; i < MAX_BOARDS; i++)
476 if (moxa_boards[i].basemem)
477 iounmap(moxa_boards[i].basemem);
483 module_init(moxa_init);
484 module_exit(moxa_exit);
486 static int moxa_open(struct tty_struct *tty, struct file *filp)
488 struct moxa_port *ch;
493 if (port == MAX_PORTS) {
496 if (!MoxaPortIsValid(port)) {
497 tty->driver_data = NULL;
501 ch = &moxa_ports[port];
503 tty->driver_data = ch;
505 if (!(ch->asyncflags & ASYNC_INITIALIZED)) {
508 MoxaPortLineCtrl(ch->port, 1, 1);
509 MoxaPortEnable(ch->port);
510 ch->asyncflags |= ASYNC_INITIALIZED;
512 retval = block_till_ready(tty, filp, ch);
514 moxa_unthrottle(tty);
516 if (ch->type == PORT_16550A) {
517 MoxaSetFifo(ch->port, 1);
519 MoxaSetFifo(ch->port, 0);
525 static void moxa_close(struct tty_struct *tty, struct file *filp)
527 struct moxa_port *ch;
531 if (port == MAX_PORTS) {
534 if (!MoxaPortIsValid(port)) {
535 #ifdef SERIAL_DEBUG_CLOSE
536 printk("Invalid portno in moxa_close\n");
538 tty->driver_data = NULL;
541 if (tty->driver_data == NULL) {
544 if (tty_hung_up_p(filp)) {
547 ch = (struct moxa_port *) tty->driver_data;
549 if ((tty->count == 1) && (ch->count != 1)) {
550 printk("moxa_close: bad serial port count; tty->count is 1, "
551 "ch->count is %d\n", ch->count);
554 if (--ch->count < 0) {
555 printk("moxa_close: bad serial port count, device=%s\n",
562 ch->asyncflags |= ASYNC_CLOSING;
564 ch->cflag = tty->termios->c_cflag;
565 if (ch->asyncflags & ASYNC_INITIALIZED) {
566 setup_empty_event(tty);
567 tty_wait_until_sent(tty, 30 * HZ); /* 30 seconds timeout */
568 del_timer_sync(&moxa_ports[ch->port].emptyTimer);
571 MoxaPortFlushData(port, 2);
573 if (tty->driver->flush_buffer)
574 tty->driver->flush_buffer(tty);
575 tty_ldisc_flush(tty);
580 if (ch->blocked_open) {
581 if (ch->close_delay) {
582 msleep_interruptible(jiffies_to_msecs(ch->close_delay));
584 wake_up_interruptible(&ch->open_wait);
586 ch->asyncflags &= ~(ASYNC_NORMAL_ACTIVE | ASYNC_CLOSING);
587 wake_up_interruptible(&ch->close_wait);
590 static int moxa_write(struct tty_struct *tty,
591 const unsigned char *buf, int count)
593 struct moxa_port *ch;
597 ch = (struct moxa_port *) tty->driver_data;
602 spin_lock_irqsave(&moxa_lock, flags);
603 len = MoxaPortWriteData(port, (unsigned char *) buf, count);
604 spin_unlock_irqrestore(&moxa_lock, flags);
606 /*********************************************
607 if ( !(ch->statusflags & LOWWAIT) &&
608 ((len != count) || (MoxaPortTxFree(port) <= 100)) )
609 ************************************************/
610 ch->statusflags |= LOWWAIT;
614 static int moxa_write_room(struct tty_struct *tty)
616 struct moxa_port *ch;
620 ch = (struct moxa_port *) tty->driver_data;
623 return (MoxaPortTxFree(ch->port));
626 static void moxa_flush_buffer(struct tty_struct *tty)
628 struct moxa_port *ch = (struct moxa_port *) tty->driver_data;
632 MoxaPortFlushData(ch->port, 1);
636 static int moxa_chars_in_buffer(struct tty_struct *tty)
639 struct moxa_port *ch = (struct moxa_port *) tty->driver_data;
642 * Sigh...I have to check if driver_data is NULL here, because
643 * if an open() fails, the TTY subsystem eventually calls
644 * tty_wait_until_sent(), which calls the driver's chars_in_buffer()
645 * routine. And since the open() failed, we return 0 here. TDJ
649 chars = MoxaPortTxQueue(ch->port);
652 * Make it possible to wakeup anything waiting for output
653 * in tty_ioctl.c, etc.
655 if (!(ch->statusflags & EMPTYWAIT))
656 setup_empty_event(tty);
661 static void moxa_flush_chars(struct tty_struct *tty)
664 * Don't think I need this, because this is called to empty the TX
665 * buffer for the 16450, 16550, etc.
669 static void moxa_put_char(struct tty_struct *tty, unsigned char c)
671 struct moxa_port *ch;
675 ch = (struct moxa_port *) tty->driver_data;
679 spin_lock_irqsave(&moxa_lock, flags);
680 MoxaPortWriteData(port, &c, 1);
681 spin_unlock_irqrestore(&moxa_lock, flags);
682 /************************************************
683 if ( !(ch->statusflags & LOWWAIT) && (MoxaPortTxFree(port) <= 100) )
684 *************************************************/
685 ch->statusflags |= LOWWAIT;
688 static int moxa_tiocmget(struct tty_struct *tty, struct file *file)
690 struct moxa_port *ch = (struct moxa_port *) tty->driver_data;
692 int flag = 0, dtr, rts;
695 if ((port != MAX_PORTS) && (!ch))
698 MoxaPortGetLineOut(ch->port, &dtr, &rts);
703 dtr = MoxaPortLineStatus(ch->port);
713 static int moxa_tiocmset(struct tty_struct *tty, struct file *file,
714 unsigned int set, unsigned int clear)
716 struct moxa_port *ch = (struct moxa_port *) tty->driver_data;
721 if ((port != MAX_PORTS) && (!ch))
724 MoxaPortGetLineOut(ch->port, &dtr, &rts);
729 if (clear & TIOCM_RTS)
731 if (clear & TIOCM_DTR)
733 MoxaPortLineCtrl(ch->port, dtr, rts);
737 static int moxa_ioctl(struct tty_struct *tty, struct file *file,
738 unsigned int cmd, unsigned long arg)
740 struct moxa_port *ch = (struct moxa_port *) tty->driver_data;
742 void __user *argp = (void __user *)arg;
746 if ((port != MAX_PORTS) && (!ch))
750 case TCSBRK: /* SVID version: non-zero arg --> no break */
751 retval = tty_check_change(tty);
754 setup_empty_event(tty);
755 tty_wait_until_sent(tty, 0);
757 MoxaPortSendBreak(ch->port, 0);
759 case TCSBRKP: /* support for POSIX tcsendbreak() */
760 retval = tty_check_change(tty);
763 setup_empty_event(tty);
764 tty_wait_until_sent(tty, 0);
765 MoxaPortSendBreak(ch->port, arg);
768 return put_user(C_CLOCAL(tty) ? 1 : 0, (unsigned long __user *) argp);
770 if(get_user(retval, (unsigned long __user *) argp))
773 tty->termios->c_cflag = ((tty->termios->c_cflag & ~CLOCAL) |
776 ch->asyncflags &= ~ASYNC_CHECK_CD;
778 ch->asyncflags |= ASYNC_CHECK_CD;
781 return moxa_get_serial_info(ch, argp);
784 return moxa_set_serial_info(ch, argp);
786 retval = MoxaDriverIoctl(cmd, arg, port);
791 static void moxa_throttle(struct tty_struct *tty)
793 struct moxa_port *ch = (struct moxa_port *) tty->driver_data;
795 ch->statusflags |= THROTTLE;
798 static void moxa_unthrottle(struct tty_struct *tty)
800 struct moxa_port *ch = (struct moxa_port *) tty->driver_data;
802 ch->statusflags &= ~THROTTLE;
805 static void moxa_set_termios(struct tty_struct *tty,
806 struct ktermios *old_termios)
808 struct moxa_port *ch = (struct moxa_port *) tty->driver_data;
813 if (!(old_termios->c_cflag & CLOCAL) &&
814 (tty->termios->c_cflag & CLOCAL))
815 wake_up_interruptible(&ch->open_wait);
818 static void moxa_stop(struct tty_struct *tty)
820 struct moxa_port *ch = (struct moxa_port *) tty->driver_data;
824 MoxaPortTxDisable(ch->port);
825 ch->statusflags |= TXSTOPPED;
829 static void moxa_start(struct tty_struct *tty)
831 struct moxa_port *ch = (struct moxa_port *) tty->driver_data;
836 if (!(ch->statusflags & TXSTOPPED))
839 MoxaPortTxEnable(ch->port);
840 ch->statusflags &= ~TXSTOPPED;
843 static void moxa_hangup(struct tty_struct *tty)
845 struct moxa_port *ch = (struct moxa_port *) tty->driver_data;
847 moxa_flush_buffer(tty);
851 ch->asyncflags &= ~ASYNC_NORMAL_ACTIVE;
853 wake_up_interruptible(&ch->open_wait);
856 static void moxa_poll(unsigned long ignored)
859 struct moxa_port *ch;
860 struct tty_struct *tp;
863 del_timer(&moxaTimer);
865 if (MoxaDriverPoll() < 0) {
866 mod_timer(&moxaTimer, jiffies + HZ / 50);
869 for (card = 0; card < MAX_BOARDS; card++) {
870 if ((ports = MoxaPortsOfCard(card)) <= 0)
872 ch = &moxa_ports[card * MAX_PORTS_PER_BOARD];
873 for (i = 0; i < ports; i++, ch++) {
874 if ((ch->asyncflags & ASYNC_INITIALIZED) == 0)
876 if (!(ch->statusflags & THROTTLE) &&
877 (MoxaPortRxQueue(ch->port) > 0))
879 if ((tp = ch->tty) == 0)
881 if (ch->statusflags & LOWWAIT) {
882 if (MoxaPortTxQueue(ch->port) <= WAKEUP_CHARS) {
884 ch->statusflags &= ~LOWWAIT;
889 if (!I_IGNBRK(tp) && (MoxaPortResetBrkCnt(ch->port) > 0)) {
890 tty_insert_flip_char(tp, 0, TTY_BREAK);
891 tty_schedule_flip(tp);
893 if (MoxaPortDCDChange(ch->port)) {
894 if (ch->asyncflags & ASYNC_CHECK_CD) {
895 if (MoxaPortDCDON(ch->port))
896 wake_up_interruptible(&ch->open_wait);
899 wake_up_interruptible(&ch->open_wait);
900 ch->asyncflags &= ~ASYNC_NORMAL_ACTIVE;
907 mod_timer(&moxaTimer, jiffies + HZ / 50);
910 /******************************************************************************/
912 static void set_tty_param(struct tty_struct *tty)
914 register struct ktermios *ts;
915 struct moxa_port *ch;
916 int rts, cts, txflow, rxflow, xany;
918 ch = (struct moxa_port *) tty->driver_data;
920 if (ts->c_cflag & CLOCAL)
921 ch->asyncflags &= ~ASYNC_CHECK_CD;
923 ch->asyncflags |= ASYNC_CHECK_CD;
924 rts = cts = txflow = rxflow = xany = 0;
925 if (ts->c_cflag & CRTSCTS)
927 if (ts->c_iflag & IXON)
929 if (ts->c_iflag & IXOFF)
931 if (ts->c_iflag & IXANY)
933 MoxaPortFlowCtrl(ch->port, rts, cts, txflow, rxflow, xany);
934 MoxaPortSetTermio(ch->port, ts, tty_get_baud_rate(tty));
937 static int block_till_ready(struct tty_struct *tty, struct file *filp,
938 struct moxa_port *ch)
940 DECLARE_WAITQUEUE(wait,current);
943 int do_clocal = C_CLOCAL(tty);
946 * If the device is in the middle of being closed, then block
947 * until it's done, and then try again.
949 if (tty_hung_up_p(filp) || (ch->asyncflags & ASYNC_CLOSING)) {
950 if (ch->asyncflags & ASYNC_CLOSING)
951 interruptible_sleep_on(&ch->close_wait);
952 #ifdef SERIAL_DO_RESTART
953 if (ch->asyncflags & ASYNC_HUP_NOTIFY)
956 return (-ERESTARTSYS);
962 * If non-blocking mode is set, then make the check up front
965 if (filp->f_flags & O_NONBLOCK) {
966 ch->asyncflags |= ASYNC_NORMAL_ACTIVE;
970 * Block waiting for the carrier detect and the line to become free
973 add_wait_queue(&ch->open_wait, &wait);
974 #ifdef SERIAL_DEBUG_OPEN
975 printk("block_til_ready before block: ttys%d, count = %d\n",
976 ch->line, ch->count);
978 spin_lock_irqsave(&moxa_lock, flags);
979 if (!tty_hung_up_p(filp))
982 spin_unlock_irqrestore(&moxa_lock, flags);
985 set_current_state(TASK_INTERRUPTIBLE);
986 if (tty_hung_up_p(filp) ||
987 !(ch->asyncflags & ASYNC_INITIALIZED)) {
988 #ifdef SERIAL_DO_RESTART
989 if (ch->asyncflags & ASYNC_HUP_NOTIFY)
992 retval = -ERESTARTSYS;
998 if (!(ch->asyncflags & ASYNC_CLOSING) && (do_clocal ||
999 MoxaPortDCDON(ch->port)))
1002 if (signal_pending(current)) {
1003 retval = -ERESTARTSYS;
1008 set_current_state(TASK_RUNNING);
1009 remove_wait_queue(&ch->open_wait, &wait);
1011 spin_lock_irqsave(&moxa_lock, flags);
1012 if (!tty_hung_up_p(filp))
1015 spin_unlock_irqrestore(&moxa_lock, flags);
1016 #ifdef SERIAL_DEBUG_OPEN
1017 printk("block_til_ready after blocking: ttys%d, count = %d\n",
1018 ch->line, ch->count);
1022 /* FIXME: review to see if we need to use set_bit on these */
1023 ch->asyncflags |= ASYNC_NORMAL_ACTIVE;
1027 static void setup_empty_event(struct tty_struct *tty)
1029 struct moxa_port *ch = tty->driver_data;
1030 unsigned long flags;
1032 spin_lock_irqsave(&moxa_lock, flags);
1033 ch->statusflags |= EMPTYWAIT;
1034 mod_timer(&moxa_ports[ch->port].emptyTimer, jiffies + HZ);
1035 spin_unlock_irqrestore(&moxa_lock, flags);
1038 static void check_xmit_empty(unsigned long data)
1040 struct moxa_port *ch;
1042 ch = (struct moxa_port *) data;
1043 del_timer_sync(&moxa_ports[ch->port].emptyTimer);
1044 if (ch->tty && (ch->statusflags & EMPTYWAIT)) {
1045 if (MoxaPortTxQueue(ch->port) == 0) {
1046 ch->statusflags &= ~EMPTYWAIT;
1047 tty_wakeup(ch->tty);
1050 mod_timer(&moxa_ports[ch->port].emptyTimer, jiffies + HZ);
1052 ch->statusflags &= ~EMPTYWAIT;
1055 static void shut_down(struct moxa_port *ch)
1057 struct tty_struct *tp;
1059 if (!(ch->asyncflags & ASYNC_INITIALIZED))
1064 MoxaPortDisable(ch->port);
1067 * If we're a modem control device and HUPCL is on, drop RTS & DTR.
1069 if (tp->termios->c_cflag & HUPCL)
1070 MoxaPortLineCtrl(ch->port, 0, 0);
1072 ch->asyncflags &= ~ASYNC_INITIALIZED;
1075 static void receive_data(struct moxa_port *ch)
1077 struct tty_struct *tp;
1078 struct ktermios *ts;
1079 unsigned long flags;
1085 /**************************************************
1086 if ( !tp || !ts || !(ts->c_cflag & CREAD) ) {
1087 *****************************************************/
1089 MoxaPortFlushData(ch->port, 0);
1092 spin_lock_irqsave(&moxa_lock, flags);
1093 MoxaPortReadData(ch->port, tp);
1094 spin_unlock_irqrestore(&moxa_lock, flags);
1095 tty_schedule_flip(tp);
1098 #define Magic_code 0x404
1101 * System Configuration
1104 * for C218 BIOS initialization
1106 #define C218_ConfBase 0x800
1107 #define C218_status (C218_ConfBase + 0) /* BIOS running status */
1108 #define C218_diag (C218_ConfBase + 2) /* diagnostic status */
1109 #define C218_key (C218_ConfBase + 4) /* WORD (0x218 for C218) */
1110 #define C218DLoad_len (C218_ConfBase + 6) /* WORD */
1111 #define C218check_sum (C218_ConfBase + 8) /* BYTE */
1112 #define C218chksum_ok (C218_ConfBase + 0x0a) /* BYTE (1:ok) */
1113 #define C218_TestRx (C218_ConfBase + 0x10) /* 8 bytes for 8 ports */
1114 #define C218_TestTx (C218_ConfBase + 0x18) /* 8 bytes for 8 ports */
1115 #define C218_RXerr (C218_ConfBase + 0x20) /* 8 bytes for 8 ports */
1116 #define C218_ErrFlag (C218_ConfBase + 0x28) /* 8 bytes for 8 ports */
1118 #define C218_LoadBuf 0x0F00
1119 #define C218_KeyCode 0x218
1120 #define CP204J_KeyCode 0x204
1123 * for C320 BIOS initialization
1125 #define C320_ConfBase 0x800
1126 #define C320_LoadBuf 0x0f00
1127 #define STS_init 0x05 /* for C320_status */
1129 #define C320_status C320_ConfBase + 0 /* BIOS running status */
1130 #define C320_diag C320_ConfBase + 2 /* diagnostic status */
1131 #define C320_key C320_ConfBase + 4 /* WORD (0320H for C320) */
1132 #define C320DLoad_len C320_ConfBase + 6 /* WORD */
1133 #define C320check_sum C320_ConfBase + 8 /* WORD */
1134 #define C320chksum_ok C320_ConfBase + 0x0a /* WORD (1:ok) */
1135 #define C320bapi_len C320_ConfBase + 0x0c /* WORD */
1136 #define C320UART_no C320_ConfBase + 0x0e /* WORD */
1138 #define C320_KeyCode 0x320
1140 #define FixPage_addr 0x0000 /* starting addr of static page */
1141 #define DynPage_addr 0x2000 /* starting addr of dynamic page */
1142 #define C218_start 0x3000 /* starting addr of C218 BIOS prg */
1143 #define Control_reg 0x1ff0 /* select page and reset control */
1144 #define HW_reset 0x80
1149 #define FC_CardReset 0x80
1150 #define FC_ChannelReset 1 /* C320 firmware not supported */
1151 #define FC_EnableCH 2
1152 #define FC_DisableCH 3
1153 #define FC_SetParam 4
1154 #define FC_SetMode 5
1155 #define FC_SetRate 6
1156 #define FC_LineControl 7
1157 #define FC_LineStatus 8
1158 #define FC_XmitControl 9
1159 #define FC_FlushQueue 10
1160 #define FC_SendBreak 11
1161 #define FC_StopBreak 12
1162 #define FC_LoopbackON 13
1163 #define FC_LoopbackOFF 14
1164 #define FC_ClrIrqTable 15
1165 #define FC_SendXon 16
1166 #define FC_SetTermIrq 17 /* C320 firmware not supported */
1167 #define FC_SetCntIrq 18 /* C320 firmware not supported */
1168 #define FC_SetBreakIrq 19
1169 #define FC_SetLineIrq 20
1170 #define FC_SetFlowCtl 21
1171 #define FC_GenIrq 22
1172 #define FC_InCD180 23
1173 #define FC_OutCD180 24
1174 #define FC_InUARTreg 23
1175 #define FC_OutUARTreg 24
1176 #define FC_SetXonXoff 25
1177 #define FC_OutCD180CCR 26
1178 #define FC_ExtIQueue 27
1179 #define FC_ExtOQueue 28
1180 #define FC_ClrLineIrq 29
1181 #define FC_HWFlowCtl 30
1182 #define FC_GetClockRate 35
1183 #define FC_SetBaud 36
1184 #define FC_SetDataMode 41
1185 #define FC_GetCCSR 43
1186 #define FC_GetDataError 45
1187 #define FC_RxControl 50
1188 #define FC_ImmSend 51
1189 #define FC_SetXonState 52
1190 #define FC_SetXoffState 53
1191 #define FC_SetRxFIFOTrig 54
1192 #define FC_SetTxFIFOCnt 55
1193 #define FC_UnixRate 56
1194 #define FC_UnixResetTimer 57
1196 #define RxFIFOTrig1 0
1197 #define RxFIFOTrig4 1
1198 #define RxFIFOTrig8 2
1199 #define RxFIFOTrig14 3
1204 #define DRAM_global 0
1205 #define INT_data (DRAM_global + 0)
1206 #define Config_base (DRAM_global + 0x108)
1208 #define IRQindex (INT_data + 0)
1209 #define IRQpending (INT_data + 4)
1210 #define IRQtable (INT_data + 8)
1215 #define IntrRx 0x01 /* receiver data O.K. */
1216 #define IntrTx 0x02 /* transmit buffer empty */
1217 #define IntrFunc 0x04 /* function complete */
1218 #define IntrBreak 0x08 /* received break */
1219 #define IntrLine 0x10 /* line status change
1221 #define IntrIntr 0x20 /* received INTR code */
1222 #define IntrQuit 0x40 /* received QUIT code */
1223 #define IntrEOF 0x80 /* received EOF code */
1225 #define IntrRxTrigger 0x100 /* rx data count reach tigger value */
1226 #define IntrTxTrigger 0x200 /* tx data count below trigger value */
1228 #define Magic_no (Config_base + 0)
1229 #define Card_model_no (Config_base + 2)
1230 #define Total_ports (Config_base + 4)
1231 #define Module_cnt (Config_base + 8)
1232 #define Module_no (Config_base + 10)
1233 #define Timer_10ms (Config_base + 14)
1234 #define Disable_IRQ (Config_base + 20)
1235 #define TMS320_PORT1 (Config_base + 22)
1236 #define TMS320_PORT2 (Config_base + 24)
1237 #define TMS320_CLOCK (Config_base + 26)
1240 * DATA BUFFER in DRAM
1242 #define Extern_table 0x400 /* Base address of the external table
1243 (24 words * 64) total 3K bytes
1244 (24 words * 128) total 6K bytes */
1245 #define Extern_size 0x60 /* 96 bytes */
1246 #define RXrptr 0x00 /* read pointer for RX buffer */
1247 #define RXwptr 0x02 /* write pointer for RX buffer */
1248 #define TXrptr 0x04 /* read pointer for TX buffer */
1249 #define TXwptr 0x06 /* write pointer for TX buffer */
1250 #define HostStat 0x08 /* IRQ flag and general flag */
1251 #define FlagStat 0x0A
1252 #define FlowControl 0x0C /* B7 B6 B5 B4 B3 B2 B1 B0 */
1253 /* x x x x | | | | */
1254 /* | | | + CTS flow */
1255 /* | | +--- RTS flow */
1256 /* | +------ TX Xon/Xoff */
1257 /* +--------- RX Xon/Xoff */
1258 #define Break_cnt 0x0E /* received break count */
1259 #define CD180TXirq 0x10 /* if non-0: enable TX irq */
1260 #define RX_mask 0x12
1261 #define TX_mask 0x14
1262 #define Ofs_rxb 0x16
1263 #define Ofs_txb 0x18
1264 #define Page_rxb 0x1A
1265 #define Page_txb 0x1C
1266 #define EndPage_rxb 0x1E
1267 #define EndPage_txb 0x20
1268 #define Data_error 0x22
1269 #define RxTrigger 0x28
1270 #define TxTrigger 0x2a
1272 #define rRXwptr 0x34
1273 #define Low_water 0x36
1275 #define FuncCode 0x40
1276 #define FuncArg 0x42
1277 #define FuncArg1 0x44
1279 #define C218rx_size 0x2000 /* 8K bytes */
1280 #define C218tx_size 0x8000 /* 32K bytes */
1282 #define C218rx_mask (C218rx_size - 1)
1283 #define C218tx_mask (C218tx_size - 1)
1285 #define C320p8rx_size 0x2000
1286 #define C320p8tx_size 0x8000
1287 #define C320p8rx_mask (C320p8rx_size - 1)
1288 #define C320p8tx_mask (C320p8tx_size - 1)
1290 #define C320p16rx_size 0x2000
1291 #define C320p16tx_size 0x4000
1292 #define C320p16rx_mask (C320p16rx_size - 1)
1293 #define C320p16tx_mask (C320p16tx_size - 1)
1295 #define C320p24rx_size 0x2000
1296 #define C320p24tx_size 0x2000
1297 #define C320p24rx_mask (C320p24rx_size - 1)
1298 #define C320p24tx_mask (C320p24tx_size - 1)
1300 #define C320p32rx_size 0x1000
1301 #define C320p32tx_size 0x1000
1302 #define C320p32rx_mask (C320p32rx_size - 1)
1303 #define C320p32tx_mask (C320p32tx_size - 1)
1305 #define Page_size 0x2000
1306 #define Page_mask (Page_size - 1)
1307 #define C218rx_spage 3
1308 #define C218tx_spage 4
1309 #define C218rx_pageno 1
1310 #define C218tx_pageno 4
1311 #define C218buf_pageno 5
1313 #define C320p8rx_spage 3
1314 #define C320p8tx_spage 4
1315 #define C320p8rx_pgno 1
1316 #define C320p8tx_pgno 4
1317 #define C320p8buf_pgno 5
1319 #define C320p16rx_spage 3
1320 #define C320p16tx_spage 4
1321 #define C320p16rx_pgno 1
1322 #define C320p16tx_pgno 2
1323 #define C320p16buf_pgno 3
1325 #define C320p24rx_spage 3
1326 #define C320p24tx_spage 4
1327 #define C320p24rx_pgno 1
1328 #define C320p24tx_pgno 1
1329 #define C320p24buf_pgno 2
1331 #define C320p32rx_spage 3
1332 #define C320p32tx_ofs C320p32rx_size
1333 #define C320p32tx_spage 3
1334 #define C320p32buf_pgno 1
1339 #define WakeupRx 0x01
1340 #define WakeupTx 0x02
1341 #define WakeupBreak 0x08
1342 #define WakeupLine 0x10
1343 #define WakeupIntr 0x20
1344 #define WakeupQuit 0x40
1345 #define WakeupEOF 0x80 /* used in VTIME control */
1346 #define WakeupRxTrigger 0x100
1347 #define WakeupTxTrigger 0x200
1351 #define Rx_over 0x01
1352 #define Xoff_state 0x02
1353 #define Tx_flowOff 0x04
1354 #define Tx_enable 0x08
1355 #define CTS_state 0x10
1356 #define DSR_state 0x20
1357 #define DCD_state 0x80
1361 #define CTS_FlowCtl 1
1362 #define RTS_FlowCtl 2
1363 #define Tx_FlowCtl 4
1364 #define Rx_FlowCtl 8
1365 #define IXM_IXANY 0x10
1367 #define LowWater 128
1375 /* mode definition */
1381 #define MX_STOP1 0x00
1382 #define MX_STOP15 0x04
1383 #define MX_STOP2 0x08
1385 #define MX_PARNONE 0x00
1386 #define MX_PAREVEN 0x40
1387 #define MX_PARODD 0xC0
1395 int rxcnt[MAX_PORTS];
1396 int txcnt[MAX_PORTS];
1399 #define DCD_changed 0x01
1400 #define DCD_oldstate 0x80
1402 static unsigned char moxaBuff[10240];
1403 static int moxaLowWaterChk;
1404 static int moxaCard;
1405 static struct mon_str moxaLog;
1406 static int moxaFuncTout = HZ / 2;
1408 static void moxafunc(void __iomem *, int, ushort);
1409 static void wait_finish(void __iomem *);
1410 static void low_water_check(void __iomem *);
1411 static int moxaloadbios(int, unsigned char __user *, int);
1412 static int moxafindcard(int);
1413 static int moxaload320b(int, unsigned char __user *, int);
1414 static int moxaloadcode(int, unsigned char __user *, int);
1415 static int moxaloadc218(int, void __iomem *, int);
1416 static int moxaloadc320(int, void __iomem *, int, int *);
1418 /*****************************************************************************
1419 * Driver level functions: *
1420 * 1. MoxaDriverInit(void); *
1421 * 2. MoxaDriverIoctl(unsigned int cmd, unsigned long arg, int port); *
1422 * 3. MoxaDriverPoll(void); *
1423 *****************************************************************************/
1424 void MoxaDriverInit(void)
1426 struct moxa_port *p;
1429 moxaFuncTout = HZ / 2; /* 500 mini-seconds */
1432 moxaLowWaterChk = 0;
1433 for (i = 0; i < MAX_PORTS; i++) {
1438 moxaLog.rxcnt[i] = 0;
1439 moxaLog.txcnt[i] = 0;
1444 #define MOXA_GET_IQUEUE (MOXA + 1) /* get input buffered count */
1445 #define MOXA_GET_OQUEUE (MOXA + 2) /* get output buffered count */
1446 #define MOXA_INIT_DRIVER (MOXA + 6) /* moxaCard=0 */
1447 #define MOXA_LOAD_BIOS (MOXA + 9) /* download BIOS */
1448 #define MOXA_FIND_BOARD (MOXA + 10) /* Check if MOXA card exist? */
1449 #define MOXA_LOAD_C320B (MOXA + 11) /* download 320B firmware */
1450 #define MOXA_LOAD_CODE (MOXA + 12) /* download firmware */
1451 #define MOXA_GETDATACOUNT (MOXA + 23)
1452 #define MOXA_GET_IOQUEUE (MOXA + 27)
1453 #define MOXA_FLUSH_QUEUE (MOXA + 28)
1454 #define MOXA_GET_CONF (MOXA + 35) /* configuration */
1455 #define MOXA_GET_MAJOR (MOXA + 63)
1456 #define MOXA_GET_CUMAJOR (MOXA + 64)
1457 #define MOXA_GETMSTATUS (MOXA + 65)
1465 static struct dl_str dltmp;
1467 void MoxaPortFlushData(int port, int mode)
1469 void __iomem *ofsAddr;
1470 if ((mode < 0) || (mode > 2))
1472 ofsAddr = moxa_ports[port].tableAddr;
1473 moxafunc(ofsAddr, FC_FlushQueue, mode);
1475 moxa_ports[port].lowChkFlag = 0;
1476 low_water_check(ofsAddr);
1480 int MoxaDriverIoctl(unsigned int cmd, unsigned long arg, int port)
1484 int MoxaPortTxQueue(int), MoxaPortRxQueue(int);
1485 void __user *argp = (void __user *)arg;
1487 if (port == MAX_PORTS) {
1488 if ((cmd != MOXA_GET_CONF) && (cmd != MOXA_INIT_DRIVER) &&
1489 (cmd != MOXA_LOAD_BIOS) && (cmd != MOXA_FIND_BOARD) && (cmd != MOXA_LOAD_C320B) &&
1490 (cmd != MOXA_LOAD_CODE) && (cmd != MOXA_GETDATACOUNT) &&
1491 (cmd != MOXA_GET_IOQUEUE) && (cmd != MOXA_GET_MAJOR) &&
1492 (cmd != MOXA_GET_CUMAJOR) && (cmd != MOXA_GETMSTATUS))
1497 if(copy_to_user(argp, &moxa_boards, MAX_BOARDS *
1498 sizeof(struct moxa_board_conf)))
1501 case MOXA_INIT_DRIVER:
1502 if ((int) arg == 0x404)
1505 case MOXA_GETDATACOUNT:
1506 moxaLog.tick = jiffies;
1507 if(copy_to_user(argp, &moxaLog, sizeof(struct mon_str)))
1510 case MOXA_FLUSH_QUEUE:
1511 MoxaPortFlushData(port, arg);
1513 case MOXA_GET_IOQUEUE: {
1514 struct moxaq_str __user *argm = argp;
1515 struct moxaq_str tmp;
1517 for (i = 0; i < MAX_PORTS; i++, argm++) {
1518 memset(&tmp, 0, sizeof(tmp));
1519 if (moxa_ports[i].chkPort) {
1520 tmp.inq = MoxaPortRxQueue(i);
1521 tmp.outq = MoxaPortTxQueue(i);
1523 if (copy_to_user(argm, &tmp, sizeof(tmp)))
1527 } case MOXA_GET_OQUEUE:
1528 i = MoxaPortTxQueue(port);
1529 return put_user(i, (unsigned long __user *)argp);
1530 case MOXA_GET_IQUEUE:
1531 i = MoxaPortRxQueue(port);
1532 return put_user(i, (unsigned long __user *)argp);
1533 case MOXA_GET_MAJOR:
1534 if(copy_to_user(argp, &ttymajor, sizeof(int)))
1537 case MOXA_GET_CUMAJOR:
1539 if(copy_to_user(argp, &i, sizeof(int)))
1542 case MOXA_GETMSTATUS: {
1543 struct mxser_mstatus __user *argm = argp;
1544 struct mxser_mstatus tmp;
1545 struct moxa_port *p;
1547 for (i = 0; i < MAX_PORTS; i++, argm++) {
1549 memset(&tmp, 0, sizeof(tmp));
1553 status = MoxaPortLineStatus(p->port);
1562 if (!p->tty || !p->tty->termios)
1563 tmp.cflag = p->cflag;
1565 tmp.cflag = p->tty->termios->c_cflag;
1567 if (copy_to_user(argm, &tmp, sizeof(tmp)))
1572 return (-ENOIOCTLCMD);
1573 case MOXA_LOAD_BIOS:
1574 case MOXA_FIND_BOARD:
1575 case MOXA_LOAD_C320B:
1576 case MOXA_LOAD_CODE:
1577 if (!capable(CAP_SYS_RAWIO))
1582 if(copy_from_user(&dltmp, argp, sizeof(struct dl_str)))
1584 if(dltmp.cardno < 0 || dltmp.cardno >= MAX_BOARDS || dltmp.len < 0)
1589 case MOXA_LOAD_BIOS:
1590 i = moxaloadbios(dltmp.cardno, dltmp.buf, dltmp.len);
1592 case MOXA_FIND_BOARD:
1593 return moxafindcard(dltmp.cardno);
1594 case MOXA_LOAD_C320B:
1595 moxaload320b(dltmp.cardno, dltmp.buf, dltmp.len);
1596 default: /* to keep gcc happy */
1598 case MOXA_LOAD_CODE:
1599 i = moxaloadcode(dltmp.cardno, dltmp.buf, dltmp.len);
1607 int MoxaDriverPoll(void)
1609 struct moxa_board_conf *brd;
1610 register ushort temp;
1612 void __iomem *ofsAddr;
1618 for (card = 0; card < MAX_BOARDS; card++) {
1619 brd = &moxa_boards[card];
1620 if (brd->loadstat == 0)
1622 if ((ports = brd->numPorts) == 0)
1624 if (readb(brd->intPend) == 0xff) {
1625 ip = brd->intTable + readb(brd->intNdx);
1626 p = card * MAX_PORTS_PER_BOARD;
1628 for (port = 0; port < ports; port += 2, p++) {
1629 if ((temp = readw(ip + port)) != 0) {
1630 writew(0, ip + port);
1631 ofsAddr = moxa_ports[p].tableAddr;
1633 writew(readw(ofsAddr + HostStat) & ~WakeupTx, ofsAddr + HostStat);
1634 if (temp & IntrBreak) {
1635 moxa_ports[p].breakCnt++;
1637 if (temp & IntrLine) {
1638 if (readb(ofsAddr + FlagStat) & DCD_state) {
1639 if ((moxa_ports[p].DCDState & DCD_oldstate) == 0)
1640 moxa_ports[p].DCDState = (DCD_oldstate |
1643 if (moxa_ports[p].DCDState & DCD_oldstate)
1644 moxa_ports[p].DCDState = DCD_changed;
1649 writeb(0, brd->intPend);
1651 if (moxaLowWaterChk) {
1652 p = card * MAX_PORTS_PER_BOARD;
1653 for (port = 0; port < ports; port++, p++) {
1654 if (moxa_ports[p].lowChkFlag) {
1655 moxa_ports[p].lowChkFlag = 0;
1656 ofsAddr = moxa_ports[p].tableAddr;
1657 low_water_check(ofsAddr);
1662 moxaLowWaterChk = 0;
1666 /*****************************************************************************
1667 * Card level function: *
1668 * 1. MoxaPortsOfCard(int cardno); *
1669 *****************************************************************************/
1670 int MoxaPortsOfCard(int cardno)
1673 if (moxa_boards[cardno].boardType == 0)
1675 return (moxa_boards[cardno].numPorts);
1678 /*****************************************************************************
1679 * Port level functions: *
1680 * 1. MoxaPortIsValid(int port); *
1681 * 2. MoxaPortEnable(int port); *
1682 * 3. MoxaPortDisable(int port); *
1683 * 4. MoxaPortGetMaxBaud(int port); *
1684 * 6. MoxaPortSetBaud(int port, long baud); *
1685 * 8. MoxaPortSetTermio(int port, unsigned char *termio); *
1686 * 9. MoxaPortGetLineOut(int port, int *dtrState, int *rtsState); *
1687 * 10. MoxaPortLineCtrl(int port, int dtrState, int rtsState); *
1688 * 11. MoxaPortFlowCtrl(int port, int rts, int cts, int rx, int tx,int xany); *
1689 * 12. MoxaPortLineStatus(int port); *
1690 * 13. MoxaPortDCDChange(int port); *
1691 * 14. MoxaPortDCDON(int port); *
1692 * 15. MoxaPortFlushData(int port, int mode); *
1693 * 16. MoxaPortWriteData(int port, unsigned char * buffer, int length); *
1694 * 17. MoxaPortReadData(int port, struct tty_struct *tty); *
1695 * 20. MoxaPortTxQueue(int port); *
1696 * 21. MoxaPortTxFree(int port); *
1697 * 22. MoxaPortRxQueue(int port); *
1698 * 24. MoxaPortTxDisable(int port); *
1699 * 25. MoxaPortTxEnable(int port); *
1700 * 27. MoxaPortResetBrkCnt(int port); *
1701 * 30. MoxaPortSendBreak(int port, int ticks); *
1702 *****************************************************************************/
1704 * Moxa Port Number Description:
1706 * MOXA serial driver supports up to 4 MOXA-C218/C320 boards. And,
1707 * the port number using in MOXA driver functions will be 0 to 31 for
1708 * first MOXA board, 32 to 63 for second, 64 to 95 for third and 96
1709 * to 127 for fourth. For example, if you setup three MOXA boards,
1710 * first board is C218, second board is C320-16 and third board is
1711 * C320-32. The port number of first board (C218 - 8 ports) is from
1712 * 0 to 7. The port number of second board (C320 - 16 ports) is form
1713 * 32 to 47. The port number of third board (C320 - 32 ports) is from
1714 * 64 to 95. And those port numbers form 8 to 31, 48 to 63 and 96 to
1715 * 127 will be invalid.
1718 * Moxa Functions Description:
1720 * Function 1: Driver initialization routine, this routine must be
1721 * called when initialized driver.
1723 * void MoxaDriverInit();
1726 * Function 2: Moxa driver private IOCTL command processing.
1728 * int MoxaDriverIoctl(unsigned int cmd, unsigned long arg, int port);
1730 * unsigned int cmd : IOCTL command
1731 * unsigned long arg : IOCTL argument
1732 * int port : port number (0 - 127)
1739 * Function 3: Moxa driver polling process routine.
1741 * int MoxaDriverPoll(void);
1743 * return: 0 ; polling O.K.
1744 * -1 : no any Moxa card.
1747 * Function 4: Get the ports of this card.
1749 * int MoxaPortsOfCard(int cardno);
1751 * int cardno : card number (0 - 3)
1753 * return: 0 : this card is invalid
1757 * Function 5: Check this port is valid or invalid
1759 * int MoxaPortIsValid(int port);
1760 * int port : port number (0 - 127, ref port description)
1762 * return: 0 : this port is invalid
1763 * 1 : this port is valid
1766 * Function 6: Enable this port to start Tx/Rx data.
1768 * void MoxaPortEnable(int port);
1769 * int port : port number (0 - 127)
1772 * Function 7: Disable this port
1774 * void MoxaPortDisable(int port);
1775 * int port : port number (0 - 127)
1778 * Function 8: Get the maximun available baud rate of this port.
1780 * long MoxaPortGetMaxBaud(int port);
1781 * int port : port number (0 - 127)
1783 * return: 0 : this port is invalid
1784 * 38400/57600/115200 bps
1787 * Function 10: Setting baud rate of this port.
1789 * long MoxaPortSetBaud(int port, long baud);
1790 * int port : port number (0 - 127)
1791 * long baud : baud rate (50 - 115200)
1793 * return: 0 : this port is invalid or baud < 50
1794 * 50 - 115200 : the real baud rate set to the port, if
1795 * the argument baud is large than maximun
1796 * available baud rate, the real setting
1797 * baud rate will be the maximun baud rate.
1800 * Function 12: Configure the port.
1802 * int MoxaPortSetTermio(int port, struct ktermios *termio, speed_t baud);
1803 * int port : port number (0 - 127)
1804 * struct ktermios * termio : termio structure pointer
1805 * speed_t baud : baud rate
1807 * return: -1 : this port is invalid or termio == NULL
1811 * Function 13: Get the DTR/RTS state of this port.
1813 * int MoxaPortGetLineOut(int port, int *dtrState, int *rtsState);
1814 * int port : port number (0 - 127)
1815 * int * dtrState : pointer to INT to receive the current DTR
1816 * state. (if NULL, this function will not
1817 * write to this address)
1818 * int * rtsState : pointer to INT to receive the current RTS
1819 * state. (if NULL, this function will not
1820 * write to this address)
1822 * return: -1 : this port is invalid
1826 * Function 14: Setting the DTR/RTS output state of this port.
1828 * void MoxaPortLineCtrl(int port, int dtrState, int rtsState);
1829 * int port : port number (0 - 127)
1830 * int dtrState : DTR output state (0: off, 1: on)
1831 * int rtsState : RTS output state (0: off, 1: on)
1834 * Function 15: Setting the flow control of this port.
1836 * void MoxaPortFlowCtrl(int port, int rtsFlow, int ctsFlow, int rxFlow,
1837 * int txFlow,int xany);
1838 * int port : port number (0 - 127)
1839 * int rtsFlow : H/W RTS flow control (0: no, 1: yes)
1840 * int ctsFlow : H/W CTS flow control (0: no, 1: yes)
1841 * int rxFlow : S/W Rx XON/XOFF flow control (0: no, 1: yes)
1842 * int txFlow : S/W Tx XON/XOFF flow control (0: no, 1: yes)
1843 * int xany : S/W XANY flow control (0: no, 1: yes)
1846 * Function 16: Get ths line status of this port
1848 * int MoxaPortLineStatus(int port);
1849 * int port : port number (0 - 127)
1851 * return: Bit 0 - CTS state (0: off, 1: on)
1852 * Bit 1 - DSR state (0: off, 1: on)
1853 * Bit 2 - DCD state (0: off, 1: on)
1856 * Function 17: Check the DCD state has changed since the last read
1859 * int MoxaPortDCDChange(int port);
1860 * int port : port number (0 - 127)
1862 * return: 0 : no changed
1863 * 1 : DCD has changed
1866 * Function 18: Check ths current DCD state is ON or not.
1868 * int MoxaPortDCDON(int port);
1869 * int port : port number (0 - 127)
1871 * return: 0 : DCD off
1875 * Function 19: Flush the Rx/Tx buffer data of this port.
1877 * void MoxaPortFlushData(int port, int mode);
1878 * int port : port number (0 - 127)
1880 * 0 : flush the Rx buffer
1881 * 1 : flush the Tx buffer
1882 * 2 : flush the Rx and Tx buffer
1885 * Function 20: Write data.
1887 * int MoxaPortWriteData(int port, unsigned char * buffer, int length);
1888 * int port : port number (0 - 127)
1889 * unsigned char * buffer : pointer to write data buffer.
1890 * int length : write data length
1892 * return: 0 - length : real write data length
1895 * Function 21: Read data.
1897 * int MoxaPortReadData(int port, struct tty_struct *tty);
1898 * int port : port number (0 - 127)
1899 * struct tty_struct *tty : tty for data
1901 * return: 0 - length : real read data length
1904 * Function 24: Get the Tx buffer current queued data bytes
1906 * int MoxaPortTxQueue(int port);
1907 * int port : port number (0 - 127)
1909 * return: .. : Tx buffer current queued data bytes
1912 * Function 25: Get the Tx buffer current free space
1914 * int MoxaPortTxFree(int port);
1915 * int port : port number (0 - 127)
1917 * return: .. : Tx buffer current free space
1920 * Function 26: Get the Rx buffer current queued data bytes
1922 * int MoxaPortRxQueue(int port);
1923 * int port : port number (0 - 127)
1925 * return: .. : Rx buffer current queued data bytes
1928 * Function 28: Disable port data transmission.
1930 * void MoxaPortTxDisable(int port);
1931 * int port : port number (0 - 127)
1934 * Function 29: Enable port data transmission.
1936 * void MoxaPortTxEnable(int port);
1937 * int port : port number (0 - 127)
1940 * Function 31: Get the received BREAK signal count and reset it.
1942 * int MoxaPortResetBrkCnt(int port);
1943 * int port : port number (0 - 127)
1945 * return: 0 - .. : BREAK signal count
1948 * Function 34: Send out a BREAK signal.
1950 * void MoxaPortSendBreak(int port, int ms100);
1951 * int port : port number (0 - 127)
1952 * int ms100 : break signal time interval.
1953 * unit: 100 mini-second. if ms100 == 0, it will
1954 * send out a about 250 ms BREAK signal.
1957 int MoxaPortIsValid(int port)
1962 if (moxa_ports[port].chkPort == 0)
1967 void MoxaPortEnable(int port)
1969 void __iomem *ofsAddr;
1970 int MoxaPortLineStatus(int);
1971 short lowwater = 512;
1973 ofsAddr = moxa_ports[port].tableAddr;
1974 writew(lowwater, ofsAddr + Low_water);
1975 moxa_ports[port].breakCnt = 0;
1976 if ((moxa_boards[port / MAX_PORTS_PER_BOARD].boardType == MOXA_BOARD_C320_ISA) ||
1977 (moxa_boards[port / MAX_PORTS_PER_BOARD].boardType == MOXA_BOARD_C320_PCI)) {
1978 moxafunc(ofsAddr, FC_SetBreakIrq, 0);
1980 writew(readw(ofsAddr + HostStat) | WakeupBreak, ofsAddr + HostStat);
1983 moxafunc(ofsAddr, FC_SetLineIrq, Magic_code);
1984 moxafunc(ofsAddr, FC_FlushQueue, 2);
1986 moxafunc(ofsAddr, FC_EnableCH, Magic_code);
1987 MoxaPortLineStatus(port);
1990 void MoxaPortDisable(int port)
1992 void __iomem *ofsAddr = moxa_ports[port].tableAddr;
1994 moxafunc(ofsAddr, FC_SetFlowCtl, 0); /* disable flow control */
1995 moxafunc(ofsAddr, FC_ClrLineIrq, Magic_code);
1996 writew(0, ofsAddr + HostStat);
1997 moxafunc(ofsAddr, FC_DisableCH, Magic_code);
2000 long MoxaPortGetMaxBaud(int port)
2002 if ((moxa_boards[port / MAX_PORTS_PER_BOARD].boardType == MOXA_BOARD_C320_ISA) ||
2003 (moxa_boards[port / MAX_PORTS_PER_BOARD].boardType == MOXA_BOARD_C320_PCI))
2010 long MoxaPortSetBaud(int port, long baud)
2012 void __iomem *ofsAddr;
2016 if ((baud < 50L) || ((max = MoxaPortGetMaxBaud(port)) == 0))
2018 ofsAddr = moxa_ports[port].tableAddr;
2022 clock = 614400L; /* for 9.8304 Mhz : max. 38400 bps */
2023 else if (max == 57600L)
2024 clock = 691200L; /* for 11.0592 Mhz : max. 57600 bps */
2026 clock = 921600L; /* for 14.7456 Mhz : max. 115200 bps */
2028 moxafunc(ofsAddr, FC_SetBaud, val);
2030 moxa_ports[port].curBaud = baud;
2034 int MoxaPortSetTermio(int port, struct ktermios *termio, speed_t baud)
2036 void __iomem *ofsAddr;
2040 if (moxa_ports[port].chkPort == 0 || termio == 0)
2042 ofsAddr = moxa_ports[port].tableAddr;
2043 cflag = termio->c_cflag; /* termio->c_cflag */
2045 mode = termio->c_cflag & CSIZE;
2048 else if (mode == CS6)
2050 else if (mode == CS7)
2052 else if (mode == CS8)
2055 if (termio->c_cflag & CSTOPB) {
2063 if (termio->c_cflag & PARENB) {
2064 if (termio->c_cflag & PARODD)
2071 moxafunc(ofsAddr, FC_SetDataMode, (ushort) mode);
2073 if ((moxa_boards[port / MAX_PORTS_PER_BOARD].boardType == MOXA_BOARD_C320_ISA) ||
2074 (moxa_boards[port / MAX_PORTS_PER_BOARD].boardType == MOXA_BOARD_C320_PCI)) {
2075 if (baud >= 921600L)
2078 MoxaPortSetBaud(port, baud);
2080 if (termio->c_iflag & (IXON | IXOFF | IXANY)) {
2081 writeb(termio->c_cc[VSTART], ofsAddr + FuncArg);
2082 writeb(termio->c_cc[VSTOP], ofsAddr + FuncArg1);
2083 writeb(FC_SetXonXoff, ofsAddr + FuncCode);
2084 wait_finish(ofsAddr);
2090 int MoxaPortGetLineOut(int port, int *dtrState, int *rtsState)
2093 if (!MoxaPortIsValid(port))
2096 if (moxa_ports[port].lineCtrl & DTR_ON)
2102 if (moxa_ports[port].lineCtrl & RTS_ON)
2110 void MoxaPortLineCtrl(int port, int dtr, int rts)
2112 void __iomem *ofsAddr;
2115 ofsAddr = moxa_ports[port].tableAddr;
2121 moxa_ports[port].lineCtrl = mode;
2122 moxafunc(ofsAddr, FC_LineControl, mode);
2125 void MoxaPortFlowCtrl(int port, int rts, int cts, int txflow, int rxflow, int txany)
2127 void __iomem *ofsAddr;
2130 ofsAddr = moxa_ports[port].tableAddr;
2133 mode |= RTS_FlowCtl;
2135 mode |= CTS_FlowCtl;
2142 moxafunc(ofsAddr, FC_SetFlowCtl, mode);
2145 int MoxaPortLineStatus(int port)
2147 void __iomem *ofsAddr;
2150 ofsAddr = moxa_ports[port].tableAddr;
2151 if ((moxa_boards[port / MAX_PORTS_PER_BOARD].boardType == MOXA_BOARD_C320_ISA) ||
2152 (moxa_boards[port / MAX_PORTS_PER_BOARD].boardType == MOXA_BOARD_C320_PCI)) {
2153 moxafunc(ofsAddr, FC_LineStatus, 0);
2154 val = readw(ofsAddr + FuncArg);
2156 val = readw(ofsAddr + FlagStat) >> 4;
2161 if ((moxa_ports[port].DCDState & DCD_oldstate) == 0)
2162 moxa_ports[port].DCDState = (DCD_oldstate | DCD_changed);
2164 if (moxa_ports[port].DCDState & DCD_oldstate)
2165 moxa_ports[port].DCDState = DCD_changed;
2171 int MoxaPortDCDChange(int port)
2175 if (moxa_ports[port].chkPort == 0)
2177 n = moxa_ports[port].DCDState;
2178 moxa_ports[port].DCDState &= ~DCD_changed;
2183 int MoxaPortDCDON(int port)
2187 if (moxa_ports[port].chkPort == 0)
2189 if (moxa_ports[port].DCDState & DCD_oldstate)
2196 int MoxaPortWriteData(int port, unsigned char * buffer, int len)
2201 ushort head, tx_mask, spage, epage;
2202 ushort pageno, pageofs, bufhead;
2203 void __iomem *baseAddr, *ofsAddr, *ofs;
2205 ofsAddr = moxa_ports[port].tableAddr;
2206 baseAddr = moxa_boards[port / MAX_PORTS_PER_BOARD].basemem;
2207 tx_mask = readw(ofsAddr + TX_mask);
2208 spage = readw(ofsAddr + Page_txb);
2209 epage = readw(ofsAddr + EndPage_txb);
2210 tail = readw(ofsAddr + TXwptr);
2211 head = readw(ofsAddr + TXrptr);
2212 c = (head > tail) ? (head - tail - 1)
2213 : (head - tail + tx_mask);
2216 moxaLog.txcnt[port] += c;
2218 if (spage == epage) {
2219 bufhead = readw(ofsAddr + Ofs_txb);
2220 writew(spage, baseAddr + Control_reg);
2223 len = head - tail - 1;
2225 len = tx_mask + 1 - tail;
2226 len = (c > len) ? len : c;
2227 ofs = baseAddr + DynPage_addr + bufhead + tail;
2228 for (i = 0; i < len; i++)
2229 writeb(*buffer++, ofs + i);
2230 tail = (tail + len) & tx_mask;
2233 writew(tail, ofsAddr + TXwptr);
2236 pageno = spage + (tail >> 13);
2237 pageofs = tail & Page_mask;
2239 cnt = Page_size - pageofs;
2243 writeb(pageno, baseAddr + Control_reg);
2244 ofs = baseAddr + DynPage_addr + pageofs;
2245 for (i = 0; i < cnt; i++)
2246 writeb(*buffer++, ofs + i);
2248 writew((tail + len) & tx_mask, ofsAddr + TXwptr);
2251 if (++pageno == epage)
2256 writeb(1, ofsAddr + CD180TXirq); /* start to send */
2260 int MoxaPortReadData(int port, struct tty_struct *tty)
2262 register ushort head, pageofs;
2263 int i, count, cnt, len, total, remain;
2264 ushort tail, rx_mask, spage, epage;
2265 ushort pageno, bufhead;
2266 void __iomem *baseAddr, *ofsAddr, *ofs;
2268 ofsAddr = moxa_ports[port].tableAddr;
2269 baseAddr = moxa_boards[port / MAX_PORTS_PER_BOARD].basemem;
2270 head = readw(ofsAddr + RXrptr);
2271 tail = readw(ofsAddr + RXwptr);
2272 rx_mask = readw(ofsAddr + RX_mask);
2273 spage = readw(ofsAddr + Page_rxb);
2274 epage = readw(ofsAddr + EndPage_rxb);
2275 count = (tail >= head) ? (tail - head)
2276 : (tail - head + rx_mask + 1);
2281 remain = count - total;
2282 moxaLog.rxcnt[port] += total;
2284 if (spage == epage) {
2285 bufhead = readw(ofsAddr + Ofs_rxb);
2286 writew(spage, baseAddr + Control_reg);
2291 len = rx_mask + 1 - head;
2292 len = (count > len) ? len : count;
2293 ofs = baseAddr + DynPage_addr + bufhead + head;
2294 for (i = 0; i < len; i++)
2295 tty_insert_flip_char(tty, readb(ofs + i), TTY_NORMAL);
2296 head = (head + len) & rx_mask;
2299 writew(head, ofsAddr + RXrptr);
2302 pageno = spage + (head >> 13);
2303 pageofs = head & Page_mask;
2305 cnt = Page_size - pageofs;
2309 writew(pageno, baseAddr + Control_reg);
2310 ofs = baseAddr + DynPage_addr + pageofs;
2311 for (i = 0; i < cnt; i++)
2312 tty_insert_flip_char(tty, readb(ofs + i), TTY_NORMAL);
2314 writew((head + len) & rx_mask, ofsAddr + RXrptr);
2317 if (++pageno == epage)
2322 if ((readb(ofsAddr + FlagStat) & Xoff_state) && (remain < LowWater)) {
2323 moxaLowWaterChk = 1;
2324 moxa_ports[port].lowChkFlag = 1;
2330 int MoxaPortTxQueue(int port)
2332 void __iomem *ofsAddr;
2333 ushort rptr, wptr, mask;
2336 ofsAddr = moxa_ports[port].tableAddr;
2337 rptr = readw(ofsAddr + TXrptr);
2338 wptr = readw(ofsAddr + TXwptr);
2339 mask = readw(ofsAddr + TX_mask);
2340 len = (wptr - rptr) & mask;
2344 int MoxaPortTxFree(int port)
2346 void __iomem *ofsAddr;
2347 ushort rptr, wptr, mask;
2350 ofsAddr = moxa_ports[port].tableAddr;
2351 rptr = readw(ofsAddr + TXrptr);
2352 wptr = readw(ofsAddr + TXwptr);
2353 mask = readw(ofsAddr + TX_mask);
2354 len = mask - ((wptr - rptr) & mask);
2358 int MoxaPortRxQueue(int port)
2360 void __iomem *ofsAddr;
2361 ushort rptr, wptr, mask;
2364 ofsAddr = moxa_ports[port].tableAddr;
2365 rptr = readw(ofsAddr + RXrptr);
2366 wptr = readw(ofsAddr + RXwptr);
2367 mask = readw(ofsAddr + RX_mask);
2368 len = (wptr - rptr) & mask;
2373 void MoxaPortTxDisable(int port)
2375 void __iomem *ofsAddr;
2377 ofsAddr = moxa_ports[port].tableAddr;
2378 moxafunc(ofsAddr, FC_SetXoffState, Magic_code);
2381 void MoxaPortTxEnable(int port)
2383 void __iomem *ofsAddr;
2385 ofsAddr = moxa_ports[port].tableAddr;
2386 moxafunc(ofsAddr, FC_SetXonState, Magic_code);
2390 int MoxaPortResetBrkCnt(int port)
2393 cnt = moxa_ports[port].breakCnt;
2394 moxa_ports[port].breakCnt = 0;
2399 void MoxaPortSendBreak(int port, int ms100)
2401 void __iomem *ofsAddr;
2403 ofsAddr = moxa_ports[port].tableAddr;
2405 moxafunc(ofsAddr, FC_SendBreak, Magic_code);
2408 moxafunc(ofsAddr, FC_SendBreak, Magic_code);
2411 moxafunc(ofsAddr, FC_StopBreak, Magic_code);
2414 static int moxa_get_serial_info(struct moxa_port *info,
2415 struct serial_struct __user *retinfo)
2417 struct serial_struct tmp;
2419 memset(&tmp, 0, sizeof(tmp));
2420 tmp.type = info->type;
2421 tmp.line = info->port;
2424 tmp.flags = info->asyncflags;
2425 tmp.baud_base = 921600;
2426 tmp.close_delay = info->close_delay;
2427 tmp.closing_wait = info->closing_wait;
2428 tmp.custom_divisor = 0;
2430 if(copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
2436 static int moxa_set_serial_info(struct moxa_port *info,
2437 struct serial_struct __user *new_info)
2439 struct serial_struct new_serial;
2441 if(copy_from_user(&new_serial, new_info, sizeof(new_serial)))
2444 if ((new_serial.irq != 0) ||
2445 (new_serial.port != 0) ||
2446 // (new_serial.type != info->type) ||
2447 (new_serial.custom_divisor != 0) ||
2448 (new_serial.baud_base != 921600))
2451 if (!capable(CAP_SYS_ADMIN)) {
2452 if (((new_serial.flags & ~ASYNC_USR_MASK) !=
2453 (info->asyncflags & ~ASYNC_USR_MASK)))
2456 info->close_delay = new_serial.close_delay * HZ / 100;
2457 info->closing_wait = new_serial.closing_wait * HZ / 100;
2460 new_serial.flags = (new_serial.flags & ~ASYNC_FLAGS);
2461 new_serial.flags |= (info->asyncflags & ASYNC_FLAGS);
2463 if (new_serial.type == PORT_16550A) {
2464 MoxaSetFifo(info->port, 1);
2466 MoxaSetFifo(info->port, 0);
2469 info->type = new_serial.type;
2475 /*****************************************************************************
2476 * Static local functions: *
2477 *****************************************************************************/
2478 static void moxafunc(void __iomem *ofsAddr, int cmd, ushort arg)
2481 writew(arg, ofsAddr + FuncArg);
2482 writew(cmd, ofsAddr + FuncCode);
2483 wait_finish(ofsAddr);
2486 static void wait_finish(void __iomem *ofsAddr)
2491 while (readw(ofsAddr + FuncCode) != 0) {
2493 if ((j - i) > moxaFuncTout) {
2499 static void low_water_check(void __iomem *ofsAddr)
2502 ushort rptr, wptr, mask;
2504 if (readb(ofsAddr + FlagStat) & Xoff_state) {
2505 rptr = readw(ofsAddr + RXrptr);
2506 wptr = readw(ofsAddr + RXwptr);
2507 mask = readw(ofsAddr + RX_mask);
2508 len = (wptr - rptr) & mask;
2509 if (len <= Low_water)
2510 moxafunc(ofsAddr, FC_SendXon, 0);
2514 static int moxaloadbios(int cardno, unsigned char __user *tmp, int len)
2516 void __iomem *baseAddr;
2519 if(len < 0 || len > sizeof(moxaBuff))
2521 if(copy_from_user(moxaBuff, tmp, len))
2523 baseAddr = moxa_boards[cardno].basemem;
2524 writeb(HW_reset, baseAddr + Control_reg); /* reset */
2526 for (i = 0; i < 4096; i++)
2527 writeb(0, baseAddr + i); /* clear fix page */
2528 for (i = 0; i < len; i++)
2529 writeb(moxaBuff[i], baseAddr + i); /* download BIOS */
2530 writeb(0, baseAddr + Control_reg); /* restart */
2534 static int moxafindcard(int cardno)
2536 void __iomem *baseAddr;
2539 baseAddr = moxa_boards[cardno].basemem;
2540 switch (moxa_boards[cardno].boardType) {
2541 case MOXA_BOARD_C218_ISA:
2542 case MOXA_BOARD_C218_PCI:
2543 if ((tmp = readw(baseAddr + C218_key)) != C218_KeyCode) {
2547 case MOXA_BOARD_CP204J:
2548 if ((tmp = readw(baseAddr + C218_key)) != CP204J_KeyCode) {
2553 if ((tmp = readw(baseAddr + C320_key)) != C320_KeyCode) {
2556 if ((tmp = readw(baseAddr + C320_status)) != STS_init) {
2563 static int moxaload320b(int cardno, unsigned char __user *tmp, int len)
2565 void __iomem *baseAddr;
2568 if(len < 0 || len > sizeof(moxaBuff))
2570 if(copy_from_user(moxaBuff, tmp, len))
2572 baseAddr = moxa_boards[cardno].basemem;
2573 writew(len - 7168 - 2, baseAddr + C320bapi_len);
2574 writeb(1, baseAddr + Control_reg); /* Select Page 1 */
2575 for (i = 0; i < 7168; i++)
2576 writeb(moxaBuff[i], baseAddr + DynPage_addr + i);
2577 writeb(2, baseAddr + Control_reg); /* Select Page 2 */
2578 for (i = 0; i < (len - 7168); i++)
2579 writeb(moxaBuff[i + 7168], baseAddr + DynPage_addr + i);
2583 static int moxaloadcode(int cardno, unsigned char __user *tmp, int len)
2585 void __iomem *baseAddr, *ofsAddr;
2586 int retval, port, i;
2588 if(len < 0 || len > sizeof(moxaBuff))
2590 if(copy_from_user(moxaBuff, tmp, len))
2592 baseAddr = moxa_boards[cardno].basemem;
2593 switch (moxa_boards[cardno].boardType) {
2594 case MOXA_BOARD_C218_ISA:
2595 case MOXA_BOARD_C218_PCI:
2596 case MOXA_BOARD_CP204J:
2597 retval = moxaloadc218(cardno, baseAddr, len);
2600 port = cardno * MAX_PORTS_PER_BOARD;
2601 for (i = 0; i < moxa_boards[cardno].numPorts; i++, port++) {
2602 struct moxa_port *p = &moxa_ports[port];
2607 p->tableAddr = baseAddr + Extern_table + Extern_size * i;
2608 ofsAddr = p->tableAddr;
2609 writew(C218rx_mask, ofsAddr + RX_mask);
2610 writew(C218tx_mask, ofsAddr + TX_mask);
2611 writew(C218rx_spage + i * C218buf_pageno, ofsAddr + Page_rxb);
2612 writew(readw(ofsAddr + Page_rxb) + C218rx_pageno, ofsAddr + EndPage_rxb);
2614 writew(C218tx_spage + i * C218buf_pageno, ofsAddr + Page_txb);
2615 writew(readw(ofsAddr + Page_txb) + C218tx_pageno, ofsAddr + EndPage_txb);
2620 retval = moxaloadc320(cardno, baseAddr, len,
2621 &moxa_boards[cardno].numPorts);
2624 port = cardno * MAX_PORTS_PER_BOARD;
2625 for (i = 0; i < moxa_boards[cardno].numPorts; i++, port++) {
2626 struct moxa_port *p = &moxa_ports[port];
2631 p->tableAddr = baseAddr + Extern_table + Extern_size * i;
2632 ofsAddr = p->tableAddr;
2633 if (moxa_boards[cardno].numPorts == 8) {
2634 writew(C320p8rx_mask, ofsAddr + RX_mask);
2635 writew(C320p8tx_mask, ofsAddr + TX_mask);
2636 writew(C320p8rx_spage + i * C320p8buf_pgno, ofsAddr + Page_rxb);
2637 writew(readw(ofsAddr + Page_rxb) + C320p8rx_pgno, ofsAddr + EndPage_rxb);
2638 writew(C320p8tx_spage + i * C320p8buf_pgno, ofsAddr + Page_txb);
2639 writew(readw(ofsAddr + Page_txb) + C320p8tx_pgno, ofsAddr + EndPage_txb);
2641 } else if (moxa_boards[cardno].numPorts == 16) {
2642 writew(C320p16rx_mask, ofsAddr + RX_mask);
2643 writew(C320p16tx_mask, ofsAddr + TX_mask);
2644 writew(C320p16rx_spage + i * C320p16buf_pgno, ofsAddr + Page_rxb);
2645 writew(readw(ofsAddr + Page_rxb) + C320p16rx_pgno, ofsAddr + EndPage_rxb);
2646 writew(C320p16tx_spage + i * C320p16buf_pgno, ofsAddr + Page_txb);
2647 writew(readw(ofsAddr + Page_txb) + C320p16tx_pgno, ofsAddr + EndPage_txb);
2649 } else if (moxa_boards[cardno].numPorts == 24) {
2650 writew(C320p24rx_mask, ofsAddr + RX_mask);
2651 writew(C320p24tx_mask, ofsAddr + TX_mask);
2652 writew(C320p24rx_spage + i * C320p24buf_pgno, ofsAddr + Page_rxb);
2653 writew(readw(ofsAddr + Page_rxb) + C320p24rx_pgno, ofsAddr + EndPage_rxb);
2654 writew(C320p24tx_spage + i * C320p24buf_pgno, ofsAddr + Page_txb);
2655 writew(readw(ofsAddr + Page_txb), ofsAddr + EndPage_txb);
2656 } else if (moxa_boards[cardno].numPorts == 32) {
2657 writew(C320p32rx_mask, ofsAddr + RX_mask);
2658 writew(C320p32tx_mask, ofsAddr + TX_mask);
2659 writew(C320p32tx_ofs, ofsAddr + Ofs_txb);
2660 writew(C320p32rx_spage + i * C320p32buf_pgno, ofsAddr + Page_rxb);
2661 writew(readb(ofsAddr + Page_rxb), ofsAddr + EndPage_rxb);
2662 writew(C320p32tx_spage + i * C320p32buf_pgno, ofsAddr + Page_txb);
2663 writew(readw(ofsAddr + Page_txb), ofsAddr + EndPage_txb);
2668 moxa_boards[cardno].loadstat = 1;
2672 static int moxaloadc218(int cardno, void __iomem *baseAddr, int len)
2675 int i, j, len1, len2;
2676 ushort usum, *ptr, keycode;
2678 if (moxa_boards[cardno].boardType == MOXA_BOARD_CP204J)
2679 keycode = CP204J_KeyCode;
2681 keycode = C218_KeyCode;
2684 ptr = (ushort *) moxaBuff;
2685 for (i = 0; i < len1; i++)
2686 usum += le16_to_cpu(*(ptr + i));
2692 len2 = (len1 > 2048) ? 2048 : len1;
2694 for (i = 0; i < len2 << 1; i++)
2695 writeb(moxaBuff[i + j], baseAddr + C218_LoadBuf + i);
2698 writew(len2, baseAddr + C218DLoad_len);
2699 writew(0, baseAddr + C218_key);
2700 for (i = 0; i < 100; i++) {
2701 if (readw(baseAddr + C218_key) == keycode)
2705 if (readw(baseAddr + C218_key) != keycode) {
2709 writew(0, baseAddr + C218DLoad_len);
2710 writew(usum, baseAddr + C218check_sum);
2711 writew(0, baseAddr + C218_key);
2712 for (i = 0; i < 100; i++) {
2713 if (readw(baseAddr + C218_key) == keycode)
2718 } while ((readb(baseAddr + C218chksum_ok) != 1) && (retry < 3));
2719 if (readb(baseAddr + C218chksum_ok) != 1) {
2722 writew(0, baseAddr + C218_key);
2723 for (i = 0; i < 100; i++) {
2724 if (readw(baseAddr + Magic_no) == Magic_code)
2728 if (readw(baseAddr + Magic_no) != Magic_code) {
2731 writew(1, baseAddr + Disable_IRQ);
2732 writew(0, baseAddr + Magic_no);
2733 for (i = 0; i < 100; i++) {
2734 if (readw(baseAddr + Magic_no) == Magic_code)
2738 if (readw(baseAddr + Magic_no) != Magic_code) {
2742 moxa_boards[cardno].intNdx = baseAddr + IRQindex;
2743 moxa_boards[cardno].intPend = baseAddr + IRQpending;
2744 moxa_boards[cardno].intTable = baseAddr + IRQtable;
2748 static int moxaloadc320(int cardno, void __iomem *baseAddr, int len, int *numPorts)
2751 int i, j, wlen, len2, retry;
2756 uptr = (ushort *) moxaBuff;
2757 for (i = 0; i < wlen; i++)
2758 usum += le16_to_cpu(uptr[i]);
2769 for (i = 0; i < len2; i++)
2770 writeb(moxaBuff[j + i], baseAddr + C320_LoadBuf + i);
2773 writew(len2, baseAddr + C320DLoad_len);
2774 writew(0, baseAddr + C320_key);
2775 for (i = 0; i < 10; i++) {
2776 if (readw(baseAddr + C320_key) == C320_KeyCode)
2780 if (readw(baseAddr + C320_key) != C320_KeyCode)
2783 writew(0, baseAddr + C320DLoad_len);
2784 writew(usum, baseAddr + C320check_sum);
2785 writew(0, baseAddr + C320_key);
2786 for (i = 0; i < 10; i++) {
2787 if (readw(baseAddr + C320_key) == C320_KeyCode)
2792 } while ((readb(baseAddr + C320chksum_ok) != 1) && (retry < 3));
2793 if (readb(baseAddr + C320chksum_ok) != 1)
2795 writew(0, baseAddr + C320_key);
2796 for (i = 0; i < 600; i++) {
2797 if (readw(baseAddr + Magic_no) == Magic_code)
2801 if (readw(baseAddr + Magic_no) != Magic_code)
2804 if (moxa_boards[cardno].busType == MOXA_BUS_TYPE_PCI) { /* ASIC board */
2805 writew(0x3800, baseAddr + TMS320_PORT1);
2806 writew(0x3900, baseAddr + TMS320_PORT2);
2807 writew(28499, baseAddr + TMS320_CLOCK);
2809 writew(0x3200, baseAddr + TMS320_PORT1);
2810 writew(0x3400, baseAddr + TMS320_PORT2);
2811 writew(19999, baseAddr + TMS320_CLOCK);
2813 writew(1, baseAddr + Disable_IRQ);
2814 writew(0, baseAddr + Magic_no);
2815 for (i = 0; i < 500; i++) {
2816 if (readw(baseAddr + Magic_no) == Magic_code)
2820 if (readw(baseAddr + Magic_no) != Magic_code)
2823 j = readw(baseAddr + Module_cnt);
2827 writew(j, baseAddr + Module_no);
2828 writew(0, baseAddr + Magic_no);
2829 for (i = 0; i < 600; i++) {
2830 if (readw(baseAddr + Magic_no) == Magic_code)
2834 if (readw(baseAddr + Magic_no) != Magic_code)
2837 moxa_boards[cardno].intNdx = baseAddr + IRQindex;
2838 moxa_boards[cardno].intPend = baseAddr + IRQpending;
2839 moxa_boards[cardno].intTable = baseAddr + IRQtable;
2843 static void MoxaSetFifo(int port, int enable)
2845 void __iomem *ofsAddr = moxa_ports[port].tableAddr;
2848 moxafunc(ofsAddr, FC_SetRxFIFOTrig, 0);
2849 moxafunc(ofsAddr, FC_SetTxFIFOCnt, 1);
2851 moxafunc(ofsAddr, FC_SetRxFIFOTrig, 3);
2852 moxafunc(ofsAddr, FC_SetTxFIFOCnt, 16);