Merge master.kernel.org:/pub/scm/linux/kernel/git/davej/cpufreq
[pandora-kernel.git] / drivers / char / moxa.c
1 /*****************************************************************************/
2 /*
3  *           moxa.c  -- MOXA Intellio family multiport serial driver.
4  *
5  *      Copyright (C) 1999-2000  Moxa Technologies (support@moxa.com.tw).
6  *
7  *      This code is loosely based on the Linux serial driver, written by
8  *      Linus Torvalds, Theodore T'so and others.
9  *
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.
14  */
15
16 /*
17  *    MOXA Intellio Series Driver
18  *      for             : LINUX
19  *      date            : 1999/1/7
20  *      version         : 5.1
21  */
22
23 #include <linux/module.h>
24 #include <linux/types.h>
25 #include <linux/mm.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>
44
45 #include <asm/system.h>
46 #include <asm/io.h>
47 #include <asm/uaccess.h>
48
49 #define MOXA_VERSION            "5.1k"
50
51 #define MOXAMAJOR               172
52 #define MOXACUMAJOR             173
53
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)
57
58 /*
59  *    Define the Moxa PCI vendor and device IDs.
60  */
61 #define MOXA_BUS_TYPE_ISA       0
62 #define MOXA_BUS_TYPE_PCI       1
63
64 enum {
65         MOXA_BOARD_C218_PCI = 1,
66         MOXA_BOARD_C218_ISA,
67         MOXA_BOARD_C320_PCI,
68         MOXA_BOARD_C320_ISA,
69         MOXA_BOARD_CP204J,
70 };
71
72 static char *moxa_brdname[] =
73 {
74         "C218 Turbo PCI series",
75         "C218 Turbo ISA series",
76         "C320 Turbo PCI series",
77         "C320 Turbo ISA series",
78         "CP-204J series",
79 };
80
81 #ifdef CONFIG_PCI
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 },
89         { 0 }
90 };
91 MODULE_DEVICE_TABLE(pci, moxa_pcibrds);
92 #endif /* CONFIG_PCI */
93
94 struct moxa_isa_board_conf {
95         int boardType;
96         int numPorts;
97         unsigned long baseAddr;
98 };
99
100 static struct moxa_isa_board_conf moxa_isa_boards[] =
101 {
102 /*       {MOXA_BOARD_C218_ISA,8,0xDC000}, */
103 };
104
105 static struct moxa_board_conf {
106         int boardType;
107         int numPorts;
108         unsigned long baseAddr;
109         int busType;
110
111         int loadstat;
112
113         void __iomem *basemem;
114         void __iomem *intNdx;
115         void __iomem *intPend;
116         void __iomem *intTable;
117 } moxa_boards[MAX_BOARDS];
118
119 struct mxser_mstatus {
120         tcflag_t cflag;
121         int cts;
122         int dsr;
123         int ri;
124         int dcd;
125 };
126
127 struct moxaq_str {
128         int inq;
129         int outq;
130 };
131
132 struct moxa_port {
133         int type;
134         int port;
135         int close_delay;
136         unsigned short closing_wait;
137         int count;
138         int blocked_open;
139         long event; /* long req'd for set_bit --RR */
140         int asyncflags;
141         unsigned long statusflags;
142         struct tty_struct *tty;
143         int cflag;
144         wait_queue_head_t open_wait;
145         wait_queue_head_t close_wait;
146
147         struct timer_list emptyTimer;
148
149         char chkPort;
150         char lineCtrl;
151         void __iomem *tableAddr;
152         long curBaud;
153         char DCDState;
154         char lowChkFlag;
155
156         ushort breakCnt;
157 };
158
159 /* statusflags */
160 #define TXSTOPPED       0x1
161 #define LOWWAIT         0x2
162 #define EMPTYWAIT       0x4
163 #define THROTTLE        0x8
164
165 #define SERIAL_DO_RESTART
166
167 #define WAKEUP_CHARS            256
168
169 static int verbose = 0;
170 static int ttymajor = MOXAMAJOR;
171 /* Variables for insmod */
172 #ifdef MODULE
173 static int baseaddr[4];
174 static int type[4];
175 static int numports[4];
176 #endif
177
178 MODULE_AUTHOR("William Chen");
179 MODULE_DESCRIPTION("MOXA Intellio Family Multiport Board Device Driver");
180 MODULE_LICENSE("GPL");
181 #ifdef MODULE
182 module_param_array(type, int, NULL, 0);
183 module_param_array(baseaddr, int, NULL, 0);
184 module_param_array(numports, int, NULL, 0);
185 #endif
186 module_param(ttymajor, int, 0);
187 module_param(verbose, bool, 0644);
188
189 /*
190  * static functions:
191  */
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 *,
213                             struct moxa_port *);
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 *);
218 /*
219  * moxa board interface functions:
220  */
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);
250
251 static const struct tty_operations moxa_ops = {
252         .open = moxa_open,
253         .close = moxa_close,
254         .write = moxa_write,
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,
260         .ioctl = moxa_ioctl,
261         .throttle = moxa_throttle,
262         .unthrottle = moxa_unthrottle,
263         .set_termios = moxa_set_termios,
264         .stop = moxa_stop,
265         .start = moxa_start,
266         .hangup = moxa_hangup,
267         .tiocmget = moxa_tiocmget,
268         .tiocmset = moxa_tiocmset,
269 };
270
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);
275
276 #ifdef CONFIG_PCI
277 static int __devinit moxa_pci_probe(struct pci_dev *pdev,
278                 const struct pci_device_id *ent)
279 {
280         struct moxa_board_conf *board;
281         unsigned int i;
282         int board_type = ent->driver_data;
283         int retval;
284
285         retval = pci_enable_device(pdev);
286         if (retval)
287                 goto err;
288
289         for (i = 0; i < MAX_BOARDS; i++)
290                 if (moxa_boards[i].basemem == NULL)
291                         break;
292
293         retval = -ENODEV;
294         if (i >= MAX_BOARDS) {
295                 if (verbose)
296                         printk("More than %d MOXA Intellio family boards "
297                                 "found. Board is ignored.\n", MAX_BOARDS);
298                 goto err;
299         }
300
301         board = &moxa_boards[i];
302         board->basemem = pci_iomap(pdev, 2, 0x4000);
303         if (board->basemem == NULL)
304                 goto err;
305
306         board->boardType = board_type;
307         switch (board_type) {
308         case MOXA_BOARD_C218_ISA:
309         case MOXA_BOARD_C218_PCI:
310                 board->numPorts = 8;
311                 break;
312
313         case MOXA_BOARD_CP204J:
314                 board->numPorts = 4;
315                 break;
316         default:
317                 board->numPorts = 0;
318                 break;
319         }
320         board->busType = MOXA_BUS_TYPE_PCI;
321
322         pci_set_drvdata(pdev, board);
323
324         return (0);
325 err:
326         return retval;
327 }
328
329 static void __devexit moxa_pci_remove(struct pci_dev *pdev)
330 {
331         struct moxa_board_conf *brd = pci_get_drvdata(pdev);
332
333         pci_iounmap(pdev, brd->basemem);
334         brd->basemem = NULL;
335 }
336
337 static struct pci_driver moxa_pci_driver = {
338         .name = "moxa",
339         .id_table = moxa_pcibrds,
340         .probe = moxa_pci_probe,
341         .remove = __devexit_p(moxa_pci_remove)
342 };
343 #endif /* CONFIG_PCI */
344
345 static int __init moxa_init(void)
346 {
347         int i, numBoards, retval = 0;
348         struct moxa_port *ch;
349
350         printk(KERN_INFO "MOXA Intellio family driver version %s\n", MOXA_VERSION);
351         moxaDriver = alloc_tty_driver(MAX_PORTS + 1);
352         if (!moxaDriver)
353                 return -ENOMEM;
354
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);
367
368         for (i = 0, ch = moxa_ports; i < MAX_PORTS; i++, ch++) {
369                 ch->type = PORT_16550A;
370                 ch->port = i;
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);
376
377                 setup_timer(&ch->emptyTimer, check_xmit_empty,
378                                 (unsigned long)ch);
379         }
380
381         printk("Tty devices major number = %d\n", ttymajor);
382
383         if (tty_register_driver(moxaDriver)) {
384                 printk(KERN_ERR "Couldn't install MOXA Smartio family driver !\n");
385                 put_tty_driver(moxaDriver);
386                 return -1;
387         }
388
389         mod_timer(&moxaTimer, jiffies + HZ / 50);
390
391         /* Find the boards defined in source code */
392         numBoards = 0;
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;
399                         else
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;
403                         if (verbose)
404                                 printk("Board %2d: %s board(baseAddr=%lx)\n",
405                                        numBoards + 1,
406                                        moxa_brdname[moxa_boards[numBoards].boardType - 1],
407                                        moxa_boards[numBoards].baseAddr);
408                         numBoards++;
409                 }
410         }
411         /* Find the boards defined form module args. */
412 #ifdef MODULE
413         for (i = 0; i < MAX_BOARDS; i++) {
414                 if ((type[i] == MOXA_BOARD_C218_ISA) ||
415                     (type[i] == MOXA_BOARD_C320_ISA)) {
416                         if (verbose)
417                                 printk("Board %2d: %s board(baseAddr=%lx)\n",
418                                        numBoards + 1,
419                                        moxa_brdname[type[i] - 1],
420                                        (unsigned long) baseaddr[i]);
421                         if (numBoards >= MAX_BOARDS) {
422                                 if (verbose)
423                                         printk("More than %d MOXA Intellio family boards found. Board is ignored.", MAX_BOARDS);
424                                 continue;
425                         }
426                         moxa_boards[numBoards].boardType = type[i];
427                         if (moxa_isa_boards[i].boardType == MOXA_BOARD_C218_ISA)
428                                 moxa_boards[numBoards].numPorts = 8;
429                         else
430                                 moxa_boards[numBoards].numPorts = numports[i];
431                         moxa_boards[numBoards].busType = MOXA_BUS_TYPE_ISA;
432                         moxa_boards[numBoards].baseAddr = baseaddr[i];
433                         numBoards++;
434                 }
435         }
436 #endif
437
438 #ifdef CONFIG_PCI
439         retval = pci_register_driver(&moxa_pci_driver);
440         if (retval) {
441                 printk(KERN_ERR "Can't register moxa pci driver!\n");
442                 if (numBoards)
443                         retval = 0;
444         }
445 #endif
446
447         for (i = 0; i < numBoards; i++) {
448                 moxa_boards[i].basemem = ioremap(moxa_boards[i].baseAddr,
449                                 0x4000);
450         }
451
452         return retval;
453 }
454
455 static void __exit moxa_exit(void)
456 {
457         int i;
458
459         if (verbose)
460                 printk("Unloading module moxa ...\n");
461
462         del_timer_sync(&moxaTimer);
463
464         for (i = 0; i < MAX_PORTS; i++)
465                 del_timer_sync(&moxa_ports[i].emptyTimer);
466
467         if (tty_unregister_driver(moxaDriver))
468                 printk("Couldn't unregister MOXA Intellio family serial driver\n");
469         put_tty_driver(moxaDriver);
470
471 #ifdef CONFIG_PCI
472         pci_unregister_driver(&moxa_pci_driver);
473 #endif
474
475         for (i = 0; i < MAX_BOARDS; i++)
476                 if (moxa_boards[i].basemem)
477                         iounmap(moxa_boards[i].basemem);
478
479         if (verbose)
480                 printk("Done\n");
481 }
482
483 module_init(moxa_init);
484 module_exit(moxa_exit);
485
486 static int moxa_open(struct tty_struct *tty, struct file *filp)
487 {
488         struct moxa_port *ch;
489         int port;
490         int retval;
491
492         port = tty->index;
493         if (port == MAX_PORTS) {
494                 return (0);
495         }
496         if (!MoxaPortIsValid(port)) {
497                 tty->driver_data = NULL;
498                 return (-ENODEV);
499         }
500
501         ch = &moxa_ports[port];
502         ch->count++;
503         tty->driver_data = ch;
504         ch->tty = tty;
505         if (!(ch->asyncflags & ASYNC_INITIALIZED)) {
506                 ch->statusflags = 0;
507                 set_tty_param(tty);
508                 MoxaPortLineCtrl(ch->port, 1, 1);
509                 MoxaPortEnable(ch->port);
510                 ch->asyncflags |= ASYNC_INITIALIZED;
511         }
512         retval = block_till_ready(tty, filp, ch);
513
514         moxa_unthrottle(tty);
515
516         if (ch->type == PORT_16550A) {
517                 MoxaSetFifo(ch->port, 1);
518         } else {
519                 MoxaSetFifo(ch->port, 0);
520         }
521
522         return (retval);
523 }
524
525 static void moxa_close(struct tty_struct *tty, struct file *filp)
526 {
527         struct moxa_port *ch;
528         int port;
529
530         port = tty->index;
531         if (port == MAX_PORTS) {
532                 return;
533         }
534         if (!MoxaPortIsValid(port)) {
535 #ifdef SERIAL_DEBUG_CLOSE
536                 printk("Invalid portno in moxa_close\n");
537 #endif
538                 tty->driver_data = NULL;
539                 return;
540         }
541         if (tty->driver_data == NULL) {
542                 return;
543         }
544         if (tty_hung_up_p(filp)) {
545                 return;
546         }
547         ch = (struct moxa_port *) tty->driver_data;
548
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);
552                 ch->count = 1;
553         }
554         if (--ch->count < 0) {
555                 printk("moxa_close: bad serial port count, device=%s\n",
556                        tty->name);
557                 ch->count = 0;
558         }
559         if (ch->count) {
560                 return;
561         }
562         ch->asyncflags |= ASYNC_CLOSING;
563
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);
569         }
570         shut_down(ch);
571         MoxaPortFlushData(port, 2);
572
573         if (tty->driver->flush_buffer)
574                 tty->driver->flush_buffer(tty);
575         tty_ldisc_flush(tty);
576                         
577         tty->closing = 0;
578         ch->event = 0;
579         ch->tty = NULL;
580         if (ch->blocked_open) {
581                 if (ch->close_delay) {
582                         msleep_interruptible(jiffies_to_msecs(ch->close_delay));
583                 }
584                 wake_up_interruptible(&ch->open_wait);
585         }
586         ch->asyncflags &= ~(ASYNC_NORMAL_ACTIVE | ASYNC_CLOSING);
587         wake_up_interruptible(&ch->close_wait);
588 }
589
590 static int moxa_write(struct tty_struct *tty,
591                       const unsigned char *buf, int count)
592 {
593         struct moxa_port *ch;
594         int len, port;
595         unsigned long flags;
596
597         ch = (struct moxa_port *) tty->driver_data;
598         if (ch == NULL)
599                 return (0);
600         port = ch->port;
601
602         spin_lock_irqsave(&moxa_lock, flags);
603         len = MoxaPortWriteData(port, (unsigned char *) buf, count);
604         spin_unlock_irqrestore(&moxa_lock, flags);
605
606         /*********************************************
607         if ( !(ch->statusflags & LOWWAIT) &&
608              ((len != count) || (MoxaPortTxFree(port) <= 100)) )
609         ************************************************/
610         ch->statusflags |= LOWWAIT;
611         return (len);
612 }
613
614 static int moxa_write_room(struct tty_struct *tty)
615 {
616         struct moxa_port *ch;
617
618         if (tty->stopped)
619                 return (0);
620         ch = (struct moxa_port *) tty->driver_data;
621         if (ch == NULL)
622                 return (0);
623         return (MoxaPortTxFree(ch->port));
624 }
625
626 static void moxa_flush_buffer(struct tty_struct *tty)
627 {
628         struct moxa_port *ch = (struct moxa_port *) tty->driver_data;
629
630         if (ch == NULL)
631                 return;
632         MoxaPortFlushData(ch->port, 1);
633         tty_wakeup(tty);
634 }
635
636 static int moxa_chars_in_buffer(struct tty_struct *tty)
637 {
638         int chars;
639         struct moxa_port *ch = (struct moxa_port *) tty->driver_data;
640
641         /*
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
646          */
647         if (ch == NULL)
648                 return (0);
649         chars = MoxaPortTxQueue(ch->port);
650         if (chars) {
651                 /*
652                  * Make it possible to wakeup anything waiting for output
653                  * in tty_ioctl.c, etc.
654                  */
655                 if (!(ch->statusflags & EMPTYWAIT))
656                         setup_empty_event(tty);
657         }
658         return (chars);
659 }
660
661 static void moxa_flush_chars(struct tty_struct *tty)
662 {
663         /*
664          * Don't think I need this, because this is called to empty the TX
665          * buffer for the 16450, 16550, etc.
666          */
667 }
668
669 static void moxa_put_char(struct tty_struct *tty, unsigned char c)
670 {
671         struct moxa_port *ch;
672         int port;
673         unsigned long flags;
674
675         ch = (struct moxa_port *) tty->driver_data;
676         if (ch == NULL)
677                 return;
678         port = ch->port;
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;
686 }
687
688 static int moxa_tiocmget(struct tty_struct *tty, struct file *file)
689 {
690         struct moxa_port *ch = (struct moxa_port *) tty->driver_data;
691         int port;
692         int flag = 0, dtr, rts;
693
694         port = tty->index;
695         if ((port != MAX_PORTS) && (!ch))
696                 return (-EINVAL);
697
698         MoxaPortGetLineOut(ch->port, &dtr, &rts);
699         if (dtr)
700                 flag |= TIOCM_DTR;
701         if (rts)
702                 flag |= TIOCM_RTS;
703         dtr = MoxaPortLineStatus(ch->port);
704         if (dtr & 1)
705                 flag |= TIOCM_CTS;
706         if (dtr & 2)
707                 flag |= TIOCM_DSR;
708         if (dtr & 4)
709                 flag |= TIOCM_CD;
710         return flag;
711 }
712
713 static int moxa_tiocmset(struct tty_struct *tty, struct file *file,
714                          unsigned int set, unsigned int clear)
715 {
716         struct moxa_port *ch = (struct moxa_port *) tty->driver_data;
717         int port;
718         int dtr, rts;
719
720         port = tty->index;
721         if ((port != MAX_PORTS) && (!ch))
722                 return (-EINVAL);
723
724         MoxaPortGetLineOut(ch->port, &dtr, &rts);
725         if (set & TIOCM_RTS)
726                 rts = 1;
727         if (set & TIOCM_DTR)
728                 dtr = 1;
729         if (clear & TIOCM_RTS)
730                 rts = 0;
731         if (clear & TIOCM_DTR)
732                 dtr = 0;
733         MoxaPortLineCtrl(ch->port, dtr, rts);
734         return 0;
735 }
736
737 static int moxa_ioctl(struct tty_struct *tty, struct file *file,
738                       unsigned int cmd, unsigned long arg)
739 {
740         struct moxa_port *ch = (struct moxa_port *) tty->driver_data;
741         register int port;
742         void __user *argp = (void __user *)arg;
743         int retval;
744
745         port = tty->index;
746         if ((port != MAX_PORTS) && (!ch))
747                 return (-EINVAL);
748
749         switch (cmd) {
750         case TCSBRK:            /* SVID version: non-zero arg --> no break */
751                 retval = tty_check_change(tty);
752                 if (retval)
753                         return (retval);
754                 setup_empty_event(tty);
755                 tty_wait_until_sent(tty, 0);
756                 if (!arg)
757                         MoxaPortSendBreak(ch->port, 0);
758                 return (0);
759         case TCSBRKP:           /* support for POSIX tcsendbreak() */
760                 retval = tty_check_change(tty);
761                 if (retval)
762                         return (retval);
763                 setup_empty_event(tty);
764                 tty_wait_until_sent(tty, 0);
765                 MoxaPortSendBreak(ch->port, arg);
766                 return (0);
767         case TIOCGSOFTCAR:
768                 return put_user(C_CLOCAL(tty) ? 1 : 0, (unsigned long __user *) argp);
769         case TIOCSSOFTCAR:
770                 if(get_user(retval, (unsigned long __user *) argp))
771                         return -EFAULT;
772                 arg = retval;
773                 tty->termios->c_cflag = ((tty->termios->c_cflag & ~CLOCAL) |
774                                          (arg ? CLOCAL : 0));
775                 if (C_CLOCAL(tty))
776                         ch->asyncflags &= ~ASYNC_CHECK_CD;
777                 else
778                         ch->asyncflags |= ASYNC_CHECK_CD;
779                 return (0);
780         case TIOCGSERIAL:
781                 return moxa_get_serial_info(ch, argp);
782
783         case TIOCSSERIAL:
784                 return moxa_set_serial_info(ch, argp);
785         default:
786                 retval = MoxaDriverIoctl(cmd, arg, port);
787         }
788         return (retval);
789 }
790
791 static void moxa_throttle(struct tty_struct *tty)
792 {
793         struct moxa_port *ch = (struct moxa_port *) tty->driver_data;
794
795         ch->statusflags |= THROTTLE;
796 }
797
798 static void moxa_unthrottle(struct tty_struct *tty)
799 {
800         struct moxa_port *ch = (struct moxa_port *) tty->driver_data;
801
802         ch->statusflags &= ~THROTTLE;
803 }
804
805 static void moxa_set_termios(struct tty_struct *tty,
806                              struct ktermios *old_termios)
807 {
808         struct moxa_port *ch = (struct moxa_port *) tty->driver_data;
809
810         if (ch == NULL)
811                 return;
812         set_tty_param(tty);
813         if (!(old_termios->c_cflag & CLOCAL) &&
814             (tty->termios->c_cflag & CLOCAL))
815                 wake_up_interruptible(&ch->open_wait);
816 }
817
818 static void moxa_stop(struct tty_struct *tty)
819 {
820         struct moxa_port *ch = (struct moxa_port *) tty->driver_data;
821
822         if (ch == NULL)
823                 return;
824         MoxaPortTxDisable(ch->port);
825         ch->statusflags |= TXSTOPPED;
826 }
827
828
829 static void moxa_start(struct tty_struct *tty)
830 {
831         struct moxa_port *ch = (struct moxa_port *) tty->driver_data;
832
833         if (ch == NULL)
834                 return;
835
836         if (!(ch->statusflags & TXSTOPPED))
837                 return;
838
839         MoxaPortTxEnable(ch->port);
840         ch->statusflags &= ~TXSTOPPED;
841 }
842
843 static void moxa_hangup(struct tty_struct *tty)
844 {
845         struct moxa_port *ch = (struct moxa_port *) tty->driver_data;
846
847         moxa_flush_buffer(tty);
848         shut_down(ch);
849         ch->event = 0;
850         ch->count = 0;
851         ch->asyncflags &= ~ASYNC_NORMAL_ACTIVE;
852         ch->tty = NULL;
853         wake_up_interruptible(&ch->open_wait);
854 }
855
856 static void moxa_poll(unsigned long ignored)
857 {
858         register int card;
859         struct moxa_port *ch;
860         struct tty_struct *tp;
861         int i, ports;
862
863         del_timer(&moxaTimer);
864
865         if (MoxaDriverPoll() < 0) {
866                 mod_timer(&moxaTimer, jiffies + HZ / 50);
867                 return;
868         }
869         for (card = 0; card < MAX_BOARDS; card++) {
870                 if ((ports = MoxaPortsOfCard(card)) <= 0)
871                         continue;
872                 ch = &moxa_ports[card * MAX_PORTS_PER_BOARD];
873                 for (i = 0; i < ports; i++, ch++) {
874                         if ((ch->asyncflags & ASYNC_INITIALIZED) == 0)
875                                 continue;
876                         if (!(ch->statusflags & THROTTLE) &&
877                             (MoxaPortRxQueue(ch->port) > 0))
878                                 receive_data(ch);
879                         if ((tp = ch->tty) == 0)
880                                 continue;
881                         if (ch->statusflags & LOWWAIT) {
882                                 if (MoxaPortTxQueue(ch->port) <= WAKEUP_CHARS) {
883                                         if (!tp->stopped) {
884                                                 ch->statusflags &= ~LOWWAIT;
885                                                 tty_wakeup(tp);
886                                         }
887                                 }
888                         }
889                         if (!I_IGNBRK(tp) && (MoxaPortResetBrkCnt(ch->port) > 0)) {
890                                 tty_insert_flip_char(tp, 0, TTY_BREAK);
891                                 tty_schedule_flip(tp);
892                         }
893                         if (MoxaPortDCDChange(ch->port)) {
894                                 if (ch->asyncflags & ASYNC_CHECK_CD) {
895                                         if (MoxaPortDCDON(ch->port))
896                                                 wake_up_interruptible(&ch->open_wait);
897                                         else {
898                                                 tty_hangup(tp);
899                                                 wake_up_interruptible(&ch->open_wait);
900                                                 ch->asyncflags &= ~ASYNC_NORMAL_ACTIVE;
901                                         }
902                                 }
903                         }
904                 }
905         }
906
907         mod_timer(&moxaTimer, jiffies + HZ / 50);
908 }
909
910 /******************************************************************************/
911
912 static void set_tty_param(struct tty_struct *tty)
913 {
914         register struct ktermios *ts;
915         struct moxa_port *ch;
916         int rts, cts, txflow, rxflow, xany;
917
918         ch = (struct moxa_port *) tty->driver_data;
919         ts = tty->termios;
920         if (ts->c_cflag & CLOCAL)
921                 ch->asyncflags &= ~ASYNC_CHECK_CD;
922         else
923                 ch->asyncflags |= ASYNC_CHECK_CD;
924         rts = cts = txflow = rxflow = xany = 0;
925         if (ts->c_cflag & CRTSCTS)
926                 rts = cts = 1;
927         if (ts->c_iflag & IXON)
928                 txflow = 1;
929         if (ts->c_iflag & IXOFF)
930                 rxflow = 1;
931         if (ts->c_iflag & IXANY)
932                 xany = 1;
933         MoxaPortFlowCtrl(ch->port, rts, cts, txflow, rxflow, xany);
934         MoxaPortSetTermio(ch->port, ts, tty_get_baud_rate(tty));
935 }
936
937 static int block_till_ready(struct tty_struct *tty, struct file *filp,
938                             struct moxa_port *ch)
939 {
940         DECLARE_WAITQUEUE(wait,current);
941         unsigned long flags;
942         int retval;
943         int do_clocal = C_CLOCAL(tty);
944
945         /*
946          * If the device is in the middle of being closed, then block
947          * until it's done, and then try again.
948          */
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)
954                         return (-EAGAIN);
955                 else
956                         return (-ERESTARTSYS);
957 #else
958                 return (-EAGAIN);
959 #endif
960         }
961         /*
962          * If non-blocking mode is set, then make the check up front
963          * and then exit.
964          */
965         if (filp->f_flags & O_NONBLOCK) {
966                 ch->asyncflags |= ASYNC_NORMAL_ACTIVE;
967                 return (0);
968         }
969         /*
970          * Block waiting for the carrier detect and the line to become free
971          */
972         retval = 0;
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);
977 #endif
978         spin_lock_irqsave(&moxa_lock, flags);
979         if (!tty_hung_up_p(filp))
980                 ch->count--;
981         ch->blocked_open++;
982         spin_unlock_irqrestore(&moxa_lock, flags);
983
984         while (1) {
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)
990                                 retval = -EAGAIN;
991                         else
992                                 retval = -ERESTARTSYS;
993 #else
994                         retval = -EAGAIN;
995 #endif
996                         break;
997                 }
998                 if (!(ch->asyncflags & ASYNC_CLOSING) && (do_clocal ||
999                                                 MoxaPortDCDON(ch->port)))
1000                         break;
1001
1002                 if (signal_pending(current)) {
1003                         retval = -ERESTARTSYS;
1004                         break;
1005                 }
1006                 schedule();
1007         }
1008         set_current_state(TASK_RUNNING);
1009         remove_wait_queue(&ch->open_wait, &wait);
1010
1011         spin_lock_irqsave(&moxa_lock, flags);
1012         if (!tty_hung_up_p(filp))
1013                 ch->count++;
1014         ch->blocked_open--;
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);
1019 #endif
1020         if (retval)
1021                 return (retval);
1022         /* FIXME: review to see if we need to use set_bit on these */
1023         ch->asyncflags |= ASYNC_NORMAL_ACTIVE;
1024         return 0;
1025 }
1026
1027 static void setup_empty_event(struct tty_struct *tty)
1028 {
1029         struct moxa_port *ch = tty->driver_data;
1030         unsigned long flags;
1031
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);
1036 }
1037
1038 static void check_xmit_empty(unsigned long data)
1039 {
1040         struct moxa_port *ch;
1041
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);
1048                         return;
1049                 }
1050                 mod_timer(&moxa_ports[ch->port].emptyTimer, jiffies + HZ);
1051         } else
1052                 ch->statusflags &= ~EMPTYWAIT;
1053 }
1054
1055 static void shut_down(struct moxa_port *ch)
1056 {
1057         struct tty_struct *tp;
1058
1059         if (!(ch->asyncflags & ASYNC_INITIALIZED))
1060                 return;
1061
1062         tp = ch->tty;
1063
1064         MoxaPortDisable(ch->port);
1065
1066         /*
1067          * If we're a modem control device and HUPCL is on, drop RTS & DTR.
1068          */
1069         if (tp->termios->c_cflag & HUPCL)
1070                 MoxaPortLineCtrl(ch->port, 0, 0);
1071
1072         ch->asyncflags &= ~ASYNC_INITIALIZED;
1073 }
1074
1075 static void receive_data(struct moxa_port *ch)
1076 {
1077         struct tty_struct *tp;
1078         struct ktermios *ts;
1079         unsigned long flags;
1080
1081         ts = NULL;
1082         tp = ch->tty;
1083         if (tp)
1084                 ts = tp->termios;
1085         /**************************************************
1086         if ( !tp || !ts || !(ts->c_cflag & CREAD) ) {
1087         *****************************************************/
1088         if (!tp || !ts) {
1089                 MoxaPortFlushData(ch->port, 0);
1090                 return;
1091         }
1092         spin_lock_irqsave(&moxa_lock, flags);
1093         MoxaPortReadData(ch->port, tp);
1094         spin_unlock_irqrestore(&moxa_lock, flags);
1095         tty_schedule_flip(tp);
1096 }
1097
1098 #define Magic_code      0x404
1099
1100 /*
1101  *    System Configuration
1102  */
1103 /*
1104  *    for C218 BIOS initialization
1105  */
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    */
1117
1118 #define C218_LoadBuf    0x0F00
1119 #define C218_KeyCode    0x218
1120 #define CP204J_KeyCode  0x204
1121
1122 /*
1123  *    for C320 BIOS initialization
1124  */
1125 #define C320_ConfBase   0x800
1126 #define C320_LoadBuf    0x0f00
1127 #define STS_init        0x05    /* for C320_status        */
1128
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           */
1137
1138 #define C320_KeyCode    0x320
1139
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
1145
1146 /*
1147  *    Function Codes
1148  */
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
1195
1196 #define RxFIFOTrig1     0
1197 #define RxFIFOTrig4     1
1198 #define RxFIFOTrig8     2
1199 #define RxFIFOTrig14    3
1200
1201 /*
1202  *    Dual-Ported RAM
1203  */
1204 #define DRAM_global     0
1205 #define INT_data        (DRAM_global + 0)
1206 #define Config_base     (DRAM_global + 0x108)
1207
1208 #define IRQindex        (INT_data + 0)
1209 #define IRQpending      (INT_data + 4)
1210 #define IRQtable        (INT_data + 8)
1211
1212 /*
1213  *    Interrupt Status
1214  */
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
1220                                    for transmitter                */
1221 #define IntrIntr        0x20    /* received INTR code             */
1222 #define IntrQuit        0x40    /* received QUIT code             */
1223 #define IntrEOF         0x80    /* received EOF code              */
1224
1225 #define IntrRxTrigger   0x100   /* rx data count reach tigger value */
1226 #define IntrTxTrigger   0x200   /* tx data count below trigger value */
1227
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)
1238
1239 /*
1240  *    DATA BUFFER in DRAM
1241  */
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
1271
1272 #define rRXwptr         0x34
1273 #define Low_water       0x36
1274
1275 #define FuncCode        0x40
1276 #define FuncArg         0x42
1277 #define FuncArg1        0x44
1278
1279 #define C218rx_size     0x2000  /* 8K bytes */
1280 #define C218tx_size     0x8000  /* 32K bytes */
1281
1282 #define C218rx_mask     (C218rx_size - 1)
1283 #define C218tx_mask     (C218tx_size - 1)
1284
1285 #define C320p8rx_size   0x2000
1286 #define C320p8tx_size   0x8000
1287 #define C320p8rx_mask   (C320p8rx_size - 1)
1288 #define C320p8tx_mask   (C320p8tx_size - 1)
1289
1290 #define C320p16rx_size  0x2000
1291 #define C320p16tx_size  0x4000
1292 #define C320p16rx_mask  (C320p16rx_size - 1)
1293 #define C320p16tx_mask  (C320p16tx_size - 1)
1294
1295 #define C320p24rx_size  0x2000
1296 #define C320p24tx_size  0x2000
1297 #define C320p24rx_mask  (C320p24rx_size - 1)
1298 #define C320p24tx_mask  (C320p24tx_size - 1)
1299
1300 #define C320p32rx_size  0x1000
1301 #define C320p32tx_size  0x1000
1302 #define C320p32rx_mask  (C320p32rx_size - 1)
1303 #define C320p32tx_mask  (C320p32tx_size - 1)
1304
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
1312
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
1318
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
1324
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
1330
1331 #define C320p32rx_spage 3
1332 #define C320p32tx_ofs   C320p32rx_size
1333 #define C320p32tx_spage 3
1334 #define C320p32buf_pgno 1
1335
1336 /*
1337  *    Host Status
1338  */
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
1348 /*
1349  *    Flag status
1350  */
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
1358 /*
1359  *    FlowControl
1360  */
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
1366
1367 #define LowWater        128
1368
1369 #define DTR_ON          1
1370 #define RTS_ON          2
1371 #define CTS_ON          1
1372 #define DSR_ON          2
1373 #define DCD_ON          8
1374
1375 /* mode definition */
1376 #define MX_CS8          0x03
1377 #define MX_CS7          0x02
1378 #define MX_CS6          0x01
1379 #define MX_CS5          0x00
1380
1381 #define MX_STOP1        0x00
1382 #define MX_STOP15       0x04
1383 #define MX_STOP2        0x08
1384
1385 #define MX_PARNONE      0x00
1386 #define MX_PAREVEN      0x40
1387 #define MX_PARODD       0xC0
1388
1389 /*
1390  *    Query
1391  */
1392
1393 struct mon_str {
1394         int tick;
1395         int rxcnt[MAX_PORTS];
1396         int txcnt[MAX_PORTS];
1397 };
1398
1399 #define         DCD_changed     0x01
1400 #define         DCD_oldstate    0x80
1401
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;
1407
1408 static void moxadelay(int);
1409 static void moxafunc(void __iomem *, int, ushort);
1410 static void wait_finish(void __iomem *);
1411 static void low_water_check(void __iomem *);
1412 static int moxaloadbios(int, unsigned char __user *, int);
1413 static int moxafindcard(int);
1414 static int moxaload320b(int, unsigned char __user *, int);
1415 static int moxaloadcode(int, unsigned char __user *, int);
1416 static int moxaloadc218(int, void __iomem *, int);
1417 static int moxaloadc320(int, void __iomem *, int, int *);
1418
1419 /*****************************************************************************
1420  *      Driver level functions:                                              *
1421  *      1. MoxaDriverInit(void);                                             *
1422  *      2. MoxaDriverIoctl(unsigned int cmd, unsigned long arg, int port);   *
1423  *      3. MoxaDriverPoll(void);                                             *
1424  *****************************************************************************/
1425 void MoxaDriverInit(void)
1426 {
1427         struct moxa_port *p;
1428         unsigned int i;
1429
1430         moxaFuncTout = HZ / 2;  /* 500 mini-seconds */
1431         moxaCard = 0;
1432         moxaLog.tick = 0;
1433         moxaLowWaterChk = 0;
1434         for (i = 0; i < MAX_PORTS; i++) {
1435                 p = &moxa_ports[i];
1436                 p->chkPort = 0;
1437                 p->lowChkFlag = 0;
1438                 p->lineCtrl = 0;
1439                 moxaLog.rxcnt[i] = 0;
1440                 moxaLog.txcnt[i] = 0;
1441         }
1442 }
1443
1444 #define MOXA            0x400
1445 #define MOXA_GET_IQUEUE         (MOXA + 1)      /* get input buffered count */
1446 #define MOXA_GET_OQUEUE         (MOXA + 2)      /* get output buffered count */
1447 #define MOXA_INIT_DRIVER        (MOXA + 6)      /* moxaCard=0 */
1448 #define MOXA_LOAD_BIOS          (MOXA + 9)      /* download BIOS */
1449 #define MOXA_FIND_BOARD         (MOXA + 10)     /* Check if MOXA card exist? */
1450 #define MOXA_LOAD_C320B         (MOXA + 11)     /* download 320B firmware */
1451 #define MOXA_LOAD_CODE          (MOXA + 12)     /* download firmware */
1452 #define MOXA_GETDATACOUNT       (MOXA + 23)
1453 #define MOXA_GET_IOQUEUE        (MOXA + 27)
1454 #define MOXA_FLUSH_QUEUE        (MOXA + 28)
1455 #define MOXA_GET_CONF           (MOXA + 35)     /* configuration */
1456 #define MOXA_GET_MAJOR          (MOXA + 63)
1457 #define MOXA_GET_CUMAJOR        (MOXA + 64)
1458 #define MOXA_GETMSTATUS         (MOXA + 65)
1459
1460 struct dl_str {
1461         char __user *buf;
1462         int len;
1463         int cardno;
1464 };
1465
1466 static struct dl_str dltmp;
1467
1468 void MoxaPortFlushData(int port, int mode)
1469 {
1470         void __iomem *ofsAddr;
1471         if ((mode < 0) || (mode > 2))
1472                 return;
1473         ofsAddr = moxa_ports[port].tableAddr;
1474         moxafunc(ofsAddr, FC_FlushQueue, mode);
1475         if (mode != 1) {
1476                 moxa_ports[port].lowChkFlag = 0;
1477                 low_water_check(ofsAddr);
1478         }
1479 }
1480
1481 int MoxaDriverIoctl(unsigned int cmd, unsigned long arg, int port)
1482 {
1483         int i;
1484         int status;
1485         int MoxaPortTxQueue(int), MoxaPortRxQueue(int);
1486         void __user *argp = (void __user *)arg;
1487
1488         if (port == MAX_PORTS) {
1489                 if ((cmd != MOXA_GET_CONF) && (cmd != MOXA_INIT_DRIVER) &&
1490                     (cmd != MOXA_LOAD_BIOS) && (cmd != MOXA_FIND_BOARD) && (cmd != MOXA_LOAD_C320B) &&
1491                  (cmd != MOXA_LOAD_CODE) && (cmd != MOXA_GETDATACOUNT) &&
1492                   (cmd != MOXA_GET_IOQUEUE) && (cmd != MOXA_GET_MAJOR) &&
1493                     (cmd != MOXA_GET_CUMAJOR) && (cmd != MOXA_GETMSTATUS))
1494                         return (-EINVAL);
1495         }
1496         switch (cmd) {
1497         case MOXA_GET_CONF:
1498                 if(copy_to_user(argp, &moxa_boards, MAX_BOARDS *
1499                                 sizeof(struct moxa_board_conf)))
1500                         return -EFAULT;
1501                 return (0);
1502         case MOXA_INIT_DRIVER:
1503                 if ((int) arg == 0x404)
1504                         MoxaDriverInit();
1505                 return (0);
1506         case MOXA_GETDATACOUNT:
1507                 moxaLog.tick = jiffies;
1508                 if(copy_to_user(argp, &moxaLog, sizeof(struct mon_str)))
1509                         return -EFAULT;
1510                 return (0);
1511         case MOXA_FLUSH_QUEUE:
1512                 MoxaPortFlushData(port, arg);
1513                 return (0);
1514         case MOXA_GET_IOQUEUE: {
1515                 struct moxaq_str __user *argm = argp;
1516                 struct moxaq_str tmp;
1517
1518                 for (i = 0; i < MAX_PORTS; i++, argm++) {
1519                         memset(&tmp, 0, sizeof(tmp));
1520                         if (moxa_ports[i].chkPort) {
1521                                 tmp.inq = MoxaPortRxQueue(i);
1522                                 tmp.outq = MoxaPortTxQueue(i);
1523                         }
1524                         if (copy_to_user(argm, &tmp, sizeof(tmp)))
1525                                 return -EFAULT;
1526                 }
1527                 return (0);
1528         } case MOXA_GET_OQUEUE:
1529                 i = MoxaPortTxQueue(port);
1530                 return put_user(i, (unsigned long __user *)argp);
1531         case MOXA_GET_IQUEUE:
1532                 i = MoxaPortRxQueue(port);
1533                 return put_user(i, (unsigned long __user *)argp);
1534         case MOXA_GET_MAJOR:
1535                 if(copy_to_user(argp, &ttymajor, sizeof(int)))
1536                         return -EFAULT;
1537                 return 0;
1538         case MOXA_GET_CUMAJOR:
1539                 i = 0;
1540                 if(copy_to_user(argp, &i, sizeof(int)))
1541                         return -EFAULT;
1542                 return 0;
1543         case MOXA_GETMSTATUS: {
1544                 struct mxser_mstatus __user *argm = argp;
1545                 struct mxser_mstatus tmp;
1546                 struct moxa_port *p;
1547
1548                 for (i = 0; i < MAX_PORTS; i++, argm++) {
1549                         p = &moxa_ports[i];
1550                         memset(&tmp, 0, sizeof(tmp));
1551                         if (!p->chkPort) {
1552                                 goto copy;
1553                         } else {
1554                                 status = MoxaPortLineStatus(p->port);
1555                                 if (status & 1)
1556                                         tmp.cts = 1;
1557                                 if (status & 2)
1558                                         tmp.dsr = 1;
1559                                 if (status & 4)
1560                                         tmp.dcd = 1;
1561                         }
1562
1563                         if (!p->tty || !p->tty->termios)
1564                                 tmp.cflag = p->cflag;
1565                         else
1566                                 tmp.cflag = p->tty->termios->c_cflag;
1567 copy:
1568                         if (copy_to_user(argm, &tmp, sizeof(tmp)))
1569                                 return -EFAULT;
1570                 }
1571                 return 0;
1572         } default:
1573                 return (-ENOIOCTLCMD);
1574         case MOXA_LOAD_BIOS:
1575         case MOXA_FIND_BOARD:
1576         case MOXA_LOAD_C320B:
1577         case MOXA_LOAD_CODE:
1578                 if (!capable(CAP_SYS_RAWIO))
1579                         return -EPERM;
1580                 break;
1581         }
1582
1583         if(copy_from_user(&dltmp, argp, sizeof(struct dl_str)))
1584                 return -EFAULT;
1585         if(dltmp.cardno < 0 || dltmp.cardno >= MAX_BOARDS)
1586                 return -EINVAL;
1587
1588         switch(cmd)
1589         {
1590         case MOXA_LOAD_BIOS:
1591                 i = moxaloadbios(dltmp.cardno, dltmp.buf, dltmp.len);
1592                 return (i);
1593         case MOXA_FIND_BOARD:
1594                 return moxafindcard(dltmp.cardno);
1595         case MOXA_LOAD_C320B:
1596                 moxaload320b(dltmp.cardno, dltmp.buf, dltmp.len);
1597         default: /* to keep gcc happy */
1598                 return (0);
1599         case MOXA_LOAD_CODE:
1600                 i = moxaloadcode(dltmp.cardno, dltmp.buf, dltmp.len);
1601                 if (i == -1)
1602                         return (-EFAULT);
1603                 return (i);
1604
1605         }
1606 }
1607
1608 int MoxaDriverPoll(void)
1609 {
1610         struct moxa_board_conf *brd;
1611         register ushort temp;
1612         register int card;
1613         void __iomem *ofsAddr;
1614         void __iomem *ip;
1615         int port, p, ports;
1616
1617         if (moxaCard == 0)
1618                 return (-1);
1619         for (card = 0; card < MAX_BOARDS; card++) {
1620                 brd = &moxa_boards[card];
1621                 if (brd->loadstat == 0)
1622                         continue;
1623                 if ((ports = brd->numPorts) == 0)
1624                         continue;
1625                 if (readb(brd->intPend) == 0xff) {
1626                         ip = brd->intTable + readb(brd->intNdx);
1627                         p = card * MAX_PORTS_PER_BOARD;
1628                         ports <<= 1;
1629                         for (port = 0; port < ports; port += 2, p++) {
1630                                 if ((temp = readw(ip + port)) != 0) {
1631                                         writew(0, ip + port);
1632                                         ofsAddr = moxa_ports[p].tableAddr;
1633                                         if (temp & IntrTx)
1634                                                 writew(readw(ofsAddr + HostStat) & ~WakeupTx, ofsAddr + HostStat);
1635                                         if (temp & IntrBreak) {
1636                                                 moxa_ports[p].breakCnt++;
1637                                         }
1638                                         if (temp & IntrLine) {
1639                                                 if (readb(ofsAddr + FlagStat) & DCD_state) {
1640                                                         if ((moxa_ports[p].DCDState & DCD_oldstate) == 0)
1641                                                                 moxa_ports[p].DCDState = (DCD_oldstate |
1642                                                                                    DCD_changed);
1643                                                 } else {
1644                                                         if (moxa_ports[p].DCDState & DCD_oldstate)
1645                                                                 moxa_ports[p].DCDState = DCD_changed;
1646                                                 }
1647                                         }
1648                                 }
1649                         }
1650                         writeb(0, brd->intPend);
1651                 }
1652                 if (moxaLowWaterChk) {
1653                         p = card * MAX_PORTS_PER_BOARD;
1654                         for (port = 0; port < ports; port++, p++) {
1655                                 if (moxa_ports[p].lowChkFlag) {
1656                                         moxa_ports[p].lowChkFlag = 0;
1657                                         ofsAddr = moxa_ports[p].tableAddr;
1658                                         low_water_check(ofsAddr);
1659                                 }
1660                         }
1661                 }
1662         }
1663         moxaLowWaterChk = 0;
1664         return (0);
1665 }
1666
1667 /*****************************************************************************
1668  *      Card level function:                                                 *
1669  *      1. MoxaPortsOfCard(int cardno);                                      *
1670  *****************************************************************************/
1671 int MoxaPortsOfCard(int cardno)
1672 {
1673
1674         if (moxa_boards[cardno].boardType == 0)
1675                 return (0);
1676         return (moxa_boards[cardno].numPorts);
1677 }
1678
1679 /*****************************************************************************
1680  *      Port level functions:                                                *
1681  *      1.  MoxaPortIsValid(int port);                                       *
1682  *      2.  MoxaPortEnable(int port);                                        *
1683  *      3.  MoxaPortDisable(int port);                                       *
1684  *      4.  MoxaPortGetMaxBaud(int port);                                    *
1685  *      6.  MoxaPortSetBaud(int port, long baud);                            *
1686  *      8.  MoxaPortSetTermio(int port, unsigned char *termio);              *
1687  *      9.  MoxaPortGetLineOut(int port, int *dtrState, int *rtsState);      *
1688  *      10. MoxaPortLineCtrl(int port, int dtrState, int rtsState);          *
1689  *      11. MoxaPortFlowCtrl(int port, int rts, int cts, int rx, int tx,int xany);    *
1690  *      12. MoxaPortLineStatus(int port);                                    *
1691  *      13. MoxaPortDCDChange(int port);                                     *
1692  *      14. MoxaPortDCDON(int port);                                         *
1693  *      15. MoxaPortFlushData(int port, int mode);                           *
1694  *      16. MoxaPortWriteData(int port, unsigned char * buffer, int length); *
1695  *      17. MoxaPortReadData(int port, struct tty_struct *tty);              *
1696  *      20. MoxaPortTxQueue(int port);                                       *
1697  *      21. MoxaPortTxFree(int port);                                        *
1698  *      22. MoxaPortRxQueue(int port);                                       *
1699  *      24. MoxaPortTxDisable(int port);                                     *
1700  *      25. MoxaPortTxEnable(int port);                                      *
1701  *      27. MoxaPortResetBrkCnt(int port);                                   *
1702  *      30. MoxaPortSendBreak(int port, int ticks);                          *
1703  *****************************************************************************/
1704 /*
1705  *    Moxa Port Number Description:
1706  *
1707  *      MOXA serial driver supports up to 4 MOXA-C218/C320 boards. And,
1708  *      the port number using in MOXA driver functions will be 0 to 31 for
1709  *      first MOXA board, 32 to 63 for second, 64 to 95 for third and 96
1710  *      to 127 for fourth. For example, if you setup three MOXA boards,
1711  *      first board is C218, second board is C320-16 and third board is
1712  *      C320-32. The port number of first board (C218 - 8 ports) is from
1713  *      0 to 7. The port number of second board (C320 - 16 ports) is form
1714  *      32 to 47. The port number of third board (C320 - 32 ports) is from
1715  *      64 to 95. And those port numbers form 8 to 31, 48 to 63 and 96 to
1716  *      127 will be invalid.
1717  *
1718  *
1719  *      Moxa Functions Description:
1720  *
1721  *      Function 1:     Driver initialization routine, this routine must be
1722  *                      called when initialized driver.
1723  *      Syntax:
1724  *      void MoxaDriverInit();
1725  *
1726  *
1727  *      Function 2:     Moxa driver private IOCTL command processing.
1728  *      Syntax:
1729  *      int  MoxaDriverIoctl(unsigned int cmd, unsigned long arg, int port);
1730  *
1731  *           unsigned int cmd   : IOCTL command
1732  *           unsigned long arg  : IOCTL argument
1733  *           int port           : port number (0 - 127)
1734  *
1735  *           return:    0  (OK)
1736  *                      -EINVAL
1737  *                      -ENOIOCTLCMD
1738  *
1739  *
1740  *      Function 3:     Moxa driver polling process routine.
1741  *      Syntax:
1742  *      int  MoxaDriverPoll(void);
1743  *
1744  *           return:    0       ; polling O.K.
1745  *                      -1      : no any Moxa card.             
1746  *
1747  *
1748  *      Function 4:     Get the ports of this card.
1749  *      Syntax:
1750  *      int  MoxaPortsOfCard(int cardno);
1751  *
1752  *           int cardno         : card number (0 - 3)
1753  *
1754  *           return:    0       : this card is invalid
1755  *                      8/16/24/32
1756  *
1757  *
1758  *      Function 5:     Check this port is valid or invalid
1759  *      Syntax:
1760  *      int  MoxaPortIsValid(int port);
1761  *           int port           : port number (0 - 127, ref port description)
1762  *
1763  *           return:    0       : this port is invalid
1764  *                      1       : this port is valid
1765  *
1766  *
1767  *      Function 6:     Enable this port to start Tx/Rx data.
1768  *      Syntax:
1769  *      void MoxaPortEnable(int port);
1770  *           int port           : port number (0 - 127)
1771  *
1772  *
1773  *      Function 7:     Disable this port
1774  *      Syntax:
1775  *      void MoxaPortDisable(int port);
1776  *           int port           : port number (0 - 127)
1777  *
1778  *
1779  *      Function 8:     Get the maximun available baud rate of this port.
1780  *      Syntax:
1781  *      long MoxaPortGetMaxBaud(int port);
1782  *           int port           : port number (0 - 127)
1783  *
1784  *           return:    0       : this port is invalid
1785  *                      38400/57600/115200 bps
1786  *
1787  *
1788  *      Function 10:    Setting baud rate of this port.
1789  *      Syntax:
1790  *      long MoxaPortSetBaud(int port, long baud);
1791  *           int port           : port number (0 - 127)
1792  *           long baud          : baud rate (50 - 115200)
1793  *
1794  *           return:    0       : this port is invalid or baud < 50
1795  *                      50 - 115200 : the real baud rate set to the port, if
1796  *                                    the argument baud is large than maximun
1797  *                                    available baud rate, the real setting
1798  *                                    baud rate will be the maximun baud rate.
1799  *
1800  *
1801  *      Function 12:    Configure the port.
1802  *      Syntax:
1803  *      int  MoxaPortSetTermio(int port, struct ktermios *termio, speed_t baud);
1804  *           int port           : port number (0 - 127)
1805  *           struct ktermios * termio : termio structure pointer
1806  *           speed_t baud       : baud rate
1807  *
1808  *           return:    -1      : this port is invalid or termio == NULL
1809  *                      0       : setting O.K.
1810  *
1811  *
1812  *      Function 13:    Get the DTR/RTS state of this port.
1813  *      Syntax:
1814  *      int  MoxaPortGetLineOut(int port, int *dtrState, int *rtsState);
1815  *           int port           : port number (0 - 127)
1816  *           int * dtrState     : pointer to INT to receive the current DTR
1817  *                                state. (if NULL, this function will not
1818  *                                write to this address)
1819  *           int * rtsState     : pointer to INT to receive the current RTS
1820  *                                state. (if NULL, this function will not
1821  *                                write to this address)
1822  *
1823  *           return:    -1      : this port is invalid
1824  *                      0       : O.K.
1825  *
1826  *
1827  *      Function 14:    Setting the DTR/RTS output state of this port.
1828  *      Syntax:
1829  *      void MoxaPortLineCtrl(int port, int dtrState, int rtsState);
1830  *           int port           : port number (0 - 127)
1831  *           int dtrState       : DTR output state (0: off, 1: on)
1832  *           int rtsState       : RTS output state (0: off, 1: on)
1833  *
1834  *
1835  *      Function 15:    Setting the flow control of this port.
1836  *      Syntax:
1837  *      void MoxaPortFlowCtrl(int port, int rtsFlow, int ctsFlow, int rxFlow,
1838  *                            int txFlow,int xany);
1839  *           int port           : port number (0 - 127)
1840  *           int rtsFlow        : H/W RTS flow control (0: no, 1: yes)
1841  *           int ctsFlow        : H/W CTS flow control (0: no, 1: yes)
1842  *           int rxFlow         : S/W Rx XON/XOFF flow control (0: no, 1: yes)
1843  *           int txFlow         : S/W Tx XON/XOFF flow control (0: no, 1: yes)
1844  *           int xany           : S/W XANY flow control (0: no, 1: yes)
1845  *
1846  *
1847  *      Function 16:    Get ths line status of this port
1848  *      Syntax:
1849  *      int  MoxaPortLineStatus(int port);
1850  *           int port           : port number (0 - 127)
1851  *
1852  *           return:    Bit 0 - CTS state (0: off, 1: on)
1853  *                      Bit 1 - DSR state (0: off, 1: on)
1854  *                      Bit 2 - DCD state (0: off, 1: on)
1855  *
1856  *
1857  *      Function 17:    Check the DCD state has changed since the last read
1858  *                      of this function.
1859  *      Syntax:
1860  *      int  MoxaPortDCDChange(int port);
1861  *           int port           : port number (0 - 127)
1862  *
1863  *           return:    0       : no changed
1864  *                      1       : DCD has changed
1865  *
1866  *
1867  *      Function 18:    Check ths current DCD state is ON or not.
1868  *      Syntax:
1869  *      int  MoxaPortDCDON(int port);
1870  *           int port           : port number (0 - 127)
1871  *
1872  *           return:    0       : DCD off
1873  *                      1       : DCD on
1874  *
1875  *
1876  *      Function 19:    Flush the Rx/Tx buffer data of this port.
1877  *      Syntax:
1878  *      void MoxaPortFlushData(int port, int mode);
1879  *           int port           : port number (0 - 127)
1880  *           int mode    
1881  *                      0       : flush the Rx buffer 
1882  *                      1       : flush the Tx buffer 
1883  *                      2       : flush the Rx and Tx buffer 
1884  *
1885  *
1886  *      Function 20:    Write data.
1887  *      Syntax:
1888  *      int  MoxaPortWriteData(int port, unsigned char * buffer, int length);
1889  *           int port           : port number (0 - 127)
1890  *           unsigned char * buffer     : pointer to write data buffer.
1891  *           int length         : write data length
1892  *
1893  *           return:    0 - length      : real write data length
1894  *
1895  *
1896  *      Function 21:    Read data.
1897  *      Syntax:
1898  *      int  MoxaPortReadData(int port, struct tty_struct *tty);
1899  *           int port           : port number (0 - 127)
1900  *           struct tty_struct *tty : tty for data
1901  *
1902  *           return:    0 - length      : real read data length
1903  *
1904  *
1905  *      Function 24:    Get the Tx buffer current queued data bytes
1906  *      Syntax:
1907  *      int  MoxaPortTxQueue(int port);
1908  *           int port           : port number (0 - 127)
1909  *
1910  *           return:    ..      : Tx buffer current queued data bytes
1911  *
1912  *
1913  *      Function 25:    Get the Tx buffer current free space
1914  *      Syntax:
1915  *      int  MoxaPortTxFree(int port);
1916  *           int port           : port number (0 - 127)
1917  *
1918  *           return:    ..      : Tx buffer current free space
1919  *
1920  *
1921  *      Function 26:    Get the Rx buffer current queued data bytes
1922  *      Syntax:
1923  *      int  MoxaPortRxQueue(int port);
1924  *           int port           : port number (0 - 127)
1925  *
1926  *           return:    ..      : Rx buffer current queued data bytes
1927  *
1928  *
1929  *      Function 28:    Disable port data transmission.
1930  *      Syntax:
1931  *      void MoxaPortTxDisable(int port);
1932  *           int port           : port number (0 - 127)
1933  *
1934  *
1935  *      Function 29:    Enable port data transmission.
1936  *      Syntax:
1937  *      void MoxaPortTxEnable(int port);
1938  *           int port           : port number (0 - 127)
1939  *
1940  *
1941  *      Function 31:    Get the received BREAK signal count and reset it.
1942  *      Syntax:
1943  *      int  MoxaPortResetBrkCnt(int port);
1944  *           int port           : port number (0 - 127)
1945  *
1946  *           return:    0 - ..  : BREAK signal count
1947  *
1948  *
1949  *      Function 34:    Send out a BREAK signal.
1950  *      Syntax:
1951  *      void MoxaPortSendBreak(int port, int ms100);
1952  *           int port           : port number (0 - 127)
1953  *           int ms100          : break signal time interval.
1954  *                                unit: 100 mini-second. if ms100 == 0, it will
1955  *                                send out a about 250 ms BREAK signal.
1956  *
1957  */
1958 int MoxaPortIsValid(int port)
1959 {
1960
1961         if (moxaCard == 0)
1962                 return (0);
1963         if (moxa_ports[port].chkPort == 0)
1964                 return (0);
1965         return (1);
1966 }
1967
1968 void MoxaPortEnable(int port)
1969 {
1970         void __iomem *ofsAddr;
1971         int MoxaPortLineStatus(int);
1972         short lowwater = 512;
1973
1974         ofsAddr = moxa_ports[port].tableAddr;
1975         writew(lowwater, ofsAddr + Low_water);
1976         moxa_ports[port].breakCnt = 0;
1977         if ((moxa_boards[port / MAX_PORTS_PER_BOARD].boardType == MOXA_BOARD_C320_ISA) ||
1978             (moxa_boards[port / MAX_PORTS_PER_BOARD].boardType == MOXA_BOARD_C320_PCI)) {
1979                 moxafunc(ofsAddr, FC_SetBreakIrq, 0);
1980         } else {
1981                 writew(readw(ofsAddr + HostStat) | WakeupBreak, ofsAddr + HostStat);
1982         }
1983
1984         moxafunc(ofsAddr, FC_SetLineIrq, Magic_code);
1985         moxafunc(ofsAddr, FC_FlushQueue, 2);
1986
1987         moxafunc(ofsAddr, FC_EnableCH, Magic_code);
1988         MoxaPortLineStatus(port);
1989 }
1990
1991 void MoxaPortDisable(int port)
1992 {
1993         void __iomem *ofsAddr = moxa_ports[port].tableAddr;
1994
1995         moxafunc(ofsAddr, FC_SetFlowCtl, 0);    /* disable flow control */
1996         moxafunc(ofsAddr, FC_ClrLineIrq, Magic_code);
1997         writew(0, ofsAddr + HostStat);
1998         moxafunc(ofsAddr, FC_DisableCH, Magic_code);
1999 }
2000
2001 long MoxaPortGetMaxBaud(int port)
2002 {
2003         if ((moxa_boards[port / MAX_PORTS_PER_BOARD].boardType == MOXA_BOARD_C320_ISA) ||
2004             (moxa_boards[port / MAX_PORTS_PER_BOARD].boardType == MOXA_BOARD_C320_PCI))
2005                 return (460800L);
2006         else
2007                 return (921600L);
2008 }
2009
2010
2011 long MoxaPortSetBaud(int port, long baud)
2012 {
2013         void __iomem *ofsAddr;
2014         long max, clock;
2015         unsigned int val;
2016
2017         if ((baud < 50L) || ((max = MoxaPortGetMaxBaud(port)) == 0))
2018                 return (0);
2019         ofsAddr = moxa_ports[port].tableAddr;
2020         if (baud > max)
2021                 baud = max;
2022         if (max == 38400L)
2023                 clock = 614400L;        /* for 9.8304 Mhz : max. 38400 bps */
2024         else if (max == 57600L)
2025                 clock = 691200L;        /* for 11.0592 Mhz : max. 57600 bps */
2026         else
2027                 clock = 921600L;        /* for 14.7456 Mhz : max. 115200 bps */
2028         val = clock / baud;
2029         moxafunc(ofsAddr, FC_SetBaud, val);
2030         baud = clock / val;
2031         moxa_ports[port].curBaud = baud;
2032         return (baud);
2033 }
2034
2035 int MoxaPortSetTermio(int port, struct ktermios *termio, speed_t baud)
2036 {
2037         void __iomem *ofsAddr;
2038         tcflag_t cflag;
2039         tcflag_t mode = 0;
2040
2041         if (moxa_ports[port].chkPort == 0 || termio == 0)
2042                 return (-1);
2043         ofsAddr = moxa_ports[port].tableAddr;
2044         cflag = termio->c_cflag;        /* termio->c_cflag */
2045
2046         mode = termio->c_cflag & CSIZE;
2047         if (mode == CS5)
2048                 mode = MX_CS5;
2049         else if (mode == CS6)
2050                 mode = MX_CS6;
2051         else if (mode == CS7)
2052                 mode = MX_CS7;
2053         else if (mode == CS8)
2054                 mode = MX_CS8;
2055
2056         if (termio->c_cflag & CSTOPB) {
2057                 if (mode == MX_CS5)
2058                         mode |= MX_STOP15;
2059                 else
2060                         mode |= MX_STOP2;
2061         } else
2062                 mode |= MX_STOP1;
2063
2064         if (termio->c_cflag & PARENB) {
2065                 if (termio->c_cflag & PARODD)
2066                         mode |= MX_PARODD;
2067                 else
2068                         mode |= MX_PAREVEN;
2069         } else
2070                 mode |= MX_PARNONE;
2071
2072         moxafunc(ofsAddr, FC_SetDataMode, (ushort) mode);
2073
2074         if ((moxa_boards[port / MAX_PORTS_PER_BOARD].boardType == MOXA_BOARD_C320_ISA) ||
2075             (moxa_boards[port / MAX_PORTS_PER_BOARD].boardType == MOXA_BOARD_C320_PCI)) {
2076                 if (baud >= 921600L)
2077                         return (-1);
2078         }
2079         MoxaPortSetBaud(port, baud);
2080
2081         if (termio->c_iflag & (IXON | IXOFF | IXANY)) {
2082                 writeb(termio->c_cc[VSTART], ofsAddr + FuncArg);
2083                 writeb(termio->c_cc[VSTOP], ofsAddr + FuncArg1);
2084                 writeb(FC_SetXonXoff, ofsAddr + FuncCode);
2085                 wait_finish(ofsAddr);
2086
2087         }
2088         return (0);
2089 }
2090
2091 int MoxaPortGetLineOut(int port, int *dtrState, int *rtsState)
2092 {
2093
2094         if (!MoxaPortIsValid(port))
2095                 return (-1);
2096         if (dtrState) {
2097                 if (moxa_ports[port].lineCtrl & DTR_ON)
2098                         *dtrState = 1;
2099                 else
2100                         *dtrState = 0;
2101         }
2102         if (rtsState) {
2103                 if (moxa_ports[port].lineCtrl & RTS_ON)
2104                         *rtsState = 1;
2105                 else
2106                         *rtsState = 0;
2107         }
2108         return (0);
2109 }
2110
2111 void MoxaPortLineCtrl(int port, int dtr, int rts)
2112 {
2113         void __iomem *ofsAddr;
2114         int mode;
2115
2116         ofsAddr = moxa_ports[port].tableAddr;
2117         mode = 0;
2118         if (dtr)
2119                 mode |= DTR_ON;
2120         if (rts)
2121                 mode |= RTS_ON;
2122         moxa_ports[port].lineCtrl = mode;
2123         moxafunc(ofsAddr, FC_LineControl, mode);
2124 }
2125
2126 void MoxaPortFlowCtrl(int port, int rts, int cts, int txflow, int rxflow, int txany)
2127 {
2128         void __iomem *ofsAddr;
2129         int mode;
2130
2131         ofsAddr = moxa_ports[port].tableAddr;
2132         mode = 0;
2133         if (rts)
2134                 mode |= RTS_FlowCtl;
2135         if (cts)
2136                 mode |= CTS_FlowCtl;
2137         if (txflow)
2138                 mode |= Tx_FlowCtl;
2139         if (rxflow)
2140                 mode |= Rx_FlowCtl;
2141         if (txany)
2142                 mode |= IXM_IXANY;
2143         moxafunc(ofsAddr, FC_SetFlowCtl, mode);
2144 }
2145
2146 int MoxaPortLineStatus(int port)
2147 {
2148         void __iomem *ofsAddr;
2149         int val;
2150
2151         ofsAddr = moxa_ports[port].tableAddr;
2152         if ((moxa_boards[port / MAX_PORTS_PER_BOARD].boardType == MOXA_BOARD_C320_ISA) ||
2153             (moxa_boards[port / MAX_PORTS_PER_BOARD].boardType == MOXA_BOARD_C320_PCI)) {
2154                 moxafunc(ofsAddr, FC_LineStatus, 0);
2155                 val = readw(ofsAddr + FuncArg);
2156         } else {
2157                 val = readw(ofsAddr + FlagStat) >> 4;
2158         }
2159         val &= 0x0B;
2160         if (val & 8) {
2161                 val |= 4;
2162                 if ((moxa_ports[port].DCDState & DCD_oldstate) == 0)
2163                         moxa_ports[port].DCDState = (DCD_oldstate | DCD_changed);
2164         } else {
2165                 if (moxa_ports[port].DCDState & DCD_oldstate)
2166                         moxa_ports[port].DCDState = DCD_changed;
2167         }
2168         val &= 7;
2169         return (val);
2170 }
2171
2172 int MoxaPortDCDChange(int port)
2173 {
2174         int n;
2175
2176         if (moxa_ports[port].chkPort == 0)
2177                 return (0);
2178         n = moxa_ports[port].DCDState;
2179         moxa_ports[port].DCDState &= ~DCD_changed;
2180         n &= DCD_changed;
2181         return (n);
2182 }
2183
2184 int MoxaPortDCDON(int port)
2185 {
2186         int n;
2187
2188         if (moxa_ports[port].chkPort == 0)
2189                 return (0);
2190         if (moxa_ports[port].DCDState & DCD_oldstate)
2191                 n = 1;
2192         else
2193                 n = 0;
2194         return (n);
2195 }
2196
2197 int MoxaPortWriteData(int port, unsigned char * buffer, int len)
2198 {
2199         int c, total, i;
2200         ushort tail;
2201         int cnt;
2202         ushort head, tx_mask, spage, epage;
2203         ushort pageno, pageofs, bufhead;
2204         void __iomem *baseAddr, *ofsAddr, *ofs;
2205
2206         ofsAddr = moxa_ports[port].tableAddr;
2207         baseAddr = moxa_boards[port / MAX_PORTS_PER_BOARD].basemem;
2208         tx_mask = readw(ofsAddr + TX_mask);
2209         spage = readw(ofsAddr + Page_txb);
2210         epage = readw(ofsAddr + EndPage_txb);
2211         tail = readw(ofsAddr + TXwptr);
2212         head = readw(ofsAddr + TXrptr);
2213         c = (head > tail) ? (head - tail - 1)
2214             : (head - tail + tx_mask);
2215         if (c > len)
2216                 c = len;
2217         moxaLog.txcnt[port] += c;
2218         total = c;
2219         if (spage == epage) {
2220                 bufhead = readw(ofsAddr + Ofs_txb);
2221                 writew(spage, baseAddr + Control_reg);
2222                 while (c > 0) {
2223                         if (head > tail)
2224                                 len = head - tail - 1;
2225                         else
2226                                 len = tx_mask + 1 - tail;
2227                         len = (c > len) ? len : c;
2228                         ofs = baseAddr + DynPage_addr + bufhead + tail;
2229                         for (i = 0; i < len; i++)
2230                                 writeb(*buffer++, ofs + i);
2231                         tail = (tail + len) & tx_mask;
2232                         c -= len;
2233                 }
2234                 writew(tail, ofsAddr + TXwptr);
2235         } else {
2236                 len = c;
2237                 pageno = spage + (tail >> 13);
2238                 pageofs = tail & Page_mask;
2239                 do {
2240                         cnt = Page_size - pageofs;
2241                         if (cnt > c)
2242                                 cnt = c;
2243                         c -= cnt;
2244                         writeb(pageno, baseAddr + Control_reg);
2245                         ofs = baseAddr + DynPage_addr + pageofs;
2246                         for (i = 0; i < cnt; i++)
2247                                 writeb(*buffer++, ofs + i);
2248                         if (c == 0) {
2249                                 writew((tail + len) & tx_mask, ofsAddr + TXwptr);
2250                                 break;
2251                         }
2252                         if (++pageno == epage)
2253                                 pageno = spage;
2254                         pageofs = 0;
2255                 } while (1);
2256         }
2257         writeb(1, ofsAddr + CD180TXirq);        /* start to send */
2258         return (total);
2259 }
2260
2261 int MoxaPortReadData(int port, struct tty_struct *tty)
2262 {
2263         register ushort head, pageofs;
2264         int i, count, cnt, len, total, remain;
2265         ushort tail, rx_mask, spage, epage;
2266         ushort pageno, bufhead;
2267         void __iomem *baseAddr, *ofsAddr, *ofs;
2268
2269         ofsAddr = moxa_ports[port].tableAddr;
2270         baseAddr = moxa_boards[port / MAX_PORTS_PER_BOARD].basemem;
2271         head = readw(ofsAddr + RXrptr);
2272         tail = readw(ofsAddr + RXwptr);
2273         rx_mask = readw(ofsAddr + RX_mask);
2274         spage = readw(ofsAddr + Page_rxb);
2275         epage = readw(ofsAddr + EndPage_rxb);
2276         count = (tail >= head) ? (tail - head)
2277             : (tail - head + rx_mask + 1);
2278         if (count == 0)
2279                 return 0;
2280
2281         total = count;
2282         remain = count - total;
2283         moxaLog.rxcnt[port] += total;
2284         count = total;
2285         if (spage == epage) {
2286                 bufhead = readw(ofsAddr + Ofs_rxb);
2287                 writew(spage, baseAddr + Control_reg);
2288                 while (count > 0) {
2289                         if (tail >= head)
2290                                 len = tail - head;
2291                         else
2292                                 len = rx_mask + 1 - head;
2293                         len = (count > len) ? len : count;
2294                         ofs = baseAddr + DynPage_addr + bufhead + head;
2295                         for (i = 0; i < len; i++)
2296                                 tty_insert_flip_char(tty, readb(ofs + i), TTY_NORMAL);
2297                         head = (head + len) & rx_mask;
2298                         count -= len;
2299                 }
2300                 writew(head, ofsAddr + RXrptr);
2301         } else {
2302                 len = count;
2303                 pageno = spage + (head >> 13);
2304                 pageofs = head & Page_mask;
2305                 do {
2306                         cnt = Page_size - pageofs;
2307                         if (cnt > count)
2308                                 cnt = count;
2309                         count -= cnt;
2310                         writew(pageno, baseAddr + Control_reg);
2311                         ofs = baseAddr + DynPage_addr + pageofs;
2312                         for (i = 0; i < cnt; i++)
2313                                 tty_insert_flip_char(tty, readb(ofs + i), TTY_NORMAL);
2314                         if (count == 0) {
2315                                 writew((head + len) & rx_mask, ofsAddr + RXrptr);
2316                                 break;
2317                         }
2318                         if (++pageno == epage)
2319                                 pageno = spage;
2320                         pageofs = 0;
2321                 } while (1);
2322         }
2323         if ((readb(ofsAddr + FlagStat) & Xoff_state) && (remain < LowWater)) {
2324                 moxaLowWaterChk = 1;
2325                 moxa_ports[port].lowChkFlag = 1;
2326         }
2327         return (total);
2328 }
2329
2330
2331 int MoxaPortTxQueue(int port)
2332 {
2333         void __iomem *ofsAddr;
2334         ushort rptr, wptr, mask;
2335         int len;
2336
2337         ofsAddr = moxa_ports[port].tableAddr;
2338         rptr = readw(ofsAddr + TXrptr);
2339         wptr = readw(ofsAddr + TXwptr);
2340         mask = readw(ofsAddr + TX_mask);
2341         len = (wptr - rptr) & mask;
2342         return (len);
2343 }
2344
2345 int MoxaPortTxFree(int port)
2346 {
2347         void __iomem *ofsAddr;
2348         ushort rptr, wptr, mask;
2349         int len;
2350
2351         ofsAddr = moxa_ports[port].tableAddr;
2352         rptr = readw(ofsAddr + TXrptr);
2353         wptr = readw(ofsAddr + TXwptr);
2354         mask = readw(ofsAddr + TX_mask);
2355         len = mask - ((wptr - rptr) & mask);
2356         return (len);
2357 }
2358
2359 int MoxaPortRxQueue(int port)
2360 {
2361         void __iomem *ofsAddr;
2362         ushort rptr, wptr, mask;
2363         int len;
2364
2365         ofsAddr = moxa_ports[port].tableAddr;
2366         rptr = readw(ofsAddr + RXrptr);
2367         wptr = readw(ofsAddr + RXwptr);
2368         mask = readw(ofsAddr + RX_mask);
2369         len = (wptr - rptr) & mask;
2370         return (len);
2371 }
2372
2373
2374 void MoxaPortTxDisable(int port)
2375 {
2376         void __iomem *ofsAddr;
2377
2378         ofsAddr = moxa_ports[port].tableAddr;
2379         moxafunc(ofsAddr, FC_SetXoffState, Magic_code);
2380 }
2381
2382 void MoxaPortTxEnable(int port)
2383 {
2384         void __iomem *ofsAddr;
2385
2386         ofsAddr = moxa_ports[port].tableAddr;
2387         moxafunc(ofsAddr, FC_SetXonState, Magic_code);
2388 }
2389
2390
2391 int MoxaPortResetBrkCnt(int port)
2392 {
2393         ushort cnt;
2394         cnt = moxa_ports[port].breakCnt;
2395         moxa_ports[port].breakCnt = 0;
2396         return (cnt);
2397 }
2398
2399
2400 void MoxaPortSendBreak(int port, int ms100)
2401 {
2402         void __iomem *ofsAddr;
2403
2404         ofsAddr = moxa_ports[port].tableAddr;
2405         if (ms100) {
2406                 moxafunc(ofsAddr, FC_SendBreak, Magic_code);
2407                 moxadelay(ms100 * (HZ / 10));
2408         } else {
2409                 moxafunc(ofsAddr, FC_SendBreak, Magic_code);
2410                 moxadelay(HZ / 4);      /* 250 ms */
2411         }
2412         moxafunc(ofsAddr, FC_StopBreak, Magic_code);
2413 }
2414
2415 static int moxa_get_serial_info(struct moxa_port *info,
2416                                 struct serial_struct __user *retinfo)
2417 {
2418         struct serial_struct tmp;
2419
2420         memset(&tmp, 0, sizeof(tmp));
2421         tmp.type = info->type;
2422         tmp.line = info->port;
2423         tmp.port = 0;
2424         tmp.irq = 0;
2425         tmp.flags = info->asyncflags;
2426         tmp.baud_base = 921600;
2427         tmp.close_delay = info->close_delay;
2428         tmp.closing_wait = info->closing_wait;
2429         tmp.custom_divisor = 0;
2430         tmp.hub6 = 0;
2431         if(copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
2432                 return -EFAULT;
2433         return (0);
2434 }
2435
2436
2437 static int moxa_set_serial_info(struct moxa_port *info,
2438                                 struct serial_struct __user *new_info)
2439 {
2440         struct serial_struct new_serial;
2441
2442         if(copy_from_user(&new_serial, new_info, sizeof(new_serial)))
2443                 return -EFAULT;
2444
2445         if ((new_serial.irq != 0) ||
2446             (new_serial.port != 0) ||
2447 //           (new_serial.type != info->type) ||
2448             (new_serial.custom_divisor != 0) ||
2449             (new_serial.baud_base != 921600))
2450                 return (-EPERM);
2451
2452         if (!capable(CAP_SYS_ADMIN)) {
2453                 if (((new_serial.flags & ~ASYNC_USR_MASK) !=
2454                      (info->asyncflags & ~ASYNC_USR_MASK)))
2455                         return (-EPERM);
2456         } else {
2457                 info->close_delay = new_serial.close_delay * HZ / 100;
2458                 info->closing_wait = new_serial.closing_wait * HZ / 100;
2459         }
2460
2461         new_serial.flags = (new_serial.flags & ~ASYNC_FLAGS);
2462         new_serial.flags |= (info->asyncflags & ASYNC_FLAGS);
2463
2464         if (new_serial.type == PORT_16550A) {
2465                 MoxaSetFifo(info->port, 1);
2466         } else {
2467                 MoxaSetFifo(info->port, 0);
2468         }
2469
2470         info->type = new_serial.type;
2471         return (0);
2472 }
2473
2474
2475
2476 /*****************************************************************************
2477  *      Static local functions:                                              *
2478  *****************************************************************************/
2479 /*
2480  * moxadelay - delays a specified number ticks
2481  */
2482 static void moxadelay(int tick)
2483 {
2484         unsigned long st, et;
2485
2486         st = jiffies;
2487         et = st + tick;
2488         while (time_before(jiffies, et));
2489 }
2490
2491 static void moxafunc(void __iomem *ofsAddr, int cmd, ushort arg)
2492 {
2493
2494         writew(arg, ofsAddr + FuncArg);
2495         writew(cmd, ofsAddr + FuncCode);
2496         wait_finish(ofsAddr);
2497 }
2498
2499 static void wait_finish(void __iomem *ofsAddr)
2500 {
2501         unsigned long i, j;
2502
2503         i = jiffies;
2504         while (readw(ofsAddr + FuncCode) != 0) {
2505                 j = jiffies;
2506                 if ((j - i) > moxaFuncTout) {
2507                         return;
2508                 }
2509         }
2510 }
2511
2512 static void low_water_check(void __iomem *ofsAddr)
2513 {
2514         int len;
2515         ushort rptr, wptr, mask;
2516
2517         if (readb(ofsAddr + FlagStat) & Xoff_state) {
2518                 rptr = readw(ofsAddr + RXrptr);
2519                 wptr = readw(ofsAddr + RXwptr);
2520                 mask = readw(ofsAddr + RX_mask);
2521                 len = (wptr - rptr) & mask;
2522                 if (len <= Low_water)
2523                         moxafunc(ofsAddr, FC_SendXon, 0);
2524         }
2525 }
2526
2527 static int moxaloadbios(int cardno, unsigned char __user *tmp, int len)
2528 {
2529         void __iomem *baseAddr;
2530         int i;
2531
2532         if(copy_from_user(moxaBuff, tmp, len))
2533                 return -EFAULT;
2534         baseAddr = moxa_boards[cardno].basemem;
2535         writeb(HW_reset, baseAddr + Control_reg);       /* reset */
2536         moxadelay(1);           /* delay 10 ms */
2537         for (i = 0; i < 4096; i++)
2538                 writeb(0, baseAddr + i);        /* clear fix page */
2539         for (i = 0; i < len; i++)
2540                 writeb(moxaBuff[i], baseAddr + i);      /* download BIOS */
2541         writeb(0, baseAddr + Control_reg);      /* restart */
2542         return (0);
2543 }
2544
2545 static int moxafindcard(int cardno)
2546 {
2547         void __iomem *baseAddr;
2548         ushort tmp;
2549
2550         baseAddr = moxa_boards[cardno].basemem;
2551         switch (moxa_boards[cardno].boardType) {
2552         case MOXA_BOARD_C218_ISA:
2553         case MOXA_BOARD_C218_PCI:
2554                 if ((tmp = readw(baseAddr + C218_key)) != C218_KeyCode) {
2555                         return (-1);
2556                 }
2557                 break;
2558         case MOXA_BOARD_CP204J:
2559                 if ((tmp = readw(baseAddr + C218_key)) != CP204J_KeyCode) {
2560                         return (-1);
2561                 }
2562                 break;
2563         default:
2564                 if ((tmp = readw(baseAddr + C320_key)) != C320_KeyCode) {
2565                         return (-1);
2566                 }
2567                 if ((tmp = readw(baseAddr + C320_status)) != STS_init) {
2568                         return (-2);
2569                 }
2570         }
2571         return (0);
2572 }
2573
2574 static int moxaload320b(int cardno, unsigned char __user *tmp, int len)
2575 {
2576         void __iomem *baseAddr;
2577         int i;
2578
2579         if(len > sizeof(moxaBuff))
2580                 return -EINVAL;
2581         if(copy_from_user(moxaBuff, tmp, len))
2582                 return -EFAULT;
2583         baseAddr = moxa_boards[cardno].basemem;
2584         writew(len - 7168 - 2, baseAddr + C320bapi_len);
2585         writeb(1, baseAddr + Control_reg);      /* Select Page 1 */
2586         for (i = 0; i < 7168; i++)
2587                 writeb(moxaBuff[i], baseAddr + DynPage_addr + i);
2588         writeb(2, baseAddr + Control_reg);      /* Select Page 2 */
2589         for (i = 0; i < (len - 7168); i++)
2590                 writeb(moxaBuff[i + 7168], baseAddr + DynPage_addr + i);
2591         return (0);
2592 }
2593
2594 static int moxaloadcode(int cardno, unsigned char __user *tmp, int len)
2595 {
2596         void __iomem *baseAddr, *ofsAddr;
2597         int retval, port, i;
2598
2599         if(copy_from_user(moxaBuff, tmp, len))
2600                 return -EFAULT;
2601         baseAddr = moxa_boards[cardno].basemem;
2602         switch (moxa_boards[cardno].boardType) {
2603         case MOXA_BOARD_C218_ISA:
2604         case MOXA_BOARD_C218_PCI:
2605         case MOXA_BOARD_CP204J:
2606                 retval = moxaloadc218(cardno, baseAddr, len);
2607                 if (retval)
2608                         return (retval);
2609                 port = cardno * MAX_PORTS_PER_BOARD;
2610                 for (i = 0; i < moxa_boards[cardno].numPorts; i++, port++) {
2611                         struct moxa_port *p = &moxa_ports[port];
2612
2613                         p->chkPort = 1;
2614                         p->curBaud = 9600L;
2615                         p->DCDState = 0;
2616                         p->tableAddr = baseAddr + Extern_table + Extern_size * i;
2617                         ofsAddr = p->tableAddr;
2618                         writew(C218rx_mask, ofsAddr + RX_mask);
2619                         writew(C218tx_mask, ofsAddr + TX_mask);
2620                         writew(C218rx_spage + i * C218buf_pageno, ofsAddr + Page_rxb);
2621                         writew(readw(ofsAddr + Page_rxb) + C218rx_pageno, ofsAddr + EndPage_rxb);
2622
2623                         writew(C218tx_spage + i * C218buf_pageno, ofsAddr + Page_txb);
2624                         writew(readw(ofsAddr + Page_txb) + C218tx_pageno, ofsAddr + EndPage_txb);
2625
2626                 }
2627                 break;
2628         default:
2629                 retval = moxaloadc320(cardno, baseAddr, len,
2630                                       &moxa_boards[cardno].numPorts);
2631                 if (retval)
2632                         return (retval);
2633                 port = cardno * MAX_PORTS_PER_BOARD;
2634                 for (i = 0; i < moxa_boards[cardno].numPorts; i++, port++) {
2635                         struct moxa_port *p = &moxa_ports[port];
2636
2637                         p->chkPort = 1;
2638                         p->curBaud = 9600L;
2639                         p->DCDState = 0;
2640                         p->tableAddr = baseAddr + Extern_table + Extern_size * i;
2641                         ofsAddr = p->tableAddr;
2642                         if (moxa_boards[cardno].numPorts == 8) {
2643                                 writew(C320p8rx_mask, ofsAddr + RX_mask);
2644                                 writew(C320p8tx_mask, ofsAddr + TX_mask);
2645                                 writew(C320p8rx_spage + i * C320p8buf_pgno, ofsAddr + Page_rxb);
2646                                 writew(readw(ofsAddr + Page_rxb) + C320p8rx_pgno, ofsAddr + EndPage_rxb);
2647                                 writew(C320p8tx_spage + i * C320p8buf_pgno, ofsAddr + Page_txb);
2648                                 writew(readw(ofsAddr + Page_txb) + C320p8tx_pgno, ofsAddr + EndPage_txb);
2649
2650                         } else if (moxa_boards[cardno].numPorts == 16) {
2651                                 writew(C320p16rx_mask, ofsAddr + RX_mask);
2652                                 writew(C320p16tx_mask, ofsAddr + TX_mask);
2653                                 writew(C320p16rx_spage + i * C320p16buf_pgno, ofsAddr + Page_rxb);
2654                                 writew(readw(ofsAddr + Page_rxb) + C320p16rx_pgno, ofsAddr + EndPage_rxb);
2655                                 writew(C320p16tx_spage + i * C320p16buf_pgno, ofsAddr + Page_txb);
2656                                 writew(readw(ofsAddr + Page_txb) + C320p16tx_pgno, ofsAddr + EndPage_txb);
2657
2658                         } else if (moxa_boards[cardno].numPorts == 24) {
2659                                 writew(C320p24rx_mask, ofsAddr + RX_mask);
2660                                 writew(C320p24tx_mask, ofsAddr + TX_mask);
2661                                 writew(C320p24rx_spage + i * C320p24buf_pgno, ofsAddr + Page_rxb);
2662                                 writew(readw(ofsAddr + Page_rxb) + C320p24rx_pgno, ofsAddr + EndPage_rxb);
2663                                 writew(C320p24tx_spage + i * C320p24buf_pgno, ofsAddr + Page_txb);
2664                                 writew(readw(ofsAddr + Page_txb), ofsAddr + EndPage_txb);
2665                         } else if (moxa_boards[cardno].numPorts == 32) {
2666                                 writew(C320p32rx_mask, ofsAddr + RX_mask);
2667                                 writew(C320p32tx_mask, ofsAddr + TX_mask);
2668                                 writew(C320p32tx_ofs, ofsAddr + Ofs_txb);
2669                                 writew(C320p32rx_spage + i * C320p32buf_pgno, ofsAddr + Page_rxb);
2670                                 writew(readb(ofsAddr + Page_rxb), ofsAddr + EndPage_rxb);
2671                                 writew(C320p32tx_spage + i * C320p32buf_pgno, ofsAddr + Page_txb);
2672                                 writew(readw(ofsAddr + Page_txb), ofsAddr + EndPage_txb);
2673                         }
2674                 }
2675                 break;
2676         }
2677         moxa_boards[cardno].loadstat = 1;
2678         return (0);
2679 }
2680
2681 static int moxaloadc218(int cardno, void __iomem *baseAddr, int len)
2682 {
2683         char retry;
2684         int i, j, len1, len2;
2685         ushort usum, *ptr, keycode;
2686
2687         if (moxa_boards[cardno].boardType == MOXA_BOARD_CP204J)
2688                 keycode = CP204J_KeyCode;
2689         else
2690                 keycode = C218_KeyCode;
2691         usum = 0;
2692         len1 = len >> 1;
2693         ptr = (ushort *) moxaBuff;
2694         for (i = 0; i < len1; i++)
2695                 usum += le16_to_cpu(*(ptr + i));
2696         retry = 0;
2697         do {
2698                 len1 = len >> 1;
2699                 j = 0;
2700                 while (len1) {
2701                         len2 = (len1 > 2048) ? 2048 : len1;
2702                         len1 -= len2;
2703                         for (i = 0; i < len2 << 1; i++)
2704                                 writeb(moxaBuff[i + j], baseAddr + C218_LoadBuf + i);
2705                         j += i;
2706
2707                         writew(len2, baseAddr + C218DLoad_len);
2708                         writew(0, baseAddr + C218_key);
2709                         for (i = 0; i < 100; i++) {
2710                                 if (readw(baseAddr + C218_key) == keycode)
2711                                         break;
2712                                 moxadelay(1);   /* delay 10 ms */
2713                         }
2714                         if (readw(baseAddr + C218_key) != keycode) {
2715                                 return (-1);
2716                         }
2717                 }
2718                 writew(0, baseAddr + C218DLoad_len);
2719                 writew(usum, baseAddr + C218check_sum);
2720                 writew(0, baseAddr + C218_key);
2721                 for (i = 0; i < 100; i++) {
2722                         if (readw(baseAddr + C218_key) == keycode)
2723                                 break;
2724                         moxadelay(1);   /* delay 10 ms */
2725                 }
2726                 retry++;
2727         } while ((readb(baseAddr + C218chksum_ok) != 1) && (retry < 3));
2728         if (readb(baseAddr + C218chksum_ok) != 1) {
2729                 return (-1);
2730         }
2731         writew(0, baseAddr + C218_key);
2732         for (i = 0; i < 100; i++) {
2733                 if (readw(baseAddr + Magic_no) == Magic_code)
2734                         break;
2735                 moxadelay(1);   /* delay 10 ms */
2736         }
2737         if (readw(baseAddr + Magic_no) != Magic_code) {
2738                 return (-1);
2739         }
2740         writew(1, baseAddr + Disable_IRQ);
2741         writew(0, baseAddr + Magic_no);
2742         for (i = 0; i < 100; i++) {
2743                 if (readw(baseAddr + Magic_no) == Magic_code)
2744                         break;
2745                 moxadelay(1);   /* delay 10 ms */
2746         }
2747         if (readw(baseAddr + Magic_no) != Magic_code) {
2748                 return (-1);
2749         }
2750         moxaCard = 1;
2751         moxa_boards[cardno].intNdx = baseAddr + IRQindex;
2752         moxa_boards[cardno].intPend = baseAddr + IRQpending;
2753         moxa_boards[cardno].intTable = baseAddr + IRQtable;
2754         return (0);
2755 }
2756
2757 static int moxaloadc320(int cardno, void __iomem *baseAddr, int len, int *numPorts)
2758 {
2759         ushort usum;
2760         int i, j, wlen, len2, retry;
2761         ushort *uptr;
2762
2763         usum = 0;
2764         wlen = len >> 1;
2765         uptr = (ushort *) moxaBuff;
2766         for (i = 0; i < wlen; i++)
2767                 usum += le16_to_cpu(uptr[i]);
2768         retry = 0;
2769         j = 0;
2770         do {
2771                 while (wlen) {
2772                         if (wlen > 2048)
2773                                 len2 = 2048;
2774                         else
2775                                 len2 = wlen;
2776                         wlen -= len2;
2777                         len2 <<= 1;
2778                         for (i = 0; i < len2; i++)
2779                                 writeb(moxaBuff[j + i], baseAddr + C320_LoadBuf + i);
2780                         len2 >>= 1;
2781                         j += i;
2782                         writew(len2, baseAddr + C320DLoad_len);
2783                         writew(0, baseAddr + C320_key);
2784                         for (i = 0; i < 10; i++) {
2785                                 if (readw(baseAddr + C320_key) == C320_KeyCode)
2786                                         break;
2787                                 moxadelay(1);
2788                         }
2789                         if (readw(baseAddr + C320_key) != C320_KeyCode)
2790                                 return (-1);
2791                 }
2792                 writew(0, baseAddr + C320DLoad_len);
2793                 writew(usum, baseAddr + C320check_sum);
2794                 writew(0, baseAddr + C320_key);
2795                 for (i = 0; i < 10; i++) {
2796                         if (readw(baseAddr + C320_key) == C320_KeyCode)
2797                                 break;
2798                         moxadelay(1);
2799                 }
2800                 retry++;
2801         } while ((readb(baseAddr + C320chksum_ok) != 1) && (retry < 3));
2802         if (readb(baseAddr + C320chksum_ok) != 1)
2803                 return (-1);
2804         writew(0, baseAddr + C320_key);
2805         for (i = 0; i < 600; i++) {
2806                 if (readw(baseAddr + Magic_no) == Magic_code)
2807                         break;
2808                 moxadelay(1);
2809         }
2810         if (readw(baseAddr + Magic_no) != Magic_code)
2811                 return (-100);
2812
2813         if (moxa_boards[cardno].busType == MOXA_BUS_TYPE_PCI) {         /* ASIC board */
2814                 writew(0x3800, baseAddr + TMS320_PORT1);
2815                 writew(0x3900, baseAddr + TMS320_PORT2);
2816                 writew(28499, baseAddr + TMS320_CLOCK);
2817         } else {
2818                 writew(0x3200, baseAddr + TMS320_PORT1);
2819                 writew(0x3400, baseAddr + TMS320_PORT2);
2820                 writew(19999, baseAddr + TMS320_CLOCK);
2821         }
2822         writew(1, baseAddr + Disable_IRQ);
2823         writew(0, baseAddr + Magic_no);
2824         for (i = 0; i < 500; i++) {
2825                 if (readw(baseAddr + Magic_no) == Magic_code)
2826                         break;
2827                 moxadelay(1);
2828         }
2829         if (readw(baseAddr + Magic_no) != Magic_code)
2830                 return (-102);
2831
2832         j = readw(baseAddr + Module_cnt);
2833         if (j <= 0)
2834                 return (-101);
2835         *numPorts = j * 8;
2836         writew(j, baseAddr + Module_no);
2837         writew(0, baseAddr + Magic_no);
2838         for (i = 0; i < 600; i++) {
2839                 if (readw(baseAddr + Magic_no) == Magic_code)
2840                         break;
2841                 moxadelay(1);
2842         }
2843         if (readw(baseAddr + Magic_no) != Magic_code)
2844                 return (-102);
2845         moxaCard = 1;
2846         moxa_boards[cardno].intNdx = baseAddr + IRQindex;
2847         moxa_boards[cardno].intPend = baseAddr + IRQpending;
2848         moxa_boards[cardno].intTable = baseAddr + IRQtable;
2849         return (0);
2850 }
2851
2852 static void MoxaSetFifo(int port, int enable)
2853 {
2854         void __iomem *ofsAddr = moxa_ports[port].tableAddr;
2855
2856         if (!enable) {
2857                 moxafunc(ofsAddr, FC_SetRxFIFOTrig, 0);
2858                 moxafunc(ofsAddr, FC_SetTxFIFOCnt, 1);
2859         } else {
2860                 moxafunc(ofsAddr, FC_SetRxFIFOTrig, 3);
2861                 moxafunc(ofsAddr, FC_SetTxFIFOCnt, 16);
2862         }
2863 }