]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/char/moxa.c
Char: moxa, update credits
[mirror_ubuntu-bionic-kernel.git] / drivers / char / moxa.c
CommitLineData
1da177e4
LT
1/*****************************************************************************/
2/*
3 * moxa.c -- MOXA Intellio family multiport serial driver.
4 *
b9705b60
JS
5 * Copyright (C) 1999-2000 Moxa Technologies (support@moxa.com).
6 * Copyright (c) 2007 Jiri Slaby <jirislaby@gmail.com>
1da177e4
LT
7 *
8 * This code is loosely based on the Linux serial driver, written by
9 * Linus Torvalds, Theodore T'so and others.
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
1da177e4
LT
15 */
16
17/*
18 * MOXA Intellio Series Driver
19 * for : LINUX
20 * date : 1999/1/7
21 * version : 5.1
22 */
23
1da177e4
LT
24#include <linux/module.h>
25#include <linux/types.h>
26#include <linux/mm.h>
27#include <linux/ioport.h>
28#include <linux/errno.h>
03718234 29#include <linux/firmware.h>
1da177e4
LT
30#include <linux/signal.h>
31#include <linux/sched.h>
32#include <linux/timer.h>
33#include <linux/interrupt.h>
34#include <linux/tty.h>
35#include <linux/tty_flip.h>
36#include <linux/major.h>
37#include <linux/string.h>
38#include <linux/fcntl.h>
39#include <linux/ptrace.h>
40#include <linux/serial.h>
41#include <linux/tty_driver.h>
42#include <linux/delay.h>
43#include <linux/pci.h>
44#include <linux/init.h>
45#include <linux/bitops.h>
46
47#include <asm/system.h>
48#include <asm/io.h>
49#include <asm/uaccess.h>
50
03718234
JS
51#include "moxa.h"
52
b9705b60 53#define MOXA_VERSION "6.0k"
1da177e4 54
03718234
JS
55#define MOXA_FW_HDRLEN 32
56
11324edd 57#define MOXAMAJOR 172
1da177e4 58
11324edd 59#define MAX_BOARDS 4 /* Don't change this value */
1da177e4 60#define MAX_PORTS_PER_BOARD 32 /* Don't change this value */
11324edd 61#define MAX_PORTS (MAX_BOARDS * MAX_PORTS_PER_BOARD)
1da177e4 62
08d01c79
JS
63#define MOXA_IS_320(brd) ((brd)->boardType == MOXA_BOARD_C320_ISA || \
64 (brd)->boardType == MOXA_BOARD_C320_PCI)
65
1da177e4
LT
66/*
67 * Define the Moxa PCI vendor and device IDs.
68 */
11324edd
JS
69#define MOXA_BUS_TYPE_ISA 0
70#define MOXA_BUS_TYPE_PCI 1
1da177e4 71
1da177e4
LT
72enum {
73 MOXA_BOARD_C218_PCI = 1,
74 MOXA_BOARD_C218_ISA,
75 MOXA_BOARD_C320_PCI,
76 MOXA_BOARD_C320_ISA,
77 MOXA_BOARD_CP204J,
78};
79
80static char *moxa_brdname[] =
81{
82 "C218 Turbo PCI series",
83 "C218 Turbo ISA series",
84 "C320 Turbo PCI series",
85 "C320 Turbo ISA series",
86 "CP-204J series",
87};
88
89#ifdef CONFIG_PCI
90static struct pci_device_id moxa_pcibrds[] = {
5ebb4078
JS
91 { PCI_DEVICE(PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_C218),
92 .driver_data = MOXA_BOARD_C218_PCI },
93 { PCI_DEVICE(PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_C320),
94 .driver_data = MOXA_BOARD_C320_PCI },
95 { PCI_DEVICE(PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP204J),
96 .driver_data = MOXA_BOARD_CP204J },
1da177e4
LT
97 { 0 }
98};
99MODULE_DEVICE_TABLE(pci, moxa_pcibrds);
100#endif /* CONFIG_PCI */
101
03718234
JS
102struct moxa_port;
103
8f8ecbad 104static struct moxa_board_conf {
1da177e4
LT
105 int boardType;
106 int numPorts;
1da177e4 107 int busType;
8f8ecbad 108
810ab09b 109 unsigned int ready;
8f8ecbad 110
03718234
JS
111 struct moxa_port *ports;
112
8f8ecbad
JS
113 void __iomem *basemem;
114 void __iomem *intNdx;
115 void __iomem *intPend;
116 void __iomem *intTable;
117} moxa_boards[MAX_BOARDS];
118
119struct mxser_mstatus {
120 tcflag_t cflag;
121 int cts;
122 int dsr;
123 int ri;
124 int dcd;
9dff89cd 125};
1da177e4 126
8f8ecbad
JS
127struct moxaq_str {
128 int inq;
129 int outq;
130};
1da177e4 131
8f8ecbad 132struct moxa_port {
b4173f45 133 struct moxa_board_conf *board;
7bcf97d1
JS
134 struct tty_struct *tty;
135 void __iomem *tableAddr;
136
1da177e4 137 int type;
1da177e4 138 int close_delay;
a8f5cda0 139 unsigned int count;
1da177e4 140 int asyncflags;
1da177e4 141 int cflag;
7bcf97d1 142 unsigned long statusflags;
1da177e4 143 wait_queue_head_t open_wait;
1da177e4 144
7bcf97d1
JS
145 u8 DCDState;
146 u8 lineCtrl;
147 u8 lowChkFlag;
8f8ecbad 148};
1da177e4 149
74d7d97b
JS
150struct mon_str {
151 int tick;
152 int rxcnt[MAX_PORTS];
153 int txcnt[MAX_PORTS];
154};
155
1da177e4
LT
156/* statusflags */
157#define TXSTOPPED 0x1
158#define LOWWAIT 0x2
159#define EMPTYWAIT 0x4
160#define THROTTLE 0x8
161
1da177e4
LT
162#define SERIAL_DO_RESTART
163
1da177e4
LT
164#define WAKEUP_CHARS 256
165
1da177e4 166static int ttymajor = MOXAMAJOR;
74d7d97b
JS
167static struct mon_str moxaLog;
168static unsigned int moxaFuncTout = HZ / 2;
7bcf97d1 169static unsigned int moxaLowWaterChk;
a8f5cda0 170static DEFINE_MUTEX(moxa_openlock);
1da177e4
LT
171/* Variables for insmod */
172#ifdef MODULE
d353eca4
JS
173static unsigned long baseaddr[MAX_BOARDS];
174static unsigned int type[MAX_BOARDS];
175static unsigned int numports[MAX_BOARDS];
1da177e4
LT
176#endif
177
178MODULE_AUTHOR("William Chen");
179MODULE_DESCRIPTION("MOXA Intellio Family Multiport Board Device Driver");
180MODULE_LICENSE("GPL");
181#ifdef MODULE
d353eca4
JS
182module_param_array(type, uint, NULL, 0);
183MODULE_PARM_DESC(type, "card type: C218=2, C320=4");
184module_param_array(baseaddr, ulong, NULL, 0);
185MODULE_PARM_DESC(baseaddr, "base address");
186module_param_array(numports, uint, NULL, 0);
187MODULE_PARM_DESC(numports, "numports (ignored for C218)");
1da177e4
LT
188#endif
189module_param(ttymajor, int, 0);
1da177e4 190
1da177e4
LT
191/*
192 * static functions:
193 */
1da177e4
LT
194static int moxa_open(struct tty_struct *, struct file *);
195static void moxa_close(struct tty_struct *, struct file *);
196static int moxa_write(struct tty_struct *, const unsigned char *, int);
197static int moxa_write_room(struct tty_struct *);
198static void moxa_flush_buffer(struct tty_struct *);
199static int moxa_chars_in_buffer(struct tty_struct *);
1da177e4
LT
200static void moxa_throttle(struct tty_struct *);
201static void moxa_unthrottle(struct tty_struct *);
606d099c 202static void moxa_set_termios(struct tty_struct *, struct ktermios *);
1da177e4
LT
203static void moxa_stop(struct tty_struct *);
204static void moxa_start(struct tty_struct *);
205static void moxa_hangup(struct tty_struct *);
206static int moxa_tiocmget(struct tty_struct *tty, struct file *file);
207static int moxa_tiocmset(struct tty_struct *tty, struct file *file,
208 unsigned int set, unsigned int clear);
209static void moxa_poll(unsigned long);
db1acaa6 210static void moxa_set_tty_param(struct tty_struct *, struct ktermios *);
6f56b658 211static void moxa_setup_empty_event(struct tty_struct *);
6f56b658 212static void moxa_shut_down(struct moxa_port *);
1da177e4
LT
213/*
214 * moxa board interface functions:
215 */
b4173f45
JS
216static void MoxaPortEnable(struct moxa_port *);
217static void MoxaPortDisable(struct moxa_port *);
218static int MoxaPortSetTermio(struct moxa_port *, struct ktermios *, speed_t);
219static int MoxaPortGetLineOut(struct moxa_port *, int *, int *);
220static void MoxaPortLineCtrl(struct moxa_port *, int, int);
221static void MoxaPortFlowCtrl(struct moxa_port *, int, int, int, int, int);
222static int MoxaPortLineStatus(struct moxa_port *);
b4173f45 223static void MoxaPortFlushData(struct moxa_port *, int);
2108eba5 224static int MoxaPortWriteData(struct moxa_port *, const unsigned char *, int);
7bcf97d1 225static int MoxaPortReadData(struct moxa_port *);
b4173f45
JS
226static int MoxaPortTxQueue(struct moxa_port *);
227static int MoxaPortRxQueue(struct moxa_port *);
228static int MoxaPortTxFree(struct moxa_port *);
229static void MoxaPortTxDisable(struct moxa_port *);
230static void MoxaPortTxEnable(struct moxa_port *);
8f8ecbad
JS
231static int moxa_get_serial_info(struct moxa_port *, struct serial_struct __user *);
232static int moxa_set_serial_info(struct moxa_port *, struct serial_struct __user *);
b4173f45 233static void MoxaSetFifo(struct moxa_port *port, int enable);
1da177e4 234
74d7d97b
JS
235/*
236 * I/O functions
237 */
238
239static void moxa_wait_finish(void __iomem *ofsAddr)
240{
241 unsigned long end = jiffies + moxaFuncTout;
242
243 while (readw(ofsAddr + FuncCode) != 0)
244 if (time_after(jiffies, end))
245 return;
246 if (readw(ofsAddr + FuncCode) != 0 && printk_ratelimit())
247 printk(KERN_WARNING "moxa function expired\n");
248}
249
eaa95a8d 250static void moxafunc(void __iomem *ofsAddr, u16 cmd, u16 arg)
74d7d97b
JS
251{
252 writew(arg, ofsAddr + FuncArg);
253 writew(cmd, ofsAddr + FuncCode);
254 moxa_wait_finish(ofsAddr);
255}
256
7bcf97d1
JS
257static void moxa_low_water_check(void __iomem *ofsAddr)
258{
259 u16 rptr, wptr, mask, len;
260
261 if (readb(ofsAddr + FlagStat) & Xoff_state) {
262 rptr = readw(ofsAddr + RXrptr);
263 wptr = readw(ofsAddr + RXwptr);
264 mask = readw(ofsAddr + RX_mask);
265 len = (wptr - rptr) & mask;
266 if (len <= Low_water)
267 moxafunc(ofsAddr, FC_SendXon, 0);
268 }
269}
270
74d7d97b
JS
271/*
272 * TTY operations
273 */
274
275static int moxa_ioctl(struct tty_struct *tty, struct file *file,
276 unsigned int cmd, unsigned long arg)
277{
278 struct moxa_port *ch = tty->driver_data;
279 void __user *argp = (void __user *)arg;
a8f5cda0 280 int status, ret = 0;
74d7d97b
JS
281
282 if (tty->index == MAX_PORTS) {
283 if (cmd != MOXA_GETDATACOUNT && cmd != MOXA_GET_IOQUEUE &&
284 cmd != MOXA_GETMSTATUS)
285 return -EINVAL;
286 } else if (!ch)
287 return -ENODEV;
288
289 switch (cmd) {
290 case MOXA_GETDATACOUNT:
291 moxaLog.tick = jiffies;
a8f5cda0
JS
292 if (copy_to_user(argp, &moxaLog, sizeof(moxaLog)))
293 ret = -EFAULT;
294 break;
74d7d97b
JS
295 case MOXA_FLUSH_QUEUE:
296 MoxaPortFlushData(ch, arg);
a8f5cda0 297 break;
74d7d97b
JS
298 case MOXA_GET_IOQUEUE: {
299 struct moxaq_str __user *argm = argp;
300 struct moxaq_str tmp;
301 struct moxa_port *p;
302 unsigned int i, j;
303
a8f5cda0 304 mutex_lock(&moxa_openlock);
74d7d97b
JS
305 for (i = 0; i < MAX_BOARDS; i++) {
306 p = moxa_boards[i].ports;
307 for (j = 0; j < MAX_PORTS_PER_BOARD; j++, p++, argm++) {
308 memset(&tmp, 0, sizeof(tmp));
309 if (moxa_boards[i].ready) {
310 tmp.inq = MoxaPortRxQueue(p);
311 tmp.outq = MoxaPortTxQueue(p);
312 }
a8f5cda0
JS
313 if (copy_to_user(argm, &tmp, sizeof(tmp))) {
314 mutex_unlock(&moxa_openlock);
74d7d97b 315 return -EFAULT;
a8f5cda0 316 }
74d7d97b
JS
317 }
318 }
a8f5cda0
JS
319 mutex_unlock(&moxa_openlock);
320 break;
74d7d97b
JS
321 } case MOXA_GET_OQUEUE:
322 status = MoxaPortTxQueue(ch);
a8f5cda0
JS
323 ret = put_user(status, (unsigned long __user *)argp);
324 break;
74d7d97b
JS
325 case MOXA_GET_IQUEUE:
326 status = MoxaPortRxQueue(ch);
a8f5cda0
JS
327 ret = put_user(status, (unsigned long __user *)argp);
328 break;
74d7d97b
JS
329 case MOXA_GETMSTATUS: {
330 struct mxser_mstatus __user *argm = argp;
331 struct mxser_mstatus tmp;
332 struct moxa_port *p;
333 unsigned int i, j;
334
a8f5cda0 335 mutex_lock(&moxa_openlock);
74d7d97b
JS
336 for (i = 0; i < MAX_BOARDS; i++) {
337 p = moxa_boards[i].ports;
338 for (j = 0; j < MAX_PORTS_PER_BOARD; j++, p++, argm++) {
339 memset(&tmp, 0, sizeof(tmp));
340 if (!moxa_boards[i].ready)
341 goto copy;
342
343 status = MoxaPortLineStatus(p);
344 if (status & 1)
345 tmp.cts = 1;
346 if (status & 2)
347 tmp.dsr = 1;
348 if (status & 4)
349 tmp.dcd = 1;
350
351 if (!p->tty || !p->tty->termios)
352 tmp.cflag = p->cflag;
353 else
354 tmp.cflag = p->tty->termios->c_cflag;
355copy:
a8f5cda0
JS
356 if (copy_to_user(argm, &tmp, sizeof(tmp))) {
357 mutex_unlock(&moxa_openlock);
74d7d97b 358 return -EFAULT;
a8f5cda0 359 }
74d7d97b
JS
360 }
361 }
a8f5cda0
JS
362 mutex_unlock(&moxa_openlock);
363 break;
74d7d97b
JS
364 }
365 case TIOCGSERIAL:
a8f5cda0
JS
366 mutex_lock(&moxa_openlock);
367 ret = moxa_get_serial_info(ch, argp);
368 mutex_unlock(&moxa_openlock);
369 break;
74d7d97b 370 case TIOCSSERIAL:
a8f5cda0
JS
371 mutex_lock(&moxa_openlock);
372 ret = moxa_set_serial_info(ch, argp);
373 mutex_unlock(&moxa_openlock);
374 break;
375 default:
376 ret = -ENOIOCTLCMD;
74d7d97b 377 }
a8f5cda0 378 return ret;
74d7d97b
JS
379}
380
381static void moxa_break_ctl(struct tty_struct *tty, int state)
382{
383 struct moxa_port *port = tty->driver_data;
384
385 moxafunc(port->tableAddr, state ? FC_SendBreak : FC_StopBreak,
386 Magic_code);
387}
388
b68e31d0 389static const struct tty_operations moxa_ops = {
1da177e4
LT
390 .open = moxa_open,
391 .close = moxa_close,
392 .write = moxa_write,
393 .write_room = moxa_write_room,
394 .flush_buffer = moxa_flush_buffer,
395 .chars_in_buffer = moxa_chars_in_buffer,
1da177e4
LT
396 .ioctl = moxa_ioctl,
397 .throttle = moxa_throttle,
398 .unthrottle = moxa_unthrottle,
399 .set_termios = moxa_set_termios,
400 .stop = moxa_stop,
401 .start = moxa_start,
402 .hangup = moxa_hangup,
74d7d97b 403 .break_ctl = moxa_break_ctl,
1da177e4
LT
404 .tiocmget = moxa_tiocmget,
405 .tiocmset = moxa_tiocmset,
406};
407
aa7e5221 408static struct tty_driver *moxaDriver;
aa7e5221 409static DEFINE_TIMER(moxaTimer, moxa_poll, 0, 0);
34af946a 410static DEFINE_SPINLOCK(moxa_lock);
33f0f88f 411
74d7d97b
JS
412/*
413 * HW init
414 */
415
03718234
JS
416static int moxa_check_fw_model(struct moxa_board_conf *brd, u8 model)
417{
418 switch (brd->boardType) {
419 case MOXA_BOARD_C218_ISA:
420 case MOXA_BOARD_C218_PCI:
421 if (model != 1)
422 goto err;
423 break;
424 case MOXA_BOARD_CP204J:
425 if (model != 3)
426 goto err;
427 break;
428 default:
429 if (model != 2)
430 goto err;
431 break;
432 }
433 return 0;
434err:
435 return -EINVAL;
436}
437
438static int moxa_check_fw(const void *ptr)
439{
440 const __le16 *lptr = ptr;
441
442 if (*lptr != cpu_to_le16(0x7980))
443 return -EINVAL;
444
445 return 0;
446}
447
448static int moxa_load_bios(struct moxa_board_conf *brd, const u8 *buf,
449 size_t len)
450{
451 void __iomem *baseAddr = brd->basemem;
452 u16 tmp;
453
454 writeb(HW_reset, baseAddr + Control_reg); /* reset */
455 msleep(10);
456 memset_io(baseAddr, 0, 4096);
457 memcpy_toio(baseAddr, buf, len); /* download BIOS */
458 writeb(0, baseAddr + Control_reg); /* restart */
459
460 msleep(2000);
461
462 switch (brd->boardType) {
463 case MOXA_BOARD_C218_ISA:
464 case MOXA_BOARD_C218_PCI:
465 tmp = readw(baseAddr + C218_key);
466 if (tmp != C218_KeyCode)
467 goto err;
468 break;
469 case MOXA_BOARD_CP204J:
470 tmp = readw(baseAddr + C218_key);
471 if (tmp != CP204J_KeyCode)
472 goto err;
473 break;
474 default:
475 tmp = readw(baseAddr + C320_key);
476 if (tmp != C320_KeyCode)
477 goto err;
478 tmp = readw(baseAddr + C320_status);
479 if (tmp != STS_init) {
eaa95a8d 480 printk(KERN_ERR "MOXA: bios upload failed -- CPU/Basic "
03718234
JS
481 "module not found\n");
482 return -EIO;
483 }
484 break;
485 }
486
487 return 0;
488err:
eaa95a8d 489 printk(KERN_ERR "MOXA: bios upload failed -- board not found\n");
03718234
JS
490 return -EIO;
491}
492
493static int moxa_load_320b(struct moxa_board_conf *brd, const u8 *ptr,
494 size_t len)
495{
496 void __iomem *baseAddr = brd->basemem;
497
498 if (len < 7168) {
eaa95a8d 499 printk(KERN_ERR "MOXA: invalid 320 bios -- too short\n");
03718234
JS
500 return -EINVAL;
501 }
502
503 writew(len - 7168 - 2, baseAddr + C320bapi_len);
504 writeb(1, baseAddr + Control_reg); /* Select Page 1 */
505 memcpy_toio(baseAddr + DynPage_addr, ptr, 7168);
506 writeb(2, baseAddr + Control_reg); /* Select Page 2 */
507 memcpy_toio(baseAddr + DynPage_addr, ptr + 7168, len - 7168);
508
509 return 0;
510}
511
5292bcd3 512static int moxa_real_load_code(struct moxa_board_conf *brd, const void *ptr,
03718234
JS
513 size_t len)
514{
515 void __iomem *baseAddr = brd->basemem;
516 const u16 *uptr = ptr;
517 size_t wlen, len2, j;
5292bcd3 518 unsigned long key, loadbuf, loadlen, checksum, checksum_ok;
08d01c79 519 unsigned int i, retry;
03718234
JS
520 u16 usum, keycode;
521
5292bcd3
JS
522 keycode = (brd->boardType == MOXA_BOARD_CP204J) ? CP204J_KeyCode :
523 C218_KeyCode;
03718234 524
5292bcd3
JS
525 switch (brd->boardType) {
526 case MOXA_BOARD_CP204J:
527 case MOXA_BOARD_C218_ISA:
528 case MOXA_BOARD_C218_PCI:
529 key = C218_key;
530 loadbuf = C218_LoadBuf;
531 loadlen = C218DLoad_len;
532 checksum = C218check_sum;
533 checksum_ok = C218chksum_ok;
534 break;
535 default:
536 key = C320_key;
537 keycode = C320_KeyCode;
538 loadbuf = C320_LoadBuf;
539 loadlen = C320DLoad_len;
540 checksum = C320check_sum;
541 checksum_ok = C320chksum_ok;
542 break;
03718234 543 }
03718234
JS
544
545 usum = 0;
546 wlen = len >> 1;
547 for (i = 0; i < wlen; i++)
548 usum += le16_to_cpu(uptr[i]);
549 retry = 0;
550 do {
551 wlen = len >> 1;
552 j = 0;
553 while (wlen) {
554 len2 = (wlen > 2048) ? 2048 : wlen;
555 wlen -= len2;
5292bcd3 556 memcpy_toio(baseAddr + loadbuf, ptr + j, len2 << 1);
03718234 557 j += len2 << 1;
5292bcd3
JS
558
559 writew(len2, baseAddr + loadlen);
560 writew(0, baseAddr + key);
561 for (i = 0; i < 100; i++) {
562 if (readw(baseAddr + key) == keycode)
03718234
JS
563 break;
564 msleep(10);
565 }
5292bcd3 566 if (readw(baseAddr + key) != keycode)
03718234
JS
567 return -EIO;
568 }
5292bcd3
JS
569 writew(0, baseAddr + loadlen);
570 writew(usum, baseAddr + checksum);
571 writew(0, baseAddr + key);
572 for (i = 0; i < 100; i++) {
573 if (readw(baseAddr + key) == keycode)
03718234
JS
574 break;
575 msleep(10);
576 }
577 retry++;
5292bcd3
JS
578 } while ((readb(baseAddr + checksum_ok) != 1) && (retry < 3));
579 if (readb(baseAddr + checksum_ok) != 1)
03718234
JS
580 return -EIO;
581
5292bcd3 582 writew(0, baseAddr + key);
03718234
JS
583 for (i = 0; i < 600; i++) {
584 if (readw(baseAddr + Magic_no) == Magic_code)
585 break;
586 msleep(10);
587 }
588 if (readw(baseAddr + Magic_no) != Magic_code)
589 return -EIO;
590
08d01c79 591 if (MOXA_IS_320(brd)) {
5292bcd3
JS
592 if (brd->busType == MOXA_BUS_TYPE_PCI) { /* ASIC board */
593 writew(0x3800, baseAddr + TMS320_PORT1);
594 writew(0x3900, baseAddr + TMS320_PORT2);
595 writew(28499, baseAddr + TMS320_CLOCK);
596 } else {
597 writew(0x3200, baseAddr + TMS320_PORT1);
598 writew(0x3400, baseAddr + TMS320_PORT2);
599 writew(19999, baseAddr + TMS320_CLOCK);
600 }
03718234
JS
601 }
602 writew(1, baseAddr + Disable_IRQ);
603 writew(0, baseAddr + Magic_no);
604 for (i = 0; i < 500; i++) {
605 if (readw(baseAddr + Magic_no) == Magic_code)
606 break;
607 msleep(10);
608 }
609 if (readw(baseAddr + Magic_no) != Magic_code)
610 return -EIO;
611
08d01c79 612 if (MOXA_IS_320(brd)) {
5292bcd3
JS
613 j = readw(baseAddr + Module_cnt);
614 if (j <= 0)
615 return -EIO;
616 brd->numPorts = j * 8;
617 writew(j, baseAddr + Module_no);
618 writew(0, baseAddr + Magic_no);
619 for (i = 0; i < 600; i++) {
620 if (readw(baseAddr + Magic_no) == Magic_code)
621 break;
622 msleep(10);
623 }
624 if (readw(baseAddr + Magic_no) != Magic_code)
625 return -EIO;
03718234 626 }
03718234
JS
627 brd->intNdx = baseAddr + IRQindex;
628 brd->intPend = baseAddr + IRQpending;
629 brd->intTable = baseAddr + IRQtable;
630
631 return 0;
632}
633
634static int moxa_load_code(struct moxa_board_conf *brd, const void *ptr,
635 size_t len)
636{
637 void __iomem *ofsAddr, *baseAddr = brd->basemem;
638 struct moxa_port *port;
639 int retval, i;
640
641 if (len % 2) {
eaa95a8d 642 printk(KERN_ERR "MOXA: bios length is not even\n");
03718234
JS
643 return -EINVAL;
644 }
645
5292bcd3
JS
646 retval = moxa_real_load_code(brd, ptr, len); /* may change numPorts */
647 if (retval)
648 return retval;
649
03718234
JS
650 switch (brd->boardType) {
651 case MOXA_BOARD_C218_ISA:
652 case MOXA_BOARD_C218_PCI:
653 case MOXA_BOARD_CP204J:
03718234
JS
654 port = brd->ports;
655 for (i = 0; i < brd->numPorts; i++, port++) {
b4173f45 656 port->board = brd;
03718234
JS
657 port->DCDState = 0;
658 port->tableAddr = baseAddr + Extern_table +
659 Extern_size * i;
660 ofsAddr = port->tableAddr;
661 writew(C218rx_mask, ofsAddr + RX_mask);
662 writew(C218tx_mask, ofsAddr + TX_mask);
663 writew(C218rx_spage + i * C218buf_pageno, ofsAddr + Page_rxb);
664 writew(readw(ofsAddr + Page_rxb) + C218rx_pageno, ofsAddr + EndPage_rxb);
665
666 writew(C218tx_spage + i * C218buf_pageno, ofsAddr + Page_txb);
667 writew(readw(ofsAddr + Page_txb) + C218tx_pageno, ofsAddr + EndPage_txb);
668
669 }
670 break;
671 default:
03718234
JS
672 port = brd->ports;
673 for (i = 0; i < brd->numPorts; i++, port++) {
b4173f45 674 port->board = brd;
03718234
JS
675 port->DCDState = 0;
676 port->tableAddr = baseAddr + Extern_table +
677 Extern_size * i;
678 ofsAddr = port->tableAddr;
679 switch (brd->numPorts) {
680 case 8:
681 writew(C320p8rx_mask, ofsAddr + RX_mask);
682 writew(C320p8tx_mask, ofsAddr + TX_mask);
683 writew(C320p8rx_spage + i * C320p8buf_pgno, ofsAddr + Page_rxb);
684 writew(readw(ofsAddr + Page_rxb) + C320p8rx_pgno, ofsAddr + EndPage_rxb);
685 writew(C320p8tx_spage + i * C320p8buf_pgno, ofsAddr + Page_txb);
686 writew(readw(ofsAddr + Page_txb) + C320p8tx_pgno, ofsAddr + EndPage_txb);
687
688 break;
689 case 16:
690 writew(C320p16rx_mask, ofsAddr + RX_mask);
691 writew(C320p16tx_mask, ofsAddr + TX_mask);
692 writew(C320p16rx_spage + i * C320p16buf_pgno, ofsAddr + Page_rxb);
693 writew(readw(ofsAddr + Page_rxb) + C320p16rx_pgno, ofsAddr + EndPage_rxb);
694 writew(C320p16tx_spage + i * C320p16buf_pgno, ofsAddr + Page_txb);
695 writew(readw(ofsAddr + Page_txb) + C320p16tx_pgno, ofsAddr + EndPage_txb);
696 break;
697
698 case 24:
699 writew(C320p24rx_mask, ofsAddr + RX_mask);
700 writew(C320p24tx_mask, ofsAddr + TX_mask);
701 writew(C320p24rx_spage + i * C320p24buf_pgno, ofsAddr + Page_rxb);
702 writew(readw(ofsAddr + Page_rxb) + C320p24rx_pgno, ofsAddr + EndPage_rxb);
703 writew(C320p24tx_spage + i * C320p24buf_pgno, ofsAddr + Page_txb);
704 writew(readw(ofsAddr + Page_txb), ofsAddr + EndPage_txb);
705 break;
706 case 32:
707 writew(C320p32rx_mask, ofsAddr + RX_mask);
708 writew(C320p32tx_mask, ofsAddr + TX_mask);
709 writew(C320p32tx_ofs, ofsAddr + Ofs_txb);
710 writew(C320p32rx_spage + i * C320p32buf_pgno, ofsAddr + Page_rxb);
711 writew(readb(ofsAddr + Page_rxb), ofsAddr + EndPage_rxb);
712 writew(C320p32tx_spage + i * C320p32buf_pgno, ofsAddr + Page_txb);
713 writew(readw(ofsAddr + Page_txb), ofsAddr + EndPage_txb);
714 break;
715 }
716 }
717 break;
718 }
03718234
JS
719 return 0;
720}
721
722static int moxa_load_fw(struct moxa_board_conf *brd, const struct firmware *fw)
723{
724 void *ptr = fw->data;
725 char rsn[64];
726 u16 lens[5];
727 size_t len;
728 unsigned int a, lenp, lencnt;
729 int ret = -EINVAL;
730 struct {
731 __le32 magic; /* 0x34303430 */
732 u8 reserved1[2];
733 u8 type; /* UNIX = 3 */
734 u8 model; /* C218T=1, C320T=2, CP204=3 */
735 u8 reserved2[8];
736 __le16 len[5];
737 } *hdr = ptr;
738
739 BUILD_BUG_ON(ARRAY_SIZE(hdr->len) != ARRAY_SIZE(lens));
740
741 if (fw->size < MOXA_FW_HDRLEN) {
742 strcpy(rsn, "too short (even header won't fit)");
743 goto err;
744 }
745 if (hdr->magic != cpu_to_le32(0x30343034)) {
746 sprintf(rsn, "bad magic: %.8x", le32_to_cpu(hdr->magic));
747 goto err;
748 }
749 if (hdr->type != 3) {
750 sprintf(rsn, "not for linux, type is %u", hdr->type);
751 goto err;
752 }
753 if (moxa_check_fw_model(brd, hdr->model)) {
754 sprintf(rsn, "not for this card, model is %u", hdr->model);
755 goto err;
756 }
757
758 len = MOXA_FW_HDRLEN;
759 lencnt = hdr->model == 2 ? 5 : 3;
760 for (a = 0; a < ARRAY_SIZE(lens); a++) {
761 lens[a] = le16_to_cpu(hdr->len[a]);
762 if (lens[a] && len + lens[a] <= fw->size &&
763 moxa_check_fw(&fw->data[len]))
eaa95a8d 764 printk(KERN_WARNING "MOXA firmware: unexpected input "
03718234
JS
765 "at offset %u, but going on\n", (u32)len);
766 if (!lens[a] && a < lencnt) {
767 sprintf(rsn, "too few entries in fw file");
768 goto err;
769 }
770 len += lens[a];
771 }
772
773 if (len != fw->size) {
774 sprintf(rsn, "bad length: %u (should be %u)", (u32)fw->size,
775 (u32)len);
776 goto err;
777 }
778
779 ptr += MOXA_FW_HDRLEN;
780 lenp = 0; /* bios */
781
782 strcpy(rsn, "read above");
783
784 ret = moxa_load_bios(brd, ptr, lens[lenp]);
785 if (ret)
786 goto err;
787
788 /* we skip the tty section (lens[1]), since we don't need it */
789 ptr += lens[lenp] + lens[lenp + 1];
790 lenp += 2; /* comm */
791
792 if (hdr->model == 2) {
793 ret = moxa_load_320b(brd, ptr, lens[lenp]);
794 if (ret)
795 goto err;
796 /* skip another tty */
797 ptr += lens[lenp] + lens[lenp + 1];
798 lenp += 2;
799 }
800
801 ret = moxa_load_code(brd, ptr, lens[lenp]);
802 if (ret)
803 goto err;
804
805 return 0;
806err:
807 printk(KERN_ERR "firmware failed to load, reason: %s\n", rsn);
808 return ret;
809}
810
811static int moxa_init_board(struct moxa_board_conf *brd, struct device *dev)
812{
813 const struct firmware *fw;
814 const char *file;
810ab09b
JS
815 struct moxa_port *p;
816 unsigned int i;
03718234
JS
817 int ret;
818
810ab09b
JS
819 brd->ports = kcalloc(MAX_PORTS_PER_BOARD, sizeof(*brd->ports),
820 GFP_KERNEL);
821 if (brd->ports == NULL) {
822 printk(KERN_ERR "cannot allocate memory for ports\n");
823 ret = -ENOMEM;
824 goto err;
825 }
826
827 for (i = 0, p = brd->ports; i < MAX_PORTS_PER_BOARD; i++, p++) {
828 p->type = PORT_16550A;
829 p->close_delay = 5 * HZ / 10;
830 p->cflag = B9600 | CS8 | CREAD | CLOCAL | HUPCL;
831 init_waitqueue_head(&p->open_wait);
810ab09b
JS
832 }
833
03718234
JS
834 switch (brd->boardType) {
835 case MOXA_BOARD_C218_ISA:
836 case MOXA_BOARD_C218_PCI:
837 file = "c218tunx.cod";
838 break;
839 case MOXA_BOARD_CP204J:
840 file = "cp204unx.cod";
841 break;
842 default:
843 file = "c320tunx.cod";
844 break;
845 }
846
847 ret = request_firmware(&fw, file, dev);
848 if (ret) {
849 printk(KERN_ERR "request_firmware failed\n");
810ab09b 850 goto err_free;
03718234
JS
851 }
852
853 ret = moxa_load_fw(brd, fw);
854
855 release_firmware(fw);
810ab09b
JS
856
857 if (ret)
858 goto err_free;
859
2a541341 860 spin_lock_bh(&moxa_lock);
810ab09b 861 brd->ready = 1;
0bcc4caa
JS
862 if (!timer_pending(&moxaTimer))
863 mod_timer(&moxaTimer, jiffies + HZ / 50);
2a541341 864 spin_unlock_bh(&moxa_lock);
0bcc4caa 865
810ab09b
JS
866 return 0;
867err_free:
868 kfree(brd->ports);
869err:
03718234
JS
870 return ret;
871}
872
810ab09b
JS
873static void moxa_board_deinit(struct moxa_board_conf *brd)
874{
a8f5cda0
JS
875 unsigned int a, opened;
876
877 mutex_lock(&moxa_openlock);
7bcf97d1 878 spin_lock_bh(&moxa_lock);
810ab09b 879 brd->ready = 0;
7bcf97d1 880 spin_unlock_bh(&moxa_lock);
a8f5cda0
JS
881
882 /* pci hot-un-plug support */
883 for (a = 0; a < brd->numPorts; a++)
884 if (brd->ports[a].asyncflags & ASYNC_INITIALIZED)
885 tty_hangup(brd->ports[a].tty);
886 while (1) {
887 opened = 0;
888 for (a = 0; a < brd->numPorts; a++)
889 if (brd->ports[a].asyncflags & ASYNC_INITIALIZED)
890 opened++;
891 mutex_unlock(&moxa_openlock);
892 if (!opened)
893 break;
894 msleep(50);
895 mutex_lock(&moxa_openlock);
896 }
897
810ab09b
JS
898 iounmap(brd->basemem);
899 brd->basemem = NULL;
900 kfree(brd->ports);
901}
902
1da177e4 903#ifdef CONFIG_PCI
9cde5bf0
JS
904static int __devinit moxa_pci_probe(struct pci_dev *pdev,
905 const struct pci_device_id *ent)
1da177e4 906{
9cde5bf0
JS
907 struct moxa_board_conf *board;
908 unsigned int i;
909 int board_type = ent->driver_data;
910 int retval;
911
912 retval = pci_enable_device(pdev);
7aeb95da
JS
913 if (retval) {
914 dev_err(&pdev->dev, "can't enable pci device\n");
9cde5bf0 915 goto err;
7aeb95da 916 }
9cde5bf0
JS
917
918 for (i = 0; i < MAX_BOARDS; i++)
919 if (moxa_boards[i].basemem == NULL)
920 break;
921
922 retval = -ENODEV;
923 if (i >= MAX_BOARDS) {
7aeb95da 924 dev_warn(&pdev->dev, "more than %u MOXA Intellio family boards "
9cde5bf0
JS
925 "found. Board is ignored.\n", MAX_BOARDS);
926 goto err;
927 }
928
929 board = &moxa_boards[i];
e46a5e3f
JS
930
931 retval = pci_request_region(pdev, 2, "moxa-base");
932 if (retval) {
933 dev_err(&pdev->dev, "can't request pci region 2\n");
934 goto err;
935 }
936
937 board->basemem = ioremap(pci_resource_start(pdev, 2), 0x4000);
7aeb95da
JS
938 if (board->basemem == NULL) {
939 dev_err(&pdev->dev, "can't remap io space 2\n");
e46a5e3f 940 goto err_reg;
7aeb95da 941 }
9cde5bf0 942
1da177e4
LT
943 board->boardType = board_type;
944 switch (board_type) {
945 case MOXA_BOARD_C218_ISA:
946 case MOXA_BOARD_C218_PCI:
947 board->numPorts = 8;
948 break;
949
950 case MOXA_BOARD_CP204J:
951 board->numPorts = 4;
952 break;
953 default:
954 board->numPorts = 0;
955 break;
956 }
957 board->busType = MOXA_BUS_TYPE_PCI;
a784bf7c 958
03718234
JS
959 retval = moxa_init_board(board, &pdev->dev);
960 if (retval)
961 goto err_base;
962
9cde5bf0 963 pci_set_drvdata(pdev, board);
1da177e4 964
bb9f910a
JS
965 dev_info(&pdev->dev, "board '%s' ready (%u ports, firmware loaded)\n",
966 moxa_brdname[board_type - 1], board->numPorts);
967
eaa95a8d 968 return 0;
03718234
JS
969err_base:
970 iounmap(board->basemem);
971 board->basemem = NULL;
e46a5e3f
JS
972err_reg:
973 pci_release_region(pdev, 2);
9cde5bf0
JS
974err:
975 return retval;
976}
977
978static void __devexit moxa_pci_remove(struct pci_dev *pdev)
979{
980 struct moxa_board_conf *brd = pci_get_drvdata(pdev);
981
810ab09b
JS
982 moxa_board_deinit(brd);
983
e46a5e3f 984 pci_release_region(pdev, 2);
1da177e4 985}
a784bf7c
JS
986
987static struct pci_driver moxa_pci_driver = {
988 .name = "moxa",
989 .id_table = moxa_pcibrds,
990 .probe = moxa_pci_probe,
991 .remove = __devexit_p(moxa_pci_remove)
992};
1da177e4
LT
993#endif /* CONFIG_PCI */
994
995static int __init moxa_init(void)
996{
810ab09b 997 unsigned int isabrds = 0;
d353eca4 998 int retval = 0;
1da177e4 999
7aeb95da
JS
1000 printk(KERN_INFO "MOXA Intellio family driver version %s\n",
1001 MOXA_VERSION);
1da177e4
LT
1002 moxaDriver = alloc_tty_driver(MAX_PORTS + 1);
1003 if (!moxaDriver)
1004 return -ENOMEM;
1005
1da177e4 1006 moxaDriver->owner = THIS_MODULE;
9b4e3b13 1007 moxaDriver->name = "ttyMX";
1da177e4
LT
1008 moxaDriver->major = ttymajor;
1009 moxaDriver->minor_start = 0;
1010 moxaDriver->type = TTY_DRIVER_TYPE_SERIAL;
1011 moxaDriver->subtype = SERIAL_TYPE_NORMAL;
1012 moxaDriver->init_termios = tty_std_termios;
1da177e4 1013 moxaDriver->init_termios.c_cflag = B9600 | CS8 | CREAD | CLOCAL | HUPCL;
606d099c
AC
1014 moxaDriver->init_termios.c_ispeed = 9600;
1015 moxaDriver->init_termios.c_ospeed = 9600;
1da177e4
LT
1016 moxaDriver->flags = TTY_DRIVER_REAL_RAW;
1017 tty_set_operations(moxaDriver, &moxa_ops);
1018
1da177e4 1019 if (tty_register_driver(moxaDriver)) {
eaa95a8d 1020 printk(KERN_ERR "can't register MOXA Smartio tty driver!\n");
1da177e4
LT
1021 put_tty_driver(moxaDriver);
1022 return -1;
1023 }
1da177e4 1024
d353eca4 1025 /* Find the boards defined from module args. */
1da177e4 1026#ifdef MODULE
d353eca4
JS
1027 {
1028 struct moxa_board_conf *brd = moxa_boards;
810ab09b 1029 unsigned int i;
1da177e4 1030 for (i = 0; i < MAX_BOARDS; i++) {
d353eca4
JS
1031 if (!baseaddr[i])
1032 break;
1033 if (type[i] == MOXA_BOARD_C218_ISA ||
1034 type[i] == MOXA_BOARD_C320_ISA) {
7aeb95da 1035 pr_debug("Moxa board %2d: %s board(baseAddr=%lx)\n",
d353eca4
JS
1036 isabrds + 1, moxa_brdname[type[i] - 1],
1037 baseaddr[i]);
1038 brd->boardType = type[i];
1039 brd->numPorts = type[i] == MOXA_BOARD_C218_ISA ? 8 :
1040 numports[i];
1041 brd->busType = MOXA_BUS_TYPE_ISA;
1042 brd->basemem = ioremap(baseaddr[i], 0x4000);
1043 if (!brd->basemem) {
eaa95a8d 1044 printk(KERN_ERR "MOXA: can't remap %lx\n",
d353eca4 1045 baseaddr[i]);
1da177e4
LT
1046 continue;
1047 }
03718234
JS
1048 if (moxa_init_board(brd, NULL)) {
1049 iounmap(brd->basemem);
1050 brd->basemem = NULL;
1051 continue;
1052 }
d353eca4 1053
bb9f910a
JS
1054 printk(KERN_INFO "MOXA isa board found at 0x%.8lu and "
1055 "ready (%u ports, firmware loaded)\n",
1056 baseaddr[i], brd->numPorts);
1057
d353eca4
JS
1058 brd++;
1059 isabrds++;
1da177e4
LT
1060 }
1061 }
d353eca4 1062 }
1da177e4 1063#endif
a784bf7c 1064
1da177e4 1065#ifdef CONFIG_PCI
a784bf7c
JS
1066 retval = pci_register_driver(&moxa_pci_driver);
1067 if (retval) {
eaa95a8d 1068 printk(KERN_ERR "Can't register MOXA pci driver!\n");
d353eca4 1069 if (isabrds)
a784bf7c 1070 retval = 0;
1da177e4
LT
1071 }
1072#endif
a784bf7c 1073
a784bf7c 1074 return retval;
1da177e4
LT
1075}
1076
1077static void __exit moxa_exit(void)
1078{
eaa95a8d 1079 unsigned int i;
1da177e4 1080
9cde5bf0 1081#ifdef CONFIG_PCI
a784bf7c 1082 pci_unregister_driver(&moxa_pci_driver);
9cde5bf0 1083#endif
a784bf7c 1084
810ab09b
JS
1085 for (i = 0; i < MAX_BOARDS; i++) /* ISA boards */
1086 if (moxa_boards[i].ready)
1087 moxa_board_deinit(&moxa_boards[i]);
2a541341
JS
1088
1089 del_timer_sync(&moxaTimer);
1090
1091 if (tty_unregister_driver(moxaDriver))
1092 printk(KERN_ERR "Couldn't unregister MOXA Intellio family "
1093 "serial driver\n");
1094 put_tty_driver(moxaDriver);
1da177e4
LT
1095}
1096
1097module_init(moxa_init);
1098module_exit(moxa_exit);
1099
a8f5cda0
JS
1100static void moxa_close_port(struct moxa_port *ch)
1101{
1102 moxa_shut_down(ch);
1103 MoxaPortFlushData(ch, 2);
1104 ch->asyncflags &= ~ASYNC_NORMAL_ACTIVE;
1105 ch->tty->driver_data = NULL;
1106 ch->tty = NULL;
1107}
1108
1109static int moxa_block_till_ready(struct tty_struct *tty, struct file *filp,
1110 struct moxa_port *ch)
1111{
1112 DEFINE_WAIT(wait);
1113 int retval = 0;
1114 u8 dcd;
1115
1116 while (1) {
1117 prepare_to_wait(&ch->open_wait, &wait, TASK_INTERRUPTIBLE);
1118 if (tty_hung_up_p(filp)) {
1119#ifdef SERIAL_DO_RESTART
1120 retval = -ERESTARTSYS;
1121#else
1122 retval = -EAGAIN;
1123#endif
1124 break;
1125 }
1126 spin_lock_bh(&moxa_lock);
1127 dcd = ch->DCDState;
1128 spin_unlock_bh(&moxa_lock);
1129 if (dcd)
1130 break;
1131
1132 if (signal_pending(current)) {
1133 retval = -ERESTARTSYS;
1134 break;
1135 }
1136 schedule();
1137 }
1138 finish_wait(&ch->open_wait, &wait);
1139
1140 return retval;
1141}
1142
1da177e4
LT
1143static int moxa_open(struct tty_struct *tty, struct file *filp)
1144{
810ab09b 1145 struct moxa_board_conf *brd;
8f8ecbad 1146 struct moxa_port *ch;
1da177e4
LT
1147 int port;
1148 int retval;
1da177e4 1149
11324edd 1150 port = tty->index;
1da177e4 1151 if (port == MAX_PORTS) {
74d7d97b 1152 return capable(CAP_SYS_ADMIN) ? 0 : -EPERM;
1da177e4 1153 }
a8f5cda0
JS
1154 if (mutex_lock_interruptible(&moxa_openlock))
1155 return -ERESTARTSYS;
810ab09b 1156 brd = &moxa_boards[port / MAX_PORTS_PER_BOARD];
a8f5cda0
JS
1157 if (!brd->ready) {
1158 mutex_unlock(&moxa_openlock);
810ab09b 1159 return -ENODEV;
a8f5cda0 1160 }
1da177e4 1161
810ab09b 1162 ch = &brd->ports[port % MAX_PORTS_PER_BOARD];
1da177e4
LT
1163 ch->count++;
1164 tty->driver_data = ch;
1165 ch->tty = tty;
1166 if (!(ch->asyncflags & ASYNC_INITIALIZED)) {
1167 ch->statusflags = 0;
db1acaa6 1168 moxa_set_tty_param(tty, tty->termios);
b4173f45
JS
1169 MoxaPortLineCtrl(ch, 1, 1);
1170 MoxaPortEnable(ch);
a8f5cda0 1171 MoxaSetFifo(ch, ch->type == PORT_16550A);
1da177e4
LT
1172 ch->asyncflags |= ASYNC_INITIALIZED;
1173 }
a8f5cda0 1174 mutex_unlock(&moxa_openlock);
1da177e4 1175
a8f5cda0
JS
1176 retval = 0;
1177 if (!(filp->f_flags & O_NONBLOCK) && !C_CLOCAL(tty))
1178 retval = moxa_block_till_ready(tty, filp, ch);
1179 mutex_lock(&moxa_openlock);
1180 if (retval) {
1181 if (ch->count) /* 0 means already hung up... */
1182 if (--ch->count == 0)
1183 moxa_close_port(ch);
1184 } else
1185 ch->asyncflags |= ASYNC_NORMAL_ACTIVE;
1186 mutex_unlock(&moxa_openlock);
1da177e4 1187
a8f5cda0 1188 return retval;
1da177e4
LT
1189}
1190
1191static void moxa_close(struct tty_struct *tty, struct file *filp)
1192{
8f8ecbad 1193 struct moxa_port *ch;
1da177e4
LT
1194 int port;
1195
11324edd 1196 port = tty->index;
a8f5cda0 1197 if (port == MAX_PORTS || tty_hung_up_p(filp))
1da177e4 1198 return;
1da177e4 1199
a8f5cda0
JS
1200 mutex_lock(&moxa_openlock);
1201 ch = tty->driver_data;
1202 if (ch == NULL)
1203 goto unlock;
1204 if (tty->count == 1 && ch->count != 1) {
7aeb95da
JS
1205 printk(KERN_WARNING "moxa_close: bad serial port count; "
1206 "tty->count is 1, ch->count is %d\n", ch->count);
1da177e4
LT
1207 ch->count = 1;
1208 }
1209 if (--ch->count < 0) {
7aeb95da
JS
1210 printk(KERN_WARNING "moxa_close: bad serial port count, "
1211 "device=%s\n", tty->name);
1da177e4
LT
1212 ch->count = 0;
1213 }
a8f5cda0
JS
1214 if (ch->count)
1215 goto unlock;
1da177e4
LT
1216
1217 ch->cflag = tty->termios->c_cflag;
1218 if (ch->asyncflags & ASYNC_INITIALIZED) {
6f56b658 1219 moxa_setup_empty_event(tty);
1da177e4 1220 tty_wait_until_sent(tty, 30 * HZ); /* 30 seconds timeout */
1da177e4 1221 }
1da177e4 1222
a8f5cda0
JS
1223 moxa_close_port(ch);
1224unlock:
1225 mutex_unlock(&moxa_openlock);
1da177e4
LT
1226}
1227
1228static int moxa_write(struct tty_struct *tty,
1229 const unsigned char *buf, int count)
1230{
b4173f45 1231 struct moxa_port *ch = tty->driver_data;
b4173f45 1232 int len;
1da177e4 1233
1da177e4 1234 if (ch == NULL)
b4173f45 1235 return 0;
33f0f88f 1236
7bcf97d1 1237 spin_lock_bh(&moxa_lock);
2108eba5 1238 len = MoxaPortWriteData(ch, buf, count);
7bcf97d1 1239 spin_unlock_bh(&moxa_lock);
1da177e4 1240
1da177e4 1241 ch->statusflags |= LOWWAIT;
eaa95a8d 1242 return len;
1da177e4
LT
1243}
1244
1245static int moxa_write_room(struct tty_struct *tty)
1246{
8f8ecbad 1247 struct moxa_port *ch;
1da177e4
LT
1248
1249 if (tty->stopped)
eaa95a8d 1250 return 0;
b4173f45 1251 ch = tty->driver_data;
1da177e4 1252 if (ch == NULL)
eaa95a8d 1253 return 0;
b4173f45 1254 return MoxaPortTxFree(ch);
1da177e4
LT
1255}
1256
1257static void moxa_flush_buffer(struct tty_struct *tty)
1258{
b4173f45 1259 struct moxa_port *ch = tty->driver_data;
1da177e4
LT
1260
1261 if (ch == NULL)
1262 return;
b4173f45 1263 MoxaPortFlushData(ch, 1);
1da177e4
LT
1264 tty_wakeup(tty);
1265}
1266
1267static int moxa_chars_in_buffer(struct tty_struct *tty)
1268{
b4173f45 1269 struct moxa_port *ch = tty->driver_data;
1da177e4 1270 int chars;
1da177e4
LT
1271
1272 /*
1273 * Sigh...I have to check if driver_data is NULL here, because
1274 * if an open() fails, the TTY subsystem eventually calls
1275 * tty_wait_until_sent(), which calls the driver's chars_in_buffer()
1276 * routine. And since the open() failed, we return 0 here. TDJ
1277 */
1278 if (ch == NULL)
eaa95a8d 1279 return 0;
b4173f45 1280 chars = MoxaPortTxQueue(ch);
1da177e4
LT
1281 if (chars) {
1282 /*
1283 * Make it possible to wakeup anything waiting for output
1284 * in tty_ioctl.c, etc.
1285 */
1286 if (!(ch->statusflags & EMPTYWAIT))
6f56b658 1287 moxa_setup_empty_event(tty);
1da177e4 1288 }
eaa95a8d 1289 return chars;
1da177e4
LT
1290}
1291
1da177e4
LT
1292static int moxa_tiocmget(struct tty_struct *tty, struct file *file)
1293{
a8f5cda0 1294 struct moxa_port *ch;
1da177e4
LT
1295 int flag = 0, dtr, rts;
1296
a8f5cda0
JS
1297 mutex_lock(&moxa_openlock);
1298 ch = tty->driver_data;
1299 if (!ch) {
1300 mutex_unlock(&moxa_openlock);
74d7d97b 1301 return -EINVAL;
a8f5cda0 1302 }
1da177e4 1303
b4173f45 1304 MoxaPortGetLineOut(ch, &dtr, &rts);
1da177e4
LT
1305 if (dtr)
1306 flag |= TIOCM_DTR;
1307 if (rts)
1308 flag |= TIOCM_RTS;
b4173f45 1309 dtr = MoxaPortLineStatus(ch);
1da177e4
LT
1310 if (dtr & 1)
1311 flag |= TIOCM_CTS;
1312 if (dtr & 2)
1313 flag |= TIOCM_DSR;
1314 if (dtr & 4)
1315 flag |= TIOCM_CD;
a8f5cda0 1316 mutex_unlock(&moxa_openlock);
1da177e4
LT
1317 return flag;
1318}
1319
1320static int moxa_tiocmset(struct tty_struct *tty, struct file *file,
1321 unsigned int set, unsigned int clear)
1322{
a8f5cda0 1323 struct moxa_port *ch;
1da177e4
LT
1324 int port;
1325 int dtr, rts;
1326
11324edd 1327 port = tty->index;
a8f5cda0
JS
1328 mutex_lock(&moxa_openlock);
1329 ch = tty->driver_data;
1330 if (!ch) {
1331 mutex_unlock(&moxa_openlock);
74d7d97b 1332 return -EINVAL;
a8f5cda0 1333 }
1da177e4 1334
b4173f45 1335 MoxaPortGetLineOut(ch, &dtr, &rts);
1da177e4
LT
1336 if (set & TIOCM_RTS)
1337 rts = 1;
1338 if (set & TIOCM_DTR)
1339 dtr = 1;
1340 if (clear & TIOCM_RTS)
1341 rts = 0;
1342 if (clear & TIOCM_DTR)
1343 dtr = 0;
b4173f45 1344 MoxaPortLineCtrl(ch, dtr, rts);
a8f5cda0 1345 mutex_unlock(&moxa_openlock);
1da177e4
LT
1346 return 0;
1347}
1348
1da177e4
LT
1349static void moxa_throttle(struct tty_struct *tty)
1350{
eaa95a8d 1351 struct moxa_port *ch = tty->driver_data;
1da177e4
LT
1352
1353 ch->statusflags |= THROTTLE;
1354}
1355
1356static void moxa_unthrottle(struct tty_struct *tty)
1357{
eaa95a8d 1358 struct moxa_port *ch = tty->driver_data;
1da177e4
LT
1359
1360 ch->statusflags &= ~THROTTLE;
1361}
1362
1363static void moxa_set_termios(struct tty_struct *tty,
eaa95a8d 1364 struct ktermios *old_termios)
1da177e4 1365{
eaa95a8d 1366 struct moxa_port *ch = tty->driver_data;
1da177e4
LT
1367
1368 if (ch == NULL)
1369 return;
db1acaa6 1370 moxa_set_tty_param(tty, old_termios);
eaa95a8d 1371 if (!(old_termios->c_cflag & CLOCAL) && C_CLOCAL(tty))
1da177e4
LT
1372 wake_up_interruptible(&ch->open_wait);
1373}
1374
1375static void moxa_stop(struct tty_struct *tty)
1376{
eaa95a8d 1377 struct moxa_port *ch = tty->driver_data;
1da177e4
LT
1378
1379 if (ch == NULL)
1380 return;
b4173f45 1381 MoxaPortTxDisable(ch);
1da177e4
LT
1382 ch->statusflags |= TXSTOPPED;
1383}
1384
1385
1386static void moxa_start(struct tty_struct *tty)
1387{
eaa95a8d 1388 struct moxa_port *ch = tty->driver_data;
1da177e4
LT
1389
1390 if (ch == NULL)
1391 return;
1392
1393 if (!(ch->statusflags & TXSTOPPED))
1394 return;
1395
b4173f45 1396 MoxaPortTxEnable(ch);
1da177e4
LT
1397 ch->statusflags &= ~TXSTOPPED;
1398}
1399
1400static void moxa_hangup(struct tty_struct *tty)
1401{
a8f5cda0 1402 struct moxa_port *ch;
1da177e4 1403
a8f5cda0
JS
1404 mutex_lock(&moxa_openlock);
1405 ch = tty->driver_data;
1406 if (ch == NULL) {
1407 mutex_unlock(&moxa_openlock);
1408 return;
1409 }
1da177e4 1410 ch->count = 0;
a8f5cda0
JS
1411 moxa_close_port(ch);
1412 mutex_unlock(&moxa_openlock);
1413
1da177e4
LT
1414 wake_up_interruptible(&ch->open_wait);
1415}
1416
7bcf97d1 1417static void moxa_new_dcdstate(struct moxa_port *p, u8 dcd)
1da177e4 1418{
7bcf97d1 1419 dcd = !!dcd;
1da177e4 1420
eaa95a8d 1421 if (dcd != p->DCDState && p->tty && C_CLOCAL(p->tty)) {
a8f5cda0 1422 if (!dcd)
7bcf97d1 1423 tty_hangup(p->tty);
7bcf97d1
JS
1424 }
1425 p->DCDState = dcd;
1426}
1da177e4 1427
7bcf97d1
JS
1428static int moxa_poll_port(struct moxa_port *p, unsigned int handle,
1429 u16 __iomem *ip)
1430{
1431 struct tty_struct *tty = p->tty;
1432 void __iomem *ofsAddr;
1433 unsigned int inited = p->asyncflags & ASYNC_INITIALIZED;
1434 u16 intr;
1435
1436 if (tty) {
1437 if ((p->statusflags & EMPTYWAIT) &&
1438 MoxaPortTxQueue(p) == 0) {
1439 p->statusflags &= ~EMPTYWAIT;
1440 tty_wakeup(tty);
1441 }
1442 if ((p->statusflags & LOWWAIT) && !tty->stopped &&
1443 MoxaPortTxQueue(p) <= WAKEUP_CHARS) {
1444 p->statusflags &= ~LOWWAIT;
1445 tty_wakeup(tty);
1446 }
1447
1448 if (inited && !(p->statusflags & THROTTLE) &&
1449 MoxaPortRxQueue(p) > 0) { /* RX */
1450 MoxaPortReadData(p);
1451 tty_schedule_flip(tty);
1452 }
1453 } else {
1454 p->statusflags &= ~EMPTYWAIT;
1455 MoxaPortFlushData(p, 0); /* flush RX */
1da177e4 1456 }
0bcc4caa 1457
7bcf97d1
JS
1458 if (!handle) /* nothing else to do */
1459 return 0;
1460
1461 intr = readw(ip); /* port irq status */
1462 if (intr == 0)
1463 return 0;
1464
1465 writew(0, ip); /* ACK port */
1466 ofsAddr = p->tableAddr;
1467 if (intr & IntrTx) /* disable tx intr */
1468 writew(readw(ofsAddr + HostStat) & ~WakeupTx,
1469 ofsAddr + HostStat);
1470
1471 if (!inited)
1472 return 0;
1473
1474 if (tty && (intr & IntrBreak) && !I_IGNBRK(tty)) { /* BREAK */
1475 tty_insert_flip_char(tty, 0, TTY_BREAK);
1476 tty_schedule_flip(tty);
1477 }
1478
1479 if (intr & IntrLine)
1480 moxa_new_dcdstate(p, readb(ofsAddr + FlagStat) & DCD_state);
1481
1482 return 0;
1483}
1484
1485static void moxa_poll(unsigned long ignored)
1486{
1487 struct moxa_board_conf *brd;
1488 u16 __iomem *ip;
2a541341 1489 unsigned int card, port, served = 0;
7bcf97d1
JS
1490
1491 spin_lock(&moxa_lock);
1da177e4 1492 for (card = 0; card < MAX_BOARDS; card++) {
7bcf97d1
JS
1493 brd = &moxa_boards[card];
1494 if (!brd->ready)
1da177e4 1495 continue;
7bcf97d1 1496
2a541341
JS
1497 served++;
1498
7bcf97d1
JS
1499 ip = NULL;
1500 if (readb(brd->intPend) == 0xff)
1501 ip = brd->intTable + readb(brd->intNdx);
1502
1503 for (port = 0; port < brd->numPorts; port++)
1504 moxa_poll_port(&brd->ports[port], !!ip, ip + port);
1505
1506 if (ip)
1507 writeb(0, brd->intPend); /* ACK */
1508
1509 if (moxaLowWaterChk) {
1510 struct moxa_port *p = brd->ports;
1511 for (port = 0; port < brd->numPorts; port++, p++)
1512 if (p->lowChkFlag) {
1513 p->lowChkFlag = 0;
1514 moxa_low_water_check(p->tableAddr);
1da177e4 1515 }
1da177e4
LT
1516 }
1517 }
7bcf97d1 1518 moxaLowWaterChk = 0;
1da177e4 1519
2a541341
JS
1520 if (served)
1521 mod_timer(&moxaTimer, jiffies + HZ / 50);
1522 spin_unlock(&moxa_lock);
1da177e4
LT
1523}
1524
1525/******************************************************************************/
1526
db1acaa6 1527static void moxa_set_tty_param(struct tty_struct *tty, struct ktermios *old_termios)
1da177e4 1528{
eaa95a8d
JS
1529 register struct ktermios *ts = tty->termios;
1530 struct moxa_port *ch = tty->driver_data;
db1acaa6 1531 int rts, cts, txflow, rxflow, xany, baud;
1da177e4 1532
1da177e4
LT
1533 rts = cts = txflow = rxflow = xany = 0;
1534 if (ts->c_cflag & CRTSCTS)
1535 rts = cts = 1;
1536 if (ts->c_iflag & IXON)
1537 txflow = 1;
1538 if (ts->c_iflag & IXOFF)
1539 rxflow = 1;
1540 if (ts->c_iflag & IXANY)
1541 xany = 1;
db1acaa6
AC
1542
1543 /* Clear the features we don't support */
1544 ts->c_cflag &= ~CMSPAR;
b4173f45
JS
1545 MoxaPortFlowCtrl(ch, rts, cts, txflow, rxflow, xany);
1546 baud = MoxaPortSetTermio(ch, ts, tty_get_baud_rate(tty));
db1acaa6
AC
1547 if (baud == -1)
1548 baud = tty_termios_baud_rate(old_termios);
1549 /* Not put the baud rate into the termios data */
1550 tty_encode_baud_rate(tty, baud, baud);
1da177e4
LT
1551}
1552
6f56b658 1553static void moxa_setup_empty_event(struct tty_struct *tty)
1da177e4 1554{
8f8ecbad 1555 struct moxa_port *ch = tty->driver_data;
1da177e4 1556
7bcf97d1 1557 spin_lock_bh(&moxa_lock);
1da177e4 1558 ch->statusflags |= EMPTYWAIT;
7bcf97d1 1559 spin_unlock_bh(&moxa_lock);
1da177e4
LT
1560}
1561
6f56b658 1562static void moxa_shut_down(struct moxa_port *ch)
1da177e4 1563{
a8f5cda0 1564 struct tty_struct *tp = ch->tty;
1da177e4
LT
1565
1566 if (!(ch->asyncflags & ASYNC_INITIALIZED))
1567 return;
1568
b4173f45 1569 MoxaPortDisable(ch);
1da177e4
LT
1570
1571 /*
1572 * If we're a modem control device and HUPCL is on, drop RTS & DTR.
1573 */
a8f5cda0 1574 if (C_HUPCL(tp))
b4173f45 1575 MoxaPortLineCtrl(ch, 0, 0);
1da177e4 1576
a8f5cda0 1577 spin_lock_bh(&moxa_lock);
1da177e4 1578 ch->asyncflags &= ~ASYNC_INITIALIZED;
a8f5cda0 1579 spin_unlock_bh(&moxa_lock);
1da177e4
LT
1580}
1581
1da177e4
LT
1582/*****************************************************************************
1583 * Driver level functions: *
1da177e4 1584 *****************************************************************************/
1da177e4 1585
b4173f45 1586static void MoxaPortFlushData(struct moxa_port *port, int mode)
1da177e4
LT
1587{
1588 void __iomem *ofsAddr;
eaa95a8d 1589 if (mode < 0 || mode > 2)
1da177e4 1590 return;
b4173f45 1591 ofsAddr = port->tableAddr;
1da177e4
LT
1592 moxafunc(ofsAddr, FC_FlushQueue, mode);
1593 if (mode != 1) {
b4173f45 1594 port->lowChkFlag = 0;
6f56b658 1595 moxa_low_water_check(ofsAddr);
1da177e4
LT
1596 }
1597}
1598
1da177e4
LT
1599/*
1600 * Moxa Port Number Description:
1601 *
1602 * MOXA serial driver supports up to 4 MOXA-C218/C320 boards. And,
1603 * the port number using in MOXA driver functions will be 0 to 31 for
1604 * first MOXA board, 32 to 63 for second, 64 to 95 for third and 96
1605 * to 127 for fourth. For example, if you setup three MOXA boards,
1606 * first board is C218, second board is C320-16 and third board is
1607 * C320-32. The port number of first board (C218 - 8 ports) is from
1608 * 0 to 7. The port number of second board (C320 - 16 ports) is form
1609 * 32 to 47. The port number of third board (C320 - 32 ports) is from
1610 * 64 to 95. And those port numbers form 8 to 31, 48 to 63 and 96 to
1611 * 127 will be invalid.
1612 *
1613 *
1614 * Moxa Functions Description:
1615 *
1616 * Function 1: Driver initialization routine, this routine must be
1617 * called when initialized driver.
1618 * Syntax:
1619 * void MoxaDriverInit();
1620 *
1621 *
1622 * Function 2: Moxa driver private IOCTL command processing.
1623 * Syntax:
1624 * int MoxaDriverIoctl(unsigned int cmd, unsigned long arg, int port);
1625 *
1626 * unsigned int cmd : IOCTL command
1627 * unsigned long arg : IOCTL argument
1628 * int port : port number (0 - 127)
1629 *
1630 * return: 0 (OK)
1631 * -EINVAL
1632 * -ENOIOCTLCMD
1633 *
1634 *
1da177e4
LT
1635 * Function 6: Enable this port to start Tx/Rx data.
1636 * Syntax:
1637 * void MoxaPortEnable(int port);
1638 * int port : port number (0 - 127)
1639 *
1640 *
1641 * Function 7: Disable this port
1642 * Syntax:
1643 * void MoxaPortDisable(int port);
1644 * int port : port number (0 - 127)
1645 *
1646 *
1da177e4
LT
1647 * Function 10: Setting baud rate of this port.
1648 * Syntax:
08d01c79 1649 * speed_t MoxaPortSetBaud(int port, speed_t baud);
1da177e4
LT
1650 * int port : port number (0 - 127)
1651 * long baud : baud rate (50 - 115200)
1652 *
1653 * return: 0 : this port is invalid or baud < 50
1654 * 50 - 115200 : the real baud rate set to the port, if
1655 * the argument baud is large than maximun
1656 * available baud rate, the real setting
1657 * baud rate will be the maximun baud rate.
1658 *
1659 *
1da177e4
LT
1660 * Function 12: Configure the port.
1661 * Syntax:
606d099c 1662 * int MoxaPortSetTermio(int port, struct ktermios *termio, speed_t baud);
1da177e4 1663 * int port : port number (0 - 127)
606d099c 1664 * struct ktermios * termio : termio structure pointer
c7bce309 1665 * speed_t baud : baud rate
1da177e4
LT
1666 *
1667 * return: -1 : this port is invalid or termio == NULL
1668 * 0 : setting O.K.
1669 *
1670 *
1671 * Function 13: Get the DTR/RTS state of this port.
1672 * Syntax:
1673 * int MoxaPortGetLineOut(int port, int *dtrState, int *rtsState);
1674 * int port : port number (0 - 127)
1675 * int * dtrState : pointer to INT to receive the current DTR
1676 * state. (if NULL, this function will not
1677 * write to this address)
1678 * int * rtsState : pointer to INT to receive the current RTS
1679 * state. (if NULL, this function will not
1680 * write to this address)
1681 *
1682 * return: -1 : this port is invalid
1683 * 0 : O.K.
1684 *
1685 *
1686 * Function 14: Setting the DTR/RTS output state of this port.
1687 * Syntax:
1688 * void MoxaPortLineCtrl(int port, int dtrState, int rtsState);
1689 * int port : port number (0 - 127)
1690 * int dtrState : DTR output state (0: off, 1: on)
1691 * int rtsState : RTS output state (0: off, 1: on)
1692 *
1693 *
1694 * Function 15: Setting the flow control of this port.
1695 * Syntax:
1696 * void MoxaPortFlowCtrl(int port, int rtsFlow, int ctsFlow, int rxFlow,
1697 * int txFlow,int xany);
1698 * int port : port number (0 - 127)
1699 * int rtsFlow : H/W RTS flow control (0: no, 1: yes)
1700 * int ctsFlow : H/W CTS flow control (0: no, 1: yes)
1701 * int rxFlow : S/W Rx XON/XOFF flow control (0: no, 1: yes)
1702 * int txFlow : S/W Tx XON/XOFF flow control (0: no, 1: yes)
1703 * int xany : S/W XANY flow control (0: no, 1: yes)
1704 *
1705 *
1706 * Function 16: Get ths line status of this port
1707 * Syntax:
1708 * int MoxaPortLineStatus(int port);
1709 * int port : port number (0 - 127)
1710 *
1711 * return: Bit 0 - CTS state (0: off, 1: on)
1712 * Bit 1 - DSR state (0: off, 1: on)
1713 * Bit 2 - DCD state (0: off, 1: on)
1714 *
1715 *
1da177e4
LT
1716 * Function 19: Flush the Rx/Tx buffer data of this port.
1717 * Syntax:
1718 * void MoxaPortFlushData(int port, int mode);
1719 * int port : port number (0 - 127)
1720 * int mode
1721 * 0 : flush the Rx buffer
1722 * 1 : flush the Tx buffer
1723 * 2 : flush the Rx and Tx buffer
1724 *
1725 *
1726 * Function 20: Write data.
1727 * Syntax:
1728 * int MoxaPortWriteData(int port, unsigned char * buffer, int length);
1729 * int port : port number (0 - 127)
1730 * unsigned char * buffer : pointer to write data buffer.
1731 * int length : write data length
1732 *
1733 * return: 0 - length : real write data length
1734 *
1735 *
1736 * Function 21: Read data.
1737 * Syntax:
33f0f88f 1738 * int MoxaPortReadData(int port, struct tty_struct *tty);
1da177e4 1739 * int port : port number (0 - 127)
33f0f88f 1740 * struct tty_struct *tty : tty for data
1da177e4
LT
1741 *
1742 * return: 0 - length : real read data length
1743 *
1744 *
1da177e4
LT
1745 * Function 24: Get the Tx buffer current queued data bytes
1746 * Syntax:
1747 * int MoxaPortTxQueue(int port);
1748 * int port : port number (0 - 127)
1749 *
1750 * return: .. : Tx buffer current queued data bytes
1751 *
1752 *
1753 * Function 25: Get the Tx buffer current free space
1754 * Syntax:
1755 * int MoxaPortTxFree(int port);
1756 * int port : port number (0 - 127)
1757 *
1758 * return: .. : Tx buffer current free space
1759 *
1760 *
1761 * Function 26: Get the Rx buffer current queued data bytes
1762 * Syntax:
1763 * int MoxaPortRxQueue(int port);
1764 * int port : port number (0 - 127)
1765 *
1766 * return: .. : Rx buffer current queued data bytes
1767 *
1768 *
1da177e4
LT
1769 * Function 28: Disable port data transmission.
1770 * Syntax:
1771 * void MoxaPortTxDisable(int port);
1772 * int port : port number (0 - 127)
1773 *
1774 *
1775 * Function 29: Enable port data transmission.
1776 * Syntax:
1777 * void MoxaPortTxEnable(int port);
1778 * int port : port number (0 - 127)
1779 *
1780 *
1da177e4
LT
1781 * Function 31: Get the received BREAK signal count and reset it.
1782 * Syntax:
1783 * int MoxaPortResetBrkCnt(int port);
1784 * int port : port number (0 - 127)
1785 *
1786 * return: 0 - .. : BREAK signal count
1787 *
1788 *
1da177e4 1789 */
1da177e4 1790
b4173f45 1791static void MoxaPortEnable(struct moxa_port *port)
1da177e4
LT
1792{
1793 void __iomem *ofsAddr;
eaa95a8d 1794 u16 lowwater = 512;
1da177e4 1795
b4173f45 1796 ofsAddr = port->tableAddr;
1da177e4 1797 writew(lowwater, ofsAddr + Low_water);
08d01c79 1798 if (MOXA_IS_320(port->board))
1da177e4 1799 moxafunc(ofsAddr, FC_SetBreakIrq, 0);
eaa95a8d
JS
1800 else
1801 writew(readw(ofsAddr + HostStat) | WakeupBreak,
1802 ofsAddr + HostStat);
1da177e4
LT
1803
1804 moxafunc(ofsAddr, FC_SetLineIrq, Magic_code);
1805 moxafunc(ofsAddr, FC_FlushQueue, 2);
1806
1807 moxafunc(ofsAddr, FC_EnableCH, Magic_code);
1808 MoxaPortLineStatus(port);
1809}
1810
b4173f45 1811static void MoxaPortDisable(struct moxa_port *port)
1da177e4 1812{
b4173f45 1813 void __iomem *ofsAddr = port->tableAddr;
1da177e4
LT
1814
1815 moxafunc(ofsAddr, FC_SetFlowCtl, 0); /* disable flow control */
1816 moxafunc(ofsAddr, FC_ClrLineIrq, Magic_code);
1817 writew(0, ofsAddr + HostStat);
1818 moxafunc(ofsAddr, FC_DisableCH, Magic_code);
1819}
1820
08d01c79 1821static speed_t MoxaPortSetBaud(struct moxa_port *port, speed_t baud)
1da177e4 1822{
08d01c79
JS
1823 void __iomem *ofsAddr = port->tableAddr;
1824 unsigned int clock, val;
1825 speed_t max;
1da177e4 1826
08d01c79
JS
1827 max = MOXA_IS_320(port->board) ? 460800 : 921600;
1828 if (baud < 50)
eaa95a8d 1829 return 0;
1da177e4
LT
1830 if (baud > max)
1831 baud = max;
08d01c79 1832 clock = 921600;
1da177e4
LT
1833 val = clock / baud;
1834 moxafunc(ofsAddr, FC_SetBaud, val);
1835 baud = clock / val;
eaa95a8d 1836 return baud;
1da177e4
LT
1837}
1838
b4173f45
JS
1839static int MoxaPortSetTermio(struct moxa_port *port, struct ktermios *termio,
1840 speed_t baud)
1da177e4
LT
1841{
1842 void __iomem *ofsAddr;
1843 tcflag_t cflag;
1da177e4
LT
1844 tcflag_t mode = 0;
1845
b4173f45 1846 ofsAddr = port->tableAddr;
1da177e4
LT
1847 cflag = termio->c_cflag; /* termio->c_cflag */
1848
1849 mode = termio->c_cflag & CSIZE;
1850 if (mode == CS5)
1851 mode = MX_CS5;
1852 else if (mode == CS6)
1853 mode = MX_CS6;
1854 else if (mode == CS7)
1855 mode = MX_CS7;
1856 else if (mode == CS8)
1857 mode = MX_CS8;
1858
1859 if (termio->c_cflag & CSTOPB) {
1860 if (mode == MX_CS5)
1861 mode |= MX_STOP15;
1862 else
1863 mode |= MX_STOP2;
1864 } else
1865 mode |= MX_STOP1;
1866
1867 if (termio->c_cflag & PARENB) {
1868 if (termio->c_cflag & PARODD)
1869 mode |= MX_PARODD;
1870 else
1871 mode |= MX_PAREVEN;
1872 } else
1873 mode |= MX_PARNONE;
1874
eaa95a8d 1875 moxafunc(ofsAddr, FC_SetDataMode, (u16)mode);
1da177e4 1876
08d01c79
JS
1877 if (MOXA_IS_320(port->board) && baud >= 921600)
1878 return -1;
1879
db1acaa6 1880 baud = MoxaPortSetBaud(port, baud);
1da177e4
LT
1881
1882 if (termio->c_iflag & (IXON | IXOFF | IXANY)) {
1883 writeb(termio->c_cc[VSTART], ofsAddr + FuncArg);
1884 writeb(termio->c_cc[VSTOP], ofsAddr + FuncArg1);
1885 writeb(FC_SetXonXoff, ofsAddr + FuncCode);
6f56b658 1886 moxa_wait_finish(ofsAddr);
1da177e4
LT
1887
1888 }
eaa95a8d 1889 return baud;
1da177e4
LT
1890}
1891
b4173f45
JS
1892static int MoxaPortGetLineOut(struct moxa_port *port, int *dtrState,
1893 int *rtsState)
1da177e4 1894{
b4173f45
JS
1895 if (dtrState)
1896 *dtrState = !!(port->lineCtrl & DTR_ON);
1897 if (rtsState)
1898 *rtsState = !!(port->lineCtrl & RTS_ON);
1899
eaa95a8d 1900 return 0;
1da177e4
LT
1901}
1902
b4173f45 1903static void MoxaPortLineCtrl(struct moxa_port *port, int dtr, int rts)
1da177e4 1904{
eaa95a8d 1905 u8 mode = 0;
1da177e4 1906
1da177e4
LT
1907 if (dtr)
1908 mode |= DTR_ON;
1909 if (rts)
1910 mode |= RTS_ON;
b4173f45
JS
1911 port->lineCtrl = mode;
1912 moxafunc(port->tableAddr, FC_LineControl, mode);
1da177e4
LT
1913}
1914
b4173f45
JS
1915static void MoxaPortFlowCtrl(struct moxa_port *port, int rts, int cts,
1916 int txflow, int rxflow, int txany)
1da177e4 1917{
b4173f45 1918 int mode = 0;
1da177e4 1919
1da177e4
LT
1920 if (rts)
1921 mode |= RTS_FlowCtl;
1922 if (cts)
1923 mode |= CTS_FlowCtl;
1924 if (txflow)
1925 mode |= Tx_FlowCtl;
1926 if (rxflow)
1927 mode |= Rx_FlowCtl;
1928 if (txany)
1929 mode |= IXM_IXANY;
b4173f45 1930 moxafunc(port->tableAddr, FC_SetFlowCtl, mode);
1da177e4
LT
1931}
1932
b4173f45 1933static int MoxaPortLineStatus(struct moxa_port *port)
1da177e4
LT
1934{
1935 void __iomem *ofsAddr;
1936 int val;
1937
b4173f45 1938 ofsAddr = port->tableAddr;
08d01c79 1939 if (MOXA_IS_320(port->board)) {
1da177e4
LT
1940 moxafunc(ofsAddr, FC_LineStatus, 0);
1941 val = readw(ofsAddr + FuncArg);
1942 } else {
1943 val = readw(ofsAddr + FlagStat) >> 4;
1944 }
1945 val &= 0x0B;
7bcf97d1 1946 if (val & 8)
1da177e4 1947 val |= 4;
a8f5cda0 1948 spin_lock_bh(&moxa_lock);
7bcf97d1 1949 moxa_new_dcdstate(port, val & 8);
a8f5cda0 1950 spin_unlock_bh(&moxa_lock);
1da177e4 1951 val &= 7;
7bcf97d1 1952 return val;
1da177e4
LT
1953}
1954
2108eba5
JS
1955static int MoxaPortWriteData(struct moxa_port *port,
1956 const unsigned char *buffer, int len)
1da177e4 1957{
1da177e4 1958 void __iomem *baseAddr, *ofsAddr, *ofs;
2108eba5
JS
1959 unsigned int c, total;
1960 u16 head, tail, tx_mask, spage, epage;
1961 u16 pageno, pageofs, bufhead;
1da177e4 1962
b4173f45
JS
1963 ofsAddr = port->tableAddr;
1964 baseAddr = port->board->basemem;
1da177e4
LT
1965 tx_mask = readw(ofsAddr + TX_mask);
1966 spage = readw(ofsAddr + Page_txb);
1967 epage = readw(ofsAddr + EndPage_txb);
1968 tail = readw(ofsAddr + TXwptr);
1969 head = readw(ofsAddr + TXrptr);
2108eba5 1970 c = (head > tail) ? (head - tail - 1) : (head - tail + tx_mask);
1da177e4
LT
1971 if (c > len)
1972 c = len;
b4173f45 1973 moxaLog.txcnt[port->tty->index] += c;
1da177e4
LT
1974 total = c;
1975 if (spage == epage) {
1976 bufhead = readw(ofsAddr + Ofs_txb);
1977 writew(spage, baseAddr + Control_reg);
1978 while (c > 0) {
1979 if (head > tail)
1980 len = head - tail - 1;
1981 else
1982 len = tx_mask + 1 - tail;
1983 len = (c > len) ? len : c;
1984 ofs = baseAddr + DynPage_addr + bufhead + tail;
2108eba5
JS
1985 memcpy_toio(ofs, buffer, len);
1986 buffer += len;
1da177e4
LT
1987 tail = (tail + len) & tx_mask;
1988 c -= len;
1989 }
1da177e4 1990 } else {
1da177e4
LT
1991 pageno = spage + (tail >> 13);
1992 pageofs = tail & Page_mask;
2108eba5
JS
1993 while (c > 0) {
1994 len = Page_size - pageofs;
1995 if (len > c)
1996 len = c;
1da177e4
LT
1997 writeb(pageno, baseAddr + Control_reg);
1998 ofs = baseAddr + DynPage_addr + pageofs;
2108eba5
JS
1999 memcpy_toio(ofs, buffer, len);
2000 buffer += len;
1da177e4
LT
2001 if (++pageno == epage)
2002 pageno = spage;
2003 pageofs = 0;
2108eba5
JS
2004 c -= len;
2005 }
2006 tail = (tail + total) & tx_mask;
1da177e4 2007 }
2108eba5 2008 writew(tail, ofsAddr + TXwptr);
1da177e4 2009 writeb(1, ofsAddr + CD180TXirq); /* start to send */
2108eba5 2010 return total;
1da177e4
LT
2011}
2012
7bcf97d1 2013static int MoxaPortReadData(struct moxa_port *port)
1da177e4 2014{
7bcf97d1 2015 struct tty_struct *tty = port->tty;
2108eba5 2016 unsigned char *dst;
1da177e4 2017 void __iomem *baseAddr, *ofsAddr, *ofs;
2108eba5
JS
2018 unsigned int count, len, total;
2019 u16 tail, rx_mask, spage, epage;
2020 u16 pageno, pageofs, bufhead, head;
1da177e4 2021
b4173f45
JS
2022 ofsAddr = port->tableAddr;
2023 baseAddr = port->board->basemem;
1da177e4
LT
2024 head = readw(ofsAddr + RXrptr);
2025 tail = readw(ofsAddr + RXwptr);
2026 rx_mask = readw(ofsAddr + RX_mask);
2027 spage = readw(ofsAddr + Page_rxb);
2028 epage = readw(ofsAddr + EndPage_rxb);
2108eba5 2029 count = (tail >= head) ? (tail - head) : (tail - head + rx_mask + 1);
1da177e4 2030 if (count == 0)
33f0f88f 2031 return 0;
1da177e4 2032
33f0f88f 2033 total = count;
7bcf97d1 2034 moxaLog.rxcnt[tty->index] += total;
1da177e4
LT
2035 if (spage == epage) {
2036 bufhead = readw(ofsAddr + Ofs_rxb);
2037 writew(spage, baseAddr + Control_reg);
2038 while (count > 0) {
1da177e4 2039 ofs = baseAddr + DynPage_addr + bufhead + head;
2108eba5
JS
2040 len = (tail >= head) ? (tail - head) :
2041 (rx_mask + 1 - head);
2042 len = tty_prepare_flip_string(tty, &dst,
2043 min(len, count));
2044 memcpy_fromio(dst, ofs, len);
1da177e4
LT
2045 head = (head + len) & rx_mask;
2046 count -= len;
2047 }
1da177e4 2048 } else {
1da177e4
LT
2049 pageno = spage + (head >> 13);
2050 pageofs = head & Page_mask;
2108eba5 2051 while (count > 0) {
1da177e4
LT
2052 writew(pageno, baseAddr + Control_reg);
2053 ofs = baseAddr + DynPage_addr + pageofs;
2108eba5
JS
2054 len = tty_prepare_flip_string(tty, &dst,
2055 min(Page_size - pageofs, count));
2056 memcpy_fromio(dst, ofs, len);
2057
2058 count -= len;
2059 pageofs = (pageofs + len) & Page_mask;
2060 if (pageofs == 0 && ++pageno == epage)
1da177e4 2061 pageno = spage;
2108eba5
JS
2062 }
2063 head = (head + total) & rx_mask;
1da177e4 2064 }
2108eba5
JS
2065 writew(head, ofsAddr + RXrptr);
2066 if (readb(ofsAddr + FlagStat) & Xoff_state) {
1da177e4 2067 moxaLowWaterChk = 1;
b4173f45 2068 port->lowChkFlag = 1;
1da177e4 2069 }
2108eba5 2070 return total;
1da177e4
LT
2071}
2072
2073
b4173f45 2074static int MoxaPortTxQueue(struct moxa_port *port)
1da177e4 2075{
b4173f45 2076 void __iomem *ofsAddr = port->tableAddr;
2108eba5 2077 u16 rptr, wptr, mask;
1da177e4 2078
1da177e4
LT
2079 rptr = readw(ofsAddr + TXrptr);
2080 wptr = readw(ofsAddr + TXwptr);
2081 mask = readw(ofsAddr + TX_mask);
2108eba5 2082 return (wptr - rptr) & mask;
1da177e4
LT
2083}
2084
b4173f45 2085static int MoxaPortTxFree(struct moxa_port *port)
1da177e4 2086{
b4173f45 2087 void __iomem *ofsAddr = port->tableAddr;
2108eba5 2088 u16 rptr, wptr, mask;
1da177e4 2089
1da177e4
LT
2090 rptr = readw(ofsAddr + TXrptr);
2091 wptr = readw(ofsAddr + TXwptr);
2092 mask = readw(ofsAddr + TX_mask);
2108eba5 2093 return mask - ((wptr - rptr) & mask);
1da177e4
LT
2094}
2095
b4173f45 2096static int MoxaPortRxQueue(struct moxa_port *port)
1da177e4 2097{
b4173f45 2098 void __iomem *ofsAddr = port->tableAddr;
2108eba5 2099 u16 rptr, wptr, mask;
1da177e4 2100
1da177e4
LT
2101 rptr = readw(ofsAddr + RXrptr);
2102 wptr = readw(ofsAddr + RXwptr);
2103 mask = readw(ofsAddr + RX_mask);
2108eba5 2104 return (wptr - rptr) & mask;
1da177e4
LT
2105}
2106
b4173f45 2107static void MoxaPortTxDisable(struct moxa_port *port)
1da177e4 2108{
b4173f45 2109 moxafunc(port->tableAddr, FC_SetXoffState, Magic_code);
1da177e4
LT
2110}
2111
b4173f45 2112static void MoxaPortTxEnable(struct moxa_port *port)
1da177e4 2113{
b4173f45 2114 moxafunc(port->tableAddr, FC_SetXonState, Magic_code);
1da177e4
LT
2115}
2116
8f8ecbad 2117static int moxa_get_serial_info(struct moxa_port *info,
eaa95a8d 2118 struct serial_struct __user *retinfo)
1da177e4 2119{
eaa95a8d
JS
2120 struct serial_struct tmp = {
2121 .type = info->type,
2122 .line = info->tty->index,
2123 .flags = info->asyncflags,
2124 .baud_base = 921600,
2125 .close_delay = info->close_delay
2126 };
2127 return copy_to_user(retinfo, &tmp, sizeof(*retinfo)) ? -EFAULT : 0;
1da177e4
LT
2128}
2129
2130
8f8ecbad 2131static int moxa_set_serial_info(struct moxa_port *info,
eaa95a8d 2132 struct serial_struct __user *new_info)
1da177e4
LT
2133{
2134 struct serial_struct new_serial;
2135
eaa95a8d 2136 if (copy_from_user(&new_serial, new_info, sizeof(new_serial)))
1da177e4
LT
2137 return -EFAULT;
2138
eaa95a8d
JS
2139 if (new_serial.irq != 0 || new_serial.port != 0 ||
2140 new_serial.custom_divisor != 0 ||
2141 new_serial.baud_base != 921600)
2142 return -EPERM;
1da177e4
LT
2143
2144 if (!capable(CAP_SYS_ADMIN)) {
2145 if (((new_serial.flags & ~ASYNC_USR_MASK) !=
2146 (info->asyncflags & ~ASYNC_USR_MASK)))
eaa95a8d
JS
2147 return -EPERM;
2148 } else
1da177e4 2149 info->close_delay = new_serial.close_delay * HZ / 100;
1da177e4
LT
2150
2151 new_serial.flags = (new_serial.flags & ~ASYNC_FLAGS);
2152 new_serial.flags |= (info->asyncflags & ASYNC_FLAGS);
2153
eaa95a8d 2154 MoxaSetFifo(info, new_serial.type == PORT_16550A);
1da177e4
LT
2155
2156 info->type = new_serial.type;
eaa95a8d 2157 return 0;
1da177e4
LT
2158}
2159
2160
2161
2162/*****************************************************************************
2163 * Static local functions: *
2164 *****************************************************************************/
1da177e4 2165
b4173f45 2166static void MoxaSetFifo(struct moxa_port *port, int enable)
1da177e4 2167{
b4173f45 2168 void __iomem *ofsAddr = port->tableAddr;
1da177e4
LT
2169
2170 if (!enable) {
2171 moxafunc(ofsAddr, FC_SetRxFIFOTrig, 0);
2172 moxafunc(ofsAddr, FC_SetTxFIFOCnt, 1);
2173 } else {
2174 moxafunc(ofsAddr, FC_SetRxFIFOTrig, 3);
2175 moxafunc(ofsAddr, FC_SetTxFIFOCnt, 16);
2176 }
2177}