blob: 57570f7db2be0d1388ac6b2c326c31bdcf1534d5 [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
17 * <alan@redhat.com>. The original 1.8 code is available on www.moxa.com.
18 * - Fixed x86_64 cleanness
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 */
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/errno.h>
23#include <linux/signal.h>
24#include <linux/sched.h>
25#include <linux/timer.h>
26#include <linux/interrupt.h>
27#include <linux/tty.h>
28#include <linux/tty_flip.h>
29#include <linux/serial.h>
30#include <linux/serial_reg.h>
31#include <linux/major.h>
32#include <linux/string.h>
33#include <linux/fcntl.h>
34#include <linux/ptrace.h>
35#include <linux/gfp.h>
36#include <linux/ioport.h>
37#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/delay.h>
39#include <linux/pci.h>
Jiri Slaby1977f032007-10-18 23:40:25 -070040#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <asm/system.h>
43#include <asm/io.h>
44#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/uaccess.h>
46
47#include "mxser.h"
48
Jiri Slabye129def2008-07-22 11:20:34 +010049#define MXSER_VERSION "2.0.4" /* 1.12 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define MXSERMAJOR 174
51#define MXSERCUMAJOR 175
52
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176static int ioaddr[MXSER_BOARDS] = { 0, 0, 0, 0 };
177static 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");
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800183module_param_array(ioaddr, int, NULL, 0);
184module_param(ttymajor, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185MODULE_LICENSE("GPL");
186
187struct mxser_log {
188 int tick;
189 unsigned long rxcnt[MXSER_PORTS];
190 unsigned long txcnt[MXSER_PORTS];
191};
192
193
194struct 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284static int mxserBoardCAP[MXSER_BOARDS] = {
285 0, 0, 0, 0
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700286 /* 0x180, 0x280, 0x200, 0x320 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287};
288
Jiri Slaby1c456072008-02-07 00:16:46 -0800289static struct mxser_board mxser_boards[MXSER_BOARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290static struct tty_driver *mxvar_sdriver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291static struct mxser_log mxvar_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292static int mxser_set_baud_method[MXSER_PORTS + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Christoph Hellwig148ff862008-04-30 00:54:29 -0700294static void mxser_enable_must_enchance_mode(unsigned long baseio)
295{
296 u8 oldlcr;
297 u8 efr;
298
299 oldlcr = inb(baseio + UART_LCR);
300 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
301
302 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
303 efr |= MOXA_MUST_EFR_EFRB_ENABLE;
304
305 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
306 outb(oldlcr, baseio + UART_LCR);
307}
308
309static void mxser_disable_must_enchance_mode(unsigned long baseio)
310{
311 u8 oldlcr;
312 u8 efr;
313
314 oldlcr = inb(baseio + UART_LCR);
315 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
316
317 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
318 efr &= ~MOXA_MUST_EFR_EFRB_ENABLE;
319
320 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
321 outb(oldlcr, baseio + UART_LCR);
322}
323
324static void mxser_set_must_xon1_value(unsigned long baseio, u8 value)
325{
326 u8 oldlcr;
327 u8 efr;
328
329 oldlcr = inb(baseio + UART_LCR);
330 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
331
332 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
333 efr &= ~MOXA_MUST_EFR_BANK_MASK;
334 efr |= MOXA_MUST_EFR_BANK0;
335
336 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
337 outb(value, baseio + MOXA_MUST_XON1_REGISTER);
338 outb(oldlcr, baseio + UART_LCR);
339}
340
341static void mxser_set_must_xoff1_value(unsigned long baseio, u8 value)
342{
343 u8 oldlcr;
344 u8 efr;
345
346 oldlcr = inb(baseio + UART_LCR);
347 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
348
349 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
350 efr &= ~MOXA_MUST_EFR_BANK_MASK;
351 efr |= MOXA_MUST_EFR_BANK0;
352
353 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
354 outb(value, baseio + MOXA_MUST_XOFF1_REGISTER);
355 outb(oldlcr, baseio + UART_LCR);
356}
357
358static void mxser_set_must_fifo_value(struct mxser_port *info)
359{
360 u8 oldlcr;
361 u8 efr;
362
363 oldlcr = inb(info->ioaddr + UART_LCR);
364 outb(MOXA_MUST_ENTER_ENCHANCE, info->ioaddr + UART_LCR);
365
366 efr = inb(info->ioaddr + MOXA_MUST_EFR_REGISTER);
367 efr &= ~MOXA_MUST_EFR_BANK_MASK;
368 efr |= MOXA_MUST_EFR_BANK1;
369
370 outb(efr, info->ioaddr + MOXA_MUST_EFR_REGISTER);
371 outb((u8)info->rx_high_water, info->ioaddr + MOXA_MUST_RBRTH_REGISTER);
372 outb((u8)info->rx_trigger, info->ioaddr + MOXA_MUST_RBRTI_REGISTER);
373 outb((u8)info->rx_low_water, info->ioaddr + MOXA_MUST_RBRTL_REGISTER);
374 outb(oldlcr, info->ioaddr + UART_LCR);
375}
376
377static void mxser_set_must_enum_value(unsigned long baseio, u8 value)
378{
379 u8 oldlcr;
380 u8 efr;
381
382 oldlcr = inb(baseio + UART_LCR);
383 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
384
385 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
386 efr &= ~MOXA_MUST_EFR_BANK_MASK;
387 efr |= MOXA_MUST_EFR_BANK2;
388
389 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
390 outb(value, baseio + MOXA_MUST_ENUM_REGISTER);
391 outb(oldlcr, baseio + UART_LCR);
392}
393
394static void mxser_get_must_hardware_id(unsigned long baseio, u8 *pId)
395{
396 u8 oldlcr;
397 u8 efr;
398
399 oldlcr = inb(baseio + UART_LCR);
400 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
401
402 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
403 efr &= ~MOXA_MUST_EFR_BANK_MASK;
404 efr |= MOXA_MUST_EFR_BANK2;
405
406 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
407 *pId = inb(baseio + MOXA_MUST_HWID_REGISTER);
408 outb(oldlcr, baseio + UART_LCR);
409}
410
411static void SET_MOXA_MUST_NO_SOFTWARE_FLOW_CONTROL(unsigned long baseio)
412{
413 u8 oldlcr;
414 u8 efr;
415
416 oldlcr = inb(baseio + UART_LCR);
417 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
418
419 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
420 efr &= ~MOXA_MUST_EFR_SF_MASK;
421
422 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
423 outb(oldlcr, baseio + UART_LCR);
424}
425
426static void mxser_enable_must_tx_software_flow_control(unsigned long baseio)
427{
428 u8 oldlcr;
429 u8 efr;
430
431 oldlcr = inb(baseio + UART_LCR);
432 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
433
434 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
435 efr &= ~MOXA_MUST_EFR_SF_TX_MASK;
436 efr |= MOXA_MUST_EFR_SF_TX1;
437
438 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
439 outb(oldlcr, baseio + UART_LCR);
440}
441
442static void mxser_disable_must_tx_software_flow_control(unsigned long baseio)
443{
444 u8 oldlcr;
445 u8 efr;
446
447 oldlcr = inb(baseio + UART_LCR);
448 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
449
450 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
451 efr &= ~MOXA_MUST_EFR_SF_TX_MASK;
452
453 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
454 outb(oldlcr, baseio + UART_LCR);
455}
456
457static void mxser_enable_must_rx_software_flow_control(unsigned long baseio)
458{
459 u8 oldlcr;
460 u8 efr;
461
462 oldlcr = inb(baseio + UART_LCR);
463 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
464
465 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
466 efr &= ~MOXA_MUST_EFR_SF_RX_MASK;
467 efr |= MOXA_MUST_EFR_SF_RX1;
468
469 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
470 outb(oldlcr, baseio + UART_LCR);
471}
472
473static void mxser_disable_must_rx_software_flow_control(unsigned long baseio)
474{
475 u8 oldlcr;
476 u8 efr;
477
478 oldlcr = inb(baseio + UART_LCR);
479 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
480
481 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
482 efr &= ~MOXA_MUST_EFR_SF_RX_MASK;
483
484 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
485 outb(oldlcr, baseio + UART_LCR);
486}
487
Jesper Juhlb8cc5542007-10-18 03:06:03 -0700488#ifdef CONFIG_PCI
Jiri Slaby1c456072008-02-07 00:16:46 -0800489static int __devinit CheckIsMoxaMust(unsigned long io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
491 u8 oldmcr, hwid;
492 int i;
493
494 outb(0, io + UART_LCR);
Christoph Hellwig148ff862008-04-30 00:54:29 -0700495 mxser_disable_must_enchance_mode(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 oldmcr = inb(io + UART_MCR);
497 outb(0, io + UART_MCR);
Christoph Hellwig148ff862008-04-30 00:54:29 -0700498 mxser_set_must_xon1_value(io, 0x11);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if ((hwid = inb(io + UART_MCR)) != 0) {
500 outb(oldmcr, io + UART_MCR);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700501 return MOXA_OTHER_UART;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
503
Christoph Hellwig148ff862008-04-30 00:54:29 -0700504 mxser_get_must_hardware_id(io, &hwid);
Jiri Slaby1c456072008-02-07 00:16:46 -0800505 for (i = 1; i < UART_INFO_NUM; i++) { /* 0 = OTHER_UART */
506 if (hwid == Gpci_uart_info[i].type)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700507 return (int)hwid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 }
509 return MOXA_OTHER_UART;
510}
Jesper Juhlb8cc5542007-10-18 03:06:03 -0700511#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Jiri Slaby1c456072008-02-07 00:16:46 -0800513static void process_txrx_fifo(struct mxser_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
515 int i;
516
517 if ((info->type == PORT_16450) || (info->type == PORT_8250)) {
518 info->rx_trigger = 1;
519 info->rx_high_water = 1;
520 info->rx_low_water = 1;
521 info->xmit_fifo_size = 1;
Jiri Slaby1c456072008-02-07 00:16:46 -0800522 } else
523 for (i = 0; i < UART_INFO_NUM; i++)
524 if (info->board->chip_flag == Gpci_uart_info[i].type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 info->rx_trigger = Gpci_uart_info[i].rx_trigger;
526 info->rx_low_water = Gpci_uart_info[i].rx_low_water;
527 info->rx_high_water = Gpci_uart_info[i].rx_high_water;
528 info->xmit_fifo_size = Gpci_uart_info[i].xmit_fifo_size;
529 break;
530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
Jiri Slaby1c456072008-02-07 00:16:46 -0800533static unsigned char mxser_get_msr(int baseaddr, int mode, int port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Jiri Slaby72800df2008-07-25 01:48:20 -0700535 static unsigned char mxser_msr[MXSER_PORTS + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 unsigned char status = 0;
537
538 status = inb(baseaddr + UART_MSR);
539
540 mxser_msr[port] &= 0x0F;
541 mxser_msr[port] |= status;
542 status = mxser_msr[port];
543 if (mode)
544 mxser_msr[port] = 0;
545
546 return status;
547}
548
Jiri Slaby1c456072008-02-07 00:16:46 -0800549static int mxser_block_til_ready(struct tty_struct *tty, struct file *filp,
550 struct mxser_port *port)
551{
552 DECLARE_WAITQUEUE(wait, current);
553 int retval;
554 int do_clocal = 0;
555 unsigned long flags;
556
557 /*
558 * If non-blocking mode is set, or the port is not enabled,
559 * then make the check up front and then exit.
560 */
561 if ((filp->f_flags & O_NONBLOCK) ||
562 test_bit(TTY_IO_ERROR, &tty->flags)) {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100563 port->port.flags |= ASYNC_NORMAL_ACTIVE;
Jiri Slaby1c456072008-02-07 00:16:46 -0800564 return 0;
565 }
566
567 if (tty->termios->c_cflag & CLOCAL)
568 do_clocal = 1;
569
570 /*
571 * Block waiting for the carrier detect and the line to become
572 * free (i.e., not in use by the callout). While we are in
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100573 * this loop, port->port.count is dropped by one, so that
Jiri Slaby1c456072008-02-07 00:16:46 -0800574 * mxser_close() knows when to free things. We restore it upon
575 * exit, either normal or abnormal.
576 */
577 retval = 0;
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100578 add_wait_queue(&port->port.open_wait, &wait);
Jiri Slaby1c456072008-02-07 00:16:46 -0800579
580 spin_lock_irqsave(&port->slock, flags);
581 if (!tty_hung_up_p(filp))
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100582 port->port.count--;
Jiri Slaby1c456072008-02-07 00:16:46 -0800583 spin_unlock_irqrestore(&port->slock, flags);
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100584 port->port.blocked_open++;
Jiri Slaby1c456072008-02-07 00:16:46 -0800585 while (1) {
586 spin_lock_irqsave(&port->slock, flags);
587 outb(inb(port->ioaddr + UART_MCR) |
588 UART_MCR_DTR | UART_MCR_RTS, port->ioaddr + UART_MCR);
589 spin_unlock_irqrestore(&port->slock, flags);
590 set_current_state(TASK_INTERRUPTIBLE);
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100591 if (tty_hung_up_p(filp) || !(port->port.flags & ASYNC_INITIALIZED)) {
592 if (port->port.flags & ASYNC_HUP_NOTIFY)
Jiri Slaby1c456072008-02-07 00:16:46 -0800593 retval = -EAGAIN;
594 else
595 retval = -ERESTARTSYS;
596 break;
597 }
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100598 if (!(port->port.flags & ASYNC_CLOSING) &&
Jiri Slaby1c456072008-02-07 00:16:46 -0800599 (do_clocal ||
600 (inb(port->ioaddr + UART_MSR) & UART_MSR_DCD)))
601 break;
602 if (signal_pending(current)) {
603 retval = -ERESTARTSYS;
604 break;
605 }
606 schedule();
607 }
608 set_current_state(TASK_RUNNING);
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100609 remove_wait_queue(&port->port.open_wait, &wait);
Jiri Slaby1c456072008-02-07 00:16:46 -0800610 if (!tty_hung_up_p(filp))
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100611 port->port.count++;
612 port->port.blocked_open--;
Jiri Slaby1c456072008-02-07 00:16:46 -0800613 if (retval)
614 return retval;
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100615 port->port.flags |= ASYNC_NORMAL_ACTIVE;
Jiri Slaby1c456072008-02-07 00:16:46 -0800616 return 0;
617}
618
619static int mxser_set_baud(struct mxser_port *info, long newspd)
620{
621 int quot = 0, baud;
622 unsigned char cval;
623
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100624 if (!info->port.tty || !info->port.tty->termios)
Jiri Slaby1c456072008-02-07 00:16:46 -0800625 return -1;
626
627 if (!(info->ioaddr))
628 return -1;
629
630 if (newspd > info->max_baud)
631 return -1;
632
633 if (newspd == 134) {
634 quot = 2 * info->baud_base / 269;
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100635 tty_encode_baud_rate(info->port.tty, 134, 134);
Jiri Slaby1c456072008-02-07 00:16:46 -0800636 } else if (newspd) {
637 quot = info->baud_base / newspd;
638 if (quot == 0)
639 quot = 1;
640 baud = info->baud_base/quot;
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100641 tty_encode_baud_rate(info->port.tty, baud, baud);
Jiri Slaby1c456072008-02-07 00:16:46 -0800642 } else {
643 quot = 0;
644 }
645
646 info->timeout = ((info->xmit_fifo_size * HZ * 10 * quot) / info->baud_base);
647 info->timeout += HZ / 50; /* Add .02 seconds of slop */
648
649 if (quot) {
650 info->MCR |= UART_MCR_DTR;
651 outb(info->MCR, info->ioaddr + UART_MCR);
652 } else {
653 info->MCR &= ~UART_MCR_DTR;
654 outb(info->MCR, info->ioaddr + UART_MCR);
655 return 0;
656 }
657
658 cval = inb(info->ioaddr + UART_LCR);
659
660 outb(cval | UART_LCR_DLAB, info->ioaddr + UART_LCR); /* set DLAB */
661
662 outb(quot & 0xff, info->ioaddr + UART_DLL); /* LS of divisor */
663 outb(quot >> 8, info->ioaddr + UART_DLM); /* MS of divisor */
664 outb(cval, info->ioaddr + UART_LCR); /* reset DLAB */
665
666#ifdef BOTHER
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100667 if (C_BAUD(info->port.tty) == BOTHER) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800668 quot = info->baud_base % newspd;
669 quot *= 8;
670 if (quot % newspd > newspd / 2) {
671 quot /= newspd;
672 quot++;
673 } else
674 quot /= newspd;
675
Christoph Hellwig148ff862008-04-30 00:54:29 -0700676 mxser_set_must_enum_value(info->ioaddr, quot);
Jiri Slaby1c456072008-02-07 00:16:46 -0800677 } else
678#endif
Christoph Hellwig148ff862008-04-30 00:54:29 -0700679 mxser_set_must_enum_value(info->ioaddr, 0);
Jiri Slaby1c456072008-02-07 00:16:46 -0800680
681 return 0;
682}
683
684/*
685 * This routine is called to set the UART divisor registers to match
686 * the specified baud rate for a serial port.
687 */
688static int mxser_change_speed(struct mxser_port *info,
689 struct ktermios *old_termios)
690{
691 unsigned cflag, cval, fcr;
692 int ret = 0;
693 unsigned char status;
694
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100695 if (!info->port.tty || !info->port.tty->termios)
Jiri Slaby1c456072008-02-07 00:16:46 -0800696 return ret;
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100697 cflag = info->port.tty->termios->c_cflag;
Jiri Slaby1c456072008-02-07 00:16:46 -0800698 if (!(info->ioaddr))
699 return ret;
700
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100701 if (mxser_set_baud_method[info->port.tty->index] == 0)
702 mxser_set_baud(info, tty_get_baud_rate(info->port.tty));
Jiri Slaby1c456072008-02-07 00:16:46 -0800703
704 /* byte size and parity */
705 switch (cflag & CSIZE) {
706 case CS5:
707 cval = 0x00;
708 break;
709 case CS6:
710 cval = 0x01;
711 break;
712 case CS7:
713 cval = 0x02;
714 break;
715 case CS8:
716 cval = 0x03;
717 break;
718 default:
719 cval = 0x00;
720 break; /* too keep GCC shut... */
721 }
722 if (cflag & CSTOPB)
723 cval |= 0x04;
724 if (cflag & PARENB)
725 cval |= UART_LCR_PARITY;
726 if (!(cflag & PARODD))
727 cval |= UART_LCR_EPAR;
728 if (cflag & CMSPAR)
729 cval |= UART_LCR_SPAR;
730
731 if ((info->type == PORT_8250) || (info->type == PORT_16450)) {
732 if (info->board->chip_flag) {
733 fcr = UART_FCR_ENABLE_FIFO;
734 fcr |= MOXA_MUST_FCR_GDA_MODE_ENABLE;
Christoph Hellwig148ff862008-04-30 00:54:29 -0700735 mxser_set_must_fifo_value(info);
Jiri Slaby1c456072008-02-07 00:16:46 -0800736 } else
737 fcr = 0;
738 } else {
739 fcr = UART_FCR_ENABLE_FIFO;
740 if (info->board->chip_flag) {
741 fcr |= MOXA_MUST_FCR_GDA_MODE_ENABLE;
Christoph Hellwig148ff862008-04-30 00:54:29 -0700742 mxser_set_must_fifo_value(info);
Jiri Slaby1c456072008-02-07 00:16:46 -0800743 } else {
744 switch (info->rx_trigger) {
745 case 1:
746 fcr |= UART_FCR_TRIGGER_1;
747 break;
748 case 4:
749 fcr |= UART_FCR_TRIGGER_4;
750 break;
751 case 8:
752 fcr |= UART_FCR_TRIGGER_8;
753 break;
754 default:
755 fcr |= UART_FCR_TRIGGER_14;
756 break;
757 }
758 }
759 }
760
761 /* CTS flow control flag and modem status interrupts */
762 info->IER &= ~UART_IER_MSI;
763 info->MCR &= ~UART_MCR_AFE;
764 if (cflag & CRTSCTS) {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100765 info->port.flags |= ASYNC_CTS_FLOW;
Jiri Slaby1c456072008-02-07 00:16:46 -0800766 info->IER |= UART_IER_MSI;
767 if ((info->type == PORT_16550A) || (info->board->chip_flag)) {
768 info->MCR |= UART_MCR_AFE;
769 } else {
770 status = inb(info->ioaddr + UART_MSR);
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100771 if (info->port.tty->hw_stopped) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800772 if (status & UART_MSR_CTS) {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100773 info->port.tty->hw_stopped = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -0800774 if (info->type != PORT_16550A &&
775 !info->board->chip_flag) {
776 outb(info->IER & ~UART_IER_THRI,
777 info->ioaddr +
778 UART_IER);
779 info->IER |= UART_IER_THRI;
780 outb(info->IER, info->ioaddr +
781 UART_IER);
782 }
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100783 tty_wakeup(info->port.tty);
Jiri Slaby1c456072008-02-07 00:16:46 -0800784 }
785 } else {
786 if (!(status & UART_MSR_CTS)) {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100787 info->port.tty->hw_stopped = 1;
Jiri Slaby1c456072008-02-07 00:16:46 -0800788 if ((info->type != PORT_16550A) &&
789 (!info->board->chip_flag)) {
790 info->IER &= ~UART_IER_THRI;
791 outb(info->IER, info->ioaddr +
792 UART_IER);
793 }
794 }
795 }
796 }
797 } else {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100798 info->port.flags &= ~ASYNC_CTS_FLOW;
Jiri Slaby1c456072008-02-07 00:16:46 -0800799 }
800 outb(info->MCR, info->ioaddr + UART_MCR);
801 if (cflag & CLOCAL) {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100802 info->port.flags &= ~ASYNC_CHECK_CD;
Jiri Slaby1c456072008-02-07 00:16:46 -0800803 } else {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100804 info->port.flags |= ASYNC_CHECK_CD;
Jiri Slaby1c456072008-02-07 00:16:46 -0800805 info->IER |= UART_IER_MSI;
806 }
807 outb(info->IER, info->ioaddr + UART_IER);
808
809 /*
810 * Set up parity check flag
811 */
812 info->read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100813 if (I_INPCK(info->port.tty))
Jiri Slaby1c456072008-02-07 00:16:46 -0800814 info->read_status_mask |= UART_LSR_FE | UART_LSR_PE;
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100815 if (I_BRKINT(info->port.tty) || I_PARMRK(info->port.tty))
Jiri Slaby1c456072008-02-07 00:16:46 -0800816 info->read_status_mask |= UART_LSR_BI;
817
818 info->ignore_status_mask = 0;
819
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100820 if (I_IGNBRK(info->port.tty)) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800821 info->ignore_status_mask |= UART_LSR_BI;
822 info->read_status_mask |= UART_LSR_BI;
823 /*
824 * If we're ignore parity and break indicators, ignore
825 * overruns too. (For real raw support).
826 */
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100827 if (I_IGNPAR(info->port.tty)) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800828 info->ignore_status_mask |=
829 UART_LSR_OE |
830 UART_LSR_PE |
831 UART_LSR_FE;
832 info->read_status_mask |=
833 UART_LSR_OE |
834 UART_LSR_PE |
835 UART_LSR_FE;
836 }
837 }
838 if (info->board->chip_flag) {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100839 mxser_set_must_xon1_value(info->ioaddr, START_CHAR(info->port.tty));
840 mxser_set_must_xoff1_value(info->ioaddr, STOP_CHAR(info->port.tty));
841 if (I_IXON(info->port.tty)) {
Christoph Hellwig148ff862008-04-30 00:54:29 -0700842 mxser_enable_must_rx_software_flow_control(
843 info->ioaddr);
Jiri Slaby1c456072008-02-07 00:16:46 -0800844 } else {
Christoph Hellwig148ff862008-04-30 00:54:29 -0700845 mxser_disable_must_rx_software_flow_control(
846 info->ioaddr);
Jiri Slaby1c456072008-02-07 00:16:46 -0800847 }
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100848 if (I_IXOFF(info->port.tty)) {
Christoph Hellwig148ff862008-04-30 00:54:29 -0700849 mxser_enable_must_tx_software_flow_control(
850 info->ioaddr);
Jiri Slaby1c456072008-02-07 00:16:46 -0800851 } else {
Christoph Hellwig148ff862008-04-30 00:54:29 -0700852 mxser_disable_must_tx_software_flow_control(
853 info->ioaddr);
Jiri Slaby1c456072008-02-07 00:16:46 -0800854 }
855 }
856
857
858 outb(fcr, info->ioaddr + UART_FCR); /* set fcr */
859 outb(cval, info->ioaddr + UART_LCR);
860
861 return ret;
862}
863
864static void mxser_check_modem_status(struct mxser_port *port, int status)
865{
866 /* update input line counters */
867 if (status & UART_MSR_TERI)
868 port->icount.rng++;
869 if (status & UART_MSR_DDSR)
870 port->icount.dsr++;
871 if (status & UART_MSR_DDCD)
872 port->icount.dcd++;
873 if (status & UART_MSR_DCTS)
874 port->icount.cts++;
875 port->mon_data.modem_status = status;
876 wake_up_interruptible(&port->delta_msr_wait);
877
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100878 if ((port->port.flags & ASYNC_CHECK_CD) && (status & UART_MSR_DDCD)) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800879 if (status & UART_MSR_DCD)
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100880 wake_up_interruptible(&port->port.open_wait);
Jiri Slaby1c456072008-02-07 00:16:46 -0800881 }
882
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100883 if (port->port.flags & ASYNC_CTS_FLOW) {
884 if (port->port.tty->hw_stopped) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800885 if (status & UART_MSR_CTS) {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100886 port->port.tty->hw_stopped = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -0800887
888 if ((port->type != PORT_16550A) &&
889 (!port->board->chip_flag)) {
890 outb(port->IER & ~UART_IER_THRI,
891 port->ioaddr + UART_IER);
892 port->IER |= UART_IER_THRI;
893 outb(port->IER, port->ioaddr +
894 UART_IER);
895 }
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100896 tty_wakeup(port->port.tty);
Jiri Slaby1c456072008-02-07 00:16:46 -0800897 }
898 } else {
899 if (!(status & UART_MSR_CTS)) {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100900 port->port.tty->hw_stopped = 1;
Jiri Slaby1c456072008-02-07 00:16:46 -0800901 if (port->type != PORT_16550A &&
902 !port->board->chip_flag) {
903 port->IER &= ~UART_IER_THRI;
904 outb(port->IER, port->ioaddr +
905 UART_IER);
906 }
907 }
908 }
909 }
910}
911
912static int mxser_startup(struct mxser_port *info)
913{
914 unsigned long page;
915 unsigned long flags;
916
917 page = __get_free_page(GFP_KERNEL);
918 if (!page)
919 return -ENOMEM;
920
921 spin_lock_irqsave(&info->slock, flags);
922
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100923 if (info->port.flags & ASYNC_INITIALIZED) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800924 free_page(page);
925 spin_unlock_irqrestore(&info->slock, flags);
926 return 0;
927 }
928
929 if (!info->ioaddr || !info->type) {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100930 if (info->port.tty)
931 set_bit(TTY_IO_ERROR, &info->port.tty->flags);
Jiri Slaby1c456072008-02-07 00:16:46 -0800932 free_page(page);
933 spin_unlock_irqrestore(&info->slock, flags);
934 return 0;
935 }
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100936 if (info->port.xmit_buf)
Jiri Slaby1c456072008-02-07 00:16:46 -0800937 free_page(page);
938 else
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100939 info->port.xmit_buf = (unsigned char *) page;
Jiri Slaby1c456072008-02-07 00:16:46 -0800940
941 /*
942 * Clear the FIFO buffers and disable them
943 * (they will be reenabled in mxser_change_speed())
944 */
945 if (info->board->chip_flag)
946 outb((UART_FCR_CLEAR_RCVR |
947 UART_FCR_CLEAR_XMIT |
948 MOXA_MUST_FCR_GDA_MODE_ENABLE), info->ioaddr + UART_FCR);
949 else
950 outb((UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT),
951 info->ioaddr + UART_FCR);
952
953 /*
954 * At this point there's no way the LSR could still be 0xFF;
955 * if it is, then bail out, because there's likely no UART
956 * here.
957 */
958 if (inb(info->ioaddr + UART_LSR) == 0xff) {
959 spin_unlock_irqrestore(&info->slock, flags);
960 if (capable(CAP_SYS_ADMIN)) {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100961 if (info->port.tty)
962 set_bit(TTY_IO_ERROR, &info->port.tty->flags);
Jiri Slaby1c456072008-02-07 00:16:46 -0800963 return 0;
964 } else
965 return -ENODEV;
966 }
967
968 /*
969 * Clear the interrupt registers.
970 */
971 (void) inb(info->ioaddr + UART_LSR);
972 (void) inb(info->ioaddr + UART_RX);
973 (void) inb(info->ioaddr + UART_IIR);
974 (void) inb(info->ioaddr + UART_MSR);
975
976 /*
977 * Now, initialize the UART
978 */
979 outb(UART_LCR_WLEN8, info->ioaddr + UART_LCR); /* reset DLAB */
980 info->MCR = UART_MCR_DTR | UART_MCR_RTS;
981 outb(info->MCR, info->ioaddr + UART_MCR);
982
983 /*
984 * Finally, enable interrupts
985 */
986 info->IER = UART_IER_MSI | UART_IER_RLSI | UART_IER_RDI;
987
988 if (info->board->chip_flag)
989 info->IER |= MOXA_MUST_IER_EGDAI;
990 outb(info->IER, info->ioaddr + UART_IER); /* enable interrupts */
991
992 /*
993 * And clear the interrupt registers again for luck.
994 */
995 (void) inb(info->ioaddr + UART_LSR);
996 (void) inb(info->ioaddr + UART_RX);
997 (void) inb(info->ioaddr + UART_IIR);
998 (void) inb(info->ioaddr + UART_MSR);
999
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001000 if (info->port.tty)
1001 clear_bit(TTY_IO_ERROR, &info->port.tty->flags);
Jiri Slaby1c456072008-02-07 00:16:46 -08001002 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
1003
1004 /*
1005 * and set the speed of the serial port
1006 */
1007 mxser_change_speed(info, NULL);
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001008 info->port.flags |= ASYNC_INITIALIZED;
Jiri Slaby1c456072008-02-07 00:16:46 -08001009 spin_unlock_irqrestore(&info->slock, flags);
1010
1011 return 0;
1012}
1013
1014/*
1015 * This routine will shutdown a serial port; interrupts maybe disabled, and
1016 * DTR is dropped if the hangup on close termio flag is on.
1017 */
1018static void mxser_shutdown(struct mxser_port *info)
1019{
1020 unsigned long flags;
1021
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001022 if (!(info->port.flags & ASYNC_INITIALIZED))
Jiri Slaby1c456072008-02-07 00:16:46 -08001023 return;
1024
1025 spin_lock_irqsave(&info->slock, flags);
1026
1027 /*
1028 * clear delta_msr_wait queue to avoid mem leaks: we may free the irq
1029 * here so the queue might never be waken up
1030 */
1031 wake_up_interruptible(&info->delta_msr_wait);
1032
1033 /*
1034 * Free the IRQ, if necessary
1035 */
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001036 if (info->port.xmit_buf) {
1037 free_page((unsigned long) info->port.xmit_buf);
1038 info->port.xmit_buf = NULL;
Jiri Slaby1c456072008-02-07 00:16:46 -08001039 }
1040
1041 info->IER = 0;
1042 outb(0x00, info->ioaddr + UART_IER);
1043
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001044 if (!info->port.tty || (info->port.tty->termios->c_cflag & HUPCL))
Jiri Slaby1c456072008-02-07 00:16:46 -08001045 info->MCR &= ~(UART_MCR_DTR | UART_MCR_RTS);
1046 outb(info->MCR, info->ioaddr + UART_MCR);
1047
1048 /* clear Rx/Tx FIFO's */
1049 if (info->board->chip_flag)
1050 outb(UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT |
1051 MOXA_MUST_FCR_GDA_MODE_ENABLE,
1052 info->ioaddr + UART_FCR);
1053 else
1054 outb(UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT,
1055 info->ioaddr + UART_FCR);
1056
1057 /* read data port to reset things */
1058 (void) inb(info->ioaddr + UART_RX);
1059
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001060 if (info->port.tty)
1061 set_bit(TTY_IO_ERROR, &info->port.tty->flags);
Jiri Slaby1c456072008-02-07 00:16:46 -08001062
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001063 info->port.flags &= ~ASYNC_INITIALIZED;
Jiri Slaby1c456072008-02-07 00:16:46 -08001064
1065 if (info->board->chip_flag)
1066 SET_MOXA_MUST_NO_SOFTWARE_FLOW_CONTROL(info->ioaddr);
1067
1068 spin_unlock_irqrestore(&info->slock, flags);
1069}
1070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071/*
1072 * This routine is called whenever a serial port is opened. It
1073 * enables interrupts for a serial port, linking in its async structure into
1074 * the IRQ chain. It also performs the serial-specific
1075 * initialization for the tty structure.
1076 */
1077static int mxser_open(struct tty_struct *tty, struct file *filp)
1078{
Jiri Slaby1c456072008-02-07 00:16:46 -08001079 struct mxser_port *info;
1080 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 int retval, line;
1082
1083 line = tty->index;
1084 if (line == MXSER_PORTS)
1085 return 0;
1086 if (line < 0 || line > MXSER_PORTS)
1087 return -ENODEV;
Jiri Slaby1c456072008-02-07 00:16:46 -08001088 info = &mxser_boards[line / MXSER_PORTS_PER_BOARD].ports[line % MXSER_PORTS_PER_BOARD];
1089 if (!info->ioaddr)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001090 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
1092 tty->driver_data = info;
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001093 info->port.tty = tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 /*
1095 * Start up serial port
1096 */
Jiri Slaby1c456072008-02-07 00:16:46 -08001097 spin_lock_irqsave(&info->slock, flags);
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001098 info->port.count++;
Jiri Slaby1c456072008-02-07 00:16:46 -08001099 spin_unlock_irqrestore(&info->slock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 retval = mxser_startup(info);
1101 if (retval)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001102 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 retval = mxser_block_til_ready(tty, filp, info);
1105 if (retval)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001106 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Cedric Le Goater8cddd702007-02-10 01:46:33 -08001108 /* unmark here for very high baud rate (ex. 921600 bps) used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 tty->low_latency = 1;
1110 return 0;
1111}
1112
Alan Cox978e5952008-04-30 00:53:59 -07001113static void mxser_flush_buffer(struct tty_struct *tty)
1114{
1115 struct mxser_port *info = tty->driver_data;
1116 char fcr;
1117 unsigned long flags;
1118
1119
1120 spin_lock_irqsave(&info->slock, flags);
1121 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
1122
1123 fcr = inb(info->ioaddr + UART_FCR);
1124 outb((fcr | UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT),
1125 info->ioaddr + UART_FCR);
1126 outb(fcr, info->ioaddr + UART_FCR);
1127
1128 spin_unlock_irqrestore(&info->slock, flags);
1129
1130 tty_wakeup(tty);
1131}
1132
1133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134/*
1135 * This routine is called when the serial port gets closed. First, we
1136 * wait for the last remaining data to be sent. Then, we unlink its
1137 * async structure from the interrupt chain if necessary, and we free
1138 * that IRQ if nothing is left in the chain.
1139 */
1140static void mxser_close(struct tty_struct *tty, struct file *filp)
1141{
Jiri Slaby1c456072008-02-07 00:16:46 -08001142 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
1144 unsigned long timeout;
1145 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147 if (tty->index == MXSER_PORTS)
1148 return;
1149 if (!info)
Kirill Smelkov6f08b722005-11-07 00:59:23 -08001150 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
1152 spin_lock_irqsave(&info->slock, flags);
1153
1154 if (tty_hung_up_p(filp)) {
1155 spin_unlock_irqrestore(&info->slock, flags);
1156 return;
1157 }
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001158 if ((tty->count == 1) && (info->port.count != 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 /*
1160 * Uh, oh. tty->count is 1, which means that the tty
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001161 * structure will be freed. Info->port.count should always
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 * be one in these conditions. If it's greater than
1163 * one, we've got real problems, since it means the
1164 * serial port won't be shutdown.
1165 */
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001166 printk(KERN_ERR "mxser_close: bad serial port count; "
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001167 "tty->count is 1, info->port.count is %d\n", info->port.count);
1168 info->port.count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 }
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001170 if (--info->port.count < 0) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001171 printk(KERN_ERR "mxser_close: bad serial port count for "
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001172 "ttys%d: %d\n", tty->index, info->port.count);
1173 info->port.count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 }
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001175 if (info->port.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 spin_unlock_irqrestore(&info->slock, flags);
1177 return;
1178 }
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001179 info->port.flags |= ASYNC_CLOSING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 spin_unlock_irqrestore(&info->slock, flags);
1181 /*
1182 * Save the termios structure, since this port may have
1183 * separate termios for callout and dialin.
1184 */
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001185 if (info->port.flags & ASYNC_NORMAL_ACTIVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 info->normal_termios = *tty->termios;
1187 /*
1188 * Now we wait for the transmit buffer to clear; and we notify
1189 * the line discipline to only process XON/XOFF characters.
1190 */
1191 tty->closing = 1;
Alan Cox44b7d1b2008-07-16 21:57:18 +01001192 if (info->port.closing_wait != ASYNC_CLOSING_WAIT_NONE)
1193 tty_wait_until_sent(tty, info->port.closing_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 /*
1195 * At this point we stop accepting input. To do this, we
1196 * disable the receive line status interrupts, and tell the
1197 * interrupt driver to stop checking the data ready bit in the
1198 * line status register.
1199 */
1200 info->IER &= ~UART_IER_RLSI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001201 if (info->board->chip_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 info->IER &= ~MOXA_MUST_RECV_ISR;
Jiri Slaby1c456072008-02-07 00:16:46 -08001203
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001204 if (info->port.flags & ASYNC_INITIALIZED) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001205 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 /*
1207 * Before we drop DTR, make sure the UART transmitter
1208 * has completely drained; this is especially
1209 * important if there is a transmit FIFO!
1210 */
1211 timeout = jiffies + HZ;
Jiri Slaby1c456072008-02-07 00:16:46 -08001212 while (!(inb(info->ioaddr + UART_LSR) & UART_LSR_TEMT)) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07001213 schedule_timeout_interruptible(5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 if (time_after(jiffies, timeout))
1215 break;
1216 }
1217 }
1218 mxser_shutdown(info);
1219
Alan Cox978e5952008-04-30 00:53:59 -07001220 mxser_flush_buffer(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001221 tty_ldisc_flush(tty);
1222
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 tty->closing = 0;
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001224 info->port.tty = NULL;
1225 if (info->port.blocked_open) {
Alan Cox44b7d1b2008-07-16 21:57:18 +01001226 if (info->port.close_delay)
1227 schedule_timeout_interruptible(info->port.close_delay);
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001228 wake_up_interruptible(&info->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
1230
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001231 info->port.flags &= ~(ASYNC_NORMAL_ACTIVE | ASYNC_CLOSING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232}
1233
1234static int mxser_write(struct tty_struct *tty, const unsigned char *buf, int count)
1235{
1236 int c, total = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08001237 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 unsigned long flags;
1239
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001240 if (!info->port.xmit_buf)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001241 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
1243 while (1) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001244 c = min_t(int, count, min(SERIAL_XMIT_SIZE - info->xmit_cnt - 1,
1245 SERIAL_XMIT_SIZE - info->xmit_head));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 if (c <= 0)
1247 break;
1248
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001249 memcpy(info->port.xmit_buf + info->xmit_head, buf, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 spin_lock_irqsave(&info->slock, flags);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001251 info->xmit_head = (info->xmit_head + c) &
1252 (SERIAL_XMIT_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 info->xmit_cnt += c;
1254 spin_unlock_irqrestore(&info->slock, flags);
1255
1256 buf += c;
1257 count -= c;
1258 total += c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 }
1260
Jiri Slaby1c456072008-02-07 00:16:46 -08001261 if (info->xmit_cnt && !tty->stopped) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001262 if (!tty->hw_stopped ||
1263 (info->type == PORT_16550A) ||
Jiri Slaby1c456072008-02-07 00:16:46 -08001264 (info->board->chip_flag)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 spin_lock_irqsave(&info->slock, flags);
Jiri Slaby1c456072008-02-07 00:16:46 -08001266 outb(info->IER & ~UART_IER_THRI, info->ioaddr +
1267 UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001269 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 spin_unlock_irqrestore(&info->slock, flags);
1271 }
1272 }
1273 return total;
1274}
1275
Alan Cox0be2ead2008-04-30 00:54:03 -07001276static int mxser_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277{
Jiri Slaby1c456072008-02-07 00:16:46 -08001278 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 unsigned long flags;
1280
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001281 if (!info->port.xmit_buf)
Alan Cox0be2ead2008-04-30 00:54:03 -07001282 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 if (info->xmit_cnt >= SERIAL_XMIT_SIZE - 1)
Alan Cox0be2ead2008-04-30 00:54:03 -07001285 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287 spin_lock_irqsave(&info->slock, flags);
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001288 info->port.xmit_buf[info->xmit_head++] = ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 info->xmit_head &= SERIAL_XMIT_SIZE - 1;
1290 info->xmit_cnt++;
1291 spin_unlock_irqrestore(&info->slock, flags);
Jiri Slaby1c456072008-02-07 00:16:46 -08001292 if (!tty->stopped) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001293 if (!tty->hw_stopped ||
1294 (info->type == PORT_16550A) ||
Jiri Slaby1c456072008-02-07 00:16:46 -08001295 info->board->chip_flag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 spin_lock_irqsave(&info->slock, flags);
Jiri Slaby1c456072008-02-07 00:16:46 -08001297 outb(info->IER & ~UART_IER_THRI, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001299 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 spin_unlock_irqrestore(&info->slock, flags);
1301 }
1302 }
Alan Cox0be2ead2008-04-30 00:54:03 -07001303 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304}
1305
1306
1307static void mxser_flush_chars(struct tty_struct *tty)
1308{
Jiri Slaby1c456072008-02-07 00:16:46 -08001309 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 unsigned long flags;
1311
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001312 if (info->xmit_cnt <= 0 ||
1313 tty->stopped ||
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001314 !info->port.xmit_buf ||
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001315 (tty->hw_stopped &&
1316 (info->type != PORT_16550A) &&
Jiri Slaby1c456072008-02-07 00:16:46 -08001317 (!info->board->chip_flag)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001318 ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 return;
1320
1321 spin_lock_irqsave(&info->slock, flags);
1322
Jiri Slaby1c456072008-02-07 00:16:46 -08001323 outb(info->IER & ~UART_IER_THRI, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001325 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
1327 spin_unlock_irqrestore(&info->slock, flags);
1328}
1329
1330static int mxser_write_room(struct tty_struct *tty)
1331{
Jiri Slaby1c456072008-02-07 00:16:46 -08001332 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 int ret;
1334
1335 ret = SERIAL_XMIT_SIZE - info->xmit_cnt - 1;
1336 if (ret < 0)
1337 ret = 0;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001338 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339}
1340
1341static int mxser_chars_in_buffer(struct tty_struct *tty)
1342{
Jiri Slaby1c456072008-02-07 00:16:46 -08001343 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 return info->xmit_cnt;
1345}
1346
Jiri Slaby1c456072008-02-07 00:16:46 -08001347/*
1348 * ------------------------------------------------------------
1349 * friends of mxser_ioctl()
1350 * ------------------------------------------------------------
1351 */
1352static int mxser_get_serial_info(struct mxser_port *info,
1353 struct serial_struct __user *retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354{
Jiri Slaby1c456072008-02-07 00:16:46 -08001355 struct serial_struct tmp = {
1356 .type = info->type,
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001357 .line = info->port.tty->index,
Jiri Slaby1c456072008-02-07 00:16:46 -08001358 .port = info->ioaddr,
1359 .irq = info->board->irq,
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001360 .flags = info->port.flags,
Jiri Slaby1c456072008-02-07 00:16:46 -08001361 .baud_base = info->baud_base,
Alan Cox44b7d1b2008-07-16 21:57:18 +01001362 .close_delay = info->port.close_delay,
1363 .closing_wait = info->port.closing_wait,
Jiri Slaby1c456072008-02-07 00:16:46 -08001364 .custom_divisor = info->custom_divisor,
1365 .hub6 = 0
1366 };
1367 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
1368 return -EFAULT;
1369 return 0;
1370}
1371
1372static int mxser_set_serial_info(struct mxser_port *info,
1373 struct serial_struct __user *new_info)
1374{
1375 struct serial_struct new_serial;
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001376 speed_t baud;
Jiri Slaby1c456072008-02-07 00:16:46 -08001377 unsigned long sl_flags;
1378 unsigned int flags;
1379 int retval = 0;
1380
1381 if (!new_info || !info->ioaddr)
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001382 return -ENODEV;
Jiri Slaby1c456072008-02-07 00:16:46 -08001383 if (copy_from_user(&new_serial, new_info, sizeof(new_serial)))
1384 return -EFAULT;
1385
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001386 if (new_serial.irq != info->board->irq ||
1387 new_serial.port != info->ioaddr)
1388 return -EINVAL;
Jiri Slaby1c456072008-02-07 00:16:46 -08001389
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001390 flags = info->port.flags & ASYNC_SPD_MASK;
Jiri Slaby1c456072008-02-07 00:16:46 -08001391
1392 if (!capable(CAP_SYS_ADMIN)) {
1393 if ((new_serial.baud_base != info->baud_base) ||
Alan Cox44b7d1b2008-07-16 21:57:18 +01001394 (new_serial.close_delay != info->port.close_delay) ||
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001395 ((new_serial.flags & ~ASYNC_USR_MASK) != (info->port.flags & ~ASYNC_USR_MASK)))
Jiri Slaby1c456072008-02-07 00:16:46 -08001396 return -EPERM;
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001397 info->port.flags = ((info->port.flags & ~ASYNC_USR_MASK) |
Jiri Slaby1c456072008-02-07 00:16:46 -08001398 (new_serial.flags & ASYNC_USR_MASK));
1399 } else {
1400 /*
1401 * OK, past this point, all the error checking has been done.
1402 * At this point, we start making changes.....
1403 */
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001404 info->port.flags = ((info->port.flags & ~ASYNC_FLAGS) |
Jiri Slaby1c456072008-02-07 00:16:46 -08001405 (new_serial.flags & ASYNC_FLAGS));
Alan Cox44b7d1b2008-07-16 21:57:18 +01001406 info->port.close_delay = new_serial.close_delay * HZ / 100;
1407 info->port.closing_wait = new_serial.closing_wait * HZ / 100;
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001408 info->port.tty->low_latency =
1409 (info->port.flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001410 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST &&
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001411 (new_serial.baud_base != info->baud_base ||
1412 new_serial.custom_divisor !=
1413 info->custom_divisor)) {
1414 baud = new_serial.baud_base / new_serial.custom_divisor;
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001415 tty_encode_baud_rate(info->port.tty, baud, baud);
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001416 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001417 }
1418
1419 info->type = new_serial.type;
1420
1421 process_txrx_fifo(info);
1422
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001423 if (info->port.flags & ASYNC_INITIALIZED) {
1424 if (flags != (info->port.flags & ASYNC_SPD_MASK)) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001425 spin_lock_irqsave(&info->slock, sl_flags);
1426 mxser_change_speed(info, NULL);
1427 spin_unlock_irqrestore(&info->slock, sl_flags);
1428 }
1429 } else
1430 retval = mxser_startup(info);
1431
1432 return retval;
1433}
1434
1435/*
1436 * mxser_get_lsr_info - get line status register info
1437 *
1438 * Purpose: Let user call ioctl() to get info when the UART physically
1439 * is emptied. On bus types like RS485, the transmitter must
1440 * release the bus after transmitting. This must be done when
1441 * the transmit shift register is empty, not be done when the
1442 * transmit holding register is empty. This functionality
1443 * allows an RS485 driver to be written in user space.
1444 */
1445static int mxser_get_lsr_info(struct mxser_port *info,
1446 unsigned int __user *value)
1447{
1448 unsigned char status;
1449 unsigned int result;
1450 unsigned long flags;
1451
1452 spin_lock_irqsave(&info->slock, flags);
1453 status = inb(info->ioaddr + UART_LSR);
1454 spin_unlock_irqrestore(&info->slock, flags);
1455 result = ((status & UART_LSR_TEMT) ? TIOCSER_TEMT : 0);
1456 return put_user(result, value);
1457}
1458
Jiri Slaby1c456072008-02-07 00:16:46 -08001459static int mxser_tiocmget(struct tty_struct *tty, struct file *file)
1460{
1461 struct mxser_port *info = tty->driver_data;
1462 unsigned char control, status;
1463 unsigned long flags;
1464
1465
1466 if (tty->index == MXSER_PORTS)
1467 return -ENOIOCTLCMD;
1468 if (test_bit(TTY_IO_ERROR, &tty->flags))
1469 return -EIO;
1470
1471 control = info->MCR;
1472
1473 spin_lock_irqsave(&info->slock, flags);
1474 status = inb(info->ioaddr + UART_MSR);
1475 if (status & UART_MSR_ANY_DELTA)
1476 mxser_check_modem_status(info, status);
1477 spin_unlock_irqrestore(&info->slock, flags);
1478 return ((control & UART_MCR_RTS) ? TIOCM_RTS : 0) |
1479 ((control & UART_MCR_DTR) ? TIOCM_DTR : 0) |
1480 ((status & UART_MSR_DCD) ? TIOCM_CAR : 0) |
1481 ((status & UART_MSR_RI) ? TIOCM_RNG : 0) |
1482 ((status & UART_MSR_DSR) ? TIOCM_DSR : 0) |
1483 ((status & UART_MSR_CTS) ? TIOCM_CTS : 0);
1484}
1485
1486static int mxser_tiocmset(struct tty_struct *tty, struct file *file,
1487 unsigned int set, unsigned int clear)
1488{
1489 struct mxser_port *info = tty->driver_data;
1490 unsigned long flags;
1491
1492
1493 if (tty->index == MXSER_PORTS)
1494 return -ENOIOCTLCMD;
1495 if (test_bit(TTY_IO_ERROR, &tty->flags))
1496 return -EIO;
1497
1498 spin_lock_irqsave(&info->slock, flags);
1499
1500 if (set & TIOCM_RTS)
1501 info->MCR |= UART_MCR_RTS;
1502 if (set & TIOCM_DTR)
1503 info->MCR |= UART_MCR_DTR;
1504
1505 if (clear & TIOCM_RTS)
1506 info->MCR &= ~UART_MCR_RTS;
1507 if (clear & TIOCM_DTR)
1508 info->MCR &= ~UART_MCR_DTR;
1509
1510 outb(info->MCR, info->ioaddr + UART_MCR);
1511 spin_unlock_irqrestore(&info->slock, flags);
1512 return 0;
1513}
1514
1515static int __init mxser_program_mode(int port)
1516{
1517 int id, i, j, n;
1518
1519 outb(0, port);
1520 outb(0, port);
1521 outb(0, port);
1522 (void)inb(port);
1523 (void)inb(port);
1524 outb(0, port);
1525 (void)inb(port);
1526
1527 id = inb(port + 1) & 0x1F;
1528 if ((id != C168_ASIC_ID) &&
1529 (id != C104_ASIC_ID) &&
1530 (id != C102_ASIC_ID) &&
1531 (id != CI132_ASIC_ID) &&
1532 (id != CI134_ASIC_ID) &&
1533 (id != CI104J_ASIC_ID))
1534 return -1;
1535 for (i = 0, j = 0; i < 4; i++) {
1536 n = inb(port + 2);
1537 if (n == 'M') {
1538 j = 1;
1539 } else if ((j == 1) && (n == 1)) {
1540 j = 2;
1541 break;
1542 } else
1543 j = 0;
1544 }
1545 if (j != 2)
1546 id = -2;
1547 return id;
1548}
1549
1550static void __init mxser_normal_mode(int port)
1551{
1552 int i, n;
1553
1554 outb(0xA5, port + 1);
1555 outb(0x80, port + 3);
1556 outb(12, port + 0); /* 9600 bps */
1557 outb(0, port + 1);
1558 outb(0x03, port + 3); /* 8 data bits */
1559 outb(0x13, port + 4); /* loop back mode */
1560 for (i = 0; i < 16; i++) {
1561 n = inb(port + 5);
1562 if ((n & 0x61) == 0x60)
1563 break;
1564 if ((n & 1) == 1)
1565 (void)inb(port);
1566 }
1567 outb(0x00, port + 4);
1568}
1569
1570#define CHIP_SK 0x01 /* Serial Data Clock in Eprom */
1571#define CHIP_DO 0x02 /* Serial Data Output in Eprom */
1572#define CHIP_CS 0x04 /* Serial Chip Select in Eprom */
1573#define CHIP_DI 0x08 /* Serial Data Input in Eprom */
1574#define EN_CCMD 0x000 /* Chip's command register */
1575#define EN0_RSARLO 0x008 /* Remote start address reg 0 */
1576#define EN0_RSARHI 0x009 /* Remote start address reg 1 */
1577#define EN0_RCNTLO 0x00A /* Remote byte count reg WR */
1578#define EN0_RCNTHI 0x00B /* Remote byte count reg WR */
1579#define EN0_DCFG 0x00E /* Data configuration reg WR */
1580#define EN0_PORT 0x010 /* Rcv missed frame error counter RD */
1581#define ENC_PAGE0 0x000 /* Select page 0 of chip registers */
1582#define ENC_PAGE3 0x0C0 /* Select page 3 of chip registers */
1583static int __init mxser_read_register(int port, unsigned short *regs)
1584{
1585 int i, k, value, id;
1586 unsigned int j;
1587
1588 id = mxser_program_mode(port);
1589 if (id < 0)
1590 return id;
1591 for (i = 0; i < 14; i++) {
1592 k = (i & 0x3F) | 0x180;
1593 for (j = 0x100; j > 0; j >>= 1) {
1594 outb(CHIP_CS, port);
1595 if (k & j) {
1596 outb(CHIP_CS | CHIP_DO, port);
1597 outb(CHIP_CS | CHIP_DO | CHIP_SK, port); /* A? bit of read */
1598 } else {
1599 outb(CHIP_CS, port);
1600 outb(CHIP_CS | CHIP_SK, port); /* A? bit of read */
1601 }
1602 }
1603 (void)inb(port);
1604 value = 0;
1605 for (k = 0, j = 0x8000; k < 16; k++, j >>= 1) {
1606 outb(CHIP_CS, port);
1607 outb(CHIP_CS | CHIP_SK, port);
1608 if (inb(port) & CHIP_DI)
1609 value |= j;
1610 }
1611 regs[i] = value;
1612 outb(0, port);
1613 }
1614 mxser_normal_mode(port);
1615 return id;
1616}
1617
1618static int mxser_ioctl_special(unsigned int cmd, void __user *argp)
1619{
1620 struct mxser_port *port;
1621 int result, status;
1622 unsigned int i, j;
Alan Cox9d6d1622008-04-30 00:53:20 -07001623 int ret = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08001624
1625 switch (cmd) {
1626 case MOXA_GET_MAJOR:
Jiri Slaby41aee9a2008-07-25 01:48:19 -07001627 printk(KERN_WARNING "mxser: '%s' uses deprecated ioctl %x, fix "
1628 "your userspace\n", current->comm, cmd);
Jiri Slaby1c456072008-02-07 00:16:46 -08001629 return put_user(ttymajor, (int __user *)argp);
1630
1631 case MOXA_CHKPORTENABLE:
1632 result = 0;
Alan Cox9d6d1622008-04-30 00:53:20 -07001633 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001634 for (i = 0; i < MXSER_BOARDS; i++)
1635 for (j = 0; j < MXSER_PORTS_PER_BOARD; j++)
1636 if (mxser_boards[i].ports[j].ioaddr)
1637 result |= (1 << i);
Alan Cox9d6d1622008-04-30 00:53:20 -07001638 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001639 return put_user(result, (unsigned long __user *)argp);
1640 case MOXA_GETDATACOUNT:
Alan Cox9d6d1622008-04-30 00:53:20 -07001641 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001642 if (copy_to_user(argp, &mxvar_log, sizeof(mxvar_log)))
Alan Cox9d6d1622008-04-30 00:53:20 -07001643 ret = -EFAULT;
1644 unlock_kernel();
1645 return ret;
Jiri Slaby72800df2008-07-25 01:48:20 -07001646 case MOXA_GETMSTATUS: {
1647 struct mxser_mstatus ms, __user *msu = argp;
Alan Cox9d6d1622008-04-30 00:53:20 -07001648 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001649 for (i = 0; i < MXSER_BOARDS; i++)
1650 for (j = 0; j < MXSER_PORTS_PER_BOARD; j++) {
1651 port = &mxser_boards[i].ports[j];
Jiri Slaby72800df2008-07-25 01:48:20 -07001652 memset(&ms, 0, sizeof(ms));
Jiri Slaby1c456072008-02-07 00:16:46 -08001653
Jiri Slaby72800df2008-07-25 01:48:20 -07001654 if (!port->ioaddr)
1655 goto copy;
Jiri Slaby1c456072008-02-07 00:16:46 -08001656
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001657 if (!port->port.tty || !port->port.tty->termios)
Jiri Slaby72800df2008-07-25 01:48:20 -07001658 ms.cflag = port->normal_termios.c_cflag;
Jiri Slaby1c456072008-02-07 00:16:46 -08001659 else
Jiri Slaby72800df2008-07-25 01:48:20 -07001660 ms.cflag = port->port.tty->termios->c_cflag;
Jiri Slaby1c456072008-02-07 00:16:46 -08001661
1662 status = inb(port->ioaddr + UART_MSR);
Jiri Slaby72800df2008-07-25 01:48:20 -07001663 if (status & UART_MSR_DCD)
1664 ms.dcd = 1;
1665 if (status & UART_MSR_DSR)
1666 ms.dsr = 1;
1667 if (status & UART_MSR_CTS)
1668 ms.cts = 1;
1669 copy:
1670 if (copy_to_user(msu, &ms, sizeof(ms))) {
1671 unlock_kernel();
1672 return -EFAULT;
1673 }
1674 msu++;
Jiri Slaby1c456072008-02-07 00:16:46 -08001675 }
Alan Cox9d6d1622008-04-30 00:53:20 -07001676 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001677 return 0;
Jiri Slaby72800df2008-07-25 01:48:20 -07001678 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001679 case MOXA_ASPP_MON_EXT: {
Jiri Slaby72800df2008-07-25 01:48:20 -07001680 struct mxser_mon_ext *me; /* it's 2k, stack unfriendly */
1681 unsigned int cflag, iflag, p;
1682 u8 opmode;
1683
1684 me = kzalloc(sizeof(*me), GFP_KERNEL);
1685 if (!me)
1686 return -ENOMEM;
Jiri Slaby1c456072008-02-07 00:16:46 -08001687
Alan Cox9d6d1622008-04-30 00:53:20 -07001688 lock_kernel();
Jiri Slaby72800df2008-07-25 01:48:20 -07001689 for (i = 0, p = 0; i < MXSER_BOARDS; i++) {
1690 for (j = 0; j < MXSER_PORTS_PER_BOARD; j++, p++) {
1691 if (p >= ARRAY_SIZE(me->rx_cnt)) {
1692 i = MXSER_BOARDS;
1693 break;
1694 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001695 port = &mxser_boards[i].ports[j];
1696 if (!port->ioaddr)
1697 continue;
1698
Jiri Slaby72800df2008-07-25 01:48:20 -07001699 status = mxser_get_msr(port->ioaddr, 0, p);
Jiri Slaby1c456072008-02-07 00:16:46 -08001700
1701 if (status & UART_MSR_TERI)
1702 port->icount.rng++;
1703 if (status & UART_MSR_DDSR)
1704 port->icount.dsr++;
1705 if (status & UART_MSR_DDCD)
1706 port->icount.dcd++;
1707 if (status & UART_MSR_DCTS)
1708 port->icount.cts++;
1709
1710 port->mon_data.modem_status = status;
Jiri Slaby72800df2008-07-25 01:48:20 -07001711 me->rx_cnt[p] = port->mon_data.rxcnt;
1712 me->tx_cnt[p] = port->mon_data.txcnt;
1713 me->up_rxcnt[p] = port->mon_data.up_rxcnt;
1714 me->up_txcnt[p] = port->mon_data.up_txcnt;
1715 me->modem_status[p] =
Jiri Slaby1c456072008-02-07 00:16:46 -08001716 port->mon_data.modem_status;
Jiri Slaby72800df2008-07-25 01:48:20 -07001717 me->baudrate[p] = tty_get_baud_rate(port->port.tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001718
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001719 if (!port->port.tty || !port->port.tty->termios) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001720 cflag = port->normal_termios.c_cflag;
1721 iflag = port->normal_termios.c_iflag;
1722 } else {
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001723 cflag = port->port.tty->termios->c_cflag;
1724 iflag = port->port.tty->termios->c_iflag;
Jiri Slaby1c456072008-02-07 00:16:46 -08001725 }
1726
Jiri Slaby72800df2008-07-25 01:48:20 -07001727 me->databits[p] = cflag & CSIZE;
1728 me->stopbits[p] = cflag & CSTOPB;
1729 me->parity[p] = cflag & (PARENB | PARODD |
1730 CMSPAR);
Jiri Slaby1c456072008-02-07 00:16:46 -08001731
1732 if (cflag & CRTSCTS)
Jiri Slaby72800df2008-07-25 01:48:20 -07001733 me->flowctrl[p] |= 0x03;
Jiri Slaby1c456072008-02-07 00:16:46 -08001734
1735 if (iflag & (IXON | IXOFF))
Jiri Slaby72800df2008-07-25 01:48:20 -07001736 me->flowctrl[p] |= 0x0C;
Jiri Slaby1c456072008-02-07 00:16:46 -08001737
1738 if (port->type == PORT_16550A)
Jiri Slaby72800df2008-07-25 01:48:20 -07001739 me->fifo[p] = 1;
Jiri Slaby1c456072008-02-07 00:16:46 -08001740
Jiri Slaby72800df2008-07-25 01:48:20 -07001741 opmode = inb(port->opmode_ioaddr) >>
1742 ((p % 4) * 2);
Jiri Slaby1c456072008-02-07 00:16:46 -08001743 opmode &= OP_MODE_MASK;
Jiri Slaby72800df2008-07-25 01:48:20 -07001744 me->iftype[p] = opmode;
Jiri Slaby1c456072008-02-07 00:16:46 -08001745 }
Alan Cox9d6d1622008-04-30 00:53:20 -07001746 }
1747 unlock_kernel();
Jiri Slaby72800df2008-07-25 01:48:20 -07001748 if (copy_to_user(argp, me, sizeof(*me)))
1749 ret = -EFAULT;
1750 kfree(me);
1751 return ret;
Alan Cox9d6d1622008-04-30 00:53:20 -07001752 }
1753 default:
Jiri Slaby1c456072008-02-07 00:16:46 -08001754 return -ENOIOCTLCMD;
1755 }
1756 return 0;
1757}
1758
1759static int mxser_cflags_changed(struct mxser_port *info, unsigned long arg,
1760 struct async_icount *cprev)
1761{
1762 struct async_icount cnow;
1763 unsigned long flags;
1764 int ret;
1765
1766 spin_lock_irqsave(&info->slock, flags);
1767 cnow = info->icount; /* atomic copy */
1768 spin_unlock_irqrestore(&info->slock, flags);
1769
1770 ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
1771 ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
1772 ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
1773 ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts));
1774
1775 *cprev = cnow;
1776
1777 return ret;
1778}
1779
1780static int mxser_ioctl(struct tty_struct *tty, struct file *file,
1781 unsigned int cmd, unsigned long arg)
1782{
1783 struct mxser_port *info = tty->driver_data;
1784 struct async_icount cnow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 unsigned long flags;
1786 void __user *argp = (void __user *)arg;
Jiri Slaby1c456072008-02-07 00:16:46 -08001787 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
1789 if (tty->index == MXSER_PORTS)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001790 return mxser_ioctl_special(cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 if (cmd == MOXA_SET_OP_MODE || cmd == MOXA_GET_OP_MODE) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001793 int p;
1794 unsigned long opmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 static unsigned char ModeMask[] = { 0xfc, 0xf3, 0xcf, 0x3f };
1796 int shiftbit;
1797 unsigned char val, mask;
1798
Jiri Slaby1c456072008-02-07 00:16:46 -08001799 p = tty->index % 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 if (cmd == MOXA_SET_OP_MODE) {
1801 if (get_user(opmode, (int __user *) argp))
1802 return -EFAULT;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001803 if (opmode != RS232_MODE &&
1804 opmode != RS485_2WIRE_MODE &&
1805 opmode != RS422_MODE &&
1806 opmode != RS485_4WIRE_MODE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 return -EFAULT;
Alan Cox9d6d1622008-04-30 00:53:20 -07001808 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 mask = ModeMask[p];
1810 shiftbit = p * 2;
1811 val = inb(info->opmode_ioaddr);
1812 val &= mask;
1813 val |= (opmode << shiftbit);
1814 outb(val, info->opmode_ioaddr);
Alan Cox9d6d1622008-04-30 00:53:20 -07001815 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 } else {
Alan Cox9d6d1622008-04-30 00:53:20 -07001817 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 shiftbit = p * 2;
1819 opmode = inb(info->opmode_ioaddr) >> shiftbit;
1820 opmode &= OP_MODE_MASK;
Alan Cox9d6d1622008-04-30 00:53:20 -07001821 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001822 if (put_user(opmode, (int __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 return -EFAULT;
1824 }
1825 return 0;
1826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Jiri Slaby1c456072008-02-07 00:16:46 -08001828 if (cmd != TIOCGSERIAL && cmd != TIOCMIWAIT && cmd != TIOCGICOUNT &&
1829 test_bit(TTY_IO_ERROR, &tty->flags))
1830 return -EIO;
1831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 case TIOCGSERIAL:
Alan Cox9d6d1622008-04-30 00:53:20 -07001834 lock_kernel();
1835 retval = mxser_get_serial_info(info, argp);
1836 unlock_kernel();
1837 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 case TIOCSSERIAL:
Alan Cox9d6d1622008-04-30 00:53:20 -07001839 lock_kernel();
1840 retval = mxser_set_serial_info(info, argp);
1841 unlock_kernel();
1842 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 case TIOCSERGETLSR: /* Get line status register */
Alan Cox9d6d1622008-04-30 00:53:20 -07001844 return mxser_get_lsr_info(info, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 /*
1846 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1847 * - mask passed in arg for lines of interest
1848 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1849 * Caller should use TIOCGICOUNT to see which one it was
1850 */
Jiri Slabyfc838152007-04-23 14:41:04 -07001851 case TIOCMIWAIT:
1852 spin_lock_irqsave(&info->slock, flags);
1853 cnow = info->icount; /* note the counters on entry */
1854 spin_unlock_irqrestore(&info->slock, flags);
1855
Jiri Slaby1c456072008-02-07 00:16:46 -08001856 return wait_event_interruptible(info->delta_msr_wait,
1857 mxser_cflags_changed(info, arg, &cnow));
1858 /*
1859 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1860 * Return: write counters to the user passed counter struct
1861 * NB: both 1->0 and 0->1 transitions are counted except for
1862 * RI where only 0->1 is counted.
1863 */
Jiri Slaby41aee9a2008-07-25 01:48:19 -07001864 case TIOCGICOUNT: {
1865 struct serial_icounter_struct icnt = { 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 spin_lock_irqsave(&info->slock, flags);
1867 cnow = info->icount;
1868 spin_unlock_irqrestore(&info->slock, flags);
Jiri Slaby41aee9a2008-07-25 01:48:19 -07001869
1870 icnt.frame = cnow.frame;
1871 icnt.brk = cnow.brk;
1872 icnt.overrun = cnow.overrun;
1873 icnt.buf_overrun = cnow.buf_overrun;
1874 icnt.parity = cnow.parity;
1875 icnt.rx = cnow.rx;
1876 icnt.tx = cnow.tx;
1877 icnt.cts = cnow.cts;
1878 icnt.dsr = cnow.dsr;
1879 icnt.rng = cnow.rng;
1880 icnt.dcd = cnow.dcd;
1881
1882 return copy_to_user(argp, &icnt, sizeof(icnt)) ? -EFAULT : 0;
1883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 case MOXA_HighSpeedOn:
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001885 return put_user(info->baud_base != 115200 ? 1 : 0, (int __user *)argp);
Jiri Slaby1c456072008-02-07 00:16:46 -08001886 case MOXA_SDS_RSTICOUNTER:
Alan Cox9d6d1622008-04-30 00:53:20 -07001887 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001888 info->mon_data.rxcnt = 0;
1889 info->mon_data.txcnt = 0;
Alan Cox9d6d1622008-04-30 00:53:20 -07001890 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 return 0;
1892
1893 case MOXA_ASPP_OQUEUE:{
Jiri Slaby1c456072008-02-07 00:16:46 -08001894 int len, lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
Alan Cox9d6d1622008-04-30 00:53:20 -07001896 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001897 len = mxser_chars_in_buffer(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001898 lsr = inb(info->ioaddr + UART_LSR) & UART_LSR_TEMT;
Jiri Slaby1c456072008-02-07 00:16:46 -08001899 len += (lsr ? 0 : 1);
Alan Cox9d6d1622008-04-30 00:53:20 -07001900 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
Jiri Slaby1c456072008-02-07 00:16:46 -08001902 return put_user(len, (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001904 case MOXA_ASPP_MON: {
1905 int mcr, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Alan Cox9d6d1622008-04-30 00:53:20 -07001907 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001908 status = mxser_get_msr(info->ioaddr, 1, tty->index);
1909 mxser_check_modem_status(info, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
Jiri Slaby1c456072008-02-07 00:16:46 -08001911 mcr = inb(info->ioaddr + UART_MCR);
1912 if (mcr & MOXA_MUST_MCR_XON_FLAG)
1913 info->mon_data.hold_reason &= ~NPPI_NOTIFY_XOFFHOLD;
1914 else
1915 info->mon_data.hold_reason |= NPPI_NOTIFY_XOFFHOLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
Jiri Slaby1c456072008-02-07 00:16:46 -08001917 if (mcr & MOXA_MUST_MCR_TX_XON)
1918 info->mon_data.hold_reason &= ~NPPI_NOTIFY_XOFFXENT;
1919 else
1920 info->mon_data.hold_reason |= NPPI_NOTIFY_XOFFXENT;
1921
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001922 if (info->port.tty->hw_stopped)
Jiri Slaby1c456072008-02-07 00:16:46 -08001923 info->mon_data.hold_reason |= NPPI_NOTIFY_CTSHOLD;
1924 else
1925 info->mon_data.hold_reason &= ~NPPI_NOTIFY_CTSHOLD;
Alan Cox9d6d1622008-04-30 00:53:20 -07001926 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001927 if (copy_to_user(argp, &info->mon_data,
1928 sizeof(struct mxser_mon)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 return -EFAULT;
Jiri Slaby1c456072008-02-07 00:16:46 -08001930
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 return 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08001932 }
1933 case MOXA_ASPP_LSTATUS: {
1934 if (put_user(info->err_shadow, (unsigned char __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
Jiri Slaby1c456072008-02-07 00:16:46 -08001937 info->err_shadow = 0;
1938 return 0;
1939 }
1940 case MOXA_SET_BAUD_METHOD: {
1941 int method;
1942
1943 if (get_user(method, (int __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 return -EFAULT;
Jiri Slaby1c456072008-02-07 00:16:46 -08001945 mxser_set_baud_method[tty->index] = method;
1946 return put_user(method, (int __user *)argp);
1947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 default:
1949 return -ENOIOCTLCMD;
1950 }
1951 return 0;
1952}
1953
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954static void mxser_stoprx(struct tty_struct *tty)
1955{
Jiri Slaby1c456072008-02-07 00:16:46 -08001956 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
1958 info->ldisc_stop_rx = 1;
1959 if (I_IXOFF(tty)) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001960 if (info->board->chip_flag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 info->IER &= ~MOXA_MUST_RECV_ISR;
Jiri Slaby1c456072008-02-07 00:16:46 -08001962 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 info->x_char = STOP_CHAR(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001965 outb(0, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001967 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 }
1969 }
1970
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001971 if (info->port.tty->termios->c_cflag & CRTSCTS) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001972 info->MCR &= ~UART_MCR_RTS;
1973 outb(info->MCR, info->ioaddr + UART_MCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 }
1975}
1976
1977/*
1978 * This routine is called by the upper-layer tty layer to signal that
1979 * incoming characters should be throttled.
1980 */
1981static void mxser_throttle(struct tty_struct *tty)
1982{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 mxser_stoprx(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984}
1985
1986static void mxser_unthrottle(struct tty_struct *tty)
1987{
Jiri Slaby1c456072008-02-07 00:16:46 -08001988 struct mxser_port *info = tty->driver_data;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001989
Jiri Slaby1c456072008-02-07 00:16:46 -08001990 /* startrx */
1991 info->ldisc_stop_rx = 0;
1992 if (I_IXOFF(tty)) {
1993 if (info->x_char)
1994 info->x_char = 0;
1995 else {
1996 if (info->board->chip_flag) {
1997 info->IER |= MOXA_MUST_RECV_ISR;
1998 outb(info->IER, info->ioaddr + UART_IER);
1999 } else {
2000 info->x_char = START_CHAR(tty);
2001 outb(0, info->ioaddr + UART_IER);
2002 info->IER |= UART_IER_THRI;
2003 outb(info->IER, info->ioaddr + UART_IER);
2004 }
2005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 }
2007
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002008 if (info->port.tty->termios->c_cflag & CRTSCTS) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002009 info->MCR |= UART_MCR_RTS;
2010 outb(info->MCR, info->ioaddr + UART_MCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 }
2012}
2013
2014/*
2015 * mxser_stop() and mxser_start()
2016 *
2017 * This routines are called before setting or resetting tty->stopped.
2018 * They enable or disable transmitter interrupts, as necessary.
2019 */
2020static void mxser_stop(struct tty_struct *tty)
2021{
Jiri Slaby1c456072008-02-07 00:16:46 -08002022 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 unsigned long flags;
2024
2025 spin_lock_irqsave(&info->slock, flags);
2026 if (info->IER & UART_IER_THRI) {
2027 info->IER &= ~UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08002028 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 }
2030 spin_unlock_irqrestore(&info->slock, flags);
2031}
2032
2033static void mxser_start(struct tty_struct *tty)
2034{
Jiri Slaby1c456072008-02-07 00:16:46 -08002035 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 unsigned long flags;
2037
2038 spin_lock_irqsave(&info->slock, flags);
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002039 if (info->xmit_cnt && info->port.xmit_buf) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002040 outb(info->IER & ~UART_IER_THRI, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08002042 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 }
2044 spin_unlock_irqrestore(&info->slock, flags);
2045}
2046
Jiri Slaby1c456072008-02-07 00:16:46 -08002047static void mxser_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
2048{
2049 struct mxser_port *info = tty->driver_data;
2050 unsigned long flags;
2051
2052 spin_lock_irqsave(&info->slock, flags);
2053 mxser_change_speed(info, old_termios);
2054 spin_unlock_irqrestore(&info->slock, flags);
2055
2056 if ((old_termios->c_cflag & CRTSCTS) &&
2057 !(tty->termios->c_cflag & CRTSCTS)) {
2058 tty->hw_stopped = 0;
2059 mxser_start(tty);
2060 }
2061
2062 /* Handle sw stopped */
2063 if ((old_termios->c_iflag & IXON) &&
2064 !(tty->termios->c_iflag & IXON)) {
2065 tty->stopped = 0;
2066
2067 if (info->board->chip_flag) {
2068 spin_lock_irqsave(&info->slock, flags);
Christoph Hellwig148ff862008-04-30 00:54:29 -07002069 mxser_disable_must_rx_software_flow_control(
2070 info->ioaddr);
Jiri Slaby1c456072008-02-07 00:16:46 -08002071 spin_unlock_irqrestore(&info->slock, flags);
2072 }
2073
2074 mxser_start(tty);
2075 }
2076}
2077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078/*
2079 * mxser_wait_until_sent() --- wait until the transmitter is empty
2080 */
2081static void mxser_wait_until_sent(struct tty_struct *tty, int timeout)
2082{
Jiri Slaby1c456072008-02-07 00:16:46 -08002083 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 unsigned long orig_jiffies, char_time;
2085 int lsr;
2086
2087 if (info->type == PORT_UNKNOWN)
2088 return;
2089
2090 if (info->xmit_fifo_size == 0)
2091 return; /* Just in case.... */
2092
2093 orig_jiffies = jiffies;
2094 /*
2095 * Set the check interval to be 1/5 of the estimated time to
2096 * send a single character, and make it at least 1. The check
2097 * interval should also be less than the timeout.
2098 *
2099 * Note: we have to use pretty tight timings here to satisfy
2100 * the NIST-PCTS.
2101 */
2102 char_time = (info->timeout - HZ / 50) / info->xmit_fifo_size;
2103 char_time = char_time / 5;
2104 if (char_time == 0)
2105 char_time = 1;
2106 if (timeout && timeout < char_time)
2107 char_time = timeout;
2108 /*
2109 * If the transmitter hasn't cleared in twice the approximate
2110 * amount of time to send the entire FIFO, it probably won't
2111 * ever clear. This assumes the UART isn't doing flow
2112 * control, which is currently the case. Hence, if it ever
2113 * takes longer than info->timeout, this is probably due to a
2114 * UART bug of some kind. So, we clamp the timeout parameter at
2115 * 2*info->timeout.
2116 */
2117 if (!timeout || timeout > 2 * info->timeout)
2118 timeout = 2 * info->timeout;
2119#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002120 printk(KERN_DEBUG "In rs_wait_until_sent(%d) check=%lu...",
2121 timeout, char_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 printk("jiff=%lu...", jiffies);
2123#endif
Alan Cox978e5952008-04-30 00:53:59 -07002124 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08002125 while (!((lsr = inb(info->ioaddr + UART_LSR)) & UART_LSR_TEMT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2127 printk("lsr = %d (jiff=%lu)...", lsr, jiffies);
2128#endif
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07002129 schedule_timeout_interruptible(char_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 if (signal_pending(current))
2131 break;
2132 if (timeout && time_after(jiffies, orig_jiffies + timeout))
2133 break;
2134 }
2135 set_current_state(TASK_RUNNING);
Alan Cox978e5952008-04-30 00:53:59 -07002136 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
2138#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2139 printk("lsr = %d (jiff=%lu)...done\n", lsr, jiffies);
2140#endif
2141}
2142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143/*
2144 * This routine is called by tty_hangup() when a hangup is signaled.
2145 */
Jiri Slaby1c456072008-02-07 00:16:46 -08002146static void mxser_hangup(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147{
Jiri Slaby1c456072008-02-07 00:16:46 -08002148 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
2150 mxser_flush_buffer(tty);
2151 mxser_shutdown(info);
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002152 info->port.count = 0;
2153 info->port.flags &= ~ASYNC_NORMAL_ACTIVE;
2154 info->port.tty = NULL;
2155 wake_up_interruptible(&info->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156}
2157
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158/*
2159 * mxser_rs_break() --- routine which turns the break handling on or off
2160 */
Alan Cox9e989662008-07-22 11:18:03 +01002161static int mxser_rs_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162{
Jiri Slaby1c456072008-02-07 00:16:46 -08002163 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 unsigned long flags;
2165
2166 spin_lock_irqsave(&info->slock, flags);
2167 if (break_state == -1)
Jiri Slaby1c456072008-02-07 00:16:46 -08002168 outb(inb(info->ioaddr + UART_LCR) | UART_LCR_SBC,
2169 info->ioaddr + UART_LCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 else
Jiri Slaby1c456072008-02-07 00:16:46 -08002171 outb(inb(info->ioaddr + UART_LCR) & ~UART_LCR_SBC,
2172 info->ioaddr + UART_LCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 spin_unlock_irqrestore(&info->slock, flags);
Alan Cox9e989662008-07-22 11:18:03 +01002174 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175}
2176
Jiri Slaby1c456072008-02-07 00:16:46 -08002177static void mxser_receive_chars(struct mxser_port *port, int *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178{
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002179 struct tty_struct *tty = port->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 unsigned char ch, gdl;
2181 int ignored = 0;
2182 int cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 int recv_room;
2184 int max = 256;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Alan Cox33f0f882006-01-09 20:54:13 -08002186 recv_room = tty->receive_room;
Jiri Slaby1c456072008-02-07 00:16:46 -08002187 if ((recv_room == 0) && (!port->ldisc_stop_rx))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 mxser_stoprx(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
Jiri Slaby1c456072008-02-07 00:16:46 -08002190 if (port->board->chip_flag != MOXA_OTHER_UART) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
Jiri Slaby1c456072008-02-07 00:16:46 -08002192 if (*status & UART_LSR_SPECIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 goto intr_old;
Jiri Slaby1c456072008-02-07 00:16:46 -08002194 if (port->board->chip_flag == MOXA_MUST_MU860_HWID &&
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002195 (*status & MOXA_MUST_LSR_RERR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 goto intr_old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 if (*status & MOXA_MUST_LSR_RERR)
2198 goto intr_old;
2199
Jiri Slaby1c456072008-02-07 00:16:46 -08002200 gdl = inb(port->ioaddr + MOXA_MUST_GDL_REGISTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
Jiri Slaby1c456072008-02-07 00:16:46 -08002202 if (port->board->chip_flag == MOXA_MUST_MU150_HWID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 gdl &= MOXA_MUST_GDL_MASK;
2204 if (gdl >= recv_room) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002205 if (!port->ldisc_stop_rx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 mxser_stoprx(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 }
2208 while (gdl--) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002209 ch = inb(port->ioaddr + UART_RX);
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002210 tty_insert_flip_char(tty, ch, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 }
2213 goto end_intr;
2214 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002215intr_old:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216
2217 do {
2218 if (max-- < 0)
2219 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
Jiri Slaby1c456072008-02-07 00:16:46 -08002221 ch = inb(port->ioaddr + UART_RX);
2222 if (port->board->chip_flag && (*status & UART_LSR_OE))
2223 outb(0x23, port->ioaddr + UART_FCR);
2224 *status &= port->read_status_mask;
2225 if (*status & port->ignore_status_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 if (++ignored > 100)
2227 break;
2228 } else {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002229 char flag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 if (*status & UART_LSR_SPECIAL) {
2231 if (*status & UART_LSR_BI) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002232 flag = TTY_BREAK;
Jiri Slaby1c456072008-02-07 00:16:46 -08002233 port->icount.brk++;
2234
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002235 if (port->port.flags & ASYNC_SAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 do_SAK(tty);
2237 } else if (*status & UART_LSR_PE) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002238 flag = TTY_PARITY;
Jiri Slaby1c456072008-02-07 00:16:46 -08002239 port->icount.parity++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 } else if (*status & UART_LSR_FE) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002241 flag = TTY_FRAME;
Jiri Slaby1c456072008-02-07 00:16:46 -08002242 port->icount.frame++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 } else if (*status & UART_LSR_OE) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002244 flag = TTY_OVERRUN;
Jiri Slaby1c456072008-02-07 00:16:46 -08002245 port->icount.overrun++;
2246 } else
2247 flag = TTY_BREAK;
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002248 }
2249 tty_insert_flip_char(tty, ch, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 cnt++;
2251 if (cnt >= recv_room) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002252 if (!port->ldisc_stop_rx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 mxser_stoprx(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 break;
2255 }
2256
2257 }
2258
Jiri Slaby1c456072008-02-07 00:16:46 -08002259 if (port->board->chip_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
Jiri Slaby1c456072008-02-07 00:16:46 -08002262 *status = inb(port->ioaddr + UART_LSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 } while (*status & UART_LSR_DR);
2264
Jiri Slaby1c456072008-02-07 00:16:46 -08002265end_intr:
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002266 mxvar_log.rxcnt[port->port.tty->index] += cnt;
Jiri Slaby1c456072008-02-07 00:16:46 -08002267 port->mon_data.rxcnt += cnt;
2268 port->mon_data.up_rxcnt += cnt;
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002269
Jiri Slaby1c456072008-02-07 00:16:46 -08002270 /*
2271 * We are called from an interrupt context with &port->slock
2272 * being held. Drop it temporarily in order to prevent
2273 * recursive locking.
2274 */
2275 spin_unlock(&port->slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 tty_flip_buffer_push(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08002277 spin_lock(&port->slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278}
2279
Jiri Slaby1c456072008-02-07 00:16:46 -08002280static void mxser_transmit_chars(struct mxser_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281{
2282 int count, cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
Jiri Slaby1c456072008-02-07 00:16:46 -08002284 if (port->x_char) {
2285 outb(port->x_char, port->ioaddr + UART_TX);
2286 port->x_char = 0;
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002287 mxvar_log.txcnt[port->port.tty->index]++;
Jiri Slaby1c456072008-02-07 00:16:46 -08002288 port->mon_data.txcnt++;
2289 port->mon_data.up_txcnt++;
2290 port->icount.tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 return;
2292 }
2293
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002294 if (port->port.xmit_buf == NULL)
Jiri Slaby1c456072008-02-07 00:16:46 -08002295 return;
2296
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002297 if ((port->xmit_cnt <= 0) || port->port.tty->stopped ||
2298 (port->port.tty->hw_stopped &&
Jiri Slaby1c456072008-02-07 00:16:46 -08002299 (port->type != PORT_16550A) &&
2300 (!port->board->chip_flag))) {
2301 port->IER &= ~UART_IER_THRI;
2302 outb(port->IER, port->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 return;
2304 }
2305
Jiri Slaby1c456072008-02-07 00:16:46 -08002306 cnt = port->xmit_cnt;
2307 count = port->xmit_fifo_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 do {
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002309 outb(port->port.xmit_buf[port->xmit_tail++],
Jiri Slaby1c456072008-02-07 00:16:46 -08002310 port->ioaddr + UART_TX);
2311 port->xmit_tail = port->xmit_tail & (SERIAL_XMIT_SIZE - 1);
2312 if (--port->xmit_cnt <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 break;
2314 } while (--count > 0);
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002315 mxvar_log.txcnt[port->port.tty->index] += (cnt - port->xmit_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
Jiri Slaby1c456072008-02-07 00:16:46 -08002317 port->mon_data.txcnt += (cnt - port->xmit_cnt);
2318 port->mon_data.up_txcnt += (cnt - port->xmit_cnt);
2319 port->icount.tx += (cnt - port->xmit_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
Jiri Slaby1c456072008-02-07 00:16:46 -08002321 if (port->xmit_cnt < WAKEUP_CHARS)
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002322 tty_wakeup(port->port.tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
Jiri Slaby1c456072008-02-07 00:16:46 -08002324 if (port->xmit_cnt <= 0) {
2325 port->IER &= ~UART_IER_THRI;
2326 outb(port->IER, port->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328}
2329
2330/*
Jiri Slaby1c456072008-02-07 00:16:46 -08002331 * This is the serial driver's generic interrupt routine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 */
Jiri Slaby1c456072008-02-07 00:16:46 -08002333static irqreturn_t mxser_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334{
Jiri Slaby1c456072008-02-07 00:16:46 -08002335 int status, iir, i;
2336 struct mxser_board *brd = NULL;
2337 struct mxser_port *port;
2338 int max, irqbits, bits, msr;
2339 unsigned int int_cnt, pass_counter = 0;
2340 int handled = IRQ_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341
Jiri Slaby1c456072008-02-07 00:16:46 -08002342 for (i = 0; i < MXSER_BOARDS; i++)
2343 if (dev_id == &mxser_boards[i]) {
2344 brd = dev_id;
2345 break;
2346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347
Jiri Slaby1c456072008-02-07 00:16:46 -08002348 if (i == MXSER_BOARDS)
2349 goto irq_stop;
2350 if (brd == NULL)
2351 goto irq_stop;
2352 max = brd->info->nports;
2353 while (pass_counter++ < MXSER_ISR_PASS_LIMIT) {
2354 irqbits = inb(brd->vector) & brd->vector_mask;
2355 if (irqbits == brd->vector_mask)
2356 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
Jiri Slaby1c456072008-02-07 00:16:46 -08002358 handled = IRQ_HANDLED;
2359 for (i = 0, bits = 1; i < max; i++, irqbits |= bits, bits <<= 1) {
2360 if (irqbits == brd->vector_mask)
2361 break;
2362 if (bits & irqbits)
2363 continue;
2364 port = &brd->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
Jiri Slaby1c456072008-02-07 00:16:46 -08002366 int_cnt = 0;
2367 spin_lock(&port->slock);
2368 do {
2369 iir = inb(port->ioaddr + UART_IIR);
2370 if (iir & UART_IIR_NO_INT)
2371 break;
2372 iir &= MOXA_MUST_IIR_MASK;
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002373 if (!port->port.tty ||
2374 (port->port.flags & ASYNC_CLOSING) ||
2375 !(port->port.flags &
Jiri Slaby1c456072008-02-07 00:16:46 -08002376 ASYNC_INITIALIZED)) {
2377 status = inb(port->ioaddr + UART_LSR);
2378 outb(0x27, port->ioaddr + UART_FCR);
2379 inb(port->ioaddr + UART_MSR);
2380 break;
2381 }
2382
2383 status = inb(port->ioaddr + UART_LSR);
2384
2385 if (status & UART_LSR_PE)
2386 port->err_shadow |= NPPI_NOTIFY_PARITY;
2387 if (status & UART_LSR_FE)
2388 port->err_shadow |= NPPI_NOTIFY_FRAMING;
2389 if (status & UART_LSR_OE)
2390 port->err_shadow |=
2391 NPPI_NOTIFY_HW_OVERRUN;
2392 if (status & UART_LSR_BI)
2393 port->err_shadow |= NPPI_NOTIFY_BREAK;
2394
2395 if (port->board->chip_flag) {
2396 if (iir == MOXA_MUST_IIR_GDA ||
2397 iir == MOXA_MUST_IIR_RDA ||
2398 iir == MOXA_MUST_IIR_RTO ||
2399 iir == MOXA_MUST_IIR_LSR)
2400 mxser_receive_chars(port,
2401 &status);
2402
2403 } else {
2404 status &= port->read_status_mask;
2405 if (status & UART_LSR_DR)
2406 mxser_receive_chars(port,
2407 &status);
2408 }
2409 msr = inb(port->ioaddr + UART_MSR);
2410 if (msr & UART_MSR_ANY_DELTA)
2411 mxser_check_modem_status(port, msr);
2412
2413 if (port->board->chip_flag) {
2414 if (iir == 0x02 && (status &
2415 UART_LSR_THRE))
2416 mxser_transmit_chars(port);
2417 } else {
2418 if (status & UART_LSR_THRE)
2419 mxser_transmit_chars(port);
2420 }
2421 } while (int_cnt++ < MXSER_ISR_PASS_LIMIT);
2422 spin_unlock(&port->slock);
2423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 }
2425
Jiri Slaby1c456072008-02-07 00:16:46 -08002426irq_stop:
2427 return handled;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428}
2429
Jiri Slaby1c456072008-02-07 00:16:46 -08002430static const struct tty_operations mxser_ops = {
2431 .open = mxser_open,
2432 .close = mxser_close,
2433 .write = mxser_write,
2434 .put_char = mxser_put_char,
2435 .flush_chars = mxser_flush_chars,
2436 .write_room = mxser_write_room,
2437 .chars_in_buffer = mxser_chars_in_buffer,
2438 .flush_buffer = mxser_flush_buffer,
2439 .ioctl = mxser_ioctl,
2440 .throttle = mxser_throttle,
2441 .unthrottle = mxser_unthrottle,
2442 .set_termios = mxser_set_termios,
2443 .stop = mxser_stop,
2444 .start = mxser_start,
2445 .hangup = mxser_hangup,
2446 .break_ctl = mxser_rs_break,
2447 .wait_until_sent = mxser_wait_until_sent,
2448 .tiocmget = mxser_tiocmget,
2449 .tiocmset = mxser_tiocmset,
2450};
2451
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452/*
Jiri Slaby1c456072008-02-07 00:16:46 -08002453 * The MOXA Smartio/Industio serial driver boot-time initialization code!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 */
Jiri Slaby1c456072008-02-07 00:16:46 -08002455
2456static void mxser_release_res(struct mxser_board *brd, struct pci_dev *pdev,
2457 unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458{
Jiri Slaby1c456072008-02-07 00:16:46 -08002459 if (irq)
2460 free_irq(brd->irq, brd);
2461 if (pdev != NULL) { /* PCI */
2462#ifdef CONFIG_PCI
2463 pci_release_region(pdev, 2);
2464 pci_release_region(pdev, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 } else {
Jiri Slaby1c456072008-02-07 00:16:46 -08002467 release_region(brd->ports[0].ioaddr, 8 * brd->info->nports);
2468 release_region(brd->vector, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470}
2471
Jiri Slaby1c456072008-02-07 00:16:46 -08002472static int __devinit mxser_initbrd(struct mxser_board *brd,
2473 struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474{
Jiri Slaby1c456072008-02-07 00:16:46 -08002475 struct mxser_port *info;
2476 unsigned int i;
2477 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
Jiri Slaby83766bc2008-07-25 01:48:21 -07002479 printk(KERN_INFO "mxser: max. baud rate = %d bps\n",
2480 brd->ports[0].max_baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481
Jiri Slaby1c456072008-02-07 00:16:46 -08002482 for (i = 0; i < brd->info->nports; i++) {
2483 info = &brd->ports[i];
Alan Cox44b7d1b2008-07-16 21:57:18 +01002484 tty_port_init(&info->port);
Jiri Slaby1c456072008-02-07 00:16:46 -08002485 info->board = brd;
2486 info->stop_rx = 0;
2487 info->ldisc_stop_rx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488
Jiri Slaby1c456072008-02-07 00:16:46 -08002489 /* Enhance mode enabled here */
2490 if (brd->chip_flag != MOXA_OTHER_UART)
Christoph Hellwig148ff862008-04-30 00:54:29 -07002491 mxser_enable_must_enchance_mode(info->ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002493 info->port.flags = ASYNC_SHARE_IRQ;
Jiri Slaby1c456072008-02-07 00:16:46 -08002494 info->type = brd->uart_type;
2495
2496 process_txrx_fifo(info);
2497
2498 info->custom_divisor = info->baud_base * 16;
Alan Cox44b7d1b2008-07-16 21:57:18 +01002499 info->port.close_delay = 5 * HZ / 10;
2500 info->port.closing_wait = 30 * HZ;
Jiri Slaby1c456072008-02-07 00:16:46 -08002501 info->normal_termios = mxvar_sdriver->init_termios;
Jiri Slaby1c456072008-02-07 00:16:46 -08002502 init_waitqueue_head(&info->delta_msr_wait);
2503 memset(&info->mon_data, 0, sizeof(struct mxser_mon));
2504 info->err_shadow = 0;
2505 spin_lock_init(&info->slock);
2506
2507 /* before set INT ISR, disable all int */
2508 outb(inb(info->ioaddr + UART_IER) & 0xf0,
2509 info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 }
2511
Jiri Slaby1c456072008-02-07 00:16:46 -08002512 retval = request_irq(brd->irq, mxser_interrupt, IRQF_SHARED, "mxser",
2513 brd);
2514 if (retval) {
2515 printk(KERN_ERR "Board %s: Request irq failed, IRQ (%d) may "
2516 "conflict with another device.\n",
2517 brd->info->name, brd->irq);
2518 /* We hold resources, we need to release them. */
2519 mxser_release_res(brd, pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002521 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522}
2523
Jiri Slaby1c456072008-02-07 00:16:46 -08002524static int __init mxser_get_ISA_conf(int cap, struct mxser_board *brd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525{
2526 int id, i, bits;
2527 unsigned short regs[16], irq;
2528 unsigned char scratch, scratch2;
2529
Jiri Slaby1c456072008-02-07 00:16:46 -08002530 brd->chip_flag = MOXA_OTHER_UART;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
2532 id = mxser_read_register(cap, regs);
Jiri Slaby1c456072008-02-07 00:16:46 -08002533 switch (id) {
2534 case C168_ASIC_ID:
2535 brd->info = &mxser_cards[0];
2536 break;
2537 case C104_ASIC_ID:
2538 brd->info = &mxser_cards[1];
2539 break;
2540 case CI104J_ASIC_ID:
2541 brd->info = &mxser_cards[2];
2542 break;
2543 case C102_ASIC_ID:
2544 brd->info = &mxser_cards[5];
2545 break;
2546 case CI132_ASIC_ID:
2547 brd->info = &mxser_cards[6];
2548 break;
2549 case CI134_ASIC_ID:
2550 brd->info = &mxser_cards[7];
2551 break;
2552 default:
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002553 return 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08002554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555
2556 irq = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08002557 /* some ISA cards have 2 ports, but we want to see them as 4-port (why?)
2558 Flag-hack checks if configuration should be read as 2-port here. */
2559 if (brd->info->nports == 2 || (brd->info->flags & MXSER_HAS2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 irq = regs[9] & 0xF000;
2561 irq = irq | (irq >> 4);
2562 if (irq != (regs[9] & 0xFF00))
Jiri Slaby83766bc2008-07-25 01:48:21 -07002563 goto err_irqconflict;
Jiri Slaby1c456072008-02-07 00:16:46 -08002564 } else if (brd->info->nports == 4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 irq = regs[9] & 0xF000;
2566 irq = irq | (irq >> 4);
2567 irq = irq | (irq >> 8);
2568 if (irq != regs[9])
Jiri Slaby83766bc2008-07-25 01:48:21 -07002569 goto err_irqconflict;
Jiri Slaby1c456072008-02-07 00:16:46 -08002570 } else if (brd->info->nports == 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 irq = regs[9] & 0xF000;
2572 irq = irq | (irq >> 4);
2573 irq = irq | (irq >> 8);
2574 if ((irq != regs[9]) || (irq != regs[10]))
Jiri Slaby83766bc2008-07-25 01:48:21 -07002575 goto err_irqconflict;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 }
2577
Jiri Slaby83766bc2008-07-25 01:48:21 -07002578 if (!irq) {
2579 printk(KERN_ERR "mxser: interrupt number unset\n");
2580 return -EIO;
2581 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002582 brd->irq = ((int)(irq & 0xF000) >> 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 for (i = 0; i < 8; i++)
Jiri Slaby1c456072008-02-07 00:16:46 -08002584 brd->ports[i].ioaddr = (int) regs[i + 1] & 0xFFF8;
Jiri Slaby83766bc2008-07-25 01:48:21 -07002585 if ((regs[12] & 0x80) == 0) {
2586 printk(KERN_ERR "mxser: invalid interrupt vector\n");
2587 return -EIO;
2588 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002589 brd->vector = (int)regs[11]; /* interrupt vector */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 if (id == 1)
Jiri Slaby1c456072008-02-07 00:16:46 -08002591 brd->vector_mask = 0x00FF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 else
Jiri Slaby1c456072008-02-07 00:16:46 -08002593 brd->vector_mask = 0x000F;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 for (i = 7, bits = 0x0100; i >= 0; i--, bits <<= 1) {
2595 if (regs[12] & bits) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002596 brd->ports[i].baud_base = 921600;
2597 brd->ports[i].max_baud = 921600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 } else {
Jiri Slaby1c456072008-02-07 00:16:46 -08002599 brd->ports[i].baud_base = 115200;
2600 brd->ports[i].max_baud = 115200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 }
2602 }
2603 scratch2 = inb(cap + UART_LCR) & (~UART_LCR_DLAB);
2604 outb(scratch2 | UART_LCR_DLAB, cap + UART_LCR);
2605 outb(0, cap + UART_EFR); /* EFR is the same as FCR */
2606 outb(scratch2, cap + UART_LCR);
2607 outb(UART_FCR_ENABLE_FIFO, cap + UART_FCR);
2608 scratch = inb(cap + UART_IIR);
2609
2610 if (scratch & 0xC0)
Jiri Slaby1c456072008-02-07 00:16:46 -08002611 brd->uart_type = PORT_16550A;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 else
Jiri Slaby1c456072008-02-07 00:16:46 -08002613 brd->uart_type = PORT_16450;
2614 if (!request_region(brd->ports[0].ioaddr, 8 * brd->info->nports,
Jiri Slaby83766bc2008-07-25 01:48:21 -07002615 "mxser(IO)")) {
2616 printk(KERN_ERR "mxser: can't request ports I/O region: "
2617 "0x%.8lx-0x%.8lx\n",
2618 brd->ports[0].ioaddr, brd->ports[0].ioaddr +
2619 8 * brd->info->nports - 1);
2620 return -EIO;
2621 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002622 if (!request_region(brd->vector, 1, "mxser(vector)")) {
2623 release_region(brd->ports[0].ioaddr, 8 * brd->info->nports);
Jiri Slaby83766bc2008-07-25 01:48:21 -07002624 printk(KERN_ERR "mxser: can't request interrupt vector region: "
2625 "0x%.8lx-0x%.8lx\n",
2626 brd->ports[0].ioaddr, brd->ports[0].ioaddr +
2627 8 * brd->info->nports - 1);
2628 return -EIO;
Jiri Slaby1c456072008-02-07 00:16:46 -08002629 }
2630 return brd->info->nports;
Jiri Slaby83766bc2008-07-25 01:48:21 -07002631
2632err_irqconflict:
2633 printk(KERN_ERR "mxser: invalid interrupt number\n");
2634 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635}
2636
Jiri Slaby1c456072008-02-07 00:16:46 -08002637static int __devinit mxser_probe(struct pci_dev *pdev,
2638 const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639{
Jiri Slaby1c456072008-02-07 00:16:46 -08002640#ifdef CONFIG_PCI
2641 struct mxser_board *brd;
2642 unsigned int i, j;
2643 unsigned long ioaddress;
2644 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645
Jiri Slaby1c456072008-02-07 00:16:46 -08002646 for (i = 0; i < MXSER_BOARDS; i++)
2647 if (mxser_boards[i].info == NULL)
2648 break;
2649
2650 if (i >= MXSER_BOARDS) {
Jiri Slaby83766bc2008-07-25 01:48:21 -07002651 dev_err(&pdev->dev, "too many boards found (maximum %d), board "
2652 "not configured\n", MXSER_BOARDS);
Jiri Slaby1c456072008-02-07 00:16:46 -08002653 goto err;
2654 }
2655
2656 brd = &mxser_boards[i];
2657 brd->idx = i * MXSER_PORTS_PER_BOARD;
Jiri Slaby83766bc2008-07-25 01:48:21 -07002658 dev_info(&pdev->dev, "found MOXA %s board (BusNo=%d, DevNo=%d)\n",
Jiri Slaby1c456072008-02-07 00:16:46 -08002659 mxser_cards[ent->driver_data].name,
2660 pdev->bus->number, PCI_SLOT(pdev->devfn));
2661
2662 retval = pci_enable_device(pdev);
2663 if (retval) {
Jiri Slaby83766bc2008-07-25 01:48:21 -07002664 dev_err(&pdev->dev, "PCI enable failed\n");
Jiri Slaby1c456072008-02-07 00:16:46 -08002665 goto err;
2666 }
2667
2668 /* io address */
2669 ioaddress = pci_resource_start(pdev, 2);
2670 retval = pci_request_region(pdev, 2, "mxser(IO)");
2671 if (retval)
2672 goto err;
2673
2674 brd->info = &mxser_cards[ent->driver_data];
2675 for (i = 0; i < brd->info->nports; i++)
2676 brd->ports[i].ioaddr = ioaddress + 8 * i;
2677
2678 /* vector */
2679 ioaddress = pci_resource_start(pdev, 3);
2680 retval = pci_request_region(pdev, 3, "mxser(vector)");
2681 if (retval)
2682 goto err_relio;
2683 brd->vector = ioaddress;
2684
2685 /* irq */
2686 brd->irq = pdev->irq;
2687
2688 brd->chip_flag = CheckIsMoxaMust(brd->ports[0].ioaddr);
2689 brd->uart_type = PORT_16550A;
2690 brd->vector_mask = 0;
2691
2692 for (i = 0; i < brd->info->nports; i++) {
2693 for (j = 0; j < UART_INFO_NUM; j++) {
2694 if (Gpci_uart_info[j].type == brd->chip_flag) {
2695 brd->ports[i].max_baud =
2696 Gpci_uart_info[j].max_baud;
2697
2698 /* exception....CP-102 */
2699 if (brd->info->flags & MXSER_HIGHBAUD)
2700 brd->ports[i].max_baud = 921600;
2701 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 }
2703 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002704 }
2705
2706 if (brd->chip_flag == MOXA_MUST_MU860_HWID) {
2707 for (i = 0; i < brd->info->nports; i++) {
2708 if (i < 4)
2709 brd->ports[i].opmode_ioaddr = ioaddress + 4;
2710 else
2711 brd->ports[i].opmode_ioaddr = ioaddress + 0x0c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002713 outb(0, ioaddress + 4); /* default set to RS232 mode */
2714 outb(0, ioaddress + 0x0c); /* default set to RS232 mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002716
2717 for (i = 0; i < brd->info->nports; i++) {
2718 brd->vector_mask |= (1 << i);
2719 brd->ports[i].baud_base = 921600;
2720 }
2721
2722 /* mxser_initbrd will hook ISR. */
2723 retval = mxser_initbrd(brd, pdev);
2724 if (retval)
2725 goto err_null;
2726
2727 for (i = 0; i < brd->info->nports; i++)
2728 tty_register_device(mxvar_sdriver, brd->idx + i, &pdev->dev);
2729
2730 pci_set_drvdata(pdev, brd);
2731
2732 return 0;
2733err_relio:
2734 pci_release_region(pdev, 2);
2735err_null:
2736 brd->info = NULL;
2737err:
2738 return retval;
2739#else
2740 return -ENODEV;
2741#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742}
2743
Jiri Slaby1c456072008-02-07 00:16:46 -08002744static void __devexit mxser_remove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745{
Jiri Slaby1c456072008-02-07 00:16:46 -08002746 struct mxser_board *brd = pci_get_drvdata(pdev);
2747 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748
Jiri Slaby1c456072008-02-07 00:16:46 -08002749 for (i = 0; i < brd->info->nports; i++)
2750 tty_unregister_device(mxvar_sdriver, brd->idx + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751
Jiri Slaby1c456072008-02-07 00:16:46 -08002752 mxser_release_res(brd, pdev, 1);
2753 brd->info = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754}
2755
Jiri Slaby1c456072008-02-07 00:16:46 -08002756static struct pci_driver mxser_driver = {
2757 .name = "mxser",
2758 .id_table = mxser_pcibrds,
2759 .probe = mxser_probe,
2760 .remove = __devexit_p(mxser_remove)
2761};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762
Jiri Slaby1c456072008-02-07 00:16:46 -08002763static int __init mxser_module_init(void)
2764{
2765 struct mxser_board *brd;
2766 unsigned long cap;
2767 unsigned int i, m, isaloop;
2768 int retval, b;
2769
2770 pr_debug("Loading module mxser ...\n");
2771
2772 mxvar_sdriver = alloc_tty_driver(MXSER_PORTS + 1);
2773 if (!mxvar_sdriver)
2774 return -ENOMEM;
2775
2776 printk(KERN_INFO "MOXA Smartio/Industio family driver version %s\n",
2777 MXSER_VERSION);
2778
2779 /* Initialize the tty_driver structure */
2780 mxvar_sdriver->owner = THIS_MODULE;
2781 mxvar_sdriver->magic = TTY_DRIVER_MAGIC;
2782 mxvar_sdriver->name = "ttyMI";
2783 mxvar_sdriver->major = ttymajor;
2784 mxvar_sdriver->minor_start = 0;
2785 mxvar_sdriver->num = MXSER_PORTS + 1;
2786 mxvar_sdriver->type = TTY_DRIVER_TYPE_SERIAL;
2787 mxvar_sdriver->subtype = SERIAL_TYPE_NORMAL;
2788 mxvar_sdriver->init_termios = tty_std_termios;
2789 mxvar_sdriver->init_termios.c_cflag = B9600|CS8|CREAD|HUPCL|CLOCAL;
2790 mxvar_sdriver->flags = TTY_DRIVER_REAL_RAW|TTY_DRIVER_DYNAMIC_DEV;
2791 tty_set_operations(mxvar_sdriver, &mxser_ops);
2792
2793 retval = tty_register_driver(mxvar_sdriver);
2794 if (retval) {
2795 printk(KERN_ERR "Couldn't install MOXA Smartio/Industio family "
2796 "tty driver !\n");
2797 goto err_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002799
Jiri Slaby1c456072008-02-07 00:16:46 -08002800 m = 0;
2801 /* Start finding ISA boards here */
2802 for (isaloop = 0; isaloop < 2; isaloop++)
2803 for (b = 0; b < MXSER_BOARDS && m < MXSER_BOARDS; b++) {
2804 if (!isaloop)
2805 cap = mxserBoardCAP[b]; /* predefined */
2806 else
2807 cap = ioaddr[b]; /* module param */
2808
2809 if (!cap)
2810 continue;
2811
2812 brd = &mxser_boards[m];
2813 retval = mxser_get_ISA_conf(cap, brd);
Jiri Slaby1c456072008-02-07 00:16:46 -08002814 if (retval <= 0) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002815 brd->info = NULL;
2816 continue;
2817 }
2818
Jiri Slaby83766bc2008-07-25 01:48:21 -07002819 printk(KERN_INFO "mxser: found MOXA %s board "
2820 "(CAP=0x%x)\n", brd->info->name, ioaddr[b]);
2821
Jiri Slaby1c456072008-02-07 00:16:46 -08002822 /* mxser_initbrd will hook ISR. */
2823 if (mxser_initbrd(brd, NULL) < 0) {
2824 brd->info = NULL;
2825 continue;
2826 }
2827
2828 brd->idx = m * MXSER_PORTS_PER_BOARD;
2829 for (i = 0; i < brd->info->nports; i++)
2830 tty_register_device(mxvar_sdriver, brd->idx + i,
2831 NULL);
2832
2833 m++;
2834 }
2835
2836 retval = pci_register_driver(&mxser_driver);
2837 if (retval) {
Jiri Slaby83766bc2008-07-25 01:48:21 -07002838 printk(KERN_ERR "mxser: can't register pci driver\n");
Jiri Slaby1c456072008-02-07 00:16:46 -08002839 if (!m) {
2840 retval = -ENODEV;
2841 goto err_unr;
2842 } /* else: we have some ISA cards under control */
2843 }
2844
2845 pr_debug("Done.\n");
2846
2847 return 0;
2848err_unr:
2849 tty_unregister_driver(mxvar_sdriver);
2850err_put:
2851 put_tty_driver(mxvar_sdriver);
2852 return retval;
2853}
2854
2855static void __exit mxser_module_exit(void)
2856{
2857 unsigned int i, j;
2858
2859 pr_debug("Unloading module mxser ...\n");
2860
2861 pci_unregister_driver(&mxser_driver);
2862
2863 for (i = 0; i < MXSER_BOARDS; i++) /* ISA remains */
2864 if (mxser_boards[i].info != NULL)
2865 for (j = 0; j < mxser_boards[i].info->nports; j++)
2866 tty_unregister_device(mxvar_sdriver,
2867 mxser_boards[i].idx + j);
2868 tty_unregister_driver(mxvar_sdriver);
2869 put_tty_driver(mxvar_sdriver);
2870
2871 for (i = 0; i < MXSER_BOARDS; i++)
2872 if (mxser_boards[i].info != NULL)
2873 mxser_release_res(&mxser_boards[i], NULL, 1);
2874
2875 pr_debug("Done.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876}
2877
2878module_init(mxser_module_init);
2879module_exit(mxser_module_exit);