blob: 49a1fc2ec6f23c5acd571eb8eef3a5519f837499 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*****************************************************************************/
2/*
3 * moxa.c -- MOXA Intellio family multiport serial driver.
4 *
Jiri Slabyb9705b62008-04-30 00:53:48 -07005 * Copyright (C) 1999-2000 Moxa Technologies (support@moxa.com).
6 * Copyright (c) 2007 Jiri Slaby <jirislaby@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 */
16
17/*
18 * MOXA Intellio Series Driver
19 * for : LINUX
20 * date : 1999/1/7
21 * version : 5.1
22 */
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/module.h>
25#include <linux/types.h>
26#include <linux/mm.h>
27#include <linux/ioport.h>
28#include <linux/errno.h>
Jiri Slaby03718232008-04-30 00:53:39 -070029#include <linux/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#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
Jiri Slaby03718232008-04-30 00:53:39 -070051#include "moxa.h"
52
Jiri Slabyb9705b62008-04-30 00:53:48 -070053#define MOXA_VERSION "6.0k"
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Jiri Slaby03718232008-04-30 00:53:39 -070055#define MOXA_FW_HDRLEN 32
56
Jiri Slaby11324ed2007-02-10 01:45:31 -080057#define MOXAMAJOR 172
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Jiri Slaby11324ed2007-02-10 01:45:31 -080059#define MAX_BOARDS 4 /* Don't change this value */
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#define MAX_PORTS_PER_BOARD 32 /* Don't change this value */
Jiri Slaby11324ed2007-02-10 01:45:31 -080061#define MAX_PORTS (MAX_BOARDS * MAX_PORTS_PER_BOARD)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Jiri Slaby08d01c792008-04-30 00:53:47 -070063#define MOXA_IS_320(brd) ((brd)->boardType == MOXA_BOARD_C320_ISA || \
64 (brd)->boardType == MOXA_BOARD_C320_PCI)
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/*
67 * Define the Moxa PCI vendor and device IDs.
68 */
Jiri Slaby11324ed2007-02-10 01:45:31 -080069#define MOXA_BUS_TYPE_ISA 0
70#define MOXA_BUS_TYPE_PCI 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072enum {
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[] = {
Jiri Slaby5ebb4072007-02-10 01:45:30 -080091 { 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 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 { 0 }
98};
99MODULE_DEVICE_TABLE(pci, moxa_pcibrds);
100#endif /* CONFIG_PCI */
101
Jiri Slaby03718232008-04-30 00:53:39 -0700102struct moxa_port;
103
Jiri Slaby8f8ecba2007-02-10 01:45:33 -0800104static struct moxa_board_conf {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 int boardType;
106 int numPorts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 int busType;
Jiri Slaby8f8ecba2007-02-10 01:45:33 -0800108
Jiri Slaby810ab092008-04-30 00:53:41 -0700109 unsigned int ready;
Jiri Slaby8f8ecba2007-02-10 01:45:33 -0800110
Jiri Slaby03718232008-04-30 00:53:39 -0700111 struct moxa_port *ports;
112
Jiri Slaby8f8ecba2007-02-10 01:45:33 -0800113 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;
Jiri Slaby9dff89c2007-02-10 01:45:30 -0800125};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Jiri Slaby8f8ecba2007-02-10 01:45:33 -0800127struct moxaq_str {
128 int inq;
129 int outq;
130};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Jiri Slaby8f8ecba2007-02-10 01:45:33 -0800132struct moxa_port {
Alan Cox9de6a512008-07-16 21:56:02 +0100133 struct tty_port port;
Jiri Slabyb4173f42008-04-30 00:53:40 -0700134 struct moxa_board_conf *board;
Jiri Slaby7bcf97d2008-04-30 00:53:43 -0700135 void __iomem *tableAddr;
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 int cflag;
Jiri Slaby7bcf97d2008-04-30 00:53:43 -0700139 unsigned long statusflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Alan Cox8482bcd2009-11-30 13:18:13 +0000141 u8 DCDState; /* Protected by the port lock */
Jiri Slaby7bcf97d2008-04-30 00:53:43 -0700142 u8 lineCtrl;
143 u8 lowChkFlag;
Jiri Slaby8f8ecba2007-02-10 01:45:33 -0800144};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Jiri Slaby74d7d972008-04-30 00:53:43 -0700146struct mon_str {
147 int tick;
148 int rxcnt[MAX_PORTS];
149 int txcnt[MAX_PORTS];
150};
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/* statusflags */
Alan Coxa808ac02009-11-30 13:18:02 +0000153#define TXSTOPPED 1
154#define LOWWAIT 2
155#define EMPTYWAIT 3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157#define SERIAL_DO_RESTART
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159#define WAKEUP_CHARS 256
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161static int ttymajor = MOXAMAJOR;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700162static struct mon_str moxaLog;
163static unsigned int moxaFuncTout = HZ / 2;
Jiri Slaby7bcf97d2008-04-30 00:53:43 -0700164static unsigned int moxaLowWaterChk;
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700165static DEFINE_MUTEX(moxa_openlock);
Alan Coxe8c62102009-11-30 13:18:24 +0000166static DEFINE_SPINLOCK(moxa_lock);
Rakib Mullickc6fc8262009-12-09 12:34:18 -0800167
Jiri Slabyd353eca2008-04-30 00:53:37 -0700168static unsigned long baseaddr[MAX_BOARDS];
169static unsigned int type[MAX_BOARDS];
170static unsigned int numports[MAX_BOARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172MODULE_AUTHOR("William Chen");
173MODULE_DESCRIPTION("MOXA Intellio Family Multiport Board Device Driver");
174MODULE_LICENSE("GPL");
Rakib Mullickc6fc8262009-12-09 12:34:18 -0800175
Jiri Slabyd353eca2008-04-30 00:53:37 -0700176module_param_array(type, uint, NULL, 0);
177MODULE_PARM_DESC(type, "card type: C218=2, C320=4");
178module_param_array(baseaddr, ulong, NULL, 0);
179MODULE_PARM_DESC(baseaddr, "base address");
180module_param_array(numports, uint, NULL, 0);
181MODULE_PARM_DESC(numports, "numports (ignored for C218)");
Rakib Mullickc6fc8262009-12-09 12:34:18 -0800182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183module_param(ttymajor, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185/*
186 * static functions:
187 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188static int moxa_open(struct tty_struct *, struct file *);
189static void moxa_close(struct tty_struct *, struct file *);
190static int moxa_write(struct tty_struct *, const unsigned char *, int);
191static int moxa_write_room(struct tty_struct *);
192static void moxa_flush_buffer(struct tty_struct *);
193static int moxa_chars_in_buffer(struct tty_struct *);
Alan Cox606d0992006-12-08 02:38:45 -0800194static void moxa_set_termios(struct tty_struct *, struct ktermios *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195static void moxa_stop(struct tty_struct *);
196static void moxa_start(struct tty_struct *);
197static void moxa_hangup(struct tty_struct *);
198static int moxa_tiocmget(struct tty_struct *tty, struct file *file);
199static int moxa_tiocmset(struct tty_struct *tty, struct file *file,
200 unsigned int set, unsigned int clear);
201static void moxa_poll(unsigned long);
Alan Coxdb1acaa2008-02-08 04:18:43 -0800202static void moxa_set_tty_param(struct tty_struct *, struct ktermios *);
Alan Coxf1761782009-11-30 13:17:51 +0000203static void moxa_shutdown(struct tty_port *);
Alan Cox31f35932009-01-02 13:45:05 +0000204static int moxa_carrier_raised(struct tty_port *);
Alan Coxf1761782009-11-30 13:17:51 +0000205static void moxa_dtr_rts(struct tty_port *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206/*
207 * moxa board interface functions:
208 */
Jiri Slabyb4173f42008-04-30 00:53:40 -0700209static void MoxaPortEnable(struct moxa_port *);
210static void MoxaPortDisable(struct moxa_port *);
211static int MoxaPortSetTermio(struct moxa_port *, struct ktermios *, speed_t);
212static int MoxaPortGetLineOut(struct moxa_port *, int *, int *);
213static void MoxaPortLineCtrl(struct moxa_port *, int, int);
214static void MoxaPortFlowCtrl(struct moxa_port *, int, int, int, int, int);
215static int MoxaPortLineStatus(struct moxa_port *);
Jiri Slabyb4173f42008-04-30 00:53:40 -0700216static void MoxaPortFlushData(struct moxa_port *, int);
Alan Coxd450b5a2008-10-13 10:39:58 +0100217static int MoxaPortWriteData(struct tty_struct *, const unsigned char *, int);
Jiri Slaby7bcf97d2008-04-30 00:53:43 -0700218static int MoxaPortReadData(struct moxa_port *);
Jiri Slabyb4173f42008-04-30 00:53:40 -0700219static int MoxaPortTxQueue(struct moxa_port *);
220static int MoxaPortRxQueue(struct moxa_port *);
221static int MoxaPortTxFree(struct moxa_port *);
222static void MoxaPortTxDisable(struct moxa_port *);
223static void MoxaPortTxEnable(struct moxa_port *);
Jiri Slaby8f8ecba2007-02-10 01:45:33 -0800224static int moxa_get_serial_info(struct moxa_port *, struct serial_struct __user *);
225static int moxa_set_serial_info(struct moxa_port *, struct serial_struct __user *);
Jiri Slabyb4173f42008-04-30 00:53:40 -0700226static void MoxaSetFifo(struct moxa_port *port, int enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Jiri Slaby74d7d972008-04-30 00:53:43 -0700228/*
229 * I/O functions
230 */
231
Alan Coxa808ac02009-11-30 13:18:02 +0000232static DEFINE_SPINLOCK(moxafunc_lock);
233
Jiri Slaby74d7d972008-04-30 00:53:43 -0700234static void moxa_wait_finish(void __iomem *ofsAddr)
235{
236 unsigned long end = jiffies + moxaFuncTout;
237
238 while (readw(ofsAddr + FuncCode) != 0)
239 if (time_after(jiffies, end))
240 return;
241 if (readw(ofsAddr + FuncCode) != 0 && printk_ratelimit())
242 printk(KERN_WARNING "moxa function expired\n");
243}
244
Jiri Slabyeaa95a82008-04-30 00:53:46 -0700245static void moxafunc(void __iomem *ofsAddr, u16 cmd, u16 arg)
Jiri Slaby74d7d972008-04-30 00:53:43 -0700246{
Alan Coxf5c5a362009-11-30 13:17:57 +0000247 unsigned long flags;
248 spin_lock_irqsave(&moxafunc_lock, flags);
Jiri Slaby74d7d972008-04-30 00:53:43 -0700249 writew(arg, ofsAddr + FuncArg);
250 writew(cmd, ofsAddr + FuncCode);
251 moxa_wait_finish(ofsAddr);
Alan Coxf5c5a362009-11-30 13:17:57 +0000252 spin_unlock_irqrestore(&moxafunc_lock, flags);
253}
254
255static int moxafuncret(void __iomem *ofsAddr, u16 cmd, u16 arg)
256{
257 unsigned long flags;
258 u16 ret;
259 spin_lock_irqsave(&moxafunc_lock, flags);
260 writew(arg, ofsAddr + FuncArg);
261 writew(cmd, ofsAddr + FuncCode);
262 moxa_wait_finish(ofsAddr);
263 ret = readw(ofsAddr + FuncArg);
264 spin_unlock_irqrestore(&moxafunc_lock, flags);
265 return ret;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700266}
267
Jiri Slaby7bcf97d2008-04-30 00:53:43 -0700268static void moxa_low_water_check(void __iomem *ofsAddr)
269{
270 u16 rptr, wptr, mask, len;
271
272 if (readb(ofsAddr + FlagStat) & Xoff_state) {
273 rptr = readw(ofsAddr + RXrptr);
274 wptr = readw(ofsAddr + RXwptr);
275 mask = readw(ofsAddr + RX_mask);
276 len = (wptr - rptr) & mask;
277 if (len <= Low_water)
278 moxafunc(ofsAddr, FC_SendXon, 0);
279 }
280}
281
Jiri Slaby74d7d972008-04-30 00:53:43 -0700282/*
283 * TTY operations
284 */
285
286static int moxa_ioctl(struct tty_struct *tty, struct file *file,
287 unsigned int cmd, unsigned long arg)
288{
289 struct moxa_port *ch = tty->driver_data;
290 void __user *argp = (void __user *)arg;
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700291 int status, ret = 0;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700292
293 if (tty->index == MAX_PORTS) {
294 if (cmd != MOXA_GETDATACOUNT && cmd != MOXA_GET_IOQUEUE &&
295 cmd != MOXA_GETMSTATUS)
296 return -EINVAL;
297 } else if (!ch)
298 return -ENODEV;
299
300 switch (cmd) {
301 case MOXA_GETDATACOUNT:
302 moxaLog.tick = jiffies;
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700303 if (copy_to_user(argp, &moxaLog, sizeof(moxaLog)))
304 ret = -EFAULT;
305 break;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700306 case MOXA_FLUSH_QUEUE:
307 MoxaPortFlushData(ch, arg);
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700308 break;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700309 case MOXA_GET_IOQUEUE: {
310 struct moxaq_str __user *argm = argp;
311 struct moxaq_str tmp;
312 struct moxa_port *p;
313 unsigned int i, j;
314
315 for (i = 0; i < MAX_BOARDS; i++) {
316 p = moxa_boards[i].ports;
317 for (j = 0; j < MAX_PORTS_PER_BOARD; j++, p++, argm++) {
318 memset(&tmp, 0, sizeof(tmp));
Alan Coxe8c62102009-11-30 13:18:24 +0000319 spin_lock_bh(&moxa_lock);
Jiri Slaby74d7d972008-04-30 00:53:43 -0700320 if (moxa_boards[i].ready) {
321 tmp.inq = MoxaPortRxQueue(p);
322 tmp.outq = MoxaPortTxQueue(p);
323 }
Alan Coxe8c62102009-11-30 13:18:24 +0000324 spin_unlock_bh(&moxa_lock);
325 if (copy_to_user(argm, &tmp, sizeof(tmp)))
Jiri Slaby74d7d972008-04-30 00:53:43 -0700326 return -EFAULT;
327 }
328 }
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700329 break;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700330 } case MOXA_GET_OQUEUE:
331 status = MoxaPortTxQueue(ch);
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700332 ret = put_user(status, (unsigned long __user *)argp);
333 break;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700334 case MOXA_GET_IQUEUE:
335 status = MoxaPortRxQueue(ch);
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700336 ret = put_user(status, (unsigned long __user *)argp);
337 break;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700338 case MOXA_GETMSTATUS: {
339 struct mxser_mstatus __user *argm = argp;
340 struct mxser_mstatus tmp;
341 struct moxa_port *p;
342 unsigned int i, j;
343
344 for (i = 0; i < MAX_BOARDS; i++) {
345 p = moxa_boards[i].ports;
346 for (j = 0; j < MAX_PORTS_PER_BOARD; j++, p++, argm++) {
Alan Coxd450b5a2008-10-13 10:39:58 +0100347 struct tty_struct *ttyp;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700348 memset(&tmp, 0, sizeof(tmp));
Alan Coxe8c62102009-11-30 13:18:24 +0000349 spin_lock_bh(&moxa_lock);
350 if (!moxa_boards[i].ready) {
351 spin_unlock_bh(&moxa_lock);
Jiri Slaby74d7d972008-04-30 00:53:43 -0700352 goto copy;
Alan Coxe8c62102009-11-30 13:18:24 +0000353 }
Jiri Slaby74d7d972008-04-30 00:53:43 -0700354
355 status = MoxaPortLineStatus(p);
Alan Coxe8c62102009-11-30 13:18:24 +0000356 spin_unlock_bh(&moxa_lock);
357
Jiri Slaby74d7d972008-04-30 00:53:43 -0700358 if (status & 1)
359 tmp.cts = 1;
360 if (status & 2)
361 tmp.dsr = 1;
362 if (status & 4)
363 tmp.dcd = 1;
364
Alan Coxd450b5a2008-10-13 10:39:58 +0100365 ttyp = tty_port_tty_get(&p->port);
366 if (!ttyp || !ttyp->termios)
Jiri Slaby74d7d972008-04-30 00:53:43 -0700367 tmp.cflag = p->cflag;
368 else
Alan Coxd450b5a2008-10-13 10:39:58 +0100369 tmp.cflag = ttyp->termios->c_cflag;
370 tty_kref_put(tty);
Jiri Slaby74d7d972008-04-30 00:53:43 -0700371copy:
Alan Coxe8c62102009-11-30 13:18:24 +0000372 if (copy_to_user(argm, &tmp, sizeof(tmp)))
Jiri Slaby74d7d972008-04-30 00:53:43 -0700373 return -EFAULT;
374 }
375 }
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700376 break;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700377 }
378 case TIOCGSERIAL:
Alan Coxa808ac02009-11-30 13:18:02 +0000379 mutex_lock(&ch->port.mutex);
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700380 ret = moxa_get_serial_info(ch, argp);
Alan Coxa808ac02009-11-30 13:18:02 +0000381 mutex_unlock(&ch->port.mutex);
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700382 break;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700383 case TIOCSSERIAL:
Alan Coxa808ac02009-11-30 13:18:02 +0000384 mutex_lock(&ch->port.mutex);
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700385 ret = moxa_set_serial_info(ch, argp);
Alan Coxa808ac02009-11-30 13:18:02 +0000386 mutex_unlock(&ch->port.mutex);
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700387 break;
388 default:
389 ret = -ENOIOCTLCMD;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700390 }
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700391 return ret;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700392}
393
Alan Cox9e989662008-07-22 11:18:03 +0100394static int moxa_break_ctl(struct tty_struct *tty, int state)
Jiri Slaby74d7d972008-04-30 00:53:43 -0700395{
396 struct moxa_port *port = tty->driver_data;
397
398 moxafunc(port->tableAddr, state ? FC_SendBreak : FC_StopBreak,
399 Magic_code);
Alan Cox9e989662008-07-22 11:18:03 +0100400 return 0;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700401}
402
Jeff Dikeb68e31d2006-10-02 02:17:18 -0700403static const struct tty_operations moxa_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 .open = moxa_open,
405 .close = moxa_close,
406 .write = moxa_write,
407 .write_room = moxa_write_room,
408 .flush_buffer = moxa_flush_buffer,
409 .chars_in_buffer = moxa_chars_in_buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 .ioctl = moxa_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 .set_termios = moxa_set_termios,
412 .stop = moxa_stop,
413 .start = moxa_start,
414 .hangup = moxa_hangup,
Jiri Slaby74d7d972008-04-30 00:53:43 -0700415 .break_ctl = moxa_break_ctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 .tiocmget = moxa_tiocmget,
417 .tiocmset = moxa_tiocmset,
418};
419
Alan Cox31f35932009-01-02 13:45:05 +0000420static const struct tty_port_operations moxa_port_ops = {
421 .carrier_raised = moxa_carrier_raised,
Alan Coxf1761782009-11-30 13:17:51 +0000422 .dtr_rts = moxa_dtr_rts,
423 .shutdown = moxa_shutdown,
Alan Cox31f35932009-01-02 13:45:05 +0000424};
425
Jiri Slabyaa7e5222007-02-10 01:45:27 -0800426static struct tty_driver *moxaDriver;
Jiri Slabyaa7e5222007-02-10 01:45:27 -0800427static DEFINE_TIMER(moxaTimer, moxa_poll, 0, 0);
Alan Cox33f0f882006-01-09 20:54:13 -0800428
Jiri Slaby74d7d972008-04-30 00:53:43 -0700429/*
430 * HW init
431 */
432
Jiri Slaby03718232008-04-30 00:53:39 -0700433static int moxa_check_fw_model(struct moxa_board_conf *brd, u8 model)
434{
435 switch (brd->boardType) {
436 case MOXA_BOARD_C218_ISA:
437 case MOXA_BOARD_C218_PCI:
438 if (model != 1)
439 goto err;
440 break;
441 case MOXA_BOARD_CP204J:
442 if (model != 3)
443 goto err;
444 break;
445 default:
446 if (model != 2)
447 goto err;
448 break;
449 }
450 return 0;
451err:
452 return -EINVAL;
453}
454
455static int moxa_check_fw(const void *ptr)
456{
457 const __le16 *lptr = ptr;
458
459 if (*lptr != cpu_to_le16(0x7980))
460 return -EINVAL;
461
462 return 0;
463}
464
465static int moxa_load_bios(struct moxa_board_conf *brd, const u8 *buf,
466 size_t len)
467{
468 void __iomem *baseAddr = brd->basemem;
469 u16 tmp;
470
471 writeb(HW_reset, baseAddr + Control_reg); /* reset */
472 msleep(10);
473 memset_io(baseAddr, 0, 4096);
474 memcpy_toio(baseAddr, buf, len); /* download BIOS */
475 writeb(0, baseAddr + Control_reg); /* restart */
476
477 msleep(2000);
478
479 switch (brd->boardType) {
480 case MOXA_BOARD_C218_ISA:
481 case MOXA_BOARD_C218_PCI:
482 tmp = readw(baseAddr + C218_key);
483 if (tmp != C218_KeyCode)
484 goto err;
485 break;
486 case MOXA_BOARD_CP204J:
487 tmp = readw(baseAddr + C218_key);
488 if (tmp != CP204J_KeyCode)
489 goto err;
490 break;
491 default:
492 tmp = readw(baseAddr + C320_key);
493 if (tmp != C320_KeyCode)
494 goto err;
495 tmp = readw(baseAddr + C320_status);
496 if (tmp != STS_init) {
Jiri Slabyeaa95a82008-04-30 00:53:46 -0700497 printk(KERN_ERR "MOXA: bios upload failed -- CPU/Basic "
Jiri Slaby03718232008-04-30 00:53:39 -0700498 "module not found\n");
499 return -EIO;
500 }
501 break;
502 }
503
504 return 0;
505err:
Jiri Slabyeaa95a82008-04-30 00:53:46 -0700506 printk(KERN_ERR "MOXA: bios upload failed -- board not found\n");
Jiri Slaby03718232008-04-30 00:53:39 -0700507 return -EIO;
508}
509
510static int moxa_load_320b(struct moxa_board_conf *brd, const u8 *ptr,
511 size_t len)
512{
513 void __iomem *baseAddr = brd->basemem;
514
515 if (len < 7168) {
Jiri Slabyeaa95a82008-04-30 00:53:46 -0700516 printk(KERN_ERR "MOXA: invalid 320 bios -- too short\n");
Jiri Slaby03718232008-04-30 00:53:39 -0700517 return -EINVAL;
518 }
519
520 writew(len - 7168 - 2, baseAddr + C320bapi_len);
521 writeb(1, baseAddr + Control_reg); /* Select Page 1 */
522 memcpy_toio(baseAddr + DynPage_addr, ptr, 7168);
523 writeb(2, baseAddr + Control_reg); /* Select Page 2 */
524 memcpy_toio(baseAddr + DynPage_addr, ptr + 7168, len - 7168);
525
526 return 0;
527}
528
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700529static int moxa_real_load_code(struct moxa_board_conf *brd, const void *ptr,
Jiri Slaby03718232008-04-30 00:53:39 -0700530 size_t len)
531{
532 void __iomem *baseAddr = brd->basemem;
Harvey Harrisonb46f69c2008-10-15 22:04:19 -0700533 const __le16 *uptr = ptr;
Jiri Slaby03718232008-04-30 00:53:39 -0700534 size_t wlen, len2, j;
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700535 unsigned long key, loadbuf, loadlen, checksum, checksum_ok;
Jiri Slaby08d01c792008-04-30 00:53:47 -0700536 unsigned int i, retry;
Jiri Slaby03718232008-04-30 00:53:39 -0700537 u16 usum, keycode;
538
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700539 keycode = (brd->boardType == MOXA_BOARD_CP204J) ? CP204J_KeyCode :
540 C218_KeyCode;
541
542 switch (brd->boardType) {
543 case MOXA_BOARD_CP204J:
544 case MOXA_BOARD_C218_ISA:
545 case MOXA_BOARD_C218_PCI:
546 key = C218_key;
547 loadbuf = C218_LoadBuf;
548 loadlen = C218DLoad_len;
549 checksum = C218check_sum;
550 checksum_ok = C218chksum_ok;
551 break;
552 default:
553 key = C320_key;
554 keycode = C320_KeyCode;
555 loadbuf = C320_LoadBuf;
556 loadlen = C320DLoad_len;
557 checksum = C320check_sum;
558 checksum_ok = C320chksum_ok;
559 break;
560 }
561
Jiri Slaby03718232008-04-30 00:53:39 -0700562 usum = 0;
563 wlen = len >> 1;
564 for (i = 0; i < wlen; i++)
565 usum += le16_to_cpu(uptr[i]);
566 retry = 0;
567 do {
568 wlen = len >> 1;
569 j = 0;
570 while (wlen) {
571 len2 = (wlen > 2048) ? 2048 : wlen;
572 wlen -= len2;
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700573 memcpy_toio(baseAddr + loadbuf, ptr + j, len2 << 1);
Jiri Slaby03718232008-04-30 00:53:39 -0700574 j += len2 << 1;
575
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700576 writew(len2, baseAddr + loadlen);
577 writew(0, baseAddr + key);
Jiri Slaby03718232008-04-30 00:53:39 -0700578 for (i = 0; i < 100; i++) {
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700579 if (readw(baseAddr + key) == keycode)
Jiri Slaby03718232008-04-30 00:53:39 -0700580 break;
581 msleep(10);
582 }
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700583 if (readw(baseAddr + key) != keycode)
Jiri Slaby03718232008-04-30 00:53:39 -0700584 return -EIO;
585 }
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700586 writew(0, baseAddr + loadlen);
587 writew(usum, baseAddr + checksum);
588 writew(0, baseAddr + key);
Jiri Slaby03718232008-04-30 00:53:39 -0700589 for (i = 0; i < 100; i++) {
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700590 if (readw(baseAddr + key) == keycode)
Jiri Slaby03718232008-04-30 00:53:39 -0700591 break;
592 msleep(10);
593 }
594 retry++;
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700595 } while ((readb(baseAddr + checksum_ok) != 1) && (retry < 3));
596 if (readb(baseAddr + checksum_ok) != 1)
Jiri Slaby03718232008-04-30 00:53:39 -0700597 return -EIO;
598
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700599 writew(0, baseAddr + key);
Jiri Slaby03718232008-04-30 00:53:39 -0700600 for (i = 0; i < 600; i++) {
601 if (readw(baseAddr + Magic_no) == Magic_code)
602 break;
603 msleep(10);
604 }
605 if (readw(baseAddr + Magic_no) != Magic_code)
606 return -EIO;
607
Jiri Slaby08d01c792008-04-30 00:53:47 -0700608 if (MOXA_IS_320(brd)) {
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700609 if (brd->busType == MOXA_BUS_TYPE_PCI) { /* ASIC board */
610 writew(0x3800, baseAddr + TMS320_PORT1);
611 writew(0x3900, baseAddr + TMS320_PORT2);
612 writew(28499, baseAddr + TMS320_CLOCK);
613 } else {
614 writew(0x3200, baseAddr + TMS320_PORT1);
615 writew(0x3400, baseAddr + TMS320_PORT2);
616 writew(19999, baseAddr + TMS320_CLOCK);
617 }
Jiri Slaby03718232008-04-30 00:53:39 -0700618 }
619 writew(1, baseAddr + Disable_IRQ);
620 writew(0, baseAddr + Magic_no);
621 for (i = 0; i < 500; i++) {
622 if (readw(baseAddr + Magic_no) == Magic_code)
623 break;
624 msleep(10);
625 }
626 if (readw(baseAddr + Magic_no) != Magic_code)
627 return -EIO;
628
Jiri Slaby08d01c792008-04-30 00:53:47 -0700629 if (MOXA_IS_320(brd)) {
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700630 j = readw(baseAddr + Module_cnt);
631 if (j <= 0)
632 return -EIO;
633 brd->numPorts = j * 8;
634 writew(j, baseAddr + Module_no);
635 writew(0, baseAddr + Magic_no);
636 for (i = 0; i < 600; i++) {
637 if (readw(baseAddr + Magic_no) == Magic_code)
638 break;
639 msleep(10);
640 }
641 if (readw(baseAddr + Magic_no) != Magic_code)
642 return -EIO;
Jiri Slaby03718232008-04-30 00:53:39 -0700643 }
Jiri Slaby03718232008-04-30 00:53:39 -0700644 brd->intNdx = baseAddr + IRQindex;
645 brd->intPend = baseAddr + IRQpending;
646 brd->intTable = baseAddr + IRQtable;
647
648 return 0;
649}
650
651static int moxa_load_code(struct moxa_board_conf *brd, const void *ptr,
652 size_t len)
653{
654 void __iomem *ofsAddr, *baseAddr = brd->basemem;
655 struct moxa_port *port;
656 int retval, i;
657
658 if (len % 2) {
Jiri Slabyeaa95a82008-04-30 00:53:46 -0700659 printk(KERN_ERR "MOXA: bios length is not even\n");
Jiri Slaby03718232008-04-30 00:53:39 -0700660 return -EINVAL;
661 }
662
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700663 retval = moxa_real_load_code(brd, ptr, len); /* may change numPorts */
664 if (retval)
665 return retval;
666
Jiri Slaby03718232008-04-30 00:53:39 -0700667 switch (brd->boardType) {
668 case MOXA_BOARD_C218_ISA:
669 case MOXA_BOARD_C218_PCI:
670 case MOXA_BOARD_CP204J:
Jiri Slaby03718232008-04-30 00:53:39 -0700671 port = brd->ports;
672 for (i = 0; i < brd->numPorts; i++, port++) {
Jiri Slabyb4173f42008-04-30 00:53:40 -0700673 port->board = brd;
Jiri Slaby03718232008-04-30 00:53:39 -0700674 port->DCDState = 0;
675 port->tableAddr = baseAddr + Extern_table +
676 Extern_size * i;
677 ofsAddr = port->tableAddr;
678 writew(C218rx_mask, ofsAddr + RX_mask);
679 writew(C218tx_mask, ofsAddr + TX_mask);
680 writew(C218rx_spage + i * C218buf_pageno, ofsAddr + Page_rxb);
681 writew(readw(ofsAddr + Page_rxb) + C218rx_pageno, ofsAddr + EndPage_rxb);
682
683 writew(C218tx_spage + i * C218buf_pageno, ofsAddr + Page_txb);
684 writew(readw(ofsAddr + Page_txb) + C218tx_pageno, ofsAddr + EndPage_txb);
685
686 }
687 break;
688 default:
Jiri Slaby03718232008-04-30 00:53:39 -0700689 port = brd->ports;
690 for (i = 0; i < brd->numPorts; i++, port++) {
Jiri Slabyb4173f42008-04-30 00:53:40 -0700691 port->board = brd;
Jiri Slaby03718232008-04-30 00:53:39 -0700692 port->DCDState = 0;
693 port->tableAddr = baseAddr + Extern_table +
694 Extern_size * i;
695 ofsAddr = port->tableAddr;
696 switch (brd->numPorts) {
697 case 8:
698 writew(C320p8rx_mask, ofsAddr + RX_mask);
699 writew(C320p8tx_mask, ofsAddr + TX_mask);
700 writew(C320p8rx_spage + i * C320p8buf_pgno, ofsAddr + Page_rxb);
701 writew(readw(ofsAddr + Page_rxb) + C320p8rx_pgno, ofsAddr + EndPage_rxb);
702 writew(C320p8tx_spage + i * C320p8buf_pgno, ofsAddr + Page_txb);
703 writew(readw(ofsAddr + Page_txb) + C320p8tx_pgno, ofsAddr + EndPage_txb);
704
705 break;
706 case 16:
707 writew(C320p16rx_mask, ofsAddr + RX_mask);
708 writew(C320p16tx_mask, ofsAddr + TX_mask);
709 writew(C320p16rx_spage + i * C320p16buf_pgno, ofsAddr + Page_rxb);
710 writew(readw(ofsAddr + Page_rxb) + C320p16rx_pgno, ofsAddr + EndPage_rxb);
711 writew(C320p16tx_spage + i * C320p16buf_pgno, ofsAddr + Page_txb);
712 writew(readw(ofsAddr + Page_txb) + C320p16tx_pgno, ofsAddr + EndPage_txb);
713 break;
714
715 case 24:
716 writew(C320p24rx_mask, ofsAddr + RX_mask);
717 writew(C320p24tx_mask, ofsAddr + TX_mask);
718 writew(C320p24rx_spage + i * C320p24buf_pgno, ofsAddr + Page_rxb);
719 writew(readw(ofsAddr + Page_rxb) + C320p24rx_pgno, ofsAddr + EndPage_rxb);
720 writew(C320p24tx_spage + i * C320p24buf_pgno, ofsAddr + Page_txb);
721 writew(readw(ofsAddr + Page_txb), ofsAddr + EndPage_txb);
722 break;
723 case 32:
724 writew(C320p32rx_mask, ofsAddr + RX_mask);
725 writew(C320p32tx_mask, ofsAddr + TX_mask);
726 writew(C320p32tx_ofs, ofsAddr + Ofs_txb);
727 writew(C320p32rx_spage + i * C320p32buf_pgno, ofsAddr + Page_rxb);
728 writew(readb(ofsAddr + Page_rxb), ofsAddr + EndPage_rxb);
729 writew(C320p32tx_spage + i * C320p32buf_pgno, ofsAddr + Page_txb);
730 writew(readw(ofsAddr + Page_txb), ofsAddr + EndPage_txb);
731 break;
732 }
733 }
734 break;
735 }
Jiri Slaby03718232008-04-30 00:53:39 -0700736 return 0;
737}
738
739static int moxa_load_fw(struct moxa_board_conf *brd, const struct firmware *fw)
740{
David Howells2bca76e2008-07-08 17:37:15 +0100741 const void *ptr = fw->data;
Jiri Slaby03718232008-04-30 00:53:39 -0700742 char rsn[64];
743 u16 lens[5];
744 size_t len;
745 unsigned int a, lenp, lencnt;
746 int ret = -EINVAL;
747 struct {
748 __le32 magic; /* 0x34303430 */
749 u8 reserved1[2];
750 u8 type; /* UNIX = 3 */
751 u8 model; /* C218T=1, C320T=2, CP204=3 */
752 u8 reserved2[8];
753 __le16 len[5];
David Howells2bca76e2008-07-08 17:37:15 +0100754 } const *hdr = ptr;
Jiri Slaby03718232008-04-30 00:53:39 -0700755
756 BUILD_BUG_ON(ARRAY_SIZE(hdr->len) != ARRAY_SIZE(lens));
757
758 if (fw->size < MOXA_FW_HDRLEN) {
759 strcpy(rsn, "too short (even header won't fit)");
760 goto err;
761 }
762 if (hdr->magic != cpu_to_le32(0x30343034)) {
763 sprintf(rsn, "bad magic: %.8x", le32_to_cpu(hdr->magic));
764 goto err;
765 }
766 if (hdr->type != 3) {
767 sprintf(rsn, "not for linux, type is %u", hdr->type);
768 goto err;
769 }
770 if (moxa_check_fw_model(brd, hdr->model)) {
771 sprintf(rsn, "not for this card, model is %u", hdr->model);
772 goto err;
773 }
774
775 len = MOXA_FW_HDRLEN;
776 lencnt = hdr->model == 2 ? 5 : 3;
777 for (a = 0; a < ARRAY_SIZE(lens); a++) {
778 lens[a] = le16_to_cpu(hdr->len[a]);
779 if (lens[a] && len + lens[a] <= fw->size &&
780 moxa_check_fw(&fw->data[len]))
Jiri Slabyeaa95a82008-04-30 00:53:46 -0700781 printk(KERN_WARNING "MOXA firmware: unexpected input "
Jiri Slaby03718232008-04-30 00:53:39 -0700782 "at offset %u, but going on\n", (u32)len);
783 if (!lens[a] && a < lencnt) {
784 sprintf(rsn, "too few entries in fw file");
785 goto err;
786 }
787 len += lens[a];
788 }
789
790 if (len != fw->size) {
791 sprintf(rsn, "bad length: %u (should be %u)", (u32)fw->size,
792 (u32)len);
793 goto err;
794 }
795
796 ptr += MOXA_FW_HDRLEN;
797 lenp = 0; /* bios */
798
799 strcpy(rsn, "read above");
800
801 ret = moxa_load_bios(brd, ptr, lens[lenp]);
802 if (ret)
803 goto err;
804
805 /* we skip the tty section (lens[1]), since we don't need it */
806 ptr += lens[lenp] + lens[lenp + 1];
807 lenp += 2; /* comm */
808
809 if (hdr->model == 2) {
810 ret = moxa_load_320b(brd, ptr, lens[lenp]);
811 if (ret)
812 goto err;
813 /* skip another tty */
814 ptr += lens[lenp] + lens[lenp + 1];
815 lenp += 2;
816 }
817
818 ret = moxa_load_code(brd, ptr, lens[lenp]);
819 if (ret)
820 goto err;
821
822 return 0;
823err:
824 printk(KERN_ERR "firmware failed to load, reason: %s\n", rsn);
825 return ret;
826}
827
828static int moxa_init_board(struct moxa_board_conf *brd, struct device *dev)
829{
830 const struct firmware *fw;
831 const char *file;
Jiri Slaby810ab092008-04-30 00:53:41 -0700832 struct moxa_port *p;
833 unsigned int i;
Jiri Slaby03718232008-04-30 00:53:39 -0700834 int ret;
835
Jiri Slaby810ab092008-04-30 00:53:41 -0700836 brd->ports = kcalloc(MAX_PORTS_PER_BOARD, sizeof(*brd->ports),
837 GFP_KERNEL);
838 if (brd->ports == NULL) {
839 printk(KERN_ERR "cannot allocate memory for ports\n");
840 ret = -ENOMEM;
841 goto err;
842 }
843
844 for (i = 0, p = brd->ports; i < MAX_PORTS_PER_BOARD; i++, p++) {
Alan Cox9de6a512008-07-16 21:56:02 +0100845 tty_port_init(&p->port);
Alan Cox31f35932009-01-02 13:45:05 +0000846 p->port.ops = &moxa_port_ops;
Alan Cox44b7d1b2008-07-16 21:57:18 +0100847 p->type = PORT_16550A;
848 p->cflag = B9600 | CS8 | CREAD | CLOCAL | HUPCL;
Jiri Slaby810ab092008-04-30 00:53:41 -0700849 }
850
Jiri Slaby03718232008-04-30 00:53:39 -0700851 switch (brd->boardType) {
852 case MOXA_BOARD_C218_ISA:
853 case MOXA_BOARD_C218_PCI:
854 file = "c218tunx.cod";
855 break;
856 case MOXA_BOARD_CP204J:
857 file = "cp204unx.cod";
858 break;
859 default:
860 file = "c320tunx.cod";
861 break;
862 }
863
864 ret = request_firmware(&fw, file, dev);
865 if (ret) {
Jiri Slabyec09cd52008-04-30 00:53:49 -0700866 printk(KERN_ERR "MOXA: request_firmware failed. Make sure "
867 "you've placed '%s' file into your firmware "
868 "loader directory (e.g. /lib/firmware)\n",
869 file);
Jiri Slaby810ab092008-04-30 00:53:41 -0700870 goto err_free;
Jiri Slaby03718232008-04-30 00:53:39 -0700871 }
872
873 ret = moxa_load_fw(brd, fw);
874
875 release_firmware(fw);
Jiri Slaby810ab092008-04-30 00:53:41 -0700876
877 if (ret)
878 goto err_free;
879
Jiri Slaby2a541342008-04-30 00:53:45 -0700880 spin_lock_bh(&moxa_lock);
Jiri Slaby810ab092008-04-30 00:53:41 -0700881 brd->ready = 1;
Jiri Slaby0bcc4ca2008-04-30 00:53:42 -0700882 if (!timer_pending(&moxaTimer))
883 mod_timer(&moxaTimer, jiffies + HZ / 50);
Jiri Slaby2a541342008-04-30 00:53:45 -0700884 spin_unlock_bh(&moxa_lock);
Jiri Slaby0bcc4ca2008-04-30 00:53:42 -0700885
Jiri Slaby810ab092008-04-30 00:53:41 -0700886 return 0;
887err_free:
888 kfree(brd->ports);
889err:
Jiri Slaby03718232008-04-30 00:53:39 -0700890 return ret;
891}
892
Jiri Slaby810ab092008-04-30 00:53:41 -0700893static void moxa_board_deinit(struct moxa_board_conf *brd)
894{
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700895 unsigned int a, opened;
896
897 mutex_lock(&moxa_openlock);
Jiri Slaby7bcf97d2008-04-30 00:53:43 -0700898 spin_lock_bh(&moxa_lock);
Jiri Slaby810ab092008-04-30 00:53:41 -0700899 brd->ready = 0;
Jiri Slaby7bcf97d2008-04-30 00:53:43 -0700900 spin_unlock_bh(&moxa_lock);
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700901
902 /* pci hot-un-plug support */
903 for (a = 0; a < brd->numPorts; a++)
Alan Coxd450b5a2008-10-13 10:39:58 +0100904 if (brd->ports[a].port.flags & ASYNC_INITIALIZED) {
905 struct tty_struct *tty = tty_port_tty_get(
906 &brd->ports[a].port);
907 if (tty) {
908 tty_hangup(tty);
909 tty_kref_put(tty);
910 }
911 }
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700912 while (1) {
913 opened = 0;
914 for (a = 0; a < brd->numPorts; a++)
Alan Cox9de6a512008-07-16 21:56:02 +0100915 if (brd->ports[a].port.flags & ASYNC_INITIALIZED)
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700916 opened++;
917 mutex_unlock(&moxa_openlock);
918 if (!opened)
919 break;
920 msleep(50);
921 mutex_lock(&moxa_openlock);
922 }
923
Jiri Slaby810ab092008-04-30 00:53:41 -0700924 iounmap(brd->basemem);
925 brd->basemem = NULL;
926 kfree(brd->ports);
927}
928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929#ifdef CONFIG_PCI
Jiri Slaby9cde5bf2007-02-10 01:45:35 -0800930static int __devinit moxa_pci_probe(struct pci_dev *pdev,
931 const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932{
Jiri Slaby9cde5bf2007-02-10 01:45:35 -0800933 struct moxa_board_conf *board;
934 unsigned int i;
935 int board_type = ent->driver_data;
936 int retval;
937
938 retval = pci_enable_device(pdev);
Jiri Slaby7aeb95d2007-10-18 03:06:24 -0700939 if (retval) {
940 dev_err(&pdev->dev, "can't enable pci device\n");
Jiri Slaby9cde5bf2007-02-10 01:45:35 -0800941 goto err;
Jiri Slaby7aeb95d2007-10-18 03:06:24 -0700942 }
Jiri Slaby9cde5bf2007-02-10 01:45:35 -0800943
944 for (i = 0; i < MAX_BOARDS; i++)
945 if (moxa_boards[i].basemem == NULL)
946 break;
947
948 retval = -ENODEV;
949 if (i >= MAX_BOARDS) {
Jiri Slaby7aeb95d2007-10-18 03:06:24 -0700950 dev_warn(&pdev->dev, "more than %u MOXA Intellio family boards "
Jiri Slaby9cde5bf2007-02-10 01:45:35 -0800951 "found. Board is ignored.\n", MAX_BOARDS);
952 goto err;
953 }
954
955 board = &moxa_boards[i];
Jiri Slabye46a5e32008-04-30 00:53:37 -0700956
957 retval = pci_request_region(pdev, 2, "moxa-base");
958 if (retval) {
959 dev_err(&pdev->dev, "can't request pci region 2\n");
960 goto err;
961 }
962
Alan Cox24cb2332008-04-30 00:54:19 -0700963 board->basemem = ioremap_nocache(pci_resource_start(pdev, 2), 0x4000);
Jiri Slaby7aeb95d2007-10-18 03:06:24 -0700964 if (board->basemem == NULL) {
965 dev_err(&pdev->dev, "can't remap io space 2\n");
Jiri Slabye46a5e32008-04-30 00:53:37 -0700966 goto err_reg;
Jiri Slaby7aeb95d2007-10-18 03:06:24 -0700967 }
Jiri Slaby9cde5bf2007-02-10 01:45:35 -0800968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 board->boardType = board_type;
970 switch (board_type) {
971 case MOXA_BOARD_C218_ISA:
972 case MOXA_BOARD_C218_PCI:
973 board->numPorts = 8;
974 break;
975
976 case MOXA_BOARD_CP204J:
977 board->numPorts = 4;
978 break;
979 default:
980 board->numPorts = 0;
981 break;
982 }
983 board->busType = MOXA_BUS_TYPE_PCI;
Jiri Slabya784bf72007-02-10 01:45:36 -0800984
Jiri Slaby03718232008-04-30 00:53:39 -0700985 retval = moxa_init_board(board, &pdev->dev);
986 if (retval)
987 goto err_base;
988
Jiri Slaby9cde5bf2007-02-10 01:45:35 -0800989 pci_set_drvdata(pdev, board);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Jiri Slabybb9f9102008-04-30 00:53:48 -0700991 dev_info(&pdev->dev, "board '%s' ready (%u ports, firmware loaded)\n",
992 moxa_brdname[board_type - 1], board->numPorts);
993
Jiri Slabyeaa95a82008-04-30 00:53:46 -0700994 return 0;
Jiri Slaby03718232008-04-30 00:53:39 -0700995err_base:
996 iounmap(board->basemem);
997 board->basemem = NULL;
Jiri Slabye46a5e32008-04-30 00:53:37 -0700998err_reg:
999 pci_release_region(pdev, 2);
Jiri Slaby9cde5bf2007-02-10 01:45:35 -08001000err:
1001 return retval;
1002}
1003
1004static void __devexit moxa_pci_remove(struct pci_dev *pdev)
1005{
1006 struct moxa_board_conf *brd = pci_get_drvdata(pdev);
1007
Jiri Slaby810ab092008-04-30 00:53:41 -07001008 moxa_board_deinit(brd);
1009
Jiri Slabye46a5e32008-04-30 00:53:37 -07001010 pci_release_region(pdev, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011}
Jiri Slabya784bf72007-02-10 01:45:36 -08001012
1013static struct pci_driver moxa_pci_driver = {
1014 .name = "moxa",
1015 .id_table = moxa_pcibrds,
1016 .probe = moxa_pci_probe,
1017 .remove = __devexit_p(moxa_pci_remove)
1018};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019#endif /* CONFIG_PCI */
1020
1021static int __init moxa_init(void)
1022{
Jiri Slaby810ab092008-04-30 00:53:41 -07001023 unsigned int isabrds = 0;
Jiri Slabyd353eca2008-04-30 00:53:37 -07001024 int retval = 0;
Rakib Mullickc6fc8262009-12-09 12:34:18 -08001025 struct moxa_board_conf *brd = moxa_boards;
1026 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Jiri Slaby7aeb95d2007-10-18 03:06:24 -07001028 printk(KERN_INFO "MOXA Intellio family driver version %s\n",
1029 MOXA_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 moxaDriver = alloc_tty_driver(MAX_PORTS + 1);
1031 if (!moxaDriver)
1032 return -ENOMEM;
1033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 moxaDriver->owner = THIS_MODULE;
Sergey Vlasov9b4e3b12005-09-03 16:26:49 +01001035 moxaDriver->name = "ttyMX";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 moxaDriver->major = ttymajor;
1037 moxaDriver->minor_start = 0;
1038 moxaDriver->type = TTY_DRIVER_TYPE_SERIAL;
1039 moxaDriver->subtype = SERIAL_TYPE_NORMAL;
1040 moxaDriver->init_termios = tty_std_termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 moxaDriver->init_termios.c_cflag = B9600 | CS8 | CREAD | CLOCAL | HUPCL;
Alan Cox606d0992006-12-08 02:38:45 -08001042 moxaDriver->init_termios.c_ispeed = 9600;
1043 moxaDriver->init_termios.c_ospeed = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 moxaDriver->flags = TTY_DRIVER_REAL_RAW;
1045 tty_set_operations(moxaDriver, &moxa_ops);
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 if (tty_register_driver(moxaDriver)) {
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001048 printk(KERN_ERR "can't register MOXA Smartio tty driver!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 put_tty_driver(moxaDriver);
1050 return -1;
1051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
Jiri Slabyd353eca2008-04-30 00:53:37 -07001053 /* Find the boards defined from module args. */
Rakib Mullickc6fc8262009-12-09 12:34:18 -08001054
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 for (i = 0; i < MAX_BOARDS; i++) {
Jiri Slabyd353eca2008-04-30 00:53:37 -07001056 if (!baseaddr[i])
1057 break;
1058 if (type[i] == MOXA_BOARD_C218_ISA ||
1059 type[i] == MOXA_BOARD_C320_ISA) {
Jiri Slaby7aeb95d2007-10-18 03:06:24 -07001060 pr_debug("Moxa board %2d: %s board(baseAddr=%lx)\n",
Jiri Slabyd353eca2008-04-30 00:53:37 -07001061 isabrds + 1, moxa_brdname[type[i] - 1],
1062 baseaddr[i]);
1063 brd->boardType = type[i];
1064 brd->numPorts = type[i] == MOXA_BOARD_C218_ISA ? 8 :
1065 numports[i];
1066 brd->busType = MOXA_BUS_TYPE_ISA;
Alan Cox24cb2332008-04-30 00:54:19 -07001067 brd->basemem = ioremap_nocache(baseaddr[i], 0x4000);
Jiri Slabyd353eca2008-04-30 00:53:37 -07001068 if (!brd->basemem) {
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001069 printk(KERN_ERR "MOXA: can't remap %lx\n",
Jiri Slabyd353eca2008-04-30 00:53:37 -07001070 baseaddr[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 continue;
1072 }
Jiri Slaby03718232008-04-30 00:53:39 -07001073 if (moxa_init_board(brd, NULL)) {
1074 iounmap(brd->basemem);
1075 brd->basemem = NULL;
1076 continue;
1077 }
Jiri Slabyd353eca2008-04-30 00:53:37 -07001078
Jiri Slabybb9f9102008-04-30 00:53:48 -07001079 printk(KERN_INFO "MOXA isa board found at 0x%.8lu and "
1080 "ready (%u ports, firmware loaded)\n",
1081 baseaddr[i], brd->numPorts);
1082
Jiri Slabyd353eca2008-04-30 00:53:37 -07001083 brd++;
1084 isabrds++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 }
1086 }
Jiri Slabya784bf72007-02-10 01:45:36 -08001087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088#ifdef CONFIG_PCI
Jiri Slabya784bf72007-02-10 01:45:36 -08001089 retval = pci_register_driver(&moxa_pci_driver);
1090 if (retval) {
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001091 printk(KERN_ERR "Can't register MOXA pci driver!\n");
Jiri Slabyd353eca2008-04-30 00:53:37 -07001092 if (isabrds)
Jiri Slabya784bf72007-02-10 01:45:36 -08001093 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 }
1095#endif
Jiri Slabya784bf72007-02-10 01:45:36 -08001096
Jiri Slabya784bf72007-02-10 01:45:36 -08001097 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098}
1099
1100static void __exit moxa_exit(void)
1101{
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001102 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Jiri Slaby9cde5bf2007-02-10 01:45:35 -08001104#ifdef CONFIG_PCI
Jiri Slabya784bf72007-02-10 01:45:36 -08001105 pci_unregister_driver(&moxa_pci_driver);
Jiri Slaby9cde5bf2007-02-10 01:45:35 -08001106#endif
Jiri Slabya784bf72007-02-10 01:45:36 -08001107
Jiri Slaby810ab092008-04-30 00:53:41 -07001108 for (i = 0; i < MAX_BOARDS; i++) /* ISA boards */
1109 if (moxa_boards[i].ready)
1110 moxa_board_deinit(&moxa_boards[i]);
Jiri Slaby2a541342008-04-30 00:53:45 -07001111
1112 del_timer_sync(&moxaTimer);
1113
1114 if (tty_unregister_driver(moxaDriver))
1115 printk(KERN_ERR "Couldn't unregister MOXA Intellio family "
1116 "serial driver\n");
1117 put_tty_driver(moxaDriver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118}
1119
1120module_init(moxa_init);
1121module_exit(moxa_exit);
1122
Alan Coxf1761782009-11-30 13:17:51 +00001123static void moxa_shutdown(struct tty_port *port)
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001124{
Alan Coxf1761782009-11-30 13:17:51 +00001125 struct moxa_port *ch = container_of(port, struct moxa_port, port);
1126 MoxaPortDisable(ch);
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001127 MoxaPortFlushData(ch, 2);
Alan Coxf1761782009-11-30 13:17:51 +00001128 clear_bit(ASYNCB_NORMAL_ACTIVE, &port->flags);
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001129}
1130
Alan Cox31f35932009-01-02 13:45:05 +00001131static int moxa_carrier_raised(struct tty_port *port)
1132{
1133 struct moxa_port *ch = container_of(port, struct moxa_port, port);
1134 int dcd;
1135
Alan Cox8482bcd2009-11-30 13:18:13 +00001136 spin_lock_irq(&port->lock);
Alan Cox31f35932009-01-02 13:45:05 +00001137 dcd = ch->DCDState;
Alan Cox8482bcd2009-11-30 13:18:13 +00001138 spin_unlock_irq(&port->lock);
Alan Cox31f35932009-01-02 13:45:05 +00001139 return dcd;
1140}
1141
Alan Coxf1761782009-11-30 13:17:51 +00001142static void moxa_dtr_rts(struct tty_port *port, int onoff)
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001143{
Alan Coxf1761782009-11-30 13:17:51 +00001144 struct moxa_port *ch = container_of(port, struct moxa_port, port);
1145 MoxaPortLineCtrl(ch, onoff, onoff);
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001146}
1147
Alan Coxf1761782009-11-30 13:17:51 +00001148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149static int moxa_open(struct tty_struct *tty, struct file *filp)
1150{
Jiri Slaby810ab092008-04-30 00:53:41 -07001151 struct moxa_board_conf *brd;
Jiri Slaby8f8ecba2007-02-10 01:45:33 -08001152 struct moxa_port *ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 int port;
1154 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Jiri Slaby11324ed2007-02-10 01:45:31 -08001156 port = tty->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 if (port == MAX_PORTS) {
Jiri Slaby74d7d972008-04-30 00:53:43 -07001158 return capable(CAP_SYS_ADMIN) ? 0 : -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 }
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001160 if (mutex_lock_interruptible(&moxa_openlock))
1161 return -ERESTARTSYS;
Jiri Slaby810ab092008-04-30 00:53:41 -07001162 brd = &moxa_boards[port / MAX_PORTS_PER_BOARD];
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001163 if (!brd->ready) {
1164 mutex_unlock(&moxa_openlock);
Jiri Slaby810ab092008-04-30 00:53:41 -07001165 return -ENODEV;
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Dirk Eibachf0e85272009-06-11 14:56:44 +01001168 if (port % MAX_PORTS_PER_BOARD >= brd->numPorts) {
1169 mutex_unlock(&moxa_openlock);
1170 return -ENODEV;
1171 }
1172
Jiri Slaby810ab092008-04-30 00:53:41 -07001173 ch = &brd->ports[port % MAX_PORTS_PER_BOARD];
Alan Cox9de6a512008-07-16 21:56:02 +01001174 ch->port.count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 tty->driver_data = ch;
Alan Coxd450b5a2008-10-13 10:39:58 +01001176 tty_port_tty_set(&ch->port, tty);
Alan Coxf1761782009-11-30 13:17:51 +00001177 mutex_lock(&ch->port.mutex);
Alan Cox9de6a512008-07-16 21:56:02 +01001178 if (!(ch->port.flags & ASYNC_INITIALIZED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 ch->statusflags = 0;
Alan Coxdb1acaa2008-02-08 04:18:43 -08001180 moxa_set_tty_param(tty, tty->termios);
Jiri Slabyb4173f42008-04-30 00:53:40 -07001181 MoxaPortLineCtrl(ch, 1, 1);
1182 MoxaPortEnable(ch);
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001183 MoxaSetFifo(ch, ch->type == PORT_16550A);
Alan Cox9de6a512008-07-16 21:56:02 +01001184 ch->port.flags |= ASYNC_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 }
Alan Coxf1761782009-11-30 13:17:51 +00001186 mutex_unlock(&ch->port.mutex);
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001187 mutex_unlock(&moxa_openlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Alan Coxf1761782009-11-30 13:17:51 +00001189 retval = tty_port_block_til_ready(&ch->port, tty, filp);
1190 if (retval == 0)
1191 set_bit(ASYNCB_NORMAL_ACTIVE, &ch->port.flags);
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001192 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193}
1194
1195static void moxa_close(struct tty_struct *tty, struct file *filp)
1196{
Alan Coxf1761782009-11-30 13:17:51 +00001197 struct moxa_port *ch = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 ch->cflag = tty->termios->c_cflag;
Alan Coxf1761782009-11-30 13:17:51 +00001199 tty_port_close(&ch->port, tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200}
1201
1202static int moxa_write(struct tty_struct *tty,
1203 const unsigned char *buf, int count)
1204{
Jiri Slabyb4173f42008-04-30 00:53:40 -07001205 struct moxa_port *ch = tty->driver_data;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001206 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 if (ch == NULL)
Jiri Slabyb4173f42008-04-30 00:53:40 -07001209 return 0;
Alan Cox33f0f882006-01-09 20:54:13 -08001210
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001211 spin_lock_bh(&moxa_lock);
Alan Coxd450b5a2008-10-13 10:39:58 +01001212 len = MoxaPortWriteData(tty, buf, count);
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001213 spin_unlock_bh(&moxa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Alan Coxa808ac02009-11-30 13:18:02 +00001215 set_bit(LOWWAIT, &ch->statusflags);
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001216 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217}
1218
1219static int moxa_write_room(struct tty_struct *tty)
1220{
Jiri Slaby8f8ecba2007-02-10 01:45:33 -08001221 struct moxa_port *ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
1223 if (tty->stopped)
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001224 return 0;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001225 ch = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if (ch == NULL)
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001227 return 0;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001228 return MoxaPortTxFree(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229}
1230
1231static void moxa_flush_buffer(struct tty_struct *tty)
1232{
Jiri Slabyb4173f42008-04-30 00:53:40 -07001233 struct moxa_port *ch = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
1235 if (ch == NULL)
1236 return;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001237 MoxaPortFlushData(ch, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 tty_wakeup(tty);
1239}
1240
1241static int moxa_chars_in_buffer(struct tty_struct *tty)
1242{
Jiri Slabyb4173f42008-04-30 00:53:40 -07001243 struct moxa_port *ch = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 int chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Jiri Slabyb4173f42008-04-30 00:53:40 -07001246 chars = MoxaPortTxQueue(ch);
Alan Coxf710ebd2009-11-30 13:18:18 +00001247 if (chars)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 /*
1249 * Make it possible to wakeup anything waiting for output
1250 * in tty_ioctl.c, etc.
1251 */
Alan Coxf710ebd2009-11-30 13:18:18 +00001252 set_bit(EMPTYWAIT, &ch->statusflags);
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001253 return chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254}
1255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256static int moxa_tiocmget(struct tty_struct *tty, struct file *file)
1257{
Alan Cox8482bcd2009-11-30 13:18:13 +00001258 struct moxa_port *ch = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 int flag = 0, dtr, rts;
1260
Jiri Slabyb4173f42008-04-30 00:53:40 -07001261 MoxaPortGetLineOut(ch, &dtr, &rts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 if (dtr)
1263 flag |= TIOCM_DTR;
1264 if (rts)
1265 flag |= TIOCM_RTS;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001266 dtr = MoxaPortLineStatus(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 if (dtr & 1)
1268 flag |= TIOCM_CTS;
1269 if (dtr & 2)
1270 flag |= TIOCM_DSR;
1271 if (dtr & 4)
1272 flag |= TIOCM_CD;
1273 return flag;
1274}
1275
1276static int moxa_tiocmset(struct tty_struct *tty, struct file *file,
1277 unsigned int set, unsigned int clear)
1278{
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001279 struct moxa_port *ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 int port;
1281 int dtr, rts;
1282
Jiri Slaby11324ed2007-02-10 01:45:31 -08001283 port = tty->index;
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001284 mutex_lock(&moxa_openlock);
1285 ch = tty->driver_data;
1286 if (!ch) {
1287 mutex_unlock(&moxa_openlock);
Jiri Slaby74d7d972008-04-30 00:53:43 -07001288 return -EINVAL;
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001289 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Jiri Slabyb4173f42008-04-30 00:53:40 -07001291 MoxaPortGetLineOut(ch, &dtr, &rts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 if (set & TIOCM_RTS)
1293 rts = 1;
1294 if (set & TIOCM_DTR)
1295 dtr = 1;
1296 if (clear & TIOCM_RTS)
1297 rts = 0;
1298 if (clear & TIOCM_DTR)
1299 dtr = 0;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001300 MoxaPortLineCtrl(ch, dtr, rts);
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001301 mutex_unlock(&moxa_openlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 return 0;
1303}
1304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305static void moxa_set_termios(struct tty_struct *tty,
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001306 struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307{
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001308 struct moxa_port *ch = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
1310 if (ch == NULL)
1311 return;
Alan Coxdb1acaa2008-02-08 04:18:43 -08001312 moxa_set_tty_param(tty, old_termios);
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001313 if (!(old_termios->c_cflag & CLOCAL) && C_CLOCAL(tty))
Alan Cox9de6a512008-07-16 21:56:02 +01001314 wake_up_interruptible(&ch->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315}
1316
1317static void moxa_stop(struct tty_struct *tty)
1318{
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001319 struct moxa_port *ch = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
1321 if (ch == NULL)
1322 return;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001323 MoxaPortTxDisable(ch);
Alan Coxa808ac02009-11-30 13:18:02 +00001324 set_bit(TXSTOPPED, &ch->statusflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325}
1326
1327
1328static void moxa_start(struct tty_struct *tty)
1329{
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001330 struct moxa_port *ch = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332 if (ch == NULL)
1333 return;
1334
1335 if (!(ch->statusflags & TXSTOPPED))
1336 return;
1337
Jiri Slabyb4173f42008-04-30 00:53:40 -07001338 MoxaPortTxEnable(ch);
Alan Coxa808ac02009-11-30 13:18:02 +00001339 clear_bit(TXSTOPPED, &ch->statusflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340}
1341
1342static void moxa_hangup(struct tty_struct *tty)
1343{
Alan Coxa808ac02009-11-30 13:18:02 +00001344 struct moxa_port *ch = tty->driver_data;
Alan Coxf1761782009-11-30 13:17:51 +00001345 tty_port_hangup(&ch->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346}
1347
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001348static void moxa_new_dcdstate(struct moxa_port *p, u8 dcd)
1349{
Alan Coxd450b5a2008-10-13 10:39:58 +01001350 struct tty_struct *tty;
Alan Cox8482bcd2009-11-30 13:18:13 +00001351 unsigned long flags;
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001352 dcd = !!dcd;
1353
Alan Cox8482bcd2009-11-30 13:18:13 +00001354 spin_lock_irqsave(&p->port.lock, flags);
Alan Coxd450b5a2008-10-13 10:39:58 +01001355 if (dcd != p->DCDState) {
Alan Cox8482bcd2009-11-30 13:18:13 +00001356 p->DCDState = dcd;
1357 spin_unlock_irqrestore(&p->port.lock, flags);
Alan Coxd450b5a2008-10-13 10:39:58 +01001358 tty = tty_port_tty_get(&p->port);
1359 if (tty && C_CLOCAL(tty) && !dcd)
1360 tty_hangup(tty);
1361 tty_kref_put(tty);
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001362 }
Alan Cox8482bcd2009-11-30 13:18:13 +00001363 else
1364 spin_unlock_irqrestore(&p->port.lock, flags);
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001365}
1366
1367static int moxa_poll_port(struct moxa_port *p, unsigned int handle,
1368 u16 __iomem *ip)
1369{
Alan Coxd450b5a2008-10-13 10:39:58 +01001370 struct tty_struct *tty = tty_port_tty_get(&p->port);
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001371 void __iomem *ofsAddr;
Alan Cox9de6a512008-07-16 21:56:02 +01001372 unsigned int inited = p->port.flags & ASYNC_INITIALIZED;
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001373 u16 intr;
1374
1375 if (tty) {
Alan Coxa808ac02009-11-30 13:18:02 +00001376 if (test_bit(EMPTYWAIT, &p->statusflags) &&
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001377 MoxaPortTxQueue(p) == 0) {
Alan Coxa808ac02009-11-30 13:18:02 +00001378 clear_bit(EMPTYWAIT, &p->statusflags);
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001379 tty_wakeup(tty);
1380 }
Alan Coxa808ac02009-11-30 13:18:02 +00001381 if (test_bit(LOWWAIT, &p->statusflags) && !tty->stopped &&
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001382 MoxaPortTxQueue(p) <= WAKEUP_CHARS) {
Alan Coxa808ac02009-11-30 13:18:02 +00001383 clear_bit(LOWWAIT, &p->statusflags);
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001384 tty_wakeup(tty);
1385 }
1386
Alan Coxf9b412a2009-11-30 13:18:08 +00001387 if (inited && !test_bit(TTY_THROTTLED, &tty->flags) &&
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001388 MoxaPortRxQueue(p) > 0) { /* RX */
1389 MoxaPortReadData(p);
1390 tty_schedule_flip(tty);
1391 }
1392 } else {
Alan Coxa808ac02009-11-30 13:18:02 +00001393 clear_bit(EMPTYWAIT, &p->statusflags);
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001394 MoxaPortFlushData(p, 0); /* flush RX */
1395 }
1396
1397 if (!handle) /* nothing else to do */
Jiri Slaby0e0fd7d2009-04-06 17:34:04 +01001398 goto put;
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001399
1400 intr = readw(ip); /* port irq status */
1401 if (intr == 0)
Jiri Slaby0e0fd7d2009-04-06 17:34:04 +01001402 goto put;
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001403
1404 writew(0, ip); /* ACK port */
1405 ofsAddr = p->tableAddr;
1406 if (intr & IntrTx) /* disable tx intr */
1407 writew(readw(ofsAddr + HostStat) & ~WakeupTx,
1408 ofsAddr + HostStat);
1409
1410 if (!inited)
Jiri Slaby0e0fd7d2009-04-06 17:34:04 +01001411 goto put;
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001412
1413 if (tty && (intr & IntrBreak) && !I_IGNBRK(tty)) { /* BREAK */
1414 tty_insert_flip_char(tty, 0, TTY_BREAK);
1415 tty_schedule_flip(tty);
1416 }
1417
1418 if (intr & IntrLine)
1419 moxa_new_dcdstate(p, readb(ofsAddr + FlagStat) & DCD_state);
Jiri Slaby0e0fd7d2009-04-06 17:34:04 +01001420put:
1421 tty_kref_put(tty);
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001422
1423 return 0;
1424}
1425
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426static void moxa_poll(unsigned long ignored)
1427{
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001428 struct moxa_board_conf *brd;
1429 u16 __iomem *ip;
Jiri Slaby2a541342008-04-30 00:53:45 -07001430 unsigned int card, port, served = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001432 spin_lock(&moxa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 for (card = 0; card < MAX_BOARDS; card++) {
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001434 brd = &moxa_boards[card];
1435 if (!brd->ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 continue;
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001437
Jiri Slaby2a541342008-04-30 00:53:45 -07001438 served++;
1439
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001440 ip = NULL;
1441 if (readb(brd->intPend) == 0xff)
1442 ip = brd->intTable + readb(brd->intNdx);
1443
1444 for (port = 0; port < brd->numPorts; port++)
1445 moxa_poll_port(&brd->ports[port], !!ip, ip + port);
1446
1447 if (ip)
1448 writeb(0, brd->intPend); /* ACK */
1449
1450 if (moxaLowWaterChk) {
1451 struct moxa_port *p = brd->ports;
1452 for (port = 0; port < brd->numPorts; port++, p++)
1453 if (p->lowChkFlag) {
1454 p->lowChkFlag = 0;
1455 moxa_low_water_check(p->tableAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 }
1458 }
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001459 moxaLowWaterChk = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Jiri Slaby2a541342008-04-30 00:53:45 -07001461 if (served)
1462 mod_timer(&moxaTimer, jiffies + HZ / 50);
1463 spin_unlock(&moxa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464}
1465
1466/******************************************************************************/
1467
Alan Coxdb1acaa2008-02-08 04:18:43 -08001468static void moxa_set_tty_param(struct tty_struct *tty, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469{
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001470 register struct ktermios *ts = tty->termios;
1471 struct moxa_port *ch = tty->driver_data;
Alan Coxdb1acaa2008-02-08 04:18:43 -08001472 int rts, cts, txflow, rxflow, xany, baud;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 rts = cts = txflow = rxflow = xany = 0;
1475 if (ts->c_cflag & CRTSCTS)
1476 rts = cts = 1;
1477 if (ts->c_iflag & IXON)
1478 txflow = 1;
1479 if (ts->c_iflag & IXOFF)
1480 rxflow = 1;
1481 if (ts->c_iflag & IXANY)
1482 xany = 1;
Alan Coxdb1acaa2008-02-08 04:18:43 -08001483
1484 /* Clear the features we don't support */
1485 ts->c_cflag &= ~CMSPAR;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001486 MoxaPortFlowCtrl(ch, rts, cts, txflow, rxflow, xany);
1487 baud = MoxaPortSetTermio(ch, ts, tty_get_baud_rate(tty));
Alan Coxdb1acaa2008-02-08 04:18:43 -08001488 if (baud == -1)
1489 baud = tty_termios_baud_rate(old_termios);
1490 /* Not put the baud rate into the termios data */
1491 tty_encode_baud_rate(tty, baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492}
1493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494/*****************************************************************************
1495 * Driver level functions: *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 *****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Jiri Slabyb4173f42008-04-30 00:53:40 -07001498static void MoxaPortFlushData(struct moxa_port *port, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499{
1500 void __iomem *ofsAddr;
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001501 if (mode < 0 || mode > 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 return;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001503 ofsAddr = port->tableAddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 moxafunc(ofsAddr, FC_FlushQueue, mode);
1505 if (mode != 1) {
Jiri Slabyb4173f42008-04-30 00:53:40 -07001506 port->lowChkFlag = 0;
Jiri Slaby6f56b6582007-10-18 03:06:24 -07001507 moxa_low_water_check(ofsAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 }
1509}
1510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511/*
1512 * Moxa Port Number Description:
1513 *
1514 * MOXA serial driver supports up to 4 MOXA-C218/C320 boards. And,
1515 * the port number using in MOXA driver functions will be 0 to 31 for
1516 * first MOXA board, 32 to 63 for second, 64 to 95 for third and 96
1517 * to 127 for fourth. For example, if you setup three MOXA boards,
1518 * first board is C218, second board is C320-16 and third board is
1519 * C320-32. The port number of first board (C218 - 8 ports) is from
1520 * 0 to 7. The port number of second board (C320 - 16 ports) is form
1521 * 32 to 47. The port number of third board (C320 - 32 ports) is from
1522 * 64 to 95. And those port numbers form 8 to 31, 48 to 63 and 96 to
1523 * 127 will be invalid.
1524 *
1525 *
1526 * Moxa Functions Description:
1527 *
1528 * Function 1: Driver initialization routine, this routine must be
1529 * called when initialized driver.
1530 * Syntax:
1531 * void MoxaDriverInit();
1532 *
1533 *
1534 * Function 2: Moxa driver private IOCTL command processing.
1535 * Syntax:
1536 * int MoxaDriverIoctl(unsigned int cmd, unsigned long arg, int port);
1537 *
1538 * unsigned int cmd : IOCTL command
1539 * unsigned long arg : IOCTL argument
1540 * int port : port number (0 - 127)
1541 *
1542 * return: 0 (OK)
1543 * -EINVAL
1544 * -ENOIOCTLCMD
1545 *
1546 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 * Function 6: Enable this port to start Tx/Rx data.
1548 * Syntax:
1549 * void MoxaPortEnable(int port);
1550 * int port : port number (0 - 127)
1551 *
1552 *
1553 * Function 7: Disable this port
1554 * Syntax:
1555 * void MoxaPortDisable(int port);
1556 * int port : port number (0 - 127)
1557 *
1558 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 * Function 10: Setting baud rate of this port.
1560 * Syntax:
Jiri Slaby08d01c792008-04-30 00:53:47 -07001561 * speed_t MoxaPortSetBaud(int port, speed_t baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 * int port : port number (0 - 127)
1563 * long baud : baud rate (50 - 115200)
1564 *
1565 * return: 0 : this port is invalid or baud < 50
1566 * 50 - 115200 : the real baud rate set to the port, if
1567 * the argument baud is large than maximun
1568 * available baud rate, the real setting
1569 * baud rate will be the maximun baud rate.
1570 *
1571 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 * Function 12: Configure the port.
1573 * Syntax:
Alan Cox606d0992006-12-08 02:38:45 -08001574 * int MoxaPortSetTermio(int port, struct ktermios *termio, speed_t baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 * int port : port number (0 - 127)
Alan Cox606d0992006-12-08 02:38:45 -08001576 * struct ktermios * termio : termio structure pointer
Alan Coxc7bce302006-09-30 23:27:24 -07001577 * speed_t baud : baud rate
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 *
1579 * return: -1 : this port is invalid or termio == NULL
1580 * 0 : setting O.K.
1581 *
1582 *
1583 * Function 13: Get the DTR/RTS state of this port.
1584 * Syntax:
1585 * int MoxaPortGetLineOut(int port, int *dtrState, int *rtsState);
1586 * int port : port number (0 - 127)
1587 * int * dtrState : pointer to INT to receive the current DTR
1588 * state. (if NULL, this function will not
1589 * write to this address)
1590 * int * rtsState : pointer to INT to receive the current RTS
1591 * state. (if NULL, this function will not
1592 * write to this address)
1593 *
1594 * return: -1 : this port is invalid
1595 * 0 : O.K.
1596 *
1597 *
1598 * Function 14: Setting the DTR/RTS output state of this port.
1599 * Syntax:
1600 * void MoxaPortLineCtrl(int port, int dtrState, int rtsState);
1601 * int port : port number (0 - 127)
1602 * int dtrState : DTR output state (0: off, 1: on)
1603 * int rtsState : RTS output state (0: off, 1: on)
1604 *
1605 *
1606 * Function 15: Setting the flow control of this port.
1607 * Syntax:
1608 * void MoxaPortFlowCtrl(int port, int rtsFlow, int ctsFlow, int rxFlow,
1609 * int txFlow,int xany);
1610 * int port : port number (0 - 127)
1611 * int rtsFlow : H/W RTS flow control (0: no, 1: yes)
1612 * int ctsFlow : H/W CTS flow control (0: no, 1: yes)
1613 * int rxFlow : S/W Rx XON/XOFF flow control (0: no, 1: yes)
1614 * int txFlow : S/W Tx XON/XOFF flow control (0: no, 1: yes)
1615 * int xany : S/W XANY flow control (0: no, 1: yes)
1616 *
1617 *
1618 * Function 16: Get ths line status of this port
1619 * Syntax:
1620 * int MoxaPortLineStatus(int port);
1621 * int port : port number (0 - 127)
1622 *
1623 * return: Bit 0 - CTS state (0: off, 1: on)
1624 * Bit 1 - DSR state (0: off, 1: on)
1625 * Bit 2 - DCD state (0: off, 1: on)
1626 *
1627 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 * Function 19: Flush the Rx/Tx buffer data of this port.
1629 * Syntax:
1630 * void MoxaPortFlushData(int port, int mode);
1631 * int port : port number (0 - 127)
1632 * int mode
1633 * 0 : flush the Rx buffer
1634 * 1 : flush the Tx buffer
1635 * 2 : flush the Rx and Tx buffer
1636 *
1637 *
1638 * Function 20: Write data.
1639 * Syntax:
1640 * int MoxaPortWriteData(int port, unsigned char * buffer, int length);
1641 * int port : port number (0 - 127)
1642 * unsigned char * buffer : pointer to write data buffer.
1643 * int length : write data length
1644 *
1645 * return: 0 - length : real write data length
1646 *
1647 *
1648 * Function 21: Read data.
1649 * Syntax:
Alan Cox33f0f882006-01-09 20:54:13 -08001650 * int MoxaPortReadData(int port, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 * int port : port number (0 - 127)
Alan Cox33f0f882006-01-09 20:54:13 -08001652 * struct tty_struct *tty : tty for data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 *
1654 * return: 0 - length : real read data length
1655 *
1656 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 * Function 24: Get the Tx buffer current queued data bytes
1658 * Syntax:
1659 * int MoxaPortTxQueue(int port);
1660 * int port : port number (0 - 127)
1661 *
1662 * return: .. : Tx buffer current queued data bytes
1663 *
1664 *
1665 * Function 25: Get the Tx buffer current free space
1666 * Syntax:
1667 * int MoxaPortTxFree(int port);
1668 * int port : port number (0 - 127)
1669 *
1670 * return: .. : Tx buffer current free space
1671 *
1672 *
1673 * Function 26: Get the Rx buffer current queued data bytes
1674 * Syntax:
1675 * int MoxaPortRxQueue(int port);
1676 * int port : port number (0 - 127)
1677 *
1678 * return: .. : Rx buffer current queued data bytes
1679 *
1680 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 * Function 28: Disable port data transmission.
1682 * Syntax:
1683 * void MoxaPortTxDisable(int port);
1684 * int port : port number (0 - 127)
1685 *
1686 *
1687 * Function 29: Enable port data transmission.
1688 * Syntax:
1689 * void MoxaPortTxEnable(int port);
1690 * int port : port number (0 - 127)
1691 *
1692 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 * Function 31: Get the received BREAK signal count and reset it.
1694 * Syntax:
1695 * int MoxaPortResetBrkCnt(int port);
1696 * int port : port number (0 - 127)
1697 *
1698 * return: 0 - .. : BREAK signal count
1699 *
1700 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Jiri Slabyb4173f42008-04-30 00:53:40 -07001703static void MoxaPortEnable(struct moxa_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704{
1705 void __iomem *ofsAddr;
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001706 u16 lowwater = 512;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
Jiri Slabyb4173f42008-04-30 00:53:40 -07001708 ofsAddr = port->tableAddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 writew(lowwater, ofsAddr + Low_water);
Jiri Slaby08d01c792008-04-30 00:53:47 -07001710 if (MOXA_IS_320(port->board))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 moxafunc(ofsAddr, FC_SetBreakIrq, 0);
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001712 else
1713 writew(readw(ofsAddr + HostStat) | WakeupBreak,
1714 ofsAddr + HostStat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
1716 moxafunc(ofsAddr, FC_SetLineIrq, Magic_code);
1717 moxafunc(ofsAddr, FC_FlushQueue, 2);
1718
1719 moxafunc(ofsAddr, FC_EnableCH, Magic_code);
1720 MoxaPortLineStatus(port);
1721}
1722
Jiri Slabyb4173f42008-04-30 00:53:40 -07001723static void MoxaPortDisable(struct moxa_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724{
Jiri Slabyb4173f42008-04-30 00:53:40 -07001725 void __iomem *ofsAddr = port->tableAddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
1727 moxafunc(ofsAddr, FC_SetFlowCtl, 0); /* disable flow control */
1728 moxafunc(ofsAddr, FC_ClrLineIrq, Magic_code);
1729 writew(0, ofsAddr + HostStat);
1730 moxafunc(ofsAddr, FC_DisableCH, Magic_code);
1731}
1732
Jiri Slaby08d01c792008-04-30 00:53:47 -07001733static speed_t MoxaPortSetBaud(struct moxa_port *port, speed_t baud)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734{
Jiri Slaby08d01c792008-04-30 00:53:47 -07001735 void __iomem *ofsAddr = port->tableAddr;
1736 unsigned int clock, val;
1737 speed_t max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Jiri Slaby08d01c792008-04-30 00:53:47 -07001739 max = MOXA_IS_320(port->board) ? 460800 : 921600;
1740 if (baud < 50)
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001741 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 if (baud > max)
1743 baud = max;
Jiri Slaby08d01c792008-04-30 00:53:47 -07001744 clock = 921600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 val = clock / baud;
1746 moxafunc(ofsAddr, FC_SetBaud, val);
1747 baud = clock / val;
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001748 return baud;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749}
1750
Jiri Slabyb4173f42008-04-30 00:53:40 -07001751static int MoxaPortSetTermio(struct moxa_port *port, struct ktermios *termio,
1752 speed_t baud)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753{
1754 void __iomem *ofsAddr;
1755 tcflag_t cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 tcflag_t mode = 0;
1757
Jiri Slabyb4173f42008-04-30 00:53:40 -07001758 ofsAddr = port->tableAddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 cflag = termio->c_cflag; /* termio->c_cflag */
1760
1761 mode = termio->c_cflag & CSIZE;
1762 if (mode == CS5)
1763 mode = MX_CS5;
1764 else if (mode == CS6)
1765 mode = MX_CS6;
1766 else if (mode == CS7)
1767 mode = MX_CS7;
1768 else if (mode == CS8)
1769 mode = MX_CS8;
1770
1771 if (termio->c_cflag & CSTOPB) {
1772 if (mode == MX_CS5)
1773 mode |= MX_STOP15;
1774 else
1775 mode |= MX_STOP2;
1776 } else
1777 mode |= MX_STOP1;
1778
1779 if (termio->c_cflag & PARENB) {
1780 if (termio->c_cflag & PARODD)
1781 mode |= MX_PARODD;
1782 else
1783 mode |= MX_PAREVEN;
1784 } else
1785 mode |= MX_PARNONE;
1786
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001787 moxafunc(ofsAddr, FC_SetDataMode, (u16)mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Jiri Slaby08d01c792008-04-30 00:53:47 -07001789 if (MOXA_IS_320(port->board) && baud >= 921600)
1790 return -1;
1791
Alan Coxdb1acaa2008-02-08 04:18:43 -08001792 baud = MoxaPortSetBaud(port, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
1794 if (termio->c_iflag & (IXON | IXOFF | IXANY)) {
Alan Coxf5c5a362009-11-30 13:17:57 +00001795 spin_lock_irq(&moxafunc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 writeb(termio->c_cc[VSTART], ofsAddr + FuncArg);
1797 writeb(termio->c_cc[VSTOP], ofsAddr + FuncArg1);
1798 writeb(FC_SetXonXoff, ofsAddr + FuncCode);
Jiri Slaby6f56b6582007-10-18 03:06:24 -07001799 moxa_wait_finish(ofsAddr);
Alan Coxa808ac02009-11-30 13:18:02 +00001800 spin_unlock_irq(&moxafunc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
1802 }
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001803 return baud;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804}
1805
Jiri Slabyb4173f42008-04-30 00:53:40 -07001806static int MoxaPortGetLineOut(struct moxa_port *port, int *dtrState,
1807 int *rtsState)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808{
Jiri Slabyb4173f42008-04-30 00:53:40 -07001809 if (dtrState)
1810 *dtrState = !!(port->lineCtrl & DTR_ON);
1811 if (rtsState)
1812 *rtsState = !!(port->lineCtrl & RTS_ON);
1813
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001814 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815}
1816
Jiri Slabyb4173f42008-04-30 00:53:40 -07001817static void MoxaPortLineCtrl(struct moxa_port *port, int dtr, int rts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818{
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001819 u8 mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 if (dtr)
1822 mode |= DTR_ON;
1823 if (rts)
1824 mode |= RTS_ON;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001825 port->lineCtrl = mode;
1826 moxafunc(port->tableAddr, FC_LineControl, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827}
1828
Jiri Slabyb4173f42008-04-30 00:53:40 -07001829static void MoxaPortFlowCtrl(struct moxa_port *port, int rts, int cts,
1830 int txflow, int rxflow, int txany)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831{
Jiri Slabyb4173f42008-04-30 00:53:40 -07001832 int mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 if (rts)
1835 mode |= RTS_FlowCtl;
1836 if (cts)
1837 mode |= CTS_FlowCtl;
1838 if (txflow)
1839 mode |= Tx_FlowCtl;
1840 if (rxflow)
1841 mode |= Rx_FlowCtl;
1842 if (txany)
1843 mode |= IXM_IXANY;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001844 moxafunc(port->tableAddr, FC_SetFlowCtl, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845}
1846
Jiri Slabyb4173f42008-04-30 00:53:40 -07001847static int MoxaPortLineStatus(struct moxa_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
1849 void __iomem *ofsAddr;
1850 int val;
1851
Jiri Slabyb4173f42008-04-30 00:53:40 -07001852 ofsAddr = port->tableAddr;
Alan Coxf5c5a362009-11-30 13:17:57 +00001853 if (MOXA_IS_320(port->board))
1854 val = moxafuncret(ofsAddr, FC_LineStatus, 0);
1855 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 val = readw(ofsAddr + FlagStat) >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 val &= 0x0B;
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001858 if (val & 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 val |= 4;
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001860 moxa_new_dcdstate(port, val & 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 val &= 7;
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001862 return val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863}
1864
Alan Coxd450b5a2008-10-13 10:39:58 +01001865static int MoxaPortWriteData(struct tty_struct *tty,
Jiri Slaby2108eba2008-04-30 00:53:44 -07001866 const unsigned char *buffer, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867{
Alan Coxd450b5a2008-10-13 10:39:58 +01001868 struct moxa_port *port = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 void __iomem *baseAddr, *ofsAddr, *ofs;
Jiri Slaby2108eba2008-04-30 00:53:44 -07001870 unsigned int c, total;
1871 u16 head, tail, tx_mask, spage, epage;
1872 u16 pageno, pageofs, bufhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Jiri Slabyb4173f42008-04-30 00:53:40 -07001874 ofsAddr = port->tableAddr;
1875 baseAddr = port->board->basemem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 tx_mask = readw(ofsAddr + TX_mask);
1877 spage = readw(ofsAddr + Page_txb);
1878 epage = readw(ofsAddr + EndPage_txb);
1879 tail = readw(ofsAddr + TXwptr);
1880 head = readw(ofsAddr + TXrptr);
Jiri Slaby2108eba2008-04-30 00:53:44 -07001881 c = (head > tail) ? (head - tail - 1) : (head - tail + tx_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 if (c > len)
1883 c = len;
Alan Cox9de6a512008-07-16 21:56:02 +01001884 moxaLog.txcnt[port->port.tty->index] += c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 total = c;
1886 if (spage == epage) {
1887 bufhead = readw(ofsAddr + Ofs_txb);
1888 writew(spage, baseAddr + Control_reg);
1889 while (c > 0) {
1890 if (head > tail)
1891 len = head - tail - 1;
1892 else
1893 len = tx_mask + 1 - tail;
1894 len = (c > len) ? len : c;
1895 ofs = baseAddr + DynPage_addr + bufhead + tail;
Jiri Slaby2108eba2008-04-30 00:53:44 -07001896 memcpy_toio(ofs, buffer, len);
1897 buffer += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 tail = (tail + len) & tx_mask;
1899 c -= len;
1900 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 pageno = spage + (tail >> 13);
1903 pageofs = tail & Page_mask;
Jiri Slaby2108eba2008-04-30 00:53:44 -07001904 while (c > 0) {
1905 len = Page_size - pageofs;
1906 if (len > c)
1907 len = c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 writeb(pageno, baseAddr + Control_reg);
1909 ofs = baseAddr + DynPage_addr + pageofs;
Jiri Slaby2108eba2008-04-30 00:53:44 -07001910 memcpy_toio(ofs, buffer, len);
1911 buffer += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 if (++pageno == epage)
1913 pageno = spage;
1914 pageofs = 0;
Jiri Slaby2108eba2008-04-30 00:53:44 -07001915 c -= len;
1916 }
1917 tail = (tail + total) & tx_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 }
Jiri Slaby2108eba2008-04-30 00:53:44 -07001919 writew(tail, ofsAddr + TXwptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 writeb(1, ofsAddr + CD180TXirq); /* start to send */
Jiri Slaby2108eba2008-04-30 00:53:44 -07001921 return total;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922}
1923
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001924static int MoxaPortReadData(struct moxa_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925{
Alan Cox9de6a512008-07-16 21:56:02 +01001926 struct tty_struct *tty = port->port.tty;
Jiri Slaby2108eba2008-04-30 00:53:44 -07001927 unsigned char *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 void __iomem *baseAddr, *ofsAddr, *ofs;
Jiri Slaby2108eba2008-04-30 00:53:44 -07001929 unsigned int count, len, total;
1930 u16 tail, rx_mask, spage, epage;
1931 u16 pageno, pageofs, bufhead, head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Jiri Slabyb4173f42008-04-30 00:53:40 -07001933 ofsAddr = port->tableAddr;
1934 baseAddr = port->board->basemem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 head = readw(ofsAddr + RXrptr);
1936 tail = readw(ofsAddr + RXwptr);
1937 rx_mask = readw(ofsAddr + RX_mask);
1938 spage = readw(ofsAddr + Page_rxb);
1939 epage = readw(ofsAddr + EndPage_rxb);
Jiri Slaby2108eba2008-04-30 00:53:44 -07001940 count = (tail >= head) ? (tail - head) : (tail - head + rx_mask + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 if (count == 0)
Alan Cox33f0f882006-01-09 20:54:13 -08001942 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Alan Cox33f0f882006-01-09 20:54:13 -08001944 total = count;
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001945 moxaLog.rxcnt[tty->index] += total;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 if (spage == epage) {
1947 bufhead = readw(ofsAddr + Ofs_rxb);
1948 writew(spage, baseAddr + Control_reg);
1949 while (count > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 ofs = baseAddr + DynPage_addr + bufhead + head;
Jiri Slaby2108eba2008-04-30 00:53:44 -07001951 len = (tail >= head) ? (tail - head) :
1952 (rx_mask + 1 - head);
1953 len = tty_prepare_flip_string(tty, &dst,
1954 min(len, count));
1955 memcpy_fromio(dst, ofs, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 head = (head + len) & rx_mask;
1957 count -= len;
1958 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 pageno = spage + (head >> 13);
1961 pageofs = head & Page_mask;
Jiri Slaby2108eba2008-04-30 00:53:44 -07001962 while (count > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 writew(pageno, baseAddr + Control_reg);
1964 ofs = baseAddr + DynPage_addr + pageofs;
Jiri Slaby2108eba2008-04-30 00:53:44 -07001965 len = tty_prepare_flip_string(tty, &dst,
1966 min(Page_size - pageofs, count));
1967 memcpy_fromio(dst, ofs, len);
1968
1969 count -= len;
1970 pageofs = (pageofs + len) & Page_mask;
1971 if (pageofs == 0 && ++pageno == epage)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 pageno = spage;
Jiri Slaby2108eba2008-04-30 00:53:44 -07001973 }
1974 head = (head + total) & rx_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 }
Jiri Slaby2108eba2008-04-30 00:53:44 -07001976 writew(head, ofsAddr + RXrptr);
1977 if (readb(ofsAddr + FlagStat) & Xoff_state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 moxaLowWaterChk = 1;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001979 port->lowChkFlag = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 }
Jiri Slaby2108eba2008-04-30 00:53:44 -07001981 return total;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982}
1983
1984
Jiri Slabyb4173f42008-04-30 00:53:40 -07001985static int MoxaPortTxQueue(struct moxa_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986{
Jiri Slabyb4173f42008-04-30 00:53:40 -07001987 void __iomem *ofsAddr = port->tableAddr;
Jiri Slaby2108eba2008-04-30 00:53:44 -07001988 u16 rptr, wptr, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 rptr = readw(ofsAddr + TXrptr);
1991 wptr = readw(ofsAddr + TXwptr);
1992 mask = readw(ofsAddr + TX_mask);
Jiri Slaby2108eba2008-04-30 00:53:44 -07001993 return (wptr - rptr) & mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994}
1995
Jiri Slabyb4173f42008-04-30 00:53:40 -07001996static int MoxaPortTxFree(struct moxa_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997{
Jiri Slabyb4173f42008-04-30 00:53:40 -07001998 void __iomem *ofsAddr = port->tableAddr;
Jiri Slaby2108eba2008-04-30 00:53:44 -07001999 u16 rptr, wptr, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 rptr = readw(ofsAddr + TXrptr);
2002 wptr = readw(ofsAddr + TXwptr);
2003 mask = readw(ofsAddr + TX_mask);
Jiri Slaby2108eba2008-04-30 00:53:44 -07002004 return mask - ((wptr - rptr) & mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005}
2006
Jiri Slabyb4173f42008-04-30 00:53:40 -07002007static int MoxaPortRxQueue(struct moxa_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
Jiri Slabyb4173f42008-04-30 00:53:40 -07002009 void __iomem *ofsAddr = port->tableAddr;
Jiri Slaby2108eba2008-04-30 00:53:44 -07002010 u16 rptr, wptr, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 rptr = readw(ofsAddr + RXrptr);
2013 wptr = readw(ofsAddr + RXwptr);
2014 mask = readw(ofsAddr + RX_mask);
Jiri Slaby2108eba2008-04-30 00:53:44 -07002015 return (wptr - rptr) & mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016}
2017
Jiri Slabyb4173f42008-04-30 00:53:40 -07002018static void MoxaPortTxDisable(struct moxa_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019{
Jiri Slabyb4173f42008-04-30 00:53:40 -07002020 moxafunc(port->tableAddr, FC_SetXoffState, Magic_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021}
2022
Jiri Slabyb4173f42008-04-30 00:53:40 -07002023static void MoxaPortTxEnable(struct moxa_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024{
Jiri Slabyb4173f42008-04-30 00:53:40 -07002025 moxafunc(port->tableAddr, FC_SetXonState, Magic_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026}
2027
Jiri Slaby8f8ecba2007-02-10 01:45:33 -08002028static int moxa_get_serial_info(struct moxa_port *info,
Jiri Slabyeaa95a82008-04-30 00:53:46 -07002029 struct serial_struct __user *retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030{
Jiri Slabyeaa95a82008-04-30 00:53:46 -07002031 struct serial_struct tmp = {
2032 .type = info->type,
Alan Cox9de6a512008-07-16 21:56:02 +01002033 .line = info->port.tty->index,
2034 .flags = info->port.flags,
Jiri Slabyeaa95a82008-04-30 00:53:46 -07002035 .baud_base = 921600,
Alan Cox44b7d1b2008-07-16 21:57:18 +01002036 .close_delay = info->port.close_delay
Jiri Slabyeaa95a82008-04-30 00:53:46 -07002037 };
2038 return copy_to_user(retinfo, &tmp, sizeof(*retinfo)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039}
2040
2041
Jiri Slaby8f8ecba2007-02-10 01:45:33 -08002042static int moxa_set_serial_info(struct moxa_port *info,
Jiri Slabyeaa95a82008-04-30 00:53:46 -07002043 struct serial_struct __user *new_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044{
2045 struct serial_struct new_serial;
2046
Jiri Slabyeaa95a82008-04-30 00:53:46 -07002047 if (copy_from_user(&new_serial, new_info, sizeof(new_serial)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 return -EFAULT;
2049
Jiri Slabyeaa95a82008-04-30 00:53:46 -07002050 if (new_serial.irq != 0 || new_serial.port != 0 ||
2051 new_serial.custom_divisor != 0 ||
2052 new_serial.baud_base != 921600)
2053 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
2055 if (!capable(CAP_SYS_ADMIN)) {
2056 if (((new_serial.flags & ~ASYNC_USR_MASK) !=
Alan Cox9de6a512008-07-16 21:56:02 +01002057 (info->port.flags & ~ASYNC_USR_MASK)))
Jiri Slabyeaa95a82008-04-30 00:53:46 -07002058 return -EPERM;
2059 } else
Alan Cox44b7d1b2008-07-16 21:57:18 +01002060 info->port.close_delay = new_serial.close_delay * HZ / 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
2062 new_serial.flags = (new_serial.flags & ~ASYNC_FLAGS);
Alan Cox9de6a512008-07-16 21:56:02 +01002063 new_serial.flags |= (info->port.flags & ASYNC_FLAGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Jiri Slabyeaa95a82008-04-30 00:53:46 -07002065 MoxaSetFifo(info, new_serial.type == PORT_16550A);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
2067 info->type = new_serial.type;
Jiri Slabyeaa95a82008-04-30 00:53:46 -07002068 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069}
2070
2071
2072
2073/*****************************************************************************
2074 * Static local functions: *
2075 *****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Jiri Slabyb4173f42008-04-30 00:53:40 -07002077static void MoxaSetFifo(struct moxa_port *port, int enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078{
Jiri Slabyb4173f42008-04-30 00:53:40 -07002079 void __iomem *ofsAddr = port->tableAddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
2081 if (!enable) {
2082 moxafunc(ofsAddr, FC_SetRxFIFOTrig, 0);
2083 moxafunc(ofsAddr, FC_SetTxFIFOCnt, 1);
2084 } else {
2085 moxafunc(ofsAddr, FC_SetRxFIFOTrig, 3);
2086 moxafunc(ofsAddr, FC_SetTxFIFOCnt, 16);
2087 }
2088}