blob: 13f8871e5b2177bb844018f6543ca2e690e973b6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * mxser.c -- MOXA Smartio/Industio family multiport serial driver.
3 *
Jiri Slaby80ff8a82008-02-07 00:16:51 -08004 * Copyright (C) 1999-2006 Moxa Technologies (support@moxa.com).
5 * Copyright (C) 2006-2008 Jiri Slaby <jirislaby@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Jiri Slaby1c456072008-02-07 00:16:46 -08007 * This code is loosely based on the 1.8 moxa driver which is based on
8 * Linux serial driver, written by Linus Torvalds, Theodore T'so and
9 * others.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
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
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -070014 * (at your option) any later version.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * Fed through a cleanup, indent and remove of non 2.6 code by Alan Cox
Alan Cox8eb04cf2008-11-11 14:48:44 +000017 * <alan@lxorguk.ukuu.org.uk>. The original 1.8 code is available on
18 * www.moxa.com.
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * - Fixed x86_64 cleanness
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 */
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/errno.h>
24#include <linux/signal.h>
25#include <linux/sched.h>
26#include <linux/timer.h>
27#include <linux/interrupt.h>
28#include <linux/tty.h>
29#include <linux/tty_flip.h>
30#include <linux/serial.h>
31#include <linux/serial_reg.h>
32#include <linux/major.h>
33#include <linux/string.h>
34#include <linux/fcntl.h>
35#include <linux/ptrace.h>
36#include <linux/gfp.h>
37#include <linux/ioport.h>
38#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/delay.h>
40#include <linux/pci.h>
Jiri Slaby1977f032007-10-18 23:40:25 -070041#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <asm/system.h>
44#include <asm/io.h>
45#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/uaccess.h>
47
48#include "mxser.h"
49
Jiri Slabye129def2008-07-22 11:20:34 +010050#define MXSER_VERSION "2.0.4" /* 1.12 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define MXSERMAJOR 174
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define MXSER_BOARDS 4 /* Max. boards */
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define MXSER_PORTS_PER_BOARD 8 /* Max. ports per board */
Jiri Slaby1c456072008-02-07 00:16:46 -080055#define MXSER_PORTS (MXSER_BOARDS * MXSER_PORTS_PER_BOARD)
56#define MXSER_ISR_PASS_LIMIT 100
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Jiri Slaby1c456072008-02-07 00:16:46 -080058/*CheckIsMoxaMust return value*/
59#define MOXA_OTHER_UART 0x00
60#define MOXA_MUST_MU150_HWID 0x01
61#define MOXA_MUST_MU860_HWID 0x02
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define WAKEUP_CHARS 256
64
65#define UART_MCR_AFE 0x20
66#define UART_LSR_SPECIAL 0x1E
67
Jiri Slabye129def2008-07-22 11:20:34 +010068#define PCI_DEVICE_ID_POS104UL 0x1044
Jiri Slaby1c456072008-02-07 00:16:46 -080069#define PCI_DEVICE_ID_CB108 0x1080
Jiri Slabye129def2008-07-22 11:20:34 +010070#define PCI_DEVICE_ID_CP102UF 0x1023
Jiri Slaby1c456072008-02-07 00:16:46 -080071#define PCI_DEVICE_ID_CB114 0x1142
Jiri Slaby80ff8a82008-02-07 00:16:51 -080072#define PCI_DEVICE_ID_CP114UL 0x1143
Jiri Slaby1c456072008-02-07 00:16:46 -080073#define PCI_DEVICE_ID_CB134I 0x1341
74#define PCI_DEVICE_ID_CP138U 0x1380
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77#define C168_ASIC_ID 1
78#define C104_ASIC_ID 2
79#define C102_ASIC_ID 0xB
80#define CI132_ASIC_ID 4
81#define CI134_ASIC_ID 3
82#define CI104J_ASIC_ID 5
83
Jiri Slaby1c456072008-02-07 00:16:46 -080084#define MXSER_HIGHBAUD 1
85#define MXSER_HAS2 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -070087/* This is only for PCI */
Jiri Slaby1c456072008-02-07 00:16:46 -080088static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 int type;
90 int tx_fifo;
91 int rx_fifo;
92 int xmit_fifo_size;
93 int rx_high_water;
94 int rx_trigger;
95 int rx_low_water;
96 long max_baud;
Jiri Slaby1c456072008-02-07 00:16:46 -080097} Gpci_uart_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 {MOXA_OTHER_UART, 16, 16, 16, 14, 14, 1, 921600L},
99 {MOXA_MUST_MU150_HWID, 64, 64, 64, 48, 48, 16, 230400L},
100 {MOXA_MUST_MU860_HWID, 128, 128, 128, 96, 96, 32, 921600L}
101};
Jiri Slaby1c456072008-02-07 00:16:46 -0800102#define UART_INFO_NUM ARRAY_SIZE(Gpci_uart_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Jiri Slaby1c456072008-02-07 00:16:46 -0800104struct mxser_cardinfo {
105 char *name;
106 unsigned int nports;
107 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108};
109
Jiri Slaby1c456072008-02-07 00:16:46 -0800110static const struct mxser_cardinfo mxser_cards[] = {
111/* 0*/ { "C168 series", 8, },
112 { "C104 series", 4, },
113 { "CI-104J series", 4, },
114 { "C168H/PCI series", 8, },
115 { "C104H/PCI series", 4, },
116/* 5*/ { "C102 series", 4, MXSER_HAS2 }, /* C102-ISA */
117 { "CI-132 series", 4, MXSER_HAS2 },
118 { "CI-134 series", 4, },
119 { "CP-132 series", 2, },
120 { "CP-114 series", 4, },
121/*10*/ { "CT-114 series", 4, },
122 { "CP-102 series", 2, MXSER_HIGHBAUD },
123 { "CP-104U series", 4, },
124 { "CP-168U series", 8, },
125 { "CP-132U series", 2, },
126/*15*/ { "CP-134U series", 4, },
127 { "CP-104JU series", 4, },
128 { "Moxa UC7000 Serial", 8, }, /* RC7000 */
129 { "CP-118U series", 8, },
130 { "CP-102UL series", 2, },
131/*20*/ { "CP-102U series", 2, },
132 { "CP-118EL series", 8, },
133 { "CP-168EL series", 8, },
134 { "CP-104EL series", 4, },
135 { "CB-108 series", 8, },
136/*25*/ { "CB-114 series", 4, },
137 { "CB-134I series", 4, },
138 { "CP-138U series", 8, },
Jiri Slaby80ff8a82008-02-07 00:16:51 -0800139 { "POS-104UL series", 4, },
Jiri Slabye129def2008-07-22 11:20:34 +0100140 { "CP-114UL series", 4, },
141/*30*/ { "CP-102UF series", 2, }
Jiri Slaby1c456072008-02-07 00:16:46 -0800142};
143
144/* driver_data correspond to the lines in the structure above
145 see also ISA probe function before you change something */
146static struct pci_device_id mxser_pcibrds[] = {
147 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_C168), .driver_data = 3 },
148 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_C104), .driver_data = 4 },
149 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP132), .driver_data = 8 },
150 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP114), .driver_data = 9 },
151 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CT114), .driver_data = 10 },
152 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP102), .driver_data = 11 },
153 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP104U), .driver_data = 12 },
154 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP168U), .driver_data = 13 },
155 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP132U), .driver_data = 14 },
156 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP134U), .driver_data = 15 },
157 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP104JU),.driver_data = 16 },
158 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_RC7000), .driver_data = 17 },
159 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP118U), .driver_data = 18 },
160 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP102UL),.driver_data = 19 },
161 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP102U), .driver_data = 20 },
162 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP118EL),.driver_data = 21 },
163 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP168EL),.driver_data = 22 },
164 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP104EL),.driver_data = 23 },
165 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CB108), .driver_data = 24 },
166 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CB114), .driver_data = 25 },
167 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CB134I), .driver_data = 26 },
168 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CP138U), .driver_data = 27 },
169 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_POS104UL), .driver_data = 28 },
Jiri Slaby80ff8a82008-02-07 00:16:51 -0800170 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CP114UL), .driver_data = 29 },
Jiri Slabye129def2008-07-22 11:20:34 +0100171 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CP102UF), .driver_data = 30 },
Jiri Slaby1c456072008-02-07 00:16:46 -0800172 { }
173};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174MODULE_DEVICE_TABLE(pci, mxser_pcibrds);
175
Jiri Slaby1df00922008-07-25 01:48:22 -0700176static unsigned long ioaddr[MXSER_BOARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177static int ttymajor = MXSERMAJOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179/* Variables for insmod */
180
181MODULE_AUTHOR("Casper Yang");
182MODULE_DESCRIPTION("MOXA Smartio/Industio Family Multiport Board Device Driver");
Jiri Slaby1df00922008-07-25 01:48:22 -0700183module_param_array(ioaddr, ulong, NULL, 0);
184MODULE_PARM_DESC(ioaddr, "ISA io addresses to look for a moxa board");
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800185module_param(ttymajor, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186MODULE_LICENSE("GPL");
187
188struct mxser_log {
189 int tick;
190 unsigned long rxcnt[MXSER_PORTS];
191 unsigned long txcnt[MXSER_PORTS];
192};
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194struct mxser_mon {
195 unsigned long rxcnt;
196 unsigned long txcnt;
197 unsigned long up_rxcnt;
198 unsigned long up_txcnt;
199 int modem_status;
200 unsigned char hold_reason;
201};
202
203struct mxser_mon_ext {
204 unsigned long rx_cnt[32];
205 unsigned long tx_cnt[32];
206 unsigned long up_rxcnt[32];
207 unsigned long up_txcnt[32];
208 int modem_status[32];
209
210 long baudrate[32];
211 int databits[32];
212 int stopbits[32];
213 int parity[32];
214 int flowctrl[32];
215 int fifo[32];
216 int iftype[32];
217};
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700218
Jiri Slaby1c456072008-02-07 00:16:46 -0800219struct mxser_board;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Jiri Slaby1c456072008-02-07 00:16:46 -0800221struct mxser_port {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100222 struct tty_port port;
Jiri Slaby1c456072008-02-07 00:16:46 -0800223 struct mxser_board *board;
Jiri Slaby1c456072008-02-07 00:16:46 -0800224
225 unsigned long ioaddr;
226 unsigned long opmode_ioaddr;
227 int max_baud;
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 int rx_high_water;
230 int rx_trigger; /* Rx fifo trigger level */
231 int rx_low_water;
232 int baud_base; /* max. speed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 int type; /* UART type */
Jiri Slaby1c456072008-02-07 00:16:46 -0800234
235 int x_char; /* xon/xoff character */
236 int IER; /* Interrupt Enable Register */
237 int MCR; /* Modem control register */
238
239 unsigned char stop_rx;
240 unsigned char ldisc_stop_rx;
241
242 int custom_divisor;
Jiri Slaby1c456072008-02-07 00:16:46 -0800243 unsigned char err_shadow;
Jiri Slaby1c456072008-02-07 00:16:46 -0800244
Jiri Slaby1c456072008-02-07 00:16:46 -0800245 struct async_icount icount; /* kernel counters for 4 input interrupts */
246 int timeout;
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 int read_status_mask;
249 int ignore_status_mask;
250 int xmit_fifo_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 int xmit_head;
252 int xmit_tail;
253 int xmit_cnt;
Jiri Slaby1c456072008-02-07 00:16:46 -0800254
Alan Cox606d0992006-12-08 02:38:45 -0800255 struct ktermios normal_termios;
Jiri Slaby1c456072008-02-07 00:16:46 -0800256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 struct mxser_mon mon_data;
Jiri Slaby1c456072008-02-07 00:16:46 -0800258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 spinlock_t slock;
Jiri Slaby1c456072008-02-07 00:16:46 -0800260 wait_queue_head_t delta_msr_wait;
261};
262
263struct mxser_board {
264 unsigned int idx;
265 int irq;
266 const struct mxser_cardinfo *info;
267 unsigned long vector;
268 unsigned long vector_mask;
269
270 int chip_flag;
271 int uart_type;
272
273 struct mxser_port ports[MXSER_PORTS_PER_BOARD];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274};
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276struct mxser_mstatus {
277 tcflag_t cflag;
278 int cts;
279 int dsr;
280 int ri;
281 int dcd;
282};
283
Jiri Slaby1c456072008-02-07 00:16:46 -0800284static struct mxser_board mxser_boards[MXSER_BOARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285static struct tty_driver *mxvar_sdriver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286static struct mxser_log mxvar_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287static int mxser_set_baud_method[MXSER_PORTS + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Christoph Hellwig148ff862008-04-30 00:54:29 -0700289static void mxser_enable_must_enchance_mode(unsigned long baseio)
290{
291 u8 oldlcr;
292 u8 efr;
293
294 oldlcr = inb(baseio + UART_LCR);
295 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
296
297 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
298 efr |= MOXA_MUST_EFR_EFRB_ENABLE;
299
300 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
301 outb(oldlcr, baseio + UART_LCR);
302}
303
304static void mxser_disable_must_enchance_mode(unsigned long baseio)
305{
306 u8 oldlcr;
307 u8 efr;
308
309 oldlcr = inb(baseio + UART_LCR);
310 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
311
312 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
313 efr &= ~MOXA_MUST_EFR_EFRB_ENABLE;
314
315 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
316 outb(oldlcr, baseio + UART_LCR);
317}
318
319static void mxser_set_must_xon1_value(unsigned long baseio, u8 value)
320{
321 u8 oldlcr;
322 u8 efr;
323
324 oldlcr = inb(baseio + UART_LCR);
325 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
326
327 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
328 efr &= ~MOXA_MUST_EFR_BANK_MASK;
329 efr |= MOXA_MUST_EFR_BANK0;
330
331 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
332 outb(value, baseio + MOXA_MUST_XON1_REGISTER);
333 outb(oldlcr, baseio + UART_LCR);
334}
335
336static void mxser_set_must_xoff1_value(unsigned long baseio, u8 value)
337{
338 u8 oldlcr;
339 u8 efr;
340
341 oldlcr = inb(baseio + UART_LCR);
342 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
343
344 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
345 efr &= ~MOXA_MUST_EFR_BANK_MASK;
346 efr |= MOXA_MUST_EFR_BANK0;
347
348 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
349 outb(value, baseio + MOXA_MUST_XOFF1_REGISTER);
350 outb(oldlcr, baseio + UART_LCR);
351}
352
353static void mxser_set_must_fifo_value(struct mxser_port *info)
354{
355 u8 oldlcr;
356 u8 efr;
357
358 oldlcr = inb(info->ioaddr + UART_LCR);
359 outb(MOXA_MUST_ENTER_ENCHANCE, info->ioaddr + UART_LCR);
360
361 efr = inb(info->ioaddr + MOXA_MUST_EFR_REGISTER);
362 efr &= ~MOXA_MUST_EFR_BANK_MASK;
363 efr |= MOXA_MUST_EFR_BANK1;
364
365 outb(efr, info->ioaddr + MOXA_MUST_EFR_REGISTER);
366 outb((u8)info->rx_high_water, info->ioaddr + MOXA_MUST_RBRTH_REGISTER);
367 outb((u8)info->rx_trigger, info->ioaddr + MOXA_MUST_RBRTI_REGISTER);
368 outb((u8)info->rx_low_water, info->ioaddr + MOXA_MUST_RBRTL_REGISTER);
369 outb(oldlcr, info->ioaddr + UART_LCR);
370}
371
372static void mxser_set_must_enum_value(unsigned long baseio, u8 value)
373{
374 u8 oldlcr;
375 u8 efr;
376
377 oldlcr = inb(baseio + UART_LCR);
378 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
379
380 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
381 efr &= ~MOXA_MUST_EFR_BANK_MASK;
382 efr |= MOXA_MUST_EFR_BANK2;
383
384 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
385 outb(value, baseio + MOXA_MUST_ENUM_REGISTER);
386 outb(oldlcr, baseio + UART_LCR);
387}
388
389static void mxser_get_must_hardware_id(unsigned long baseio, u8 *pId)
390{
391 u8 oldlcr;
392 u8 efr;
393
394 oldlcr = inb(baseio + UART_LCR);
395 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
396
397 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
398 efr &= ~MOXA_MUST_EFR_BANK_MASK;
399 efr |= MOXA_MUST_EFR_BANK2;
400
401 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
402 *pId = inb(baseio + MOXA_MUST_HWID_REGISTER);
403 outb(oldlcr, baseio + UART_LCR);
404}
405
406static void SET_MOXA_MUST_NO_SOFTWARE_FLOW_CONTROL(unsigned long baseio)
407{
408 u8 oldlcr;
409 u8 efr;
410
411 oldlcr = inb(baseio + UART_LCR);
412 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
413
414 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
415 efr &= ~MOXA_MUST_EFR_SF_MASK;
416
417 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
418 outb(oldlcr, baseio + UART_LCR);
419}
420
421static void mxser_enable_must_tx_software_flow_control(unsigned long baseio)
422{
423 u8 oldlcr;
424 u8 efr;
425
426 oldlcr = inb(baseio + UART_LCR);
427 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
428
429 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
430 efr &= ~MOXA_MUST_EFR_SF_TX_MASK;
431 efr |= MOXA_MUST_EFR_SF_TX1;
432
433 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
434 outb(oldlcr, baseio + UART_LCR);
435}
436
437static void mxser_disable_must_tx_software_flow_control(unsigned long baseio)
438{
439 u8 oldlcr;
440 u8 efr;
441
442 oldlcr = inb(baseio + UART_LCR);
443 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
444
445 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
446 efr &= ~MOXA_MUST_EFR_SF_TX_MASK;
447
448 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
449 outb(oldlcr, baseio + UART_LCR);
450}
451
452static void mxser_enable_must_rx_software_flow_control(unsigned long baseio)
453{
454 u8 oldlcr;
455 u8 efr;
456
457 oldlcr = inb(baseio + UART_LCR);
458 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
459
460 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
461 efr &= ~MOXA_MUST_EFR_SF_RX_MASK;
462 efr |= MOXA_MUST_EFR_SF_RX1;
463
464 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
465 outb(oldlcr, baseio + UART_LCR);
466}
467
468static void mxser_disable_must_rx_software_flow_control(unsigned long baseio)
469{
470 u8 oldlcr;
471 u8 efr;
472
473 oldlcr = inb(baseio + UART_LCR);
474 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
475
476 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
477 efr &= ~MOXA_MUST_EFR_SF_RX_MASK;
478
479 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
480 outb(oldlcr, baseio + UART_LCR);
481}
482
Jesper Juhlb8cc5542007-10-18 03:06:03 -0700483#ifdef CONFIG_PCI
Jiri Slaby1c456072008-02-07 00:16:46 -0800484static int __devinit CheckIsMoxaMust(unsigned long io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
486 u8 oldmcr, hwid;
487 int i;
488
489 outb(0, io + UART_LCR);
Christoph Hellwig148ff862008-04-30 00:54:29 -0700490 mxser_disable_must_enchance_mode(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 oldmcr = inb(io + UART_MCR);
492 outb(0, io + UART_MCR);
Christoph Hellwig148ff862008-04-30 00:54:29 -0700493 mxser_set_must_xon1_value(io, 0x11);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 if ((hwid = inb(io + UART_MCR)) != 0) {
495 outb(oldmcr, io + UART_MCR);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700496 return MOXA_OTHER_UART;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
498
Christoph Hellwig148ff862008-04-30 00:54:29 -0700499 mxser_get_must_hardware_id(io, &hwid);
Jiri Slaby1c456072008-02-07 00:16:46 -0800500 for (i = 1; i < UART_INFO_NUM; i++) { /* 0 = OTHER_UART */
501 if (hwid == Gpci_uart_info[i].type)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700502 return (int)hwid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
504 return MOXA_OTHER_UART;
505}
Jesper Juhlb8cc5542007-10-18 03:06:03 -0700506#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Jiri Slaby1c456072008-02-07 00:16:46 -0800508static void process_txrx_fifo(struct mxser_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
510 int i;
511
512 if ((info->type == PORT_16450) || (info->type == PORT_8250)) {
513 info->rx_trigger = 1;
514 info->rx_high_water = 1;
515 info->rx_low_water = 1;
516 info->xmit_fifo_size = 1;
Jiri Slaby1c456072008-02-07 00:16:46 -0800517 } else
518 for (i = 0; i < UART_INFO_NUM; i++)
519 if (info->board->chip_flag == Gpci_uart_info[i].type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 info->rx_trigger = Gpci_uart_info[i].rx_trigger;
521 info->rx_low_water = Gpci_uart_info[i].rx_low_water;
522 info->rx_high_water = Gpci_uart_info[i].rx_high_water;
523 info->xmit_fifo_size = Gpci_uart_info[i].xmit_fifo_size;
524 break;
525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526}
527
Jiri Slaby1c456072008-02-07 00:16:46 -0800528static unsigned char mxser_get_msr(int baseaddr, int mode, int port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
Jiri Slaby72800df2008-07-25 01:48:20 -0700530 static unsigned char mxser_msr[MXSER_PORTS + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 unsigned char status = 0;
532
533 status = inb(baseaddr + UART_MSR);
534
535 mxser_msr[port] &= 0x0F;
536 mxser_msr[port] |= status;
537 status = mxser_msr[port];
538 if (mode)
539 mxser_msr[port] = 0;
540
541 return status;
542}
543
Alan Cox31f35932009-01-02 13:45:05 +0000544static int mxser_carrier_raised(struct tty_port *port)
545{
546 struct mxser_port *mp = container_of(port, struct mxser_port, port);
547 return (inb(mp->ioaddr + UART_MSR) & UART_MSR_DCD)?1:0;
548}
549
Alan Cox5d951fb2009-01-02 13:45:19 +0000550static void mxser_raise_dtr_rts(struct tty_port *port)
551{
552 struct mxser_port *mp = container_of(port, struct mxser_port, port);
553 unsigned long flags;
554
555 spin_lock_irqsave(&mp->slock, flags);
556 outb(inb(mp->ioaddr + UART_MCR) |
557 UART_MCR_DTR | UART_MCR_RTS, mp->ioaddr + UART_MCR);
558 spin_unlock_irqrestore(&mp->slock, flags);
559}
560
Alan Cox216ba022008-10-13 10:40:19 +0100561static int mxser_set_baud(struct tty_struct *tty, long newspd)
Jiri Slaby1c456072008-02-07 00:16:46 -0800562{
Alan Cox216ba022008-10-13 10:40:19 +0100563 struct mxser_port *info = tty->driver_data;
Jiri Slaby1c456072008-02-07 00:16:46 -0800564 int quot = 0, baud;
565 unsigned char cval;
566
Alan Cox216ba022008-10-13 10:40:19 +0100567 if (!info->ioaddr)
Jiri Slaby1c456072008-02-07 00:16:46 -0800568 return -1;
569
570 if (newspd > info->max_baud)
571 return -1;
572
573 if (newspd == 134) {
574 quot = 2 * info->baud_base / 269;
Alan Cox216ba022008-10-13 10:40:19 +0100575 tty_encode_baud_rate(tty, 134, 134);
Jiri Slaby1c456072008-02-07 00:16:46 -0800576 } else if (newspd) {
577 quot = info->baud_base / newspd;
578 if (quot == 0)
579 quot = 1;
580 baud = info->baud_base/quot;
Alan Cox216ba022008-10-13 10:40:19 +0100581 tty_encode_baud_rate(tty, baud, baud);
Jiri Slaby1c456072008-02-07 00:16:46 -0800582 } else {
583 quot = 0;
584 }
585
586 info->timeout = ((info->xmit_fifo_size * HZ * 10 * quot) / info->baud_base);
587 info->timeout += HZ / 50; /* Add .02 seconds of slop */
588
589 if (quot) {
590 info->MCR |= UART_MCR_DTR;
591 outb(info->MCR, info->ioaddr + UART_MCR);
592 } else {
593 info->MCR &= ~UART_MCR_DTR;
594 outb(info->MCR, info->ioaddr + UART_MCR);
595 return 0;
596 }
597
598 cval = inb(info->ioaddr + UART_LCR);
599
600 outb(cval | UART_LCR_DLAB, info->ioaddr + UART_LCR); /* set DLAB */
601
602 outb(quot & 0xff, info->ioaddr + UART_DLL); /* LS of divisor */
603 outb(quot >> 8, info->ioaddr + UART_DLM); /* MS of divisor */
604 outb(cval, info->ioaddr + UART_LCR); /* reset DLAB */
605
606#ifdef BOTHER
Alan Cox216ba022008-10-13 10:40:19 +0100607 if (C_BAUD(tty) == BOTHER) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800608 quot = info->baud_base % newspd;
609 quot *= 8;
610 if (quot % newspd > newspd / 2) {
611 quot /= newspd;
612 quot++;
613 } else
614 quot /= newspd;
615
Christoph Hellwig148ff862008-04-30 00:54:29 -0700616 mxser_set_must_enum_value(info->ioaddr, quot);
Jiri Slaby1c456072008-02-07 00:16:46 -0800617 } else
618#endif
Christoph Hellwig148ff862008-04-30 00:54:29 -0700619 mxser_set_must_enum_value(info->ioaddr, 0);
Jiri Slaby1c456072008-02-07 00:16:46 -0800620
621 return 0;
622}
623
624/*
625 * This routine is called to set the UART divisor registers to match
626 * the specified baud rate for a serial port.
627 */
Alan Cox216ba022008-10-13 10:40:19 +0100628static int mxser_change_speed(struct tty_struct *tty,
629 struct ktermios *old_termios)
Jiri Slaby1c456072008-02-07 00:16:46 -0800630{
Alan Cox216ba022008-10-13 10:40:19 +0100631 struct mxser_port *info = tty->driver_data;
Jiri Slaby1c456072008-02-07 00:16:46 -0800632 unsigned cflag, cval, fcr;
633 int ret = 0;
634 unsigned char status;
635
Alan Cox216ba022008-10-13 10:40:19 +0100636 cflag = tty->termios->c_cflag;
637 if (!info->ioaddr)
Jiri Slaby1c456072008-02-07 00:16:46 -0800638 return ret;
639
Alan Cox216ba022008-10-13 10:40:19 +0100640 if (mxser_set_baud_method[tty->index] == 0)
641 mxser_set_baud(tty, tty_get_baud_rate(tty));
Jiri Slaby1c456072008-02-07 00:16:46 -0800642
643 /* byte size and parity */
644 switch (cflag & CSIZE) {
645 case CS5:
646 cval = 0x00;
647 break;
648 case CS6:
649 cval = 0x01;
650 break;
651 case CS7:
652 cval = 0x02;
653 break;
654 case CS8:
655 cval = 0x03;
656 break;
657 default:
658 cval = 0x00;
659 break; /* too keep GCC shut... */
660 }
661 if (cflag & CSTOPB)
662 cval |= 0x04;
663 if (cflag & PARENB)
664 cval |= UART_LCR_PARITY;
665 if (!(cflag & PARODD))
666 cval |= UART_LCR_EPAR;
667 if (cflag & CMSPAR)
668 cval |= UART_LCR_SPAR;
669
670 if ((info->type == PORT_8250) || (info->type == PORT_16450)) {
671 if (info->board->chip_flag) {
672 fcr = UART_FCR_ENABLE_FIFO;
673 fcr |= MOXA_MUST_FCR_GDA_MODE_ENABLE;
Christoph Hellwig148ff862008-04-30 00:54:29 -0700674 mxser_set_must_fifo_value(info);
Jiri Slaby1c456072008-02-07 00:16:46 -0800675 } else
676 fcr = 0;
677 } else {
678 fcr = UART_FCR_ENABLE_FIFO;
679 if (info->board->chip_flag) {
680 fcr |= MOXA_MUST_FCR_GDA_MODE_ENABLE;
Christoph Hellwig148ff862008-04-30 00:54:29 -0700681 mxser_set_must_fifo_value(info);
Jiri Slaby1c456072008-02-07 00:16:46 -0800682 } else {
683 switch (info->rx_trigger) {
684 case 1:
685 fcr |= UART_FCR_TRIGGER_1;
686 break;
687 case 4:
688 fcr |= UART_FCR_TRIGGER_4;
689 break;
690 case 8:
691 fcr |= UART_FCR_TRIGGER_8;
692 break;
693 default:
694 fcr |= UART_FCR_TRIGGER_14;
695 break;
696 }
697 }
698 }
699
700 /* CTS flow control flag and modem status interrupts */
701 info->IER &= ~UART_IER_MSI;
702 info->MCR &= ~UART_MCR_AFE;
703 if (cflag & CRTSCTS) {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100704 info->port.flags |= ASYNC_CTS_FLOW;
Jiri Slaby1c456072008-02-07 00:16:46 -0800705 info->IER |= UART_IER_MSI;
706 if ((info->type == PORT_16550A) || (info->board->chip_flag)) {
707 info->MCR |= UART_MCR_AFE;
708 } else {
709 status = inb(info->ioaddr + UART_MSR);
Alan Cox216ba022008-10-13 10:40:19 +0100710 if (tty->hw_stopped) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800711 if (status & UART_MSR_CTS) {
Alan Cox216ba022008-10-13 10:40:19 +0100712 tty->hw_stopped = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -0800713 if (info->type != PORT_16550A &&
714 !info->board->chip_flag) {
715 outb(info->IER & ~UART_IER_THRI,
716 info->ioaddr +
717 UART_IER);
718 info->IER |= UART_IER_THRI;
719 outb(info->IER, info->ioaddr +
720 UART_IER);
721 }
Alan Cox216ba022008-10-13 10:40:19 +0100722 tty_wakeup(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -0800723 }
724 } else {
725 if (!(status & UART_MSR_CTS)) {
Alan Cox216ba022008-10-13 10:40:19 +0100726 tty->hw_stopped = 1;
Jiri Slaby1c456072008-02-07 00:16:46 -0800727 if ((info->type != PORT_16550A) &&
728 (!info->board->chip_flag)) {
729 info->IER &= ~UART_IER_THRI;
730 outb(info->IER, info->ioaddr +
731 UART_IER);
732 }
733 }
734 }
735 }
736 } else {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100737 info->port.flags &= ~ASYNC_CTS_FLOW;
Jiri Slaby1c456072008-02-07 00:16:46 -0800738 }
739 outb(info->MCR, info->ioaddr + UART_MCR);
740 if (cflag & CLOCAL) {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100741 info->port.flags &= ~ASYNC_CHECK_CD;
Jiri Slaby1c456072008-02-07 00:16:46 -0800742 } else {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100743 info->port.flags |= ASYNC_CHECK_CD;
Jiri Slaby1c456072008-02-07 00:16:46 -0800744 info->IER |= UART_IER_MSI;
745 }
746 outb(info->IER, info->ioaddr + UART_IER);
747
748 /*
749 * Set up parity check flag
750 */
751 info->read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
Alan Cox216ba022008-10-13 10:40:19 +0100752 if (I_INPCK(tty))
Jiri Slaby1c456072008-02-07 00:16:46 -0800753 info->read_status_mask |= UART_LSR_FE | UART_LSR_PE;
Alan Cox216ba022008-10-13 10:40:19 +0100754 if (I_BRKINT(tty) || I_PARMRK(tty))
Jiri Slaby1c456072008-02-07 00:16:46 -0800755 info->read_status_mask |= UART_LSR_BI;
756
757 info->ignore_status_mask = 0;
758
Alan Cox216ba022008-10-13 10:40:19 +0100759 if (I_IGNBRK(tty)) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800760 info->ignore_status_mask |= UART_LSR_BI;
761 info->read_status_mask |= UART_LSR_BI;
762 /*
763 * If we're ignore parity and break indicators, ignore
764 * overruns too. (For real raw support).
765 */
Alan Cox216ba022008-10-13 10:40:19 +0100766 if (I_IGNPAR(tty)) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800767 info->ignore_status_mask |=
768 UART_LSR_OE |
769 UART_LSR_PE |
770 UART_LSR_FE;
771 info->read_status_mask |=
772 UART_LSR_OE |
773 UART_LSR_PE |
774 UART_LSR_FE;
775 }
776 }
777 if (info->board->chip_flag) {
Alan Cox216ba022008-10-13 10:40:19 +0100778 mxser_set_must_xon1_value(info->ioaddr, START_CHAR(tty));
779 mxser_set_must_xoff1_value(info->ioaddr, STOP_CHAR(tty));
780 if (I_IXON(tty)) {
Christoph Hellwig148ff862008-04-30 00:54:29 -0700781 mxser_enable_must_rx_software_flow_control(
782 info->ioaddr);
Jiri Slaby1c456072008-02-07 00:16:46 -0800783 } else {
Christoph Hellwig148ff862008-04-30 00:54:29 -0700784 mxser_disable_must_rx_software_flow_control(
785 info->ioaddr);
Jiri Slaby1c456072008-02-07 00:16:46 -0800786 }
Alan Cox216ba022008-10-13 10:40:19 +0100787 if (I_IXOFF(tty)) {
Christoph Hellwig148ff862008-04-30 00:54:29 -0700788 mxser_enable_must_tx_software_flow_control(
789 info->ioaddr);
Jiri Slaby1c456072008-02-07 00:16:46 -0800790 } else {
Christoph Hellwig148ff862008-04-30 00:54:29 -0700791 mxser_disable_must_tx_software_flow_control(
792 info->ioaddr);
Jiri Slaby1c456072008-02-07 00:16:46 -0800793 }
794 }
795
796
797 outb(fcr, info->ioaddr + UART_FCR); /* set fcr */
798 outb(cval, info->ioaddr + UART_LCR);
799
800 return ret;
801}
802
Alan Cox216ba022008-10-13 10:40:19 +0100803static void mxser_check_modem_status(struct tty_struct *tty,
804 struct mxser_port *port, int status)
Jiri Slaby1c456072008-02-07 00:16:46 -0800805{
806 /* update input line counters */
807 if (status & UART_MSR_TERI)
808 port->icount.rng++;
809 if (status & UART_MSR_DDSR)
810 port->icount.dsr++;
811 if (status & UART_MSR_DDCD)
812 port->icount.dcd++;
813 if (status & UART_MSR_DCTS)
814 port->icount.cts++;
815 port->mon_data.modem_status = status;
816 wake_up_interruptible(&port->delta_msr_wait);
817
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100818 if ((port->port.flags & ASYNC_CHECK_CD) && (status & UART_MSR_DDCD)) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800819 if (status & UART_MSR_DCD)
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100820 wake_up_interruptible(&port->port.open_wait);
Jiri Slaby1c456072008-02-07 00:16:46 -0800821 }
822
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100823 if (port->port.flags & ASYNC_CTS_FLOW) {
Alan Cox216ba022008-10-13 10:40:19 +0100824 if (tty->hw_stopped) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800825 if (status & UART_MSR_CTS) {
Alan Cox216ba022008-10-13 10:40:19 +0100826 tty->hw_stopped = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -0800827
828 if ((port->type != PORT_16550A) &&
829 (!port->board->chip_flag)) {
830 outb(port->IER & ~UART_IER_THRI,
831 port->ioaddr + UART_IER);
832 port->IER |= UART_IER_THRI;
833 outb(port->IER, port->ioaddr +
834 UART_IER);
835 }
Alan Cox216ba022008-10-13 10:40:19 +0100836 tty_wakeup(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -0800837 }
838 } else {
839 if (!(status & UART_MSR_CTS)) {
Alan Cox216ba022008-10-13 10:40:19 +0100840 tty->hw_stopped = 1;
Jiri Slaby1c456072008-02-07 00:16:46 -0800841 if (port->type != PORT_16550A &&
842 !port->board->chip_flag) {
843 port->IER &= ~UART_IER_THRI;
844 outb(port->IER, port->ioaddr +
845 UART_IER);
846 }
847 }
848 }
849 }
850}
851
Alan Cox216ba022008-10-13 10:40:19 +0100852static int mxser_startup(struct tty_struct *tty)
Jiri Slaby1c456072008-02-07 00:16:46 -0800853{
Alan Cox216ba022008-10-13 10:40:19 +0100854 struct mxser_port *info = tty->driver_data;
Jiri Slaby1c456072008-02-07 00:16:46 -0800855 unsigned long page;
856 unsigned long flags;
857
858 page = __get_free_page(GFP_KERNEL);
859 if (!page)
860 return -ENOMEM;
861
862 spin_lock_irqsave(&info->slock, flags);
863
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100864 if (info->port.flags & ASYNC_INITIALIZED) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800865 free_page(page);
866 spin_unlock_irqrestore(&info->slock, flags);
867 return 0;
868 }
869
870 if (!info->ioaddr || !info->type) {
Alan Cox216ba022008-10-13 10:40:19 +0100871 set_bit(TTY_IO_ERROR, &tty->flags);
Jiri Slaby1c456072008-02-07 00:16:46 -0800872 free_page(page);
873 spin_unlock_irqrestore(&info->slock, flags);
874 return 0;
875 }
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100876 if (info->port.xmit_buf)
Jiri Slaby1c456072008-02-07 00:16:46 -0800877 free_page(page);
878 else
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100879 info->port.xmit_buf = (unsigned char *) page;
Jiri Slaby1c456072008-02-07 00:16:46 -0800880
881 /*
882 * Clear the FIFO buffers and disable them
883 * (they will be reenabled in mxser_change_speed())
884 */
885 if (info->board->chip_flag)
886 outb((UART_FCR_CLEAR_RCVR |
887 UART_FCR_CLEAR_XMIT |
888 MOXA_MUST_FCR_GDA_MODE_ENABLE), info->ioaddr + UART_FCR);
889 else
890 outb((UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT),
891 info->ioaddr + UART_FCR);
892
893 /*
894 * At this point there's no way the LSR could still be 0xFF;
895 * if it is, then bail out, because there's likely no UART
896 * here.
897 */
898 if (inb(info->ioaddr + UART_LSR) == 0xff) {
899 spin_unlock_irqrestore(&info->slock, flags);
900 if (capable(CAP_SYS_ADMIN)) {
Alan Cox216ba022008-10-13 10:40:19 +0100901 if (tty)
902 set_bit(TTY_IO_ERROR, &tty->flags);
Jiri Slaby1c456072008-02-07 00:16:46 -0800903 return 0;
904 } else
905 return -ENODEV;
906 }
907
908 /*
909 * Clear the interrupt registers.
910 */
911 (void) inb(info->ioaddr + UART_LSR);
912 (void) inb(info->ioaddr + UART_RX);
913 (void) inb(info->ioaddr + UART_IIR);
914 (void) inb(info->ioaddr + UART_MSR);
915
916 /*
917 * Now, initialize the UART
918 */
919 outb(UART_LCR_WLEN8, info->ioaddr + UART_LCR); /* reset DLAB */
920 info->MCR = UART_MCR_DTR | UART_MCR_RTS;
921 outb(info->MCR, info->ioaddr + UART_MCR);
922
923 /*
924 * Finally, enable interrupts
925 */
926 info->IER = UART_IER_MSI | UART_IER_RLSI | UART_IER_RDI;
927
928 if (info->board->chip_flag)
929 info->IER |= MOXA_MUST_IER_EGDAI;
930 outb(info->IER, info->ioaddr + UART_IER); /* enable interrupts */
931
932 /*
933 * And clear the interrupt registers again for luck.
934 */
935 (void) inb(info->ioaddr + UART_LSR);
936 (void) inb(info->ioaddr + UART_RX);
937 (void) inb(info->ioaddr + UART_IIR);
938 (void) inb(info->ioaddr + UART_MSR);
939
Alan Cox216ba022008-10-13 10:40:19 +0100940 clear_bit(TTY_IO_ERROR, &tty->flags);
Jiri Slaby1c456072008-02-07 00:16:46 -0800941 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
942
943 /*
944 * and set the speed of the serial port
945 */
Alan Cox216ba022008-10-13 10:40:19 +0100946 mxser_change_speed(tty, NULL);
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100947 info->port.flags |= ASYNC_INITIALIZED;
Jiri Slaby1c456072008-02-07 00:16:46 -0800948 spin_unlock_irqrestore(&info->slock, flags);
949
950 return 0;
951}
952
953/*
954 * This routine will shutdown a serial port; interrupts maybe disabled, and
955 * DTR is dropped if the hangup on close termio flag is on.
956 */
Alan Cox216ba022008-10-13 10:40:19 +0100957static void mxser_shutdown(struct tty_struct *tty)
Jiri Slaby1c456072008-02-07 00:16:46 -0800958{
Alan Cox216ba022008-10-13 10:40:19 +0100959 struct mxser_port *info = tty->driver_data;
Jiri Slaby1c456072008-02-07 00:16:46 -0800960 unsigned long flags;
961
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100962 if (!(info->port.flags & ASYNC_INITIALIZED))
Jiri Slaby1c456072008-02-07 00:16:46 -0800963 return;
964
965 spin_lock_irqsave(&info->slock, flags);
966
967 /*
968 * clear delta_msr_wait queue to avoid mem leaks: we may free the irq
969 * here so the queue might never be waken up
970 */
971 wake_up_interruptible(&info->delta_msr_wait);
972
973 /*
974 * Free the IRQ, if necessary
975 */
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100976 if (info->port.xmit_buf) {
977 free_page((unsigned long) info->port.xmit_buf);
978 info->port.xmit_buf = NULL;
Jiri Slaby1c456072008-02-07 00:16:46 -0800979 }
980
981 info->IER = 0;
982 outb(0x00, info->ioaddr + UART_IER);
983
Alan Cox216ba022008-10-13 10:40:19 +0100984 if (tty->termios->c_cflag & HUPCL)
Jiri Slaby1c456072008-02-07 00:16:46 -0800985 info->MCR &= ~(UART_MCR_DTR | UART_MCR_RTS);
986 outb(info->MCR, info->ioaddr + UART_MCR);
987
988 /* clear Rx/Tx FIFO's */
989 if (info->board->chip_flag)
990 outb(UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT |
991 MOXA_MUST_FCR_GDA_MODE_ENABLE,
992 info->ioaddr + UART_FCR);
993 else
994 outb(UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT,
995 info->ioaddr + UART_FCR);
996
997 /* read data port to reset things */
998 (void) inb(info->ioaddr + UART_RX);
999
Alan Cox216ba022008-10-13 10:40:19 +01001000 set_bit(TTY_IO_ERROR, &tty->flags);
Jiri Slaby1c456072008-02-07 00:16:46 -08001001
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001002 info->port.flags &= ~ASYNC_INITIALIZED;
Jiri Slaby1c456072008-02-07 00:16:46 -08001003
1004 if (info->board->chip_flag)
1005 SET_MOXA_MUST_NO_SOFTWARE_FLOW_CONTROL(info->ioaddr);
1006
1007 spin_unlock_irqrestore(&info->slock, flags);
1008}
1009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010/*
1011 * This routine is called whenever a serial port is opened. It
1012 * enables interrupts for a serial port, linking in its async structure into
1013 * the IRQ chain. It also performs the serial-specific
1014 * initialization for the tty structure.
1015 */
1016static int mxser_open(struct tty_struct *tty, struct file *filp)
1017{
Jiri Slaby1c456072008-02-07 00:16:46 -08001018 struct mxser_port *info;
1019 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 int retval, line;
1021
1022 line = tty->index;
1023 if (line == MXSER_PORTS)
1024 return 0;
1025 if (line < 0 || line > MXSER_PORTS)
1026 return -ENODEV;
Jiri Slaby1c456072008-02-07 00:16:46 -08001027 info = &mxser_boards[line / MXSER_PORTS_PER_BOARD].ports[line % MXSER_PORTS_PER_BOARD];
1028 if (!info->ioaddr)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001029 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031 tty->driver_data = info;
Alan Cox216ba022008-10-13 10:40:19 +01001032 tty_port_tty_set(&info->port, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 /*
1034 * Start up serial port
1035 */
Alan Cox3b6826b2009-01-02 13:45:58 +00001036 spin_lock_irqsave(&info->port.lock, flags);
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001037 info->port.count++;
Alan Cox3b6826b2009-01-02 13:45:58 +00001038 spin_unlock_irqrestore(&info->port.lock, flags);
Alan Cox216ba022008-10-13 10:40:19 +01001039 retval = mxser_startup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 if (retval)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001041 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Alan Cox36c621d2009-01-02 13:46:10 +00001043 retval = tty_port_block_til_ready(&info->port, tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 if (retval)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001045 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
Cedric Le Goater8cddd702007-02-10 01:46:33 -08001047 /* unmark here for very high baud rate (ex. 921600 bps) used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 tty->low_latency = 1;
1049 return 0;
1050}
1051
Alan Cox978e5952008-04-30 00:53:59 -07001052static void mxser_flush_buffer(struct tty_struct *tty)
1053{
1054 struct mxser_port *info = tty->driver_data;
1055 char fcr;
1056 unsigned long flags;
1057
1058
1059 spin_lock_irqsave(&info->slock, flags);
1060 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
1061
1062 fcr = inb(info->ioaddr + UART_FCR);
1063 outb((fcr | UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT),
1064 info->ioaddr + UART_FCR);
1065 outb(fcr, info->ioaddr + UART_FCR);
1066
1067 spin_unlock_irqrestore(&info->slock, flags);
1068
1069 tty_wakeup(tty);
1070}
1071
1072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073/*
1074 * This routine is called when the serial port gets closed. First, we
1075 * wait for the last remaining data to be sent. Then, we unlink its
1076 * async structure from the interrupt chain if necessary, and we free
1077 * that IRQ if nothing is left in the chain.
1078 */
1079static void mxser_close(struct tty_struct *tty, struct file *filp)
1080{
Jiri Slaby1c456072008-02-07 00:16:46 -08001081 struct mxser_port *info = tty->driver_data;
Alan Coxa6614992009-01-02 13:46:50 +00001082 struct tty_port *port = &info->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
1084 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
1086 if (tty->index == MXSER_PORTS)
1087 return;
1088 if (!info)
Kirill Smelkov6f08b722005-11-07 00:59:23 -08001089 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Alan Coxa6614992009-01-02 13:46:50 +00001091 if (tty_port_close_start(port, tty, filp) == 0)
1092 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 /*
1095 * Save the termios structure, since this port may have
1096 * separate termios for callout and dialin.
Alan Coxa6614992009-01-02 13:46:50 +00001097 *
1098 * FIXME: Can this go ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 */
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001100 if (info->port.flags & ASYNC_NORMAL_ACTIVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 info->normal_termios = *tty->termios;
1102 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 * At this point we stop accepting input. To do this, we
1104 * disable the receive line status interrupts, and tell the
1105 * interrupt driver to stop checking the data ready bit in the
1106 * line status register.
1107 */
1108 info->IER &= ~UART_IER_RLSI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001109 if (info->board->chip_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 info->IER &= ~MOXA_MUST_RECV_ISR;
Jiri Slaby1c456072008-02-07 00:16:46 -08001111
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001112 if (info->port.flags & ASYNC_INITIALIZED) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001113 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 /*
1115 * Before we drop DTR, make sure the UART transmitter
1116 * has completely drained; this is especially
1117 * important if there is a transmit FIFO!
1118 */
1119 timeout = jiffies + HZ;
Jiri Slaby1c456072008-02-07 00:16:46 -08001120 while (!(inb(info->ioaddr + UART_LSR) & UART_LSR_TEMT)) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07001121 schedule_timeout_interruptible(5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 if (time_after(jiffies, timeout))
1123 break;
1124 }
1125 }
Alan Cox216ba022008-10-13 10:40:19 +01001126 mxser_shutdown(tty);
Alan Cox978e5952008-04-30 00:53:59 -07001127 mxser_flush_buffer(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001128
Alan Coxa6614992009-01-02 13:46:50 +00001129 /* Right now the tty_port set is done outside of the close_end helper
1130 as we don't yet have everyone using refcounts */
1131 tty_port_close_end(port, tty);
1132 tty_port_tty_set(port, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133}
1134
1135static int mxser_write(struct tty_struct *tty, const unsigned char *buf, int count)
1136{
1137 int c, total = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08001138 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 unsigned long flags;
1140
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001141 if (!info->port.xmit_buf)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001142 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
1144 while (1) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001145 c = min_t(int, count, min(SERIAL_XMIT_SIZE - info->xmit_cnt - 1,
1146 SERIAL_XMIT_SIZE - info->xmit_head));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 if (c <= 0)
1148 break;
1149
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001150 memcpy(info->port.xmit_buf + info->xmit_head, buf, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 spin_lock_irqsave(&info->slock, flags);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001152 info->xmit_head = (info->xmit_head + c) &
1153 (SERIAL_XMIT_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 info->xmit_cnt += c;
1155 spin_unlock_irqrestore(&info->slock, flags);
1156
1157 buf += c;
1158 count -= c;
1159 total += c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 }
1161
Jiri Slaby1c456072008-02-07 00:16:46 -08001162 if (info->xmit_cnt && !tty->stopped) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001163 if (!tty->hw_stopped ||
1164 (info->type == PORT_16550A) ||
Jiri Slaby1c456072008-02-07 00:16:46 -08001165 (info->board->chip_flag)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 spin_lock_irqsave(&info->slock, flags);
Jiri Slaby1c456072008-02-07 00:16:46 -08001167 outb(info->IER & ~UART_IER_THRI, info->ioaddr +
1168 UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001170 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 spin_unlock_irqrestore(&info->slock, flags);
1172 }
1173 }
1174 return total;
1175}
1176
Alan Cox0be2ead2008-04-30 00:54:03 -07001177static int mxser_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178{
Jiri Slaby1c456072008-02-07 00:16:46 -08001179 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 unsigned long flags;
1181
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001182 if (!info->port.xmit_buf)
Alan Cox0be2ead2008-04-30 00:54:03 -07001183 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 if (info->xmit_cnt >= SERIAL_XMIT_SIZE - 1)
Alan Cox0be2ead2008-04-30 00:54:03 -07001186 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
1188 spin_lock_irqsave(&info->slock, flags);
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001189 info->port.xmit_buf[info->xmit_head++] = ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 info->xmit_head &= SERIAL_XMIT_SIZE - 1;
1191 info->xmit_cnt++;
1192 spin_unlock_irqrestore(&info->slock, flags);
Jiri Slaby1c456072008-02-07 00:16:46 -08001193 if (!tty->stopped) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001194 if (!tty->hw_stopped ||
1195 (info->type == PORT_16550A) ||
Jiri Slaby1c456072008-02-07 00:16:46 -08001196 info->board->chip_flag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 spin_lock_irqsave(&info->slock, flags);
Jiri Slaby1c456072008-02-07 00:16:46 -08001198 outb(info->IER & ~UART_IER_THRI, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001200 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 spin_unlock_irqrestore(&info->slock, flags);
1202 }
1203 }
Alan Cox0be2ead2008-04-30 00:54:03 -07001204 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205}
1206
1207
1208static void mxser_flush_chars(struct tty_struct *tty)
1209{
Jiri Slaby1c456072008-02-07 00:16:46 -08001210 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 unsigned long flags;
1212
Jiri Slabyace7dd92008-07-25 01:48:22 -07001213 if (info->xmit_cnt <= 0 || tty->stopped || !info->port.xmit_buf ||
1214 (tty->hw_stopped && info->type != PORT_16550A &&
1215 !info->board->chip_flag))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 return;
1217
1218 spin_lock_irqsave(&info->slock, flags);
1219
Jiri Slaby1c456072008-02-07 00:16:46 -08001220 outb(info->IER & ~UART_IER_THRI, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001222 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 spin_unlock_irqrestore(&info->slock, flags);
1225}
1226
1227static int mxser_write_room(struct tty_struct *tty)
1228{
Jiri Slaby1c456072008-02-07 00:16:46 -08001229 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 int ret;
1231
1232 ret = SERIAL_XMIT_SIZE - info->xmit_cnt - 1;
Jiri Slabyace7dd92008-07-25 01:48:22 -07001233 return ret < 0 ? 0 : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234}
1235
1236static int mxser_chars_in_buffer(struct tty_struct *tty)
1237{
Jiri Slaby1c456072008-02-07 00:16:46 -08001238 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 return info->xmit_cnt;
1240}
1241
Jiri Slaby1c456072008-02-07 00:16:46 -08001242/*
1243 * ------------------------------------------------------------
1244 * friends of mxser_ioctl()
1245 * ------------------------------------------------------------
1246 */
Alan Cox216ba022008-10-13 10:40:19 +01001247static int mxser_get_serial_info(struct tty_struct *tty,
Jiri Slaby1c456072008-02-07 00:16:46 -08001248 struct serial_struct __user *retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249{
Alan Cox216ba022008-10-13 10:40:19 +01001250 struct mxser_port *info = tty->driver_data;
Jiri Slaby1c456072008-02-07 00:16:46 -08001251 struct serial_struct tmp = {
1252 .type = info->type,
Alan Cox216ba022008-10-13 10:40:19 +01001253 .line = tty->index,
Jiri Slaby1c456072008-02-07 00:16:46 -08001254 .port = info->ioaddr,
1255 .irq = info->board->irq,
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001256 .flags = info->port.flags,
Jiri Slaby1c456072008-02-07 00:16:46 -08001257 .baud_base = info->baud_base,
Alan Cox44b7d1b2008-07-16 21:57:18 +01001258 .close_delay = info->port.close_delay,
1259 .closing_wait = info->port.closing_wait,
Jiri Slaby1c456072008-02-07 00:16:46 -08001260 .custom_divisor = info->custom_divisor,
1261 .hub6 = 0
1262 };
1263 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
1264 return -EFAULT;
1265 return 0;
1266}
1267
Alan Cox216ba022008-10-13 10:40:19 +01001268static int mxser_set_serial_info(struct tty_struct *tty,
Jiri Slaby1c456072008-02-07 00:16:46 -08001269 struct serial_struct __user *new_info)
1270{
Alan Cox216ba022008-10-13 10:40:19 +01001271 struct mxser_port *info = tty->driver_data;
Jiri Slaby1c456072008-02-07 00:16:46 -08001272 struct serial_struct new_serial;
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001273 speed_t baud;
Jiri Slaby1c456072008-02-07 00:16:46 -08001274 unsigned long sl_flags;
1275 unsigned int flags;
1276 int retval = 0;
1277
1278 if (!new_info || !info->ioaddr)
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001279 return -ENODEV;
Jiri Slaby1c456072008-02-07 00:16:46 -08001280 if (copy_from_user(&new_serial, new_info, sizeof(new_serial)))
1281 return -EFAULT;
1282
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001283 if (new_serial.irq != info->board->irq ||
1284 new_serial.port != info->ioaddr)
1285 return -EINVAL;
Jiri Slaby1c456072008-02-07 00:16:46 -08001286
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001287 flags = info->port.flags & ASYNC_SPD_MASK;
Jiri Slaby1c456072008-02-07 00:16:46 -08001288
1289 if (!capable(CAP_SYS_ADMIN)) {
1290 if ((new_serial.baud_base != info->baud_base) ||
Alan Cox44b7d1b2008-07-16 21:57:18 +01001291 (new_serial.close_delay != info->port.close_delay) ||
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001292 ((new_serial.flags & ~ASYNC_USR_MASK) != (info->port.flags & ~ASYNC_USR_MASK)))
Jiri Slaby1c456072008-02-07 00:16:46 -08001293 return -EPERM;
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001294 info->port.flags = ((info->port.flags & ~ASYNC_USR_MASK) |
Jiri Slaby1c456072008-02-07 00:16:46 -08001295 (new_serial.flags & ASYNC_USR_MASK));
1296 } else {
1297 /*
1298 * OK, past this point, all the error checking has been done.
1299 * At this point, we start making changes.....
1300 */
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001301 info->port.flags = ((info->port.flags & ~ASYNC_FLAGS) |
Jiri Slaby1c456072008-02-07 00:16:46 -08001302 (new_serial.flags & ASYNC_FLAGS));
Alan Cox44b7d1b2008-07-16 21:57:18 +01001303 info->port.close_delay = new_serial.close_delay * HZ / 100;
1304 info->port.closing_wait = new_serial.closing_wait * HZ / 100;
Alan Cox216ba022008-10-13 10:40:19 +01001305 tty->low_latency = (info->port.flags & ASYNC_LOW_LATENCY)
1306 ? 1 : 0;
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001307 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST &&
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001308 (new_serial.baud_base != info->baud_base ||
1309 new_serial.custom_divisor !=
1310 info->custom_divisor)) {
1311 baud = new_serial.baud_base / new_serial.custom_divisor;
Alan Cox216ba022008-10-13 10:40:19 +01001312 tty_encode_baud_rate(tty, baud, baud);
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001313 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001314 }
1315
1316 info->type = new_serial.type;
1317
1318 process_txrx_fifo(info);
1319
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001320 if (info->port.flags & ASYNC_INITIALIZED) {
1321 if (flags != (info->port.flags & ASYNC_SPD_MASK)) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001322 spin_lock_irqsave(&info->slock, sl_flags);
Alan Cox216ba022008-10-13 10:40:19 +01001323 mxser_change_speed(tty, NULL);
Jiri Slaby1c456072008-02-07 00:16:46 -08001324 spin_unlock_irqrestore(&info->slock, sl_flags);
1325 }
1326 } else
Alan Cox216ba022008-10-13 10:40:19 +01001327 retval = mxser_startup(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001328
1329 return retval;
1330}
1331
1332/*
1333 * mxser_get_lsr_info - get line status register info
1334 *
1335 * Purpose: Let user call ioctl() to get info when the UART physically
1336 * is emptied. On bus types like RS485, the transmitter must
1337 * release the bus after transmitting. This must be done when
1338 * the transmit shift register is empty, not be done when the
1339 * transmit holding register is empty. This functionality
1340 * allows an RS485 driver to be written in user space.
1341 */
1342static int mxser_get_lsr_info(struct mxser_port *info,
1343 unsigned int __user *value)
1344{
1345 unsigned char status;
1346 unsigned int result;
1347 unsigned long flags;
1348
1349 spin_lock_irqsave(&info->slock, flags);
1350 status = inb(info->ioaddr + UART_LSR);
1351 spin_unlock_irqrestore(&info->slock, flags);
1352 result = ((status & UART_LSR_TEMT) ? TIOCSER_TEMT : 0);
1353 return put_user(result, value);
1354}
1355
Jiri Slaby1c456072008-02-07 00:16:46 -08001356static int mxser_tiocmget(struct tty_struct *tty, struct file *file)
1357{
1358 struct mxser_port *info = tty->driver_data;
1359 unsigned char control, status;
1360 unsigned long flags;
1361
1362
1363 if (tty->index == MXSER_PORTS)
1364 return -ENOIOCTLCMD;
1365 if (test_bit(TTY_IO_ERROR, &tty->flags))
1366 return -EIO;
1367
1368 control = info->MCR;
1369
1370 spin_lock_irqsave(&info->slock, flags);
1371 status = inb(info->ioaddr + UART_MSR);
1372 if (status & UART_MSR_ANY_DELTA)
Alan Cox216ba022008-10-13 10:40:19 +01001373 mxser_check_modem_status(tty, info, status);
Jiri Slaby1c456072008-02-07 00:16:46 -08001374 spin_unlock_irqrestore(&info->slock, flags);
1375 return ((control & UART_MCR_RTS) ? TIOCM_RTS : 0) |
1376 ((control & UART_MCR_DTR) ? TIOCM_DTR : 0) |
1377 ((status & UART_MSR_DCD) ? TIOCM_CAR : 0) |
1378 ((status & UART_MSR_RI) ? TIOCM_RNG : 0) |
1379 ((status & UART_MSR_DSR) ? TIOCM_DSR : 0) |
1380 ((status & UART_MSR_CTS) ? TIOCM_CTS : 0);
1381}
1382
1383static int mxser_tiocmset(struct tty_struct *tty, struct file *file,
1384 unsigned int set, unsigned int clear)
1385{
1386 struct mxser_port *info = tty->driver_data;
1387 unsigned long flags;
1388
1389
1390 if (tty->index == MXSER_PORTS)
1391 return -ENOIOCTLCMD;
1392 if (test_bit(TTY_IO_ERROR, &tty->flags))
1393 return -EIO;
1394
1395 spin_lock_irqsave(&info->slock, flags);
1396
1397 if (set & TIOCM_RTS)
1398 info->MCR |= UART_MCR_RTS;
1399 if (set & TIOCM_DTR)
1400 info->MCR |= UART_MCR_DTR;
1401
1402 if (clear & TIOCM_RTS)
1403 info->MCR &= ~UART_MCR_RTS;
1404 if (clear & TIOCM_DTR)
1405 info->MCR &= ~UART_MCR_DTR;
1406
1407 outb(info->MCR, info->ioaddr + UART_MCR);
1408 spin_unlock_irqrestore(&info->slock, flags);
1409 return 0;
1410}
1411
1412static int __init mxser_program_mode(int port)
1413{
1414 int id, i, j, n;
1415
1416 outb(0, port);
1417 outb(0, port);
1418 outb(0, port);
1419 (void)inb(port);
1420 (void)inb(port);
1421 outb(0, port);
1422 (void)inb(port);
1423
1424 id = inb(port + 1) & 0x1F;
1425 if ((id != C168_ASIC_ID) &&
1426 (id != C104_ASIC_ID) &&
1427 (id != C102_ASIC_ID) &&
1428 (id != CI132_ASIC_ID) &&
1429 (id != CI134_ASIC_ID) &&
1430 (id != CI104J_ASIC_ID))
1431 return -1;
1432 for (i = 0, j = 0; i < 4; i++) {
1433 n = inb(port + 2);
1434 if (n == 'M') {
1435 j = 1;
1436 } else if ((j == 1) && (n == 1)) {
1437 j = 2;
1438 break;
1439 } else
1440 j = 0;
1441 }
1442 if (j != 2)
1443 id = -2;
1444 return id;
1445}
1446
1447static void __init mxser_normal_mode(int port)
1448{
1449 int i, n;
1450
1451 outb(0xA5, port + 1);
1452 outb(0x80, port + 3);
1453 outb(12, port + 0); /* 9600 bps */
1454 outb(0, port + 1);
1455 outb(0x03, port + 3); /* 8 data bits */
1456 outb(0x13, port + 4); /* loop back mode */
1457 for (i = 0; i < 16; i++) {
1458 n = inb(port + 5);
1459 if ((n & 0x61) == 0x60)
1460 break;
1461 if ((n & 1) == 1)
1462 (void)inb(port);
1463 }
1464 outb(0x00, port + 4);
1465}
1466
1467#define CHIP_SK 0x01 /* Serial Data Clock in Eprom */
1468#define CHIP_DO 0x02 /* Serial Data Output in Eprom */
1469#define CHIP_CS 0x04 /* Serial Chip Select in Eprom */
1470#define CHIP_DI 0x08 /* Serial Data Input in Eprom */
1471#define EN_CCMD 0x000 /* Chip's command register */
1472#define EN0_RSARLO 0x008 /* Remote start address reg 0 */
1473#define EN0_RSARHI 0x009 /* Remote start address reg 1 */
1474#define EN0_RCNTLO 0x00A /* Remote byte count reg WR */
1475#define EN0_RCNTHI 0x00B /* Remote byte count reg WR */
1476#define EN0_DCFG 0x00E /* Data configuration reg WR */
1477#define EN0_PORT 0x010 /* Rcv missed frame error counter RD */
1478#define ENC_PAGE0 0x000 /* Select page 0 of chip registers */
1479#define ENC_PAGE3 0x0C0 /* Select page 3 of chip registers */
1480static int __init mxser_read_register(int port, unsigned short *regs)
1481{
1482 int i, k, value, id;
1483 unsigned int j;
1484
1485 id = mxser_program_mode(port);
1486 if (id < 0)
1487 return id;
1488 for (i = 0; i < 14; i++) {
1489 k = (i & 0x3F) | 0x180;
1490 for (j = 0x100; j > 0; j >>= 1) {
1491 outb(CHIP_CS, port);
1492 if (k & j) {
1493 outb(CHIP_CS | CHIP_DO, port);
1494 outb(CHIP_CS | CHIP_DO | CHIP_SK, port); /* A? bit of read */
1495 } else {
1496 outb(CHIP_CS, port);
1497 outb(CHIP_CS | CHIP_SK, port); /* A? bit of read */
1498 }
1499 }
1500 (void)inb(port);
1501 value = 0;
1502 for (k = 0, j = 0x8000; k < 16; k++, j >>= 1) {
1503 outb(CHIP_CS, port);
1504 outb(CHIP_CS | CHIP_SK, port);
1505 if (inb(port) & CHIP_DI)
1506 value |= j;
1507 }
1508 regs[i] = value;
1509 outb(0, port);
1510 }
1511 mxser_normal_mode(port);
1512 return id;
1513}
1514
1515static int mxser_ioctl_special(unsigned int cmd, void __user *argp)
1516{
1517 struct mxser_port *port;
Alan Cox216ba022008-10-13 10:40:19 +01001518 struct tty_struct *tty;
Jiri Slaby1c456072008-02-07 00:16:46 -08001519 int result, status;
1520 unsigned int i, j;
Alan Cox9d6d1622008-04-30 00:53:20 -07001521 int ret = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08001522
1523 switch (cmd) {
1524 case MOXA_GET_MAJOR:
Jiri Slaby8f3d1372008-07-29 22:33:38 -07001525 if (printk_ratelimit())
1526 printk(KERN_WARNING "mxser: '%s' uses deprecated ioctl "
1527 "%x (GET_MAJOR), fix your userspace\n",
1528 current->comm, cmd);
Jiri Slaby1c456072008-02-07 00:16:46 -08001529 return put_user(ttymajor, (int __user *)argp);
1530
1531 case MOXA_CHKPORTENABLE:
1532 result = 0;
Alan Cox9d6d1622008-04-30 00:53:20 -07001533 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001534 for (i = 0; i < MXSER_BOARDS; i++)
1535 for (j = 0; j < MXSER_PORTS_PER_BOARD; j++)
1536 if (mxser_boards[i].ports[j].ioaddr)
1537 result |= (1 << i);
Alan Cox9d6d1622008-04-30 00:53:20 -07001538 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001539 return put_user(result, (unsigned long __user *)argp);
1540 case MOXA_GETDATACOUNT:
Alan Cox9d6d1622008-04-30 00:53:20 -07001541 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001542 if (copy_to_user(argp, &mxvar_log, sizeof(mxvar_log)))
Alan Cox9d6d1622008-04-30 00:53:20 -07001543 ret = -EFAULT;
1544 unlock_kernel();
1545 return ret;
Jiri Slaby72800df2008-07-25 01:48:20 -07001546 case MOXA_GETMSTATUS: {
1547 struct mxser_mstatus ms, __user *msu = argp;
Alan Cox9d6d1622008-04-30 00:53:20 -07001548 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001549 for (i = 0; i < MXSER_BOARDS; i++)
1550 for (j = 0; j < MXSER_PORTS_PER_BOARD; j++) {
1551 port = &mxser_boards[i].ports[j];
Jiri Slaby72800df2008-07-25 01:48:20 -07001552 memset(&ms, 0, sizeof(ms));
Jiri Slaby1c456072008-02-07 00:16:46 -08001553
Jiri Slaby72800df2008-07-25 01:48:20 -07001554 if (!port->ioaddr)
1555 goto copy;
Alan Cox216ba022008-10-13 10:40:19 +01001556
1557 tty = tty_port_tty_get(&port->port);
Jiri Slaby1c456072008-02-07 00:16:46 -08001558
Alan Cox216ba022008-10-13 10:40:19 +01001559 if (!tty || !tty->termios)
Jiri Slaby72800df2008-07-25 01:48:20 -07001560 ms.cflag = port->normal_termios.c_cflag;
Jiri Slaby1c456072008-02-07 00:16:46 -08001561 else
Alan Cox216ba022008-10-13 10:40:19 +01001562 ms.cflag = tty->termios->c_cflag;
1563 tty_kref_put(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001564 status = inb(port->ioaddr + UART_MSR);
Jiri Slaby72800df2008-07-25 01:48:20 -07001565 if (status & UART_MSR_DCD)
1566 ms.dcd = 1;
1567 if (status & UART_MSR_DSR)
1568 ms.dsr = 1;
1569 if (status & UART_MSR_CTS)
1570 ms.cts = 1;
1571 copy:
1572 if (copy_to_user(msu, &ms, sizeof(ms))) {
1573 unlock_kernel();
1574 return -EFAULT;
1575 }
1576 msu++;
Jiri Slaby1c456072008-02-07 00:16:46 -08001577 }
Alan Cox9d6d1622008-04-30 00:53:20 -07001578 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001579 return 0;
Jiri Slaby72800df2008-07-25 01:48:20 -07001580 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001581 case MOXA_ASPP_MON_EXT: {
Jiri Slaby72800df2008-07-25 01:48:20 -07001582 struct mxser_mon_ext *me; /* it's 2k, stack unfriendly */
1583 unsigned int cflag, iflag, p;
1584 u8 opmode;
1585
1586 me = kzalloc(sizeof(*me), GFP_KERNEL);
1587 if (!me)
1588 return -ENOMEM;
Jiri Slaby1c456072008-02-07 00:16:46 -08001589
Alan Cox9d6d1622008-04-30 00:53:20 -07001590 lock_kernel();
Jiri Slaby72800df2008-07-25 01:48:20 -07001591 for (i = 0, p = 0; i < MXSER_BOARDS; i++) {
1592 for (j = 0; j < MXSER_PORTS_PER_BOARD; j++, p++) {
1593 if (p >= ARRAY_SIZE(me->rx_cnt)) {
1594 i = MXSER_BOARDS;
1595 break;
1596 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001597 port = &mxser_boards[i].ports[j];
1598 if (!port->ioaddr)
1599 continue;
1600
Jiri Slaby72800df2008-07-25 01:48:20 -07001601 status = mxser_get_msr(port->ioaddr, 0, p);
Jiri Slaby1c456072008-02-07 00:16:46 -08001602
1603 if (status & UART_MSR_TERI)
1604 port->icount.rng++;
1605 if (status & UART_MSR_DDSR)
1606 port->icount.dsr++;
1607 if (status & UART_MSR_DDCD)
1608 port->icount.dcd++;
1609 if (status & UART_MSR_DCTS)
1610 port->icount.cts++;
1611
1612 port->mon_data.modem_status = status;
Jiri Slaby72800df2008-07-25 01:48:20 -07001613 me->rx_cnt[p] = port->mon_data.rxcnt;
1614 me->tx_cnt[p] = port->mon_data.txcnt;
1615 me->up_rxcnt[p] = port->mon_data.up_rxcnt;
1616 me->up_txcnt[p] = port->mon_data.up_txcnt;
1617 me->modem_status[p] =
Jiri Slaby1c456072008-02-07 00:16:46 -08001618 port->mon_data.modem_status;
Alan Cox216ba022008-10-13 10:40:19 +01001619 tty = tty_port_tty_get(&port->port);
Jiri Slaby1c456072008-02-07 00:16:46 -08001620
Alan Cox216ba022008-10-13 10:40:19 +01001621 if (!tty || !tty->termios) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001622 cflag = port->normal_termios.c_cflag;
1623 iflag = port->normal_termios.c_iflag;
Alan Cox216ba022008-10-13 10:40:19 +01001624 me->baudrate[p] = tty_termios_baud_rate(&port->normal_termios);
Jiri Slaby1c456072008-02-07 00:16:46 -08001625 } else {
Alan Cox216ba022008-10-13 10:40:19 +01001626 cflag = tty->termios->c_cflag;
1627 iflag = tty->termios->c_iflag;
1628 me->baudrate[p] = tty_get_baud_rate(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001629 }
Alan Cox216ba022008-10-13 10:40:19 +01001630 tty_kref_put(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001631
Jiri Slaby72800df2008-07-25 01:48:20 -07001632 me->databits[p] = cflag & CSIZE;
1633 me->stopbits[p] = cflag & CSTOPB;
1634 me->parity[p] = cflag & (PARENB | PARODD |
1635 CMSPAR);
Jiri Slaby1c456072008-02-07 00:16:46 -08001636
1637 if (cflag & CRTSCTS)
Jiri Slaby72800df2008-07-25 01:48:20 -07001638 me->flowctrl[p] |= 0x03;
Jiri Slaby1c456072008-02-07 00:16:46 -08001639
1640 if (iflag & (IXON | IXOFF))
Jiri Slaby72800df2008-07-25 01:48:20 -07001641 me->flowctrl[p] |= 0x0C;
Jiri Slaby1c456072008-02-07 00:16:46 -08001642
1643 if (port->type == PORT_16550A)
Jiri Slaby72800df2008-07-25 01:48:20 -07001644 me->fifo[p] = 1;
Jiri Slaby1c456072008-02-07 00:16:46 -08001645
Jiri Slaby72800df2008-07-25 01:48:20 -07001646 opmode = inb(port->opmode_ioaddr) >>
1647 ((p % 4) * 2);
Jiri Slaby1c456072008-02-07 00:16:46 -08001648 opmode &= OP_MODE_MASK;
Jiri Slaby72800df2008-07-25 01:48:20 -07001649 me->iftype[p] = opmode;
Jiri Slaby1c456072008-02-07 00:16:46 -08001650 }
Alan Cox9d6d1622008-04-30 00:53:20 -07001651 }
1652 unlock_kernel();
Jiri Slaby72800df2008-07-25 01:48:20 -07001653 if (copy_to_user(argp, me, sizeof(*me)))
1654 ret = -EFAULT;
1655 kfree(me);
1656 return ret;
Alan Cox9d6d1622008-04-30 00:53:20 -07001657 }
1658 default:
Jiri Slaby1c456072008-02-07 00:16:46 -08001659 return -ENOIOCTLCMD;
1660 }
1661 return 0;
1662}
1663
1664static int mxser_cflags_changed(struct mxser_port *info, unsigned long arg,
1665 struct async_icount *cprev)
1666{
1667 struct async_icount cnow;
1668 unsigned long flags;
1669 int ret;
1670
1671 spin_lock_irqsave(&info->slock, flags);
1672 cnow = info->icount; /* atomic copy */
1673 spin_unlock_irqrestore(&info->slock, flags);
1674
1675 ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
1676 ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
1677 ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
1678 ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts));
1679
1680 *cprev = cnow;
1681
1682 return ret;
1683}
1684
1685static int mxser_ioctl(struct tty_struct *tty, struct file *file,
1686 unsigned int cmd, unsigned long arg)
1687{
1688 struct mxser_port *info = tty->driver_data;
1689 struct async_icount cnow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 unsigned long flags;
1691 void __user *argp = (void __user *)arg;
Jiri Slaby1c456072008-02-07 00:16:46 -08001692 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
1694 if (tty->index == MXSER_PORTS)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001695 return mxser_ioctl_special(cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 if (cmd == MOXA_SET_OP_MODE || cmd == MOXA_GET_OP_MODE) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001698 int p;
1699 unsigned long opmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 static unsigned char ModeMask[] = { 0xfc, 0xf3, 0xcf, 0x3f };
1701 int shiftbit;
1702 unsigned char val, mask;
1703
Jiri Slaby1c456072008-02-07 00:16:46 -08001704 p = tty->index % 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 if (cmd == MOXA_SET_OP_MODE) {
1706 if (get_user(opmode, (int __user *) argp))
1707 return -EFAULT;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001708 if (opmode != RS232_MODE &&
1709 opmode != RS485_2WIRE_MODE &&
1710 opmode != RS422_MODE &&
1711 opmode != RS485_4WIRE_MODE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 return -EFAULT;
Alan Cox9d6d1622008-04-30 00:53:20 -07001713 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 mask = ModeMask[p];
1715 shiftbit = p * 2;
1716 val = inb(info->opmode_ioaddr);
1717 val &= mask;
1718 val |= (opmode << shiftbit);
1719 outb(val, info->opmode_ioaddr);
Alan Cox9d6d1622008-04-30 00:53:20 -07001720 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 } else {
Alan Cox9d6d1622008-04-30 00:53:20 -07001722 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 shiftbit = p * 2;
1724 opmode = inb(info->opmode_ioaddr) >> shiftbit;
1725 opmode &= OP_MODE_MASK;
Alan Cox9d6d1622008-04-30 00:53:20 -07001726 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001727 if (put_user(opmode, (int __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 return -EFAULT;
1729 }
1730 return 0;
1731 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
Jiri Slaby1c456072008-02-07 00:16:46 -08001733 if (cmd != TIOCGSERIAL && cmd != TIOCMIWAIT && cmd != TIOCGICOUNT &&
1734 test_bit(TTY_IO_ERROR, &tty->flags))
1735 return -EIO;
1736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 case TIOCGSERIAL:
Alan Cox9d6d1622008-04-30 00:53:20 -07001739 lock_kernel();
Alan Cox216ba022008-10-13 10:40:19 +01001740 retval = mxser_get_serial_info(tty, argp);
Alan Cox9d6d1622008-04-30 00:53:20 -07001741 unlock_kernel();
1742 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 case TIOCSSERIAL:
Alan Cox9d6d1622008-04-30 00:53:20 -07001744 lock_kernel();
Alan Cox216ba022008-10-13 10:40:19 +01001745 retval = mxser_set_serial_info(tty, argp);
Alan Cox9d6d1622008-04-30 00:53:20 -07001746 unlock_kernel();
1747 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 case TIOCSERGETLSR: /* Get line status register */
Alan Cox9d6d1622008-04-30 00:53:20 -07001749 return mxser_get_lsr_info(info, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 /*
1751 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1752 * - mask passed in arg for lines of interest
1753 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1754 * Caller should use TIOCGICOUNT to see which one it was
1755 */
Jiri Slabyfc838152007-04-23 14:41:04 -07001756 case TIOCMIWAIT:
1757 spin_lock_irqsave(&info->slock, flags);
1758 cnow = info->icount; /* note the counters on entry */
1759 spin_unlock_irqrestore(&info->slock, flags);
1760
Jiri Slaby1c456072008-02-07 00:16:46 -08001761 return wait_event_interruptible(info->delta_msr_wait,
1762 mxser_cflags_changed(info, arg, &cnow));
1763 /*
1764 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1765 * Return: write counters to the user passed counter struct
1766 * NB: both 1->0 and 0->1 transitions are counted except for
1767 * RI where only 0->1 is counted.
1768 */
Jiri Slaby41aee9a2008-07-25 01:48:19 -07001769 case TIOCGICOUNT: {
1770 struct serial_icounter_struct icnt = { 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 spin_lock_irqsave(&info->slock, flags);
1772 cnow = info->icount;
1773 spin_unlock_irqrestore(&info->slock, flags);
Jiri Slaby41aee9a2008-07-25 01:48:19 -07001774
1775 icnt.frame = cnow.frame;
1776 icnt.brk = cnow.brk;
1777 icnt.overrun = cnow.overrun;
1778 icnt.buf_overrun = cnow.buf_overrun;
1779 icnt.parity = cnow.parity;
1780 icnt.rx = cnow.rx;
1781 icnt.tx = cnow.tx;
1782 icnt.cts = cnow.cts;
1783 icnt.dsr = cnow.dsr;
1784 icnt.rng = cnow.rng;
1785 icnt.dcd = cnow.dcd;
1786
1787 return copy_to_user(argp, &icnt, sizeof(icnt)) ? -EFAULT : 0;
1788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 case MOXA_HighSpeedOn:
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001790 return put_user(info->baud_base != 115200 ? 1 : 0, (int __user *)argp);
Jiri Slaby1c456072008-02-07 00:16:46 -08001791 case MOXA_SDS_RSTICOUNTER:
Alan Cox9d6d1622008-04-30 00:53:20 -07001792 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001793 info->mon_data.rxcnt = 0;
1794 info->mon_data.txcnt = 0;
Alan Cox9d6d1622008-04-30 00:53:20 -07001795 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 return 0;
1797
1798 case MOXA_ASPP_OQUEUE:{
Jiri Slaby1c456072008-02-07 00:16:46 -08001799 int len, lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
Alan Cox9d6d1622008-04-30 00:53:20 -07001801 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001802 len = mxser_chars_in_buffer(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001803 lsr = inb(info->ioaddr + UART_LSR) & UART_LSR_TEMT;
Jiri Slaby1c456072008-02-07 00:16:46 -08001804 len += (lsr ? 0 : 1);
Alan Cox9d6d1622008-04-30 00:53:20 -07001805 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Jiri Slaby1c456072008-02-07 00:16:46 -08001807 return put_user(len, (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001809 case MOXA_ASPP_MON: {
1810 int mcr, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
Alan Cox9d6d1622008-04-30 00:53:20 -07001812 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001813 status = mxser_get_msr(info->ioaddr, 1, tty->index);
Alan Cox216ba022008-10-13 10:40:19 +01001814 mxser_check_modem_status(tty, info, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
Jiri Slaby1c456072008-02-07 00:16:46 -08001816 mcr = inb(info->ioaddr + UART_MCR);
1817 if (mcr & MOXA_MUST_MCR_XON_FLAG)
1818 info->mon_data.hold_reason &= ~NPPI_NOTIFY_XOFFHOLD;
1819 else
1820 info->mon_data.hold_reason |= NPPI_NOTIFY_XOFFHOLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
Jiri Slaby1c456072008-02-07 00:16:46 -08001822 if (mcr & MOXA_MUST_MCR_TX_XON)
1823 info->mon_data.hold_reason &= ~NPPI_NOTIFY_XOFFXENT;
1824 else
1825 info->mon_data.hold_reason |= NPPI_NOTIFY_XOFFXENT;
1826
Alan Cox216ba022008-10-13 10:40:19 +01001827 if (tty->hw_stopped)
Jiri Slaby1c456072008-02-07 00:16:46 -08001828 info->mon_data.hold_reason |= NPPI_NOTIFY_CTSHOLD;
1829 else
1830 info->mon_data.hold_reason &= ~NPPI_NOTIFY_CTSHOLD;
Alan Cox9d6d1622008-04-30 00:53:20 -07001831 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001832 if (copy_to_user(argp, &info->mon_data,
1833 sizeof(struct mxser_mon)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 return -EFAULT;
Jiri Slaby1c456072008-02-07 00:16:46 -08001835
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 return 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08001837 }
1838 case MOXA_ASPP_LSTATUS: {
1839 if (put_user(info->err_shadow, (unsigned char __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Jiri Slaby1c456072008-02-07 00:16:46 -08001842 info->err_shadow = 0;
1843 return 0;
1844 }
1845 case MOXA_SET_BAUD_METHOD: {
1846 int method;
1847
1848 if (get_user(method, (int __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 return -EFAULT;
Jiri Slaby1c456072008-02-07 00:16:46 -08001850 mxser_set_baud_method[tty->index] = method;
1851 return put_user(method, (int __user *)argp);
1852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 default:
1854 return -ENOIOCTLCMD;
1855 }
1856 return 0;
1857}
1858
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859static void mxser_stoprx(struct tty_struct *tty)
1860{
Jiri Slaby1c456072008-02-07 00:16:46 -08001861 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
1863 info->ldisc_stop_rx = 1;
1864 if (I_IXOFF(tty)) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001865 if (info->board->chip_flag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 info->IER &= ~MOXA_MUST_RECV_ISR;
Jiri Slaby1c456072008-02-07 00:16:46 -08001867 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 info->x_char = STOP_CHAR(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001870 outb(0, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001872 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 }
1874 }
1875
Alan Cox216ba022008-10-13 10:40:19 +01001876 if (tty->termios->c_cflag & CRTSCTS) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001877 info->MCR &= ~UART_MCR_RTS;
1878 outb(info->MCR, info->ioaddr + UART_MCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 }
1880}
1881
1882/*
1883 * This routine is called by the upper-layer tty layer to signal that
1884 * incoming characters should be throttled.
1885 */
1886static void mxser_throttle(struct tty_struct *tty)
1887{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 mxser_stoprx(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889}
1890
1891static void mxser_unthrottle(struct tty_struct *tty)
1892{
Jiri Slaby1c456072008-02-07 00:16:46 -08001893 struct mxser_port *info = tty->driver_data;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001894
Jiri Slaby1c456072008-02-07 00:16:46 -08001895 /* startrx */
1896 info->ldisc_stop_rx = 0;
1897 if (I_IXOFF(tty)) {
1898 if (info->x_char)
1899 info->x_char = 0;
1900 else {
1901 if (info->board->chip_flag) {
1902 info->IER |= MOXA_MUST_RECV_ISR;
1903 outb(info->IER, info->ioaddr + UART_IER);
1904 } else {
1905 info->x_char = START_CHAR(tty);
1906 outb(0, info->ioaddr + UART_IER);
1907 info->IER |= UART_IER_THRI;
1908 outb(info->IER, info->ioaddr + UART_IER);
1909 }
1910 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 }
1912
Alan Cox216ba022008-10-13 10:40:19 +01001913 if (tty->termios->c_cflag & CRTSCTS) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001914 info->MCR |= UART_MCR_RTS;
1915 outb(info->MCR, info->ioaddr + UART_MCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 }
1917}
1918
1919/*
1920 * mxser_stop() and mxser_start()
1921 *
1922 * This routines are called before setting or resetting tty->stopped.
1923 * They enable or disable transmitter interrupts, as necessary.
1924 */
1925static void mxser_stop(struct tty_struct *tty)
1926{
Jiri Slaby1c456072008-02-07 00:16:46 -08001927 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 unsigned long flags;
1929
1930 spin_lock_irqsave(&info->slock, flags);
1931 if (info->IER & UART_IER_THRI) {
1932 info->IER &= ~UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001933 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 }
1935 spin_unlock_irqrestore(&info->slock, flags);
1936}
1937
1938static void mxser_start(struct tty_struct *tty)
1939{
Jiri Slaby1c456072008-02-07 00:16:46 -08001940 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 unsigned long flags;
1942
1943 spin_lock_irqsave(&info->slock, flags);
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001944 if (info->xmit_cnt && info->port.xmit_buf) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001945 outb(info->IER & ~UART_IER_THRI, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001947 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 }
1949 spin_unlock_irqrestore(&info->slock, flags);
1950}
1951
Jiri Slaby1c456072008-02-07 00:16:46 -08001952static void mxser_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
1953{
1954 struct mxser_port *info = tty->driver_data;
1955 unsigned long flags;
1956
1957 spin_lock_irqsave(&info->slock, flags);
Alan Cox216ba022008-10-13 10:40:19 +01001958 mxser_change_speed(tty, old_termios);
Jiri Slaby1c456072008-02-07 00:16:46 -08001959 spin_unlock_irqrestore(&info->slock, flags);
1960
1961 if ((old_termios->c_cflag & CRTSCTS) &&
1962 !(tty->termios->c_cflag & CRTSCTS)) {
1963 tty->hw_stopped = 0;
1964 mxser_start(tty);
1965 }
1966
1967 /* Handle sw stopped */
1968 if ((old_termios->c_iflag & IXON) &&
1969 !(tty->termios->c_iflag & IXON)) {
1970 tty->stopped = 0;
1971
1972 if (info->board->chip_flag) {
1973 spin_lock_irqsave(&info->slock, flags);
Christoph Hellwig148ff862008-04-30 00:54:29 -07001974 mxser_disable_must_rx_software_flow_control(
1975 info->ioaddr);
Jiri Slaby1c456072008-02-07 00:16:46 -08001976 spin_unlock_irqrestore(&info->slock, flags);
1977 }
1978
1979 mxser_start(tty);
1980 }
1981}
1982
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983/*
1984 * mxser_wait_until_sent() --- wait until the transmitter is empty
1985 */
1986static void mxser_wait_until_sent(struct tty_struct *tty, int timeout)
1987{
Jiri Slaby1c456072008-02-07 00:16:46 -08001988 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 unsigned long orig_jiffies, char_time;
1990 int lsr;
1991
1992 if (info->type == PORT_UNKNOWN)
1993 return;
1994
1995 if (info->xmit_fifo_size == 0)
1996 return; /* Just in case.... */
1997
1998 orig_jiffies = jiffies;
1999 /*
2000 * Set the check interval to be 1/5 of the estimated time to
2001 * send a single character, and make it at least 1. The check
2002 * interval should also be less than the timeout.
2003 *
2004 * Note: we have to use pretty tight timings here to satisfy
2005 * the NIST-PCTS.
2006 */
2007 char_time = (info->timeout - HZ / 50) / info->xmit_fifo_size;
2008 char_time = char_time / 5;
2009 if (char_time == 0)
2010 char_time = 1;
2011 if (timeout && timeout < char_time)
2012 char_time = timeout;
2013 /*
2014 * If the transmitter hasn't cleared in twice the approximate
2015 * amount of time to send the entire FIFO, it probably won't
2016 * ever clear. This assumes the UART isn't doing flow
2017 * control, which is currently the case. Hence, if it ever
2018 * takes longer than info->timeout, this is probably due to a
2019 * UART bug of some kind. So, we clamp the timeout parameter at
2020 * 2*info->timeout.
2021 */
2022 if (!timeout || timeout > 2 * info->timeout)
2023 timeout = 2 * info->timeout;
2024#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002025 printk(KERN_DEBUG "In rs_wait_until_sent(%d) check=%lu...",
2026 timeout, char_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 printk("jiff=%lu...", jiffies);
2028#endif
Alan Cox978e5952008-04-30 00:53:59 -07002029 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08002030 while (!((lsr = inb(info->ioaddr + UART_LSR)) & UART_LSR_TEMT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2032 printk("lsr = %d (jiff=%lu)...", lsr, jiffies);
2033#endif
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07002034 schedule_timeout_interruptible(char_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 if (signal_pending(current))
2036 break;
2037 if (timeout && time_after(jiffies, orig_jiffies + timeout))
2038 break;
2039 }
2040 set_current_state(TASK_RUNNING);
Alan Cox978e5952008-04-30 00:53:59 -07002041 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
2043#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2044 printk("lsr = %d (jiff=%lu)...done\n", lsr, jiffies);
2045#endif
2046}
2047
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048/*
2049 * This routine is called by tty_hangup() when a hangup is signaled.
2050 */
Jiri Slaby1c456072008-02-07 00:16:46 -08002051static void mxser_hangup(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052{
Jiri Slaby1c456072008-02-07 00:16:46 -08002053 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
2055 mxser_flush_buffer(tty);
Alan Cox216ba022008-10-13 10:40:19 +01002056 mxser_shutdown(tty);
Alan Cox3b6826b2009-01-02 13:45:58 +00002057 tty_port_hangup(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058}
2059
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060/*
2061 * mxser_rs_break() --- routine which turns the break handling on or off
2062 */
Alan Cox9e989662008-07-22 11:18:03 +01002063static int mxser_rs_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064{
Jiri Slaby1c456072008-02-07 00:16:46 -08002065 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 unsigned long flags;
2067
2068 spin_lock_irqsave(&info->slock, flags);
2069 if (break_state == -1)
Jiri Slaby1c456072008-02-07 00:16:46 -08002070 outb(inb(info->ioaddr + UART_LCR) | UART_LCR_SBC,
2071 info->ioaddr + UART_LCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 else
Jiri Slaby1c456072008-02-07 00:16:46 -08002073 outb(inb(info->ioaddr + UART_LCR) & ~UART_LCR_SBC,
2074 info->ioaddr + UART_LCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 spin_unlock_irqrestore(&info->slock, flags);
Alan Cox9e989662008-07-22 11:18:03 +01002076 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077}
2078
Alan Cox216ba022008-10-13 10:40:19 +01002079static void mxser_receive_chars(struct tty_struct *tty,
2080 struct mxser_port *port, int *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 unsigned char ch, gdl;
2083 int ignored = 0;
2084 int cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 int recv_room;
2086 int max = 256;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Alan Cox33f0f882006-01-09 20:54:13 -08002088 recv_room = tty->receive_room;
Alan Cox216ba022008-10-13 10:40:19 +01002089 if (recv_room == 0 && !port->ldisc_stop_rx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 mxser_stoprx(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08002091 if (port->board->chip_flag != MOXA_OTHER_UART) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
Jiri Slaby1c456072008-02-07 00:16:46 -08002093 if (*status & UART_LSR_SPECIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 goto intr_old;
Jiri Slaby1c456072008-02-07 00:16:46 -08002095 if (port->board->chip_flag == MOXA_MUST_MU860_HWID &&
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002096 (*status & MOXA_MUST_LSR_RERR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 goto intr_old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 if (*status & MOXA_MUST_LSR_RERR)
2099 goto intr_old;
2100
Jiri Slaby1c456072008-02-07 00:16:46 -08002101 gdl = inb(port->ioaddr + MOXA_MUST_GDL_REGISTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
Jiri Slaby1c456072008-02-07 00:16:46 -08002103 if (port->board->chip_flag == MOXA_MUST_MU150_HWID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 gdl &= MOXA_MUST_GDL_MASK;
2105 if (gdl >= recv_room) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002106 if (!port->ldisc_stop_rx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 mxser_stoprx(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 }
2109 while (gdl--) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002110 ch = inb(port->ioaddr + UART_RX);
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002111 tty_insert_flip_char(tty, ch, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 }
2114 goto end_intr;
2115 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002116intr_old:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118 do {
2119 if (max-- < 0)
2120 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
Jiri Slaby1c456072008-02-07 00:16:46 -08002122 ch = inb(port->ioaddr + UART_RX);
2123 if (port->board->chip_flag && (*status & UART_LSR_OE))
2124 outb(0x23, port->ioaddr + UART_FCR);
2125 *status &= port->read_status_mask;
2126 if (*status & port->ignore_status_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 if (++ignored > 100)
2128 break;
2129 } else {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002130 char flag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 if (*status & UART_LSR_SPECIAL) {
2132 if (*status & UART_LSR_BI) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002133 flag = TTY_BREAK;
Jiri Slaby1c456072008-02-07 00:16:46 -08002134 port->icount.brk++;
2135
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002136 if (port->port.flags & ASYNC_SAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 do_SAK(tty);
2138 } else if (*status & UART_LSR_PE) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002139 flag = TTY_PARITY;
Jiri Slaby1c456072008-02-07 00:16:46 -08002140 port->icount.parity++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 } else if (*status & UART_LSR_FE) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002142 flag = TTY_FRAME;
Jiri Slaby1c456072008-02-07 00:16:46 -08002143 port->icount.frame++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 } else if (*status & UART_LSR_OE) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002145 flag = TTY_OVERRUN;
Jiri Slaby1c456072008-02-07 00:16:46 -08002146 port->icount.overrun++;
2147 } else
2148 flag = TTY_BREAK;
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002149 }
2150 tty_insert_flip_char(tty, ch, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 cnt++;
2152 if (cnt >= recv_room) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002153 if (!port->ldisc_stop_rx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 mxser_stoprx(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 break;
2156 }
2157
2158 }
2159
Jiri Slaby1c456072008-02-07 00:16:46 -08002160 if (port->board->chip_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Jiri Slaby1c456072008-02-07 00:16:46 -08002163 *status = inb(port->ioaddr + UART_LSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 } while (*status & UART_LSR_DR);
2165
Jiri Slaby1c456072008-02-07 00:16:46 -08002166end_intr:
Alan Cox216ba022008-10-13 10:40:19 +01002167 mxvar_log.rxcnt[tty->index] += cnt;
Jiri Slaby1c456072008-02-07 00:16:46 -08002168 port->mon_data.rxcnt += cnt;
2169 port->mon_data.up_rxcnt += cnt;
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002170
Jiri Slaby1c456072008-02-07 00:16:46 -08002171 /*
2172 * We are called from an interrupt context with &port->slock
2173 * being held. Drop it temporarily in order to prevent
2174 * recursive locking.
2175 */
2176 spin_unlock(&port->slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 tty_flip_buffer_push(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08002178 spin_lock(&port->slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179}
2180
Alan Cox216ba022008-10-13 10:40:19 +01002181static void mxser_transmit_chars(struct tty_struct *tty, struct mxser_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182{
2183 int count, cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
Jiri Slaby1c456072008-02-07 00:16:46 -08002185 if (port->x_char) {
2186 outb(port->x_char, port->ioaddr + UART_TX);
2187 port->x_char = 0;
Alan Cox216ba022008-10-13 10:40:19 +01002188 mxvar_log.txcnt[tty->index]++;
Jiri Slaby1c456072008-02-07 00:16:46 -08002189 port->mon_data.txcnt++;
2190 port->mon_data.up_txcnt++;
2191 port->icount.tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 return;
2193 }
2194
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002195 if (port->port.xmit_buf == NULL)
Jiri Slaby1c456072008-02-07 00:16:46 -08002196 return;
2197
Alan Cox216ba022008-10-13 10:40:19 +01002198 if (port->xmit_cnt <= 0 || tty->stopped ||
2199 (tty->hw_stopped &&
Jiri Slaby1c456072008-02-07 00:16:46 -08002200 (port->type != PORT_16550A) &&
2201 (!port->board->chip_flag))) {
2202 port->IER &= ~UART_IER_THRI;
2203 outb(port->IER, port->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 return;
2205 }
2206
Jiri Slaby1c456072008-02-07 00:16:46 -08002207 cnt = port->xmit_cnt;
2208 count = port->xmit_fifo_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 do {
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002210 outb(port->port.xmit_buf[port->xmit_tail++],
Jiri Slaby1c456072008-02-07 00:16:46 -08002211 port->ioaddr + UART_TX);
2212 port->xmit_tail = port->xmit_tail & (SERIAL_XMIT_SIZE - 1);
2213 if (--port->xmit_cnt <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 break;
2215 } while (--count > 0);
Alan Cox216ba022008-10-13 10:40:19 +01002216 mxvar_log.txcnt[tty->index] += (cnt - port->xmit_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
Jiri Slaby1c456072008-02-07 00:16:46 -08002218 port->mon_data.txcnt += (cnt - port->xmit_cnt);
2219 port->mon_data.up_txcnt += (cnt - port->xmit_cnt);
2220 port->icount.tx += (cnt - port->xmit_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
Alan Cox216ba022008-10-13 10:40:19 +01002222 if (port->xmit_cnt < WAKEUP_CHARS && tty)
2223 tty_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
Jiri Slaby1c456072008-02-07 00:16:46 -08002225 if (port->xmit_cnt <= 0) {
2226 port->IER &= ~UART_IER_THRI;
2227 outb(port->IER, port->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229}
2230
2231/*
Jiri Slaby1c456072008-02-07 00:16:46 -08002232 * This is the serial driver's generic interrupt routine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 */
Jiri Slaby1c456072008-02-07 00:16:46 -08002234static irqreturn_t mxser_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235{
Jiri Slaby1c456072008-02-07 00:16:46 -08002236 int status, iir, i;
2237 struct mxser_board *brd = NULL;
2238 struct mxser_port *port;
2239 int max, irqbits, bits, msr;
2240 unsigned int int_cnt, pass_counter = 0;
2241 int handled = IRQ_NONE;
Alan Cox216ba022008-10-13 10:40:19 +01002242 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Jiri Slaby1c456072008-02-07 00:16:46 -08002244 for (i = 0; i < MXSER_BOARDS; i++)
2245 if (dev_id == &mxser_boards[i]) {
2246 brd = dev_id;
2247 break;
2248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
Jiri Slaby1c456072008-02-07 00:16:46 -08002250 if (i == MXSER_BOARDS)
2251 goto irq_stop;
2252 if (brd == NULL)
2253 goto irq_stop;
2254 max = brd->info->nports;
2255 while (pass_counter++ < MXSER_ISR_PASS_LIMIT) {
2256 irqbits = inb(brd->vector) & brd->vector_mask;
2257 if (irqbits == brd->vector_mask)
2258 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
Jiri Slaby1c456072008-02-07 00:16:46 -08002260 handled = IRQ_HANDLED;
2261 for (i = 0, bits = 1; i < max; i++, irqbits |= bits, bits <<= 1) {
2262 if (irqbits == brd->vector_mask)
2263 break;
2264 if (bits & irqbits)
2265 continue;
2266 port = &brd->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
Jiri Slaby1c456072008-02-07 00:16:46 -08002268 int_cnt = 0;
2269 spin_lock(&port->slock);
2270 do {
2271 iir = inb(port->ioaddr + UART_IIR);
2272 if (iir & UART_IIR_NO_INT)
2273 break;
2274 iir &= MOXA_MUST_IIR_MASK;
Alan Cox216ba022008-10-13 10:40:19 +01002275 tty = tty_port_tty_get(&port->port);
2276 if (!tty ||
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002277 (port->port.flags & ASYNC_CLOSING) ||
2278 !(port->port.flags &
Jiri Slaby1c456072008-02-07 00:16:46 -08002279 ASYNC_INITIALIZED)) {
2280 status = inb(port->ioaddr + UART_LSR);
2281 outb(0x27, port->ioaddr + UART_FCR);
2282 inb(port->ioaddr + UART_MSR);
Alan Cox216ba022008-10-13 10:40:19 +01002283 tty_kref_put(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08002284 break;
2285 }
2286
2287 status = inb(port->ioaddr + UART_LSR);
2288
2289 if (status & UART_LSR_PE)
2290 port->err_shadow |= NPPI_NOTIFY_PARITY;
2291 if (status & UART_LSR_FE)
2292 port->err_shadow |= NPPI_NOTIFY_FRAMING;
2293 if (status & UART_LSR_OE)
2294 port->err_shadow |=
2295 NPPI_NOTIFY_HW_OVERRUN;
2296 if (status & UART_LSR_BI)
2297 port->err_shadow |= NPPI_NOTIFY_BREAK;
2298
2299 if (port->board->chip_flag) {
2300 if (iir == MOXA_MUST_IIR_GDA ||
2301 iir == MOXA_MUST_IIR_RDA ||
2302 iir == MOXA_MUST_IIR_RTO ||
2303 iir == MOXA_MUST_IIR_LSR)
Alan Cox216ba022008-10-13 10:40:19 +01002304 mxser_receive_chars(tty, port,
Jiri Slaby1c456072008-02-07 00:16:46 -08002305 &status);
2306
2307 } else {
2308 status &= port->read_status_mask;
2309 if (status & UART_LSR_DR)
Alan Cox216ba022008-10-13 10:40:19 +01002310 mxser_receive_chars(tty, port,
Jiri Slaby1c456072008-02-07 00:16:46 -08002311 &status);
2312 }
2313 msr = inb(port->ioaddr + UART_MSR);
2314 if (msr & UART_MSR_ANY_DELTA)
Alan Cox216ba022008-10-13 10:40:19 +01002315 mxser_check_modem_status(tty, port, msr);
Jiri Slaby1c456072008-02-07 00:16:46 -08002316
2317 if (port->board->chip_flag) {
2318 if (iir == 0x02 && (status &
2319 UART_LSR_THRE))
Alan Cox216ba022008-10-13 10:40:19 +01002320 mxser_transmit_chars(tty, port);
Jiri Slaby1c456072008-02-07 00:16:46 -08002321 } else {
2322 if (status & UART_LSR_THRE)
Alan Cox216ba022008-10-13 10:40:19 +01002323 mxser_transmit_chars(tty, port);
Jiri Slaby1c456072008-02-07 00:16:46 -08002324 }
Alan Cox216ba022008-10-13 10:40:19 +01002325 tty_kref_put(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08002326 } while (int_cnt++ < MXSER_ISR_PASS_LIMIT);
2327 spin_unlock(&port->slock);
2328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 }
2330
Jiri Slaby1c456072008-02-07 00:16:46 -08002331irq_stop:
2332 return handled;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333}
2334
Jiri Slaby1c456072008-02-07 00:16:46 -08002335static const struct tty_operations mxser_ops = {
2336 .open = mxser_open,
2337 .close = mxser_close,
2338 .write = mxser_write,
2339 .put_char = mxser_put_char,
2340 .flush_chars = mxser_flush_chars,
2341 .write_room = mxser_write_room,
2342 .chars_in_buffer = mxser_chars_in_buffer,
2343 .flush_buffer = mxser_flush_buffer,
2344 .ioctl = mxser_ioctl,
2345 .throttle = mxser_throttle,
2346 .unthrottle = mxser_unthrottle,
2347 .set_termios = mxser_set_termios,
2348 .stop = mxser_stop,
2349 .start = mxser_start,
2350 .hangup = mxser_hangup,
2351 .break_ctl = mxser_rs_break,
2352 .wait_until_sent = mxser_wait_until_sent,
2353 .tiocmget = mxser_tiocmget,
2354 .tiocmset = mxser_tiocmset,
2355};
2356
Alan Cox31f35932009-01-02 13:45:05 +00002357struct tty_port_operations mxser_port_ops = {
2358 .carrier_raised = mxser_carrier_raised,
Alan Cox5d951fb2009-01-02 13:45:19 +00002359 .raise_dtr_rts = mxser_raise_dtr_rts,
Alan Cox31f35932009-01-02 13:45:05 +00002360};
2361
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362/*
Jiri Slaby1c456072008-02-07 00:16:46 -08002363 * The MOXA Smartio/Industio serial driver boot-time initialization code!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 */
Jiri Slaby1c456072008-02-07 00:16:46 -08002365
2366static void mxser_release_res(struct mxser_board *brd, struct pci_dev *pdev,
2367 unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368{
Jiri Slaby1c456072008-02-07 00:16:46 -08002369 if (irq)
2370 free_irq(brd->irq, brd);
2371 if (pdev != NULL) { /* PCI */
2372#ifdef CONFIG_PCI
2373 pci_release_region(pdev, 2);
2374 pci_release_region(pdev, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 } else {
Jiri Slaby1c456072008-02-07 00:16:46 -08002377 release_region(brd->ports[0].ioaddr, 8 * brd->info->nports);
2378 release_region(brd->vector, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380}
2381
Jiri Slaby1c456072008-02-07 00:16:46 -08002382static int __devinit mxser_initbrd(struct mxser_board *brd,
2383 struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384{
Jiri Slaby1c456072008-02-07 00:16:46 -08002385 struct mxser_port *info;
2386 unsigned int i;
2387 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
Jiri Slaby83766bc2008-07-25 01:48:21 -07002389 printk(KERN_INFO "mxser: max. baud rate = %d bps\n",
2390 brd->ports[0].max_baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
Jiri Slaby1c456072008-02-07 00:16:46 -08002392 for (i = 0; i < brd->info->nports; i++) {
2393 info = &brd->ports[i];
Alan Cox44b7d1b2008-07-16 21:57:18 +01002394 tty_port_init(&info->port);
Alan Cox31f35932009-01-02 13:45:05 +00002395 info->port.ops = &mxser_port_ops;
Jiri Slaby1c456072008-02-07 00:16:46 -08002396 info->board = brd;
2397 info->stop_rx = 0;
2398 info->ldisc_stop_rx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
Jiri Slaby1c456072008-02-07 00:16:46 -08002400 /* Enhance mode enabled here */
2401 if (brd->chip_flag != MOXA_OTHER_UART)
Christoph Hellwig148ff862008-04-30 00:54:29 -07002402 mxser_enable_must_enchance_mode(info->ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002404 info->port.flags = ASYNC_SHARE_IRQ;
Jiri Slaby1c456072008-02-07 00:16:46 -08002405 info->type = brd->uart_type;
2406
2407 process_txrx_fifo(info);
2408
2409 info->custom_divisor = info->baud_base * 16;
Alan Cox44b7d1b2008-07-16 21:57:18 +01002410 info->port.close_delay = 5 * HZ / 10;
2411 info->port.closing_wait = 30 * HZ;
Jiri Slaby1c456072008-02-07 00:16:46 -08002412 info->normal_termios = mxvar_sdriver->init_termios;
Jiri Slaby1c456072008-02-07 00:16:46 -08002413 init_waitqueue_head(&info->delta_msr_wait);
2414 memset(&info->mon_data, 0, sizeof(struct mxser_mon));
2415 info->err_shadow = 0;
2416 spin_lock_init(&info->slock);
2417
2418 /* before set INT ISR, disable all int */
2419 outb(inb(info->ioaddr + UART_IER) & 0xf0,
2420 info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 }
2422
Jiri Slaby1c456072008-02-07 00:16:46 -08002423 retval = request_irq(brd->irq, mxser_interrupt, IRQF_SHARED, "mxser",
2424 brd);
2425 if (retval) {
2426 printk(KERN_ERR "Board %s: Request irq failed, IRQ (%d) may "
2427 "conflict with another device.\n",
2428 brd->info->name, brd->irq);
2429 /* We hold resources, we need to release them. */
2430 mxser_release_res(brd, pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002432 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433}
2434
Jiri Slaby1c456072008-02-07 00:16:46 -08002435static int __init mxser_get_ISA_conf(int cap, struct mxser_board *brd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436{
2437 int id, i, bits;
2438 unsigned short regs[16], irq;
2439 unsigned char scratch, scratch2;
2440
Jiri Slaby1c456072008-02-07 00:16:46 -08002441 brd->chip_flag = MOXA_OTHER_UART;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
2443 id = mxser_read_register(cap, regs);
Jiri Slaby1c456072008-02-07 00:16:46 -08002444 switch (id) {
2445 case C168_ASIC_ID:
2446 brd->info = &mxser_cards[0];
2447 break;
2448 case C104_ASIC_ID:
2449 brd->info = &mxser_cards[1];
2450 break;
2451 case CI104J_ASIC_ID:
2452 brd->info = &mxser_cards[2];
2453 break;
2454 case C102_ASIC_ID:
2455 brd->info = &mxser_cards[5];
2456 break;
2457 case CI132_ASIC_ID:
2458 brd->info = &mxser_cards[6];
2459 break;
2460 case CI134_ASIC_ID:
2461 brd->info = &mxser_cards[7];
2462 break;
2463 default:
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002464 return 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08002465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
2467 irq = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08002468 /* some ISA cards have 2 ports, but we want to see them as 4-port (why?)
2469 Flag-hack checks if configuration should be read as 2-port here. */
2470 if (brd->info->nports == 2 || (brd->info->flags & MXSER_HAS2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 irq = regs[9] & 0xF000;
2472 irq = irq | (irq >> 4);
2473 if (irq != (regs[9] & 0xFF00))
Jiri Slaby83766bc2008-07-25 01:48:21 -07002474 goto err_irqconflict;
Jiri Slaby1c456072008-02-07 00:16:46 -08002475 } else if (brd->info->nports == 4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 irq = regs[9] & 0xF000;
2477 irq = irq | (irq >> 4);
2478 irq = irq | (irq >> 8);
2479 if (irq != regs[9])
Jiri Slaby83766bc2008-07-25 01:48:21 -07002480 goto err_irqconflict;
Jiri Slaby1c456072008-02-07 00:16:46 -08002481 } else if (brd->info->nports == 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 irq = regs[9] & 0xF000;
2483 irq = irq | (irq >> 4);
2484 irq = irq | (irq >> 8);
2485 if ((irq != regs[9]) || (irq != regs[10]))
Jiri Slaby83766bc2008-07-25 01:48:21 -07002486 goto err_irqconflict;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 }
2488
Jiri Slaby83766bc2008-07-25 01:48:21 -07002489 if (!irq) {
2490 printk(KERN_ERR "mxser: interrupt number unset\n");
2491 return -EIO;
2492 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002493 brd->irq = ((int)(irq & 0xF000) >> 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 for (i = 0; i < 8; i++)
Jiri Slaby1c456072008-02-07 00:16:46 -08002495 brd->ports[i].ioaddr = (int) regs[i + 1] & 0xFFF8;
Jiri Slaby83766bc2008-07-25 01:48:21 -07002496 if ((regs[12] & 0x80) == 0) {
2497 printk(KERN_ERR "mxser: invalid interrupt vector\n");
2498 return -EIO;
2499 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002500 brd->vector = (int)regs[11]; /* interrupt vector */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 if (id == 1)
Jiri Slaby1c456072008-02-07 00:16:46 -08002502 brd->vector_mask = 0x00FF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 else
Jiri Slaby1c456072008-02-07 00:16:46 -08002504 brd->vector_mask = 0x000F;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 for (i = 7, bits = 0x0100; i >= 0; i--, bits <<= 1) {
2506 if (regs[12] & bits) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002507 brd->ports[i].baud_base = 921600;
2508 brd->ports[i].max_baud = 921600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 } else {
Jiri Slaby1c456072008-02-07 00:16:46 -08002510 brd->ports[i].baud_base = 115200;
2511 brd->ports[i].max_baud = 115200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 }
2513 }
2514 scratch2 = inb(cap + UART_LCR) & (~UART_LCR_DLAB);
2515 outb(scratch2 | UART_LCR_DLAB, cap + UART_LCR);
2516 outb(0, cap + UART_EFR); /* EFR is the same as FCR */
2517 outb(scratch2, cap + UART_LCR);
2518 outb(UART_FCR_ENABLE_FIFO, cap + UART_FCR);
2519 scratch = inb(cap + UART_IIR);
2520
2521 if (scratch & 0xC0)
Jiri Slaby1c456072008-02-07 00:16:46 -08002522 brd->uart_type = PORT_16550A;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 else
Jiri Slaby1c456072008-02-07 00:16:46 -08002524 brd->uart_type = PORT_16450;
2525 if (!request_region(brd->ports[0].ioaddr, 8 * brd->info->nports,
Jiri Slaby83766bc2008-07-25 01:48:21 -07002526 "mxser(IO)")) {
2527 printk(KERN_ERR "mxser: can't request ports I/O region: "
2528 "0x%.8lx-0x%.8lx\n",
2529 brd->ports[0].ioaddr, brd->ports[0].ioaddr +
2530 8 * brd->info->nports - 1);
2531 return -EIO;
2532 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002533 if (!request_region(brd->vector, 1, "mxser(vector)")) {
2534 release_region(brd->ports[0].ioaddr, 8 * brd->info->nports);
Jiri Slaby83766bc2008-07-25 01:48:21 -07002535 printk(KERN_ERR "mxser: can't request interrupt vector region: "
2536 "0x%.8lx-0x%.8lx\n",
2537 brd->ports[0].ioaddr, brd->ports[0].ioaddr +
2538 8 * brd->info->nports - 1);
2539 return -EIO;
Jiri Slaby1c456072008-02-07 00:16:46 -08002540 }
2541 return brd->info->nports;
Jiri Slaby83766bc2008-07-25 01:48:21 -07002542
2543err_irqconflict:
2544 printk(KERN_ERR "mxser: invalid interrupt number\n");
2545 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546}
2547
Jiri Slaby1c456072008-02-07 00:16:46 -08002548static int __devinit mxser_probe(struct pci_dev *pdev,
2549 const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550{
Jiri Slaby1c456072008-02-07 00:16:46 -08002551#ifdef CONFIG_PCI
2552 struct mxser_board *brd;
2553 unsigned int i, j;
2554 unsigned long ioaddress;
2555 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
Jiri Slaby1c456072008-02-07 00:16:46 -08002557 for (i = 0; i < MXSER_BOARDS; i++)
2558 if (mxser_boards[i].info == NULL)
2559 break;
2560
2561 if (i >= MXSER_BOARDS) {
Jiri Slaby83766bc2008-07-25 01:48:21 -07002562 dev_err(&pdev->dev, "too many boards found (maximum %d), board "
2563 "not configured\n", MXSER_BOARDS);
Jiri Slaby1c456072008-02-07 00:16:46 -08002564 goto err;
2565 }
2566
2567 brd = &mxser_boards[i];
2568 brd->idx = i * MXSER_PORTS_PER_BOARD;
Jiri Slaby83766bc2008-07-25 01:48:21 -07002569 dev_info(&pdev->dev, "found MOXA %s board (BusNo=%d, DevNo=%d)\n",
Jiri Slaby1c456072008-02-07 00:16:46 -08002570 mxser_cards[ent->driver_data].name,
2571 pdev->bus->number, PCI_SLOT(pdev->devfn));
2572
2573 retval = pci_enable_device(pdev);
2574 if (retval) {
Jiri Slaby83766bc2008-07-25 01:48:21 -07002575 dev_err(&pdev->dev, "PCI enable failed\n");
Jiri Slaby1c456072008-02-07 00:16:46 -08002576 goto err;
2577 }
2578
2579 /* io address */
2580 ioaddress = pci_resource_start(pdev, 2);
2581 retval = pci_request_region(pdev, 2, "mxser(IO)");
2582 if (retval)
2583 goto err;
2584
2585 brd->info = &mxser_cards[ent->driver_data];
2586 for (i = 0; i < brd->info->nports; i++)
2587 brd->ports[i].ioaddr = ioaddress + 8 * i;
2588
2589 /* vector */
2590 ioaddress = pci_resource_start(pdev, 3);
2591 retval = pci_request_region(pdev, 3, "mxser(vector)");
2592 if (retval)
2593 goto err_relio;
2594 brd->vector = ioaddress;
2595
2596 /* irq */
2597 brd->irq = pdev->irq;
2598
2599 brd->chip_flag = CheckIsMoxaMust(brd->ports[0].ioaddr);
2600 brd->uart_type = PORT_16550A;
2601 brd->vector_mask = 0;
2602
2603 for (i = 0; i < brd->info->nports; i++) {
2604 for (j = 0; j < UART_INFO_NUM; j++) {
2605 if (Gpci_uart_info[j].type == brd->chip_flag) {
2606 brd->ports[i].max_baud =
2607 Gpci_uart_info[j].max_baud;
2608
2609 /* exception....CP-102 */
2610 if (brd->info->flags & MXSER_HIGHBAUD)
2611 brd->ports[i].max_baud = 921600;
2612 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 }
2614 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002615 }
2616
2617 if (brd->chip_flag == MOXA_MUST_MU860_HWID) {
2618 for (i = 0; i < brd->info->nports; i++) {
2619 if (i < 4)
2620 brd->ports[i].opmode_ioaddr = ioaddress + 4;
2621 else
2622 brd->ports[i].opmode_ioaddr = ioaddress + 0x0c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002624 outb(0, ioaddress + 4); /* default set to RS232 mode */
2625 outb(0, ioaddress + 0x0c); /* default set to RS232 mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002627
2628 for (i = 0; i < brd->info->nports; i++) {
2629 brd->vector_mask |= (1 << i);
2630 brd->ports[i].baud_base = 921600;
2631 }
2632
2633 /* mxser_initbrd will hook ISR. */
2634 retval = mxser_initbrd(brd, pdev);
2635 if (retval)
2636 goto err_null;
2637
2638 for (i = 0; i < brd->info->nports; i++)
2639 tty_register_device(mxvar_sdriver, brd->idx + i, &pdev->dev);
2640
2641 pci_set_drvdata(pdev, brd);
2642
2643 return 0;
2644err_relio:
2645 pci_release_region(pdev, 2);
2646err_null:
2647 brd->info = NULL;
2648err:
2649 return retval;
2650#else
2651 return -ENODEV;
2652#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653}
2654
Jiri Slaby1c456072008-02-07 00:16:46 -08002655static void __devexit mxser_remove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656{
Jiri Slaby1c456072008-02-07 00:16:46 -08002657 struct mxser_board *brd = pci_get_drvdata(pdev);
2658 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
Jiri Slaby1c456072008-02-07 00:16:46 -08002660 for (i = 0; i < brd->info->nports; i++)
2661 tty_unregister_device(mxvar_sdriver, brd->idx + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
Jiri Slaby1c456072008-02-07 00:16:46 -08002663 mxser_release_res(brd, pdev, 1);
2664 brd->info = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665}
2666
Jiri Slaby1c456072008-02-07 00:16:46 -08002667static struct pci_driver mxser_driver = {
2668 .name = "mxser",
2669 .id_table = mxser_pcibrds,
2670 .probe = mxser_probe,
2671 .remove = __devexit_p(mxser_remove)
2672};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673
Jiri Slaby1c456072008-02-07 00:16:46 -08002674static int __init mxser_module_init(void)
2675{
2676 struct mxser_board *brd;
Jiri Slaby1df00922008-07-25 01:48:22 -07002677 unsigned int b, i, m;
2678 int retval;
Jiri Slaby1c456072008-02-07 00:16:46 -08002679
Jiri Slaby1c456072008-02-07 00:16:46 -08002680 mxvar_sdriver = alloc_tty_driver(MXSER_PORTS + 1);
2681 if (!mxvar_sdriver)
2682 return -ENOMEM;
2683
2684 printk(KERN_INFO "MOXA Smartio/Industio family driver version %s\n",
2685 MXSER_VERSION);
2686
2687 /* Initialize the tty_driver structure */
2688 mxvar_sdriver->owner = THIS_MODULE;
2689 mxvar_sdriver->magic = TTY_DRIVER_MAGIC;
2690 mxvar_sdriver->name = "ttyMI";
2691 mxvar_sdriver->major = ttymajor;
2692 mxvar_sdriver->minor_start = 0;
2693 mxvar_sdriver->num = MXSER_PORTS + 1;
2694 mxvar_sdriver->type = TTY_DRIVER_TYPE_SERIAL;
2695 mxvar_sdriver->subtype = SERIAL_TYPE_NORMAL;
2696 mxvar_sdriver->init_termios = tty_std_termios;
2697 mxvar_sdriver->init_termios.c_cflag = B9600|CS8|CREAD|HUPCL|CLOCAL;
2698 mxvar_sdriver->flags = TTY_DRIVER_REAL_RAW|TTY_DRIVER_DYNAMIC_DEV;
2699 tty_set_operations(mxvar_sdriver, &mxser_ops);
2700
2701 retval = tty_register_driver(mxvar_sdriver);
2702 if (retval) {
2703 printk(KERN_ERR "Couldn't install MOXA Smartio/Industio family "
2704 "tty driver !\n");
2705 goto err_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002707
Jiri Slaby1c456072008-02-07 00:16:46 -08002708 /* Start finding ISA boards here */
Jiri Slaby1df00922008-07-25 01:48:22 -07002709 for (m = 0, b = 0; b < MXSER_BOARDS; b++) {
2710 if (!ioaddr[b])
2711 continue;
Jiri Slaby1c456072008-02-07 00:16:46 -08002712
Jiri Slaby1df00922008-07-25 01:48:22 -07002713 brd = &mxser_boards[m];
Peter Botha96050df2009-06-09 17:16:32 -07002714 retval = mxser_get_ISA_conf(ioaddr[b], brd);
Jiri Slaby1df00922008-07-25 01:48:22 -07002715 if (retval <= 0) {
2716 brd->info = NULL;
2717 continue;
Jiri Slaby1c456072008-02-07 00:16:46 -08002718 }
2719
Jiri Slaby1df00922008-07-25 01:48:22 -07002720 printk(KERN_INFO "mxser: found MOXA %s board (CAP=0x%lx)\n",
2721 brd->info->name, ioaddr[b]);
2722
2723 /* mxser_initbrd will hook ISR. */
2724 if (mxser_initbrd(brd, NULL) < 0) {
2725 brd->info = NULL;
2726 continue;
2727 }
2728
2729 brd->idx = m * MXSER_PORTS_PER_BOARD;
2730 for (i = 0; i < brd->info->nports; i++)
2731 tty_register_device(mxvar_sdriver, brd->idx + i, NULL);
2732
2733 m++;
2734 }
2735
Jiri Slaby1c456072008-02-07 00:16:46 -08002736 retval = pci_register_driver(&mxser_driver);
2737 if (retval) {
Jiri Slaby83766bc2008-07-25 01:48:21 -07002738 printk(KERN_ERR "mxser: can't register pci driver\n");
Jiri Slaby1c456072008-02-07 00:16:46 -08002739 if (!m) {
2740 retval = -ENODEV;
2741 goto err_unr;
2742 } /* else: we have some ISA cards under control */
2743 }
2744
Jiri Slaby1c456072008-02-07 00:16:46 -08002745 return 0;
2746err_unr:
2747 tty_unregister_driver(mxvar_sdriver);
2748err_put:
2749 put_tty_driver(mxvar_sdriver);
2750 return retval;
2751}
2752
2753static void __exit mxser_module_exit(void)
2754{
2755 unsigned int i, j;
2756
Jiri Slaby1c456072008-02-07 00:16:46 -08002757 pci_unregister_driver(&mxser_driver);
2758
2759 for (i = 0; i < MXSER_BOARDS; i++) /* ISA remains */
2760 if (mxser_boards[i].info != NULL)
2761 for (j = 0; j < mxser_boards[i].info->nports; j++)
2762 tty_unregister_device(mxvar_sdriver,
2763 mxser_boards[i].idx + j);
2764 tty_unregister_driver(mxvar_sdriver);
2765 put_tty_driver(mxvar_sdriver);
2766
2767 for (i = 0; i < MXSER_BOARDS; i++)
2768 if (mxser_boards[i].info != NULL)
2769 mxser_release_res(&mxser_boards[i], NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770}
2771
2772module_init(mxser_module_init);
2773module_exit(mxser_module_exit);