blob: 318c465451e645d105b920c8e35f7a05d2298a79 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*****************************************************************************/
2/*
3 * moxa.c -- MOXA Intellio family multiport serial driver.
4 *
5 * Copyright (C) 1999-2000 Moxa Technologies (support@moxa.com.tw).
6 *
7 * This code is loosely based on the Linux serial driver, written by
8 * Linus Torvalds, Theodore T'so and others.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
15
16/*
17 * MOXA Intellio Series Driver
18 * for : LINUX
19 * date : 1999/1/7
20 * version : 5.1
21 */
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/module.h>
24#include <linux/types.h>
25#include <linux/mm.h>
26#include <linux/ioport.h>
27#include <linux/errno.h>
Jiri Slaby03718232008-04-30 00:53:39 -070028#include <linux/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/signal.h>
30#include <linux/sched.h>
31#include <linux/timer.h>
32#include <linux/interrupt.h>
33#include <linux/tty.h>
34#include <linux/tty_flip.h>
35#include <linux/major.h>
36#include <linux/string.h>
37#include <linux/fcntl.h>
38#include <linux/ptrace.h>
39#include <linux/serial.h>
40#include <linux/tty_driver.h>
41#include <linux/delay.h>
42#include <linux/pci.h>
43#include <linux/init.h>
44#include <linux/bitops.h>
45
46#include <asm/system.h>
47#include <asm/io.h>
48#include <asm/uaccess.h>
49
Jiri Slaby03718232008-04-30 00:53:39 -070050#include "moxa.h"
51
Jiri Slaby11324ed2007-02-10 01:45:31 -080052#define MOXA_VERSION "5.1k"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Jiri Slaby03718232008-04-30 00:53:39 -070054#define MOXA_FW_HDRLEN 32
55
Jiri Slaby11324ed2007-02-10 01:45:31 -080056#define MOXAMAJOR 172
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Jiri Slaby11324ed2007-02-10 01:45:31 -080058#define MAX_BOARDS 4 /* Don't change this value */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#define MAX_PORTS_PER_BOARD 32 /* Don't change this value */
Jiri Slaby11324ed2007-02-10 01:45:31 -080060#define MAX_PORTS (MAX_BOARDS * MAX_PORTS_PER_BOARD)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Jiri Slaby08d01c792008-04-30 00:53:47 -070062#define MOXA_IS_320(brd) ((brd)->boardType == MOXA_BOARD_C320_ISA || \
63 (brd)->boardType == MOXA_BOARD_C320_PCI)
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065/*
66 * Define the Moxa PCI vendor and device IDs.
67 */
Jiri Slaby11324ed2007-02-10 01:45:31 -080068#define MOXA_BUS_TYPE_ISA 0
69#define MOXA_BUS_TYPE_PCI 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Linus Torvalds1da177e2005-04-16 15:20:36 -070071enum {
72 MOXA_BOARD_C218_PCI = 1,
73 MOXA_BOARD_C218_ISA,
74 MOXA_BOARD_C320_PCI,
75 MOXA_BOARD_C320_ISA,
76 MOXA_BOARD_CP204J,
77};
78
79static char *moxa_brdname[] =
80{
81 "C218 Turbo PCI series",
82 "C218 Turbo ISA series",
83 "C320 Turbo PCI series",
84 "C320 Turbo ISA series",
85 "CP-204J series",
86};
87
88#ifdef CONFIG_PCI
89static struct pci_device_id moxa_pcibrds[] = {
Jiri Slaby5ebb4072007-02-10 01:45:30 -080090 { PCI_DEVICE(PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_C218),
91 .driver_data = MOXA_BOARD_C218_PCI },
92 { PCI_DEVICE(PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_C320),
93 .driver_data = MOXA_BOARD_C320_PCI },
94 { PCI_DEVICE(PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_MOXA_CP204J),
95 .driver_data = MOXA_BOARD_CP204J },
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 { 0 }
97};
98MODULE_DEVICE_TABLE(pci, moxa_pcibrds);
99#endif /* CONFIG_PCI */
100
Jiri Slaby03718232008-04-30 00:53:39 -0700101struct moxa_port;
102
Jiri Slaby8f8ecba2007-02-10 01:45:33 -0800103static struct moxa_board_conf {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 int boardType;
105 int numPorts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 int busType;
Jiri Slaby8f8ecba2007-02-10 01:45:33 -0800107
Jiri Slaby810ab092008-04-30 00:53:41 -0700108 unsigned int ready;
Jiri Slaby8f8ecba2007-02-10 01:45:33 -0800109
Jiri Slaby03718232008-04-30 00:53:39 -0700110 struct moxa_port *ports;
111
Jiri Slaby8f8ecba2007-02-10 01:45:33 -0800112 void __iomem *basemem;
113 void __iomem *intNdx;
114 void __iomem *intPend;
115 void __iomem *intTable;
116} moxa_boards[MAX_BOARDS];
117
118struct mxser_mstatus {
119 tcflag_t cflag;
120 int cts;
121 int dsr;
122 int ri;
123 int dcd;
Jiri Slaby9dff89c2007-02-10 01:45:30 -0800124};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Jiri Slaby8f8ecba2007-02-10 01:45:33 -0800126struct moxaq_str {
127 int inq;
128 int outq;
129};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Jiri Slaby8f8ecba2007-02-10 01:45:33 -0800131struct moxa_port {
Jiri Slabyb4173f42008-04-30 00:53:40 -0700132 struct moxa_board_conf *board;
Jiri Slaby7bcf97d2008-04-30 00:53:43 -0700133 struct tty_struct *tty;
134 void __iomem *tableAddr;
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 int close_delay;
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700138 unsigned int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 int asyncflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 int cflag;
Jiri Slaby7bcf97d2008-04-30 00:53:43 -0700141 unsigned long statusflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 wait_queue_head_t open_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Jiri Slaby7bcf97d2008-04-30 00:53:43 -0700144 u8 DCDState;
145 u8 lineCtrl;
146 u8 lowChkFlag;
Jiri Slaby8f8ecba2007-02-10 01:45:33 -0800147};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Jiri Slaby74d7d972008-04-30 00:53:43 -0700149struct mon_str {
150 int tick;
151 int rxcnt[MAX_PORTS];
152 int txcnt[MAX_PORTS];
153};
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155/* statusflags */
156#define TXSTOPPED 0x1
157#define LOWWAIT 0x2
158#define EMPTYWAIT 0x4
159#define THROTTLE 0x8
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161#define SERIAL_DO_RESTART
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163#define WAKEUP_CHARS 256
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165static int ttymajor = MOXAMAJOR;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700166static struct mon_str moxaLog;
167static unsigned int moxaFuncTout = HZ / 2;
Jiri Slaby7bcf97d2008-04-30 00:53:43 -0700168static unsigned int moxaLowWaterChk;
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700169static DEFINE_MUTEX(moxa_openlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170/* Variables for insmod */
171#ifdef MODULE
Jiri Slabyd353eca2008-04-30 00:53:37 -0700172static unsigned long baseaddr[MAX_BOARDS];
173static unsigned int type[MAX_BOARDS];
174static unsigned int numports[MAX_BOARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175#endif
176
177MODULE_AUTHOR("William Chen");
178MODULE_DESCRIPTION("MOXA Intellio Family Multiport Board Device Driver");
179MODULE_LICENSE("GPL");
180#ifdef MODULE
Jiri Slabyd353eca2008-04-30 00:53:37 -0700181module_param_array(type, uint, NULL, 0);
182MODULE_PARM_DESC(type, "card type: C218=2, C320=4");
183module_param_array(baseaddr, ulong, NULL, 0);
184MODULE_PARM_DESC(baseaddr, "base address");
185module_param_array(numports, uint, NULL, 0);
186MODULE_PARM_DESC(numports, "numports (ignored for C218)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187#endif
188module_param(ttymajor, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190/*
191 * static functions:
192 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193static int moxa_open(struct tty_struct *, struct file *);
194static void moxa_close(struct tty_struct *, struct file *);
195static int moxa_write(struct tty_struct *, const unsigned char *, int);
196static int moxa_write_room(struct tty_struct *);
197static void moxa_flush_buffer(struct tty_struct *);
198static int moxa_chars_in_buffer(struct tty_struct *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199static void moxa_throttle(struct tty_struct *);
200static void moxa_unthrottle(struct tty_struct *);
Alan Cox606d0992006-12-08 02:38:45 -0800201static void moxa_set_termios(struct tty_struct *, struct ktermios *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202static void moxa_stop(struct tty_struct *);
203static void moxa_start(struct tty_struct *);
204static void moxa_hangup(struct tty_struct *);
205static int moxa_tiocmget(struct tty_struct *tty, struct file *file);
206static int moxa_tiocmset(struct tty_struct *tty, struct file *file,
207 unsigned int set, unsigned int clear);
208static void moxa_poll(unsigned long);
Alan Coxdb1acaa2008-02-08 04:18:43 -0800209static void moxa_set_tty_param(struct tty_struct *, struct ktermios *);
Jiri Slaby6f56b6582007-10-18 03:06:24 -0700210static void moxa_setup_empty_event(struct tty_struct *);
Jiri Slaby6f56b6582007-10-18 03:06:24 -0700211static void moxa_shut_down(struct moxa_port *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212/*
213 * moxa board interface functions:
214 */
Jiri Slabyb4173f42008-04-30 00:53:40 -0700215static void MoxaPortEnable(struct moxa_port *);
216static void MoxaPortDisable(struct moxa_port *);
217static int MoxaPortSetTermio(struct moxa_port *, struct ktermios *, speed_t);
218static int MoxaPortGetLineOut(struct moxa_port *, int *, int *);
219static void MoxaPortLineCtrl(struct moxa_port *, int, int);
220static void MoxaPortFlowCtrl(struct moxa_port *, int, int, int, int, int);
221static int MoxaPortLineStatus(struct moxa_port *);
Jiri Slabyb4173f42008-04-30 00:53:40 -0700222static void MoxaPortFlushData(struct moxa_port *, int);
Jiri Slaby2108eba2008-04-30 00:53:44 -0700223static int MoxaPortWriteData(struct moxa_port *, const unsigned char *, int);
Jiri Slaby7bcf97d2008-04-30 00:53:43 -0700224static int MoxaPortReadData(struct moxa_port *);
Jiri Slabyb4173f42008-04-30 00:53:40 -0700225static int MoxaPortTxQueue(struct moxa_port *);
226static int MoxaPortRxQueue(struct moxa_port *);
227static int MoxaPortTxFree(struct moxa_port *);
228static void MoxaPortTxDisable(struct moxa_port *);
229static void MoxaPortTxEnable(struct moxa_port *);
Jiri Slaby8f8ecba2007-02-10 01:45:33 -0800230static int moxa_get_serial_info(struct moxa_port *, struct serial_struct __user *);
231static int moxa_set_serial_info(struct moxa_port *, struct serial_struct __user *);
Jiri Slabyb4173f42008-04-30 00:53:40 -0700232static void MoxaSetFifo(struct moxa_port *port, int enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Jiri Slaby74d7d972008-04-30 00:53:43 -0700234/*
235 * I/O functions
236 */
237
238static void moxa_wait_finish(void __iomem *ofsAddr)
239{
240 unsigned long end = jiffies + moxaFuncTout;
241
242 while (readw(ofsAddr + FuncCode) != 0)
243 if (time_after(jiffies, end))
244 return;
245 if (readw(ofsAddr + FuncCode) != 0 && printk_ratelimit())
246 printk(KERN_WARNING "moxa function expired\n");
247}
248
Jiri Slabyeaa95a82008-04-30 00:53:46 -0700249static void moxafunc(void __iomem *ofsAddr, u16 cmd, u16 arg)
Jiri Slaby74d7d972008-04-30 00:53:43 -0700250{
251 writew(arg, ofsAddr + FuncArg);
252 writew(cmd, ofsAddr + FuncCode);
253 moxa_wait_finish(ofsAddr);
254}
255
Jiri Slaby7bcf97d2008-04-30 00:53:43 -0700256static void moxa_low_water_check(void __iomem *ofsAddr)
257{
258 u16 rptr, wptr, mask, len;
259
260 if (readb(ofsAddr + FlagStat) & Xoff_state) {
261 rptr = readw(ofsAddr + RXrptr);
262 wptr = readw(ofsAddr + RXwptr);
263 mask = readw(ofsAddr + RX_mask);
264 len = (wptr - rptr) & mask;
265 if (len <= Low_water)
266 moxafunc(ofsAddr, FC_SendXon, 0);
267 }
268}
269
Jiri Slaby74d7d972008-04-30 00:53:43 -0700270/*
271 * TTY operations
272 */
273
274static int moxa_ioctl(struct tty_struct *tty, struct file *file,
275 unsigned int cmd, unsigned long arg)
276{
277 struct moxa_port *ch = tty->driver_data;
278 void __user *argp = (void __user *)arg;
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700279 int status, ret = 0;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700280
281 if (tty->index == MAX_PORTS) {
282 if (cmd != MOXA_GETDATACOUNT && cmd != MOXA_GET_IOQUEUE &&
283 cmd != MOXA_GETMSTATUS)
284 return -EINVAL;
285 } else if (!ch)
286 return -ENODEV;
287
288 switch (cmd) {
289 case MOXA_GETDATACOUNT:
290 moxaLog.tick = jiffies;
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700291 if (copy_to_user(argp, &moxaLog, sizeof(moxaLog)))
292 ret = -EFAULT;
293 break;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700294 case MOXA_FLUSH_QUEUE:
295 MoxaPortFlushData(ch, arg);
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700296 break;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700297 case MOXA_GET_IOQUEUE: {
298 struct moxaq_str __user *argm = argp;
299 struct moxaq_str tmp;
300 struct moxa_port *p;
301 unsigned int i, j;
302
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700303 mutex_lock(&moxa_openlock);
Jiri Slaby74d7d972008-04-30 00:53:43 -0700304 for (i = 0; i < MAX_BOARDS; i++) {
305 p = moxa_boards[i].ports;
306 for (j = 0; j < MAX_PORTS_PER_BOARD; j++, p++, argm++) {
307 memset(&tmp, 0, sizeof(tmp));
308 if (moxa_boards[i].ready) {
309 tmp.inq = MoxaPortRxQueue(p);
310 tmp.outq = MoxaPortTxQueue(p);
311 }
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700312 if (copy_to_user(argm, &tmp, sizeof(tmp))) {
313 mutex_unlock(&moxa_openlock);
Jiri Slaby74d7d972008-04-30 00:53:43 -0700314 return -EFAULT;
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700315 }
Jiri Slaby74d7d972008-04-30 00:53:43 -0700316 }
317 }
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700318 mutex_unlock(&moxa_openlock);
319 break;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700320 } case MOXA_GET_OQUEUE:
321 status = MoxaPortTxQueue(ch);
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700322 ret = put_user(status, (unsigned long __user *)argp);
323 break;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700324 case MOXA_GET_IQUEUE:
325 status = MoxaPortRxQueue(ch);
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700326 ret = put_user(status, (unsigned long __user *)argp);
327 break;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700328 case MOXA_GETMSTATUS: {
329 struct mxser_mstatus __user *argm = argp;
330 struct mxser_mstatus tmp;
331 struct moxa_port *p;
332 unsigned int i, j;
333
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700334 mutex_lock(&moxa_openlock);
Jiri Slaby74d7d972008-04-30 00:53:43 -0700335 for (i = 0; i < MAX_BOARDS; i++) {
336 p = moxa_boards[i].ports;
337 for (j = 0; j < MAX_PORTS_PER_BOARD; j++, p++, argm++) {
338 memset(&tmp, 0, sizeof(tmp));
339 if (!moxa_boards[i].ready)
340 goto copy;
341
342 status = MoxaPortLineStatus(p);
343 if (status & 1)
344 tmp.cts = 1;
345 if (status & 2)
346 tmp.dsr = 1;
347 if (status & 4)
348 tmp.dcd = 1;
349
350 if (!p->tty || !p->tty->termios)
351 tmp.cflag = p->cflag;
352 else
353 tmp.cflag = p->tty->termios->c_cflag;
354copy:
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700355 if (copy_to_user(argm, &tmp, sizeof(tmp))) {
356 mutex_unlock(&moxa_openlock);
Jiri Slaby74d7d972008-04-30 00:53:43 -0700357 return -EFAULT;
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700358 }
Jiri Slaby74d7d972008-04-30 00:53:43 -0700359 }
360 }
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700361 mutex_unlock(&moxa_openlock);
362 break;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700363 }
364 case TIOCGSERIAL:
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700365 mutex_lock(&moxa_openlock);
366 ret = moxa_get_serial_info(ch, argp);
367 mutex_unlock(&moxa_openlock);
368 break;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700369 case TIOCSSERIAL:
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700370 mutex_lock(&moxa_openlock);
371 ret = moxa_set_serial_info(ch, argp);
372 mutex_unlock(&moxa_openlock);
373 break;
374 default:
375 ret = -ENOIOCTLCMD;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700376 }
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700377 return ret;
Jiri Slaby74d7d972008-04-30 00:53:43 -0700378}
379
380static void moxa_break_ctl(struct tty_struct *tty, int state)
381{
382 struct moxa_port *port = tty->driver_data;
383
384 moxafunc(port->tableAddr, state ? FC_SendBreak : FC_StopBreak,
385 Magic_code);
386}
387
Jeff Dikeb68e31d2006-10-02 02:17:18 -0700388static const struct tty_operations moxa_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 .open = moxa_open,
390 .close = moxa_close,
391 .write = moxa_write,
392 .write_room = moxa_write_room,
393 .flush_buffer = moxa_flush_buffer,
394 .chars_in_buffer = moxa_chars_in_buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 .ioctl = moxa_ioctl,
396 .throttle = moxa_throttle,
397 .unthrottle = moxa_unthrottle,
398 .set_termios = moxa_set_termios,
399 .stop = moxa_stop,
400 .start = moxa_start,
401 .hangup = moxa_hangup,
Jiri Slaby74d7d972008-04-30 00:53:43 -0700402 .break_ctl = moxa_break_ctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 .tiocmget = moxa_tiocmget,
404 .tiocmset = moxa_tiocmset,
405};
406
Jiri Slabyaa7e5222007-02-10 01:45:27 -0800407static struct tty_driver *moxaDriver;
Jiri Slabyaa7e5222007-02-10 01:45:27 -0800408static DEFINE_TIMER(moxaTimer, moxa_poll, 0, 0);
Ingo Molnar34af9462006-06-27 02:53:55 -0700409static DEFINE_SPINLOCK(moxa_lock);
Alan Cox33f0f882006-01-09 20:54:13 -0800410
Jiri Slaby74d7d972008-04-30 00:53:43 -0700411/*
412 * HW init
413 */
414
Jiri Slaby03718232008-04-30 00:53:39 -0700415static int moxa_check_fw_model(struct moxa_board_conf *brd, u8 model)
416{
417 switch (brd->boardType) {
418 case MOXA_BOARD_C218_ISA:
419 case MOXA_BOARD_C218_PCI:
420 if (model != 1)
421 goto err;
422 break;
423 case MOXA_BOARD_CP204J:
424 if (model != 3)
425 goto err;
426 break;
427 default:
428 if (model != 2)
429 goto err;
430 break;
431 }
432 return 0;
433err:
434 return -EINVAL;
435}
436
437static int moxa_check_fw(const void *ptr)
438{
439 const __le16 *lptr = ptr;
440
441 if (*lptr != cpu_to_le16(0x7980))
442 return -EINVAL;
443
444 return 0;
445}
446
447static int moxa_load_bios(struct moxa_board_conf *brd, const u8 *buf,
448 size_t len)
449{
450 void __iomem *baseAddr = brd->basemem;
451 u16 tmp;
452
453 writeb(HW_reset, baseAddr + Control_reg); /* reset */
454 msleep(10);
455 memset_io(baseAddr, 0, 4096);
456 memcpy_toio(baseAddr, buf, len); /* download BIOS */
457 writeb(0, baseAddr + Control_reg); /* restart */
458
459 msleep(2000);
460
461 switch (brd->boardType) {
462 case MOXA_BOARD_C218_ISA:
463 case MOXA_BOARD_C218_PCI:
464 tmp = readw(baseAddr + C218_key);
465 if (tmp != C218_KeyCode)
466 goto err;
467 break;
468 case MOXA_BOARD_CP204J:
469 tmp = readw(baseAddr + C218_key);
470 if (tmp != CP204J_KeyCode)
471 goto err;
472 break;
473 default:
474 tmp = readw(baseAddr + C320_key);
475 if (tmp != C320_KeyCode)
476 goto err;
477 tmp = readw(baseAddr + C320_status);
478 if (tmp != STS_init) {
Jiri Slabyeaa95a82008-04-30 00:53:46 -0700479 printk(KERN_ERR "MOXA: bios upload failed -- CPU/Basic "
Jiri Slaby03718232008-04-30 00:53:39 -0700480 "module not found\n");
481 return -EIO;
482 }
483 break;
484 }
485
486 return 0;
487err:
Jiri Slabyeaa95a82008-04-30 00:53:46 -0700488 printk(KERN_ERR "MOXA: bios upload failed -- board not found\n");
Jiri Slaby03718232008-04-30 00:53:39 -0700489 return -EIO;
490}
491
492static int moxa_load_320b(struct moxa_board_conf *brd, const u8 *ptr,
493 size_t len)
494{
495 void __iomem *baseAddr = brd->basemem;
496
497 if (len < 7168) {
Jiri Slabyeaa95a82008-04-30 00:53:46 -0700498 printk(KERN_ERR "MOXA: invalid 320 bios -- too short\n");
Jiri Slaby03718232008-04-30 00:53:39 -0700499 return -EINVAL;
500 }
501
502 writew(len - 7168 - 2, baseAddr + C320bapi_len);
503 writeb(1, baseAddr + Control_reg); /* Select Page 1 */
504 memcpy_toio(baseAddr + DynPage_addr, ptr, 7168);
505 writeb(2, baseAddr + Control_reg); /* Select Page 2 */
506 memcpy_toio(baseAddr + DynPage_addr, ptr + 7168, len - 7168);
507
508 return 0;
509}
510
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700511static int moxa_real_load_code(struct moxa_board_conf *brd, const void *ptr,
Jiri Slaby03718232008-04-30 00:53:39 -0700512 size_t len)
513{
514 void __iomem *baseAddr = brd->basemem;
515 const u16 *uptr = ptr;
516 size_t wlen, len2, j;
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700517 unsigned long key, loadbuf, loadlen, checksum, checksum_ok;
Jiri Slaby08d01c792008-04-30 00:53:47 -0700518 unsigned int i, retry;
Jiri Slaby03718232008-04-30 00:53:39 -0700519 u16 usum, keycode;
520
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700521 keycode = (brd->boardType == MOXA_BOARD_CP204J) ? CP204J_KeyCode :
522 C218_KeyCode;
523
524 switch (brd->boardType) {
525 case MOXA_BOARD_CP204J:
526 case MOXA_BOARD_C218_ISA:
527 case MOXA_BOARD_C218_PCI:
528 key = C218_key;
529 loadbuf = C218_LoadBuf;
530 loadlen = C218DLoad_len;
531 checksum = C218check_sum;
532 checksum_ok = C218chksum_ok;
533 break;
534 default:
535 key = C320_key;
536 keycode = C320_KeyCode;
537 loadbuf = C320_LoadBuf;
538 loadlen = C320DLoad_len;
539 checksum = C320check_sum;
540 checksum_ok = C320chksum_ok;
541 break;
542 }
543
Jiri Slaby03718232008-04-30 00:53:39 -0700544 usum = 0;
545 wlen = len >> 1;
546 for (i = 0; i < wlen; i++)
547 usum += le16_to_cpu(uptr[i]);
548 retry = 0;
549 do {
550 wlen = len >> 1;
551 j = 0;
552 while (wlen) {
553 len2 = (wlen > 2048) ? 2048 : wlen;
554 wlen -= len2;
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700555 memcpy_toio(baseAddr + loadbuf, ptr + j, len2 << 1);
Jiri Slaby03718232008-04-30 00:53:39 -0700556 j += len2 << 1;
557
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700558 writew(len2, baseAddr + loadlen);
559 writew(0, baseAddr + key);
Jiri Slaby03718232008-04-30 00:53:39 -0700560 for (i = 0; i < 100; i++) {
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700561 if (readw(baseAddr + key) == keycode)
Jiri Slaby03718232008-04-30 00:53:39 -0700562 break;
563 msleep(10);
564 }
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700565 if (readw(baseAddr + key) != keycode)
Jiri Slaby03718232008-04-30 00:53:39 -0700566 return -EIO;
567 }
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700568 writew(0, baseAddr + loadlen);
569 writew(usum, baseAddr + checksum);
570 writew(0, baseAddr + key);
Jiri Slaby03718232008-04-30 00:53:39 -0700571 for (i = 0; i < 100; i++) {
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700572 if (readw(baseAddr + key) == keycode)
Jiri Slaby03718232008-04-30 00:53:39 -0700573 break;
574 msleep(10);
575 }
576 retry++;
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700577 } while ((readb(baseAddr + checksum_ok) != 1) && (retry < 3));
578 if (readb(baseAddr + checksum_ok) != 1)
Jiri Slaby03718232008-04-30 00:53:39 -0700579 return -EIO;
580
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700581 writew(0, baseAddr + key);
Jiri Slaby03718232008-04-30 00:53:39 -0700582 for (i = 0; i < 600; i++) {
583 if (readw(baseAddr + Magic_no) == Magic_code)
584 break;
585 msleep(10);
586 }
587 if (readw(baseAddr + Magic_no) != Magic_code)
588 return -EIO;
589
Jiri Slaby08d01c792008-04-30 00:53:47 -0700590 if (MOXA_IS_320(brd)) {
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700591 if (brd->busType == MOXA_BUS_TYPE_PCI) { /* ASIC board */
592 writew(0x3800, baseAddr + TMS320_PORT1);
593 writew(0x3900, baseAddr + TMS320_PORT2);
594 writew(28499, baseAddr + TMS320_CLOCK);
595 } else {
596 writew(0x3200, baseAddr + TMS320_PORT1);
597 writew(0x3400, baseAddr + TMS320_PORT2);
598 writew(19999, baseAddr + TMS320_CLOCK);
599 }
Jiri Slaby03718232008-04-30 00:53:39 -0700600 }
601 writew(1, baseAddr + Disable_IRQ);
602 writew(0, baseAddr + Magic_no);
603 for (i = 0; i < 500; i++) {
604 if (readw(baseAddr + Magic_no) == Magic_code)
605 break;
606 msleep(10);
607 }
608 if (readw(baseAddr + Magic_no) != Magic_code)
609 return -EIO;
610
Jiri Slaby08d01c792008-04-30 00:53:47 -0700611 if (MOXA_IS_320(brd)) {
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700612 j = readw(baseAddr + Module_cnt);
613 if (j <= 0)
614 return -EIO;
615 brd->numPorts = j * 8;
616 writew(j, baseAddr + Module_no);
617 writew(0, baseAddr + Magic_no);
618 for (i = 0; i < 600; i++) {
619 if (readw(baseAddr + Magic_no) == Magic_code)
620 break;
621 msleep(10);
622 }
623 if (readw(baseAddr + Magic_no) != Magic_code)
624 return -EIO;
Jiri Slaby03718232008-04-30 00:53:39 -0700625 }
Jiri Slaby03718232008-04-30 00:53:39 -0700626 brd->intNdx = baseAddr + IRQindex;
627 brd->intPend = baseAddr + IRQpending;
628 brd->intTable = baseAddr + IRQtable;
629
630 return 0;
631}
632
633static int moxa_load_code(struct moxa_board_conf *brd, const void *ptr,
634 size_t len)
635{
636 void __iomem *ofsAddr, *baseAddr = brd->basemem;
637 struct moxa_port *port;
638 int retval, i;
639
640 if (len % 2) {
Jiri Slabyeaa95a82008-04-30 00:53:46 -0700641 printk(KERN_ERR "MOXA: bios length is not even\n");
Jiri Slaby03718232008-04-30 00:53:39 -0700642 return -EINVAL;
643 }
644
Jiri Slaby5292bcd2008-04-30 00:53:39 -0700645 retval = moxa_real_load_code(brd, ptr, len); /* may change numPorts */
646 if (retval)
647 return retval;
648
Jiri Slaby03718232008-04-30 00:53:39 -0700649 switch (brd->boardType) {
650 case MOXA_BOARD_C218_ISA:
651 case MOXA_BOARD_C218_PCI:
652 case MOXA_BOARD_CP204J:
Jiri Slaby03718232008-04-30 00:53:39 -0700653 port = brd->ports;
654 for (i = 0; i < brd->numPorts; i++, port++) {
Jiri Slabyb4173f42008-04-30 00:53:40 -0700655 port->board = brd;
Jiri Slaby03718232008-04-30 00:53:39 -0700656 port->DCDState = 0;
657 port->tableAddr = baseAddr + Extern_table +
658 Extern_size * i;
659 ofsAddr = port->tableAddr;
660 writew(C218rx_mask, ofsAddr + RX_mask);
661 writew(C218tx_mask, ofsAddr + TX_mask);
662 writew(C218rx_spage + i * C218buf_pageno, ofsAddr + Page_rxb);
663 writew(readw(ofsAddr + Page_rxb) + C218rx_pageno, ofsAddr + EndPage_rxb);
664
665 writew(C218tx_spage + i * C218buf_pageno, ofsAddr + Page_txb);
666 writew(readw(ofsAddr + Page_txb) + C218tx_pageno, ofsAddr + EndPage_txb);
667
668 }
669 break;
670 default:
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 switch (brd->numPorts) {
679 case 8:
680 writew(C320p8rx_mask, ofsAddr + RX_mask);
681 writew(C320p8tx_mask, ofsAddr + TX_mask);
682 writew(C320p8rx_spage + i * C320p8buf_pgno, ofsAddr + Page_rxb);
683 writew(readw(ofsAddr + Page_rxb) + C320p8rx_pgno, ofsAddr + EndPage_rxb);
684 writew(C320p8tx_spage + i * C320p8buf_pgno, ofsAddr + Page_txb);
685 writew(readw(ofsAddr + Page_txb) + C320p8tx_pgno, ofsAddr + EndPage_txb);
686
687 break;
688 case 16:
689 writew(C320p16rx_mask, ofsAddr + RX_mask);
690 writew(C320p16tx_mask, ofsAddr + TX_mask);
691 writew(C320p16rx_spage + i * C320p16buf_pgno, ofsAddr + Page_rxb);
692 writew(readw(ofsAddr + Page_rxb) + C320p16rx_pgno, ofsAddr + EndPage_rxb);
693 writew(C320p16tx_spage + i * C320p16buf_pgno, ofsAddr + Page_txb);
694 writew(readw(ofsAddr + Page_txb) + C320p16tx_pgno, ofsAddr + EndPage_txb);
695 break;
696
697 case 24:
698 writew(C320p24rx_mask, ofsAddr + RX_mask);
699 writew(C320p24tx_mask, ofsAddr + TX_mask);
700 writew(C320p24rx_spage + i * C320p24buf_pgno, ofsAddr + Page_rxb);
701 writew(readw(ofsAddr + Page_rxb) + C320p24rx_pgno, ofsAddr + EndPage_rxb);
702 writew(C320p24tx_spage + i * C320p24buf_pgno, ofsAddr + Page_txb);
703 writew(readw(ofsAddr + Page_txb), ofsAddr + EndPage_txb);
704 break;
705 case 32:
706 writew(C320p32rx_mask, ofsAddr + RX_mask);
707 writew(C320p32tx_mask, ofsAddr + TX_mask);
708 writew(C320p32tx_ofs, ofsAddr + Ofs_txb);
709 writew(C320p32rx_spage + i * C320p32buf_pgno, ofsAddr + Page_rxb);
710 writew(readb(ofsAddr + Page_rxb), ofsAddr + EndPage_rxb);
711 writew(C320p32tx_spage + i * C320p32buf_pgno, ofsAddr + Page_txb);
712 writew(readw(ofsAddr + Page_txb), ofsAddr + EndPage_txb);
713 break;
714 }
715 }
716 break;
717 }
Jiri Slaby03718232008-04-30 00:53:39 -0700718 return 0;
719}
720
721static int moxa_load_fw(struct moxa_board_conf *brd, const struct firmware *fw)
722{
723 void *ptr = fw->data;
724 char rsn[64];
725 u16 lens[5];
726 size_t len;
727 unsigned int a, lenp, lencnt;
728 int ret = -EINVAL;
729 struct {
730 __le32 magic; /* 0x34303430 */
731 u8 reserved1[2];
732 u8 type; /* UNIX = 3 */
733 u8 model; /* C218T=1, C320T=2, CP204=3 */
734 u8 reserved2[8];
735 __le16 len[5];
736 } *hdr = ptr;
737
738 BUILD_BUG_ON(ARRAY_SIZE(hdr->len) != ARRAY_SIZE(lens));
739
740 if (fw->size < MOXA_FW_HDRLEN) {
741 strcpy(rsn, "too short (even header won't fit)");
742 goto err;
743 }
744 if (hdr->magic != cpu_to_le32(0x30343034)) {
745 sprintf(rsn, "bad magic: %.8x", le32_to_cpu(hdr->magic));
746 goto err;
747 }
748 if (hdr->type != 3) {
749 sprintf(rsn, "not for linux, type is %u", hdr->type);
750 goto err;
751 }
752 if (moxa_check_fw_model(brd, hdr->model)) {
753 sprintf(rsn, "not for this card, model is %u", hdr->model);
754 goto err;
755 }
756
757 len = MOXA_FW_HDRLEN;
758 lencnt = hdr->model == 2 ? 5 : 3;
759 for (a = 0; a < ARRAY_SIZE(lens); a++) {
760 lens[a] = le16_to_cpu(hdr->len[a]);
761 if (lens[a] && len + lens[a] <= fw->size &&
762 moxa_check_fw(&fw->data[len]))
Jiri Slabyeaa95a82008-04-30 00:53:46 -0700763 printk(KERN_WARNING "MOXA firmware: unexpected input "
Jiri Slaby03718232008-04-30 00:53:39 -0700764 "at offset %u, but going on\n", (u32)len);
765 if (!lens[a] && a < lencnt) {
766 sprintf(rsn, "too few entries in fw file");
767 goto err;
768 }
769 len += lens[a];
770 }
771
772 if (len != fw->size) {
773 sprintf(rsn, "bad length: %u (should be %u)", (u32)fw->size,
774 (u32)len);
775 goto err;
776 }
777
778 ptr += MOXA_FW_HDRLEN;
779 lenp = 0; /* bios */
780
781 strcpy(rsn, "read above");
782
783 ret = moxa_load_bios(brd, ptr, lens[lenp]);
784 if (ret)
785 goto err;
786
787 /* we skip the tty section (lens[1]), since we don't need it */
788 ptr += lens[lenp] + lens[lenp + 1];
789 lenp += 2; /* comm */
790
791 if (hdr->model == 2) {
792 ret = moxa_load_320b(brd, ptr, lens[lenp]);
793 if (ret)
794 goto err;
795 /* skip another tty */
796 ptr += lens[lenp] + lens[lenp + 1];
797 lenp += 2;
798 }
799
800 ret = moxa_load_code(brd, ptr, lens[lenp]);
801 if (ret)
802 goto err;
803
804 return 0;
805err:
806 printk(KERN_ERR "firmware failed to load, reason: %s\n", rsn);
807 return ret;
808}
809
810static int moxa_init_board(struct moxa_board_conf *brd, struct device *dev)
811{
812 const struct firmware *fw;
813 const char *file;
Jiri Slaby810ab092008-04-30 00:53:41 -0700814 struct moxa_port *p;
815 unsigned int i;
Jiri Slaby03718232008-04-30 00:53:39 -0700816 int ret;
817
Jiri Slaby810ab092008-04-30 00:53:41 -0700818 brd->ports = kcalloc(MAX_PORTS_PER_BOARD, sizeof(*brd->ports),
819 GFP_KERNEL);
820 if (brd->ports == NULL) {
821 printk(KERN_ERR "cannot allocate memory for ports\n");
822 ret = -ENOMEM;
823 goto err;
824 }
825
826 for (i = 0, p = brd->ports; i < MAX_PORTS_PER_BOARD; i++, p++) {
827 p->type = PORT_16550A;
828 p->close_delay = 5 * HZ / 10;
829 p->cflag = B9600 | CS8 | CREAD | CLOCAL | HUPCL;
830 init_waitqueue_head(&p->open_wait);
Jiri Slaby810ab092008-04-30 00:53:41 -0700831 }
832
Jiri Slaby03718232008-04-30 00:53:39 -0700833 switch (brd->boardType) {
834 case MOXA_BOARD_C218_ISA:
835 case MOXA_BOARD_C218_PCI:
836 file = "c218tunx.cod";
837 break;
838 case MOXA_BOARD_CP204J:
839 file = "cp204unx.cod";
840 break;
841 default:
842 file = "c320tunx.cod";
843 break;
844 }
845
846 ret = request_firmware(&fw, file, dev);
847 if (ret) {
848 printk(KERN_ERR "request_firmware failed\n");
Jiri Slaby810ab092008-04-30 00:53:41 -0700849 goto err_free;
Jiri Slaby03718232008-04-30 00:53:39 -0700850 }
851
852 ret = moxa_load_fw(brd, fw);
853
854 release_firmware(fw);
Jiri Slaby810ab092008-04-30 00:53:41 -0700855
856 if (ret)
857 goto err_free;
858
Jiri Slaby2a541342008-04-30 00:53:45 -0700859 spin_lock_bh(&moxa_lock);
Jiri Slaby810ab092008-04-30 00:53:41 -0700860 brd->ready = 1;
Jiri Slaby0bcc4ca2008-04-30 00:53:42 -0700861 if (!timer_pending(&moxaTimer))
862 mod_timer(&moxaTimer, jiffies + HZ / 50);
Jiri Slaby2a541342008-04-30 00:53:45 -0700863 spin_unlock_bh(&moxa_lock);
Jiri Slaby0bcc4ca2008-04-30 00:53:42 -0700864
Jiri Slaby810ab092008-04-30 00:53:41 -0700865 return 0;
866err_free:
867 kfree(brd->ports);
868err:
Jiri Slaby03718232008-04-30 00:53:39 -0700869 return ret;
870}
871
Jiri Slaby810ab092008-04-30 00:53:41 -0700872static void moxa_board_deinit(struct moxa_board_conf *brd)
873{
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700874 unsigned int a, opened;
875
876 mutex_lock(&moxa_openlock);
Jiri Slaby7bcf97d2008-04-30 00:53:43 -0700877 spin_lock_bh(&moxa_lock);
Jiri Slaby810ab092008-04-30 00:53:41 -0700878 brd->ready = 0;
Jiri Slaby7bcf97d2008-04-30 00:53:43 -0700879 spin_unlock_bh(&moxa_lock);
Jiri Slabya8f5cda2008-04-30 00:53:45 -0700880
881 /* pci hot-un-plug support */
882 for (a = 0; a < brd->numPorts; a++)
883 if (brd->ports[a].asyncflags & ASYNC_INITIALIZED)
884 tty_hangup(brd->ports[a].tty);
885 while (1) {
886 opened = 0;
887 for (a = 0; a < brd->numPorts; a++)
888 if (brd->ports[a].asyncflags & ASYNC_INITIALIZED)
889 opened++;
890 mutex_unlock(&moxa_openlock);
891 if (!opened)
892 break;
893 msleep(50);
894 mutex_lock(&moxa_openlock);
895 }
896
Jiri Slaby810ab092008-04-30 00:53:41 -0700897 iounmap(brd->basemem);
898 brd->basemem = NULL;
899 kfree(brd->ports);
900}
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902#ifdef CONFIG_PCI
Jiri Slaby9cde5bf2007-02-10 01:45:35 -0800903static int __devinit moxa_pci_probe(struct pci_dev *pdev,
904 const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
Jiri Slaby9cde5bf2007-02-10 01:45:35 -0800906 struct moxa_board_conf *board;
907 unsigned int i;
908 int board_type = ent->driver_data;
909 int retval;
910
911 retval = pci_enable_device(pdev);
Jiri Slaby7aeb95d2007-10-18 03:06:24 -0700912 if (retval) {
913 dev_err(&pdev->dev, "can't enable pci device\n");
Jiri Slaby9cde5bf2007-02-10 01:45:35 -0800914 goto err;
Jiri Slaby7aeb95d2007-10-18 03:06:24 -0700915 }
Jiri Slaby9cde5bf2007-02-10 01:45:35 -0800916
917 for (i = 0; i < MAX_BOARDS; i++)
918 if (moxa_boards[i].basemem == NULL)
919 break;
920
921 retval = -ENODEV;
922 if (i >= MAX_BOARDS) {
Jiri Slaby7aeb95d2007-10-18 03:06:24 -0700923 dev_warn(&pdev->dev, "more than %u MOXA Intellio family boards "
Jiri Slaby9cde5bf2007-02-10 01:45:35 -0800924 "found. Board is ignored.\n", MAX_BOARDS);
925 goto err;
926 }
927
928 board = &moxa_boards[i];
Jiri Slabye46a5e32008-04-30 00:53:37 -0700929
930 retval = pci_request_region(pdev, 2, "moxa-base");
931 if (retval) {
932 dev_err(&pdev->dev, "can't request pci region 2\n");
933 goto err;
934 }
935
936 board->basemem = ioremap(pci_resource_start(pdev, 2), 0x4000);
Jiri Slaby7aeb95d2007-10-18 03:06:24 -0700937 if (board->basemem == NULL) {
938 dev_err(&pdev->dev, "can't remap io space 2\n");
Jiri Slabye46a5e32008-04-30 00:53:37 -0700939 goto err_reg;
Jiri Slaby7aeb95d2007-10-18 03:06:24 -0700940 }
Jiri Slaby9cde5bf2007-02-10 01:45:35 -0800941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 board->boardType = board_type;
943 switch (board_type) {
944 case MOXA_BOARD_C218_ISA:
945 case MOXA_BOARD_C218_PCI:
946 board->numPorts = 8;
947 break;
948
949 case MOXA_BOARD_CP204J:
950 board->numPorts = 4;
951 break;
952 default:
953 board->numPorts = 0;
954 break;
955 }
956 board->busType = MOXA_BUS_TYPE_PCI;
Jiri Slabya784bf72007-02-10 01:45:36 -0800957
Jiri Slaby03718232008-04-30 00:53:39 -0700958 retval = moxa_init_board(board, &pdev->dev);
959 if (retval)
960 goto err_base;
961
Jiri Slaby9cde5bf2007-02-10 01:45:35 -0800962 pci_set_drvdata(pdev, board);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Jiri Slabyeaa95a82008-04-30 00:53:46 -0700964 return 0;
Jiri Slaby03718232008-04-30 00:53:39 -0700965err_base:
966 iounmap(board->basemem);
967 board->basemem = NULL;
Jiri Slabye46a5e32008-04-30 00:53:37 -0700968err_reg:
969 pci_release_region(pdev, 2);
Jiri Slaby9cde5bf2007-02-10 01:45:35 -0800970err:
971 return retval;
972}
973
974static void __devexit moxa_pci_remove(struct pci_dev *pdev)
975{
976 struct moxa_board_conf *brd = pci_get_drvdata(pdev);
977
Jiri Slaby810ab092008-04-30 00:53:41 -0700978 moxa_board_deinit(brd);
979
Jiri Slabye46a5e32008-04-30 00:53:37 -0700980 pci_release_region(pdev, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981}
Jiri Slabya784bf72007-02-10 01:45:36 -0800982
983static struct pci_driver moxa_pci_driver = {
984 .name = "moxa",
985 .id_table = moxa_pcibrds,
986 .probe = moxa_pci_probe,
987 .remove = __devexit_p(moxa_pci_remove)
988};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989#endif /* CONFIG_PCI */
990
991static int __init moxa_init(void)
992{
Jiri Slaby810ab092008-04-30 00:53:41 -0700993 unsigned int isabrds = 0;
Jiri Slabyd353eca2008-04-30 00:53:37 -0700994 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Jiri Slaby7aeb95d2007-10-18 03:06:24 -0700996 printk(KERN_INFO "MOXA Intellio family driver version %s\n",
997 MOXA_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 moxaDriver = alloc_tty_driver(MAX_PORTS + 1);
999 if (!moxaDriver)
1000 return -ENOMEM;
1001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 moxaDriver->owner = THIS_MODULE;
Sergey Vlasov9b4e3b12005-09-03 16:26:49 +01001003 moxaDriver->name = "ttyMX";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 moxaDriver->major = ttymajor;
1005 moxaDriver->minor_start = 0;
1006 moxaDriver->type = TTY_DRIVER_TYPE_SERIAL;
1007 moxaDriver->subtype = SERIAL_TYPE_NORMAL;
1008 moxaDriver->init_termios = tty_std_termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 moxaDriver->init_termios.c_cflag = B9600 | CS8 | CREAD | CLOCAL | HUPCL;
Alan Cox606d0992006-12-08 02:38:45 -08001010 moxaDriver->init_termios.c_ispeed = 9600;
1011 moxaDriver->init_termios.c_ospeed = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 moxaDriver->flags = TTY_DRIVER_REAL_RAW;
1013 tty_set_operations(moxaDriver, &moxa_ops);
1014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 if (tty_register_driver(moxaDriver)) {
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001016 printk(KERN_ERR "can't register MOXA Smartio tty driver!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 put_tty_driver(moxaDriver);
1018 return -1;
1019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Jiri Slabyd353eca2008-04-30 00:53:37 -07001021 /* Find the boards defined from module args. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022#ifdef MODULE
Jiri Slabyd353eca2008-04-30 00:53:37 -07001023 {
1024 struct moxa_board_conf *brd = moxa_boards;
Jiri Slaby810ab092008-04-30 00:53:41 -07001025 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 for (i = 0; i < MAX_BOARDS; i++) {
Jiri Slabyd353eca2008-04-30 00:53:37 -07001027 if (!baseaddr[i])
1028 break;
1029 if (type[i] == MOXA_BOARD_C218_ISA ||
1030 type[i] == MOXA_BOARD_C320_ISA) {
Jiri Slaby7aeb95d2007-10-18 03:06:24 -07001031 pr_debug("Moxa board %2d: %s board(baseAddr=%lx)\n",
Jiri Slabyd353eca2008-04-30 00:53:37 -07001032 isabrds + 1, moxa_brdname[type[i] - 1],
1033 baseaddr[i]);
1034 brd->boardType = type[i];
1035 brd->numPorts = type[i] == MOXA_BOARD_C218_ISA ? 8 :
1036 numports[i];
1037 brd->busType = MOXA_BUS_TYPE_ISA;
1038 brd->basemem = ioremap(baseaddr[i], 0x4000);
1039 if (!brd->basemem) {
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001040 printk(KERN_ERR "MOXA: can't remap %lx\n",
Jiri Slabyd353eca2008-04-30 00:53:37 -07001041 baseaddr[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 continue;
1043 }
Jiri Slaby03718232008-04-30 00:53:39 -07001044 if (moxa_init_board(brd, NULL)) {
1045 iounmap(brd->basemem);
1046 brd->basemem = NULL;
1047 continue;
1048 }
Jiri Slabyd353eca2008-04-30 00:53:37 -07001049
1050 brd++;
1051 isabrds++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 }
1053 }
Jiri Slabyd353eca2008-04-30 00:53:37 -07001054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055#endif
Jiri Slabya784bf72007-02-10 01:45:36 -08001056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057#ifdef CONFIG_PCI
Jiri Slabya784bf72007-02-10 01:45:36 -08001058 retval = pci_register_driver(&moxa_pci_driver);
1059 if (retval) {
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001060 printk(KERN_ERR "Can't register MOXA pci driver!\n");
Jiri Slabyd353eca2008-04-30 00:53:37 -07001061 if (isabrds)
Jiri Slabya784bf72007-02-10 01:45:36 -08001062 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 }
1064#endif
Jiri Slabya784bf72007-02-10 01:45:36 -08001065
Jiri Slabya784bf72007-02-10 01:45:36 -08001066 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067}
1068
1069static void __exit moxa_exit(void)
1070{
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001071 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Jiri Slaby9cde5bf2007-02-10 01:45:35 -08001073#ifdef CONFIG_PCI
Jiri Slabya784bf72007-02-10 01:45:36 -08001074 pci_unregister_driver(&moxa_pci_driver);
Jiri Slaby9cde5bf2007-02-10 01:45:35 -08001075#endif
Jiri Slabya784bf72007-02-10 01:45:36 -08001076
Jiri Slaby810ab092008-04-30 00:53:41 -07001077 for (i = 0; i < MAX_BOARDS; i++) /* ISA boards */
1078 if (moxa_boards[i].ready)
1079 moxa_board_deinit(&moxa_boards[i]);
Jiri Slaby2a541342008-04-30 00:53:45 -07001080
1081 del_timer_sync(&moxaTimer);
1082
1083 if (tty_unregister_driver(moxaDriver))
1084 printk(KERN_ERR "Couldn't unregister MOXA Intellio family "
1085 "serial driver\n");
1086 put_tty_driver(moxaDriver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087}
1088
1089module_init(moxa_init);
1090module_exit(moxa_exit);
1091
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001092static void moxa_close_port(struct moxa_port *ch)
1093{
1094 moxa_shut_down(ch);
1095 MoxaPortFlushData(ch, 2);
1096 ch->asyncflags &= ~ASYNC_NORMAL_ACTIVE;
1097 ch->tty->driver_data = NULL;
1098 ch->tty = NULL;
1099}
1100
1101static int moxa_block_till_ready(struct tty_struct *tty, struct file *filp,
1102 struct moxa_port *ch)
1103{
1104 DEFINE_WAIT(wait);
1105 int retval = 0;
1106 u8 dcd;
1107
1108 while (1) {
1109 prepare_to_wait(&ch->open_wait, &wait, TASK_INTERRUPTIBLE);
1110 if (tty_hung_up_p(filp)) {
1111#ifdef SERIAL_DO_RESTART
1112 retval = -ERESTARTSYS;
1113#else
1114 retval = -EAGAIN;
1115#endif
1116 break;
1117 }
1118 spin_lock_bh(&moxa_lock);
1119 dcd = ch->DCDState;
1120 spin_unlock_bh(&moxa_lock);
1121 if (dcd)
1122 break;
1123
1124 if (signal_pending(current)) {
1125 retval = -ERESTARTSYS;
1126 break;
1127 }
1128 schedule();
1129 }
1130 finish_wait(&ch->open_wait, &wait);
1131
1132 return retval;
1133}
1134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135static int moxa_open(struct tty_struct *tty, struct file *filp)
1136{
Jiri Slaby810ab092008-04-30 00:53:41 -07001137 struct moxa_board_conf *brd;
Jiri Slaby8f8ecba2007-02-10 01:45:33 -08001138 struct moxa_port *ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 int port;
1140 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Jiri Slaby11324ed2007-02-10 01:45:31 -08001142 port = tty->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 if (port == MAX_PORTS) {
Jiri Slaby74d7d972008-04-30 00:53:43 -07001144 return capable(CAP_SYS_ADMIN) ? 0 : -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 }
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001146 if (mutex_lock_interruptible(&moxa_openlock))
1147 return -ERESTARTSYS;
Jiri Slaby810ab092008-04-30 00:53:41 -07001148 brd = &moxa_boards[port / MAX_PORTS_PER_BOARD];
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001149 if (!brd->ready) {
1150 mutex_unlock(&moxa_openlock);
Jiri Slaby810ab092008-04-30 00:53:41 -07001151 return -ENODEV;
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Jiri Slaby810ab092008-04-30 00:53:41 -07001154 ch = &brd->ports[port % MAX_PORTS_PER_BOARD];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 ch->count++;
1156 tty->driver_data = ch;
1157 ch->tty = tty;
1158 if (!(ch->asyncflags & ASYNC_INITIALIZED)) {
1159 ch->statusflags = 0;
Alan Coxdb1acaa2008-02-08 04:18:43 -08001160 moxa_set_tty_param(tty, tty->termios);
Jiri Slabyb4173f42008-04-30 00:53:40 -07001161 MoxaPortLineCtrl(ch, 1, 1);
1162 MoxaPortEnable(ch);
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001163 MoxaSetFifo(ch, ch->type == PORT_16550A);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 ch->asyncflags |= ASYNC_INITIALIZED;
1165 }
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001166 mutex_unlock(&moxa_openlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001168 retval = 0;
1169 if (!(filp->f_flags & O_NONBLOCK) && !C_CLOCAL(tty))
1170 retval = moxa_block_till_ready(tty, filp, ch);
1171 mutex_lock(&moxa_openlock);
1172 if (retval) {
1173 if (ch->count) /* 0 means already hung up... */
1174 if (--ch->count == 0)
1175 moxa_close_port(ch);
1176 } else
1177 ch->asyncflags |= ASYNC_NORMAL_ACTIVE;
1178 mutex_unlock(&moxa_openlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001180 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181}
1182
1183static void moxa_close(struct tty_struct *tty, struct file *filp)
1184{
Jiri Slaby8f8ecba2007-02-10 01:45:33 -08001185 struct moxa_port *ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 int port;
1187
Jiri Slaby11324ed2007-02-10 01:45:31 -08001188 port = tty->index;
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001189 if (port == MAX_PORTS || tty_hung_up_p(filp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001192 mutex_lock(&moxa_openlock);
1193 ch = tty->driver_data;
1194 if (ch == NULL)
1195 goto unlock;
1196 if (tty->count == 1 && ch->count != 1) {
Jiri Slaby7aeb95d2007-10-18 03:06:24 -07001197 printk(KERN_WARNING "moxa_close: bad serial port count; "
1198 "tty->count is 1, ch->count is %d\n", ch->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 ch->count = 1;
1200 }
1201 if (--ch->count < 0) {
Jiri Slaby7aeb95d2007-10-18 03:06:24 -07001202 printk(KERN_WARNING "moxa_close: bad serial port count, "
1203 "device=%s\n", tty->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 ch->count = 0;
1205 }
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001206 if (ch->count)
1207 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
1209 ch->cflag = tty->termios->c_cflag;
1210 if (ch->asyncflags & ASYNC_INITIALIZED) {
Jiri Slaby6f56b6582007-10-18 03:06:24 -07001211 moxa_setup_empty_event(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 tty_wait_until_sent(tty, 30 * HZ); /* 30 seconds timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001215 moxa_close_port(ch);
1216unlock:
1217 mutex_unlock(&moxa_openlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218}
1219
1220static int moxa_write(struct tty_struct *tty,
1221 const unsigned char *buf, int count)
1222{
Jiri Slabyb4173f42008-04-30 00:53:40 -07001223 struct moxa_port *ch = tty->driver_data;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001224 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if (ch == NULL)
Jiri Slabyb4173f42008-04-30 00:53:40 -07001227 return 0;
Alan Cox33f0f882006-01-09 20:54:13 -08001228
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001229 spin_lock_bh(&moxa_lock);
Jiri Slaby2108eba2008-04-30 00:53:44 -07001230 len = MoxaPortWriteData(ch, buf, count);
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001231 spin_unlock_bh(&moxa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 ch->statusflags |= LOWWAIT;
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001234 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
1237static int moxa_write_room(struct tty_struct *tty)
1238{
Jiri Slaby8f8ecba2007-02-10 01:45:33 -08001239 struct moxa_port *ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241 if (tty->stopped)
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001242 return 0;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001243 ch = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 if (ch == NULL)
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001245 return 0;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001246 return MoxaPortTxFree(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247}
1248
1249static void moxa_flush_buffer(struct tty_struct *tty)
1250{
Jiri Slabyb4173f42008-04-30 00:53:40 -07001251 struct moxa_port *ch = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253 if (ch == NULL)
1254 return;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001255 MoxaPortFlushData(ch, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 tty_wakeup(tty);
1257}
1258
1259static int moxa_chars_in_buffer(struct tty_struct *tty)
1260{
Jiri Slabyb4173f42008-04-30 00:53:40 -07001261 struct moxa_port *ch = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 int chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
1264 /*
1265 * Sigh...I have to check if driver_data is NULL here, because
1266 * if an open() fails, the TTY subsystem eventually calls
1267 * tty_wait_until_sent(), which calls the driver's chars_in_buffer()
1268 * routine. And since the open() failed, we return 0 here. TDJ
1269 */
1270 if (ch == NULL)
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001271 return 0;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001272 chars = MoxaPortTxQueue(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 if (chars) {
1274 /*
1275 * Make it possible to wakeup anything waiting for output
1276 * in tty_ioctl.c, etc.
1277 */
1278 if (!(ch->statusflags & EMPTYWAIT))
Jiri Slaby6f56b6582007-10-18 03:06:24 -07001279 moxa_setup_empty_event(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 }
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001281 return chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282}
1283
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284static int moxa_tiocmget(struct tty_struct *tty, struct file *file)
1285{
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001286 struct moxa_port *ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 int flag = 0, dtr, rts;
1288
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001289 mutex_lock(&moxa_openlock);
1290 ch = tty->driver_data;
1291 if (!ch) {
1292 mutex_unlock(&moxa_openlock);
Jiri Slaby74d7d972008-04-30 00:53:43 -07001293 return -EINVAL;
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Jiri Slabyb4173f42008-04-30 00:53:40 -07001296 MoxaPortGetLineOut(ch, &dtr, &rts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 if (dtr)
1298 flag |= TIOCM_DTR;
1299 if (rts)
1300 flag |= TIOCM_RTS;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001301 dtr = MoxaPortLineStatus(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 if (dtr & 1)
1303 flag |= TIOCM_CTS;
1304 if (dtr & 2)
1305 flag |= TIOCM_DSR;
1306 if (dtr & 4)
1307 flag |= TIOCM_CD;
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001308 mutex_unlock(&moxa_openlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 return flag;
1310}
1311
1312static int moxa_tiocmset(struct tty_struct *tty, struct file *file,
1313 unsigned int set, unsigned int clear)
1314{
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001315 struct moxa_port *ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 int port;
1317 int dtr, rts;
1318
Jiri Slaby11324ed2007-02-10 01:45:31 -08001319 port = tty->index;
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001320 mutex_lock(&moxa_openlock);
1321 ch = tty->driver_data;
1322 if (!ch) {
1323 mutex_unlock(&moxa_openlock);
Jiri Slaby74d7d972008-04-30 00:53:43 -07001324 return -EINVAL;
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Jiri Slabyb4173f42008-04-30 00:53:40 -07001327 MoxaPortGetLineOut(ch, &dtr, &rts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 if (set & TIOCM_RTS)
1329 rts = 1;
1330 if (set & TIOCM_DTR)
1331 dtr = 1;
1332 if (clear & TIOCM_RTS)
1333 rts = 0;
1334 if (clear & TIOCM_DTR)
1335 dtr = 0;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001336 MoxaPortLineCtrl(ch, dtr, rts);
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001337 mutex_unlock(&moxa_openlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 return 0;
1339}
1340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341static void moxa_throttle(struct tty_struct *tty)
1342{
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001343 struct moxa_port *ch = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
1345 ch->statusflags |= THROTTLE;
1346}
1347
1348static void moxa_unthrottle(struct tty_struct *tty)
1349{
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001350 struct moxa_port *ch = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
1352 ch->statusflags &= ~THROTTLE;
1353}
1354
1355static void moxa_set_termios(struct tty_struct *tty,
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001356 struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357{
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001358 struct moxa_port *ch = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360 if (ch == NULL)
1361 return;
Alan Coxdb1acaa2008-02-08 04:18:43 -08001362 moxa_set_tty_param(tty, old_termios);
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001363 if (!(old_termios->c_cflag & CLOCAL) && C_CLOCAL(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 wake_up_interruptible(&ch->open_wait);
1365}
1366
1367static void moxa_stop(struct tty_struct *tty)
1368{
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001369 struct moxa_port *ch = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
1371 if (ch == NULL)
1372 return;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001373 MoxaPortTxDisable(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 ch->statusflags |= TXSTOPPED;
1375}
1376
1377
1378static void moxa_start(struct tty_struct *tty)
1379{
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001380 struct moxa_port *ch = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
1382 if (ch == NULL)
1383 return;
1384
1385 if (!(ch->statusflags & TXSTOPPED))
1386 return;
1387
Jiri Slabyb4173f42008-04-30 00:53:40 -07001388 MoxaPortTxEnable(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 ch->statusflags &= ~TXSTOPPED;
1390}
1391
1392static void moxa_hangup(struct tty_struct *tty)
1393{
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001394 struct moxa_port *ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001396 mutex_lock(&moxa_openlock);
1397 ch = tty->driver_data;
1398 if (ch == NULL) {
1399 mutex_unlock(&moxa_openlock);
1400 return;
1401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 ch->count = 0;
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001403 moxa_close_port(ch);
1404 mutex_unlock(&moxa_openlock);
1405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 wake_up_interruptible(&ch->open_wait);
1407}
1408
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001409static void moxa_new_dcdstate(struct moxa_port *p, u8 dcd)
1410{
1411 dcd = !!dcd;
1412
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001413 if (dcd != p->DCDState && p->tty && C_CLOCAL(p->tty)) {
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001414 if (!dcd)
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001415 tty_hangup(p->tty);
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001416 }
1417 p->DCDState = dcd;
1418}
1419
1420static int moxa_poll_port(struct moxa_port *p, unsigned int handle,
1421 u16 __iomem *ip)
1422{
1423 struct tty_struct *tty = p->tty;
1424 void __iomem *ofsAddr;
1425 unsigned int inited = p->asyncflags & ASYNC_INITIALIZED;
1426 u16 intr;
1427
1428 if (tty) {
1429 if ((p->statusflags & EMPTYWAIT) &&
1430 MoxaPortTxQueue(p) == 0) {
1431 p->statusflags &= ~EMPTYWAIT;
1432 tty_wakeup(tty);
1433 }
1434 if ((p->statusflags & LOWWAIT) && !tty->stopped &&
1435 MoxaPortTxQueue(p) <= WAKEUP_CHARS) {
1436 p->statusflags &= ~LOWWAIT;
1437 tty_wakeup(tty);
1438 }
1439
1440 if (inited && !(p->statusflags & THROTTLE) &&
1441 MoxaPortRxQueue(p) > 0) { /* RX */
1442 MoxaPortReadData(p);
1443 tty_schedule_flip(tty);
1444 }
1445 } else {
1446 p->statusflags &= ~EMPTYWAIT;
1447 MoxaPortFlushData(p, 0); /* flush RX */
1448 }
1449
1450 if (!handle) /* nothing else to do */
1451 return 0;
1452
1453 intr = readw(ip); /* port irq status */
1454 if (intr == 0)
1455 return 0;
1456
1457 writew(0, ip); /* ACK port */
1458 ofsAddr = p->tableAddr;
1459 if (intr & IntrTx) /* disable tx intr */
1460 writew(readw(ofsAddr + HostStat) & ~WakeupTx,
1461 ofsAddr + HostStat);
1462
1463 if (!inited)
1464 return 0;
1465
1466 if (tty && (intr & IntrBreak) && !I_IGNBRK(tty)) { /* BREAK */
1467 tty_insert_flip_char(tty, 0, TTY_BREAK);
1468 tty_schedule_flip(tty);
1469 }
1470
1471 if (intr & IntrLine)
1472 moxa_new_dcdstate(p, readb(ofsAddr + FlagStat) & DCD_state);
1473
1474 return 0;
1475}
1476
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477static void moxa_poll(unsigned long ignored)
1478{
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001479 struct moxa_board_conf *brd;
1480 u16 __iomem *ip;
Jiri Slaby2a541342008-04-30 00:53:45 -07001481 unsigned int card, port, served = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001483 spin_lock(&moxa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 for (card = 0; card < MAX_BOARDS; card++) {
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001485 brd = &moxa_boards[card];
1486 if (!brd->ready)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 continue;
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001488
Jiri Slaby2a541342008-04-30 00:53:45 -07001489 served++;
1490
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001491 ip = NULL;
1492 if (readb(brd->intPend) == 0xff)
1493 ip = brd->intTable + readb(brd->intNdx);
1494
1495 for (port = 0; port < brd->numPorts; port++)
1496 moxa_poll_port(&brd->ports[port], !!ip, ip + port);
1497
1498 if (ip)
1499 writeb(0, brd->intPend); /* ACK */
1500
1501 if (moxaLowWaterChk) {
1502 struct moxa_port *p = brd->ports;
1503 for (port = 0; port < brd->numPorts; port++, p++)
1504 if (p->lowChkFlag) {
1505 p->lowChkFlag = 0;
1506 moxa_low_water_check(p->tableAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 }
1509 }
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001510 moxaLowWaterChk = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Jiri Slaby2a541342008-04-30 00:53:45 -07001512 if (served)
1513 mod_timer(&moxaTimer, jiffies + HZ / 50);
1514 spin_unlock(&moxa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515}
1516
1517/******************************************************************************/
1518
Alan Coxdb1acaa2008-02-08 04:18:43 -08001519static void moxa_set_tty_param(struct tty_struct *tty, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520{
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001521 register struct ktermios *ts = tty->termios;
1522 struct moxa_port *ch = tty->driver_data;
Alan Coxdb1acaa2008-02-08 04:18:43 -08001523 int rts, cts, txflow, rxflow, xany, baud;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 rts = cts = txflow = rxflow = xany = 0;
1526 if (ts->c_cflag & CRTSCTS)
1527 rts = cts = 1;
1528 if (ts->c_iflag & IXON)
1529 txflow = 1;
1530 if (ts->c_iflag & IXOFF)
1531 rxflow = 1;
1532 if (ts->c_iflag & IXANY)
1533 xany = 1;
Alan Coxdb1acaa2008-02-08 04:18:43 -08001534
1535 /* Clear the features we don't support */
1536 ts->c_cflag &= ~CMSPAR;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001537 MoxaPortFlowCtrl(ch, rts, cts, txflow, rxflow, xany);
1538 baud = MoxaPortSetTermio(ch, ts, tty_get_baud_rate(tty));
Alan Coxdb1acaa2008-02-08 04:18:43 -08001539 if (baud == -1)
1540 baud = tty_termios_baud_rate(old_termios);
1541 /* Not put the baud rate into the termios data */
1542 tty_encode_baud_rate(tty, baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543}
1544
Jiri Slaby6f56b6582007-10-18 03:06:24 -07001545static void moxa_setup_empty_event(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546{
Jiri Slaby8f8ecba2007-02-10 01:45:33 -08001547 struct moxa_port *ch = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001549 spin_lock_bh(&moxa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 ch->statusflags |= EMPTYWAIT;
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001551 spin_unlock_bh(&moxa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552}
1553
Jiri Slaby6f56b6582007-10-18 03:06:24 -07001554static void moxa_shut_down(struct moxa_port *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555{
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001556 struct tty_struct *tp = ch->tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558 if (!(ch->asyncflags & ASYNC_INITIALIZED))
1559 return;
1560
Jiri Slabyb4173f42008-04-30 00:53:40 -07001561 MoxaPortDisable(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
1563 /*
1564 * If we're a modem control device and HUPCL is on, drop RTS & DTR.
1565 */
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001566 if (C_HUPCL(tp))
Jiri Slabyb4173f42008-04-30 00:53:40 -07001567 MoxaPortLineCtrl(ch, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001569 spin_lock_bh(&moxa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 ch->asyncflags &= ~ASYNC_INITIALIZED;
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001571 spin_unlock_bh(&moxa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572}
1573
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574/*****************************************************************************
1575 * Driver level functions: *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 *****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Jiri Slabyb4173f42008-04-30 00:53:40 -07001578static void MoxaPortFlushData(struct moxa_port *port, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579{
1580 void __iomem *ofsAddr;
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001581 if (mode < 0 || mode > 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 return;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001583 ofsAddr = port->tableAddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 moxafunc(ofsAddr, FC_FlushQueue, mode);
1585 if (mode != 1) {
Jiri Slabyb4173f42008-04-30 00:53:40 -07001586 port->lowChkFlag = 0;
Jiri Slaby6f56b6582007-10-18 03:06:24 -07001587 moxa_low_water_check(ofsAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 }
1589}
1590
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591/*
1592 * Moxa Port Number Description:
1593 *
1594 * MOXA serial driver supports up to 4 MOXA-C218/C320 boards. And,
1595 * the port number using in MOXA driver functions will be 0 to 31 for
1596 * first MOXA board, 32 to 63 for second, 64 to 95 for third and 96
1597 * to 127 for fourth. For example, if you setup three MOXA boards,
1598 * first board is C218, second board is C320-16 and third board is
1599 * C320-32. The port number of first board (C218 - 8 ports) is from
1600 * 0 to 7. The port number of second board (C320 - 16 ports) is form
1601 * 32 to 47. The port number of third board (C320 - 32 ports) is from
1602 * 64 to 95. And those port numbers form 8 to 31, 48 to 63 and 96 to
1603 * 127 will be invalid.
1604 *
1605 *
1606 * Moxa Functions Description:
1607 *
1608 * Function 1: Driver initialization routine, this routine must be
1609 * called when initialized driver.
1610 * Syntax:
1611 * void MoxaDriverInit();
1612 *
1613 *
1614 * Function 2: Moxa driver private IOCTL command processing.
1615 * Syntax:
1616 * int MoxaDriverIoctl(unsigned int cmd, unsigned long arg, int port);
1617 *
1618 * unsigned int cmd : IOCTL command
1619 * unsigned long arg : IOCTL argument
1620 * int port : port number (0 - 127)
1621 *
1622 * return: 0 (OK)
1623 * -EINVAL
1624 * -ENOIOCTLCMD
1625 *
1626 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 * Function 6: Enable this port to start Tx/Rx data.
1628 * Syntax:
1629 * void MoxaPortEnable(int port);
1630 * int port : port number (0 - 127)
1631 *
1632 *
1633 * Function 7: Disable this port
1634 * Syntax:
1635 * void MoxaPortDisable(int port);
1636 * int port : port number (0 - 127)
1637 *
1638 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 * Function 10: Setting baud rate of this port.
1640 * Syntax:
Jiri Slaby08d01c792008-04-30 00:53:47 -07001641 * speed_t MoxaPortSetBaud(int port, speed_t baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 * int port : port number (0 - 127)
1643 * long baud : baud rate (50 - 115200)
1644 *
1645 * return: 0 : this port is invalid or baud < 50
1646 * 50 - 115200 : the real baud rate set to the port, if
1647 * the argument baud is large than maximun
1648 * available baud rate, the real setting
1649 * baud rate will be the maximun baud rate.
1650 *
1651 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 * Function 12: Configure the port.
1653 * Syntax:
Alan Cox606d0992006-12-08 02:38:45 -08001654 * int MoxaPortSetTermio(int port, struct ktermios *termio, speed_t baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 * int port : port number (0 - 127)
Alan Cox606d0992006-12-08 02:38:45 -08001656 * struct ktermios * termio : termio structure pointer
Alan Coxc7bce302006-09-30 23:27:24 -07001657 * speed_t baud : baud rate
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 *
1659 * return: -1 : this port is invalid or termio == NULL
1660 * 0 : setting O.K.
1661 *
1662 *
1663 * Function 13: Get the DTR/RTS state of this port.
1664 * Syntax:
1665 * int MoxaPortGetLineOut(int port, int *dtrState, int *rtsState);
1666 * int port : port number (0 - 127)
1667 * int * dtrState : pointer to INT to receive the current DTR
1668 * state. (if NULL, this function will not
1669 * write to this address)
1670 * int * rtsState : pointer to INT to receive the current RTS
1671 * state. (if NULL, this function will not
1672 * write to this address)
1673 *
1674 * return: -1 : this port is invalid
1675 * 0 : O.K.
1676 *
1677 *
1678 * Function 14: Setting the DTR/RTS output state of this port.
1679 * Syntax:
1680 * void MoxaPortLineCtrl(int port, int dtrState, int rtsState);
1681 * int port : port number (0 - 127)
1682 * int dtrState : DTR output state (0: off, 1: on)
1683 * int rtsState : RTS output state (0: off, 1: on)
1684 *
1685 *
1686 * Function 15: Setting the flow control of this port.
1687 * Syntax:
1688 * void MoxaPortFlowCtrl(int port, int rtsFlow, int ctsFlow, int rxFlow,
1689 * int txFlow,int xany);
1690 * int port : port number (0 - 127)
1691 * int rtsFlow : H/W RTS flow control (0: no, 1: yes)
1692 * int ctsFlow : H/W CTS flow control (0: no, 1: yes)
1693 * int rxFlow : S/W Rx XON/XOFF flow control (0: no, 1: yes)
1694 * int txFlow : S/W Tx XON/XOFF flow control (0: no, 1: yes)
1695 * int xany : S/W XANY flow control (0: no, 1: yes)
1696 *
1697 *
1698 * Function 16: Get ths line status of this port
1699 * Syntax:
1700 * int MoxaPortLineStatus(int port);
1701 * int port : port number (0 - 127)
1702 *
1703 * return: Bit 0 - CTS state (0: off, 1: on)
1704 * Bit 1 - DSR state (0: off, 1: on)
1705 * Bit 2 - DCD state (0: off, 1: on)
1706 *
1707 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 * Function 19: Flush the Rx/Tx buffer data of this port.
1709 * Syntax:
1710 * void MoxaPortFlushData(int port, int mode);
1711 * int port : port number (0 - 127)
1712 * int mode
1713 * 0 : flush the Rx buffer
1714 * 1 : flush the Tx buffer
1715 * 2 : flush the Rx and Tx buffer
1716 *
1717 *
1718 * Function 20: Write data.
1719 * Syntax:
1720 * int MoxaPortWriteData(int port, unsigned char * buffer, int length);
1721 * int port : port number (0 - 127)
1722 * unsigned char * buffer : pointer to write data buffer.
1723 * int length : write data length
1724 *
1725 * return: 0 - length : real write data length
1726 *
1727 *
1728 * Function 21: Read data.
1729 * Syntax:
Alan Cox33f0f882006-01-09 20:54:13 -08001730 * int MoxaPortReadData(int port, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 * int port : port number (0 - 127)
Alan Cox33f0f882006-01-09 20:54:13 -08001732 * struct tty_struct *tty : tty for data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 *
1734 * return: 0 - length : real read data length
1735 *
1736 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 * Function 24: Get the Tx buffer current queued data bytes
1738 * Syntax:
1739 * int MoxaPortTxQueue(int port);
1740 * int port : port number (0 - 127)
1741 *
1742 * return: .. : Tx buffer current queued data bytes
1743 *
1744 *
1745 * Function 25: Get the Tx buffer current free space
1746 * Syntax:
1747 * int MoxaPortTxFree(int port);
1748 * int port : port number (0 - 127)
1749 *
1750 * return: .. : Tx buffer current free space
1751 *
1752 *
1753 * Function 26: Get the Rx buffer current queued data bytes
1754 * Syntax:
1755 * int MoxaPortRxQueue(int port);
1756 * int port : port number (0 - 127)
1757 *
1758 * return: .. : Rx buffer current queued data bytes
1759 *
1760 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 * Function 28: Disable port data transmission.
1762 * Syntax:
1763 * void MoxaPortTxDisable(int port);
1764 * int port : port number (0 - 127)
1765 *
1766 *
1767 * Function 29: Enable port data transmission.
1768 * Syntax:
1769 * void MoxaPortTxEnable(int port);
1770 * int port : port number (0 - 127)
1771 *
1772 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 * Function 31: Get the received BREAK signal count and reset it.
1774 * Syntax:
1775 * int MoxaPortResetBrkCnt(int port);
1776 * int port : port number (0 - 127)
1777 *
1778 * return: 0 - .. : BREAK signal count
1779 *
1780 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
Jiri Slabyb4173f42008-04-30 00:53:40 -07001783static void MoxaPortEnable(struct moxa_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784{
1785 void __iomem *ofsAddr;
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001786 u16 lowwater = 512;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Jiri Slabyb4173f42008-04-30 00:53:40 -07001788 ofsAddr = port->tableAddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 writew(lowwater, ofsAddr + Low_water);
Jiri Slaby08d01c792008-04-30 00:53:47 -07001790 if (MOXA_IS_320(port->board))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 moxafunc(ofsAddr, FC_SetBreakIrq, 0);
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001792 else
1793 writew(readw(ofsAddr + HostStat) | WakeupBreak,
1794 ofsAddr + HostStat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
1796 moxafunc(ofsAddr, FC_SetLineIrq, Magic_code);
1797 moxafunc(ofsAddr, FC_FlushQueue, 2);
1798
1799 moxafunc(ofsAddr, FC_EnableCH, Magic_code);
1800 MoxaPortLineStatus(port);
1801}
1802
Jiri Slabyb4173f42008-04-30 00:53:40 -07001803static void MoxaPortDisable(struct moxa_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804{
Jiri Slabyb4173f42008-04-30 00:53:40 -07001805 void __iomem *ofsAddr = port->tableAddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
1807 moxafunc(ofsAddr, FC_SetFlowCtl, 0); /* disable flow control */
1808 moxafunc(ofsAddr, FC_ClrLineIrq, Magic_code);
1809 writew(0, ofsAddr + HostStat);
1810 moxafunc(ofsAddr, FC_DisableCH, Magic_code);
1811}
1812
Jiri Slaby08d01c792008-04-30 00:53:47 -07001813static speed_t MoxaPortSetBaud(struct moxa_port *port, speed_t baud)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814{
Jiri Slaby08d01c792008-04-30 00:53:47 -07001815 void __iomem *ofsAddr = port->tableAddr;
1816 unsigned int clock, val;
1817 speed_t max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
Jiri Slaby08d01c792008-04-30 00:53:47 -07001819 max = MOXA_IS_320(port->board) ? 460800 : 921600;
1820 if (baud < 50)
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001821 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 if (baud > max)
1823 baud = max;
Jiri Slaby08d01c792008-04-30 00:53:47 -07001824 clock = 921600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 val = clock / baud;
1826 moxafunc(ofsAddr, FC_SetBaud, val);
1827 baud = clock / val;
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001828 return baud;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829}
1830
Jiri Slabyb4173f42008-04-30 00:53:40 -07001831static int MoxaPortSetTermio(struct moxa_port *port, struct ktermios *termio,
1832 speed_t baud)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833{
1834 void __iomem *ofsAddr;
1835 tcflag_t cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 tcflag_t mode = 0;
1837
Jiri Slabyb4173f42008-04-30 00:53:40 -07001838 ofsAddr = port->tableAddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 cflag = termio->c_cflag; /* termio->c_cflag */
1840
1841 mode = termio->c_cflag & CSIZE;
1842 if (mode == CS5)
1843 mode = MX_CS5;
1844 else if (mode == CS6)
1845 mode = MX_CS6;
1846 else if (mode == CS7)
1847 mode = MX_CS7;
1848 else if (mode == CS8)
1849 mode = MX_CS8;
1850
1851 if (termio->c_cflag & CSTOPB) {
1852 if (mode == MX_CS5)
1853 mode |= MX_STOP15;
1854 else
1855 mode |= MX_STOP2;
1856 } else
1857 mode |= MX_STOP1;
1858
1859 if (termio->c_cflag & PARENB) {
1860 if (termio->c_cflag & PARODD)
1861 mode |= MX_PARODD;
1862 else
1863 mode |= MX_PAREVEN;
1864 } else
1865 mode |= MX_PARNONE;
1866
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001867 moxafunc(ofsAddr, FC_SetDataMode, (u16)mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
Jiri Slaby08d01c792008-04-30 00:53:47 -07001869 if (MOXA_IS_320(port->board) && baud >= 921600)
1870 return -1;
1871
Alan Coxdb1acaa2008-02-08 04:18:43 -08001872 baud = MoxaPortSetBaud(port, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
1874 if (termio->c_iflag & (IXON | IXOFF | IXANY)) {
1875 writeb(termio->c_cc[VSTART], ofsAddr + FuncArg);
1876 writeb(termio->c_cc[VSTOP], ofsAddr + FuncArg1);
1877 writeb(FC_SetXonXoff, ofsAddr + FuncCode);
Jiri Slaby6f56b6582007-10-18 03:06:24 -07001878 moxa_wait_finish(ofsAddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
1880 }
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001881 return baud;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882}
1883
Jiri Slabyb4173f42008-04-30 00:53:40 -07001884static int MoxaPortGetLineOut(struct moxa_port *port, int *dtrState,
1885 int *rtsState)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886{
Jiri Slabyb4173f42008-04-30 00:53:40 -07001887 if (dtrState)
1888 *dtrState = !!(port->lineCtrl & DTR_ON);
1889 if (rtsState)
1890 *rtsState = !!(port->lineCtrl & RTS_ON);
1891
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001892 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893}
1894
Jiri Slabyb4173f42008-04-30 00:53:40 -07001895static void MoxaPortLineCtrl(struct moxa_port *port, int dtr, int rts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896{
Jiri Slabyeaa95a82008-04-30 00:53:46 -07001897 u8 mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 if (dtr)
1900 mode |= DTR_ON;
1901 if (rts)
1902 mode |= RTS_ON;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001903 port->lineCtrl = mode;
1904 moxafunc(port->tableAddr, FC_LineControl, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905}
1906
Jiri Slabyb4173f42008-04-30 00:53:40 -07001907static void MoxaPortFlowCtrl(struct moxa_port *port, int rts, int cts,
1908 int txflow, int rxflow, int txany)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909{
Jiri Slabyb4173f42008-04-30 00:53:40 -07001910 int mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 if (rts)
1913 mode |= RTS_FlowCtl;
1914 if (cts)
1915 mode |= CTS_FlowCtl;
1916 if (txflow)
1917 mode |= Tx_FlowCtl;
1918 if (rxflow)
1919 mode |= Rx_FlowCtl;
1920 if (txany)
1921 mode |= IXM_IXANY;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001922 moxafunc(port->tableAddr, FC_SetFlowCtl, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923}
1924
Jiri Slabyb4173f42008-04-30 00:53:40 -07001925static int MoxaPortLineStatus(struct moxa_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926{
1927 void __iomem *ofsAddr;
1928 int val;
1929
Jiri Slabyb4173f42008-04-30 00:53:40 -07001930 ofsAddr = port->tableAddr;
Jiri Slaby08d01c792008-04-30 00:53:47 -07001931 if (MOXA_IS_320(port->board)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 moxafunc(ofsAddr, FC_LineStatus, 0);
1933 val = readw(ofsAddr + FuncArg);
1934 } else {
1935 val = readw(ofsAddr + FlagStat) >> 4;
1936 }
1937 val &= 0x0B;
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001938 if (val & 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 val |= 4;
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001940 spin_lock_bh(&moxa_lock);
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001941 moxa_new_dcdstate(port, val & 8);
Jiri Slabya8f5cda2008-04-30 00:53:45 -07001942 spin_unlock_bh(&moxa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 val &= 7;
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07001944 return val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945}
1946
Jiri Slaby2108eba2008-04-30 00:53:44 -07001947static int MoxaPortWriteData(struct moxa_port *port,
1948 const unsigned char *buffer, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 void __iomem *baseAddr, *ofsAddr, *ofs;
Jiri Slaby2108eba2008-04-30 00:53:44 -07001951 unsigned int c, total;
1952 u16 head, tail, tx_mask, spage, epage;
1953 u16 pageno, pageofs, bufhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
Jiri Slabyb4173f42008-04-30 00:53:40 -07001955 ofsAddr = port->tableAddr;
1956 baseAddr = port->board->basemem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 tx_mask = readw(ofsAddr + TX_mask);
1958 spage = readw(ofsAddr + Page_txb);
1959 epage = readw(ofsAddr + EndPage_txb);
1960 tail = readw(ofsAddr + TXwptr);
1961 head = readw(ofsAddr + TXrptr);
Jiri Slaby2108eba2008-04-30 00:53:44 -07001962 c = (head > tail) ? (head - tail - 1) : (head - tail + tx_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 if (c > len)
1964 c = len;
Jiri Slabyb4173f42008-04-30 00:53:40 -07001965 moxaLog.txcnt[port->tty->index] += c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 total = c;
1967 if (spage == epage) {
1968 bufhead = readw(ofsAddr + Ofs_txb);
1969 writew(spage, baseAddr + Control_reg);
1970 while (c > 0) {
1971 if (head > tail)
1972 len = head - tail - 1;
1973 else
1974 len = tx_mask + 1 - tail;
1975 len = (c > len) ? len : c;
1976 ofs = baseAddr + DynPage_addr + bufhead + tail;
Jiri Slaby2108eba2008-04-30 00:53:44 -07001977 memcpy_toio(ofs, buffer, len);
1978 buffer += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 tail = (tail + len) & tx_mask;
1980 c -= len;
1981 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 pageno = spage + (tail >> 13);
1984 pageofs = tail & Page_mask;
Jiri Slaby2108eba2008-04-30 00:53:44 -07001985 while (c > 0) {
1986 len = Page_size - pageofs;
1987 if (len > c)
1988 len = c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 writeb(pageno, baseAddr + Control_reg);
1990 ofs = baseAddr + DynPage_addr + pageofs;
Jiri Slaby2108eba2008-04-30 00:53:44 -07001991 memcpy_toio(ofs, buffer, len);
1992 buffer += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 if (++pageno == epage)
1994 pageno = spage;
1995 pageofs = 0;
Jiri Slaby2108eba2008-04-30 00:53:44 -07001996 c -= len;
1997 }
1998 tail = (tail + total) & tx_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 }
Jiri Slaby2108eba2008-04-30 00:53:44 -07002000 writew(tail, ofsAddr + TXwptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 writeb(1, ofsAddr + CD180TXirq); /* start to send */
Jiri Slaby2108eba2008-04-30 00:53:44 -07002002 return total;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003}
2004
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07002005static int MoxaPortReadData(struct moxa_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006{
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07002007 struct tty_struct *tty = port->tty;
Jiri Slaby2108eba2008-04-30 00:53:44 -07002008 unsigned char *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 void __iomem *baseAddr, *ofsAddr, *ofs;
Jiri Slaby2108eba2008-04-30 00:53:44 -07002010 unsigned int count, len, total;
2011 u16 tail, rx_mask, spage, epage;
2012 u16 pageno, pageofs, bufhead, head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Jiri Slabyb4173f42008-04-30 00:53:40 -07002014 ofsAddr = port->tableAddr;
2015 baseAddr = port->board->basemem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 head = readw(ofsAddr + RXrptr);
2017 tail = readw(ofsAddr + RXwptr);
2018 rx_mask = readw(ofsAddr + RX_mask);
2019 spage = readw(ofsAddr + Page_rxb);
2020 epage = readw(ofsAddr + EndPage_rxb);
Jiri Slaby2108eba2008-04-30 00:53:44 -07002021 count = (tail >= head) ? (tail - head) : (tail - head + rx_mask + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 if (count == 0)
Alan Cox33f0f882006-01-09 20:54:13 -08002023 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
Alan Cox33f0f882006-01-09 20:54:13 -08002025 total = count;
Jiri Slaby7bcf97d2008-04-30 00:53:43 -07002026 moxaLog.rxcnt[tty->index] += total;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 if (spage == epage) {
2028 bufhead = readw(ofsAddr + Ofs_rxb);
2029 writew(spage, baseAddr + Control_reg);
2030 while (count > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 ofs = baseAddr + DynPage_addr + bufhead + head;
Jiri Slaby2108eba2008-04-30 00:53:44 -07002032 len = (tail >= head) ? (tail - head) :
2033 (rx_mask + 1 - head);
2034 len = tty_prepare_flip_string(tty, &dst,
2035 min(len, count));
2036 memcpy_fromio(dst, ofs, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 head = (head + len) & rx_mask;
2038 count -= len;
2039 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 pageno = spage + (head >> 13);
2042 pageofs = head & Page_mask;
Jiri Slaby2108eba2008-04-30 00:53:44 -07002043 while (count > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 writew(pageno, baseAddr + Control_reg);
2045 ofs = baseAddr + DynPage_addr + pageofs;
Jiri Slaby2108eba2008-04-30 00:53:44 -07002046 len = tty_prepare_flip_string(tty, &dst,
2047 min(Page_size - pageofs, count));
2048 memcpy_fromio(dst, ofs, len);
2049
2050 count -= len;
2051 pageofs = (pageofs + len) & Page_mask;
2052 if (pageofs == 0 && ++pageno == epage)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 pageno = spage;
Jiri Slaby2108eba2008-04-30 00:53:44 -07002054 }
2055 head = (head + total) & rx_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 }
Jiri Slaby2108eba2008-04-30 00:53:44 -07002057 writew(head, ofsAddr + RXrptr);
2058 if (readb(ofsAddr + FlagStat) & Xoff_state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 moxaLowWaterChk = 1;
Jiri Slabyb4173f42008-04-30 00:53:40 -07002060 port->lowChkFlag = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 }
Jiri Slaby2108eba2008-04-30 00:53:44 -07002062 return total;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063}
2064
2065
Jiri Slabyb4173f42008-04-30 00:53:40 -07002066static int MoxaPortTxQueue(struct moxa_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067{
Jiri Slabyb4173f42008-04-30 00:53:40 -07002068 void __iomem *ofsAddr = port->tableAddr;
Jiri Slaby2108eba2008-04-30 00:53:44 -07002069 u16 rptr, wptr, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 rptr = readw(ofsAddr + TXrptr);
2072 wptr = readw(ofsAddr + TXwptr);
2073 mask = readw(ofsAddr + TX_mask);
Jiri Slaby2108eba2008-04-30 00:53:44 -07002074 return (wptr - rptr) & mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075}
2076
Jiri Slabyb4173f42008-04-30 00:53:40 -07002077static int MoxaPortTxFree(struct moxa_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078{
Jiri Slabyb4173f42008-04-30 00:53:40 -07002079 void __iomem *ofsAddr = port->tableAddr;
Jiri Slaby2108eba2008-04-30 00:53:44 -07002080 u16 rptr, wptr, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 rptr = readw(ofsAddr + TXrptr);
2083 wptr = readw(ofsAddr + TXwptr);
2084 mask = readw(ofsAddr + TX_mask);
Jiri Slaby2108eba2008-04-30 00:53:44 -07002085 return mask - ((wptr - rptr) & mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086}
2087
Jiri Slabyb4173f42008-04-30 00:53:40 -07002088static int MoxaPortRxQueue(struct moxa_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089{
Jiri Slabyb4173f42008-04-30 00:53:40 -07002090 void __iomem *ofsAddr = port->tableAddr;
Jiri Slaby2108eba2008-04-30 00:53:44 -07002091 u16 rptr, wptr, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 rptr = readw(ofsAddr + RXrptr);
2094 wptr = readw(ofsAddr + RXwptr);
2095 mask = readw(ofsAddr + RX_mask);
Jiri Slaby2108eba2008-04-30 00:53:44 -07002096 return (wptr - rptr) & mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097}
2098
Jiri Slabyb4173f42008-04-30 00:53:40 -07002099static void MoxaPortTxDisable(struct moxa_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100{
Jiri Slabyb4173f42008-04-30 00:53:40 -07002101 moxafunc(port->tableAddr, FC_SetXoffState, Magic_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102}
2103
Jiri Slabyb4173f42008-04-30 00:53:40 -07002104static void MoxaPortTxEnable(struct moxa_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105{
Jiri Slabyb4173f42008-04-30 00:53:40 -07002106 moxafunc(port->tableAddr, FC_SetXonState, Magic_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107}
2108
Jiri Slaby8f8ecba2007-02-10 01:45:33 -08002109static int moxa_get_serial_info(struct moxa_port *info,
Jiri Slabyeaa95a82008-04-30 00:53:46 -07002110 struct serial_struct __user *retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111{
Jiri Slabyeaa95a82008-04-30 00:53:46 -07002112 struct serial_struct tmp = {
2113 .type = info->type,
2114 .line = info->tty->index,
2115 .flags = info->asyncflags,
2116 .baud_base = 921600,
2117 .close_delay = info->close_delay
2118 };
2119 return copy_to_user(retinfo, &tmp, sizeof(*retinfo)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120}
2121
2122
Jiri Slaby8f8ecba2007-02-10 01:45:33 -08002123static int moxa_set_serial_info(struct moxa_port *info,
Jiri Slabyeaa95a82008-04-30 00:53:46 -07002124 struct serial_struct __user *new_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125{
2126 struct serial_struct new_serial;
2127
Jiri Slabyeaa95a82008-04-30 00:53:46 -07002128 if (copy_from_user(&new_serial, new_info, sizeof(new_serial)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 return -EFAULT;
2130
Jiri Slabyeaa95a82008-04-30 00:53:46 -07002131 if (new_serial.irq != 0 || new_serial.port != 0 ||
2132 new_serial.custom_divisor != 0 ||
2133 new_serial.baud_base != 921600)
2134 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
2136 if (!capable(CAP_SYS_ADMIN)) {
2137 if (((new_serial.flags & ~ASYNC_USR_MASK) !=
2138 (info->asyncflags & ~ASYNC_USR_MASK)))
Jiri Slabyeaa95a82008-04-30 00:53:46 -07002139 return -EPERM;
2140 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 info->close_delay = new_serial.close_delay * HZ / 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143 new_serial.flags = (new_serial.flags & ~ASYNC_FLAGS);
2144 new_serial.flags |= (info->asyncflags & ASYNC_FLAGS);
2145
Jiri Slabyeaa95a82008-04-30 00:53:46 -07002146 MoxaSetFifo(info, new_serial.type == PORT_16550A);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
2148 info->type = new_serial.type;
Jiri Slabyeaa95a82008-04-30 00:53:46 -07002149 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150}
2151
2152
2153
2154/*****************************************************************************
2155 * Static local functions: *
2156 *****************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
Jiri Slabyb4173f42008-04-30 00:53:40 -07002158static void MoxaSetFifo(struct moxa_port *port, int enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159{
Jiri Slabyb4173f42008-04-30 00:53:40 -07002160 void __iomem *ofsAddr = port->tableAddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
2162 if (!enable) {
2163 moxafunc(ofsAddr, FC_SetRxFIFOTrig, 0);
2164 moxafunc(ofsAddr, FC_SetTxFIFOCnt, 1);
2165 } else {
2166 moxafunc(ofsAddr, FC_SetRxFIFOTrig, 3);
2167 moxafunc(ofsAddr, FC_SetTxFIFOCnt, 16);
2168 }
2169}