blob: 9533f43a30bb0e7bad9873acb85d25cf39e44625 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * mxser.c -- MOXA Smartio/Industio family multiport serial driver.
3 *
Jiri Slaby80ff8a82008-02-07 00:16:51 -08004 * Copyright (C) 1999-2006 Moxa Technologies (support@moxa.com).
5 * Copyright (C) 2006-2008 Jiri Slaby <jirislaby@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Jiri Slaby1c456072008-02-07 00:16:46 -08007 * This code is loosely based on the 1.8 moxa driver which is based on
8 * Linux serial driver, written by Linus Torvalds, Theodore T'so and
9 * others.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -070014 * (at your option) any later version.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * Fed through a cleanup, indent and remove of non 2.6 code by Alan Cox
Alan Cox8eb04cf2008-11-11 14:48:44 +000017 * <alan@lxorguk.ukuu.org.uk>. The original 1.8 code is available on
18 * www.moxa.com.
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * - Fixed x86_64 cleanness
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 */
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/errno.h>
24#include <linux/signal.h>
25#include <linux/sched.h>
26#include <linux/timer.h>
27#include <linux/interrupt.h>
28#include <linux/tty.h>
29#include <linux/tty_flip.h>
30#include <linux/serial.h>
31#include <linux/serial_reg.h>
32#include <linux/major.h>
33#include <linux/string.h>
34#include <linux/fcntl.h>
35#include <linux/ptrace.h>
36#include <linux/gfp.h>
37#include <linux/ioport.h>
38#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/delay.h>
40#include <linux/pci.h>
Jiri Slaby1977f032007-10-18 23:40:25 -070041#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <asm/system.h>
44#include <asm/io.h>
45#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/uaccess.h>
47
48#include "mxser.h"
49
Jiri Slabye129def2008-07-22 11:20:34 +010050#define MXSER_VERSION "2.0.4" /* 1.12 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define MXSERMAJOR 174
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define MXSER_BOARDS 4 /* Max. boards */
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define MXSER_PORTS_PER_BOARD 8 /* Max. ports per board */
Jiri Slaby1c456072008-02-07 00:16:46 -080055#define MXSER_PORTS (MXSER_BOARDS * MXSER_PORTS_PER_BOARD)
56#define MXSER_ISR_PASS_LIMIT 100
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Jiri Slaby1c456072008-02-07 00:16:46 -080058/*CheckIsMoxaMust return value*/
59#define MOXA_OTHER_UART 0x00
60#define MOXA_MUST_MU150_HWID 0x01
61#define MOXA_MUST_MU860_HWID 0x02
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define WAKEUP_CHARS 256
64
65#define UART_MCR_AFE 0x20
66#define UART_LSR_SPECIAL 0x1E
67
Jiri Slabye129def2008-07-22 11:20:34 +010068#define PCI_DEVICE_ID_POS104UL 0x1044
Jiri Slaby1c456072008-02-07 00:16:46 -080069#define PCI_DEVICE_ID_CB108 0x1080
Jiri Slabye129def2008-07-22 11:20:34 +010070#define PCI_DEVICE_ID_CP102UF 0x1023
Jiri Slaby1c456072008-02-07 00:16:46 -080071#define PCI_DEVICE_ID_CB114 0x1142
Jiri Slaby80ff8a82008-02-07 00:16:51 -080072#define PCI_DEVICE_ID_CP114UL 0x1143
Jiri Slaby1c456072008-02-07 00:16:46 -080073#define PCI_DEVICE_ID_CB134I 0x1341
74#define PCI_DEVICE_ID_CP138U 0x1380
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77#define C168_ASIC_ID 1
78#define C104_ASIC_ID 2
79#define C102_ASIC_ID 0xB
80#define CI132_ASIC_ID 4
81#define CI134_ASIC_ID 3
82#define CI104J_ASIC_ID 5
83
Jiri Slaby1c456072008-02-07 00:16:46 -080084#define MXSER_HIGHBAUD 1
85#define MXSER_HAS2 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -070087/* This is only for PCI */
Jiri Slaby1c456072008-02-07 00:16:46 -080088static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 int type;
90 int tx_fifo;
91 int rx_fifo;
92 int xmit_fifo_size;
93 int rx_high_water;
94 int rx_trigger;
95 int rx_low_water;
96 long max_baud;
Jiri Slaby1c456072008-02-07 00:16:46 -080097} Gpci_uart_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 {MOXA_OTHER_UART, 16, 16, 16, 14, 14, 1, 921600L},
99 {MOXA_MUST_MU150_HWID, 64, 64, 64, 48, 48, 16, 230400L},
100 {MOXA_MUST_MU860_HWID, 128, 128, 128, 96, 96, 32, 921600L}
101};
Jiri Slaby1c456072008-02-07 00:16:46 -0800102#define UART_INFO_NUM ARRAY_SIZE(Gpci_uart_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Jiri Slaby1c456072008-02-07 00:16:46 -0800104struct mxser_cardinfo {
105 char *name;
106 unsigned int nports;
107 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108};
109
Jiri Slaby1c456072008-02-07 00:16:46 -0800110static const struct mxser_cardinfo mxser_cards[] = {
111/* 0*/ { "C168 series", 8, },
112 { "C104 series", 4, },
113 { "CI-104J series", 4, },
114 { "C168H/PCI series", 8, },
115 { "C104H/PCI series", 4, },
116/* 5*/ { "C102 series", 4, MXSER_HAS2 }, /* C102-ISA */
117 { "CI-132 series", 4, MXSER_HAS2 },
118 { "CI-134 series", 4, },
119 { "CP-132 series", 2, },
120 { "CP-114 series", 4, },
121/*10*/ { "CT-114 series", 4, },
122 { "CP-102 series", 2, MXSER_HIGHBAUD },
123 { "CP-104U series", 4, },
124 { "CP-168U series", 8, },
125 { "CP-132U series", 2, },
126/*15*/ { "CP-134U series", 4, },
127 { "CP-104JU series", 4, },
128 { "Moxa UC7000 Serial", 8, }, /* RC7000 */
129 { "CP-118U series", 8, },
130 { "CP-102UL series", 2, },
131/*20*/ { "CP-102U series", 2, },
132 { "CP-118EL series", 8, },
133 { "CP-168EL series", 8, },
134 { "CP-104EL series", 4, },
135 { "CB-108 series", 8, },
136/*25*/ { "CB-114 series", 4, },
137 { "CB-134I series", 4, },
138 { "CP-138U series", 8, },
Jiri Slaby80ff8a82008-02-07 00:16:51 -0800139 { "POS-104UL series", 4, },
Jiri Slabye129def2008-07-22 11:20:34 +0100140 { "CP-114UL series", 4, },
141/*30*/ { "CP-102UF series", 2, }
Jiri Slaby1c456072008-02-07 00:16:46 -0800142};
143
144/* driver_data correspond to the lines in the structure above
145 see also ISA probe function before you change something */
146static struct pci_device_id mxser_pcibrds[] = {
147 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_C168), .driver_data = 3 },
148 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_C104), .driver_data = 4 },
149 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP132), .driver_data = 8 },
150 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP114), .driver_data = 9 },
151 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CT114), .driver_data = 10 },
152 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP102), .driver_data = 11 },
153 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP104U), .driver_data = 12 },
154 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP168U), .driver_data = 13 },
155 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP132U), .driver_data = 14 },
156 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP134U), .driver_data = 15 },
157 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP104JU),.driver_data = 16 },
158 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_RC7000), .driver_data = 17 },
159 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP118U), .driver_data = 18 },
160 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP102UL),.driver_data = 19 },
161 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP102U), .driver_data = 20 },
162 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP118EL),.driver_data = 21 },
163 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP168EL),.driver_data = 22 },
164 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP104EL),.driver_data = 23 },
165 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CB108), .driver_data = 24 },
166 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CB114), .driver_data = 25 },
167 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CB134I), .driver_data = 26 },
168 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CP138U), .driver_data = 27 },
169 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_POS104UL), .driver_data = 28 },
Jiri Slaby80ff8a82008-02-07 00:16:51 -0800170 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CP114UL), .driver_data = 29 },
Jiri Slabye129def2008-07-22 11:20:34 +0100171 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CP102UF), .driver_data = 30 },
Jiri Slaby1c456072008-02-07 00:16:46 -0800172 { }
173};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174MODULE_DEVICE_TABLE(pci, mxser_pcibrds);
175
Jiri Slaby1df00922008-07-25 01:48:22 -0700176static unsigned long ioaddr[MXSER_BOARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177static int ttymajor = MXSERMAJOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179/* Variables for insmod */
180
181MODULE_AUTHOR("Casper Yang");
182MODULE_DESCRIPTION("MOXA Smartio/Industio Family Multiport Board Device Driver");
Jiri Slaby1df00922008-07-25 01:48:22 -0700183module_param_array(ioaddr, ulong, NULL, 0);
184MODULE_PARM_DESC(ioaddr, "ISA io addresses to look for a moxa board");
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800185module_param(ttymajor, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186MODULE_LICENSE("GPL");
187
188struct mxser_log {
189 int tick;
190 unsigned long rxcnt[MXSER_PORTS];
191 unsigned long txcnt[MXSER_PORTS];
192};
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194struct mxser_mon {
195 unsigned long rxcnt;
196 unsigned long txcnt;
197 unsigned long up_rxcnt;
198 unsigned long up_txcnt;
199 int modem_status;
200 unsigned char hold_reason;
201};
202
203struct mxser_mon_ext {
204 unsigned long rx_cnt[32];
205 unsigned long tx_cnt[32];
206 unsigned long up_rxcnt[32];
207 unsigned long up_txcnt[32];
208 int modem_status[32];
209
210 long baudrate[32];
211 int databits[32];
212 int stopbits[32];
213 int parity[32];
214 int flowctrl[32];
215 int fifo[32];
216 int iftype[32];
217};
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700218
Jiri Slaby1c456072008-02-07 00:16:46 -0800219struct mxser_board;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Jiri Slaby1c456072008-02-07 00:16:46 -0800221struct mxser_port {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100222 struct tty_port port;
Jiri Slaby1c456072008-02-07 00:16:46 -0800223 struct mxser_board *board;
Jiri Slaby1c456072008-02-07 00:16:46 -0800224
225 unsigned long ioaddr;
226 unsigned long opmode_ioaddr;
227 int max_baud;
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 int rx_high_water;
230 int rx_trigger; /* Rx fifo trigger level */
231 int rx_low_water;
232 int baud_base; /* max. speed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 int type; /* UART type */
Jiri Slaby1c456072008-02-07 00:16:46 -0800234
235 int x_char; /* xon/xoff character */
236 int IER; /* Interrupt Enable Register */
237 int MCR; /* Modem control register */
238
239 unsigned char stop_rx;
240 unsigned char ldisc_stop_rx;
241
242 int custom_divisor;
Jiri Slaby1c456072008-02-07 00:16:46 -0800243 unsigned char err_shadow;
Jiri Slaby1c456072008-02-07 00:16:46 -0800244
Jiri Slaby1c456072008-02-07 00:16:46 -0800245 struct async_icount icount; /* kernel counters for 4 input interrupts */
246 int timeout;
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 int read_status_mask;
249 int ignore_status_mask;
250 int xmit_fifo_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 int xmit_head;
252 int xmit_tail;
253 int xmit_cnt;
Jiri Slaby1c456072008-02-07 00:16:46 -0800254
Alan Cox606d0992006-12-08 02:38:45 -0800255 struct ktermios normal_termios;
Jiri Slaby1c456072008-02-07 00:16:46 -0800256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 struct mxser_mon mon_data;
Jiri Slaby1c456072008-02-07 00:16:46 -0800258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 spinlock_t slock;
Jiri Slaby1c456072008-02-07 00:16:46 -0800260 wait_queue_head_t delta_msr_wait;
261};
262
263struct mxser_board {
264 unsigned int idx;
265 int irq;
266 const struct mxser_cardinfo *info;
267 unsigned long vector;
268 unsigned long vector_mask;
269
270 int chip_flag;
271 int uart_type;
272
273 struct mxser_port ports[MXSER_PORTS_PER_BOARD];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274};
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276struct mxser_mstatus {
277 tcflag_t cflag;
278 int cts;
279 int dsr;
280 int ri;
281 int dcd;
282};
283
Jiri Slaby1c456072008-02-07 00:16:46 -0800284static struct mxser_board mxser_boards[MXSER_BOARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285static struct tty_driver *mxvar_sdriver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286static struct mxser_log mxvar_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287static int mxser_set_baud_method[MXSER_PORTS + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Christoph Hellwig148ff862008-04-30 00:54:29 -0700289static void mxser_enable_must_enchance_mode(unsigned long baseio)
290{
291 u8 oldlcr;
292 u8 efr;
293
294 oldlcr = inb(baseio + UART_LCR);
295 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
296
297 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
298 efr |= MOXA_MUST_EFR_EFRB_ENABLE;
299
300 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
301 outb(oldlcr, baseio + UART_LCR);
302}
303
304static void mxser_disable_must_enchance_mode(unsigned long baseio)
305{
306 u8 oldlcr;
307 u8 efr;
308
309 oldlcr = inb(baseio + UART_LCR);
310 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
311
312 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
313 efr &= ~MOXA_MUST_EFR_EFRB_ENABLE;
314
315 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
316 outb(oldlcr, baseio + UART_LCR);
317}
318
319static void mxser_set_must_xon1_value(unsigned long baseio, u8 value)
320{
321 u8 oldlcr;
322 u8 efr;
323
324 oldlcr = inb(baseio + UART_LCR);
325 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
326
327 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
328 efr &= ~MOXA_MUST_EFR_BANK_MASK;
329 efr |= MOXA_MUST_EFR_BANK0;
330
331 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
332 outb(value, baseio + MOXA_MUST_XON1_REGISTER);
333 outb(oldlcr, baseio + UART_LCR);
334}
335
336static void mxser_set_must_xoff1_value(unsigned long baseio, u8 value)
337{
338 u8 oldlcr;
339 u8 efr;
340
341 oldlcr = inb(baseio + UART_LCR);
342 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
343
344 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
345 efr &= ~MOXA_MUST_EFR_BANK_MASK;
346 efr |= MOXA_MUST_EFR_BANK0;
347
348 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
349 outb(value, baseio + MOXA_MUST_XOFF1_REGISTER);
350 outb(oldlcr, baseio + UART_LCR);
351}
352
353static void mxser_set_must_fifo_value(struct mxser_port *info)
354{
355 u8 oldlcr;
356 u8 efr;
357
358 oldlcr = inb(info->ioaddr + UART_LCR);
359 outb(MOXA_MUST_ENTER_ENCHANCE, info->ioaddr + UART_LCR);
360
361 efr = inb(info->ioaddr + MOXA_MUST_EFR_REGISTER);
362 efr &= ~MOXA_MUST_EFR_BANK_MASK;
363 efr |= MOXA_MUST_EFR_BANK1;
364
365 outb(efr, info->ioaddr + MOXA_MUST_EFR_REGISTER);
366 outb((u8)info->rx_high_water, info->ioaddr + MOXA_MUST_RBRTH_REGISTER);
367 outb((u8)info->rx_trigger, info->ioaddr + MOXA_MUST_RBRTI_REGISTER);
368 outb((u8)info->rx_low_water, info->ioaddr + MOXA_MUST_RBRTL_REGISTER);
369 outb(oldlcr, info->ioaddr + UART_LCR);
370}
371
372static void mxser_set_must_enum_value(unsigned long baseio, u8 value)
373{
374 u8 oldlcr;
375 u8 efr;
376
377 oldlcr = inb(baseio + UART_LCR);
378 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
379
380 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
381 efr &= ~MOXA_MUST_EFR_BANK_MASK;
382 efr |= MOXA_MUST_EFR_BANK2;
383
384 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
385 outb(value, baseio + MOXA_MUST_ENUM_REGISTER);
386 outb(oldlcr, baseio + UART_LCR);
387}
388
389static void mxser_get_must_hardware_id(unsigned long baseio, u8 *pId)
390{
391 u8 oldlcr;
392 u8 efr;
393
394 oldlcr = inb(baseio + UART_LCR);
395 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
396
397 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
398 efr &= ~MOXA_MUST_EFR_BANK_MASK;
399 efr |= MOXA_MUST_EFR_BANK2;
400
401 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
402 *pId = inb(baseio + MOXA_MUST_HWID_REGISTER);
403 outb(oldlcr, baseio + UART_LCR);
404}
405
406static void SET_MOXA_MUST_NO_SOFTWARE_FLOW_CONTROL(unsigned long baseio)
407{
408 u8 oldlcr;
409 u8 efr;
410
411 oldlcr = inb(baseio + UART_LCR);
412 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
413
414 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
415 efr &= ~MOXA_MUST_EFR_SF_MASK;
416
417 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
418 outb(oldlcr, baseio + UART_LCR);
419}
420
421static void mxser_enable_must_tx_software_flow_control(unsigned long baseio)
422{
423 u8 oldlcr;
424 u8 efr;
425
426 oldlcr = inb(baseio + UART_LCR);
427 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
428
429 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
430 efr &= ~MOXA_MUST_EFR_SF_TX_MASK;
431 efr |= MOXA_MUST_EFR_SF_TX1;
432
433 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
434 outb(oldlcr, baseio + UART_LCR);
435}
436
437static void mxser_disable_must_tx_software_flow_control(unsigned long baseio)
438{
439 u8 oldlcr;
440 u8 efr;
441
442 oldlcr = inb(baseio + UART_LCR);
443 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
444
445 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
446 efr &= ~MOXA_MUST_EFR_SF_TX_MASK;
447
448 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
449 outb(oldlcr, baseio + UART_LCR);
450}
451
452static void mxser_enable_must_rx_software_flow_control(unsigned long baseio)
453{
454 u8 oldlcr;
455 u8 efr;
456
457 oldlcr = inb(baseio + UART_LCR);
458 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
459
460 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
461 efr &= ~MOXA_MUST_EFR_SF_RX_MASK;
462 efr |= MOXA_MUST_EFR_SF_RX1;
463
464 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
465 outb(oldlcr, baseio + UART_LCR);
466}
467
468static void mxser_disable_must_rx_software_flow_control(unsigned long baseio)
469{
470 u8 oldlcr;
471 u8 efr;
472
473 oldlcr = inb(baseio + UART_LCR);
474 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
475
476 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
477 efr &= ~MOXA_MUST_EFR_SF_RX_MASK;
478
479 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
480 outb(oldlcr, baseio + UART_LCR);
481}
482
Jesper Juhlb8cc5542007-10-18 03:06:03 -0700483#ifdef CONFIG_PCI
Jiri Slaby1c456072008-02-07 00:16:46 -0800484static int __devinit CheckIsMoxaMust(unsigned long io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
486 u8 oldmcr, hwid;
487 int i;
488
489 outb(0, io + UART_LCR);
Christoph Hellwig148ff862008-04-30 00:54:29 -0700490 mxser_disable_must_enchance_mode(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 oldmcr = inb(io + UART_MCR);
492 outb(0, io + UART_MCR);
Christoph Hellwig148ff862008-04-30 00:54:29 -0700493 mxser_set_must_xon1_value(io, 0x11);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 if ((hwid = inb(io + UART_MCR)) != 0) {
495 outb(oldmcr, io + UART_MCR);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700496 return MOXA_OTHER_UART;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
498
Christoph Hellwig148ff862008-04-30 00:54:29 -0700499 mxser_get_must_hardware_id(io, &hwid);
Jiri Slaby1c456072008-02-07 00:16:46 -0800500 for (i = 1; i < UART_INFO_NUM; i++) { /* 0 = OTHER_UART */
501 if (hwid == Gpci_uart_info[i].type)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700502 return (int)hwid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
504 return MOXA_OTHER_UART;
505}
Jesper Juhlb8cc5542007-10-18 03:06:03 -0700506#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Jiri Slaby1c456072008-02-07 00:16:46 -0800508static void process_txrx_fifo(struct mxser_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
510 int i;
511
512 if ((info->type == PORT_16450) || (info->type == PORT_8250)) {
513 info->rx_trigger = 1;
514 info->rx_high_water = 1;
515 info->rx_low_water = 1;
516 info->xmit_fifo_size = 1;
Jiri Slaby1c456072008-02-07 00:16:46 -0800517 } else
518 for (i = 0; i < UART_INFO_NUM; i++)
519 if (info->board->chip_flag == Gpci_uart_info[i].type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 info->rx_trigger = Gpci_uart_info[i].rx_trigger;
521 info->rx_low_water = Gpci_uart_info[i].rx_low_water;
522 info->rx_high_water = Gpci_uart_info[i].rx_high_water;
523 info->xmit_fifo_size = Gpci_uart_info[i].xmit_fifo_size;
524 break;
525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526}
527
Jiri Slaby1c456072008-02-07 00:16:46 -0800528static unsigned char mxser_get_msr(int baseaddr, int mode, int port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
Jiri Slaby72800df2008-07-25 01:48:20 -0700530 static unsigned char mxser_msr[MXSER_PORTS + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 unsigned char status = 0;
532
533 status = inb(baseaddr + UART_MSR);
534
535 mxser_msr[port] &= 0x0F;
536 mxser_msr[port] |= status;
537 status = mxser_msr[port];
538 if (mode)
539 mxser_msr[port] = 0;
540
541 return status;
542}
543
Alan Cox31f35932009-01-02 13:45:05 +0000544static int mxser_carrier_raised(struct tty_port *port)
545{
546 struct mxser_port *mp = container_of(port, struct mxser_port, port);
547 return (inb(mp->ioaddr + UART_MSR) & UART_MSR_DCD)?1:0;
548}
549
Alan 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;
820 wake_up_interruptible(&port->delta_msr_wait);
821
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 */
975 wake_up_interruptible(&info->delta_msr_wait);
976
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
Cedric Le Goater8cddd702007-02-10 01:46:33 -08001051 /* unmark here for very high baud rate (ex. 921600 bps) used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 tty->low_latency = 1;
1053 return 0;
1054}
1055
Alan Cox978e5952008-04-30 00:53:59 -07001056static void mxser_flush_buffer(struct tty_struct *tty)
1057{
1058 struct mxser_port *info = tty->driver_data;
1059 char fcr;
1060 unsigned long flags;
1061
1062
1063 spin_lock_irqsave(&info->slock, flags);
1064 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
1065
1066 fcr = inb(info->ioaddr + UART_FCR);
1067 outb((fcr | UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT),
1068 info->ioaddr + UART_FCR);
1069 outb(fcr, info->ioaddr + UART_FCR);
1070
1071 spin_unlock_irqrestore(&info->slock, flags);
1072
1073 tty_wakeup(tty);
1074}
1075
1076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077/*
1078 * This routine is called when the serial port gets closed. First, we
1079 * wait for the last remaining data to be sent. Then, we unlink its
1080 * async structure from the interrupt chain if necessary, and we free
1081 * that IRQ if nothing is left in the chain.
1082 */
1083static void mxser_close(struct tty_struct *tty, struct file *filp)
1084{
Jiri Slaby1c456072008-02-07 00:16:46 -08001085 struct mxser_port *info = tty->driver_data;
Alan Coxa6614992009-01-02 13:46:50 +00001086 struct tty_port *port = &info->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
1088 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
1090 if (tty->index == MXSER_PORTS)
1091 return;
1092 if (!info)
Kirill Smelkov6f08b722005-11-07 00:59:23 -08001093 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Alan Coxa6614992009-01-02 13:46:50 +00001095 if (tty_port_close_start(port, tty, filp) == 0)
1096 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 /*
1099 * Save the termios structure, since this port may have
1100 * separate termios for callout and dialin.
Alan Coxa6614992009-01-02 13:46:50 +00001101 *
1102 * FIXME: Can this go ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 */
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001104 if (info->port.flags & ASYNC_NORMAL_ACTIVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 info->normal_termios = *tty->termios;
1106 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 * At this point we stop accepting input. To do this, we
1108 * disable the receive line status interrupts, and tell the
1109 * interrupt driver to stop checking the data ready bit in the
1110 * line status register.
1111 */
1112 info->IER &= ~UART_IER_RLSI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001113 if (info->board->chip_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 info->IER &= ~MOXA_MUST_RECV_ISR;
Jiri Slaby1c456072008-02-07 00:16:46 -08001115
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001116 if (info->port.flags & ASYNC_INITIALIZED) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001117 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 /*
1119 * Before we drop DTR, make sure the UART transmitter
1120 * has completely drained; this is especially
1121 * important if there is a transmit FIFO!
1122 */
1123 timeout = jiffies + HZ;
Jiri Slaby1c456072008-02-07 00:16:46 -08001124 while (!(inb(info->ioaddr + UART_LSR) & UART_LSR_TEMT)) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07001125 schedule_timeout_interruptible(5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 if (time_after(jiffies, timeout))
1127 break;
1128 }
1129 }
Alan Cox216ba022008-10-13 10:40:19 +01001130 mxser_shutdown(tty);
Alan Cox978e5952008-04-30 00:53:59 -07001131 mxser_flush_buffer(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001132
Alan Coxa6614992009-01-02 13:46:50 +00001133 /* Right now the tty_port set is done outside of the close_end helper
1134 as we don't yet have everyone using refcounts */
1135 tty_port_close_end(port, tty);
1136 tty_port_tty_set(port, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137}
1138
1139static int mxser_write(struct tty_struct *tty, const unsigned char *buf, int count)
1140{
1141 int c, total = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08001142 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 unsigned long flags;
1144
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001145 if (!info->port.xmit_buf)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001146 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148 while (1) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001149 c = min_t(int, count, min(SERIAL_XMIT_SIZE - info->xmit_cnt - 1,
1150 SERIAL_XMIT_SIZE - info->xmit_head));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 if (c <= 0)
1152 break;
1153
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001154 memcpy(info->port.xmit_buf + info->xmit_head, buf, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 spin_lock_irqsave(&info->slock, flags);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001156 info->xmit_head = (info->xmit_head + c) &
1157 (SERIAL_XMIT_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 info->xmit_cnt += c;
1159 spin_unlock_irqrestore(&info->slock, flags);
1160
1161 buf += c;
1162 count -= c;
1163 total += c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 }
1165
Jiri Slaby1c456072008-02-07 00:16:46 -08001166 if (info->xmit_cnt && !tty->stopped) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001167 if (!tty->hw_stopped ||
1168 (info->type == PORT_16550A) ||
Jiri Slaby1c456072008-02-07 00:16:46 -08001169 (info->board->chip_flag)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 spin_lock_irqsave(&info->slock, flags);
Jiri Slaby1c456072008-02-07 00:16:46 -08001171 outb(info->IER & ~UART_IER_THRI, info->ioaddr +
1172 UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001174 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 spin_unlock_irqrestore(&info->slock, flags);
1176 }
1177 }
1178 return total;
1179}
1180
Alan Cox0be2ead2008-04-30 00:54:03 -07001181static int mxser_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182{
Jiri Slaby1c456072008-02-07 00:16:46 -08001183 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 unsigned long flags;
1185
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001186 if (!info->port.xmit_buf)
Alan Cox0be2ead2008-04-30 00:54:03 -07001187 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
1189 if (info->xmit_cnt >= SERIAL_XMIT_SIZE - 1)
Alan Cox0be2ead2008-04-30 00:54:03 -07001190 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192 spin_lock_irqsave(&info->slock, flags);
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001193 info->port.xmit_buf[info->xmit_head++] = ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 info->xmit_head &= SERIAL_XMIT_SIZE - 1;
1195 info->xmit_cnt++;
1196 spin_unlock_irqrestore(&info->slock, flags);
Jiri Slaby1c456072008-02-07 00:16:46 -08001197 if (!tty->stopped) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001198 if (!tty->hw_stopped ||
1199 (info->type == PORT_16550A) ||
Jiri Slaby1c456072008-02-07 00:16:46 -08001200 info->board->chip_flag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 spin_lock_irqsave(&info->slock, flags);
Jiri Slaby1c456072008-02-07 00:16:46 -08001202 outb(info->IER & ~UART_IER_THRI, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001204 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 spin_unlock_irqrestore(&info->slock, flags);
1206 }
1207 }
Alan Cox0be2ead2008-04-30 00:54:03 -07001208 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209}
1210
1211
1212static void mxser_flush_chars(struct tty_struct *tty)
1213{
Jiri Slaby1c456072008-02-07 00:16:46 -08001214 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 unsigned long flags;
1216
Jiri Slabyace7dd92008-07-25 01:48:22 -07001217 if (info->xmit_cnt <= 0 || tty->stopped || !info->port.xmit_buf ||
1218 (tty->hw_stopped && info->type != PORT_16550A &&
1219 !info->board->chip_flag))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 return;
1221
1222 spin_lock_irqsave(&info->slock, flags);
1223
Jiri Slaby1c456072008-02-07 00:16:46 -08001224 outb(info->IER & ~UART_IER_THRI, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001226 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228 spin_unlock_irqrestore(&info->slock, flags);
1229}
1230
1231static int mxser_write_room(struct tty_struct *tty)
1232{
Jiri Slaby1c456072008-02-07 00:16:46 -08001233 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 int ret;
1235
1236 ret = SERIAL_XMIT_SIZE - info->xmit_cnt - 1;
Jiri Slabyace7dd92008-07-25 01:48:22 -07001237 return ret < 0 ? 0 : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238}
1239
1240static int mxser_chars_in_buffer(struct tty_struct *tty)
1241{
Jiri Slaby1c456072008-02-07 00:16:46 -08001242 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 return info->xmit_cnt;
1244}
1245
Jiri Slaby1c456072008-02-07 00:16:46 -08001246/*
1247 * ------------------------------------------------------------
1248 * friends of mxser_ioctl()
1249 * ------------------------------------------------------------
1250 */
Alan Cox216ba022008-10-13 10:40:19 +01001251static int mxser_get_serial_info(struct tty_struct *tty,
Jiri Slaby1c456072008-02-07 00:16:46 -08001252 struct serial_struct __user *retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253{
Alan Cox216ba022008-10-13 10:40:19 +01001254 struct mxser_port *info = tty->driver_data;
Jiri Slaby1c456072008-02-07 00:16:46 -08001255 struct serial_struct tmp = {
1256 .type = info->type,
Alan Cox216ba022008-10-13 10:40:19 +01001257 .line = tty->index,
Jiri Slaby1c456072008-02-07 00:16:46 -08001258 .port = info->ioaddr,
1259 .irq = info->board->irq,
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001260 .flags = info->port.flags,
Jiri Slaby1c456072008-02-07 00:16:46 -08001261 .baud_base = info->baud_base,
Alan Cox44b7d1b2008-07-16 21:57:18 +01001262 .close_delay = info->port.close_delay,
1263 .closing_wait = info->port.closing_wait,
Jiri Slaby1c456072008-02-07 00:16:46 -08001264 .custom_divisor = info->custom_divisor,
1265 .hub6 = 0
1266 };
1267 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
1268 return -EFAULT;
1269 return 0;
1270}
1271
Alan Cox216ba022008-10-13 10:40:19 +01001272static int mxser_set_serial_info(struct tty_struct *tty,
Jiri Slaby1c456072008-02-07 00:16:46 -08001273 struct serial_struct __user *new_info)
1274{
Alan Cox216ba022008-10-13 10:40:19 +01001275 struct mxser_port *info = tty->driver_data;
Jiri Slaby1c456072008-02-07 00:16:46 -08001276 struct serial_struct new_serial;
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001277 speed_t baud;
Jiri Slaby1c456072008-02-07 00:16:46 -08001278 unsigned long sl_flags;
1279 unsigned int flags;
1280 int retval = 0;
1281
1282 if (!new_info || !info->ioaddr)
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001283 return -ENODEV;
Jiri Slaby1c456072008-02-07 00:16:46 -08001284 if (copy_from_user(&new_serial, new_info, sizeof(new_serial)))
1285 return -EFAULT;
1286
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001287 if (new_serial.irq != info->board->irq ||
1288 new_serial.port != info->ioaddr)
1289 return -EINVAL;
Jiri Slaby1c456072008-02-07 00:16:46 -08001290
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001291 flags = info->port.flags & ASYNC_SPD_MASK;
Jiri Slaby1c456072008-02-07 00:16:46 -08001292
1293 if (!capable(CAP_SYS_ADMIN)) {
1294 if ((new_serial.baud_base != info->baud_base) ||
Alan Cox44b7d1b2008-07-16 21:57:18 +01001295 (new_serial.close_delay != info->port.close_delay) ||
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001296 ((new_serial.flags & ~ASYNC_USR_MASK) != (info->port.flags & ~ASYNC_USR_MASK)))
Jiri Slaby1c456072008-02-07 00:16:46 -08001297 return -EPERM;
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001298 info->port.flags = ((info->port.flags & ~ASYNC_USR_MASK) |
Jiri Slaby1c456072008-02-07 00:16:46 -08001299 (new_serial.flags & ASYNC_USR_MASK));
1300 } else {
1301 /*
1302 * OK, past this point, all the error checking has been done.
1303 * At this point, we start making changes.....
1304 */
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001305 info->port.flags = ((info->port.flags & ~ASYNC_FLAGS) |
Jiri Slaby1c456072008-02-07 00:16:46 -08001306 (new_serial.flags & ASYNC_FLAGS));
Alan Cox44b7d1b2008-07-16 21:57:18 +01001307 info->port.close_delay = new_serial.close_delay * HZ / 100;
1308 info->port.closing_wait = new_serial.closing_wait * HZ / 100;
Alan Cox216ba022008-10-13 10:40:19 +01001309 tty->low_latency = (info->port.flags & ASYNC_LOW_LATENCY)
1310 ? 1 : 0;
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001311 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST &&
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001312 (new_serial.baud_base != info->baud_base ||
1313 new_serial.custom_divisor !=
1314 info->custom_divisor)) {
1315 baud = new_serial.baud_base / new_serial.custom_divisor;
Alan Cox216ba022008-10-13 10:40:19 +01001316 tty_encode_baud_rate(tty, baud, baud);
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001317 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001318 }
1319
1320 info->type = new_serial.type;
1321
1322 process_txrx_fifo(info);
1323
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001324 if (info->port.flags & ASYNC_INITIALIZED) {
1325 if (flags != (info->port.flags & ASYNC_SPD_MASK)) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001326 spin_lock_irqsave(&info->slock, sl_flags);
Alan Cox216ba022008-10-13 10:40:19 +01001327 mxser_change_speed(tty, NULL);
Jiri Slaby1c456072008-02-07 00:16:46 -08001328 spin_unlock_irqrestore(&info->slock, sl_flags);
1329 }
1330 } else
Alan Cox216ba022008-10-13 10:40:19 +01001331 retval = mxser_startup(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001332
1333 return retval;
1334}
1335
1336/*
1337 * mxser_get_lsr_info - get line status register info
1338 *
1339 * Purpose: Let user call ioctl() to get info when the UART physically
1340 * is emptied. On bus types like RS485, the transmitter must
1341 * release the bus after transmitting. This must be done when
1342 * the transmit shift register is empty, not be done when the
1343 * transmit holding register is empty. This functionality
1344 * allows an RS485 driver to be written in user space.
1345 */
1346static int mxser_get_lsr_info(struct mxser_port *info,
1347 unsigned int __user *value)
1348{
1349 unsigned char status;
1350 unsigned int result;
1351 unsigned long flags;
1352
1353 spin_lock_irqsave(&info->slock, flags);
1354 status = inb(info->ioaddr + UART_LSR);
1355 spin_unlock_irqrestore(&info->slock, flags);
1356 result = ((status & UART_LSR_TEMT) ? TIOCSER_TEMT : 0);
1357 return put_user(result, value);
1358}
1359
Jiri Slaby1c456072008-02-07 00:16:46 -08001360static int mxser_tiocmget(struct tty_struct *tty, struct file *file)
1361{
1362 struct mxser_port *info = tty->driver_data;
1363 unsigned char control, status;
1364 unsigned long flags;
1365
1366
1367 if (tty->index == MXSER_PORTS)
1368 return -ENOIOCTLCMD;
1369 if (test_bit(TTY_IO_ERROR, &tty->flags))
1370 return -EIO;
1371
1372 control = info->MCR;
1373
1374 spin_lock_irqsave(&info->slock, flags);
1375 status = inb(info->ioaddr + UART_MSR);
1376 if (status & UART_MSR_ANY_DELTA)
Alan Cox216ba022008-10-13 10:40:19 +01001377 mxser_check_modem_status(tty, info, status);
Jiri Slaby1c456072008-02-07 00:16:46 -08001378 spin_unlock_irqrestore(&info->slock, flags);
1379 return ((control & UART_MCR_RTS) ? TIOCM_RTS : 0) |
1380 ((control & UART_MCR_DTR) ? TIOCM_DTR : 0) |
1381 ((status & UART_MSR_DCD) ? TIOCM_CAR : 0) |
1382 ((status & UART_MSR_RI) ? TIOCM_RNG : 0) |
1383 ((status & UART_MSR_DSR) ? TIOCM_DSR : 0) |
1384 ((status & UART_MSR_CTS) ? TIOCM_CTS : 0);
1385}
1386
1387static int mxser_tiocmset(struct tty_struct *tty, struct file *file,
1388 unsigned int set, unsigned int clear)
1389{
1390 struct mxser_port *info = tty->driver_data;
1391 unsigned long flags;
1392
1393
1394 if (tty->index == MXSER_PORTS)
1395 return -ENOIOCTLCMD;
1396 if (test_bit(TTY_IO_ERROR, &tty->flags))
1397 return -EIO;
1398
1399 spin_lock_irqsave(&info->slock, flags);
1400
1401 if (set & TIOCM_RTS)
1402 info->MCR |= UART_MCR_RTS;
1403 if (set & TIOCM_DTR)
1404 info->MCR |= UART_MCR_DTR;
1405
1406 if (clear & TIOCM_RTS)
1407 info->MCR &= ~UART_MCR_RTS;
1408 if (clear & TIOCM_DTR)
1409 info->MCR &= ~UART_MCR_DTR;
1410
1411 outb(info->MCR, info->ioaddr + UART_MCR);
1412 spin_unlock_irqrestore(&info->slock, flags);
1413 return 0;
1414}
1415
1416static int __init mxser_program_mode(int port)
1417{
1418 int id, i, j, n;
1419
1420 outb(0, port);
1421 outb(0, port);
1422 outb(0, port);
1423 (void)inb(port);
1424 (void)inb(port);
1425 outb(0, port);
1426 (void)inb(port);
1427
1428 id = inb(port + 1) & 0x1F;
1429 if ((id != C168_ASIC_ID) &&
1430 (id != C104_ASIC_ID) &&
1431 (id != C102_ASIC_ID) &&
1432 (id != CI132_ASIC_ID) &&
1433 (id != CI134_ASIC_ID) &&
1434 (id != CI104J_ASIC_ID))
1435 return -1;
1436 for (i = 0, j = 0; i < 4; i++) {
1437 n = inb(port + 2);
1438 if (n == 'M') {
1439 j = 1;
1440 } else if ((j == 1) && (n == 1)) {
1441 j = 2;
1442 break;
1443 } else
1444 j = 0;
1445 }
1446 if (j != 2)
1447 id = -2;
1448 return id;
1449}
1450
1451static void __init mxser_normal_mode(int port)
1452{
1453 int i, n;
1454
1455 outb(0xA5, port + 1);
1456 outb(0x80, port + 3);
1457 outb(12, port + 0); /* 9600 bps */
1458 outb(0, port + 1);
1459 outb(0x03, port + 3); /* 8 data bits */
1460 outb(0x13, port + 4); /* loop back mode */
1461 for (i = 0; i < 16; i++) {
1462 n = inb(port + 5);
1463 if ((n & 0x61) == 0x60)
1464 break;
1465 if ((n & 1) == 1)
1466 (void)inb(port);
1467 }
1468 outb(0x00, port + 4);
1469}
1470
1471#define CHIP_SK 0x01 /* Serial Data Clock in Eprom */
1472#define CHIP_DO 0x02 /* Serial Data Output in Eprom */
1473#define CHIP_CS 0x04 /* Serial Chip Select in Eprom */
1474#define CHIP_DI 0x08 /* Serial Data Input in Eprom */
1475#define EN_CCMD 0x000 /* Chip's command register */
1476#define EN0_RSARLO 0x008 /* Remote start address reg 0 */
1477#define EN0_RSARHI 0x009 /* Remote start address reg 1 */
1478#define EN0_RCNTLO 0x00A /* Remote byte count reg WR */
1479#define EN0_RCNTHI 0x00B /* Remote byte count reg WR */
1480#define EN0_DCFG 0x00E /* Data configuration reg WR */
1481#define EN0_PORT 0x010 /* Rcv missed frame error counter RD */
1482#define ENC_PAGE0 0x000 /* Select page 0 of chip registers */
1483#define ENC_PAGE3 0x0C0 /* Select page 3 of chip registers */
1484static int __init mxser_read_register(int port, unsigned short *regs)
1485{
1486 int i, k, value, id;
1487 unsigned int j;
1488
1489 id = mxser_program_mode(port);
1490 if (id < 0)
1491 return id;
1492 for (i = 0; i < 14; i++) {
1493 k = (i & 0x3F) | 0x180;
1494 for (j = 0x100; j > 0; j >>= 1) {
1495 outb(CHIP_CS, port);
1496 if (k & j) {
1497 outb(CHIP_CS | CHIP_DO, port);
1498 outb(CHIP_CS | CHIP_DO | CHIP_SK, port); /* A? bit of read */
1499 } else {
1500 outb(CHIP_CS, port);
1501 outb(CHIP_CS | CHIP_SK, port); /* A? bit of read */
1502 }
1503 }
1504 (void)inb(port);
1505 value = 0;
1506 for (k = 0, j = 0x8000; k < 16; k++, j >>= 1) {
1507 outb(CHIP_CS, port);
1508 outb(CHIP_CS | CHIP_SK, port);
1509 if (inb(port) & CHIP_DI)
1510 value |= j;
1511 }
1512 regs[i] = value;
1513 outb(0, port);
1514 }
1515 mxser_normal_mode(port);
1516 return id;
1517}
1518
1519static int mxser_ioctl_special(unsigned int cmd, void __user *argp)
1520{
1521 struct mxser_port *port;
Alan Cox216ba022008-10-13 10:40:19 +01001522 struct tty_struct *tty;
Jiri Slaby1c456072008-02-07 00:16:46 -08001523 int result, status;
1524 unsigned int i, j;
Alan Cox9d6d1622008-04-30 00:53:20 -07001525 int ret = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08001526
1527 switch (cmd) {
1528 case MOXA_GET_MAJOR:
Jiri Slaby8f3d1372008-07-29 22:33:38 -07001529 if (printk_ratelimit())
1530 printk(KERN_WARNING "mxser: '%s' uses deprecated ioctl "
1531 "%x (GET_MAJOR), fix your userspace\n",
1532 current->comm, cmd);
Jiri Slaby1c456072008-02-07 00:16:46 -08001533 return put_user(ttymajor, (int __user *)argp);
1534
1535 case MOXA_CHKPORTENABLE:
1536 result = 0;
Alan Cox9d6d1622008-04-30 00:53:20 -07001537 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001538 for (i = 0; i < MXSER_BOARDS; i++)
1539 for (j = 0; j < MXSER_PORTS_PER_BOARD; j++)
1540 if (mxser_boards[i].ports[j].ioaddr)
1541 result |= (1 << i);
Alan Cox9d6d1622008-04-30 00:53:20 -07001542 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001543 return put_user(result, (unsigned long __user *)argp);
1544 case MOXA_GETDATACOUNT:
Alan Cox9d6d1622008-04-30 00:53:20 -07001545 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001546 if (copy_to_user(argp, &mxvar_log, sizeof(mxvar_log)))
Alan Cox9d6d1622008-04-30 00:53:20 -07001547 ret = -EFAULT;
1548 unlock_kernel();
1549 return ret;
Jiri Slaby72800df2008-07-25 01:48:20 -07001550 case MOXA_GETMSTATUS: {
1551 struct mxser_mstatus ms, __user *msu = argp;
Alan Cox9d6d1622008-04-30 00:53:20 -07001552 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001553 for (i = 0; i < MXSER_BOARDS; i++)
1554 for (j = 0; j < MXSER_PORTS_PER_BOARD; j++) {
1555 port = &mxser_boards[i].ports[j];
Jiri Slaby72800df2008-07-25 01:48:20 -07001556 memset(&ms, 0, sizeof(ms));
Jiri Slaby1c456072008-02-07 00:16:46 -08001557
Jiri Slaby72800df2008-07-25 01:48:20 -07001558 if (!port->ioaddr)
1559 goto copy;
Alan Cox216ba022008-10-13 10:40:19 +01001560
1561 tty = tty_port_tty_get(&port->port);
Jiri Slaby1c456072008-02-07 00:16:46 -08001562
Alan Cox216ba022008-10-13 10:40:19 +01001563 if (!tty || !tty->termios)
Jiri Slaby72800df2008-07-25 01:48:20 -07001564 ms.cflag = port->normal_termios.c_cflag;
Jiri Slaby1c456072008-02-07 00:16:46 -08001565 else
Alan Cox216ba022008-10-13 10:40:19 +01001566 ms.cflag = tty->termios->c_cflag;
1567 tty_kref_put(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001568 status = inb(port->ioaddr + UART_MSR);
Jiri Slaby72800df2008-07-25 01:48:20 -07001569 if (status & UART_MSR_DCD)
1570 ms.dcd = 1;
1571 if (status & UART_MSR_DSR)
1572 ms.dsr = 1;
1573 if (status & UART_MSR_CTS)
1574 ms.cts = 1;
1575 copy:
1576 if (copy_to_user(msu, &ms, sizeof(ms))) {
1577 unlock_kernel();
1578 return -EFAULT;
1579 }
1580 msu++;
Jiri Slaby1c456072008-02-07 00:16:46 -08001581 }
Alan Cox9d6d1622008-04-30 00:53:20 -07001582 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001583 return 0;
Jiri Slaby72800df2008-07-25 01:48:20 -07001584 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001585 case MOXA_ASPP_MON_EXT: {
Jiri Slaby72800df2008-07-25 01:48:20 -07001586 struct mxser_mon_ext *me; /* it's 2k, stack unfriendly */
1587 unsigned int cflag, iflag, p;
1588 u8 opmode;
1589
1590 me = kzalloc(sizeof(*me), GFP_KERNEL);
1591 if (!me)
1592 return -ENOMEM;
Jiri Slaby1c456072008-02-07 00:16:46 -08001593
Alan Cox9d6d1622008-04-30 00:53:20 -07001594 lock_kernel();
Jiri Slaby72800df2008-07-25 01:48:20 -07001595 for (i = 0, p = 0; i < MXSER_BOARDS; i++) {
1596 for (j = 0; j < MXSER_PORTS_PER_BOARD; j++, p++) {
1597 if (p >= ARRAY_SIZE(me->rx_cnt)) {
1598 i = MXSER_BOARDS;
1599 break;
1600 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001601 port = &mxser_boards[i].ports[j];
1602 if (!port->ioaddr)
1603 continue;
1604
Jiri Slaby72800df2008-07-25 01:48:20 -07001605 status = mxser_get_msr(port->ioaddr, 0, p);
Jiri Slaby1c456072008-02-07 00:16:46 -08001606
1607 if (status & UART_MSR_TERI)
1608 port->icount.rng++;
1609 if (status & UART_MSR_DDSR)
1610 port->icount.dsr++;
1611 if (status & UART_MSR_DDCD)
1612 port->icount.dcd++;
1613 if (status & UART_MSR_DCTS)
1614 port->icount.cts++;
1615
1616 port->mon_data.modem_status = status;
Jiri Slaby72800df2008-07-25 01:48:20 -07001617 me->rx_cnt[p] = port->mon_data.rxcnt;
1618 me->tx_cnt[p] = port->mon_data.txcnt;
1619 me->up_rxcnt[p] = port->mon_data.up_rxcnt;
1620 me->up_txcnt[p] = port->mon_data.up_txcnt;
1621 me->modem_status[p] =
Jiri Slaby1c456072008-02-07 00:16:46 -08001622 port->mon_data.modem_status;
Alan Cox216ba022008-10-13 10:40:19 +01001623 tty = tty_port_tty_get(&port->port);
Jiri Slaby1c456072008-02-07 00:16:46 -08001624
Alan Cox216ba022008-10-13 10:40:19 +01001625 if (!tty || !tty->termios) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001626 cflag = port->normal_termios.c_cflag;
1627 iflag = port->normal_termios.c_iflag;
Alan Cox216ba022008-10-13 10:40:19 +01001628 me->baudrate[p] = tty_termios_baud_rate(&port->normal_termios);
Jiri Slaby1c456072008-02-07 00:16:46 -08001629 } else {
Alan Cox216ba022008-10-13 10:40:19 +01001630 cflag = tty->termios->c_cflag;
1631 iflag = tty->termios->c_iflag;
1632 me->baudrate[p] = tty_get_baud_rate(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001633 }
Alan Cox216ba022008-10-13 10:40:19 +01001634 tty_kref_put(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001635
Jiri Slaby72800df2008-07-25 01:48:20 -07001636 me->databits[p] = cflag & CSIZE;
1637 me->stopbits[p] = cflag & CSTOPB;
1638 me->parity[p] = cflag & (PARENB | PARODD |
1639 CMSPAR);
Jiri Slaby1c456072008-02-07 00:16:46 -08001640
1641 if (cflag & CRTSCTS)
Jiri Slaby72800df2008-07-25 01:48:20 -07001642 me->flowctrl[p] |= 0x03;
Jiri Slaby1c456072008-02-07 00:16:46 -08001643
1644 if (iflag & (IXON | IXOFF))
Jiri Slaby72800df2008-07-25 01:48:20 -07001645 me->flowctrl[p] |= 0x0C;
Jiri Slaby1c456072008-02-07 00:16:46 -08001646
1647 if (port->type == PORT_16550A)
Jiri Slaby72800df2008-07-25 01:48:20 -07001648 me->fifo[p] = 1;
Jiri Slaby1c456072008-02-07 00:16:46 -08001649
Jiri Slaby72800df2008-07-25 01:48:20 -07001650 opmode = inb(port->opmode_ioaddr) >>
1651 ((p % 4) * 2);
Jiri Slaby1c456072008-02-07 00:16:46 -08001652 opmode &= OP_MODE_MASK;
Jiri Slaby72800df2008-07-25 01:48:20 -07001653 me->iftype[p] = opmode;
Jiri Slaby1c456072008-02-07 00:16:46 -08001654 }
Alan Cox9d6d1622008-04-30 00:53:20 -07001655 }
1656 unlock_kernel();
Jiri Slaby72800df2008-07-25 01:48:20 -07001657 if (copy_to_user(argp, me, sizeof(*me)))
1658 ret = -EFAULT;
1659 kfree(me);
1660 return ret;
Alan Cox9d6d1622008-04-30 00:53:20 -07001661 }
1662 default:
Jiri Slaby1c456072008-02-07 00:16:46 -08001663 return -ENOIOCTLCMD;
1664 }
1665 return 0;
1666}
1667
1668static int mxser_cflags_changed(struct mxser_port *info, unsigned long arg,
1669 struct async_icount *cprev)
1670{
1671 struct async_icount cnow;
1672 unsigned long flags;
1673 int ret;
1674
1675 spin_lock_irqsave(&info->slock, flags);
1676 cnow = info->icount; /* atomic copy */
1677 spin_unlock_irqrestore(&info->slock, flags);
1678
1679 ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
1680 ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
1681 ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
1682 ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts));
1683
1684 *cprev = cnow;
1685
1686 return ret;
1687}
1688
1689static int mxser_ioctl(struct tty_struct *tty, struct file *file,
1690 unsigned int cmd, unsigned long arg)
1691{
1692 struct mxser_port *info = tty->driver_data;
1693 struct async_icount cnow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 unsigned long flags;
1695 void __user *argp = (void __user *)arg;
Jiri Slaby1c456072008-02-07 00:16:46 -08001696 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
1698 if (tty->index == MXSER_PORTS)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001699 return mxser_ioctl_special(cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 if (cmd == MOXA_SET_OP_MODE || cmd == MOXA_GET_OP_MODE) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001702 int p;
1703 unsigned long opmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 static unsigned char ModeMask[] = { 0xfc, 0xf3, 0xcf, 0x3f };
1705 int shiftbit;
1706 unsigned char val, mask;
1707
Jiri Slaby1c456072008-02-07 00:16:46 -08001708 p = tty->index % 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 if (cmd == MOXA_SET_OP_MODE) {
1710 if (get_user(opmode, (int __user *) argp))
1711 return -EFAULT;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001712 if (opmode != RS232_MODE &&
1713 opmode != RS485_2WIRE_MODE &&
1714 opmode != RS422_MODE &&
1715 opmode != RS485_4WIRE_MODE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 return -EFAULT;
Alan Cox9d6d1622008-04-30 00:53:20 -07001717 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 mask = ModeMask[p];
1719 shiftbit = p * 2;
1720 val = inb(info->opmode_ioaddr);
1721 val &= mask;
1722 val |= (opmode << shiftbit);
1723 outb(val, info->opmode_ioaddr);
Alan Cox9d6d1622008-04-30 00:53:20 -07001724 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 } else {
Alan Cox9d6d1622008-04-30 00:53:20 -07001726 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 shiftbit = p * 2;
1728 opmode = inb(info->opmode_ioaddr) >> shiftbit;
1729 opmode &= OP_MODE_MASK;
Alan Cox9d6d1622008-04-30 00:53:20 -07001730 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001731 if (put_user(opmode, (int __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 return -EFAULT;
1733 }
1734 return 0;
1735 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Jiri Slaby1c456072008-02-07 00:16:46 -08001737 if (cmd != TIOCGSERIAL && cmd != TIOCMIWAIT && cmd != TIOCGICOUNT &&
1738 test_bit(TTY_IO_ERROR, &tty->flags))
1739 return -EIO;
1740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 case TIOCGSERIAL:
Alan Cox9d6d1622008-04-30 00:53:20 -07001743 lock_kernel();
Alan Cox216ba022008-10-13 10:40:19 +01001744 retval = mxser_get_serial_info(tty, argp);
Alan Cox9d6d1622008-04-30 00:53:20 -07001745 unlock_kernel();
1746 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 case TIOCSSERIAL:
Alan Cox9d6d1622008-04-30 00:53:20 -07001748 lock_kernel();
Alan Cox216ba022008-10-13 10:40:19 +01001749 retval = mxser_set_serial_info(tty, argp);
Alan Cox9d6d1622008-04-30 00:53:20 -07001750 unlock_kernel();
1751 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 case TIOCSERGETLSR: /* Get line status register */
Alan Cox9d6d1622008-04-30 00:53:20 -07001753 return mxser_get_lsr_info(info, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 /*
1755 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1756 * - mask passed in arg for lines of interest
1757 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1758 * Caller should use TIOCGICOUNT to see which one it was
1759 */
Jiri Slabyfc838152007-04-23 14:41:04 -07001760 case TIOCMIWAIT:
1761 spin_lock_irqsave(&info->slock, flags);
1762 cnow = info->icount; /* note the counters on entry */
1763 spin_unlock_irqrestore(&info->slock, flags);
1764
Jiri Slaby1c456072008-02-07 00:16:46 -08001765 return wait_event_interruptible(info->delta_msr_wait,
1766 mxser_cflags_changed(info, arg, &cnow));
1767 /*
1768 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1769 * Return: write counters to the user passed counter struct
1770 * NB: both 1->0 and 0->1 transitions are counted except for
1771 * RI where only 0->1 is counted.
1772 */
Jiri Slaby41aee9a2008-07-25 01:48:19 -07001773 case TIOCGICOUNT: {
1774 struct serial_icounter_struct icnt = { 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 spin_lock_irqsave(&info->slock, flags);
1776 cnow = info->icount;
1777 spin_unlock_irqrestore(&info->slock, flags);
Jiri Slaby41aee9a2008-07-25 01:48:19 -07001778
1779 icnt.frame = cnow.frame;
1780 icnt.brk = cnow.brk;
1781 icnt.overrun = cnow.overrun;
1782 icnt.buf_overrun = cnow.buf_overrun;
1783 icnt.parity = cnow.parity;
1784 icnt.rx = cnow.rx;
1785 icnt.tx = cnow.tx;
1786 icnt.cts = cnow.cts;
1787 icnt.dsr = cnow.dsr;
1788 icnt.rng = cnow.rng;
1789 icnt.dcd = cnow.dcd;
1790
1791 return copy_to_user(argp, &icnt, sizeof(icnt)) ? -EFAULT : 0;
1792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 case MOXA_HighSpeedOn:
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001794 return put_user(info->baud_base != 115200 ? 1 : 0, (int __user *)argp);
Jiri Slaby1c456072008-02-07 00:16:46 -08001795 case MOXA_SDS_RSTICOUNTER:
Alan Cox9d6d1622008-04-30 00:53:20 -07001796 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001797 info->mon_data.rxcnt = 0;
1798 info->mon_data.txcnt = 0;
Alan Cox9d6d1622008-04-30 00:53:20 -07001799 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 return 0;
1801
1802 case MOXA_ASPP_OQUEUE:{
Jiri Slaby1c456072008-02-07 00:16:46 -08001803 int len, lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
Alan Cox9d6d1622008-04-30 00:53:20 -07001805 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001806 len = mxser_chars_in_buffer(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001807 lsr = inb(info->ioaddr + UART_LSR) & UART_LSR_TEMT;
Jiri Slaby1c456072008-02-07 00:16:46 -08001808 len += (lsr ? 0 : 1);
Alan Cox9d6d1622008-04-30 00:53:20 -07001809 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
Jiri Slaby1c456072008-02-07 00:16:46 -08001811 return put_user(len, (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001813 case MOXA_ASPP_MON: {
1814 int mcr, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
Alan Cox9d6d1622008-04-30 00:53:20 -07001816 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001817 status = mxser_get_msr(info->ioaddr, 1, tty->index);
Alan Cox216ba022008-10-13 10:40:19 +01001818 mxser_check_modem_status(tty, info, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
Jiri Slaby1c456072008-02-07 00:16:46 -08001820 mcr = inb(info->ioaddr + UART_MCR);
1821 if (mcr & MOXA_MUST_MCR_XON_FLAG)
1822 info->mon_data.hold_reason &= ~NPPI_NOTIFY_XOFFHOLD;
1823 else
1824 info->mon_data.hold_reason |= NPPI_NOTIFY_XOFFHOLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
Jiri Slaby1c456072008-02-07 00:16:46 -08001826 if (mcr & MOXA_MUST_MCR_TX_XON)
1827 info->mon_data.hold_reason &= ~NPPI_NOTIFY_XOFFXENT;
1828 else
1829 info->mon_data.hold_reason |= NPPI_NOTIFY_XOFFXENT;
1830
Alan Cox216ba022008-10-13 10:40:19 +01001831 if (tty->hw_stopped)
Jiri Slaby1c456072008-02-07 00:16:46 -08001832 info->mon_data.hold_reason |= NPPI_NOTIFY_CTSHOLD;
1833 else
1834 info->mon_data.hold_reason &= ~NPPI_NOTIFY_CTSHOLD;
Alan Cox9d6d1622008-04-30 00:53:20 -07001835 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001836 if (copy_to_user(argp, &info->mon_data,
1837 sizeof(struct mxser_mon)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 return -EFAULT;
Jiri Slaby1c456072008-02-07 00:16:46 -08001839
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 return 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08001841 }
1842 case MOXA_ASPP_LSTATUS: {
1843 if (put_user(info->err_shadow, (unsigned char __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Jiri Slaby1c456072008-02-07 00:16:46 -08001846 info->err_shadow = 0;
1847 return 0;
1848 }
1849 case MOXA_SET_BAUD_METHOD: {
1850 int method;
1851
1852 if (get_user(method, (int __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 return -EFAULT;
Jiri Slaby1c456072008-02-07 00:16:46 -08001854 mxser_set_baud_method[tty->index] = method;
1855 return put_user(method, (int __user *)argp);
1856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 default:
1858 return -ENOIOCTLCMD;
1859 }
1860 return 0;
1861}
1862
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863static void mxser_stoprx(struct tty_struct *tty)
1864{
Jiri Slaby1c456072008-02-07 00:16:46 -08001865 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
1867 info->ldisc_stop_rx = 1;
1868 if (I_IXOFF(tty)) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001869 if (info->board->chip_flag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 info->IER &= ~MOXA_MUST_RECV_ISR;
Jiri Slaby1c456072008-02-07 00:16:46 -08001871 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 info->x_char = STOP_CHAR(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001874 outb(0, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001876 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 }
1878 }
1879
Alan Cox216ba022008-10-13 10:40:19 +01001880 if (tty->termios->c_cflag & CRTSCTS) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001881 info->MCR &= ~UART_MCR_RTS;
1882 outb(info->MCR, info->ioaddr + UART_MCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 }
1884}
1885
1886/*
1887 * This routine is called by the upper-layer tty layer to signal that
1888 * incoming characters should be throttled.
1889 */
1890static void mxser_throttle(struct tty_struct *tty)
1891{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 mxser_stoprx(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893}
1894
1895static void mxser_unthrottle(struct tty_struct *tty)
1896{
Jiri Slaby1c456072008-02-07 00:16:46 -08001897 struct mxser_port *info = tty->driver_data;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001898
Jiri Slaby1c456072008-02-07 00:16:46 -08001899 /* startrx */
1900 info->ldisc_stop_rx = 0;
1901 if (I_IXOFF(tty)) {
1902 if (info->x_char)
1903 info->x_char = 0;
1904 else {
1905 if (info->board->chip_flag) {
1906 info->IER |= MOXA_MUST_RECV_ISR;
1907 outb(info->IER, info->ioaddr + UART_IER);
1908 } else {
1909 info->x_char = START_CHAR(tty);
1910 outb(0, info->ioaddr + UART_IER);
1911 info->IER |= UART_IER_THRI;
1912 outb(info->IER, info->ioaddr + UART_IER);
1913 }
1914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 }
1916
Alan Cox216ba022008-10-13 10:40:19 +01001917 if (tty->termios->c_cflag & CRTSCTS) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001918 info->MCR |= UART_MCR_RTS;
1919 outb(info->MCR, info->ioaddr + UART_MCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 }
1921}
1922
1923/*
1924 * mxser_stop() and mxser_start()
1925 *
1926 * This routines are called before setting or resetting tty->stopped.
1927 * They enable or disable transmitter interrupts, as necessary.
1928 */
1929static void mxser_stop(struct tty_struct *tty)
1930{
Jiri Slaby1c456072008-02-07 00:16:46 -08001931 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 unsigned long flags;
1933
1934 spin_lock_irqsave(&info->slock, flags);
1935 if (info->IER & UART_IER_THRI) {
1936 info->IER &= ~UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001937 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 }
1939 spin_unlock_irqrestore(&info->slock, flags);
1940}
1941
1942static void mxser_start(struct tty_struct *tty)
1943{
Jiri Slaby1c456072008-02-07 00:16:46 -08001944 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 unsigned long flags;
1946
1947 spin_lock_irqsave(&info->slock, flags);
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001948 if (info->xmit_cnt && info->port.xmit_buf) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001949 outb(info->IER & ~UART_IER_THRI, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001951 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 }
1953 spin_unlock_irqrestore(&info->slock, flags);
1954}
1955
Jiri Slaby1c456072008-02-07 00:16:46 -08001956static void mxser_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
1957{
1958 struct mxser_port *info = tty->driver_data;
1959 unsigned long flags;
1960
1961 spin_lock_irqsave(&info->slock, flags);
Alan Cox216ba022008-10-13 10:40:19 +01001962 mxser_change_speed(tty, old_termios);
Jiri Slaby1c456072008-02-07 00:16:46 -08001963 spin_unlock_irqrestore(&info->slock, flags);
1964
1965 if ((old_termios->c_cflag & CRTSCTS) &&
1966 !(tty->termios->c_cflag & CRTSCTS)) {
1967 tty->hw_stopped = 0;
1968 mxser_start(tty);
1969 }
1970
1971 /* Handle sw stopped */
1972 if ((old_termios->c_iflag & IXON) &&
1973 !(tty->termios->c_iflag & IXON)) {
1974 tty->stopped = 0;
1975
1976 if (info->board->chip_flag) {
1977 spin_lock_irqsave(&info->slock, flags);
Christoph Hellwig148ff862008-04-30 00:54:29 -07001978 mxser_disable_must_rx_software_flow_control(
1979 info->ioaddr);
Jiri Slaby1c456072008-02-07 00:16:46 -08001980 spin_unlock_irqrestore(&info->slock, flags);
1981 }
1982
1983 mxser_start(tty);
1984 }
1985}
1986
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987/*
1988 * mxser_wait_until_sent() --- wait until the transmitter is empty
1989 */
1990static void mxser_wait_until_sent(struct tty_struct *tty, int timeout)
1991{
Jiri Slaby1c456072008-02-07 00:16:46 -08001992 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 unsigned long orig_jiffies, char_time;
1994 int lsr;
1995
1996 if (info->type == PORT_UNKNOWN)
1997 return;
1998
1999 if (info->xmit_fifo_size == 0)
2000 return; /* Just in case.... */
2001
2002 orig_jiffies = jiffies;
2003 /*
2004 * Set the check interval to be 1/5 of the estimated time to
2005 * send a single character, and make it at least 1. The check
2006 * interval should also be less than the timeout.
2007 *
2008 * Note: we have to use pretty tight timings here to satisfy
2009 * the NIST-PCTS.
2010 */
2011 char_time = (info->timeout - HZ / 50) / info->xmit_fifo_size;
2012 char_time = char_time / 5;
2013 if (char_time == 0)
2014 char_time = 1;
2015 if (timeout && timeout < char_time)
2016 char_time = timeout;
2017 /*
2018 * If the transmitter hasn't cleared in twice the approximate
2019 * amount of time to send the entire FIFO, it probably won't
2020 * ever clear. This assumes the UART isn't doing flow
2021 * control, which is currently the case. Hence, if it ever
2022 * takes longer than info->timeout, this is probably due to a
2023 * UART bug of some kind. So, we clamp the timeout parameter at
2024 * 2*info->timeout.
2025 */
2026 if (!timeout || timeout > 2 * info->timeout)
2027 timeout = 2 * info->timeout;
2028#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002029 printk(KERN_DEBUG "In rs_wait_until_sent(%d) check=%lu...",
2030 timeout, char_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 printk("jiff=%lu...", jiffies);
2032#endif
Alan Cox978e5952008-04-30 00:53:59 -07002033 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08002034 while (!((lsr = inb(info->ioaddr + UART_LSR)) & UART_LSR_TEMT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2036 printk("lsr = %d (jiff=%lu)...", lsr, jiffies);
2037#endif
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07002038 schedule_timeout_interruptible(char_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 if (signal_pending(current))
2040 break;
2041 if (timeout && time_after(jiffies, orig_jiffies + timeout))
2042 break;
2043 }
2044 set_current_state(TASK_RUNNING);
Alan Cox978e5952008-04-30 00:53:59 -07002045 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
2047#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2048 printk("lsr = %d (jiff=%lu)...done\n", lsr, jiffies);
2049#endif
2050}
2051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052/*
2053 * This routine is called by tty_hangup() when a hangup is signaled.
2054 */
Jiri Slaby1c456072008-02-07 00:16:46 -08002055static void mxser_hangup(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056{
Jiri Slaby1c456072008-02-07 00:16:46 -08002057 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
2059 mxser_flush_buffer(tty);
Alan Cox216ba022008-10-13 10:40:19 +01002060 mxser_shutdown(tty);
Alan Cox3b6826b2009-01-02 13:45:58 +00002061 tty_port_hangup(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062}
2063
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064/*
2065 * mxser_rs_break() --- routine which turns the break handling on or off
2066 */
Alan Cox9e989662008-07-22 11:18:03 +01002067static int mxser_rs_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068{
Jiri Slaby1c456072008-02-07 00:16:46 -08002069 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 unsigned long flags;
2071
2072 spin_lock_irqsave(&info->slock, flags);
2073 if (break_state == -1)
Jiri Slaby1c456072008-02-07 00:16:46 -08002074 outb(inb(info->ioaddr + UART_LCR) | UART_LCR_SBC,
2075 info->ioaddr + UART_LCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 else
Jiri Slaby1c456072008-02-07 00:16:46 -08002077 outb(inb(info->ioaddr + UART_LCR) & ~UART_LCR_SBC,
2078 info->ioaddr + UART_LCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 spin_unlock_irqrestore(&info->slock, flags);
Alan Cox9e989662008-07-22 11:18:03 +01002080 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081}
2082
Alan Cox216ba022008-10-13 10:40:19 +01002083static void mxser_receive_chars(struct tty_struct *tty,
2084 struct mxser_port *port, int *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 unsigned char ch, gdl;
2087 int ignored = 0;
2088 int cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 int recv_room;
2090 int max = 256;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
Alan Cox33f0f882006-01-09 20:54:13 -08002092 recv_room = tty->receive_room;
Alan Cox216ba022008-10-13 10:40:19 +01002093 if (recv_room == 0 && !port->ldisc_stop_rx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 mxser_stoprx(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08002095 if (port->board->chip_flag != MOXA_OTHER_UART) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Jiri Slaby1c456072008-02-07 00:16:46 -08002097 if (*status & UART_LSR_SPECIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 goto intr_old;
Jiri Slaby1c456072008-02-07 00:16:46 -08002099 if (port->board->chip_flag == MOXA_MUST_MU860_HWID &&
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002100 (*status & MOXA_MUST_LSR_RERR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 goto intr_old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 if (*status & MOXA_MUST_LSR_RERR)
2103 goto intr_old;
2104
Jiri Slaby1c456072008-02-07 00:16:46 -08002105 gdl = inb(port->ioaddr + MOXA_MUST_GDL_REGISTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Jiri Slaby1c456072008-02-07 00:16:46 -08002107 if (port->board->chip_flag == MOXA_MUST_MU150_HWID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 gdl &= MOXA_MUST_GDL_MASK;
2109 if (gdl >= recv_room) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002110 if (!port->ldisc_stop_rx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 mxser_stoprx(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 }
2113 while (gdl--) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002114 ch = inb(port->ioaddr + UART_RX);
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002115 tty_insert_flip_char(tty, ch, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 }
2118 goto end_intr;
2119 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002120intr_old:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
2122 do {
2123 if (max-- < 0)
2124 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
Jiri Slaby1c456072008-02-07 00:16:46 -08002126 ch = inb(port->ioaddr + UART_RX);
2127 if (port->board->chip_flag && (*status & UART_LSR_OE))
2128 outb(0x23, port->ioaddr + UART_FCR);
2129 *status &= port->read_status_mask;
2130 if (*status & port->ignore_status_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 if (++ignored > 100)
2132 break;
2133 } else {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002134 char flag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 if (*status & UART_LSR_SPECIAL) {
2136 if (*status & UART_LSR_BI) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002137 flag = TTY_BREAK;
Jiri Slaby1c456072008-02-07 00:16:46 -08002138 port->icount.brk++;
2139
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002140 if (port->port.flags & ASYNC_SAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 do_SAK(tty);
2142 } else if (*status & UART_LSR_PE) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002143 flag = TTY_PARITY;
Jiri Slaby1c456072008-02-07 00:16:46 -08002144 port->icount.parity++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 } else if (*status & UART_LSR_FE) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002146 flag = TTY_FRAME;
Jiri Slaby1c456072008-02-07 00:16:46 -08002147 port->icount.frame++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 } else if (*status & UART_LSR_OE) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002149 flag = TTY_OVERRUN;
Jiri Slaby1c456072008-02-07 00:16:46 -08002150 port->icount.overrun++;
2151 } else
2152 flag = TTY_BREAK;
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002153 }
2154 tty_insert_flip_char(tty, ch, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 cnt++;
2156 if (cnt >= recv_room) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002157 if (!port->ldisc_stop_rx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 mxser_stoprx(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 break;
2160 }
2161
2162 }
2163
Jiri Slaby1c456072008-02-07 00:16:46 -08002164 if (port->board->chip_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
Jiri Slaby1c456072008-02-07 00:16:46 -08002167 *status = inb(port->ioaddr + UART_LSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 } while (*status & UART_LSR_DR);
2169
Jiri Slaby1c456072008-02-07 00:16:46 -08002170end_intr:
Alan Cox216ba022008-10-13 10:40:19 +01002171 mxvar_log.rxcnt[tty->index] += cnt;
Jiri Slaby1c456072008-02-07 00:16:46 -08002172 port->mon_data.rxcnt += cnt;
2173 port->mon_data.up_rxcnt += cnt;
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002174
Jiri Slaby1c456072008-02-07 00:16:46 -08002175 /*
2176 * We are called from an interrupt context with &port->slock
2177 * being held. Drop it temporarily in order to prevent
2178 * recursive locking.
2179 */
2180 spin_unlock(&port->slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 tty_flip_buffer_push(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08002182 spin_lock(&port->slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183}
2184
Alan Cox216ba022008-10-13 10:40:19 +01002185static void mxser_transmit_chars(struct tty_struct *tty, struct mxser_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186{
2187 int count, cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
Jiri Slaby1c456072008-02-07 00:16:46 -08002189 if (port->x_char) {
2190 outb(port->x_char, port->ioaddr + UART_TX);
2191 port->x_char = 0;
Alan Cox216ba022008-10-13 10:40:19 +01002192 mxvar_log.txcnt[tty->index]++;
Jiri Slaby1c456072008-02-07 00:16:46 -08002193 port->mon_data.txcnt++;
2194 port->mon_data.up_txcnt++;
2195 port->icount.tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 return;
2197 }
2198
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002199 if (port->port.xmit_buf == NULL)
Jiri Slaby1c456072008-02-07 00:16:46 -08002200 return;
2201
Alan Cox216ba022008-10-13 10:40:19 +01002202 if (port->xmit_cnt <= 0 || tty->stopped ||
2203 (tty->hw_stopped &&
Jiri Slaby1c456072008-02-07 00:16:46 -08002204 (port->type != PORT_16550A) &&
2205 (!port->board->chip_flag))) {
2206 port->IER &= ~UART_IER_THRI;
2207 outb(port->IER, port->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 return;
2209 }
2210
Jiri Slaby1c456072008-02-07 00:16:46 -08002211 cnt = port->xmit_cnt;
2212 count = port->xmit_fifo_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 do {
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002214 outb(port->port.xmit_buf[port->xmit_tail++],
Jiri Slaby1c456072008-02-07 00:16:46 -08002215 port->ioaddr + UART_TX);
2216 port->xmit_tail = port->xmit_tail & (SERIAL_XMIT_SIZE - 1);
2217 if (--port->xmit_cnt <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 break;
2219 } while (--count > 0);
Alan Cox216ba022008-10-13 10:40:19 +01002220 mxvar_log.txcnt[tty->index] += (cnt - port->xmit_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
Jiri Slaby1c456072008-02-07 00:16:46 -08002222 port->mon_data.txcnt += (cnt - port->xmit_cnt);
2223 port->mon_data.up_txcnt += (cnt - port->xmit_cnt);
2224 port->icount.tx += (cnt - port->xmit_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
Alan Cox216ba022008-10-13 10:40:19 +01002226 if (port->xmit_cnt < WAKEUP_CHARS && tty)
2227 tty_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228
Jiri Slaby1c456072008-02-07 00:16:46 -08002229 if (port->xmit_cnt <= 0) {
2230 port->IER &= ~UART_IER_THRI;
2231 outb(port->IER, port->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233}
2234
2235/*
Jiri Slaby1c456072008-02-07 00:16:46 -08002236 * This is the serial driver's generic interrupt routine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 */
Jiri Slaby1c456072008-02-07 00:16:46 -08002238static irqreturn_t mxser_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239{
Jiri Slaby1c456072008-02-07 00:16:46 -08002240 int status, iir, i;
2241 struct mxser_board *brd = NULL;
2242 struct mxser_port *port;
2243 int max, irqbits, bits, msr;
2244 unsigned int int_cnt, pass_counter = 0;
2245 int handled = IRQ_NONE;
Alan Cox216ba022008-10-13 10:40:19 +01002246 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
Jiri Slaby1c456072008-02-07 00:16:46 -08002248 for (i = 0; i < MXSER_BOARDS; i++)
2249 if (dev_id == &mxser_boards[i]) {
2250 brd = dev_id;
2251 break;
2252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253
Jiri Slaby1c456072008-02-07 00:16:46 -08002254 if (i == MXSER_BOARDS)
2255 goto irq_stop;
2256 if (brd == NULL)
2257 goto irq_stop;
2258 max = brd->info->nports;
2259 while (pass_counter++ < MXSER_ISR_PASS_LIMIT) {
2260 irqbits = inb(brd->vector) & brd->vector_mask;
2261 if (irqbits == brd->vector_mask)
2262 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
Jiri Slaby1c456072008-02-07 00:16:46 -08002264 handled = IRQ_HANDLED;
2265 for (i = 0, bits = 1; i < max; i++, irqbits |= bits, bits <<= 1) {
2266 if (irqbits == brd->vector_mask)
2267 break;
2268 if (bits & irqbits)
2269 continue;
2270 port = &brd->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
Jiri Slaby1c456072008-02-07 00:16:46 -08002272 int_cnt = 0;
2273 spin_lock(&port->slock);
2274 do {
2275 iir = inb(port->ioaddr + UART_IIR);
2276 if (iir & UART_IIR_NO_INT)
2277 break;
2278 iir &= MOXA_MUST_IIR_MASK;
Alan Cox216ba022008-10-13 10:40:19 +01002279 tty = tty_port_tty_get(&port->port);
2280 if (!tty ||
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002281 (port->port.flags & ASYNC_CLOSING) ||
2282 !(port->port.flags &
Jiri Slaby1c456072008-02-07 00:16:46 -08002283 ASYNC_INITIALIZED)) {
2284 status = inb(port->ioaddr + UART_LSR);
2285 outb(0x27, port->ioaddr + UART_FCR);
2286 inb(port->ioaddr + UART_MSR);
Alan Cox216ba022008-10-13 10:40:19 +01002287 tty_kref_put(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08002288 break;
2289 }
2290
2291 status = inb(port->ioaddr + UART_LSR);
2292
2293 if (status & UART_LSR_PE)
2294 port->err_shadow |= NPPI_NOTIFY_PARITY;
2295 if (status & UART_LSR_FE)
2296 port->err_shadow |= NPPI_NOTIFY_FRAMING;
2297 if (status & UART_LSR_OE)
2298 port->err_shadow |=
2299 NPPI_NOTIFY_HW_OVERRUN;
2300 if (status & UART_LSR_BI)
2301 port->err_shadow |= NPPI_NOTIFY_BREAK;
2302
2303 if (port->board->chip_flag) {
2304 if (iir == MOXA_MUST_IIR_GDA ||
2305 iir == MOXA_MUST_IIR_RDA ||
2306 iir == MOXA_MUST_IIR_RTO ||
2307 iir == MOXA_MUST_IIR_LSR)
Alan Cox216ba022008-10-13 10:40:19 +01002308 mxser_receive_chars(tty, port,
Jiri Slaby1c456072008-02-07 00:16:46 -08002309 &status);
2310
2311 } else {
2312 status &= port->read_status_mask;
2313 if (status & UART_LSR_DR)
Alan Cox216ba022008-10-13 10:40:19 +01002314 mxser_receive_chars(tty, port,
Jiri Slaby1c456072008-02-07 00:16:46 -08002315 &status);
2316 }
2317 msr = inb(port->ioaddr + UART_MSR);
2318 if (msr & UART_MSR_ANY_DELTA)
Alan Cox216ba022008-10-13 10:40:19 +01002319 mxser_check_modem_status(tty, port, msr);
Jiri Slaby1c456072008-02-07 00:16:46 -08002320
2321 if (port->board->chip_flag) {
2322 if (iir == 0x02 && (status &
2323 UART_LSR_THRE))
Alan Cox216ba022008-10-13 10:40:19 +01002324 mxser_transmit_chars(tty, port);
Jiri Slaby1c456072008-02-07 00:16:46 -08002325 } else {
2326 if (status & UART_LSR_THRE)
Alan Cox216ba022008-10-13 10:40:19 +01002327 mxser_transmit_chars(tty, port);
Jiri Slaby1c456072008-02-07 00:16:46 -08002328 }
Alan Cox216ba022008-10-13 10:40:19 +01002329 tty_kref_put(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08002330 } while (int_cnt++ < MXSER_ISR_PASS_LIMIT);
2331 spin_unlock(&port->slock);
2332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 }
2334
Jiri Slaby1c456072008-02-07 00:16:46 -08002335irq_stop:
2336 return handled;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337}
2338
Jiri Slaby1c456072008-02-07 00:16:46 -08002339static const struct tty_operations mxser_ops = {
2340 .open = mxser_open,
2341 .close = mxser_close,
2342 .write = mxser_write,
2343 .put_char = mxser_put_char,
2344 .flush_chars = mxser_flush_chars,
2345 .write_room = mxser_write_room,
2346 .chars_in_buffer = mxser_chars_in_buffer,
2347 .flush_buffer = mxser_flush_buffer,
2348 .ioctl = mxser_ioctl,
2349 .throttle = mxser_throttle,
2350 .unthrottle = mxser_unthrottle,
2351 .set_termios = mxser_set_termios,
2352 .stop = mxser_stop,
2353 .start = mxser_start,
2354 .hangup = mxser_hangup,
2355 .break_ctl = mxser_rs_break,
2356 .wait_until_sent = mxser_wait_until_sent,
2357 .tiocmget = mxser_tiocmget,
2358 .tiocmset = mxser_tiocmset,
2359};
2360
Alan Cox31f35932009-01-02 13:45:05 +00002361struct tty_port_operations mxser_port_ops = {
2362 .carrier_raised = mxser_carrier_raised,
Alan Coxfcc8ac12009-06-11 12:24:17 +01002363 .dtr_rts = mxser_dtr_rts,
Alan Cox31f35932009-01-02 13:45:05 +00002364};
2365
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366/*
Jiri Slaby1c456072008-02-07 00:16:46 -08002367 * The MOXA Smartio/Industio serial driver boot-time initialization code!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 */
Jiri Slaby1c456072008-02-07 00:16:46 -08002369
2370static void mxser_release_res(struct mxser_board *brd, struct pci_dev *pdev,
2371 unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372{
Jiri Slaby1c456072008-02-07 00:16:46 -08002373 if (irq)
2374 free_irq(brd->irq, brd);
2375 if (pdev != NULL) { /* PCI */
2376#ifdef CONFIG_PCI
2377 pci_release_region(pdev, 2);
2378 pci_release_region(pdev, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 } else {
Jiri Slaby1c456072008-02-07 00:16:46 -08002381 release_region(brd->ports[0].ioaddr, 8 * brd->info->nports);
2382 release_region(brd->vector, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384}
2385
Jiri Slaby1c456072008-02-07 00:16:46 -08002386static int __devinit mxser_initbrd(struct mxser_board *brd,
2387 struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388{
Jiri Slaby1c456072008-02-07 00:16:46 -08002389 struct mxser_port *info;
2390 unsigned int i;
2391 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
Jiri Slaby83766bc2008-07-25 01:48:21 -07002393 printk(KERN_INFO "mxser: max. baud rate = %d bps\n",
2394 brd->ports[0].max_baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
Jiri Slaby1c456072008-02-07 00:16:46 -08002396 for (i = 0; i < brd->info->nports; i++) {
2397 info = &brd->ports[i];
Alan Cox44b7d1b2008-07-16 21:57:18 +01002398 tty_port_init(&info->port);
Alan Cox31f35932009-01-02 13:45:05 +00002399 info->port.ops = &mxser_port_ops;
Jiri Slaby1c456072008-02-07 00:16:46 -08002400 info->board = brd;
2401 info->stop_rx = 0;
2402 info->ldisc_stop_rx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403
Jiri Slaby1c456072008-02-07 00:16:46 -08002404 /* Enhance mode enabled here */
2405 if (brd->chip_flag != MOXA_OTHER_UART)
Christoph Hellwig148ff862008-04-30 00:54:29 -07002406 mxser_enable_must_enchance_mode(info->ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002408 info->port.flags = ASYNC_SHARE_IRQ;
Jiri Slaby1c456072008-02-07 00:16:46 -08002409 info->type = brd->uart_type;
2410
2411 process_txrx_fifo(info);
2412
2413 info->custom_divisor = info->baud_base * 16;
Alan Cox44b7d1b2008-07-16 21:57:18 +01002414 info->port.close_delay = 5 * HZ / 10;
2415 info->port.closing_wait = 30 * HZ;
Jiri Slaby1c456072008-02-07 00:16:46 -08002416 info->normal_termios = mxvar_sdriver->init_termios;
Jiri Slaby1c456072008-02-07 00:16:46 -08002417 init_waitqueue_head(&info->delta_msr_wait);
2418 memset(&info->mon_data, 0, sizeof(struct mxser_mon));
2419 info->err_shadow = 0;
2420 spin_lock_init(&info->slock);
2421
2422 /* before set INT ISR, disable all int */
2423 outb(inb(info->ioaddr + UART_IER) & 0xf0,
2424 info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 }
2426
Jiri Slaby1c456072008-02-07 00:16:46 -08002427 retval = request_irq(brd->irq, mxser_interrupt, IRQF_SHARED, "mxser",
2428 brd);
2429 if (retval) {
2430 printk(KERN_ERR "Board %s: Request irq failed, IRQ (%d) may "
2431 "conflict with another device.\n",
2432 brd->info->name, brd->irq);
2433 /* We hold resources, we need to release them. */
2434 mxser_release_res(brd, pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002436 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437}
2438
Jiri Slaby1c456072008-02-07 00:16:46 -08002439static int __init mxser_get_ISA_conf(int cap, struct mxser_board *brd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440{
2441 int id, i, bits;
2442 unsigned short regs[16], irq;
2443 unsigned char scratch, scratch2;
2444
Jiri Slaby1c456072008-02-07 00:16:46 -08002445 brd->chip_flag = MOXA_OTHER_UART;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
2447 id = mxser_read_register(cap, regs);
Jiri Slaby1c456072008-02-07 00:16:46 -08002448 switch (id) {
2449 case C168_ASIC_ID:
2450 brd->info = &mxser_cards[0];
2451 break;
2452 case C104_ASIC_ID:
2453 brd->info = &mxser_cards[1];
2454 break;
2455 case CI104J_ASIC_ID:
2456 brd->info = &mxser_cards[2];
2457 break;
2458 case C102_ASIC_ID:
2459 brd->info = &mxser_cards[5];
2460 break;
2461 case CI132_ASIC_ID:
2462 brd->info = &mxser_cards[6];
2463 break;
2464 case CI134_ASIC_ID:
2465 brd->info = &mxser_cards[7];
2466 break;
2467 default:
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002468 return 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08002469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
2471 irq = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08002472 /* some ISA cards have 2 ports, but we want to see them as 4-port (why?)
2473 Flag-hack checks if configuration should be read as 2-port here. */
2474 if (brd->info->nports == 2 || (brd->info->flags & MXSER_HAS2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 irq = regs[9] & 0xF000;
2476 irq = irq | (irq >> 4);
2477 if (irq != (regs[9] & 0xFF00))
Jiri Slaby83766bc2008-07-25 01:48:21 -07002478 goto err_irqconflict;
Jiri Slaby1c456072008-02-07 00:16:46 -08002479 } else if (brd->info->nports == 4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 irq = regs[9] & 0xF000;
2481 irq = irq | (irq >> 4);
2482 irq = irq | (irq >> 8);
2483 if (irq != regs[9])
Jiri Slaby83766bc2008-07-25 01:48:21 -07002484 goto err_irqconflict;
Jiri Slaby1c456072008-02-07 00:16:46 -08002485 } else if (brd->info->nports == 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 irq = regs[9] & 0xF000;
2487 irq = irq | (irq >> 4);
2488 irq = irq | (irq >> 8);
2489 if ((irq != regs[9]) || (irq != regs[10]))
Jiri Slaby83766bc2008-07-25 01:48:21 -07002490 goto err_irqconflict;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 }
2492
Jiri Slaby83766bc2008-07-25 01:48:21 -07002493 if (!irq) {
2494 printk(KERN_ERR "mxser: interrupt number unset\n");
2495 return -EIO;
2496 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002497 brd->irq = ((int)(irq & 0xF000) >> 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 for (i = 0; i < 8; i++)
Jiri Slaby1c456072008-02-07 00:16:46 -08002499 brd->ports[i].ioaddr = (int) regs[i + 1] & 0xFFF8;
Jiri Slaby83766bc2008-07-25 01:48:21 -07002500 if ((regs[12] & 0x80) == 0) {
2501 printk(KERN_ERR "mxser: invalid interrupt vector\n");
2502 return -EIO;
2503 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002504 brd->vector = (int)regs[11]; /* interrupt vector */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 if (id == 1)
Jiri Slaby1c456072008-02-07 00:16:46 -08002506 brd->vector_mask = 0x00FF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 else
Jiri Slaby1c456072008-02-07 00:16:46 -08002508 brd->vector_mask = 0x000F;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 for (i = 7, bits = 0x0100; i >= 0; i--, bits <<= 1) {
2510 if (regs[12] & bits) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002511 brd->ports[i].baud_base = 921600;
2512 brd->ports[i].max_baud = 921600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 } else {
Jiri Slaby1c456072008-02-07 00:16:46 -08002514 brd->ports[i].baud_base = 115200;
2515 brd->ports[i].max_baud = 115200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 }
2517 }
2518 scratch2 = inb(cap + UART_LCR) & (~UART_LCR_DLAB);
2519 outb(scratch2 | UART_LCR_DLAB, cap + UART_LCR);
2520 outb(0, cap + UART_EFR); /* EFR is the same as FCR */
2521 outb(scratch2, cap + UART_LCR);
2522 outb(UART_FCR_ENABLE_FIFO, cap + UART_FCR);
2523 scratch = inb(cap + UART_IIR);
2524
2525 if (scratch & 0xC0)
Jiri Slaby1c456072008-02-07 00:16:46 -08002526 brd->uart_type = PORT_16550A;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 else
Jiri Slaby1c456072008-02-07 00:16:46 -08002528 brd->uart_type = PORT_16450;
2529 if (!request_region(brd->ports[0].ioaddr, 8 * brd->info->nports,
Jiri Slaby83766bc2008-07-25 01:48:21 -07002530 "mxser(IO)")) {
2531 printk(KERN_ERR "mxser: can't request ports I/O region: "
2532 "0x%.8lx-0x%.8lx\n",
2533 brd->ports[0].ioaddr, brd->ports[0].ioaddr +
2534 8 * brd->info->nports - 1);
2535 return -EIO;
2536 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002537 if (!request_region(brd->vector, 1, "mxser(vector)")) {
2538 release_region(brd->ports[0].ioaddr, 8 * brd->info->nports);
Jiri Slaby83766bc2008-07-25 01:48:21 -07002539 printk(KERN_ERR "mxser: can't request interrupt vector region: "
2540 "0x%.8lx-0x%.8lx\n",
2541 brd->ports[0].ioaddr, brd->ports[0].ioaddr +
2542 8 * brd->info->nports - 1);
2543 return -EIO;
Jiri Slaby1c456072008-02-07 00:16:46 -08002544 }
2545 return brd->info->nports;
Jiri Slaby83766bc2008-07-25 01:48:21 -07002546
2547err_irqconflict:
2548 printk(KERN_ERR "mxser: invalid interrupt number\n");
2549 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550}
2551
Jiri Slaby1c456072008-02-07 00:16:46 -08002552static int __devinit mxser_probe(struct pci_dev *pdev,
2553 const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554{
Jiri Slaby1c456072008-02-07 00:16:46 -08002555#ifdef CONFIG_PCI
2556 struct mxser_board *brd;
2557 unsigned int i, j;
2558 unsigned long ioaddress;
2559 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
Jiri Slaby1c456072008-02-07 00:16:46 -08002561 for (i = 0; i < MXSER_BOARDS; i++)
2562 if (mxser_boards[i].info == NULL)
2563 break;
2564
2565 if (i >= MXSER_BOARDS) {
Jiri Slaby83766bc2008-07-25 01:48:21 -07002566 dev_err(&pdev->dev, "too many boards found (maximum %d), board "
2567 "not configured\n", MXSER_BOARDS);
Jiri Slaby1c456072008-02-07 00:16:46 -08002568 goto err;
2569 }
2570
2571 brd = &mxser_boards[i];
2572 brd->idx = i * MXSER_PORTS_PER_BOARD;
Jiri Slaby83766bc2008-07-25 01:48:21 -07002573 dev_info(&pdev->dev, "found MOXA %s board (BusNo=%d, DevNo=%d)\n",
Jiri Slaby1c456072008-02-07 00:16:46 -08002574 mxser_cards[ent->driver_data].name,
2575 pdev->bus->number, PCI_SLOT(pdev->devfn));
2576
2577 retval = pci_enable_device(pdev);
2578 if (retval) {
Jiri Slaby83766bc2008-07-25 01:48:21 -07002579 dev_err(&pdev->dev, "PCI enable failed\n");
Jiri Slaby1c456072008-02-07 00:16:46 -08002580 goto err;
2581 }
2582
2583 /* io address */
2584 ioaddress = pci_resource_start(pdev, 2);
2585 retval = pci_request_region(pdev, 2, "mxser(IO)");
2586 if (retval)
2587 goto err;
2588
2589 brd->info = &mxser_cards[ent->driver_data];
2590 for (i = 0; i < brd->info->nports; i++)
2591 brd->ports[i].ioaddr = ioaddress + 8 * i;
2592
2593 /* vector */
2594 ioaddress = pci_resource_start(pdev, 3);
2595 retval = pci_request_region(pdev, 3, "mxser(vector)");
2596 if (retval)
2597 goto err_relio;
2598 brd->vector = ioaddress;
2599
2600 /* irq */
2601 brd->irq = pdev->irq;
2602
2603 brd->chip_flag = CheckIsMoxaMust(brd->ports[0].ioaddr);
2604 brd->uart_type = PORT_16550A;
2605 brd->vector_mask = 0;
2606
2607 for (i = 0; i < brd->info->nports; i++) {
2608 for (j = 0; j < UART_INFO_NUM; j++) {
2609 if (Gpci_uart_info[j].type == brd->chip_flag) {
2610 brd->ports[i].max_baud =
2611 Gpci_uart_info[j].max_baud;
2612
2613 /* exception....CP-102 */
2614 if (brd->info->flags & MXSER_HIGHBAUD)
2615 brd->ports[i].max_baud = 921600;
2616 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 }
2618 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002619 }
2620
2621 if (brd->chip_flag == MOXA_MUST_MU860_HWID) {
2622 for (i = 0; i < brd->info->nports; i++) {
2623 if (i < 4)
2624 brd->ports[i].opmode_ioaddr = ioaddress + 4;
2625 else
2626 brd->ports[i].opmode_ioaddr = ioaddress + 0x0c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002628 outb(0, ioaddress + 4); /* default set to RS232 mode */
2629 outb(0, ioaddress + 0x0c); /* default set to RS232 mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002631
2632 for (i = 0; i < brd->info->nports; i++) {
2633 brd->vector_mask |= (1 << i);
2634 brd->ports[i].baud_base = 921600;
2635 }
2636
2637 /* mxser_initbrd will hook ISR. */
2638 retval = mxser_initbrd(brd, pdev);
2639 if (retval)
2640 goto err_null;
2641
2642 for (i = 0; i < brd->info->nports; i++)
2643 tty_register_device(mxvar_sdriver, brd->idx + i, &pdev->dev);
2644
2645 pci_set_drvdata(pdev, brd);
2646
2647 return 0;
2648err_relio:
2649 pci_release_region(pdev, 2);
2650err_null:
2651 brd->info = NULL;
2652err:
2653 return retval;
2654#else
2655 return -ENODEV;
2656#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657}
2658
Jiri Slaby1c456072008-02-07 00:16:46 -08002659static void __devexit mxser_remove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660{
Jiri Slaby1c456072008-02-07 00:16:46 -08002661 struct mxser_board *brd = pci_get_drvdata(pdev);
2662 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663
Jiri Slaby1c456072008-02-07 00:16:46 -08002664 for (i = 0; i < brd->info->nports; i++)
2665 tty_unregister_device(mxvar_sdriver, brd->idx + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666
Jiri Slaby1c456072008-02-07 00:16:46 -08002667 mxser_release_res(brd, pdev, 1);
2668 brd->info = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669}
2670
Jiri Slaby1c456072008-02-07 00:16:46 -08002671static struct pci_driver mxser_driver = {
2672 .name = "mxser",
2673 .id_table = mxser_pcibrds,
2674 .probe = mxser_probe,
2675 .remove = __devexit_p(mxser_remove)
2676};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
Jiri Slaby1c456072008-02-07 00:16:46 -08002678static int __init mxser_module_init(void)
2679{
2680 struct mxser_board *brd;
Jiri Slaby1df00922008-07-25 01:48:22 -07002681 unsigned int b, i, m;
2682 int retval;
Jiri Slaby1c456072008-02-07 00:16:46 -08002683
Jiri Slaby1c456072008-02-07 00:16:46 -08002684 mxvar_sdriver = alloc_tty_driver(MXSER_PORTS + 1);
2685 if (!mxvar_sdriver)
2686 return -ENOMEM;
2687
2688 printk(KERN_INFO "MOXA Smartio/Industio family driver version %s\n",
2689 MXSER_VERSION);
2690
2691 /* Initialize the tty_driver structure */
2692 mxvar_sdriver->owner = THIS_MODULE;
2693 mxvar_sdriver->magic = TTY_DRIVER_MAGIC;
2694 mxvar_sdriver->name = "ttyMI";
2695 mxvar_sdriver->major = ttymajor;
2696 mxvar_sdriver->minor_start = 0;
2697 mxvar_sdriver->num = MXSER_PORTS + 1;
2698 mxvar_sdriver->type = TTY_DRIVER_TYPE_SERIAL;
2699 mxvar_sdriver->subtype = SERIAL_TYPE_NORMAL;
2700 mxvar_sdriver->init_termios = tty_std_termios;
2701 mxvar_sdriver->init_termios.c_cflag = B9600|CS8|CREAD|HUPCL|CLOCAL;
2702 mxvar_sdriver->flags = TTY_DRIVER_REAL_RAW|TTY_DRIVER_DYNAMIC_DEV;
2703 tty_set_operations(mxvar_sdriver, &mxser_ops);
2704
2705 retval = tty_register_driver(mxvar_sdriver);
2706 if (retval) {
2707 printk(KERN_ERR "Couldn't install MOXA Smartio/Industio family "
2708 "tty driver !\n");
2709 goto err_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002711
Jiri Slaby1c456072008-02-07 00:16:46 -08002712 /* Start finding ISA boards here */
Jiri Slaby1df00922008-07-25 01:48:22 -07002713 for (m = 0, b = 0; b < MXSER_BOARDS; b++) {
2714 if (!ioaddr[b])
2715 continue;
Jiri Slaby1c456072008-02-07 00:16:46 -08002716
Jiri Slaby1df00922008-07-25 01:48:22 -07002717 brd = &mxser_boards[m];
Peter Botha96050df2009-06-09 17:16:32 -07002718 retval = mxser_get_ISA_conf(ioaddr[b], brd);
Jiri Slaby1df00922008-07-25 01:48:22 -07002719 if (retval <= 0) {
2720 brd->info = NULL;
2721 continue;
Jiri Slaby1c456072008-02-07 00:16:46 -08002722 }
2723
Jiri Slaby1df00922008-07-25 01:48:22 -07002724 printk(KERN_INFO "mxser: found MOXA %s board (CAP=0x%lx)\n",
2725 brd->info->name, ioaddr[b]);
2726
2727 /* mxser_initbrd will hook ISR. */
2728 if (mxser_initbrd(brd, NULL) < 0) {
2729 brd->info = NULL;
2730 continue;
2731 }
2732
2733 brd->idx = m * MXSER_PORTS_PER_BOARD;
2734 for (i = 0; i < brd->info->nports; i++)
2735 tty_register_device(mxvar_sdriver, brd->idx + i, NULL);
2736
2737 m++;
2738 }
2739
Jiri Slaby1c456072008-02-07 00:16:46 -08002740 retval = pci_register_driver(&mxser_driver);
2741 if (retval) {
Jiri Slaby83766bc2008-07-25 01:48:21 -07002742 printk(KERN_ERR "mxser: can't register pci driver\n");
Jiri Slaby1c456072008-02-07 00:16:46 -08002743 if (!m) {
2744 retval = -ENODEV;
2745 goto err_unr;
2746 } /* else: we have some ISA cards under control */
2747 }
2748
Jiri Slaby1c456072008-02-07 00:16:46 -08002749 return 0;
2750err_unr:
2751 tty_unregister_driver(mxvar_sdriver);
2752err_put:
2753 put_tty_driver(mxvar_sdriver);
2754 return retval;
2755}
2756
2757static void __exit mxser_module_exit(void)
2758{
2759 unsigned int i, j;
2760
Jiri Slaby1c456072008-02-07 00:16:46 -08002761 pci_unregister_driver(&mxser_driver);
2762
2763 for (i = 0; i < MXSER_BOARDS; i++) /* ISA remains */
2764 if (mxser_boards[i].info != NULL)
2765 for (j = 0; j < mxser_boards[i].info->nports; j++)
2766 tty_unregister_device(mxvar_sdriver,
2767 mxser_boards[i].idx + j);
2768 tty_unregister_driver(mxvar_sdriver);
2769 put_tty_driver(mxvar_sdriver);
2770
2771 for (i = 0; i < MXSER_BOARDS; i++)
2772 if (mxser_boards[i].info != NULL)
2773 mxser_release_res(&mxser_boards[i], NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774}
2775
2776module_init(mxser_module_init);
2777module_exit(mxser_module_exit);