blob: 37058ff7da7d72e2597fe053563e46e31a49a31d [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>
Alexey Dobriyan405f5572009-07-11 22:08:37 +040026#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/timer.h>
28#include <linux/interrupt.h>
29#include <linux/tty.h>
30#include <linux/tty_flip.h>
31#include <linux/serial.h>
32#include <linux/serial_reg.h>
33#include <linux/major.h>
34#include <linux/string.h>
35#include <linux/fcntl.h>
36#include <linux/ptrace.h>
37#include <linux/gfp.h>
38#include <linux/ioport.h>
39#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/delay.h>
41#include <linux/pci.h>
Jiri Slaby1977f032007-10-18 23:40:25 -070042#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#include <asm/system.h>
45#include <asm/io.h>
46#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/uaccess.h>
48
49#include "mxser.h"
50
Jiri Slabye129def2008-07-22 11:20:34 +010051#define MXSER_VERSION "2.0.4" /* 1.12 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define MXSERMAJOR 174
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define MXSER_BOARDS 4 /* Max. boards */
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define MXSER_PORTS_PER_BOARD 8 /* Max. ports per board */
Jiri Slaby1c456072008-02-07 00:16:46 -080056#define MXSER_PORTS (MXSER_BOARDS * MXSER_PORTS_PER_BOARD)
57#define MXSER_ISR_PASS_LIMIT 100
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Jiri Slaby1c456072008-02-07 00:16:46 -080059/*CheckIsMoxaMust return value*/
60#define MOXA_OTHER_UART 0x00
61#define MOXA_MUST_MU150_HWID 0x01
62#define MOXA_MUST_MU860_HWID 0x02
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define WAKEUP_CHARS 256
65
66#define UART_MCR_AFE 0x20
67#define UART_LSR_SPECIAL 0x1E
68
Jiri Slabye129def2008-07-22 11:20:34 +010069#define PCI_DEVICE_ID_POS104UL 0x1044
Jiri Slaby1c456072008-02-07 00:16:46 -080070#define PCI_DEVICE_ID_CB108 0x1080
Jiri Slabye129def2008-07-22 11:20:34 +010071#define PCI_DEVICE_ID_CP102UF 0x1023
Jiri Slaby1c456072008-02-07 00:16:46 -080072#define PCI_DEVICE_ID_CB114 0x1142
Jiri Slaby80ff8a82008-02-07 00:16:51 -080073#define PCI_DEVICE_ID_CP114UL 0x1143
Jiri Slaby1c456072008-02-07 00:16:46 -080074#define PCI_DEVICE_ID_CB134I 0x1341
75#define PCI_DEVICE_ID_CP138U 0x1380
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78#define C168_ASIC_ID 1
79#define C104_ASIC_ID 2
80#define C102_ASIC_ID 0xB
81#define CI132_ASIC_ID 4
82#define CI134_ASIC_ID 3
83#define CI104J_ASIC_ID 5
84
Jiri Slaby1c456072008-02-07 00:16:46 -080085#define MXSER_HIGHBAUD 1
86#define MXSER_HAS2 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -070088/* This is only for PCI */
Jiri Slaby1c456072008-02-07 00:16:46 -080089static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 int type;
91 int tx_fifo;
92 int rx_fifo;
93 int xmit_fifo_size;
94 int rx_high_water;
95 int rx_trigger;
96 int rx_low_water;
97 long max_baud;
Jiri Slaby1c456072008-02-07 00:16:46 -080098} Gpci_uart_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 {MOXA_OTHER_UART, 16, 16, 16, 14, 14, 1, 921600L},
100 {MOXA_MUST_MU150_HWID, 64, 64, 64, 48, 48, 16, 230400L},
101 {MOXA_MUST_MU860_HWID, 128, 128, 128, 96, 96, 32, 921600L}
102};
Jiri Slaby1c456072008-02-07 00:16:46 -0800103#define UART_INFO_NUM ARRAY_SIZE(Gpci_uart_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Jiri Slaby1c456072008-02-07 00:16:46 -0800105struct mxser_cardinfo {
106 char *name;
107 unsigned int nports;
108 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109};
110
Jiri Slaby1c456072008-02-07 00:16:46 -0800111static const struct mxser_cardinfo mxser_cards[] = {
112/* 0*/ { "C168 series", 8, },
113 { "C104 series", 4, },
114 { "CI-104J series", 4, },
115 { "C168H/PCI series", 8, },
116 { "C104H/PCI series", 4, },
117/* 5*/ { "C102 series", 4, MXSER_HAS2 }, /* C102-ISA */
118 { "CI-132 series", 4, MXSER_HAS2 },
119 { "CI-134 series", 4, },
120 { "CP-132 series", 2, },
121 { "CP-114 series", 4, },
122/*10*/ { "CT-114 series", 4, },
123 { "CP-102 series", 2, MXSER_HIGHBAUD },
124 { "CP-104U series", 4, },
125 { "CP-168U series", 8, },
126 { "CP-132U series", 2, },
127/*15*/ { "CP-134U series", 4, },
128 { "CP-104JU series", 4, },
129 { "Moxa UC7000 Serial", 8, }, /* RC7000 */
130 { "CP-118U series", 8, },
131 { "CP-102UL series", 2, },
132/*20*/ { "CP-102U series", 2, },
133 { "CP-118EL series", 8, },
134 { "CP-168EL series", 8, },
135 { "CP-104EL series", 4, },
136 { "CB-108 series", 8, },
137/*25*/ { "CB-114 series", 4, },
138 { "CB-134I series", 4, },
139 { "CP-138U series", 8, },
Jiri Slaby80ff8a82008-02-07 00:16:51 -0800140 { "POS-104UL series", 4, },
Jiri Slabye129def2008-07-22 11:20:34 +0100141 { "CP-114UL series", 4, },
142/*30*/ { "CP-102UF series", 2, }
Jiri Slaby1c456072008-02-07 00:16:46 -0800143};
144
145/* driver_data correspond to the lines in the structure above
146 see also ISA probe function before you change something */
147static struct pci_device_id mxser_pcibrds[] = {
148 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_C168), .driver_data = 3 },
149 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_C104), .driver_data = 4 },
150 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP132), .driver_data = 8 },
151 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP114), .driver_data = 9 },
152 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CT114), .driver_data = 10 },
153 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP102), .driver_data = 11 },
154 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP104U), .driver_data = 12 },
155 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP168U), .driver_data = 13 },
156 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP132U), .driver_data = 14 },
157 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP134U), .driver_data = 15 },
158 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP104JU),.driver_data = 16 },
159 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_RC7000), .driver_data = 17 },
160 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP118U), .driver_data = 18 },
161 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP102UL),.driver_data = 19 },
162 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP102U), .driver_data = 20 },
163 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP118EL),.driver_data = 21 },
164 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP168EL),.driver_data = 22 },
165 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP104EL),.driver_data = 23 },
166 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CB108), .driver_data = 24 },
167 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CB114), .driver_data = 25 },
168 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CB134I), .driver_data = 26 },
169 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CP138U), .driver_data = 27 },
170 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_POS104UL), .driver_data = 28 },
Jiri Slaby80ff8a82008-02-07 00:16:51 -0800171 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CP114UL), .driver_data = 29 },
Jiri Slabye129def2008-07-22 11:20:34 +0100172 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CP102UF), .driver_data = 30 },
Jiri Slaby1c456072008-02-07 00:16:46 -0800173 { }
174};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175MODULE_DEVICE_TABLE(pci, mxser_pcibrds);
176
Jiri Slaby1df00922008-07-25 01:48:22 -0700177static unsigned long ioaddr[MXSER_BOARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178static int ttymajor = MXSERMAJOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180/* Variables for insmod */
181
182MODULE_AUTHOR("Casper Yang");
183MODULE_DESCRIPTION("MOXA Smartio/Industio Family Multiport Board Device Driver");
Jiri Slaby1df00922008-07-25 01:48:22 -0700184module_param_array(ioaddr, ulong, NULL, 0);
185MODULE_PARM_DESC(ioaddr, "ISA io addresses to look for a moxa board");
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800186module_param(ttymajor, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187MODULE_LICENSE("GPL");
188
189struct mxser_log {
190 int tick;
191 unsigned long rxcnt[MXSER_PORTS];
192 unsigned long txcnt[MXSER_PORTS];
193};
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195struct mxser_mon {
196 unsigned long rxcnt;
197 unsigned long txcnt;
198 unsigned long up_rxcnt;
199 unsigned long up_txcnt;
200 int modem_status;
201 unsigned char hold_reason;
202};
203
204struct mxser_mon_ext {
205 unsigned long rx_cnt[32];
206 unsigned long tx_cnt[32];
207 unsigned long up_rxcnt[32];
208 unsigned long up_txcnt[32];
209 int modem_status[32];
210
211 long baudrate[32];
212 int databits[32];
213 int stopbits[32];
214 int parity[32];
215 int flowctrl[32];
216 int fifo[32];
217 int iftype[32];
218};
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700219
Jiri Slaby1c456072008-02-07 00:16:46 -0800220struct mxser_board;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Jiri Slaby1c456072008-02-07 00:16:46 -0800222struct mxser_port {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100223 struct tty_port port;
Jiri Slaby1c456072008-02-07 00:16:46 -0800224 struct mxser_board *board;
Jiri Slaby1c456072008-02-07 00:16:46 -0800225
226 unsigned long ioaddr;
227 unsigned long opmode_ioaddr;
228 int max_baud;
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 int rx_high_water;
231 int rx_trigger; /* Rx fifo trigger level */
232 int rx_low_water;
233 int baud_base; /* max. speed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 int type; /* UART type */
Jiri Slaby1c456072008-02-07 00:16:46 -0800235
236 int x_char; /* xon/xoff character */
237 int IER; /* Interrupt Enable Register */
238 int MCR; /* Modem control register */
239
240 unsigned char stop_rx;
241 unsigned char ldisc_stop_rx;
242
243 int custom_divisor;
Jiri Slaby1c456072008-02-07 00:16:46 -0800244 unsigned char err_shadow;
Jiri Slaby1c456072008-02-07 00:16:46 -0800245
Jiri Slaby1c456072008-02-07 00:16:46 -0800246 struct async_icount icount; /* kernel counters for 4 input interrupts */
247 int timeout;
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 int read_status_mask;
250 int ignore_status_mask;
251 int xmit_fifo_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 int xmit_head;
253 int xmit_tail;
254 int xmit_cnt;
Jiri Slaby1c456072008-02-07 00:16:46 -0800255
Alan Cox606d0992006-12-08 02:38:45 -0800256 struct ktermios normal_termios;
Jiri Slaby1c456072008-02-07 00:16:46 -0800257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 struct mxser_mon mon_data;
Jiri Slaby1c456072008-02-07 00:16:46 -0800259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 spinlock_t slock;
Jiri Slaby1c456072008-02-07 00:16:46 -0800261};
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 Coxfcc8ac12009-06-11 12:24:17 +0100550static void mxser_dtr_rts(struct tty_port *port, int on)
Alan Cox5d951fb2009-01-02 13:45:19 +0000551{
552 struct mxser_port *mp = container_of(port, struct mxser_port, port);
553 unsigned long flags;
554
555 spin_lock_irqsave(&mp->slock, flags);
Alan Coxfcc8ac12009-06-11 12:24:17 +0100556 if (on)
557 outb(inb(mp->ioaddr + UART_MCR) |
558 UART_MCR_DTR | UART_MCR_RTS, mp->ioaddr + UART_MCR);
559 else
560 outb(inb(mp->ioaddr + UART_MCR)&~(UART_MCR_DTR | UART_MCR_RTS),
561 mp->ioaddr + UART_MCR);
Alan Cox5d951fb2009-01-02 13:45:19 +0000562 spin_unlock_irqrestore(&mp->slock, flags);
563}
564
Alan Cox216ba022008-10-13 10:40:19 +0100565static int mxser_set_baud(struct tty_struct *tty, long newspd)
Jiri Slaby1c456072008-02-07 00:16:46 -0800566{
Alan Cox216ba022008-10-13 10:40:19 +0100567 struct mxser_port *info = tty->driver_data;
Jiri Slaby1c456072008-02-07 00:16:46 -0800568 int quot = 0, baud;
569 unsigned char cval;
570
Alan Cox216ba022008-10-13 10:40:19 +0100571 if (!info->ioaddr)
Jiri Slaby1c456072008-02-07 00:16:46 -0800572 return -1;
573
574 if (newspd > info->max_baud)
575 return -1;
576
577 if (newspd == 134) {
578 quot = 2 * info->baud_base / 269;
Alan Cox216ba022008-10-13 10:40:19 +0100579 tty_encode_baud_rate(tty, 134, 134);
Jiri Slaby1c456072008-02-07 00:16:46 -0800580 } else if (newspd) {
581 quot = info->baud_base / newspd;
582 if (quot == 0)
583 quot = 1;
584 baud = info->baud_base/quot;
Alan Cox216ba022008-10-13 10:40:19 +0100585 tty_encode_baud_rate(tty, baud, baud);
Jiri Slaby1c456072008-02-07 00:16:46 -0800586 } else {
587 quot = 0;
588 }
589
590 info->timeout = ((info->xmit_fifo_size * HZ * 10 * quot) / info->baud_base);
591 info->timeout += HZ / 50; /* Add .02 seconds of slop */
592
593 if (quot) {
594 info->MCR |= UART_MCR_DTR;
595 outb(info->MCR, info->ioaddr + UART_MCR);
596 } else {
597 info->MCR &= ~UART_MCR_DTR;
598 outb(info->MCR, info->ioaddr + UART_MCR);
599 return 0;
600 }
601
602 cval = inb(info->ioaddr + UART_LCR);
603
604 outb(cval | UART_LCR_DLAB, info->ioaddr + UART_LCR); /* set DLAB */
605
606 outb(quot & 0xff, info->ioaddr + UART_DLL); /* LS of divisor */
607 outb(quot >> 8, info->ioaddr + UART_DLM); /* MS of divisor */
608 outb(cval, info->ioaddr + UART_LCR); /* reset DLAB */
609
610#ifdef BOTHER
Alan Cox216ba022008-10-13 10:40:19 +0100611 if (C_BAUD(tty) == BOTHER) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800612 quot = info->baud_base % newspd;
613 quot *= 8;
614 if (quot % newspd > newspd / 2) {
615 quot /= newspd;
616 quot++;
617 } else
618 quot /= newspd;
619
Christoph Hellwig148ff862008-04-30 00:54:29 -0700620 mxser_set_must_enum_value(info->ioaddr, quot);
Jiri Slaby1c456072008-02-07 00:16:46 -0800621 } else
622#endif
Christoph Hellwig148ff862008-04-30 00:54:29 -0700623 mxser_set_must_enum_value(info->ioaddr, 0);
Jiri Slaby1c456072008-02-07 00:16:46 -0800624
625 return 0;
626}
627
628/*
629 * This routine is called to set the UART divisor registers to match
630 * the specified baud rate for a serial port.
631 */
Alan Cox216ba022008-10-13 10:40:19 +0100632static int mxser_change_speed(struct tty_struct *tty,
633 struct ktermios *old_termios)
Jiri Slaby1c456072008-02-07 00:16:46 -0800634{
Alan Cox216ba022008-10-13 10:40:19 +0100635 struct mxser_port *info = tty->driver_data;
Jiri Slaby1c456072008-02-07 00:16:46 -0800636 unsigned cflag, cval, fcr;
637 int ret = 0;
638 unsigned char status;
639
Alan Cox216ba022008-10-13 10:40:19 +0100640 cflag = tty->termios->c_cflag;
641 if (!info->ioaddr)
Jiri Slaby1c456072008-02-07 00:16:46 -0800642 return ret;
643
Alan Cox216ba022008-10-13 10:40:19 +0100644 if (mxser_set_baud_method[tty->index] == 0)
645 mxser_set_baud(tty, tty_get_baud_rate(tty));
Jiri Slaby1c456072008-02-07 00:16:46 -0800646
647 /* byte size and parity */
648 switch (cflag & CSIZE) {
649 case CS5:
650 cval = 0x00;
651 break;
652 case CS6:
653 cval = 0x01;
654 break;
655 case CS7:
656 cval = 0x02;
657 break;
658 case CS8:
659 cval = 0x03;
660 break;
661 default:
662 cval = 0x00;
663 break; /* too keep GCC shut... */
664 }
665 if (cflag & CSTOPB)
666 cval |= 0x04;
667 if (cflag & PARENB)
668 cval |= UART_LCR_PARITY;
669 if (!(cflag & PARODD))
670 cval |= UART_LCR_EPAR;
671 if (cflag & CMSPAR)
672 cval |= UART_LCR_SPAR;
673
674 if ((info->type == PORT_8250) || (info->type == PORT_16450)) {
675 if (info->board->chip_flag) {
676 fcr = UART_FCR_ENABLE_FIFO;
677 fcr |= MOXA_MUST_FCR_GDA_MODE_ENABLE;
Christoph Hellwig148ff862008-04-30 00:54:29 -0700678 mxser_set_must_fifo_value(info);
Jiri Slaby1c456072008-02-07 00:16:46 -0800679 } else
680 fcr = 0;
681 } else {
682 fcr = UART_FCR_ENABLE_FIFO;
683 if (info->board->chip_flag) {
684 fcr |= MOXA_MUST_FCR_GDA_MODE_ENABLE;
Christoph Hellwig148ff862008-04-30 00:54:29 -0700685 mxser_set_must_fifo_value(info);
Jiri Slaby1c456072008-02-07 00:16:46 -0800686 } else {
687 switch (info->rx_trigger) {
688 case 1:
689 fcr |= UART_FCR_TRIGGER_1;
690 break;
691 case 4:
692 fcr |= UART_FCR_TRIGGER_4;
693 break;
694 case 8:
695 fcr |= UART_FCR_TRIGGER_8;
696 break;
697 default:
698 fcr |= UART_FCR_TRIGGER_14;
699 break;
700 }
701 }
702 }
703
704 /* CTS flow control flag and modem status interrupts */
705 info->IER &= ~UART_IER_MSI;
706 info->MCR &= ~UART_MCR_AFE;
707 if (cflag & CRTSCTS) {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100708 info->port.flags |= ASYNC_CTS_FLOW;
Jiri Slaby1c456072008-02-07 00:16:46 -0800709 info->IER |= UART_IER_MSI;
710 if ((info->type == PORT_16550A) || (info->board->chip_flag)) {
711 info->MCR |= UART_MCR_AFE;
712 } else {
713 status = inb(info->ioaddr + UART_MSR);
Alan Cox216ba022008-10-13 10:40:19 +0100714 if (tty->hw_stopped) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800715 if (status & UART_MSR_CTS) {
Alan Cox216ba022008-10-13 10:40:19 +0100716 tty->hw_stopped = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -0800717 if (info->type != PORT_16550A &&
718 !info->board->chip_flag) {
719 outb(info->IER & ~UART_IER_THRI,
720 info->ioaddr +
721 UART_IER);
722 info->IER |= UART_IER_THRI;
723 outb(info->IER, info->ioaddr +
724 UART_IER);
725 }
Alan Cox216ba022008-10-13 10:40:19 +0100726 tty_wakeup(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -0800727 }
728 } else {
729 if (!(status & UART_MSR_CTS)) {
Alan Cox216ba022008-10-13 10:40:19 +0100730 tty->hw_stopped = 1;
Jiri Slaby1c456072008-02-07 00:16:46 -0800731 if ((info->type != PORT_16550A) &&
732 (!info->board->chip_flag)) {
733 info->IER &= ~UART_IER_THRI;
734 outb(info->IER, info->ioaddr +
735 UART_IER);
736 }
737 }
738 }
739 }
740 } else {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100741 info->port.flags &= ~ASYNC_CTS_FLOW;
Jiri Slaby1c456072008-02-07 00:16:46 -0800742 }
743 outb(info->MCR, info->ioaddr + UART_MCR);
744 if (cflag & CLOCAL) {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100745 info->port.flags &= ~ASYNC_CHECK_CD;
Jiri Slaby1c456072008-02-07 00:16:46 -0800746 } else {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100747 info->port.flags |= ASYNC_CHECK_CD;
Jiri Slaby1c456072008-02-07 00:16:46 -0800748 info->IER |= UART_IER_MSI;
749 }
750 outb(info->IER, info->ioaddr + UART_IER);
751
752 /*
753 * Set up parity check flag
754 */
755 info->read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
Alan Cox216ba022008-10-13 10:40:19 +0100756 if (I_INPCK(tty))
Jiri Slaby1c456072008-02-07 00:16:46 -0800757 info->read_status_mask |= UART_LSR_FE | UART_LSR_PE;
Alan Cox216ba022008-10-13 10:40:19 +0100758 if (I_BRKINT(tty) || I_PARMRK(tty))
Jiri Slaby1c456072008-02-07 00:16:46 -0800759 info->read_status_mask |= UART_LSR_BI;
760
761 info->ignore_status_mask = 0;
762
Alan Cox216ba022008-10-13 10:40:19 +0100763 if (I_IGNBRK(tty)) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800764 info->ignore_status_mask |= UART_LSR_BI;
765 info->read_status_mask |= UART_LSR_BI;
766 /*
767 * If we're ignore parity and break indicators, ignore
768 * overruns too. (For real raw support).
769 */
Alan Cox216ba022008-10-13 10:40:19 +0100770 if (I_IGNPAR(tty)) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800771 info->ignore_status_mask |=
772 UART_LSR_OE |
773 UART_LSR_PE |
774 UART_LSR_FE;
775 info->read_status_mask |=
776 UART_LSR_OE |
777 UART_LSR_PE |
778 UART_LSR_FE;
779 }
780 }
781 if (info->board->chip_flag) {
Alan Cox216ba022008-10-13 10:40:19 +0100782 mxser_set_must_xon1_value(info->ioaddr, START_CHAR(tty));
783 mxser_set_must_xoff1_value(info->ioaddr, STOP_CHAR(tty));
784 if (I_IXON(tty)) {
Christoph Hellwig148ff862008-04-30 00:54:29 -0700785 mxser_enable_must_rx_software_flow_control(
786 info->ioaddr);
Jiri Slaby1c456072008-02-07 00:16:46 -0800787 } else {
Christoph Hellwig148ff862008-04-30 00:54:29 -0700788 mxser_disable_must_rx_software_flow_control(
789 info->ioaddr);
Jiri Slaby1c456072008-02-07 00:16:46 -0800790 }
Alan Cox216ba022008-10-13 10:40:19 +0100791 if (I_IXOFF(tty)) {
Christoph Hellwig148ff862008-04-30 00:54:29 -0700792 mxser_enable_must_tx_software_flow_control(
793 info->ioaddr);
Jiri Slaby1c456072008-02-07 00:16:46 -0800794 } else {
Christoph Hellwig148ff862008-04-30 00:54:29 -0700795 mxser_disable_must_tx_software_flow_control(
796 info->ioaddr);
Jiri Slaby1c456072008-02-07 00:16:46 -0800797 }
798 }
799
800
801 outb(fcr, info->ioaddr + UART_FCR); /* set fcr */
802 outb(cval, info->ioaddr + UART_LCR);
803
804 return ret;
805}
806
Alan Cox216ba022008-10-13 10:40:19 +0100807static void mxser_check_modem_status(struct tty_struct *tty,
808 struct mxser_port *port, int status)
Jiri Slaby1c456072008-02-07 00:16:46 -0800809{
810 /* update input line counters */
811 if (status & UART_MSR_TERI)
812 port->icount.rng++;
813 if (status & UART_MSR_DDSR)
814 port->icount.dsr++;
815 if (status & UART_MSR_DDCD)
816 port->icount.dcd++;
817 if (status & UART_MSR_DCTS)
818 port->icount.cts++;
819 port->mon_data.modem_status = status;
Alan Coxbdc04e32009-09-19 13:13:31 -0700820 wake_up_interruptible(&port->port.delta_msr_wait);
Jiri Slaby1c456072008-02-07 00:16:46 -0800821
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100822 if ((port->port.flags & ASYNC_CHECK_CD) && (status & UART_MSR_DDCD)) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800823 if (status & UART_MSR_DCD)
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100824 wake_up_interruptible(&port->port.open_wait);
Jiri Slaby1c456072008-02-07 00:16:46 -0800825 }
826
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100827 if (port->port.flags & ASYNC_CTS_FLOW) {
Alan Cox216ba022008-10-13 10:40:19 +0100828 if (tty->hw_stopped) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800829 if (status & UART_MSR_CTS) {
Alan Cox216ba022008-10-13 10:40:19 +0100830 tty->hw_stopped = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -0800831
832 if ((port->type != PORT_16550A) &&
833 (!port->board->chip_flag)) {
834 outb(port->IER & ~UART_IER_THRI,
835 port->ioaddr + UART_IER);
836 port->IER |= UART_IER_THRI;
837 outb(port->IER, port->ioaddr +
838 UART_IER);
839 }
Alan Cox216ba022008-10-13 10:40:19 +0100840 tty_wakeup(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -0800841 }
842 } else {
843 if (!(status & UART_MSR_CTS)) {
Alan Cox216ba022008-10-13 10:40:19 +0100844 tty->hw_stopped = 1;
Jiri Slaby1c456072008-02-07 00:16:46 -0800845 if (port->type != PORT_16550A &&
846 !port->board->chip_flag) {
847 port->IER &= ~UART_IER_THRI;
848 outb(port->IER, port->ioaddr +
849 UART_IER);
850 }
851 }
852 }
853 }
854}
855
Alan Cox216ba022008-10-13 10:40:19 +0100856static int mxser_startup(struct tty_struct *tty)
Jiri Slaby1c456072008-02-07 00:16:46 -0800857{
Alan Cox216ba022008-10-13 10:40:19 +0100858 struct mxser_port *info = tty->driver_data;
Jiri Slaby1c456072008-02-07 00:16:46 -0800859 unsigned long page;
860 unsigned long flags;
861
862 page = __get_free_page(GFP_KERNEL);
863 if (!page)
864 return -ENOMEM;
865
866 spin_lock_irqsave(&info->slock, flags);
867
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100868 if (info->port.flags & ASYNC_INITIALIZED) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800869 free_page(page);
870 spin_unlock_irqrestore(&info->slock, flags);
871 return 0;
872 }
873
874 if (!info->ioaddr || !info->type) {
Alan Cox216ba022008-10-13 10:40:19 +0100875 set_bit(TTY_IO_ERROR, &tty->flags);
Jiri Slaby1c456072008-02-07 00:16:46 -0800876 free_page(page);
877 spin_unlock_irqrestore(&info->slock, flags);
878 return 0;
879 }
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100880 if (info->port.xmit_buf)
Jiri Slaby1c456072008-02-07 00:16:46 -0800881 free_page(page);
882 else
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100883 info->port.xmit_buf = (unsigned char *) page;
Jiri Slaby1c456072008-02-07 00:16:46 -0800884
885 /*
886 * Clear the FIFO buffers and disable them
887 * (they will be reenabled in mxser_change_speed())
888 */
889 if (info->board->chip_flag)
890 outb((UART_FCR_CLEAR_RCVR |
891 UART_FCR_CLEAR_XMIT |
892 MOXA_MUST_FCR_GDA_MODE_ENABLE), info->ioaddr + UART_FCR);
893 else
894 outb((UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT),
895 info->ioaddr + UART_FCR);
896
897 /*
898 * At this point there's no way the LSR could still be 0xFF;
899 * if it is, then bail out, because there's likely no UART
900 * here.
901 */
902 if (inb(info->ioaddr + UART_LSR) == 0xff) {
903 spin_unlock_irqrestore(&info->slock, flags);
904 if (capable(CAP_SYS_ADMIN)) {
Alan Cox216ba022008-10-13 10:40:19 +0100905 if (tty)
906 set_bit(TTY_IO_ERROR, &tty->flags);
Jiri Slaby1c456072008-02-07 00:16:46 -0800907 return 0;
908 } else
909 return -ENODEV;
910 }
911
912 /*
913 * Clear the interrupt registers.
914 */
915 (void) inb(info->ioaddr + UART_LSR);
916 (void) inb(info->ioaddr + UART_RX);
917 (void) inb(info->ioaddr + UART_IIR);
918 (void) inb(info->ioaddr + UART_MSR);
919
920 /*
921 * Now, initialize the UART
922 */
923 outb(UART_LCR_WLEN8, info->ioaddr + UART_LCR); /* reset DLAB */
924 info->MCR = UART_MCR_DTR | UART_MCR_RTS;
925 outb(info->MCR, info->ioaddr + UART_MCR);
926
927 /*
928 * Finally, enable interrupts
929 */
930 info->IER = UART_IER_MSI | UART_IER_RLSI | UART_IER_RDI;
931
932 if (info->board->chip_flag)
933 info->IER |= MOXA_MUST_IER_EGDAI;
934 outb(info->IER, info->ioaddr + UART_IER); /* enable interrupts */
935
936 /*
937 * And clear the interrupt registers again for luck.
938 */
939 (void) inb(info->ioaddr + UART_LSR);
940 (void) inb(info->ioaddr + UART_RX);
941 (void) inb(info->ioaddr + UART_IIR);
942 (void) inb(info->ioaddr + UART_MSR);
943
Alan Cox216ba022008-10-13 10:40:19 +0100944 clear_bit(TTY_IO_ERROR, &tty->flags);
Jiri Slaby1c456072008-02-07 00:16:46 -0800945 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
946
947 /*
948 * and set the speed of the serial port
949 */
Alan Cox216ba022008-10-13 10:40:19 +0100950 mxser_change_speed(tty, NULL);
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100951 info->port.flags |= ASYNC_INITIALIZED;
Jiri Slaby1c456072008-02-07 00:16:46 -0800952 spin_unlock_irqrestore(&info->slock, flags);
953
954 return 0;
955}
956
957/*
958 * This routine will shutdown a serial port; interrupts maybe disabled, and
959 * DTR is dropped if the hangup on close termio flag is on.
960 */
Alan Cox216ba022008-10-13 10:40:19 +0100961static void mxser_shutdown(struct tty_struct *tty)
Jiri Slaby1c456072008-02-07 00:16:46 -0800962{
Alan Cox216ba022008-10-13 10:40:19 +0100963 struct mxser_port *info = tty->driver_data;
Jiri Slaby1c456072008-02-07 00:16:46 -0800964 unsigned long flags;
965
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100966 if (!(info->port.flags & ASYNC_INITIALIZED))
Jiri Slaby1c456072008-02-07 00:16:46 -0800967 return;
968
969 spin_lock_irqsave(&info->slock, flags);
970
971 /*
972 * clear delta_msr_wait queue to avoid mem leaks: we may free the irq
973 * here so the queue might never be waken up
974 */
Alan Coxbdc04e32009-09-19 13:13:31 -0700975 wake_up_interruptible(&info->port.delta_msr_wait);
Jiri Slaby1c456072008-02-07 00:16:46 -0800976
977 /*
978 * Free the IRQ, if necessary
979 */
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100980 if (info->port.xmit_buf) {
981 free_page((unsigned long) info->port.xmit_buf);
982 info->port.xmit_buf = NULL;
Jiri Slaby1c456072008-02-07 00:16:46 -0800983 }
984
985 info->IER = 0;
986 outb(0x00, info->ioaddr + UART_IER);
987
Alan Cox216ba022008-10-13 10:40:19 +0100988 if (tty->termios->c_cflag & HUPCL)
Jiri Slaby1c456072008-02-07 00:16:46 -0800989 info->MCR &= ~(UART_MCR_DTR | UART_MCR_RTS);
990 outb(info->MCR, info->ioaddr + UART_MCR);
991
992 /* clear Rx/Tx FIFO's */
993 if (info->board->chip_flag)
994 outb(UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT |
995 MOXA_MUST_FCR_GDA_MODE_ENABLE,
996 info->ioaddr + UART_FCR);
997 else
998 outb(UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT,
999 info->ioaddr + UART_FCR);
1000
1001 /* read data port to reset things */
1002 (void) inb(info->ioaddr + UART_RX);
1003
Alan Cox216ba022008-10-13 10:40:19 +01001004 set_bit(TTY_IO_ERROR, &tty->flags);
Jiri Slaby1c456072008-02-07 00:16:46 -08001005
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001006 info->port.flags &= ~ASYNC_INITIALIZED;
Jiri Slaby1c456072008-02-07 00:16:46 -08001007
1008 if (info->board->chip_flag)
1009 SET_MOXA_MUST_NO_SOFTWARE_FLOW_CONTROL(info->ioaddr);
1010
1011 spin_unlock_irqrestore(&info->slock, flags);
1012}
1013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014/*
1015 * This routine is called whenever a serial port is opened. It
1016 * enables interrupts for a serial port, linking in its async structure into
1017 * the IRQ chain. It also performs the serial-specific
1018 * initialization for the tty structure.
1019 */
1020static int mxser_open(struct tty_struct *tty, struct file *filp)
1021{
Jiri Slaby1c456072008-02-07 00:16:46 -08001022 struct mxser_port *info;
1023 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 int retval, line;
1025
1026 line = tty->index;
1027 if (line == MXSER_PORTS)
1028 return 0;
1029 if (line < 0 || line > MXSER_PORTS)
1030 return -ENODEV;
Jiri Slaby1c456072008-02-07 00:16:46 -08001031 info = &mxser_boards[line / MXSER_PORTS_PER_BOARD].ports[line % MXSER_PORTS_PER_BOARD];
1032 if (!info->ioaddr)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001033 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035 tty->driver_data = info;
Alan Cox216ba022008-10-13 10:40:19 +01001036 tty_port_tty_set(&info->port, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 /*
1038 * Start up serial port
1039 */
Alan Cox3b6826b2009-01-02 13:45:58 +00001040 spin_lock_irqsave(&info->port.lock, flags);
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001041 info->port.count++;
Alan Cox3b6826b2009-01-02 13:45:58 +00001042 spin_unlock_irqrestore(&info->port.lock, flags);
Alan Cox216ba022008-10-13 10:40:19 +01001043 retval = mxser_startup(tty);
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
Alan Cox36c621d2009-01-02 13:46:10 +00001047 retval = tty_port_block_til_ready(&info->port, tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 if (retval)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001049 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 return 0;
1052}
1053
Alan Cox978e5952008-04-30 00:53:59 -07001054static void mxser_flush_buffer(struct tty_struct *tty)
1055{
1056 struct mxser_port *info = tty->driver_data;
1057 char fcr;
1058 unsigned long flags;
1059
1060
1061 spin_lock_irqsave(&info->slock, flags);
1062 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
1063
1064 fcr = inb(info->ioaddr + UART_FCR);
1065 outb((fcr | UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT),
1066 info->ioaddr + UART_FCR);
1067 outb(fcr, info->ioaddr + UART_FCR);
1068
1069 spin_unlock_irqrestore(&info->slock, flags);
1070
1071 tty_wakeup(tty);
1072}
1073
1074
Alan Cox1e2b0252009-09-19 13:13:21 -07001075static void mxser_close_port(struct tty_struct *tty, struct tty_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076{
Alan Cox1e2b0252009-09-19 13:13:21 -07001077 struct mxser_port *info = container_of(port, struct mxser_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 /*
1080 * Save the termios structure, since this port may have
1081 * separate termios for callout and dialin.
Alan Coxa6614992009-01-02 13:46:50 +00001082 *
1083 * FIXME: Can this go ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 */
Alan Cox1e2b0252009-09-19 13:13:21 -07001085 if (port->flags & ASYNC_NORMAL_ACTIVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 info->normal_termios = *tty->termios;
1087 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 * At this point we stop accepting input. To do this, we
1089 * disable the receive line status interrupts, and tell the
1090 * interrupt driver to stop checking the data ready bit in the
1091 * line status register.
1092 */
1093 info->IER &= ~UART_IER_RLSI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001094 if (info->board->chip_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 info->IER &= ~MOXA_MUST_RECV_ISR;
Jiri Slaby1c456072008-02-07 00:16:46 -08001096
Alan Cox1e2b0252009-09-19 13:13:21 -07001097 if (port->flags & ASYNC_INITIALIZED) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001098 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 /*
1100 * Before we drop DTR, make sure the UART transmitter
1101 * has completely drained; this is especially
1102 * important if there is a transmit FIFO!
1103 */
1104 timeout = jiffies + HZ;
Jiri Slaby1c456072008-02-07 00:16:46 -08001105 while (!(inb(info->ioaddr + UART_LSR) & UART_LSR_TEMT)) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07001106 schedule_timeout_interruptible(5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 if (time_after(jiffies, timeout))
1108 break;
1109 }
1110 }
Alan Cox216ba022008-10-13 10:40:19 +01001111 mxser_shutdown(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001112
Alan Cox1e2b0252009-09-19 13:13:21 -07001113}
1114
1115/*
1116 * This routine is called when the serial port gets closed. First, we
1117 * wait for the last remaining data to be sent. Then, we unlink its
1118 * async structure from the interrupt chain if necessary, and we free
1119 * that IRQ if nothing is left in the chain.
1120 */
1121static void mxser_close(struct tty_struct *tty, struct file *filp)
1122{
1123 struct mxser_port *info = tty->driver_data;
1124 struct tty_port *port = &info->port;
1125
1126 if (tty->index == MXSER_PORTS)
1127 return;
1128 if (tty_port_close_start(port, tty, filp) == 0)
1129 return;
1130 mxser_close_port(tty, port);
1131 mxser_flush_buffer(tty);
Alan Coxa6614992009-01-02 13:46:50 +00001132 /* Right now the tty_port set is done outside of the close_end helper
1133 as we don't yet have everyone using refcounts */
1134 tty_port_close_end(port, tty);
1135 tty_port_tty_set(port, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136}
1137
1138static int mxser_write(struct tty_struct *tty, const unsigned char *buf, int count)
1139{
1140 int c, total = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08001141 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 unsigned long flags;
1143
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001144 if (!info->port.xmit_buf)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001145 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147 while (1) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001148 c = min_t(int, count, min(SERIAL_XMIT_SIZE - info->xmit_cnt - 1,
1149 SERIAL_XMIT_SIZE - info->xmit_head));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 if (c <= 0)
1151 break;
1152
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001153 memcpy(info->port.xmit_buf + info->xmit_head, buf, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 spin_lock_irqsave(&info->slock, flags);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001155 info->xmit_head = (info->xmit_head + c) &
1156 (SERIAL_XMIT_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 info->xmit_cnt += c;
1158 spin_unlock_irqrestore(&info->slock, flags);
1159
1160 buf += c;
1161 count -= c;
1162 total += c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 }
1164
Jiri Slaby1c456072008-02-07 00:16:46 -08001165 if (info->xmit_cnt && !tty->stopped) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001166 if (!tty->hw_stopped ||
1167 (info->type == PORT_16550A) ||
Jiri Slaby1c456072008-02-07 00:16:46 -08001168 (info->board->chip_flag)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 spin_lock_irqsave(&info->slock, flags);
Jiri Slaby1c456072008-02-07 00:16:46 -08001170 outb(info->IER & ~UART_IER_THRI, info->ioaddr +
1171 UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001173 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 spin_unlock_irqrestore(&info->slock, flags);
1175 }
1176 }
1177 return total;
1178}
1179
Alan Cox0be2ead2008-04-30 00:54:03 -07001180static int mxser_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181{
Jiri Slaby1c456072008-02-07 00:16:46 -08001182 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 unsigned long flags;
1184
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001185 if (!info->port.xmit_buf)
Alan Cox0be2ead2008-04-30 00:54:03 -07001186 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
1188 if (info->xmit_cnt >= SERIAL_XMIT_SIZE - 1)
Alan Cox0be2ead2008-04-30 00:54:03 -07001189 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191 spin_lock_irqsave(&info->slock, flags);
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001192 info->port.xmit_buf[info->xmit_head++] = ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 info->xmit_head &= SERIAL_XMIT_SIZE - 1;
1194 info->xmit_cnt++;
1195 spin_unlock_irqrestore(&info->slock, flags);
Jiri Slaby1c456072008-02-07 00:16:46 -08001196 if (!tty->stopped) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001197 if (!tty->hw_stopped ||
1198 (info->type == PORT_16550A) ||
Jiri Slaby1c456072008-02-07 00:16:46 -08001199 info->board->chip_flag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 spin_lock_irqsave(&info->slock, flags);
Jiri Slaby1c456072008-02-07 00:16:46 -08001201 outb(info->IER & ~UART_IER_THRI, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001203 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 spin_unlock_irqrestore(&info->slock, flags);
1205 }
1206 }
Alan Cox0be2ead2008-04-30 00:54:03 -07001207 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208}
1209
1210
1211static void mxser_flush_chars(struct tty_struct *tty)
1212{
Jiri Slaby1c456072008-02-07 00:16:46 -08001213 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 unsigned long flags;
1215
Jiri Slabyace7dd92008-07-25 01:48:22 -07001216 if (info->xmit_cnt <= 0 || tty->stopped || !info->port.xmit_buf ||
1217 (tty->hw_stopped && info->type != PORT_16550A &&
1218 !info->board->chip_flag))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 return;
1220
1221 spin_lock_irqsave(&info->slock, flags);
1222
Jiri Slaby1c456072008-02-07 00:16:46 -08001223 outb(info->IER & ~UART_IER_THRI, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001225 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
1227 spin_unlock_irqrestore(&info->slock, flags);
1228}
1229
1230static int mxser_write_room(struct tty_struct *tty)
1231{
Jiri Slaby1c456072008-02-07 00:16:46 -08001232 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 int ret;
1234
1235 ret = SERIAL_XMIT_SIZE - info->xmit_cnt - 1;
Jiri Slabyace7dd92008-07-25 01:48:22 -07001236 return ret < 0 ? 0 : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237}
1238
1239static int mxser_chars_in_buffer(struct tty_struct *tty)
1240{
Jiri Slaby1c456072008-02-07 00:16:46 -08001241 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 return info->xmit_cnt;
1243}
1244
Jiri Slaby1c456072008-02-07 00:16:46 -08001245/*
1246 * ------------------------------------------------------------
1247 * friends of mxser_ioctl()
1248 * ------------------------------------------------------------
1249 */
Alan Cox216ba022008-10-13 10:40:19 +01001250static int mxser_get_serial_info(struct tty_struct *tty,
Jiri Slaby1c456072008-02-07 00:16:46 -08001251 struct serial_struct __user *retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252{
Alan Cox216ba022008-10-13 10:40:19 +01001253 struct mxser_port *info = tty->driver_data;
Jiri Slaby1c456072008-02-07 00:16:46 -08001254 struct serial_struct tmp = {
1255 .type = info->type,
Alan Cox216ba022008-10-13 10:40:19 +01001256 .line = tty->index,
Jiri Slaby1c456072008-02-07 00:16:46 -08001257 .port = info->ioaddr,
1258 .irq = info->board->irq,
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001259 .flags = info->port.flags,
Jiri Slaby1c456072008-02-07 00:16:46 -08001260 .baud_base = info->baud_base,
Alan Cox44b7d1b2008-07-16 21:57:18 +01001261 .close_delay = info->port.close_delay,
1262 .closing_wait = info->port.closing_wait,
Jiri Slaby1c456072008-02-07 00:16:46 -08001263 .custom_divisor = info->custom_divisor,
1264 .hub6 = 0
1265 };
1266 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
1267 return -EFAULT;
1268 return 0;
1269}
1270
Alan Cox216ba022008-10-13 10:40:19 +01001271static int mxser_set_serial_info(struct tty_struct *tty,
Jiri Slaby1c456072008-02-07 00:16:46 -08001272 struct serial_struct __user *new_info)
1273{
Alan Cox216ba022008-10-13 10:40:19 +01001274 struct mxser_port *info = tty->driver_data;
Jiri Slaby1c456072008-02-07 00:16:46 -08001275 struct serial_struct new_serial;
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001276 speed_t baud;
Jiri Slaby1c456072008-02-07 00:16:46 -08001277 unsigned long sl_flags;
1278 unsigned int flags;
1279 int retval = 0;
1280
1281 if (!new_info || !info->ioaddr)
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001282 return -ENODEV;
Jiri Slaby1c456072008-02-07 00:16:46 -08001283 if (copy_from_user(&new_serial, new_info, sizeof(new_serial)))
1284 return -EFAULT;
1285
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001286 if (new_serial.irq != info->board->irq ||
1287 new_serial.port != info->ioaddr)
1288 return -EINVAL;
Jiri Slaby1c456072008-02-07 00:16:46 -08001289
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001290 flags = info->port.flags & ASYNC_SPD_MASK;
Jiri Slaby1c456072008-02-07 00:16:46 -08001291
1292 if (!capable(CAP_SYS_ADMIN)) {
1293 if ((new_serial.baud_base != info->baud_base) ||
Alan Cox44b7d1b2008-07-16 21:57:18 +01001294 (new_serial.close_delay != info->port.close_delay) ||
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001295 ((new_serial.flags & ~ASYNC_USR_MASK) != (info->port.flags & ~ASYNC_USR_MASK)))
Jiri Slaby1c456072008-02-07 00:16:46 -08001296 return -EPERM;
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001297 info->port.flags = ((info->port.flags & ~ASYNC_USR_MASK) |
Jiri Slaby1c456072008-02-07 00:16:46 -08001298 (new_serial.flags & ASYNC_USR_MASK));
1299 } else {
1300 /*
1301 * OK, past this point, all the error checking has been done.
1302 * At this point, we start making changes.....
1303 */
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001304 info->port.flags = ((info->port.flags & ~ASYNC_FLAGS) |
Jiri Slaby1c456072008-02-07 00:16:46 -08001305 (new_serial.flags & ASYNC_FLAGS));
Alan Cox44b7d1b2008-07-16 21:57:18 +01001306 info->port.close_delay = new_serial.close_delay * HZ / 100;
1307 info->port.closing_wait = new_serial.closing_wait * HZ / 100;
Alan Cox216ba022008-10-13 10:40:19 +01001308 tty->low_latency = (info->port.flags & ASYNC_LOW_LATENCY)
1309 ? 1 : 0;
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001310 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST &&
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001311 (new_serial.baud_base != info->baud_base ||
1312 new_serial.custom_divisor !=
1313 info->custom_divisor)) {
1314 baud = new_serial.baud_base / new_serial.custom_divisor;
Alan Cox216ba022008-10-13 10:40:19 +01001315 tty_encode_baud_rate(tty, baud, baud);
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001316 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001317 }
1318
1319 info->type = new_serial.type;
1320
1321 process_txrx_fifo(info);
1322
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001323 if (info->port.flags & ASYNC_INITIALIZED) {
1324 if (flags != (info->port.flags & ASYNC_SPD_MASK)) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001325 spin_lock_irqsave(&info->slock, sl_flags);
Alan Cox216ba022008-10-13 10:40:19 +01001326 mxser_change_speed(tty, NULL);
Jiri Slaby1c456072008-02-07 00:16:46 -08001327 spin_unlock_irqrestore(&info->slock, sl_flags);
1328 }
1329 } else
Alan Cox216ba022008-10-13 10:40:19 +01001330 retval = mxser_startup(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001331
1332 return retval;
1333}
1334
1335/*
1336 * mxser_get_lsr_info - get line status register info
1337 *
1338 * Purpose: Let user call ioctl() to get info when the UART physically
1339 * is emptied. On bus types like RS485, the transmitter must
1340 * release the bus after transmitting. This must be done when
1341 * the transmit shift register is empty, not be done when the
1342 * transmit holding register is empty. This functionality
1343 * allows an RS485 driver to be written in user space.
1344 */
1345static int mxser_get_lsr_info(struct mxser_port *info,
1346 unsigned int __user *value)
1347{
1348 unsigned char status;
1349 unsigned int result;
1350 unsigned long flags;
1351
1352 spin_lock_irqsave(&info->slock, flags);
1353 status = inb(info->ioaddr + UART_LSR);
1354 spin_unlock_irqrestore(&info->slock, flags);
1355 result = ((status & UART_LSR_TEMT) ? TIOCSER_TEMT : 0);
1356 return put_user(result, value);
1357}
1358
Jiri Slaby1c456072008-02-07 00:16:46 -08001359static int mxser_tiocmget(struct tty_struct *tty, struct file *file)
1360{
1361 struct mxser_port *info = tty->driver_data;
1362 unsigned char control, status;
1363 unsigned long flags;
1364
1365
1366 if (tty->index == MXSER_PORTS)
1367 return -ENOIOCTLCMD;
1368 if (test_bit(TTY_IO_ERROR, &tty->flags))
1369 return -EIO;
1370
1371 control = info->MCR;
1372
1373 spin_lock_irqsave(&info->slock, flags);
1374 status = inb(info->ioaddr + UART_MSR);
1375 if (status & UART_MSR_ANY_DELTA)
Alan Cox216ba022008-10-13 10:40:19 +01001376 mxser_check_modem_status(tty, info, status);
Jiri Slaby1c456072008-02-07 00:16:46 -08001377 spin_unlock_irqrestore(&info->slock, flags);
1378 return ((control & UART_MCR_RTS) ? TIOCM_RTS : 0) |
1379 ((control & UART_MCR_DTR) ? TIOCM_DTR : 0) |
1380 ((status & UART_MSR_DCD) ? TIOCM_CAR : 0) |
1381 ((status & UART_MSR_RI) ? TIOCM_RNG : 0) |
1382 ((status & UART_MSR_DSR) ? TIOCM_DSR : 0) |
1383 ((status & UART_MSR_CTS) ? TIOCM_CTS : 0);
1384}
1385
1386static int mxser_tiocmset(struct tty_struct *tty, struct file *file,
1387 unsigned int set, unsigned int clear)
1388{
1389 struct mxser_port *info = tty->driver_data;
1390 unsigned long flags;
1391
1392
1393 if (tty->index == MXSER_PORTS)
1394 return -ENOIOCTLCMD;
1395 if (test_bit(TTY_IO_ERROR, &tty->flags))
1396 return -EIO;
1397
1398 spin_lock_irqsave(&info->slock, flags);
1399
1400 if (set & TIOCM_RTS)
1401 info->MCR |= UART_MCR_RTS;
1402 if (set & TIOCM_DTR)
1403 info->MCR |= UART_MCR_DTR;
1404
1405 if (clear & TIOCM_RTS)
1406 info->MCR &= ~UART_MCR_RTS;
1407 if (clear & TIOCM_DTR)
1408 info->MCR &= ~UART_MCR_DTR;
1409
1410 outb(info->MCR, info->ioaddr + UART_MCR);
1411 spin_unlock_irqrestore(&info->slock, flags);
1412 return 0;
1413}
1414
1415static int __init mxser_program_mode(int port)
1416{
1417 int id, i, j, n;
1418
1419 outb(0, port);
1420 outb(0, port);
1421 outb(0, port);
1422 (void)inb(port);
1423 (void)inb(port);
1424 outb(0, port);
1425 (void)inb(port);
1426
1427 id = inb(port + 1) & 0x1F;
1428 if ((id != C168_ASIC_ID) &&
1429 (id != C104_ASIC_ID) &&
1430 (id != C102_ASIC_ID) &&
1431 (id != CI132_ASIC_ID) &&
1432 (id != CI134_ASIC_ID) &&
1433 (id != CI104J_ASIC_ID))
1434 return -1;
1435 for (i = 0, j = 0; i < 4; i++) {
1436 n = inb(port + 2);
1437 if (n == 'M') {
1438 j = 1;
1439 } else if ((j == 1) && (n == 1)) {
1440 j = 2;
1441 break;
1442 } else
1443 j = 0;
1444 }
1445 if (j != 2)
1446 id = -2;
1447 return id;
1448}
1449
1450static void __init mxser_normal_mode(int port)
1451{
1452 int i, n;
1453
1454 outb(0xA5, port + 1);
1455 outb(0x80, port + 3);
1456 outb(12, port + 0); /* 9600 bps */
1457 outb(0, port + 1);
1458 outb(0x03, port + 3); /* 8 data bits */
1459 outb(0x13, port + 4); /* loop back mode */
1460 for (i = 0; i < 16; i++) {
1461 n = inb(port + 5);
1462 if ((n & 0x61) == 0x60)
1463 break;
1464 if ((n & 1) == 1)
1465 (void)inb(port);
1466 }
1467 outb(0x00, port + 4);
1468}
1469
1470#define CHIP_SK 0x01 /* Serial Data Clock in Eprom */
1471#define CHIP_DO 0x02 /* Serial Data Output in Eprom */
1472#define CHIP_CS 0x04 /* Serial Chip Select in Eprom */
1473#define CHIP_DI 0x08 /* Serial Data Input in Eprom */
1474#define EN_CCMD 0x000 /* Chip's command register */
1475#define EN0_RSARLO 0x008 /* Remote start address reg 0 */
1476#define EN0_RSARHI 0x009 /* Remote start address reg 1 */
1477#define EN0_RCNTLO 0x00A /* Remote byte count reg WR */
1478#define EN0_RCNTHI 0x00B /* Remote byte count reg WR */
1479#define EN0_DCFG 0x00E /* Data configuration reg WR */
1480#define EN0_PORT 0x010 /* Rcv missed frame error counter RD */
1481#define ENC_PAGE0 0x000 /* Select page 0 of chip registers */
1482#define ENC_PAGE3 0x0C0 /* Select page 3 of chip registers */
1483static int __init mxser_read_register(int port, unsigned short *regs)
1484{
1485 int i, k, value, id;
1486 unsigned int j;
1487
1488 id = mxser_program_mode(port);
1489 if (id < 0)
1490 return id;
1491 for (i = 0; i < 14; i++) {
1492 k = (i & 0x3F) | 0x180;
1493 for (j = 0x100; j > 0; j >>= 1) {
1494 outb(CHIP_CS, port);
1495 if (k & j) {
1496 outb(CHIP_CS | CHIP_DO, port);
1497 outb(CHIP_CS | CHIP_DO | CHIP_SK, port); /* A? bit of read */
1498 } else {
1499 outb(CHIP_CS, port);
1500 outb(CHIP_CS | CHIP_SK, port); /* A? bit of read */
1501 }
1502 }
1503 (void)inb(port);
1504 value = 0;
1505 for (k = 0, j = 0x8000; k < 16; k++, j >>= 1) {
1506 outb(CHIP_CS, port);
1507 outb(CHIP_CS | CHIP_SK, port);
1508 if (inb(port) & CHIP_DI)
1509 value |= j;
1510 }
1511 regs[i] = value;
1512 outb(0, port);
1513 }
1514 mxser_normal_mode(port);
1515 return id;
1516}
1517
1518static int mxser_ioctl_special(unsigned int cmd, void __user *argp)
1519{
1520 struct mxser_port *port;
Alan Cox216ba022008-10-13 10:40:19 +01001521 struct tty_struct *tty;
Jiri Slaby1c456072008-02-07 00:16:46 -08001522 int result, status;
1523 unsigned int i, j;
Alan Cox9d6d1622008-04-30 00:53:20 -07001524 int ret = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08001525
1526 switch (cmd) {
1527 case MOXA_GET_MAJOR:
Jiri Slaby8f3d1372008-07-29 22:33:38 -07001528 if (printk_ratelimit())
1529 printk(KERN_WARNING "mxser: '%s' uses deprecated ioctl "
1530 "%x (GET_MAJOR), fix your userspace\n",
1531 current->comm, cmd);
Jiri Slaby1c456072008-02-07 00:16:46 -08001532 return put_user(ttymajor, (int __user *)argp);
1533
1534 case MOXA_CHKPORTENABLE:
1535 result = 0;
Alan Cox9d6d1622008-04-30 00:53:20 -07001536 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001537 for (i = 0; i < MXSER_BOARDS; i++)
1538 for (j = 0; j < MXSER_PORTS_PER_BOARD; j++)
1539 if (mxser_boards[i].ports[j].ioaddr)
1540 result |= (1 << i);
Alan Cox9d6d1622008-04-30 00:53:20 -07001541 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001542 return put_user(result, (unsigned long __user *)argp);
1543 case MOXA_GETDATACOUNT:
Alan Cox9d6d1622008-04-30 00:53:20 -07001544 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001545 if (copy_to_user(argp, &mxvar_log, sizeof(mxvar_log)))
Alan Cox9d6d1622008-04-30 00:53:20 -07001546 ret = -EFAULT;
1547 unlock_kernel();
1548 return ret;
Jiri Slaby72800df2008-07-25 01:48:20 -07001549 case MOXA_GETMSTATUS: {
1550 struct mxser_mstatus ms, __user *msu = argp;
Alan Cox9d6d1622008-04-30 00:53:20 -07001551 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001552 for (i = 0; i < MXSER_BOARDS; i++)
1553 for (j = 0; j < MXSER_PORTS_PER_BOARD; j++) {
1554 port = &mxser_boards[i].ports[j];
Jiri Slaby72800df2008-07-25 01:48:20 -07001555 memset(&ms, 0, sizeof(ms));
Jiri Slaby1c456072008-02-07 00:16:46 -08001556
Jiri Slaby72800df2008-07-25 01:48:20 -07001557 if (!port->ioaddr)
1558 goto copy;
Alan Cox216ba022008-10-13 10:40:19 +01001559
1560 tty = tty_port_tty_get(&port->port);
Jiri Slaby1c456072008-02-07 00:16:46 -08001561
Alan Cox216ba022008-10-13 10:40:19 +01001562 if (!tty || !tty->termios)
Jiri Slaby72800df2008-07-25 01:48:20 -07001563 ms.cflag = port->normal_termios.c_cflag;
Jiri Slaby1c456072008-02-07 00:16:46 -08001564 else
Alan Cox216ba022008-10-13 10:40:19 +01001565 ms.cflag = tty->termios->c_cflag;
1566 tty_kref_put(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001567 status = inb(port->ioaddr + UART_MSR);
Jiri Slaby72800df2008-07-25 01:48:20 -07001568 if (status & UART_MSR_DCD)
1569 ms.dcd = 1;
1570 if (status & UART_MSR_DSR)
1571 ms.dsr = 1;
1572 if (status & UART_MSR_CTS)
1573 ms.cts = 1;
1574 copy:
1575 if (copy_to_user(msu, &ms, sizeof(ms))) {
1576 unlock_kernel();
1577 return -EFAULT;
1578 }
1579 msu++;
Jiri Slaby1c456072008-02-07 00:16:46 -08001580 }
Alan Cox9d6d1622008-04-30 00:53:20 -07001581 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001582 return 0;
Jiri Slaby72800df2008-07-25 01:48:20 -07001583 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001584 case MOXA_ASPP_MON_EXT: {
Jiri Slaby72800df2008-07-25 01:48:20 -07001585 struct mxser_mon_ext *me; /* it's 2k, stack unfriendly */
1586 unsigned int cflag, iflag, p;
1587 u8 opmode;
1588
1589 me = kzalloc(sizeof(*me), GFP_KERNEL);
1590 if (!me)
1591 return -ENOMEM;
Jiri Slaby1c456072008-02-07 00:16:46 -08001592
Alan Cox9d6d1622008-04-30 00:53:20 -07001593 lock_kernel();
Jiri Slaby72800df2008-07-25 01:48:20 -07001594 for (i = 0, p = 0; i < MXSER_BOARDS; i++) {
1595 for (j = 0; j < MXSER_PORTS_PER_BOARD; j++, p++) {
1596 if (p >= ARRAY_SIZE(me->rx_cnt)) {
1597 i = MXSER_BOARDS;
1598 break;
1599 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001600 port = &mxser_boards[i].ports[j];
1601 if (!port->ioaddr)
1602 continue;
1603
Jiri Slaby72800df2008-07-25 01:48:20 -07001604 status = mxser_get_msr(port->ioaddr, 0, p);
Jiri Slaby1c456072008-02-07 00:16:46 -08001605
1606 if (status & UART_MSR_TERI)
1607 port->icount.rng++;
1608 if (status & UART_MSR_DDSR)
1609 port->icount.dsr++;
1610 if (status & UART_MSR_DDCD)
1611 port->icount.dcd++;
1612 if (status & UART_MSR_DCTS)
1613 port->icount.cts++;
1614
1615 port->mon_data.modem_status = status;
Jiri Slaby72800df2008-07-25 01:48:20 -07001616 me->rx_cnt[p] = port->mon_data.rxcnt;
1617 me->tx_cnt[p] = port->mon_data.txcnt;
1618 me->up_rxcnt[p] = port->mon_data.up_rxcnt;
1619 me->up_txcnt[p] = port->mon_data.up_txcnt;
1620 me->modem_status[p] =
Jiri Slaby1c456072008-02-07 00:16:46 -08001621 port->mon_data.modem_status;
Alan Cox216ba022008-10-13 10:40:19 +01001622 tty = tty_port_tty_get(&port->port);
Jiri Slaby1c456072008-02-07 00:16:46 -08001623
Alan Cox216ba022008-10-13 10:40:19 +01001624 if (!tty || !tty->termios) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001625 cflag = port->normal_termios.c_cflag;
1626 iflag = port->normal_termios.c_iflag;
Alan Cox216ba022008-10-13 10:40:19 +01001627 me->baudrate[p] = tty_termios_baud_rate(&port->normal_termios);
Jiri Slaby1c456072008-02-07 00:16:46 -08001628 } else {
Alan Cox216ba022008-10-13 10:40:19 +01001629 cflag = tty->termios->c_cflag;
1630 iflag = tty->termios->c_iflag;
1631 me->baudrate[p] = tty_get_baud_rate(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001632 }
Alan Cox216ba022008-10-13 10:40:19 +01001633 tty_kref_put(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001634
Jiri Slaby72800df2008-07-25 01:48:20 -07001635 me->databits[p] = cflag & CSIZE;
1636 me->stopbits[p] = cflag & CSTOPB;
1637 me->parity[p] = cflag & (PARENB | PARODD |
1638 CMSPAR);
Jiri Slaby1c456072008-02-07 00:16:46 -08001639
1640 if (cflag & CRTSCTS)
Jiri Slaby72800df2008-07-25 01:48:20 -07001641 me->flowctrl[p] |= 0x03;
Jiri Slaby1c456072008-02-07 00:16:46 -08001642
1643 if (iflag & (IXON | IXOFF))
Jiri Slaby72800df2008-07-25 01:48:20 -07001644 me->flowctrl[p] |= 0x0C;
Jiri Slaby1c456072008-02-07 00:16:46 -08001645
1646 if (port->type == PORT_16550A)
Jiri Slaby72800df2008-07-25 01:48:20 -07001647 me->fifo[p] = 1;
Jiri Slaby1c456072008-02-07 00:16:46 -08001648
Jiri Slaby72800df2008-07-25 01:48:20 -07001649 opmode = inb(port->opmode_ioaddr) >>
1650 ((p % 4) * 2);
Jiri Slaby1c456072008-02-07 00:16:46 -08001651 opmode &= OP_MODE_MASK;
Jiri Slaby72800df2008-07-25 01:48:20 -07001652 me->iftype[p] = opmode;
Jiri Slaby1c456072008-02-07 00:16:46 -08001653 }
Alan Cox9d6d1622008-04-30 00:53:20 -07001654 }
1655 unlock_kernel();
Jiri Slaby72800df2008-07-25 01:48:20 -07001656 if (copy_to_user(argp, me, sizeof(*me)))
1657 ret = -EFAULT;
1658 kfree(me);
1659 return ret;
Alan Cox9d6d1622008-04-30 00:53:20 -07001660 }
1661 default:
Jiri Slaby1c456072008-02-07 00:16:46 -08001662 return -ENOIOCTLCMD;
1663 }
1664 return 0;
1665}
1666
1667static int mxser_cflags_changed(struct mxser_port *info, unsigned long arg,
1668 struct async_icount *cprev)
1669{
1670 struct async_icount cnow;
1671 unsigned long flags;
1672 int ret;
1673
1674 spin_lock_irqsave(&info->slock, flags);
1675 cnow = info->icount; /* atomic copy */
1676 spin_unlock_irqrestore(&info->slock, flags);
1677
1678 ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
1679 ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
1680 ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
1681 ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts));
1682
1683 *cprev = cnow;
1684
1685 return ret;
1686}
1687
1688static int mxser_ioctl(struct tty_struct *tty, struct file *file,
1689 unsigned int cmd, unsigned long arg)
1690{
1691 struct mxser_port *info = tty->driver_data;
1692 struct async_icount cnow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 unsigned long flags;
1694 void __user *argp = (void __user *)arg;
Jiri Slaby1c456072008-02-07 00:16:46 -08001695 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
1697 if (tty->index == MXSER_PORTS)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001698 return mxser_ioctl_special(cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 if (cmd == MOXA_SET_OP_MODE || cmd == MOXA_GET_OP_MODE) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001701 int p;
1702 unsigned long opmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 static unsigned char ModeMask[] = { 0xfc, 0xf3, 0xcf, 0x3f };
1704 int shiftbit;
1705 unsigned char val, mask;
1706
Jiri Slaby1c456072008-02-07 00:16:46 -08001707 p = tty->index % 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 if (cmd == MOXA_SET_OP_MODE) {
1709 if (get_user(opmode, (int __user *) argp))
1710 return -EFAULT;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001711 if (opmode != RS232_MODE &&
1712 opmode != RS485_2WIRE_MODE &&
1713 opmode != RS422_MODE &&
1714 opmode != RS485_4WIRE_MODE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 return -EFAULT;
Alan Cox9d6d1622008-04-30 00:53:20 -07001716 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 mask = ModeMask[p];
1718 shiftbit = p * 2;
1719 val = inb(info->opmode_ioaddr);
1720 val &= mask;
1721 val |= (opmode << shiftbit);
1722 outb(val, info->opmode_ioaddr);
Alan Cox9d6d1622008-04-30 00:53:20 -07001723 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 } else {
Alan Cox9d6d1622008-04-30 00:53:20 -07001725 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 shiftbit = p * 2;
1727 opmode = inb(info->opmode_ioaddr) >> shiftbit;
1728 opmode &= OP_MODE_MASK;
Alan Cox9d6d1622008-04-30 00:53:20 -07001729 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001730 if (put_user(opmode, (int __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 return -EFAULT;
1732 }
1733 return 0;
1734 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Jiri Slaby1c456072008-02-07 00:16:46 -08001736 if (cmd != TIOCGSERIAL && cmd != TIOCMIWAIT && cmd != TIOCGICOUNT &&
1737 test_bit(TTY_IO_ERROR, &tty->flags))
1738 return -EIO;
1739
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 case TIOCGSERIAL:
Alan Cox9d6d1622008-04-30 00:53:20 -07001742 lock_kernel();
Alan Cox216ba022008-10-13 10:40:19 +01001743 retval = mxser_get_serial_info(tty, argp);
Alan Cox9d6d1622008-04-30 00:53:20 -07001744 unlock_kernel();
1745 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 case TIOCSSERIAL:
Alan Cox9d6d1622008-04-30 00:53:20 -07001747 lock_kernel();
Alan Cox216ba022008-10-13 10:40:19 +01001748 retval = mxser_set_serial_info(tty, argp);
Alan Cox9d6d1622008-04-30 00:53:20 -07001749 unlock_kernel();
1750 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 case TIOCSERGETLSR: /* Get line status register */
Alan Cox9d6d1622008-04-30 00:53:20 -07001752 return mxser_get_lsr_info(info, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 /*
1754 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1755 * - mask passed in arg for lines of interest
1756 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1757 * Caller should use TIOCGICOUNT to see which one it was
1758 */
Jiri Slabyfc838152007-04-23 14:41:04 -07001759 case TIOCMIWAIT:
1760 spin_lock_irqsave(&info->slock, flags);
1761 cnow = info->icount; /* note the counters on entry */
1762 spin_unlock_irqrestore(&info->slock, flags);
1763
Alan Coxbdc04e32009-09-19 13:13:31 -07001764 return wait_event_interruptible(info->port.delta_msr_wait,
Jiri Slaby1c456072008-02-07 00:16:46 -08001765 mxser_cflags_changed(info, arg, &cnow));
1766 /*
1767 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1768 * Return: write counters to the user passed counter struct
1769 * NB: both 1->0 and 0->1 transitions are counted except for
1770 * RI where only 0->1 is counted.
1771 */
Jiri Slaby41aee9a2008-07-25 01:48:19 -07001772 case TIOCGICOUNT: {
1773 struct serial_icounter_struct icnt = { 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 spin_lock_irqsave(&info->slock, flags);
1775 cnow = info->icount;
1776 spin_unlock_irqrestore(&info->slock, flags);
Jiri Slaby41aee9a2008-07-25 01:48:19 -07001777
1778 icnt.frame = cnow.frame;
1779 icnt.brk = cnow.brk;
1780 icnt.overrun = cnow.overrun;
1781 icnt.buf_overrun = cnow.buf_overrun;
1782 icnt.parity = cnow.parity;
1783 icnt.rx = cnow.rx;
1784 icnt.tx = cnow.tx;
1785 icnt.cts = cnow.cts;
1786 icnt.dsr = cnow.dsr;
1787 icnt.rng = cnow.rng;
1788 icnt.dcd = cnow.dcd;
1789
1790 return copy_to_user(argp, &icnt, sizeof(icnt)) ? -EFAULT : 0;
1791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 case MOXA_HighSpeedOn:
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001793 return put_user(info->baud_base != 115200 ? 1 : 0, (int __user *)argp);
Jiri Slaby1c456072008-02-07 00:16:46 -08001794 case MOXA_SDS_RSTICOUNTER:
Alan Cox9d6d1622008-04-30 00:53:20 -07001795 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001796 info->mon_data.rxcnt = 0;
1797 info->mon_data.txcnt = 0;
Alan Cox9d6d1622008-04-30 00:53:20 -07001798 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 return 0;
1800
1801 case MOXA_ASPP_OQUEUE:{
Jiri Slaby1c456072008-02-07 00:16:46 -08001802 int len, lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
Alan Cox9d6d1622008-04-30 00:53:20 -07001804 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001805 len = mxser_chars_in_buffer(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001806 lsr = inb(info->ioaddr + UART_LSR) & UART_LSR_TEMT;
Jiri Slaby1c456072008-02-07 00:16:46 -08001807 len += (lsr ? 0 : 1);
Alan Cox9d6d1622008-04-30 00:53:20 -07001808 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Jiri Slaby1c456072008-02-07 00:16:46 -08001810 return put_user(len, (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001812 case MOXA_ASPP_MON: {
1813 int mcr, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
Alan Cox9d6d1622008-04-30 00:53:20 -07001815 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001816 status = mxser_get_msr(info->ioaddr, 1, tty->index);
Alan Cox216ba022008-10-13 10:40:19 +01001817 mxser_check_modem_status(tty, info, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
Jiri Slaby1c456072008-02-07 00:16:46 -08001819 mcr = inb(info->ioaddr + UART_MCR);
1820 if (mcr & MOXA_MUST_MCR_XON_FLAG)
1821 info->mon_data.hold_reason &= ~NPPI_NOTIFY_XOFFHOLD;
1822 else
1823 info->mon_data.hold_reason |= NPPI_NOTIFY_XOFFHOLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
Jiri Slaby1c456072008-02-07 00:16:46 -08001825 if (mcr & MOXA_MUST_MCR_TX_XON)
1826 info->mon_data.hold_reason &= ~NPPI_NOTIFY_XOFFXENT;
1827 else
1828 info->mon_data.hold_reason |= NPPI_NOTIFY_XOFFXENT;
1829
Alan Cox216ba022008-10-13 10:40:19 +01001830 if (tty->hw_stopped)
Jiri Slaby1c456072008-02-07 00:16:46 -08001831 info->mon_data.hold_reason |= NPPI_NOTIFY_CTSHOLD;
1832 else
1833 info->mon_data.hold_reason &= ~NPPI_NOTIFY_CTSHOLD;
Alan Cox9d6d1622008-04-30 00:53:20 -07001834 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001835 if (copy_to_user(argp, &info->mon_data,
1836 sizeof(struct mxser_mon)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 return -EFAULT;
Jiri Slaby1c456072008-02-07 00:16:46 -08001838
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 return 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08001840 }
1841 case MOXA_ASPP_LSTATUS: {
1842 if (put_user(info->err_shadow, (unsigned char __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Jiri Slaby1c456072008-02-07 00:16:46 -08001845 info->err_shadow = 0;
1846 return 0;
1847 }
1848 case MOXA_SET_BAUD_METHOD: {
1849 int method;
1850
1851 if (get_user(method, (int __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 return -EFAULT;
Jiri Slaby1c456072008-02-07 00:16:46 -08001853 mxser_set_baud_method[tty->index] = method;
1854 return put_user(method, (int __user *)argp);
1855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 default:
1857 return -ENOIOCTLCMD;
1858 }
1859 return 0;
1860}
1861
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862static void mxser_stoprx(struct tty_struct *tty)
1863{
Jiri Slaby1c456072008-02-07 00:16:46 -08001864 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
1866 info->ldisc_stop_rx = 1;
1867 if (I_IXOFF(tty)) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001868 if (info->board->chip_flag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 info->IER &= ~MOXA_MUST_RECV_ISR;
Jiri Slaby1c456072008-02-07 00:16:46 -08001870 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 info->x_char = STOP_CHAR(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001873 outb(0, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001875 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 }
1877 }
1878
Alan Cox216ba022008-10-13 10:40:19 +01001879 if (tty->termios->c_cflag & CRTSCTS) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001880 info->MCR &= ~UART_MCR_RTS;
1881 outb(info->MCR, info->ioaddr + UART_MCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 }
1883}
1884
1885/*
1886 * This routine is called by the upper-layer tty layer to signal that
1887 * incoming characters should be throttled.
1888 */
1889static void mxser_throttle(struct tty_struct *tty)
1890{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 mxser_stoprx(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892}
1893
1894static void mxser_unthrottle(struct tty_struct *tty)
1895{
Jiri Slaby1c456072008-02-07 00:16:46 -08001896 struct mxser_port *info = tty->driver_data;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001897
Jiri Slaby1c456072008-02-07 00:16:46 -08001898 /* startrx */
1899 info->ldisc_stop_rx = 0;
1900 if (I_IXOFF(tty)) {
1901 if (info->x_char)
1902 info->x_char = 0;
1903 else {
1904 if (info->board->chip_flag) {
1905 info->IER |= MOXA_MUST_RECV_ISR;
1906 outb(info->IER, info->ioaddr + UART_IER);
1907 } else {
1908 info->x_char = START_CHAR(tty);
1909 outb(0, info->ioaddr + UART_IER);
1910 info->IER |= UART_IER_THRI;
1911 outb(info->IER, info->ioaddr + UART_IER);
1912 }
1913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 }
1915
Alan Cox216ba022008-10-13 10:40:19 +01001916 if (tty->termios->c_cflag & CRTSCTS) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001917 info->MCR |= UART_MCR_RTS;
1918 outb(info->MCR, info->ioaddr + UART_MCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 }
1920}
1921
1922/*
1923 * mxser_stop() and mxser_start()
1924 *
1925 * This routines are called before setting or resetting tty->stopped.
1926 * They enable or disable transmitter interrupts, as necessary.
1927 */
1928static void mxser_stop(struct tty_struct *tty)
1929{
Jiri Slaby1c456072008-02-07 00:16:46 -08001930 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 unsigned long flags;
1932
1933 spin_lock_irqsave(&info->slock, flags);
1934 if (info->IER & UART_IER_THRI) {
1935 info->IER &= ~UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001936 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 }
1938 spin_unlock_irqrestore(&info->slock, flags);
1939}
1940
1941static void mxser_start(struct tty_struct *tty)
1942{
Jiri Slaby1c456072008-02-07 00:16:46 -08001943 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 unsigned long flags;
1945
1946 spin_lock_irqsave(&info->slock, flags);
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001947 if (info->xmit_cnt && info->port.xmit_buf) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001948 outb(info->IER & ~UART_IER_THRI, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001950 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 }
1952 spin_unlock_irqrestore(&info->slock, flags);
1953}
1954
Jiri Slaby1c456072008-02-07 00:16:46 -08001955static void mxser_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
1956{
1957 struct mxser_port *info = tty->driver_data;
1958 unsigned long flags;
1959
1960 spin_lock_irqsave(&info->slock, flags);
Alan Cox216ba022008-10-13 10:40:19 +01001961 mxser_change_speed(tty, old_termios);
Jiri Slaby1c456072008-02-07 00:16:46 -08001962 spin_unlock_irqrestore(&info->slock, flags);
1963
1964 if ((old_termios->c_cflag & CRTSCTS) &&
1965 !(tty->termios->c_cflag & CRTSCTS)) {
1966 tty->hw_stopped = 0;
1967 mxser_start(tty);
1968 }
1969
1970 /* Handle sw stopped */
1971 if ((old_termios->c_iflag & IXON) &&
1972 !(tty->termios->c_iflag & IXON)) {
1973 tty->stopped = 0;
1974
1975 if (info->board->chip_flag) {
1976 spin_lock_irqsave(&info->slock, flags);
Christoph Hellwig148ff862008-04-30 00:54:29 -07001977 mxser_disable_must_rx_software_flow_control(
1978 info->ioaddr);
Jiri Slaby1c456072008-02-07 00:16:46 -08001979 spin_unlock_irqrestore(&info->slock, flags);
1980 }
1981
1982 mxser_start(tty);
1983 }
1984}
1985
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986/*
1987 * mxser_wait_until_sent() --- wait until the transmitter is empty
1988 */
1989static void mxser_wait_until_sent(struct tty_struct *tty, int timeout)
1990{
Jiri Slaby1c456072008-02-07 00:16:46 -08001991 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 unsigned long orig_jiffies, char_time;
1993 int lsr;
1994
1995 if (info->type == PORT_UNKNOWN)
1996 return;
1997
1998 if (info->xmit_fifo_size == 0)
1999 return; /* Just in case.... */
2000
2001 orig_jiffies = jiffies;
2002 /*
2003 * Set the check interval to be 1/5 of the estimated time to
2004 * send a single character, and make it at least 1. The check
2005 * interval should also be less than the timeout.
2006 *
2007 * Note: we have to use pretty tight timings here to satisfy
2008 * the NIST-PCTS.
2009 */
2010 char_time = (info->timeout - HZ / 50) / info->xmit_fifo_size;
2011 char_time = char_time / 5;
2012 if (char_time == 0)
2013 char_time = 1;
2014 if (timeout && timeout < char_time)
2015 char_time = timeout;
2016 /*
2017 * If the transmitter hasn't cleared in twice the approximate
2018 * amount of time to send the entire FIFO, it probably won't
2019 * ever clear. This assumes the UART isn't doing flow
2020 * control, which is currently the case. Hence, if it ever
2021 * takes longer than info->timeout, this is probably due to a
2022 * UART bug of some kind. So, we clamp the timeout parameter at
2023 * 2*info->timeout.
2024 */
2025 if (!timeout || timeout > 2 * info->timeout)
2026 timeout = 2 * info->timeout;
2027#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002028 printk(KERN_DEBUG "In rs_wait_until_sent(%d) check=%lu...",
2029 timeout, char_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 printk("jiff=%lu...", jiffies);
2031#endif
Alan Cox978e5952008-04-30 00:53:59 -07002032 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08002033 while (!((lsr = inb(info->ioaddr + UART_LSR)) & UART_LSR_TEMT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2035 printk("lsr = %d (jiff=%lu)...", lsr, jiffies);
2036#endif
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07002037 schedule_timeout_interruptible(char_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 if (signal_pending(current))
2039 break;
2040 if (timeout && time_after(jiffies, orig_jiffies + timeout))
2041 break;
2042 }
2043 set_current_state(TASK_RUNNING);
Alan Cox978e5952008-04-30 00:53:59 -07002044 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
2046#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2047 printk("lsr = %d (jiff=%lu)...done\n", lsr, jiffies);
2048#endif
2049}
2050
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051/*
2052 * This routine is called by tty_hangup() when a hangup is signaled.
2053 */
Jiri Slaby1c456072008-02-07 00:16:46 -08002054static void mxser_hangup(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055{
Jiri Slaby1c456072008-02-07 00:16:46 -08002056 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
2058 mxser_flush_buffer(tty);
Alan Cox216ba022008-10-13 10:40:19 +01002059 mxser_shutdown(tty);
Alan Cox3b6826b2009-01-02 13:45:58 +00002060 tty_port_hangup(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061}
2062
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063/*
2064 * mxser_rs_break() --- routine which turns the break handling on or off
2065 */
Alan Cox9e989662008-07-22 11:18:03 +01002066static int mxser_rs_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067{
Jiri Slaby1c456072008-02-07 00:16:46 -08002068 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 unsigned long flags;
2070
2071 spin_lock_irqsave(&info->slock, flags);
2072 if (break_state == -1)
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 else
Jiri Slaby1c456072008-02-07 00:16:46 -08002076 outb(inb(info->ioaddr + UART_LCR) & ~UART_LCR_SBC,
2077 info->ioaddr + UART_LCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 spin_unlock_irqrestore(&info->slock, flags);
Alan Cox9e989662008-07-22 11:18:03 +01002079 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080}
2081
Alan Cox216ba022008-10-13 10:40:19 +01002082static void mxser_receive_chars(struct tty_struct *tty,
2083 struct mxser_port *port, int *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 unsigned char ch, gdl;
2086 int ignored = 0;
2087 int cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 int recv_room;
2089 int max = 256;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
Alan Cox33f0f882006-01-09 20:54:13 -08002091 recv_room = tty->receive_room;
Alan Cox216ba022008-10-13 10:40:19 +01002092 if (recv_room == 0 && !port->ldisc_stop_rx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 mxser_stoprx(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08002094 if (port->board->chip_flag != MOXA_OTHER_UART) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Jiri Slaby1c456072008-02-07 00:16:46 -08002096 if (*status & UART_LSR_SPECIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 goto intr_old;
Jiri Slaby1c456072008-02-07 00:16:46 -08002098 if (port->board->chip_flag == MOXA_MUST_MU860_HWID &&
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002099 (*status & MOXA_MUST_LSR_RERR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 goto intr_old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 if (*status & MOXA_MUST_LSR_RERR)
2102 goto intr_old;
2103
Jiri Slaby1c456072008-02-07 00:16:46 -08002104 gdl = inb(port->ioaddr + MOXA_MUST_GDL_REGISTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
Jiri Slaby1c456072008-02-07 00:16:46 -08002106 if (port->board->chip_flag == MOXA_MUST_MU150_HWID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 gdl &= MOXA_MUST_GDL_MASK;
2108 if (gdl >= recv_room) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002109 if (!port->ldisc_stop_rx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 mxser_stoprx(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 }
2112 while (gdl--) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002113 ch = inb(port->ioaddr + UART_RX);
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002114 tty_insert_flip_char(tty, ch, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 }
2117 goto end_intr;
2118 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002119intr_old:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
2121 do {
2122 if (max-- < 0)
2123 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
Jiri Slaby1c456072008-02-07 00:16:46 -08002125 ch = inb(port->ioaddr + UART_RX);
2126 if (port->board->chip_flag && (*status & UART_LSR_OE))
2127 outb(0x23, port->ioaddr + UART_FCR);
2128 *status &= port->read_status_mask;
2129 if (*status & port->ignore_status_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 if (++ignored > 100)
2131 break;
2132 } else {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002133 char flag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 if (*status & UART_LSR_SPECIAL) {
2135 if (*status & UART_LSR_BI) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002136 flag = TTY_BREAK;
Jiri Slaby1c456072008-02-07 00:16:46 -08002137 port->icount.brk++;
2138
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002139 if (port->port.flags & ASYNC_SAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 do_SAK(tty);
2141 } else if (*status & UART_LSR_PE) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002142 flag = TTY_PARITY;
Jiri Slaby1c456072008-02-07 00:16:46 -08002143 port->icount.parity++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 } else if (*status & UART_LSR_FE) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002145 flag = TTY_FRAME;
Jiri Slaby1c456072008-02-07 00:16:46 -08002146 port->icount.frame++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 } else if (*status & UART_LSR_OE) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002148 flag = TTY_OVERRUN;
Jiri Slaby1c456072008-02-07 00:16:46 -08002149 port->icount.overrun++;
2150 } else
2151 flag = TTY_BREAK;
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002152 }
2153 tty_insert_flip_char(tty, ch, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 cnt++;
2155 if (cnt >= recv_room) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002156 if (!port->ldisc_stop_rx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 mxser_stoprx(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 break;
2159 }
2160
2161 }
2162
Jiri Slaby1c456072008-02-07 00:16:46 -08002163 if (port->board->chip_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Jiri Slaby1c456072008-02-07 00:16:46 -08002166 *status = inb(port->ioaddr + UART_LSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 } while (*status & UART_LSR_DR);
2168
Jiri Slaby1c456072008-02-07 00:16:46 -08002169end_intr:
Alan Cox216ba022008-10-13 10:40:19 +01002170 mxvar_log.rxcnt[tty->index] += cnt;
Jiri Slaby1c456072008-02-07 00:16:46 -08002171 port->mon_data.rxcnt += cnt;
2172 port->mon_data.up_rxcnt += cnt;
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002173
Jiri Slaby1c456072008-02-07 00:16:46 -08002174 /*
2175 * We are called from an interrupt context with &port->slock
2176 * being held. Drop it temporarily in order to prevent
2177 * recursive locking.
2178 */
2179 spin_unlock(&port->slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 tty_flip_buffer_push(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08002181 spin_lock(&port->slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182}
2183
Alan Cox216ba022008-10-13 10:40:19 +01002184static void mxser_transmit_chars(struct tty_struct *tty, struct mxser_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185{
2186 int count, cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
Jiri Slaby1c456072008-02-07 00:16:46 -08002188 if (port->x_char) {
2189 outb(port->x_char, port->ioaddr + UART_TX);
2190 port->x_char = 0;
Alan Cox216ba022008-10-13 10:40:19 +01002191 mxvar_log.txcnt[tty->index]++;
Jiri Slaby1c456072008-02-07 00:16:46 -08002192 port->mon_data.txcnt++;
2193 port->mon_data.up_txcnt++;
2194 port->icount.tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 return;
2196 }
2197
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002198 if (port->port.xmit_buf == NULL)
Jiri Slaby1c456072008-02-07 00:16:46 -08002199 return;
2200
Alan Cox216ba022008-10-13 10:40:19 +01002201 if (port->xmit_cnt <= 0 || tty->stopped ||
2202 (tty->hw_stopped &&
Jiri Slaby1c456072008-02-07 00:16:46 -08002203 (port->type != PORT_16550A) &&
2204 (!port->board->chip_flag))) {
2205 port->IER &= ~UART_IER_THRI;
2206 outb(port->IER, port->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 return;
2208 }
2209
Jiri Slaby1c456072008-02-07 00:16:46 -08002210 cnt = port->xmit_cnt;
2211 count = port->xmit_fifo_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 do {
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002213 outb(port->port.xmit_buf[port->xmit_tail++],
Jiri Slaby1c456072008-02-07 00:16:46 -08002214 port->ioaddr + UART_TX);
2215 port->xmit_tail = port->xmit_tail & (SERIAL_XMIT_SIZE - 1);
2216 if (--port->xmit_cnt <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 break;
2218 } while (--count > 0);
Alan Cox216ba022008-10-13 10:40:19 +01002219 mxvar_log.txcnt[tty->index] += (cnt - port->xmit_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
Jiri Slaby1c456072008-02-07 00:16:46 -08002221 port->mon_data.txcnt += (cnt - port->xmit_cnt);
2222 port->mon_data.up_txcnt += (cnt - port->xmit_cnt);
2223 port->icount.tx += (cnt - port->xmit_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
Alan Cox216ba022008-10-13 10:40:19 +01002225 if (port->xmit_cnt < WAKEUP_CHARS && tty)
2226 tty_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
Jiri Slaby1c456072008-02-07 00:16:46 -08002228 if (port->xmit_cnt <= 0) {
2229 port->IER &= ~UART_IER_THRI;
2230 outb(port->IER, port->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232}
2233
2234/*
Jiri Slaby1c456072008-02-07 00:16:46 -08002235 * This is the serial driver's generic interrupt routine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 */
Jiri Slaby1c456072008-02-07 00:16:46 -08002237static irqreturn_t mxser_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238{
Jiri Slaby1c456072008-02-07 00:16:46 -08002239 int status, iir, i;
2240 struct mxser_board *brd = NULL;
2241 struct mxser_port *port;
2242 int max, irqbits, bits, msr;
2243 unsigned int int_cnt, pass_counter = 0;
2244 int handled = IRQ_NONE;
Alan Cox216ba022008-10-13 10:40:19 +01002245 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
Jiri Slaby1c456072008-02-07 00:16:46 -08002247 for (i = 0; i < MXSER_BOARDS; i++)
2248 if (dev_id == &mxser_boards[i]) {
2249 brd = dev_id;
2250 break;
2251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
Jiri Slaby1c456072008-02-07 00:16:46 -08002253 if (i == MXSER_BOARDS)
2254 goto irq_stop;
2255 if (brd == NULL)
2256 goto irq_stop;
2257 max = brd->info->nports;
2258 while (pass_counter++ < MXSER_ISR_PASS_LIMIT) {
2259 irqbits = inb(brd->vector) & brd->vector_mask;
2260 if (irqbits == brd->vector_mask)
2261 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
Jiri Slaby1c456072008-02-07 00:16:46 -08002263 handled = IRQ_HANDLED;
2264 for (i = 0, bits = 1; i < max; i++, irqbits |= bits, bits <<= 1) {
2265 if (irqbits == brd->vector_mask)
2266 break;
2267 if (bits & irqbits)
2268 continue;
2269 port = &brd->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
Jiri Slaby1c456072008-02-07 00:16:46 -08002271 int_cnt = 0;
2272 spin_lock(&port->slock);
2273 do {
2274 iir = inb(port->ioaddr + UART_IIR);
2275 if (iir & UART_IIR_NO_INT)
2276 break;
2277 iir &= MOXA_MUST_IIR_MASK;
Alan Cox216ba022008-10-13 10:40:19 +01002278 tty = tty_port_tty_get(&port->port);
2279 if (!tty ||
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002280 (port->port.flags & ASYNC_CLOSING) ||
2281 !(port->port.flags &
Jiri Slaby1c456072008-02-07 00:16:46 -08002282 ASYNC_INITIALIZED)) {
2283 status = inb(port->ioaddr + UART_LSR);
2284 outb(0x27, port->ioaddr + UART_FCR);
2285 inb(port->ioaddr + UART_MSR);
Alan Cox216ba022008-10-13 10:40:19 +01002286 tty_kref_put(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08002287 break;
2288 }
2289
2290 status = inb(port->ioaddr + UART_LSR);
2291
2292 if (status & UART_LSR_PE)
2293 port->err_shadow |= NPPI_NOTIFY_PARITY;
2294 if (status & UART_LSR_FE)
2295 port->err_shadow |= NPPI_NOTIFY_FRAMING;
2296 if (status & UART_LSR_OE)
2297 port->err_shadow |=
2298 NPPI_NOTIFY_HW_OVERRUN;
2299 if (status & UART_LSR_BI)
2300 port->err_shadow |= NPPI_NOTIFY_BREAK;
2301
2302 if (port->board->chip_flag) {
2303 if (iir == MOXA_MUST_IIR_GDA ||
2304 iir == MOXA_MUST_IIR_RDA ||
2305 iir == MOXA_MUST_IIR_RTO ||
2306 iir == MOXA_MUST_IIR_LSR)
Alan Cox216ba022008-10-13 10:40:19 +01002307 mxser_receive_chars(tty, port,
Jiri Slaby1c456072008-02-07 00:16:46 -08002308 &status);
2309
2310 } else {
2311 status &= port->read_status_mask;
2312 if (status & UART_LSR_DR)
Alan Cox216ba022008-10-13 10:40:19 +01002313 mxser_receive_chars(tty, port,
Jiri Slaby1c456072008-02-07 00:16:46 -08002314 &status);
2315 }
2316 msr = inb(port->ioaddr + UART_MSR);
2317 if (msr & UART_MSR_ANY_DELTA)
Alan Cox216ba022008-10-13 10:40:19 +01002318 mxser_check_modem_status(tty, port, msr);
Jiri Slaby1c456072008-02-07 00:16:46 -08002319
2320 if (port->board->chip_flag) {
2321 if (iir == 0x02 && (status &
2322 UART_LSR_THRE))
Alan Cox216ba022008-10-13 10:40:19 +01002323 mxser_transmit_chars(tty, port);
Jiri Slaby1c456072008-02-07 00:16:46 -08002324 } else {
2325 if (status & UART_LSR_THRE)
Alan Cox216ba022008-10-13 10:40:19 +01002326 mxser_transmit_chars(tty, port);
Jiri Slaby1c456072008-02-07 00:16:46 -08002327 }
Alan Cox216ba022008-10-13 10:40:19 +01002328 tty_kref_put(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08002329 } while (int_cnt++ < MXSER_ISR_PASS_LIMIT);
2330 spin_unlock(&port->slock);
2331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 }
2333
Jiri Slaby1c456072008-02-07 00:16:46 -08002334irq_stop:
2335 return handled;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336}
2337
Jiri Slaby1c456072008-02-07 00:16:46 -08002338static const struct tty_operations mxser_ops = {
2339 .open = mxser_open,
2340 .close = mxser_close,
2341 .write = mxser_write,
2342 .put_char = mxser_put_char,
2343 .flush_chars = mxser_flush_chars,
2344 .write_room = mxser_write_room,
2345 .chars_in_buffer = mxser_chars_in_buffer,
2346 .flush_buffer = mxser_flush_buffer,
2347 .ioctl = mxser_ioctl,
2348 .throttle = mxser_throttle,
2349 .unthrottle = mxser_unthrottle,
2350 .set_termios = mxser_set_termios,
2351 .stop = mxser_stop,
2352 .start = mxser_start,
2353 .hangup = mxser_hangup,
2354 .break_ctl = mxser_rs_break,
2355 .wait_until_sent = mxser_wait_until_sent,
2356 .tiocmget = mxser_tiocmget,
2357 .tiocmset = mxser_tiocmset,
2358};
2359
Alan Cox31f35932009-01-02 13:45:05 +00002360struct tty_port_operations mxser_port_ops = {
2361 .carrier_raised = mxser_carrier_raised,
Alan Coxfcc8ac12009-06-11 12:24:17 +01002362 .dtr_rts = mxser_dtr_rts,
Alan Cox31f35932009-01-02 13:45:05 +00002363};
2364
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365/*
Jiri Slaby1c456072008-02-07 00:16:46 -08002366 * The MOXA Smartio/Industio serial driver boot-time initialization code!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 */
Jiri Slaby1c456072008-02-07 00:16:46 -08002368
2369static void mxser_release_res(struct mxser_board *brd, struct pci_dev *pdev,
2370 unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371{
Jiri Slaby1c456072008-02-07 00:16:46 -08002372 if (irq)
2373 free_irq(brd->irq, brd);
2374 if (pdev != NULL) { /* PCI */
2375#ifdef CONFIG_PCI
2376 pci_release_region(pdev, 2);
2377 pci_release_region(pdev, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 } else {
Jiri Slaby1c456072008-02-07 00:16:46 -08002380 release_region(brd->ports[0].ioaddr, 8 * brd->info->nports);
2381 release_region(brd->vector, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383}
2384
Jiri Slaby1c456072008-02-07 00:16:46 -08002385static int __devinit mxser_initbrd(struct mxser_board *brd,
2386 struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387{
Jiri Slaby1c456072008-02-07 00:16:46 -08002388 struct mxser_port *info;
2389 unsigned int i;
2390 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
Jiri Slaby83766bc2008-07-25 01:48:21 -07002392 printk(KERN_INFO "mxser: max. baud rate = %d bps\n",
2393 brd->ports[0].max_baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
Jiri Slaby1c456072008-02-07 00:16:46 -08002395 for (i = 0; i < brd->info->nports; i++) {
2396 info = &brd->ports[i];
Alan Cox44b7d1b2008-07-16 21:57:18 +01002397 tty_port_init(&info->port);
Alan Cox31f35932009-01-02 13:45:05 +00002398 info->port.ops = &mxser_port_ops;
Jiri Slaby1c456072008-02-07 00:16:46 -08002399 info->board = brd;
2400 info->stop_rx = 0;
2401 info->ldisc_stop_rx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
Jiri Slaby1c456072008-02-07 00:16:46 -08002403 /* Enhance mode enabled here */
2404 if (brd->chip_flag != MOXA_OTHER_UART)
Christoph Hellwig148ff862008-04-30 00:54:29 -07002405 mxser_enable_must_enchance_mode(info->ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002407 info->port.flags = ASYNC_SHARE_IRQ;
Jiri Slaby1c456072008-02-07 00:16:46 -08002408 info->type = brd->uart_type;
2409
2410 process_txrx_fifo(info);
2411
2412 info->custom_divisor = info->baud_base * 16;
Alan Cox44b7d1b2008-07-16 21:57:18 +01002413 info->port.close_delay = 5 * HZ / 10;
2414 info->port.closing_wait = 30 * HZ;
Jiri Slaby1c456072008-02-07 00:16:46 -08002415 info->normal_termios = mxvar_sdriver->init_termios;
Jiri Slaby1c456072008-02-07 00:16:46 -08002416 memset(&info->mon_data, 0, sizeof(struct mxser_mon));
2417 info->err_shadow = 0;
2418 spin_lock_init(&info->slock);
2419
2420 /* before set INT ISR, disable all int */
2421 outb(inb(info->ioaddr + UART_IER) & 0xf0,
2422 info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 }
2424
Jiri Slaby1c456072008-02-07 00:16:46 -08002425 retval = request_irq(brd->irq, mxser_interrupt, IRQF_SHARED, "mxser",
2426 brd);
2427 if (retval) {
2428 printk(KERN_ERR "Board %s: Request irq failed, IRQ (%d) may "
2429 "conflict with another device.\n",
2430 brd->info->name, brd->irq);
2431 /* We hold resources, we need to release them. */
2432 mxser_release_res(brd, pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002434 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435}
2436
Jiri Slaby1c456072008-02-07 00:16:46 -08002437static int __init mxser_get_ISA_conf(int cap, struct mxser_board *brd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438{
2439 int id, i, bits;
2440 unsigned short regs[16], irq;
2441 unsigned char scratch, scratch2;
2442
Jiri Slaby1c456072008-02-07 00:16:46 -08002443 brd->chip_flag = MOXA_OTHER_UART;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
2445 id = mxser_read_register(cap, regs);
Jiri Slaby1c456072008-02-07 00:16:46 -08002446 switch (id) {
2447 case C168_ASIC_ID:
2448 brd->info = &mxser_cards[0];
2449 break;
2450 case C104_ASIC_ID:
2451 brd->info = &mxser_cards[1];
2452 break;
2453 case CI104J_ASIC_ID:
2454 brd->info = &mxser_cards[2];
2455 break;
2456 case C102_ASIC_ID:
2457 brd->info = &mxser_cards[5];
2458 break;
2459 case CI132_ASIC_ID:
2460 brd->info = &mxser_cards[6];
2461 break;
2462 case CI134_ASIC_ID:
2463 brd->info = &mxser_cards[7];
2464 break;
2465 default:
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002466 return 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08002467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468
2469 irq = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08002470 /* some ISA cards have 2 ports, but we want to see them as 4-port (why?)
2471 Flag-hack checks if configuration should be read as 2-port here. */
2472 if (brd->info->nports == 2 || (brd->info->flags & MXSER_HAS2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 irq = regs[9] & 0xF000;
2474 irq = irq | (irq >> 4);
2475 if (irq != (regs[9] & 0xFF00))
Jiri Slaby83766bc2008-07-25 01:48:21 -07002476 goto err_irqconflict;
Jiri Slaby1c456072008-02-07 00:16:46 -08002477 } else if (brd->info->nports == 4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 irq = regs[9] & 0xF000;
2479 irq = irq | (irq >> 4);
2480 irq = irq | (irq >> 8);
2481 if (irq != regs[9])
Jiri Slaby83766bc2008-07-25 01:48:21 -07002482 goto err_irqconflict;
Jiri Slaby1c456072008-02-07 00:16:46 -08002483 } else if (brd->info->nports == 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 irq = regs[9] & 0xF000;
2485 irq = irq | (irq >> 4);
2486 irq = irq | (irq >> 8);
2487 if ((irq != regs[9]) || (irq != regs[10]))
Jiri Slaby83766bc2008-07-25 01:48:21 -07002488 goto err_irqconflict;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 }
2490
Jiri Slaby83766bc2008-07-25 01:48:21 -07002491 if (!irq) {
2492 printk(KERN_ERR "mxser: interrupt number unset\n");
2493 return -EIO;
2494 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002495 brd->irq = ((int)(irq & 0xF000) >> 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 for (i = 0; i < 8; i++)
Jiri Slaby1c456072008-02-07 00:16:46 -08002497 brd->ports[i].ioaddr = (int) regs[i + 1] & 0xFFF8;
Jiri Slaby83766bc2008-07-25 01:48:21 -07002498 if ((regs[12] & 0x80) == 0) {
2499 printk(KERN_ERR "mxser: invalid interrupt vector\n");
2500 return -EIO;
2501 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002502 brd->vector = (int)regs[11]; /* interrupt vector */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 if (id == 1)
Jiri Slaby1c456072008-02-07 00:16:46 -08002504 brd->vector_mask = 0x00FF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 else
Jiri Slaby1c456072008-02-07 00:16:46 -08002506 brd->vector_mask = 0x000F;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 for (i = 7, bits = 0x0100; i >= 0; i--, bits <<= 1) {
2508 if (regs[12] & bits) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002509 brd->ports[i].baud_base = 921600;
2510 brd->ports[i].max_baud = 921600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 } else {
Jiri Slaby1c456072008-02-07 00:16:46 -08002512 brd->ports[i].baud_base = 115200;
2513 brd->ports[i].max_baud = 115200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 }
2515 }
2516 scratch2 = inb(cap + UART_LCR) & (~UART_LCR_DLAB);
2517 outb(scratch2 | UART_LCR_DLAB, cap + UART_LCR);
2518 outb(0, cap + UART_EFR); /* EFR is the same as FCR */
2519 outb(scratch2, cap + UART_LCR);
2520 outb(UART_FCR_ENABLE_FIFO, cap + UART_FCR);
2521 scratch = inb(cap + UART_IIR);
2522
2523 if (scratch & 0xC0)
Jiri Slaby1c456072008-02-07 00:16:46 -08002524 brd->uart_type = PORT_16550A;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 else
Jiri Slaby1c456072008-02-07 00:16:46 -08002526 brd->uart_type = PORT_16450;
2527 if (!request_region(brd->ports[0].ioaddr, 8 * brd->info->nports,
Jiri Slaby83766bc2008-07-25 01:48:21 -07002528 "mxser(IO)")) {
2529 printk(KERN_ERR "mxser: can't request ports I/O region: "
2530 "0x%.8lx-0x%.8lx\n",
2531 brd->ports[0].ioaddr, brd->ports[0].ioaddr +
2532 8 * brd->info->nports - 1);
2533 return -EIO;
2534 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002535 if (!request_region(brd->vector, 1, "mxser(vector)")) {
2536 release_region(brd->ports[0].ioaddr, 8 * brd->info->nports);
Jiri Slaby83766bc2008-07-25 01:48:21 -07002537 printk(KERN_ERR "mxser: can't request interrupt vector region: "
2538 "0x%.8lx-0x%.8lx\n",
2539 brd->ports[0].ioaddr, brd->ports[0].ioaddr +
2540 8 * brd->info->nports - 1);
2541 return -EIO;
Jiri Slaby1c456072008-02-07 00:16:46 -08002542 }
2543 return brd->info->nports;
Jiri Slaby83766bc2008-07-25 01:48:21 -07002544
2545err_irqconflict:
2546 printk(KERN_ERR "mxser: invalid interrupt number\n");
2547 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548}
2549
Jiri Slaby1c456072008-02-07 00:16:46 -08002550static int __devinit mxser_probe(struct pci_dev *pdev,
2551 const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552{
Jiri Slaby1c456072008-02-07 00:16:46 -08002553#ifdef CONFIG_PCI
2554 struct mxser_board *brd;
2555 unsigned int i, j;
2556 unsigned long ioaddress;
2557 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558
Jiri Slaby1c456072008-02-07 00:16:46 -08002559 for (i = 0; i < MXSER_BOARDS; i++)
2560 if (mxser_boards[i].info == NULL)
2561 break;
2562
2563 if (i >= MXSER_BOARDS) {
Jiri Slaby83766bc2008-07-25 01:48:21 -07002564 dev_err(&pdev->dev, "too many boards found (maximum %d), board "
2565 "not configured\n", MXSER_BOARDS);
Jiri Slaby1c456072008-02-07 00:16:46 -08002566 goto err;
2567 }
2568
2569 brd = &mxser_boards[i];
2570 brd->idx = i * MXSER_PORTS_PER_BOARD;
Jiri Slaby83766bc2008-07-25 01:48:21 -07002571 dev_info(&pdev->dev, "found MOXA %s board (BusNo=%d, DevNo=%d)\n",
Jiri Slaby1c456072008-02-07 00:16:46 -08002572 mxser_cards[ent->driver_data].name,
2573 pdev->bus->number, PCI_SLOT(pdev->devfn));
2574
2575 retval = pci_enable_device(pdev);
2576 if (retval) {
Jiri Slaby83766bc2008-07-25 01:48:21 -07002577 dev_err(&pdev->dev, "PCI enable failed\n");
Jiri Slaby1c456072008-02-07 00:16:46 -08002578 goto err;
2579 }
2580
2581 /* io address */
2582 ioaddress = pci_resource_start(pdev, 2);
2583 retval = pci_request_region(pdev, 2, "mxser(IO)");
2584 if (retval)
2585 goto err;
2586
2587 brd->info = &mxser_cards[ent->driver_data];
2588 for (i = 0; i < brd->info->nports; i++)
2589 brd->ports[i].ioaddr = ioaddress + 8 * i;
2590
2591 /* vector */
2592 ioaddress = pci_resource_start(pdev, 3);
2593 retval = pci_request_region(pdev, 3, "mxser(vector)");
2594 if (retval)
2595 goto err_relio;
2596 brd->vector = ioaddress;
2597
2598 /* irq */
2599 brd->irq = pdev->irq;
2600
2601 brd->chip_flag = CheckIsMoxaMust(brd->ports[0].ioaddr);
2602 brd->uart_type = PORT_16550A;
2603 brd->vector_mask = 0;
2604
2605 for (i = 0; i < brd->info->nports; i++) {
2606 for (j = 0; j < UART_INFO_NUM; j++) {
2607 if (Gpci_uart_info[j].type == brd->chip_flag) {
2608 brd->ports[i].max_baud =
2609 Gpci_uart_info[j].max_baud;
2610
2611 /* exception....CP-102 */
2612 if (brd->info->flags & MXSER_HIGHBAUD)
2613 brd->ports[i].max_baud = 921600;
2614 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 }
2616 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002617 }
2618
2619 if (brd->chip_flag == MOXA_MUST_MU860_HWID) {
2620 for (i = 0; i < brd->info->nports; i++) {
2621 if (i < 4)
2622 brd->ports[i].opmode_ioaddr = ioaddress + 4;
2623 else
2624 brd->ports[i].opmode_ioaddr = ioaddress + 0x0c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002626 outb(0, ioaddress + 4); /* default set to RS232 mode */
2627 outb(0, ioaddress + 0x0c); /* default set to RS232 mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002629
2630 for (i = 0; i < brd->info->nports; i++) {
2631 brd->vector_mask |= (1 << i);
2632 brd->ports[i].baud_base = 921600;
2633 }
2634
2635 /* mxser_initbrd will hook ISR. */
2636 retval = mxser_initbrd(brd, pdev);
2637 if (retval)
2638 goto err_null;
2639
2640 for (i = 0; i < brd->info->nports; i++)
2641 tty_register_device(mxvar_sdriver, brd->idx + i, &pdev->dev);
2642
2643 pci_set_drvdata(pdev, brd);
2644
2645 return 0;
2646err_relio:
2647 pci_release_region(pdev, 2);
2648err_null:
2649 brd->info = NULL;
2650err:
2651 return retval;
2652#else
2653 return -ENODEV;
2654#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655}
2656
Jiri Slaby1c456072008-02-07 00:16:46 -08002657static void __devexit mxser_remove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658{
Jiri Slaby1c456072008-02-07 00:16:46 -08002659 struct mxser_board *brd = pci_get_drvdata(pdev);
2660 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661
Jiri Slaby1c456072008-02-07 00:16:46 -08002662 for (i = 0; i < brd->info->nports; i++)
2663 tty_unregister_device(mxvar_sdriver, brd->idx + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664
Jiri Slaby1c456072008-02-07 00:16:46 -08002665 mxser_release_res(brd, pdev, 1);
2666 brd->info = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667}
2668
Jiri Slaby1c456072008-02-07 00:16:46 -08002669static struct pci_driver mxser_driver = {
2670 .name = "mxser",
2671 .id_table = mxser_pcibrds,
2672 .probe = mxser_probe,
2673 .remove = __devexit_p(mxser_remove)
2674};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675
Jiri Slaby1c456072008-02-07 00:16:46 -08002676static int __init mxser_module_init(void)
2677{
2678 struct mxser_board *brd;
Jiri Slaby1df00922008-07-25 01:48:22 -07002679 unsigned int b, i, m;
2680 int retval;
Jiri Slaby1c456072008-02-07 00:16:46 -08002681
Jiri Slaby1c456072008-02-07 00:16:46 -08002682 mxvar_sdriver = alloc_tty_driver(MXSER_PORTS + 1);
2683 if (!mxvar_sdriver)
2684 return -ENOMEM;
2685
2686 printk(KERN_INFO "MOXA Smartio/Industio family driver version %s\n",
2687 MXSER_VERSION);
2688
2689 /* Initialize the tty_driver structure */
2690 mxvar_sdriver->owner = THIS_MODULE;
2691 mxvar_sdriver->magic = TTY_DRIVER_MAGIC;
2692 mxvar_sdriver->name = "ttyMI";
2693 mxvar_sdriver->major = ttymajor;
2694 mxvar_sdriver->minor_start = 0;
2695 mxvar_sdriver->num = MXSER_PORTS + 1;
2696 mxvar_sdriver->type = TTY_DRIVER_TYPE_SERIAL;
2697 mxvar_sdriver->subtype = SERIAL_TYPE_NORMAL;
2698 mxvar_sdriver->init_termios = tty_std_termios;
2699 mxvar_sdriver->init_termios.c_cflag = B9600|CS8|CREAD|HUPCL|CLOCAL;
2700 mxvar_sdriver->flags = TTY_DRIVER_REAL_RAW|TTY_DRIVER_DYNAMIC_DEV;
2701 tty_set_operations(mxvar_sdriver, &mxser_ops);
2702
2703 retval = tty_register_driver(mxvar_sdriver);
2704 if (retval) {
2705 printk(KERN_ERR "Couldn't install MOXA Smartio/Industio family "
2706 "tty driver !\n");
2707 goto err_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002709
Jiri Slaby1c456072008-02-07 00:16:46 -08002710 /* Start finding ISA boards here */
Jiri Slaby1df00922008-07-25 01:48:22 -07002711 for (m = 0, b = 0; b < MXSER_BOARDS; b++) {
2712 if (!ioaddr[b])
2713 continue;
Jiri Slaby1c456072008-02-07 00:16:46 -08002714
Jiri Slaby1df00922008-07-25 01:48:22 -07002715 brd = &mxser_boards[m];
Peter Botha96050df2009-06-09 17:16:32 -07002716 retval = mxser_get_ISA_conf(ioaddr[b], brd);
Jiri Slaby1df00922008-07-25 01:48:22 -07002717 if (retval <= 0) {
2718 brd->info = NULL;
2719 continue;
Jiri Slaby1c456072008-02-07 00:16:46 -08002720 }
2721
Jiri Slaby1df00922008-07-25 01:48:22 -07002722 printk(KERN_INFO "mxser: found MOXA %s board (CAP=0x%lx)\n",
2723 brd->info->name, ioaddr[b]);
2724
2725 /* mxser_initbrd will hook ISR. */
2726 if (mxser_initbrd(brd, NULL) < 0) {
2727 brd->info = NULL;
2728 continue;
2729 }
2730
2731 brd->idx = m * MXSER_PORTS_PER_BOARD;
2732 for (i = 0; i < brd->info->nports; i++)
2733 tty_register_device(mxvar_sdriver, brd->idx + i, NULL);
2734
2735 m++;
2736 }
2737
Jiri Slaby1c456072008-02-07 00:16:46 -08002738 retval = pci_register_driver(&mxser_driver);
2739 if (retval) {
Jiri Slaby83766bc2008-07-25 01:48:21 -07002740 printk(KERN_ERR "mxser: can't register pci driver\n");
Jiri Slaby1c456072008-02-07 00:16:46 -08002741 if (!m) {
2742 retval = -ENODEV;
2743 goto err_unr;
2744 } /* else: we have some ISA cards under control */
2745 }
2746
Jiri Slaby1c456072008-02-07 00:16:46 -08002747 return 0;
2748err_unr:
2749 tty_unregister_driver(mxvar_sdriver);
2750err_put:
2751 put_tty_driver(mxvar_sdriver);
2752 return retval;
2753}
2754
2755static void __exit mxser_module_exit(void)
2756{
2757 unsigned int i, j;
2758
Jiri Slaby1c456072008-02-07 00:16:46 -08002759 pci_unregister_driver(&mxser_driver);
2760
2761 for (i = 0; i < MXSER_BOARDS; i++) /* ISA remains */
2762 if (mxser_boards[i].info != NULL)
2763 for (j = 0; j < mxser_boards[i].info->nports; j++)
2764 tty_unregister_device(mxvar_sdriver,
2765 mxser_boards[i].idx + j);
2766 tty_unregister_driver(mxvar_sdriver);
2767 put_tty_driver(mxvar_sdriver);
2768
2769 for (i = 0; i < MXSER_BOARDS; i++)
2770 if (mxser_boards[i].info != NULL)
2771 mxser_release_res(&mxser_boards[i], NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772}
2773
2774module_init(mxser_module_init);
2775module_exit(mxser_module_exit);