blob: 08ba6eb1a380850e0de2f6dd6a8a1336a67be7bc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * mxser.c -- MOXA Smartio/Industio family multiport serial driver.
3 *
Jiri Slaby80ff8a82008-02-07 00:16:51 -08004 * Copyright (C) 1999-2006 Moxa Technologies (support@moxa.com).
5 * Copyright (C) 2006-2008 Jiri Slaby <jirislaby@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Jiri Slaby1c456072008-02-07 00:16:46 -08007 * This code is loosely based on the 1.8 moxa driver which is based on
8 * Linux serial driver, written by Linus Torvalds, Theodore T'so and
9 * others.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -070014 * (at your option) any later version.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * Fed through a cleanup, indent and remove of non 2.6 code by Alan Cox
Alan Cox8eb04cf2008-11-11 14:48:44 +000017 * <alan@lxorguk.ukuu.org.uk>. The original 1.8 code is available on
18 * www.moxa.com.
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * - Fixed x86_64 cleanness
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 */
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/errno.h>
24#include <linux/signal.h>
25#include <linux/sched.h>
26#include <linux/timer.h>
27#include <linux/interrupt.h>
28#include <linux/tty.h>
29#include <linux/tty_flip.h>
30#include <linux/serial.h>
31#include <linux/serial_reg.h>
32#include <linux/major.h>
33#include <linux/string.h>
34#include <linux/fcntl.h>
35#include <linux/ptrace.h>
36#include <linux/gfp.h>
37#include <linux/ioport.h>
38#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/delay.h>
40#include <linux/pci.h>
Jiri Slaby1977f032007-10-18 23:40:25 -070041#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <asm/system.h>
44#include <asm/io.h>
45#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/uaccess.h>
47
48#include "mxser.h"
49
Jiri Slabye129def2008-07-22 11:20:34 +010050#define MXSER_VERSION "2.0.4" /* 1.12 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define MXSERMAJOR 174
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define MXSER_BOARDS 4 /* Max. boards */
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define MXSER_PORTS_PER_BOARD 8 /* Max. ports per board */
Jiri Slaby1c456072008-02-07 00:16:46 -080055#define MXSER_PORTS (MXSER_BOARDS * MXSER_PORTS_PER_BOARD)
56#define MXSER_ISR_PASS_LIMIT 100
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Jiri Slaby1c456072008-02-07 00:16:46 -080058/*CheckIsMoxaMust return value*/
59#define MOXA_OTHER_UART 0x00
60#define MOXA_MUST_MU150_HWID 0x01
61#define MOXA_MUST_MU860_HWID 0x02
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define WAKEUP_CHARS 256
64
65#define UART_MCR_AFE 0x20
66#define UART_LSR_SPECIAL 0x1E
67
Jiri Slabye129def2008-07-22 11:20:34 +010068#define PCI_DEVICE_ID_POS104UL 0x1044
Jiri Slaby1c456072008-02-07 00:16:46 -080069#define PCI_DEVICE_ID_CB108 0x1080
Jiri Slabye129def2008-07-22 11:20:34 +010070#define PCI_DEVICE_ID_CP102UF 0x1023
Jiri Slaby1c456072008-02-07 00:16:46 -080071#define PCI_DEVICE_ID_CB114 0x1142
Jiri Slaby80ff8a82008-02-07 00:16:51 -080072#define PCI_DEVICE_ID_CP114UL 0x1143
Jiri Slaby1c456072008-02-07 00:16:46 -080073#define PCI_DEVICE_ID_CB134I 0x1341
74#define PCI_DEVICE_ID_CP138U 0x1380
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77#define C168_ASIC_ID 1
78#define C104_ASIC_ID 2
79#define C102_ASIC_ID 0xB
80#define CI132_ASIC_ID 4
81#define CI134_ASIC_ID 3
82#define CI104J_ASIC_ID 5
83
Jiri Slaby1c456072008-02-07 00:16:46 -080084#define MXSER_HIGHBAUD 1
85#define MXSER_HAS2 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -070087/* This is only for PCI */
Jiri Slaby1c456072008-02-07 00:16:46 -080088static const struct {
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 int type;
90 int tx_fifo;
91 int rx_fifo;
92 int xmit_fifo_size;
93 int rx_high_water;
94 int rx_trigger;
95 int rx_low_water;
96 long max_baud;
Jiri Slaby1c456072008-02-07 00:16:46 -080097} Gpci_uart_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 {MOXA_OTHER_UART, 16, 16, 16, 14, 14, 1, 921600L},
99 {MOXA_MUST_MU150_HWID, 64, 64, 64, 48, 48, 16, 230400L},
100 {MOXA_MUST_MU860_HWID, 128, 128, 128, 96, 96, 32, 921600L}
101};
Jiri Slaby1c456072008-02-07 00:16:46 -0800102#define UART_INFO_NUM ARRAY_SIZE(Gpci_uart_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Jiri Slaby1c456072008-02-07 00:16:46 -0800104struct mxser_cardinfo {
105 char *name;
106 unsigned int nports;
107 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108};
109
Jiri Slaby1c456072008-02-07 00:16:46 -0800110static const struct mxser_cardinfo mxser_cards[] = {
111/* 0*/ { "C168 series", 8, },
112 { "C104 series", 4, },
113 { "CI-104J series", 4, },
114 { "C168H/PCI series", 8, },
115 { "C104H/PCI series", 4, },
116/* 5*/ { "C102 series", 4, MXSER_HAS2 }, /* C102-ISA */
117 { "CI-132 series", 4, MXSER_HAS2 },
118 { "CI-134 series", 4, },
119 { "CP-132 series", 2, },
120 { "CP-114 series", 4, },
121/*10*/ { "CT-114 series", 4, },
122 { "CP-102 series", 2, MXSER_HIGHBAUD },
123 { "CP-104U series", 4, },
124 { "CP-168U series", 8, },
125 { "CP-132U series", 2, },
126/*15*/ { "CP-134U series", 4, },
127 { "CP-104JU series", 4, },
128 { "Moxa UC7000 Serial", 8, }, /* RC7000 */
129 { "CP-118U series", 8, },
130 { "CP-102UL series", 2, },
131/*20*/ { "CP-102U series", 2, },
132 { "CP-118EL series", 8, },
133 { "CP-168EL series", 8, },
134 { "CP-104EL series", 4, },
135 { "CB-108 series", 8, },
136/*25*/ { "CB-114 series", 4, },
137 { "CB-134I series", 4, },
138 { "CP-138U series", 8, },
Jiri Slaby80ff8a82008-02-07 00:16:51 -0800139 { "POS-104UL series", 4, },
Jiri Slabye129def2008-07-22 11:20:34 +0100140 { "CP-114UL series", 4, },
141/*30*/ { "CP-102UF series", 2, }
Jiri Slaby1c456072008-02-07 00:16:46 -0800142};
143
144/* driver_data correspond to the lines in the structure above
145 see also ISA probe function before you change something */
146static struct pci_device_id mxser_pcibrds[] = {
147 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_C168), .driver_data = 3 },
148 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_C104), .driver_data = 4 },
149 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP132), .driver_data = 8 },
150 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP114), .driver_data = 9 },
151 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CT114), .driver_data = 10 },
152 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP102), .driver_data = 11 },
153 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP104U), .driver_data = 12 },
154 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP168U), .driver_data = 13 },
155 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP132U), .driver_data = 14 },
156 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP134U), .driver_data = 15 },
157 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP104JU),.driver_data = 16 },
158 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_RC7000), .driver_data = 17 },
159 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP118U), .driver_data = 18 },
160 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP102UL),.driver_data = 19 },
161 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP102U), .driver_data = 20 },
162 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP118EL),.driver_data = 21 },
163 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP168EL),.driver_data = 22 },
164 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_MOXA_CP104EL),.driver_data = 23 },
165 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CB108), .driver_data = 24 },
166 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CB114), .driver_data = 25 },
167 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CB134I), .driver_data = 26 },
168 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CP138U), .driver_data = 27 },
169 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_POS104UL), .driver_data = 28 },
Jiri Slaby80ff8a82008-02-07 00:16:51 -0800170 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CP114UL), .driver_data = 29 },
Jiri Slabye129def2008-07-22 11:20:34 +0100171 { PCI_VDEVICE(MOXA, PCI_DEVICE_ID_CP102UF), .driver_data = 30 },
Jiri Slaby1c456072008-02-07 00:16:46 -0800172 { }
173};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174MODULE_DEVICE_TABLE(pci, mxser_pcibrds);
175
Jiri Slaby1df00922008-07-25 01:48:22 -0700176static unsigned long ioaddr[MXSER_BOARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177static int ttymajor = MXSERMAJOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179/* Variables for insmod */
180
181MODULE_AUTHOR("Casper Yang");
182MODULE_DESCRIPTION("MOXA Smartio/Industio Family Multiport Board Device Driver");
Jiri Slaby1df00922008-07-25 01:48:22 -0700183module_param_array(ioaddr, ulong, NULL, 0);
184MODULE_PARM_DESC(ioaddr, "ISA io addresses to look for a moxa board");
Rusty Russell8d3b33f2006-03-25 03:07:05 -0800185module_param(ttymajor, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186MODULE_LICENSE("GPL");
187
188struct mxser_log {
189 int tick;
190 unsigned long rxcnt[MXSER_PORTS];
191 unsigned long txcnt[MXSER_PORTS];
192};
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194struct mxser_mon {
195 unsigned long rxcnt;
196 unsigned long txcnt;
197 unsigned long up_rxcnt;
198 unsigned long up_txcnt;
199 int modem_status;
200 unsigned char hold_reason;
201};
202
203struct mxser_mon_ext {
204 unsigned long rx_cnt[32];
205 unsigned long tx_cnt[32];
206 unsigned long up_rxcnt[32];
207 unsigned long up_txcnt[32];
208 int modem_status[32];
209
210 long baudrate[32];
211 int databits[32];
212 int stopbits[32];
213 int parity[32];
214 int flowctrl[32];
215 int fifo[32];
216 int iftype[32];
217};
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700218
Jiri Slaby1c456072008-02-07 00:16:46 -0800219struct mxser_board;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Jiri Slaby1c456072008-02-07 00:16:46 -0800221struct mxser_port {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100222 struct tty_port port;
Jiri Slaby1c456072008-02-07 00:16:46 -0800223 struct mxser_board *board;
Jiri Slaby1c456072008-02-07 00:16:46 -0800224
225 unsigned long ioaddr;
226 unsigned long opmode_ioaddr;
227 int max_baud;
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 int rx_high_water;
230 int rx_trigger; /* Rx fifo trigger level */
231 int rx_low_water;
232 int baud_base; /* max. speed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 int type; /* UART type */
Jiri Slaby1c456072008-02-07 00:16:46 -0800234
235 int x_char; /* xon/xoff character */
236 int IER; /* Interrupt Enable Register */
237 int MCR; /* Modem control register */
238
239 unsigned char stop_rx;
240 unsigned char ldisc_stop_rx;
241
242 int custom_divisor;
Jiri Slaby1c456072008-02-07 00:16:46 -0800243 unsigned char err_shadow;
Jiri Slaby1c456072008-02-07 00:16:46 -0800244
Jiri Slaby1c456072008-02-07 00:16:46 -0800245 struct async_icount icount; /* kernel counters for 4 input interrupts */
246 int timeout;
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 int read_status_mask;
249 int ignore_status_mask;
250 int xmit_fifo_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 int xmit_head;
252 int xmit_tail;
253 int xmit_cnt;
Jiri Slaby1c456072008-02-07 00:16:46 -0800254
Alan Cox606d0992006-12-08 02:38:45 -0800255 struct ktermios normal_termios;
Jiri Slaby1c456072008-02-07 00:16:46 -0800256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 struct mxser_mon mon_data;
Jiri Slaby1c456072008-02-07 00:16:46 -0800258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 spinlock_t slock;
Jiri Slaby1c456072008-02-07 00:16:46 -0800260 wait_queue_head_t delta_msr_wait;
261};
262
263struct mxser_board {
264 unsigned int idx;
265 int irq;
266 const struct mxser_cardinfo *info;
267 unsigned long vector;
268 unsigned long vector_mask;
269
270 int chip_flag;
271 int uart_type;
272
273 struct mxser_port ports[MXSER_PORTS_PER_BOARD];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274};
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276struct mxser_mstatus {
277 tcflag_t cflag;
278 int cts;
279 int dsr;
280 int ri;
281 int dcd;
282};
283
Jiri Slaby1c456072008-02-07 00:16:46 -0800284static struct mxser_board mxser_boards[MXSER_BOARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285static struct tty_driver *mxvar_sdriver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286static struct mxser_log mxvar_log;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287static int mxser_set_baud_method[MXSER_PORTS + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Christoph Hellwig148ff862008-04-30 00:54:29 -0700289static void mxser_enable_must_enchance_mode(unsigned long baseio)
290{
291 u8 oldlcr;
292 u8 efr;
293
294 oldlcr = inb(baseio + UART_LCR);
295 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
296
297 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
298 efr |= MOXA_MUST_EFR_EFRB_ENABLE;
299
300 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
301 outb(oldlcr, baseio + UART_LCR);
302}
303
304static void mxser_disable_must_enchance_mode(unsigned long baseio)
305{
306 u8 oldlcr;
307 u8 efr;
308
309 oldlcr = inb(baseio + UART_LCR);
310 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
311
312 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
313 efr &= ~MOXA_MUST_EFR_EFRB_ENABLE;
314
315 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
316 outb(oldlcr, baseio + UART_LCR);
317}
318
319static void mxser_set_must_xon1_value(unsigned long baseio, u8 value)
320{
321 u8 oldlcr;
322 u8 efr;
323
324 oldlcr = inb(baseio + UART_LCR);
325 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
326
327 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
328 efr &= ~MOXA_MUST_EFR_BANK_MASK;
329 efr |= MOXA_MUST_EFR_BANK0;
330
331 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
332 outb(value, baseio + MOXA_MUST_XON1_REGISTER);
333 outb(oldlcr, baseio + UART_LCR);
334}
335
336static void mxser_set_must_xoff1_value(unsigned long baseio, u8 value)
337{
338 u8 oldlcr;
339 u8 efr;
340
341 oldlcr = inb(baseio + UART_LCR);
342 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
343
344 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
345 efr &= ~MOXA_MUST_EFR_BANK_MASK;
346 efr |= MOXA_MUST_EFR_BANK0;
347
348 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
349 outb(value, baseio + MOXA_MUST_XOFF1_REGISTER);
350 outb(oldlcr, baseio + UART_LCR);
351}
352
353static void mxser_set_must_fifo_value(struct mxser_port *info)
354{
355 u8 oldlcr;
356 u8 efr;
357
358 oldlcr = inb(info->ioaddr + UART_LCR);
359 outb(MOXA_MUST_ENTER_ENCHANCE, info->ioaddr + UART_LCR);
360
361 efr = inb(info->ioaddr + MOXA_MUST_EFR_REGISTER);
362 efr &= ~MOXA_MUST_EFR_BANK_MASK;
363 efr |= MOXA_MUST_EFR_BANK1;
364
365 outb(efr, info->ioaddr + MOXA_MUST_EFR_REGISTER);
366 outb((u8)info->rx_high_water, info->ioaddr + MOXA_MUST_RBRTH_REGISTER);
367 outb((u8)info->rx_trigger, info->ioaddr + MOXA_MUST_RBRTI_REGISTER);
368 outb((u8)info->rx_low_water, info->ioaddr + MOXA_MUST_RBRTL_REGISTER);
369 outb(oldlcr, info->ioaddr + UART_LCR);
370}
371
372static void mxser_set_must_enum_value(unsigned long baseio, u8 value)
373{
374 u8 oldlcr;
375 u8 efr;
376
377 oldlcr = inb(baseio + UART_LCR);
378 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
379
380 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
381 efr &= ~MOXA_MUST_EFR_BANK_MASK;
382 efr |= MOXA_MUST_EFR_BANK2;
383
384 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
385 outb(value, baseio + MOXA_MUST_ENUM_REGISTER);
386 outb(oldlcr, baseio + UART_LCR);
387}
388
389static void mxser_get_must_hardware_id(unsigned long baseio, u8 *pId)
390{
391 u8 oldlcr;
392 u8 efr;
393
394 oldlcr = inb(baseio + UART_LCR);
395 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
396
397 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
398 efr &= ~MOXA_MUST_EFR_BANK_MASK;
399 efr |= MOXA_MUST_EFR_BANK2;
400
401 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
402 *pId = inb(baseio + MOXA_MUST_HWID_REGISTER);
403 outb(oldlcr, baseio + UART_LCR);
404}
405
406static void SET_MOXA_MUST_NO_SOFTWARE_FLOW_CONTROL(unsigned long baseio)
407{
408 u8 oldlcr;
409 u8 efr;
410
411 oldlcr = inb(baseio + UART_LCR);
412 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
413
414 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
415 efr &= ~MOXA_MUST_EFR_SF_MASK;
416
417 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
418 outb(oldlcr, baseio + UART_LCR);
419}
420
421static void mxser_enable_must_tx_software_flow_control(unsigned long baseio)
422{
423 u8 oldlcr;
424 u8 efr;
425
426 oldlcr = inb(baseio + UART_LCR);
427 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
428
429 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
430 efr &= ~MOXA_MUST_EFR_SF_TX_MASK;
431 efr |= MOXA_MUST_EFR_SF_TX1;
432
433 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
434 outb(oldlcr, baseio + UART_LCR);
435}
436
437static void mxser_disable_must_tx_software_flow_control(unsigned long baseio)
438{
439 u8 oldlcr;
440 u8 efr;
441
442 oldlcr = inb(baseio + UART_LCR);
443 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
444
445 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
446 efr &= ~MOXA_MUST_EFR_SF_TX_MASK;
447
448 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
449 outb(oldlcr, baseio + UART_LCR);
450}
451
452static void mxser_enable_must_rx_software_flow_control(unsigned long baseio)
453{
454 u8 oldlcr;
455 u8 efr;
456
457 oldlcr = inb(baseio + UART_LCR);
458 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
459
460 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
461 efr &= ~MOXA_MUST_EFR_SF_RX_MASK;
462 efr |= MOXA_MUST_EFR_SF_RX1;
463
464 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
465 outb(oldlcr, baseio + UART_LCR);
466}
467
468static void mxser_disable_must_rx_software_flow_control(unsigned long baseio)
469{
470 u8 oldlcr;
471 u8 efr;
472
473 oldlcr = inb(baseio + UART_LCR);
474 outb(MOXA_MUST_ENTER_ENCHANCE, baseio + UART_LCR);
475
476 efr = inb(baseio + MOXA_MUST_EFR_REGISTER);
477 efr &= ~MOXA_MUST_EFR_SF_RX_MASK;
478
479 outb(efr, baseio + MOXA_MUST_EFR_REGISTER);
480 outb(oldlcr, baseio + UART_LCR);
481}
482
Jesper Juhlb8cc5542007-10-18 03:06:03 -0700483#ifdef CONFIG_PCI
Jiri Slaby1c456072008-02-07 00:16:46 -0800484static int __devinit CheckIsMoxaMust(unsigned long io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
486 u8 oldmcr, hwid;
487 int i;
488
489 outb(0, io + UART_LCR);
Christoph Hellwig148ff862008-04-30 00:54:29 -0700490 mxser_disable_must_enchance_mode(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 oldmcr = inb(io + UART_MCR);
492 outb(0, io + UART_MCR);
Christoph Hellwig148ff862008-04-30 00:54:29 -0700493 mxser_set_must_xon1_value(io, 0x11);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 if ((hwid = inb(io + UART_MCR)) != 0) {
495 outb(oldmcr, io + UART_MCR);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700496 return MOXA_OTHER_UART;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
498
Christoph Hellwig148ff862008-04-30 00:54:29 -0700499 mxser_get_must_hardware_id(io, &hwid);
Jiri Slaby1c456072008-02-07 00:16:46 -0800500 for (i = 1; i < UART_INFO_NUM; i++) { /* 0 = OTHER_UART */
501 if (hwid == Gpci_uart_info[i].type)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -0700502 return (int)hwid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
504 return MOXA_OTHER_UART;
505}
Jesper Juhlb8cc5542007-10-18 03:06:03 -0700506#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Jiri Slaby1c456072008-02-07 00:16:46 -0800508static void process_txrx_fifo(struct mxser_port *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
510 int i;
511
512 if ((info->type == PORT_16450) || (info->type == PORT_8250)) {
513 info->rx_trigger = 1;
514 info->rx_high_water = 1;
515 info->rx_low_water = 1;
516 info->xmit_fifo_size = 1;
Jiri Slaby1c456072008-02-07 00:16:46 -0800517 } else
518 for (i = 0; i < UART_INFO_NUM; i++)
519 if (info->board->chip_flag == Gpci_uart_info[i].type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 info->rx_trigger = Gpci_uart_info[i].rx_trigger;
521 info->rx_low_water = Gpci_uart_info[i].rx_low_water;
522 info->rx_high_water = Gpci_uart_info[i].rx_high_water;
523 info->xmit_fifo_size = Gpci_uart_info[i].xmit_fifo_size;
524 break;
525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526}
527
Jiri Slaby1c456072008-02-07 00:16:46 -0800528static unsigned char mxser_get_msr(int baseaddr, int mode, int port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
Jiri Slaby72800df2008-07-25 01:48:20 -0700530 static unsigned char mxser_msr[MXSER_PORTS + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 unsigned char status = 0;
532
533 status = inb(baseaddr + UART_MSR);
534
535 mxser_msr[port] &= 0x0F;
536 mxser_msr[port] |= status;
537 status = mxser_msr[port];
538 if (mode)
539 mxser_msr[port] = 0;
540
541 return status;
542}
543
Alan Cox31f35932009-01-02 13:45:05 +0000544static int mxser_carrier_raised(struct tty_port *port)
545{
546 struct mxser_port *mp = container_of(port, struct mxser_port, port);
547 return (inb(mp->ioaddr + UART_MSR) & UART_MSR_DCD)?1:0;
548}
549
Alan Cox5d951fb2009-01-02 13:45:19 +0000550static void mxser_raise_dtr_rts(struct tty_port *port)
551{
552 struct mxser_port *mp = container_of(port, struct mxser_port, port);
553 unsigned long flags;
554
555 spin_lock_irqsave(&mp->slock, flags);
556 outb(inb(mp->ioaddr + UART_MCR) |
557 UART_MCR_DTR | UART_MCR_RTS, mp->ioaddr + UART_MCR);
558 spin_unlock_irqrestore(&mp->slock, flags);
559}
560
Alan Cox216ba022008-10-13 10:40:19 +0100561static int mxser_set_baud(struct tty_struct *tty, long newspd)
Jiri Slaby1c456072008-02-07 00:16:46 -0800562{
Alan Cox216ba022008-10-13 10:40:19 +0100563 struct mxser_port *info = tty->driver_data;
Jiri Slaby1c456072008-02-07 00:16:46 -0800564 int quot = 0, baud;
565 unsigned char cval;
566
Alan Cox216ba022008-10-13 10:40:19 +0100567 if (!info->ioaddr)
Jiri Slaby1c456072008-02-07 00:16:46 -0800568 return -1;
569
570 if (newspd > info->max_baud)
571 return -1;
572
573 if (newspd == 134) {
574 quot = 2 * info->baud_base / 269;
Alan Cox216ba022008-10-13 10:40:19 +0100575 tty_encode_baud_rate(tty, 134, 134);
Jiri Slaby1c456072008-02-07 00:16:46 -0800576 } else if (newspd) {
577 quot = info->baud_base / newspd;
578 if (quot == 0)
579 quot = 1;
580 baud = info->baud_base/quot;
Alan Cox216ba022008-10-13 10:40:19 +0100581 tty_encode_baud_rate(tty, baud, baud);
Jiri Slaby1c456072008-02-07 00:16:46 -0800582 } else {
583 quot = 0;
584 }
585
586 info->timeout = ((info->xmit_fifo_size * HZ * 10 * quot) / info->baud_base);
587 info->timeout += HZ / 50; /* Add .02 seconds of slop */
588
589 if (quot) {
590 info->MCR |= UART_MCR_DTR;
591 outb(info->MCR, info->ioaddr + UART_MCR);
592 } else {
593 info->MCR &= ~UART_MCR_DTR;
594 outb(info->MCR, info->ioaddr + UART_MCR);
595 return 0;
596 }
597
598 cval = inb(info->ioaddr + UART_LCR);
599
600 outb(cval | UART_LCR_DLAB, info->ioaddr + UART_LCR); /* set DLAB */
601
602 outb(quot & 0xff, info->ioaddr + UART_DLL); /* LS of divisor */
603 outb(quot >> 8, info->ioaddr + UART_DLM); /* MS of divisor */
604 outb(cval, info->ioaddr + UART_LCR); /* reset DLAB */
605
606#ifdef BOTHER
Alan Cox216ba022008-10-13 10:40:19 +0100607 if (C_BAUD(tty) == BOTHER) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800608 quot = info->baud_base % newspd;
609 quot *= 8;
610 if (quot % newspd > newspd / 2) {
611 quot /= newspd;
612 quot++;
613 } else
614 quot /= newspd;
615
Christoph Hellwig148ff862008-04-30 00:54:29 -0700616 mxser_set_must_enum_value(info->ioaddr, quot);
Jiri Slaby1c456072008-02-07 00:16:46 -0800617 } else
618#endif
Christoph Hellwig148ff862008-04-30 00:54:29 -0700619 mxser_set_must_enum_value(info->ioaddr, 0);
Jiri Slaby1c456072008-02-07 00:16:46 -0800620
621 return 0;
622}
623
624/*
625 * This routine is called to set the UART divisor registers to match
626 * the specified baud rate for a serial port.
627 */
Alan Cox216ba022008-10-13 10:40:19 +0100628static int mxser_change_speed(struct tty_struct *tty,
629 struct ktermios *old_termios)
Jiri Slaby1c456072008-02-07 00:16:46 -0800630{
Alan Cox216ba022008-10-13 10:40:19 +0100631 struct mxser_port *info = tty->driver_data;
Jiri Slaby1c456072008-02-07 00:16:46 -0800632 unsigned cflag, cval, fcr;
633 int ret = 0;
634 unsigned char status;
635
Alan Cox216ba022008-10-13 10:40:19 +0100636 cflag = tty->termios->c_cflag;
637 if (!info->ioaddr)
Jiri Slaby1c456072008-02-07 00:16:46 -0800638 return ret;
639
Alan Cox216ba022008-10-13 10:40:19 +0100640 if (mxser_set_baud_method[tty->index] == 0)
641 mxser_set_baud(tty, tty_get_baud_rate(tty));
Jiri Slaby1c456072008-02-07 00:16:46 -0800642
643 /* byte size and parity */
644 switch (cflag & CSIZE) {
645 case CS5:
646 cval = 0x00;
647 break;
648 case CS6:
649 cval = 0x01;
650 break;
651 case CS7:
652 cval = 0x02;
653 break;
654 case CS8:
655 cval = 0x03;
656 break;
657 default:
658 cval = 0x00;
659 break; /* too keep GCC shut... */
660 }
661 if (cflag & CSTOPB)
662 cval |= 0x04;
663 if (cflag & PARENB)
664 cval |= UART_LCR_PARITY;
665 if (!(cflag & PARODD))
666 cval |= UART_LCR_EPAR;
667 if (cflag & CMSPAR)
668 cval |= UART_LCR_SPAR;
669
670 if ((info->type == PORT_8250) || (info->type == PORT_16450)) {
671 if (info->board->chip_flag) {
672 fcr = UART_FCR_ENABLE_FIFO;
673 fcr |= MOXA_MUST_FCR_GDA_MODE_ENABLE;
Christoph Hellwig148ff862008-04-30 00:54:29 -0700674 mxser_set_must_fifo_value(info);
Jiri Slaby1c456072008-02-07 00:16:46 -0800675 } else
676 fcr = 0;
677 } else {
678 fcr = UART_FCR_ENABLE_FIFO;
679 if (info->board->chip_flag) {
680 fcr |= MOXA_MUST_FCR_GDA_MODE_ENABLE;
Christoph Hellwig148ff862008-04-30 00:54:29 -0700681 mxser_set_must_fifo_value(info);
Jiri Slaby1c456072008-02-07 00:16:46 -0800682 } else {
683 switch (info->rx_trigger) {
684 case 1:
685 fcr |= UART_FCR_TRIGGER_1;
686 break;
687 case 4:
688 fcr |= UART_FCR_TRIGGER_4;
689 break;
690 case 8:
691 fcr |= UART_FCR_TRIGGER_8;
692 break;
693 default:
694 fcr |= UART_FCR_TRIGGER_14;
695 break;
696 }
697 }
698 }
699
700 /* CTS flow control flag and modem status interrupts */
701 info->IER &= ~UART_IER_MSI;
702 info->MCR &= ~UART_MCR_AFE;
703 if (cflag & CRTSCTS) {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100704 info->port.flags |= ASYNC_CTS_FLOW;
Jiri Slaby1c456072008-02-07 00:16:46 -0800705 info->IER |= UART_IER_MSI;
706 if ((info->type == PORT_16550A) || (info->board->chip_flag)) {
707 info->MCR |= UART_MCR_AFE;
708 } else {
709 status = inb(info->ioaddr + UART_MSR);
Alan Cox216ba022008-10-13 10:40:19 +0100710 if (tty->hw_stopped) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800711 if (status & UART_MSR_CTS) {
Alan Cox216ba022008-10-13 10:40:19 +0100712 tty->hw_stopped = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -0800713 if (info->type != PORT_16550A &&
714 !info->board->chip_flag) {
715 outb(info->IER & ~UART_IER_THRI,
716 info->ioaddr +
717 UART_IER);
718 info->IER |= UART_IER_THRI;
719 outb(info->IER, info->ioaddr +
720 UART_IER);
721 }
Alan Cox216ba022008-10-13 10:40:19 +0100722 tty_wakeup(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -0800723 }
724 } else {
725 if (!(status & UART_MSR_CTS)) {
Alan Cox216ba022008-10-13 10:40:19 +0100726 tty->hw_stopped = 1;
Jiri Slaby1c456072008-02-07 00:16:46 -0800727 if ((info->type != PORT_16550A) &&
728 (!info->board->chip_flag)) {
729 info->IER &= ~UART_IER_THRI;
730 outb(info->IER, info->ioaddr +
731 UART_IER);
732 }
733 }
734 }
735 }
736 } else {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100737 info->port.flags &= ~ASYNC_CTS_FLOW;
Jiri Slaby1c456072008-02-07 00:16:46 -0800738 }
739 outb(info->MCR, info->ioaddr + UART_MCR);
740 if (cflag & CLOCAL) {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100741 info->port.flags &= ~ASYNC_CHECK_CD;
Jiri Slaby1c456072008-02-07 00:16:46 -0800742 } else {
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100743 info->port.flags |= ASYNC_CHECK_CD;
Jiri Slaby1c456072008-02-07 00:16:46 -0800744 info->IER |= UART_IER_MSI;
745 }
746 outb(info->IER, info->ioaddr + UART_IER);
747
748 /*
749 * Set up parity check flag
750 */
751 info->read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
Alan Cox216ba022008-10-13 10:40:19 +0100752 if (I_INPCK(tty))
Jiri Slaby1c456072008-02-07 00:16:46 -0800753 info->read_status_mask |= UART_LSR_FE | UART_LSR_PE;
Alan Cox216ba022008-10-13 10:40:19 +0100754 if (I_BRKINT(tty) || I_PARMRK(tty))
Jiri Slaby1c456072008-02-07 00:16:46 -0800755 info->read_status_mask |= UART_LSR_BI;
756
757 info->ignore_status_mask = 0;
758
Alan Cox216ba022008-10-13 10:40:19 +0100759 if (I_IGNBRK(tty)) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800760 info->ignore_status_mask |= UART_LSR_BI;
761 info->read_status_mask |= UART_LSR_BI;
762 /*
763 * If we're ignore parity and break indicators, ignore
764 * overruns too. (For real raw support).
765 */
Alan Cox216ba022008-10-13 10:40:19 +0100766 if (I_IGNPAR(tty)) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800767 info->ignore_status_mask |=
768 UART_LSR_OE |
769 UART_LSR_PE |
770 UART_LSR_FE;
771 info->read_status_mask |=
772 UART_LSR_OE |
773 UART_LSR_PE |
774 UART_LSR_FE;
775 }
776 }
777 if (info->board->chip_flag) {
Alan Cox216ba022008-10-13 10:40:19 +0100778 mxser_set_must_xon1_value(info->ioaddr, START_CHAR(tty));
779 mxser_set_must_xoff1_value(info->ioaddr, STOP_CHAR(tty));
780 if (I_IXON(tty)) {
Christoph Hellwig148ff862008-04-30 00:54:29 -0700781 mxser_enable_must_rx_software_flow_control(
782 info->ioaddr);
Jiri Slaby1c456072008-02-07 00:16:46 -0800783 } else {
Christoph Hellwig148ff862008-04-30 00:54:29 -0700784 mxser_disable_must_rx_software_flow_control(
785 info->ioaddr);
Jiri Slaby1c456072008-02-07 00:16:46 -0800786 }
Alan Cox216ba022008-10-13 10:40:19 +0100787 if (I_IXOFF(tty)) {
Christoph Hellwig148ff862008-04-30 00:54:29 -0700788 mxser_enable_must_tx_software_flow_control(
789 info->ioaddr);
Jiri Slaby1c456072008-02-07 00:16:46 -0800790 } else {
Christoph Hellwig148ff862008-04-30 00:54:29 -0700791 mxser_disable_must_tx_software_flow_control(
792 info->ioaddr);
Jiri Slaby1c456072008-02-07 00:16:46 -0800793 }
794 }
795
796
797 outb(fcr, info->ioaddr + UART_FCR); /* set fcr */
798 outb(cval, info->ioaddr + UART_LCR);
799
800 return ret;
801}
802
Alan Cox216ba022008-10-13 10:40:19 +0100803static void mxser_check_modem_status(struct tty_struct *tty,
804 struct mxser_port *port, int status)
Jiri Slaby1c456072008-02-07 00:16:46 -0800805{
806 /* update input line counters */
807 if (status & UART_MSR_TERI)
808 port->icount.rng++;
809 if (status & UART_MSR_DDSR)
810 port->icount.dsr++;
811 if (status & UART_MSR_DDCD)
812 port->icount.dcd++;
813 if (status & UART_MSR_DCTS)
814 port->icount.cts++;
815 port->mon_data.modem_status = status;
816 wake_up_interruptible(&port->delta_msr_wait);
817
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100818 if ((port->port.flags & ASYNC_CHECK_CD) && (status & UART_MSR_DDCD)) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800819 if (status & UART_MSR_DCD)
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100820 wake_up_interruptible(&port->port.open_wait);
Jiri Slaby1c456072008-02-07 00:16:46 -0800821 }
822
Alan Cox216ba022008-10-13 10:40:19 +0100823 tty = tty_port_tty_get(&port->port);
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100824 if (port->port.flags & ASYNC_CTS_FLOW) {
Alan Cox216ba022008-10-13 10:40:19 +0100825 if (tty->hw_stopped) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800826 if (status & UART_MSR_CTS) {
Alan Cox216ba022008-10-13 10:40:19 +0100827 tty->hw_stopped = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -0800828
829 if ((port->type != PORT_16550A) &&
830 (!port->board->chip_flag)) {
831 outb(port->IER & ~UART_IER_THRI,
832 port->ioaddr + UART_IER);
833 port->IER |= UART_IER_THRI;
834 outb(port->IER, port->ioaddr +
835 UART_IER);
836 }
Alan Cox216ba022008-10-13 10:40:19 +0100837 tty_wakeup(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -0800838 }
839 } else {
840 if (!(status & UART_MSR_CTS)) {
Alan Cox216ba022008-10-13 10:40:19 +0100841 tty->hw_stopped = 1;
Jiri Slaby1c456072008-02-07 00:16:46 -0800842 if (port->type != PORT_16550A &&
843 !port->board->chip_flag) {
844 port->IER &= ~UART_IER_THRI;
845 outb(port->IER, port->ioaddr +
846 UART_IER);
847 }
848 }
849 }
850 }
851}
852
Alan Cox216ba022008-10-13 10:40:19 +0100853static int mxser_startup(struct tty_struct *tty)
Jiri Slaby1c456072008-02-07 00:16:46 -0800854{
Alan Cox216ba022008-10-13 10:40:19 +0100855 struct mxser_port *info = tty->driver_data;
Jiri Slaby1c456072008-02-07 00:16:46 -0800856 unsigned long page;
857 unsigned long flags;
858
859 page = __get_free_page(GFP_KERNEL);
860 if (!page)
861 return -ENOMEM;
862
863 spin_lock_irqsave(&info->slock, flags);
864
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100865 if (info->port.flags & ASYNC_INITIALIZED) {
Jiri Slaby1c456072008-02-07 00:16:46 -0800866 free_page(page);
867 spin_unlock_irqrestore(&info->slock, flags);
868 return 0;
869 }
870
871 if (!info->ioaddr || !info->type) {
Alan Cox216ba022008-10-13 10:40:19 +0100872 set_bit(TTY_IO_ERROR, &tty->flags);
Jiri Slaby1c456072008-02-07 00:16:46 -0800873 free_page(page);
874 spin_unlock_irqrestore(&info->slock, flags);
875 return 0;
876 }
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100877 if (info->port.xmit_buf)
Jiri Slaby1c456072008-02-07 00:16:46 -0800878 free_page(page);
879 else
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100880 info->port.xmit_buf = (unsigned char *) page;
Jiri Slaby1c456072008-02-07 00:16:46 -0800881
882 /*
883 * Clear the FIFO buffers and disable them
884 * (they will be reenabled in mxser_change_speed())
885 */
886 if (info->board->chip_flag)
887 outb((UART_FCR_CLEAR_RCVR |
888 UART_FCR_CLEAR_XMIT |
889 MOXA_MUST_FCR_GDA_MODE_ENABLE), info->ioaddr + UART_FCR);
890 else
891 outb((UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT),
892 info->ioaddr + UART_FCR);
893
894 /*
895 * At this point there's no way the LSR could still be 0xFF;
896 * if it is, then bail out, because there's likely no UART
897 * here.
898 */
899 if (inb(info->ioaddr + UART_LSR) == 0xff) {
900 spin_unlock_irqrestore(&info->slock, flags);
901 if (capable(CAP_SYS_ADMIN)) {
Alan Cox216ba022008-10-13 10:40:19 +0100902 if (tty)
903 set_bit(TTY_IO_ERROR, &tty->flags);
Jiri Slaby1c456072008-02-07 00:16:46 -0800904 return 0;
905 } else
906 return -ENODEV;
907 }
908
909 /*
910 * Clear the interrupt registers.
911 */
912 (void) inb(info->ioaddr + UART_LSR);
913 (void) inb(info->ioaddr + UART_RX);
914 (void) inb(info->ioaddr + UART_IIR);
915 (void) inb(info->ioaddr + UART_MSR);
916
917 /*
918 * Now, initialize the UART
919 */
920 outb(UART_LCR_WLEN8, info->ioaddr + UART_LCR); /* reset DLAB */
921 info->MCR = UART_MCR_DTR | UART_MCR_RTS;
922 outb(info->MCR, info->ioaddr + UART_MCR);
923
924 /*
925 * Finally, enable interrupts
926 */
927 info->IER = UART_IER_MSI | UART_IER_RLSI | UART_IER_RDI;
928
929 if (info->board->chip_flag)
930 info->IER |= MOXA_MUST_IER_EGDAI;
931 outb(info->IER, info->ioaddr + UART_IER); /* enable interrupts */
932
933 /*
934 * And clear the interrupt registers again for luck.
935 */
936 (void) inb(info->ioaddr + UART_LSR);
937 (void) inb(info->ioaddr + UART_RX);
938 (void) inb(info->ioaddr + UART_IIR);
939 (void) inb(info->ioaddr + UART_MSR);
940
Alan Cox216ba022008-10-13 10:40:19 +0100941 clear_bit(TTY_IO_ERROR, &tty->flags);
Jiri Slaby1c456072008-02-07 00:16:46 -0800942 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
943
944 /*
945 * and set the speed of the serial port
946 */
Alan Cox216ba022008-10-13 10:40:19 +0100947 mxser_change_speed(tty, NULL);
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100948 info->port.flags |= ASYNC_INITIALIZED;
Jiri Slaby1c456072008-02-07 00:16:46 -0800949 spin_unlock_irqrestore(&info->slock, flags);
950
951 return 0;
952}
953
954/*
955 * This routine will shutdown a serial port; interrupts maybe disabled, and
956 * DTR is dropped if the hangup on close termio flag is on.
957 */
Alan Cox216ba022008-10-13 10:40:19 +0100958static void mxser_shutdown(struct tty_struct *tty)
Jiri Slaby1c456072008-02-07 00:16:46 -0800959{
Alan Cox216ba022008-10-13 10:40:19 +0100960 struct mxser_port *info = tty->driver_data;
Jiri Slaby1c456072008-02-07 00:16:46 -0800961 unsigned long flags;
962
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100963 if (!(info->port.flags & ASYNC_INITIALIZED))
Jiri Slaby1c456072008-02-07 00:16:46 -0800964 return;
965
966 spin_lock_irqsave(&info->slock, flags);
967
968 /*
969 * clear delta_msr_wait queue to avoid mem leaks: we may free the irq
970 * here so the queue might never be waken up
971 */
972 wake_up_interruptible(&info->delta_msr_wait);
973
974 /*
975 * Free the IRQ, if necessary
976 */
Alan Cox0ad9e7d2008-07-16 21:56:10 +0100977 if (info->port.xmit_buf) {
978 free_page((unsigned long) info->port.xmit_buf);
979 info->port.xmit_buf = NULL;
Jiri Slaby1c456072008-02-07 00:16:46 -0800980 }
981
982 info->IER = 0;
983 outb(0x00, info->ioaddr + UART_IER);
984
Alan Cox216ba022008-10-13 10:40:19 +0100985 if (tty->termios->c_cflag & HUPCL)
Jiri Slaby1c456072008-02-07 00:16:46 -0800986 info->MCR &= ~(UART_MCR_DTR | UART_MCR_RTS);
987 outb(info->MCR, info->ioaddr + UART_MCR);
988
989 /* clear Rx/Tx FIFO's */
990 if (info->board->chip_flag)
991 outb(UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT |
992 MOXA_MUST_FCR_GDA_MODE_ENABLE,
993 info->ioaddr + UART_FCR);
994 else
995 outb(UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT,
996 info->ioaddr + UART_FCR);
997
998 /* read data port to reset things */
999 (void) inb(info->ioaddr + UART_RX);
1000
Alan Cox216ba022008-10-13 10:40:19 +01001001 set_bit(TTY_IO_ERROR, &tty->flags);
Jiri Slaby1c456072008-02-07 00:16:46 -08001002
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001003 info->port.flags &= ~ASYNC_INITIALIZED;
Jiri Slaby1c456072008-02-07 00:16:46 -08001004
1005 if (info->board->chip_flag)
1006 SET_MOXA_MUST_NO_SOFTWARE_FLOW_CONTROL(info->ioaddr);
1007
1008 spin_unlock_irqrestore(&info->slock, flags);
1009}
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011/*
1012 * This routine is called whenever a serial port is opened. It
1013 * enables interrupts for a serial port, linking in its async structure into
1014 * the IRQ chain. It also performs the serial-specific
1015 * initialization for the tty structure.
1016 */
1017static int mxser_open(struct tty_struct *tty, struct file *filp)
1018{
Jiri Slaby1c456072008-02-07 00:16:46 -08001019 struct mxser_port *info;
1020 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 int retval, line;
1022
1023 line = tty->index;
1024 if (line == MXSER_PORTS)
1025 return 0;
1026 if (line < 0 || line > MXSER_PORTS)
1027 return -ENODEV;
Jiri Slaby1c456072008-02-07 00:16:46 -08001028 info = &mxser_boards[line / MXSER_PORTS_PER_BOARD].ports[line % MXSER_PORTS_PER_BOARD];
1029 if (!info->ioaddr)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001030 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
1032 tty->driver_data = info;
Alan Cox216ba022008-10-13 10:40:19 +01001033 tty_port_tty_set(&info->port, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 /*
1035 * Start up serial port
1036 */
Alan Cox3b6826b2009-01-02 13:45:58 +00001037 spin_lock_irqsave(&info->port.lock, flags);
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001038 info->port.count++;
Alan Cox3b6826b2009-01-02 13:45:58 +00001039 spin_unlock_irqrestore(&info->port.lock, flags);
Alan Cox216ba022008-10-13 10:40:19 +01001040 retval = mxser_startup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (retval)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001042 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Alan Cox36c621d2009-01-02 13:46:10 +00001044 retval = tty_port_block_til_ready(&info->port, tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 if (retval)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001046 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Cedric Le Goater8cddd702007-02-10 01:46:33 -08001048 /* unmark here for very high baud rate (ex. 921600 bps) used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 tty->low_latency = 1;
1050 return 0;
1051}
1052
Alan Cox978e5952008-04-30 00:53:59 -07001053static void mxser_flush_buffer(struct tty_struct *tty)
1054{
1055 struct mxser_port *info = tty->driver_data;
1056 char fcr;
1057 unsigned long flags;
1058
1059
1060 spin_lock_irqsave(&info->slock, flags);
1061 info->xmit_cnt = info->xmit_head = info->xmit_tail = 0;
1062
1063 fcr = inb(info->ioaddr + UART_FCR);
1064 outb((fcr | UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT),
1065 info->ioaddr + UART_FCR);
1066 outb(fcr, info->ioaddr + UART_FCR);
1067
1068 spin_unlock_irqrestore(&info->slock, flags);
1069
1070 tty_wakeup(tty);
1071}
1072
1073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074/*
1075 * This routine is called when the serial port gets closed. First, we
1076 * wait for the last remaining data to be sent. Then, we unlink its
1077 * async structure from the interrupt chain if necessary, and we free
1078 * that IRQ if nothing is left in the chain.
1079 */
1080static void mxser_close(struct tty_struct *tty, struct file *filp)
1081{
Jiri Slaby1c456072008-02-07 00:16:46 -08001082 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
1084 unsigned long timeout;
1085 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
1087 if (tty->index == MXSER_PORTS)
1088 return;
1089 if (!info)
Kirill Smelkov6f08b722005-11-07 00:59:23 -08001090 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Alan Cox3b6826b2009-01-02 13:45:58 +00001092 spin_lock_irqsave(&info->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 if (tty_hung_up_p(filp)) {
Alan Cox3b6826b2009-01-02 13:45:58 +00001095 spin_unlock_irqrestore(&info->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 return;
1097 }
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001098 if ((tty->count == 1) && (info->port.count != 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 /*
1100 * Uh, oh. tty->count is 1, which means that the tty
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001101 * structure will be freed. Info->port.count should always
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 * be one in these conditions. If it's greater than
1103 * one, we've got real problems, since it means the
1104 * serial port won't be shutdown.
1105 */
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001106 printk(KERN_ERR "mxser_close: bad serial port count; "
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001107 "tty->count is 1, info->port.count is %d\n", info->port.count);
1108 info->port.count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 }
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001110 if (--info->port.count < 0) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001111 printk(KERN_ERR "mxser_close: bad serial port count for "
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001112 "ttys%d: %d\n", tty->index, info->port.count);
1113 info->port.count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 }
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001115 if (info->port.count) {
Alan Cox3b6826b2009-01-02 13:45:58 +00001116 spin_unlock_irqrestore(&info->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 return;
1118 }
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001119 info->port.flags |= ASYNC_CLOSING;
Alan Cox3b6826b2009-01-02 13:45:58 +00001120 spin_unlock_irqrestore(&info->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 /*
1122 * Save the termios structure, since this port may have
1123 * separate termios for callout and dialin.
1124 */
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001125 if (info->port.flags & ASYNC_NORMAL_ACTIVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 info->normal_termios = *tty->termios;
1127 /*
1128 * Now we wait for the transmit buffer to clear; and we notify
1129 * the line discipline to only process XON/XOFF characters.
1130 */
1131 tty->closing = 1;
Alan Cox44b7d1b2008-07-16 21:57:18 +01001132 if (info->port.closing_wait != ASYNC_CLOSING_WAIT_NONE)
1133 tty_wait_until_sent(tty, info->port.closing_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 /*
1135 * At this point we stop accepting input. To do this, we
1136 * disable the receive line status interrupts, and tell the
1137 * interrupt driver to stop checking the data ready bit in the
1138 * line status register.
1139 */
1140 info->IER &= ~UART_IER_RLSI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001141 if (info->board->chip_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 info->IER &= ~MOXA_MUST_RECV_ISR;
Jiri Slaby1c456072008-02-07 00:16:46 -08001143
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001144 if (info->port.flags & ASYNC_INITIALIZED) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001145 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 /*
1147 * Before we drop DTR, make sure the UART transmitter
1148 * has completely drained; this is especially
1149 * important if there is a transmit FIFO!
1150 */
1151 timeout = jiffies + HZ;
Jiri Slaby1c456072008-02-07 00:16:46 -08001152 while (!(inb(info->ioaddr + UART_LSR) & UART_LSR_TEMT)) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07001153 schedule_timeout_interruptible(5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 if (time_after(jiffies, timeout))
1155 break;
1156 }
1157 }
Alan Cox216ba022008-10-13 10:40:19 +01001158 mxser_shutdown(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Alan Cox978e5952008-04-30 00:53:59 -07001160 mxser_flush_buffer(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001161 tty_ldisc_flush(tty);
1162
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 tty->closing = 0;
Alan Cox216ba022008-10-13 10:40:19 +01001164 tty_port_tty_set(&info->port, NULL);
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001165 if (info->port.blocked_open) {
Alan Cox44b7d1b2008-07-16 21:57:18 +01001166 if (info->port.close_delay)
1167 schedule_timeout_interruptible(info->port.close_delay);
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001168 wake_up_interruptible(&info->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 }
1170
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001171 info->port.flags &= ~(ASYNC_NORMAL_ACTIVE | ASYNC_CLOSING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172}
1173
1174static int mxser_write(struct tty_struct *tty, const unsigned char *buf, int count)
1175{
1176 int c, total = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08001177 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 unsigned long flags;
1179
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001180 if (!info->port.xmit_buf)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001181 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183 while (1) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001184 c = min_t(int, count, min(SERIAL_XMIT_SIZE - info->xmit_cnt - 1,
1185 SERIAL_XMIT_SIZE - info->xmit_head));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 if (c <= 0)
1187 break;
1188
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001189 memcpy(info->port.xmit_buf + info->xmit_head, buf, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 spin_lock_irqsave(&info->slock, flags);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001191 info->xmit_head = (info->xmit_head + c) &
1192 (SERIAL_XMIT_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 info->xmit_cnt += c;
1194 spin_unlock_irqrestore(&info->slock, flags);
1195
1196 buf += c;
1197 count -= c;
1198 total += c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 }
1200
Jiri Slaby1c456072008-02-07 00:16:46 -08001201 if (info->xmit_cnt && !tty->stopped) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001202 if (!tty->hw_stopped ||
1203 (info->type == PORT_16550A) ||
Jiri Slaby1c456072008-02-07 00:16:46 -08001204 (info->board->chip_flag)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 spin_lock_irqsave(&info->slock, flags);
Jiri Slaby1c456072008-02-07 00:16:46 -08001206 outb(info->IER & ~UART_IER_THRI, info->ioaddr +
1207 UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001209 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 spin_unlock_irqrestore(&info->slock, flags);
1211 }
1212 }
1213 return total;
1214}
1215
Alan Cox0be2ead2008-04-30 00:54:03 -07001216static int mxser_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217{
Jiri Slaby1c456072008-02-07 00:16:46 -08001218 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 unsigned long flags;
1220
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001221 if (!info->port.xmit_buf)
Alan Cox0be2ead2008-04-30 00:54:03 -07001222 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 if (info->xmit_cnt >= SERIAL_XMIT_SIZE - 1)
Alan Cox0be2ead2008-04-30 00:54:03 -07001225 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
1227 spin_lock_irqsave(&info->slock, flags);
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001228 info->port.xmit_buf[info->xmit_head++] = ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 info->xmit_head &= SERIAL_XMIT_SIZE - 1;
1230 info->xmit_cnt++;
1231 spin_unlock_irqrestore(&info->slock, flags);
Jiri Slaby1c456072008-02-07 00:16:46 -08001232 if (!tty->stopped) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001233 if (!tty->hw_stopped ||
1234 (info->type == PORT_16550A) ||
Jiri Slaby1c456072008-02-07 00:16:46 -08001235 info->board->chip_flag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 spin_lock_irqsave(&info->slock, flags);
Jiri Slaby1c456072008-02-07 00:16:46 -08001237 outb(info->IER & ~UART_IER_THRI, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001239 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 spin_unlock_irqrestore(&info->slock, flags);
1241 }
1242 }
Alan Cox0be2ead2008-04-30 00:54:03 -07001243 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244}
1245
1246
1247static void mxser_flush_chars(struct tty_struct *tty)
1248{
Jiri Slaby1c456072008-02-07 00:16:46 -08001249 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 unsigned long flags;
1251
Jiri Slabyace7dd92008-07-25 01:48:22 -07001252 if (info->xmit_cnt <= 0 || tty->stopped || !info->port.xmit_buf ||
1253 (tty->hw_stopped && info->type != PORT_16550A &&
1254 !info->board->chip_flag))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 return;
1256
1257 spin_lock_irqsave(&info->slock, flags);
1258
Jiri Slaby1c456072008-02-07 00:16:46 -08001259 outb(info->IER & ~UART_IER_THRI, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001261 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
1263 spin_unlock_irqrestore(&info->slock, flags);
1264}
1265
1266static int mxser_write_room(struct tty_struct *tty)
1267{
Jiri Slaby1c456072008-02-07 00:16:46 -08001268 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 int ret;
1270
1271 ret = SERIAL_XMIT_SIZE - info->xmit_cnt - 1;
Jiri Slabyace7dd92008-07-25 01:48:22 -07001272 return ret < 0 ? 0 : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273}
1274
1275static int mxser_chars_in_buffer(struct tty_struct *tty)
1276{
Jiri Slaby1c456072008-02-07 00:16:46 -08001277 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 return info->xmit_cnt;
1279}
1280
Jiri Slaby1c456072008-02-07 00:16:46 -08001281/*
1282 * ------------------------------------------------------------
1283 * friends of mxser_ioctl()
1284 * ------------------------------------------------------------
1285 */
Alan Cox216ba022008-10-13 10:40:19 +01001286static int mxser_get_serial_info(struct tty_struct *tty,
Jiri Slaby1c456072008-02-07 00:16:46 -08001287 struct serial_struct __user *retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288{
Alan Cox216ba022008-10-13 10:40:19 +01001289 struct mxser_port *info = tty->driver_data;
Jiri Slaby1c456072008-02-07 00:16:46 -08001290 struct serial_struct tmp = {
1291 .type = info->type,
Alan Cox216ba022008-10-13 10:40:19 +01001292 .line = tty->index,
Jiri Slaby1c456072008-02-07 00:16:46 -08001293 .port = info->ioaddr,
1294 .irq = info->board->irq,
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001295 .flags = info->port.flags,
Jiri Slaby1c456072008-02-07 00:16:46 -08001296 .baud_base = info->baud_base,
Alan Cox44b7d1b2008-07-16 21:57:18 +01001297 .close_delay = info->port.close_delay,
1298 .closing_wait = info->port.closing_wait,
Jiri Slaby1c456072008-02-07 00:16:46 -08001299 .custom_divisor = info->custom_divisor,
1300 .hub6 = 0
1301 };
1302 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
1303 return -EFAULT;
1304 return 0;
1305}
1306
Alan Cox216ba022008-10-13 10:40:19 +01001307static int mxser_set_serial_info(struct tty_struct *tty,
Jiri Slaby1c456072008-02-07 00:16:46 -08001308 struct serial_struct __user *new_info)
1309{
Alan Cox216ba022008-10-13 10:40:19 +01001310 struct mxser_port *info = tty->driver_data;
Jiri Slaby1c456072008-02-07 00:16:46 -08001311 struct serial_struct new_serial;
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001312 speed_t baud;
Jiri Slaby1c456072008-02-07 00:16:46 -08001313 unsigned long sl_flags;
1314 unsigned int flags;
1315 int retval = 0;
1316
1317 if (!new_info || !info->ioaddr)
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001318 return -ENODEV;
Jiri Slaby1c456072008-02-07 00:16:46 -08001319 if (copy_from_user(&new_serial, new_info, sizeof(new_serial)))
1320 return -EFAULT;
1321
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001322 if (new_serial.irq != info->board->irq ||
1323 new_serial.port != info->ioaddr)
1324 return -EINVAL;
Jiri Slaby1c456072008-02-07 00:16:46 -08001325
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001326 flags = info->port.flags & ASYNC_SPD_MASK;
Jiri Slaby1c456072008-02-07 00:16:46 -08001327
1328 if (!capable(CAP_SYS_ADMIN)) {
1329 if ((new_serial.baud_base != info->baud_base) ||
Alan Cox44b7d1b2008-07-16 21:57:18 +01001330 (new_serial.close_delay != info->port.close_delay) ||
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001331 ((new_serial.flags & ~ASYNC_USR_MASK) != (info->port.flags & ~ASYNC_USR_MASK)))
Jiri Slaby1c456072008-02-07 00:16:46 -08001332 return -EPERM;
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001333 info->port.flags = ((info->port.flags & ~ASYNC_USR_MASK) |
Jiri Slaby1c456072008-02-07 00:16:46 -08001334 (new_serial.flags & ASYNC_USR_MASK));
1335 } else {
1336 /*
1337 * OK, past this point, all the error checking has been done.
1338 * At this point, we start making changes.....
1339 */
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001340 info->port.flags = ((info->port.flags & ~ASYNC_FLAGS) |
Jiri Slaby1c456072008-02-07 00:16:46 -08001341 (new_serial.flags & ASYNC_FLAGS));
Alan Cox44b7d1b2008-07-16 21:57:18 +01001342 info->port.close_delay = new_serial.close_delay * HZ / 100;
1343 info->port.closing_wait = new_serial.closing_wait * HZ / 100;
Alan Cox216ba022008-10-13 10:40:19 +01001344 tty->low_latency = (info->port.flags & ASYNC_LOW_LATENCY)
1345 ? 1 : 0;
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001346 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST &&
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001347 (new_serial.baud_base != info->baud_base ||
1348 new_serial.custom_divisor !=
1349 info->custom_divisor)) {
1350 baud = new_serial.baud_base / new_serial.custom_divisor;
Alan Cox216ba022008-10-13 10:40:19 +01001351 tty_encode_baud_rate(tty, baud, baud);
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001352 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001353 }
1354
1355 info->type = new_serial.type;
1356
1357 process_txrx_fifo(info);
1358
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001359 if (info->port.flags & ASYNC_INITIALIZED) {
1360 if (flags != (info->port.flags & ASYNC_SPD_MASK)) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001361 spin_lock_irqsave(&info->slock, sl_flags);
Alan Cox216ba022008-10-13 10:40:19 +01001362 mxser_change_speed(tty, NULL);
Jiri Slaby1c456072008-02-07 00:16:46 -08001363 spin_unlock_irqrestore(&info->slock, sl_flags);
1364 }
1365 } else
Alan Cox216ba022008-10-13 10:40:19 +01001366 retval = mxser_startup(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001367
1368 return retval;
1369}
1370
1371/*
1372 * mxser_get_lsr_info - get line status register info
1373 *
1374 * Purpose: Let user call ioctl() to get info when the UART physically
1375 * is emptied. On bus types like RS485, the transmitter must
1376 * release the bus after transmitting. This must be done when
1377 * the transmit shift register is empty, not be done when the
1378 * transmit holding register is empty. This functionality
1379 * allows an RS485 driver to be written in user space.
1380 */
1381static int mxser_get_lsr_info(struct mxser_port *info,
1382 unsigned int __user *value)
1383{
1384 unsigned char status;
1385 unsigned int result;
1386 unsigned long flags;
1387
1388 spin_lock_irqsave(&info->slock, flags);
1389 status = inb(info->ioaddr + UART_LSR);
1390 spin_unlock_irqrestore(&info->slock, flags);
1391 result = ((status & UART_LSR_TEMT) ? TIOCSER_TEMT : 0);
1392 return put_user(result, value);
1393}
1394
Jiri Slaby1c456072008-02-07 00:16:46 -08001395static int mxser_tiocmget(struct tty_struct *tty, struct file *file)
1396{
1397 struct mxser_port *info = tty->driver_data;
1398 unsigned char control, status;
1399 unsigned long flags;
1400
1401
1402 if (tty->index == MXSER_PORTS)
1403 return -ENOIOCTLCMD;
1404 if (test_bit(TTY_IO_ERROR, &tty->flags))
1405 return -EIO;
1406
1407 control = info->MCR;
1408
1409 spin_lock_irqsave(&info->slock, flags);
1410 status = inb(info->ioaddr + UART_MSR);
1411 if (status & UART_MSR_ANY_DELTA)
Alan Cox216ba022008-10-13 10:40:19 +01001412 mxser_check_modem_status(tty, info, status);
Jiri Slaby1c456072008-02-07 00:16:46 -08001413 spin_unlock_irqrestore(&info->slock, flags);
1414 return ((control & UART_MCR_RTS) ? TIOCM_RTS : 0) |
1415 ((control & UART_MCR_DTR) ? TIOCM_DTR : 0) |
1416 ((status & UART_MSR_DCD) ? TIOCM_CAR : 0) |
1417 ((status & UART_MSR_RI) ? TIOCM_RNG : 0) |
1418 ((status & UART_MSR_DSR) ? TIOCM_DSR : 0) |
1419 ((status & UART_MSR_CTS) ? TIOCM_CTS : 0);
1420}
1421
1422static int mxser_tiocmset(struct tty_struct *tty, struct file *file,
1423 unsigned int set, unsigned int clear)
1424{
1425 struct mxser_port *info = tty->driver_data;
1426 unsigned long flags;
1427
1428
1429 if (tty->index == MXSER_PORTS)
1430 return -ENOIOCTLCMD;
1431 if (test_bit(TTY_IO_ERROR, &tty->flags))
1432 return -EIO;
1433
1434 spin_lock_irqsave(&info->slock, flags);
1435
1436 if (set & TIOCM_RTS)
1437 info->MCR |= UART_MCR_RTS;
1438 if (set & TIOCM_DTR)
1439 info->MCR |= UART_MCR_DTR;
1440
1441 if (clear & TIOCM_RTS)
1442 info->MCR &= ~UART_MCR_RTS;
1443 if (clear & TIOCM_DTR)
1444 info->MCR &= ~UART_MCR_DTR;
1445
1446 outb(info->MCR, info->ioaddr + UART_MCR);
1447 spin_unlock_irqrestore(&info->slock, flags);
1448 return 0;
1449}
1450
1451static int __init mxser_program_mode(int port)
1452{
1453 int id, i, j, n;
1454
1455 outb(0, port);
1456 outb(0, port);
1457 outb(0, port);
1458 (void)inb(port);
1459 (void)inb(port);
1460 outb(0, port);
1461 (void)inb(port);
1462
1463 id = inb(port + 1) & 0x1F;
1464 if ((id != C168_ASIC_ID) &&
1465 (id != C104_ASIC_ID) &&
1466 (id != C102_ASIC_ID) &&
1467 (id != CI132_ASIC_ID) &&
1468 (id != CI134_ASIC_ID) &&
1469 (id != CI104J_ASIC_ID))
1470 return -1;
1471 for (i = 0, j = 0; i < 4; i++) {
1472 n = inb(port + 2);
1473 if (n == 'M') {
1474 j = 1;
1475 } else if ((j == 1) && (n == 1)) {
1476 j = 2;
1477 break;
1478 } else
1479 j = 0;
1480 }
1481 if (j != 2)
1482 id = -2;
1483 return id;
1484}
1485
1486static void __init mxser_normal_mode(int port)
1487{
1488 int i, n;
1489
1490 outb(0xA5, port + 1);
1491 outb(0x80, port + 3);
1492 outb(12, port + 0); /* 9600 bps */
1493 outb(0, port + 1);
1494 outb(0x03, port + 3); /* 8 data bits */
1495 outb(0x13, port + 4); /* loop back mode */
1496 for (i = 0; i < 16; i++) {
1497 n = inb(port + 5);
1498 if ((n & 0x61) == 0x60)
1499 break;
1500 if ((n & 1) == 1)
1501 (void)inb(port);
1502 }
1503 outb(0x00, port + 4);
1504}
1505
1506#define CHIP_SK 0x01 /* Serial Data Clock in Eprom */
1507#define CHIP_DO 0x02 /* Serial Data Output in Eprom */
1508#define CHIP_CS 0x04 /* Serial Chip Select in Eprom */
1509#define CHIP_DI 0x08 /* Serial Data Input in Eprom */
1510#define EN_CCMD 0x000 /* Chip's command register */
1511#define EN0_RSARLO 0x008 /* Remote start address reg 0 */
1512#define EN0_RSARHI 0x009 /* Remote start address reg 1 */
1513#define EN0_RCNTLO 0x00A /* Remote byte count reg WR */
1514#define EN0_RCNTHI 0x00B /* Remote byte count reg WR */
1515#define EN0_DCFG 0x00E /* Data configuration reg WR */
1516#define EN0_PORT 0x010 /* Rcv missed frame error counter RD */
1517#define ENC_PAGE0 0x000 /* Select page 0 of chip registers */
1518#define ENC_PAGE3 0x0C0 /* Select page 3 of chip registers */
1519static int __init mxser_read_register(int port, unsigned short *regs)
1520{
1521 int i, k, value, id;
1522 unsigned int j;
1523
1524 id = mxser_program_mode(port);
1525 if (id < 0)
1526 return id;
1527 for (i = 0; i < 14; i++) {
1528 k = (i & 0x3F) | 0x180;
1529 for (j = 0x100; j > 0; j >>= 1) {
1530 outb(CHIP_CS, port);
1531 if (k & j) {
1532 outb(CHIP_CS | CHIP_DO, port);
1533 outb(CHIP_CS | CHIP_DO | CHIP_SK, port); /* A? bit of read */
1534 } else {
1535 outb(CHIP_CS, port);
1536 outb(CHIP_CS | CHIP_SK, port); /* A? bit of read */
1537 }
1538 }
1539 (void)inb(port);
1540 value = 0;
1541 for (k = 0, j = 0x8000; k < 16; k++, j >>= 1) {
1542 outb(CHIP_CS, port);
1543 outb(CHIP_CS | CHIP_SK, port);
1544 if (inb(port) & CHIP_DI)
1545 value |= j;
1546 }
1547 regs[i] = value;
1548 outb(0, port);
1549 }
1550 mxser_normal_mode(port);
1551 return id;
1552}
1553
1554static int mxser_ioctl_special(unsigned int cmd, void __user *argp)
1555{
1556 struct mxser_port *port;
Alan Cox216ba022008-10-13 10:40:19 +01001557 struct tty_struct *tty;
Jiri Slaby1c456072008-02-07 00:16:46 -08001558 int result, status;
1559 unsigned int i, j;
Alan Cox9d6d1622008-04-30 00:53:20 -07001560 int ret = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08001561
1562 switch (cmd) {
1563 case MOXA_GET_MAJOR:
Jiri Slaby8f3d1372008-07-29 22:33:38 -07001564 if (printk_ratelimit())
1565 printk(KERN_WARNING "mxser: '%s' uses deprecated ioctl "
1566 "%x (GET_MAJOR), fix your userspace\n",
1567 current->comm, cmd);
Jiri Slaby1c456072008-02-07 00:16:46 -08001568 return put_user(ttymajor, (int __user *)argp);
1569
1570 case MOXA_CHKPORTENABLE:
1571 result = 0;
Alan Cox9d6d1622008-04-30 00:53:20 -07001572 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001573 for (i = 0; i < MXSER_BOARDS; i++)
1574 for (j = 0; j < MXSER_PORTS_PER_BOARD; j++)
1575 if (mxser_boards[i].ports[j].ioaddr)
1576 result |= (1 << i);
Alan Cox9d6d1622008-04-30 00:53:20 -07001577 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001578 return put_user(result, (unsigned long __user *)argp);
1579 case MOXA_GETDATACOUNT:
Alan Cox9d6d1622008-04-30 00:53:20 -07001580 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001581 if (copy_to_user(argp, &mxvar_log, sizeof(mxvar_log)))
Alan Cox9d6d1622008-04-30 00:53:20 -07001582 ret = -EFAULT;
1583 unlock_kernel();
1584 return ret;
Jiri Slaby72800df2008-07-25 01:48:20 -07001585 case MOXA_GETMSTATUS: {
1586 struct mxser_mstatus ms, __user *msu = argp;
Alan Cox9d6d1622008-04-30 00:53:20 -07001587 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001588 for (i = 0; i < MXSER_BOARDS; i++)
1589 for (j = 0; j < MXSER_PORTS_PER_BOARD; j++) {
1590 port = &mxser_boards[i].ports[j];
Jiri Slaby72800df2008-07-25 01:48:20 -07001591 memset(&ms, 0, sizeof(ms));
Jiri Slaby1c456072008-02-07 00:16:46 -08001592
Jiri Slaby72800df2008-07-25 01:48:20 -07001593 if (!port->ioaddr)
1594 goto copy;
Alan Cox216ba022008-10-13 10:40:19 +01001595
1596 tty = tty_port_tty_get(&port->port);
Jiri Slaby1c456072008-02-07 00:16:46 -08001597
Alan Cox216ba022008-10-13 10:40:19 +01001598 if (!tty || !tty->termios)
Jiri Slaby72800df2008-07-25 01:48:20 -07001599 ms.cflag = port->normal_termios.c_cflag;
Jiri Slaby1c456072008-02-07 00:16:46 -08001600 else
Alan Cox216ba022008-10-13 10:40:19 +01001601 ms.cflag = tty->termios->c_cflag;
1602 tty_kref_put(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001603 status = inb(port->ioaddr + UART_MSR);
Jiri Slaby72800df2008-07-25 01:48:20 -07001604 if (status & UART_MSR_DCD)
1605 ms.dcd = 1;
1606 if (status & UART_MSR_DSR)
1607 ms.dsr = 1;
1608 if (status & UART_MSR_CTS)
1609 ms.cts = 1;
1610 copy:
1611 if (copy_to_user(msu, &ms, sizeof(ms))) {
1612 unlock_kernel();
1613 return -EFAULT;
1614 }
1615 msu++;
Jiri Slaby1c456072008-02-07 00:16:46 -08001616 }
Alan Cox9d6d1622008-04-30 00:53:20 -07001617 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001618 return 0;
Jiri Slaby72800df2008-07-25 01:48:20 -07001619 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001620 case MOXA_ASPP_MON_EXT: {
Jiri Slaby72800df2008-07-25 01:48:20 -07001621 struct mxser_mon_ext *me; /* it's 2k, stack unfriendly */
1622 unsigned int cflag, iflag, p;
1623 u8 opmode;
1624
1625 me = kzalloc(sizeof(*me), GFP_KERNEL);
1626 if (!me)
1627 return -ENOMEM;
Jiri Slaby1c456072008-02-07 00:16:46 -08001628
Alan Cox9d6d1622008-04-30 00:53:20 -07001629 lock_kernel();
Jiri Slaby72800df2008-07-25 01:48:20 -07001630 for (i = 0, p = 0; i < MXSER_BOARDS; i++) {
1631 for (j = 0; j < MXSER_PORTS_PER_BOARD; j++, p++) {
1632 if (p >= ARRAY_SIZE(me->rx_cnt)) {
1633 i = MXSER_BOARDS;
1634 break;
1635 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001636 port = &mxser_boards[i].ports[j];
1637 if (!port->ioaddr)
1638 continue;
1639
Jiri Slaby72800df2008-07-25 01:48:20 -07001640 status = mxser_get_msr(port->ioaddr, 0, p);
Jiri Slaby1c456072008-02-07 00:16:46 -08001641
1642 if (status & UART_MSR_TERI)
1643 port->icount.rng++;
1644 if (status & UART_MSR_DDSR)
1645 port->icount.dsr++;
1646 if (status & UART_MSR_DDCD)
1647 port->icount.dcd++;
1648 if (status & UART_MSR_DCTS)
1649 port->icount.cts++;
1650
1651 port->mon_data.modem_status = status;
Jiri Slaby72800df2008-07-25 01:48:20 -07001652 me->rx_cnt[p] = port->mon_data.rxcnt;
1653 me->tx_cnt[p] = port->mon_data.txcnt;
1654 me->up_rxcnt[p] = port->mon_data.up_rxcnt;
1655 me->up_txcnt[p] = port->mon_data.up_txcnt;
1656 me->modem_status[p] =
Jiri Slaby1c456072008-02-07 00:16:46 -08001657 port->mon_data.modem_status;
Alan Cox216ba022008-10-13 10:40:19 +01001658 tty = tty_port_tty_get(&port->port);
Jiri Slaby1c456072008-02-07 00:16:46 -08001659
Alan Cox216ba022008-10-13 10:40:19 +01001660 if (!tty || !tty->termios) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001661 cflag = port->normal_termios.c_cflag;
1662 iflag = port->normal_termios.c_iflag;
Alan Cox216ba022008-10-13 10:40:19 +01001663 me->baudrate[p] = tty_termios_baud_rate(&port->normal_termios);
Jiri Slaby1c456072008-02-07 00:16:46 -08001664 } else {
Alan Cox216ba022008-10-13 10:40:19 +01001665 cflag = tty->termios->c_cflag;
1666 iflag = tty->termios->c_iflag;
1667 me->baudrate[p] = tty_get_baud_rate(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001668 }
Alan Cox216ba022008-10-13 10:40:19 +01001669 tty_kref_put(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001670
Jiri Slaby72800df2008-07-25 01:48:20 -07001671 me->databits[p] = cflag & CSIZE;
1672 me->stopbits[p] = cflag & CSTOPB;
1673 me->parity[p] = cflag & (PARENB | PARODD |
1674 CMSPAR);
Jiri Slaby1c456072008-02-07 00:16:46 -08001675
1676 if (cflag & CRTSCTS)
Jiri Slaby72800df2008-07-25 01:48:20 -07001677 me->flowctrl[p] |= 0x03;
Jiri Slaby1c456072008-02-07 00:16:46 -08001678
1679 if (iflag & (IXON | IXOFF))
Jiri Slaby72800df2008-07-25 01:48:20 -07001680 me->flowctrl[p] |= 0x0C;
Jiri Slaby1c456072008-02-07 00:16:46 -08001681
1682 if (port->type == PORT_16550A)
Jiri Slaby72800df2008-07-25 01:48:20 -07001683 me->fifo[p] = 1;
Jiri Slaby1c456072008-02-07 00:16:46 -08001684
Jiri Slaby72800df2008-07-25 01:48:20 -07001685 opmode = inb(port->opmode_ioaddr) >>
1686 ((p % 4) * 2);
Jiri Slaby1c456072008-02-07 00:16:46 -08001687 opmode &= OP_MODE_MASK;
Jiri Slaby72800df2008-07-25 01:48:20 -07001688 me->iftype[p] = opmode;
Jiri Slaby1c456072008-02-07 00:16:46 -08001689 }
Alan Cox9d6d1622008-04-30 00:53:20 -07001690 }
1691 unlock_kernel();
Jiri Slaby72800df2008-07-25 01:48:20 -07001692 if (copy_to_user(argp, me, sizeof(*me)))
1693 ret = -EFAULT;
1694 kfree(me);
1695 return ret;
Alan Cox9d6d1622008-04-30 00:53:20 -07001696 }
1697 default:
Jiri Slaby1c456072008-02-07 00:16:46 -08001698 return -ENOIOCTLCMD;
1699 }
1700 return 0;
1701}
1702
1703static int mxser_cflags_changed(struct mxser_port *info, unsigned long arg,
1704 struct async_icount *cprev)
1705{
1706 struct async_icount cnow;
1707 unsigned long flags;
1708 int ret;
1709
1710 spin_lock_irqsave(&info->slock, flags);
1711 cnow = info->icount; /* atomic copy */
1712 spin_unlock_irqrestore(&info->slock, flags);
1713
1714 ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
1715 ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
1716 ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
1717 ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts));
1718
1719 *cprev = cnow;
1720
1721 return ret;
1722}
1723
1724static int mxser_ioctl(struct tty_struct *tty, struct file *file,
1725 unsigned int cmd, unsigned long arg)
1726{
1727 struct mxser_port *info = tty->driver_data;
1728 struct async_icount cnow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 unsigned long flags;
1730 void __user *argp = (void __user *)arg;
Jiri Slaby1c456072008-02-07 00:16:46 -08001731 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
1733 if (tty->index == MXSER_PORTS)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001734 return mxser_ioctl_special(cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 if (cmd == MOXA_SET_OP_MODE || cmd == MOXA_GET_OP_MODE) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001737 int p;
1738 unsigned long opmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 static unsigned char ModeMask[] = { 0xfc, 0xf3, 0xcf, 0x3f };
1740 int shiftbit;
1741 unsigned char val, mask;
1742
Jiri Slaby1c456072008-02-07 00:16:46 -08001743 p = tty->index % 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 if (cmd == MOXA_SET_OP_MODE) {
1745 if (get_user(opmode, (int __user *) argp))
1746 return -EFAULT;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001747 if (opmode != RS232_MODE &&
1748 opmode != RS485_2WIRE_MODE &&
1749 opmode != RS422_MODE &&
1750 opmode != RS485_4WIRE_MODE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 return -EFAULT;
Alan Cox9d6d1622008-04-30 00:53:20 -07001752 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 mask = ModeMask[p];
1754 shiftbit = p * 2;
1755 val = inb(info->opmode_ioaddr);
1756 val &= mask;
1757 val |= (opmode << shiftbit);
1758 outb(val, info->opmode_ioaddr);
Alan Cox9d6d1622008-04-30 00:53:20 -07001759 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 } else {
Alan Cox9d6d1622008-04-30 00:53:20 -07001761 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 shiftbit = p * 2;
1763 opmode = inb(info->opmode_ioaddr) >> shiftbit;
1764 opmode &= OP_MODE_MASK;
Alan Cox9d6d1622008-04-30 00:53:20 -07001765 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001766 if (put_user(opmode, (int __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 return -EFAULT;
1768 }
1769 return 0;
1770 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
Jiri Slaby1c456072008-02-07 00:16:46 -08001772 if (cmd != TIOCGSERIAL && cmd != TIOCMIWAIT && cmd != TIOCGICOUNT &&
1773 test_bit(TTY_IO_ERROR, &tty->flags))
1774 return -EIO;
1775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 case TIOCGSERIAL:
Alan Cox9d6d1622008-04-30 00:53:20 -07001778 lock_kernel();
Alan Cox216ba022008-10-13 10:40:19 +01001779 retval = mxser_get_serial_info(tty, argp);
Alan Cox9d6d1622008-04-30 00:53:20 -07001780 unlock_kernel();
1781 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 case TIOCSSERIAL:
Alan Cox9d6d1622008-04-30 00:53:20 -07001783 lock_kernel();
Alan Cox216ba022008-10-13 10:40:19 +01001784 retval = mxser_set_serial_info(tty, argp);
Alan Cox9d6d1622008-04-30 00:53:20 -07001785 unlock_kernel();
1786 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 case TIOCSERGETLSR: /* Get line status register */
Alan Cox9d6d1622008-04-30 00:53:20 -07001788 return mxser_get_lsr_info(info, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 /*
1790 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1791 * - mask passed in arg for lines of interest
1792 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1793 * Caller should use TIOCGICOUNT to see which one it was
1794 */
Jiri Slabyfc838152007-04-23 14:41:04 -07001795 case TIOCMIWAIT:
1796 spin_lock_irqsave(&info->slock, flags);
1797 cnow = info->icount; /* note the counters on entry */
1798 spin_unlock_irqrestore(&info->slock, flags);
1799
Jiri Slaby1c456072008-02-07 00:16:46 -08001800 return wait_event_interruptible(info->delta_msr_wait,
1801 mxser_cflags_changed(info, arg, &cnow));
1802 /*
1803 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1804 * Return: write counters to the user passed counter struct
1805 * NB: both 1->0 and 0->1 transitions are counted except for
1806 * RI where only 0->1 is counted.
1807 */
Jiri Slaby41aee9a2008-07-25 01:48:19 -07001808 case TIOCGICOUNT: {
1809 struct serial_icounter_struct icnt = { 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 spin_lock_irqsave(&info->slock, flags);
1811 cnow = info->icount;
1812 spin_unlock_irqrestore(&info->slock, flags);
Jiri Slaby41aee9a2008-07-25 01:48:19 -07001813
1814 icnt.frame = cnow.frame;
1815 icnt.brk = cnow.brk;
1816 icnt.overrun = cnow.overrun;
1817 icnt.buf_overrun = cnow.buf_overrun;
1818 icnt.parity = cnow.parity;
1819 icnt.rx = cnow.rx;
1820 icnt.tx = cnow.tx;
1821 icnt.cts = cnow.cts;
1822 icnt.dsr = cnow.dsr;
1823 icnt.rng = cnow.rng;
1824 icnt.dcd = cnow.dcd;
1825
1826 return copy_to_user(argp, &icnt, sizeof(icnt)) ? -EFAULT : 0;
1827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 case MOXA_HighSpeedOn:
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001829 return put_user(info->baud_base != 115200 ? 1 : 0, (int __user *)argp);
Jiri Slaby1c456072008-02-07 00:16:46 -08001830 case MOXA_SDS_RSTICOUNTER:
Alan Cox9d6d1622008-04-30 00:53:20 -07001831 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001832 info->mon_data.rxcnt = 0;
1833 info->mon_data.txcnt = 0;
Alan Cox9d6d1622008-04-30 00:53:20 -07001834 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 return 0;
1836
1837 case MOXA_ASPP_OQUEUE:{
Jiri Slaby1c456072008-02-07 00:16:46 -08001838 int len, lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
Alan Cox9d6d1622008-04-30 00:53:20 -07001840 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001841 len = mxser_chars_in_buffer(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001842 lsr = inb(info->ioaddr + UART_LSR) & UART_LSR_TEMT;
Jiri Slaby1c456072008-02-07 00:16:46 -08001843 len += (lsr ? 0 : 1);
Alan Cox9d6d1622008-04-30 00:53:20 -07001844 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Jiri Slaby1c456072008-02-07 00:16:46 -08001846 return put_user(len, (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001848 case MOXA_ASPP_MON: {
1849 int mcr, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Alan Cox9d6d1622008-04-30 00:53:20 -07001851 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001852 status = mxser_get_msr(info->ioaddr, 1, tty->index);
Alan Cox216ba022008-10-13 10:40:19 +01001853 mxser_check_modem_status(tty, info, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
Jiri Slaby1c456072008-02-07 00:16:46 -08001855 mcr = inb(info->ioaddr + UART_MCR);
1856 if (mcr & MOXA_MUST_MCR_XON_FLAG)
1857 info->mon_data.hold_reason &= ~NPPI_NOTIFY_XOFFHOLD;
1858 else
1859 info->mon_data.hold_reason |= NPPI_NOTIFY_XOFFHOLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Jiri Slaby1c456072008-02-07 00:16:46 -08001861 if (mcr & MOXA_MUST_MCR_TX_XON)
1862 info->mon_data.hold_reason &= ~NPPI_NOTIFY_XOFFXENT;
1863 else
1864 info->mon_data.hold_reason |= NPPI_NOTIFY_XOFFXENT;
1865
Alan Cox216ba022008-10-13 10:40:19 +01001866 if (tty->hw_stopped)
Jiri Slaby1c456072008-02-07 00:16:46 -08001867 info->mon_data.hold_reason |= NPPI_NOTIFY_CTSHOLD;
1868 else
1869 info->mon_data.hold_reason &= ~NPPI_NOTIFY_CTSHOLD;
Alan Cox9d6d1622008-04-30 00:53:20 -07001870 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001871 if (copy_to_user(argp, &info->mon_data,
1872 sizeof(struct mxser_mon)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 return -EFAULT;
Jiri Slaby1c456072008-02-07 00:16:46 -08001874
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 return 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08001876 }
1877 case MOXA_ASPP_LSTATUS: {
1878 if (put_user(info->err_shadow, (unsigned char __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
Jiri Slaby1c456072008-02-07 00:16:46 -08001881 info->err_shadow = 0;
1882 return 0;
1883 }
1884 case MOXA_SET_BAUD_METHOD: {
1885 int method;
1886
1887 if (get_user(method, (int __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 return -EFAULT;
Jiri Slaby1c456072008-02-07 00:16:46 -08001889 mxser_set_baud_method[tty->index] = method;
1890 return put_user(method, (int __user *)argp);
1891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 default:
1893 return -ENOIOCTLCMD;
1894 }
1895 return 0;
1896}
1897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898static void mxser_stoprx(struct tty_struct *tty)
1899{
Jiri Slaby1c456072008-02-07 00:16:46 -08001900 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
1902 info->ldisc_stop_rx = 1;
1903 if (I_IXOFF(tty)) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001904 if (info->board->chip_flag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 info->IER &= ~MOXA_MUST_RECV_ISR;
Jiri Slaby1c456072008-02-07 00:16:46 -08001906 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 info->x_char = STOP_CHAR(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001909 outb(0, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001911 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 }
1913 }
1914
Alan Cox216ba022008-10-13 10:40:19 +01001915 if (tty->termios->c_cflag & CRTSCTS) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001916 info->MCR &= ~UART_MCR_RTS;
1917 outb(info->MCR, info->ioaddr + UART_MCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 }
1919}
1920
1921/*
1922 * This routine is called by the upper-layer tty layer to signal that
1923 * incoming characters should be throttled.
1924 */
1925static void mxser_throttle(struct tty_struct *tty)
1926{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 mxser_stoprx(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928}
1929
1930static void mxser_unthrottle(struct tty_struct *tty)
1931{
Jiri Slaby1c456072008-02-07 00:16:46 -08001932 struct mxser_port *info = tty->driver_data;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001933
Jiri Slaby1c456072008-02-07 00:16:46 -08001934 /* startrx */
1935 info->ldisc_stop_rx = 0;
1936 if (I_IXOFF(tty)) {
1937 if (info->x_char)
1938 info->x_char = 0;
1939 else {
1940 if (info->board->chip_flag) {
1941 info->IER |= MOXA_MUST_RECV_ISR;
1942 outb(info->IER, info->ioaddr + UART_IER);
1943 } else {
1944 info->x_char = START_CHAR(tty);
1945 outb(0, info->ioaddr + UART_IER);
1946 info->IER |= UART_IER_THRI;
1947 outb(info->IER, info->ioaddr + UART_IER);
1948 }
1949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 }
1951
Alan Cox216ba022008-10-13 10:40:19 +01001952 if (tty->termios->c_cflag & CRTSCTS) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001953 info->MCR |= UART_MCR_RTS;
1954 outb(info->MCR, info->ioaddr + UART_MCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 }
1956}
1957
1958/*
1959 * mxser_stop() and mxser_start()
1960 *
1961 * This routines are called before setting or resetting tty->stopped.
1962 * They enable or disable transmitter interrupts, as necessary.
1963 */
1964static void mxser_stop(struct tty_struct *tty)
1965{
Jiri Slaby1c456072008-02-07 00:16:46 -08001966 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 unsigned long flags;
1968
1969 spin_lock_irqsave(&info->slock, flags);
1970 if (info->IER & UART_IER_THRI) {
1971 info->IER &= ~UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001972 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 }
1974 spin_unlock_irqrestore(&info->slock, flags);
1975}
1976
1977static void mxser_start(struct tty_struct *tty)
1978{
Jiri Slaby1c456072008-02-07 00:16:46 -08001979 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 unsigned long flags;
1981
1982 spin_lock_irqsave(&info->slock, flags);
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001983 if (info->xmit_cnt && info->port.xmit_buf) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001984 outb(info->IER & ~UART_IER_THRI, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001986 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 }
1988 spin_unlock_irqrestore(&info->slock, flags);
1989}
1990
Jiri Slaby1c456072008-02-07 00:16:46 -08001991static void mxser_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
1992{
1993 struct mxser_port *info = tty->driver_data;
1994 unsigned long flags;
1995
1996 spin_lock_irqsave(&info->slock, flags);
Alan Cox216ba022008-10-13 10:40:19 +01001997 mxser_change_speed(tty, old_termios);
Jiri Slaby1c456072008-02-07 00:16:46 -08001998 spin_unlock_irqrestore(&info->slock, flags);
1999
2000 if ((old_termios->c_cflag & CRTSCTS) &&
2001 !(tty->termios->c_cflag & CRTSCTS)) {
2002 tty->hw_stopped = 0;
2003 mxser_start(tty);
2004 }
2005
2006 /* Handle sw stopped */
2007 if ((old_termios->c_iflag & IXON) &&
2008 !(tty->termios->c_iflag & IXON)) {
2009 tty->stopped = 0;
2010
2011 if (info->board->chip_flag) {
2012 spin_lock_irqsave(&info->slock, flags);
Christoph Hellwig148ff862008-04-30 00:54:29 -07002013 mxser_disable_must_rx_software_flow_control(
2014 info->ioaddr);
Jiri Slaby1c456072008-02-07 00:16:46 -08002015 spin_unlock_irqrestore(&info->slock, flags);
2016 }
2017
2018 mxser_start(tty);
2019 }
2020}
2021
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022/*
2023 * mxser_wait_until_sent() --- wait until the transmitter is empty
2024 */
2025static void mxser_wait_until_sent(struct tty_struct *tty, int timeout)
2026{
Jiri Slaby1c456072008-02-07 00:16:46 -08002027 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 unsigned long orig_jiffies, char_time;
2029 int lsr;
2030
2031 if (info->type == PORT_UNKNOWN)
2032 return;
2033
2034 if (info->xmit_fifo_size == 0)
2035 return; /* Just in case.... */
2036
2037 orig_jiffies = jiffies;
2038 /*
2039 * Set the check interval to be 1/5 of the estimated time to
2040 * send a single character, and make it at least 1. The check
2041 * interval should also be less than the timeout.
2042 *
2043 * Note: we have to use pretty tight timings here to satisfy
2044 * the NIST-PCTS.
2045 */
2046 char_time = (info->timeout - HZ / 50) / info->xmit_fifo_size;
2047 char_time = char_time / 5;
2048 if (char_time == 0)
2049 char_time = 1;
2050 if (timeout && timeout < char_time)
2051 char_time = timeout;
2052 /*
2053 * If the transmitter hasn't cleared in twice the approximate
2054 * amount of time to send the entire FIFO, it probably won't
2055 * ever clear. This assumes the UART isn't doing flow
2056 * control, which is currently the case. Hence, if it ever
2057 * takes longer than info->timeout, this is probably due to a
2058 * UART bug of some kind. So, we clamp the timeout parameter at
2059 * 2*info->timeout.
2060 */
2061 if (!timeout || timeout > 2 * info->timeout)
2062 timeout = 2 * info->timeout;
2063#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002064 printk(KERN_DEBUG "In rs_wait_until_sent(%d) check=%lu...",
2065 timeout, char_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 printk("jiff=%lu...", jiffies);
2067#endif
Alan Cox978e5952008-04-30 00:53:59 -07002068 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08002069 while (!((lsr = inb(info->ioaddr + UART_LSR)) & UART_LSR_TEMT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2071 printk("lsr = %d (jiff=%lu)...", lsr, jiffies);
2072#endif
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07002073 schedule_timeout_interruptible(char_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 if (signal_pending(current))
2075 break;
2076 if (timeout && time_after(jiffies, orig_jiffies + timeout))
2077 break;
2078 }
2079 set_current_state(TASK_RUNNING);
Alan Cox978e5952008-04-30 00:53:59 -07002080 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
2082#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2083 printk("lsr = %d (jiff=%lu)...done\n", lsr, jiffies);
2084#endif
2085}
2086
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087/*
2088 * This routine is called by tty_hangup() when a hangup is signaled.
2089 */
Jiri Slaby1c456072008-02-07 00:16:46 -08002090static void mxser_hangup(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091{
Jiri Slaby1c456072008-02-07 00:16:46 -08002092 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
2094 mxser_flush_buffer(tty);
Alan Cox216ba022008-10-13 10:40:19 +01002095 mxser_shutdown(tty);
Alan Cox3b6826b2009-01-02 13:45:58 +00002096 tty_port_hangup(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097}
2098
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099/*
2100 * mxser_rs_break() --- routine which turns the break handling on or off
2101 */
Alan Cox9e989662008-07-22 11:18:03 +01002102static int mxser_rs_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103{
Jiri Slaby1c456072008-02-07 00:16:46 -08002104 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 unsigned long flags;
2106
2107 spin_lock_irqsave(&info->slock, flags);
2108 if (break_state == -1)
Jiri Slaby1c456072008-02-07 00:16:46 -08002109 outb(inb(info->ioaddr + UART_LCR) | UART_LCR_SBC,
2110 info->ioaddr + UART_LCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 else
Jiri Slaby1c456072008-02-07 00:16:46 -08002112 outb(inb(info->ioaddr + UART_LCR) & ~UART_LCR_SBC,
2113 info->ioaddr + UART_LCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 spin_unlock_irqrestore(&info->slock, flags);
Alan Cox9e989662008-07-22 11:18:03 +01002115 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116}
2117
Alan Cox216ba022008-10-13 10:40:19 +01002118static void mxser_receive_chars(struct tty_struct *tty,
2119 struct mxser_port *port, int *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 unsigned char ch, gdl;
2122 int ignored = 0;
2123 int cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 int recv_room;
2125 int max = 256;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Alan Cox33f0f882006-01-09 20:54:13 -08002127 recv_room = tty->receive_room;
Alan Cox216ba022008-10-13 10:40:19 +01002128 if (recv_room == 0 && !port->ldisc_stop_rx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 mxser_stoprx(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08002130 if (port->board->chip_flag != MOXA_OTHER_UART) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
Jiri Slaby1c456072008-02-07 00:16:46 -08002132 if (*status & UART_LSR_SPECIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 goto intr_old;
Jiri Slaby1c456072008-02-07 00:16:46 -08002134 if (port->board->chip_flag == MOXA_MUST_MU860_HWID &&
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002135 (*status & MOXA_MUST_LSR_RERR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 goto intr_old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 if (*status & MOXA_MUST_LSR_RERR)
2138 goto intr_old;
2139
Jiri Slaby1c456072008-02-07 00:16:46 -08002140 gdl = inb(port->ioaddr + MOXA_MUST_GDL_REGISTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
Jiri Slaby1c456072008-02-07 00:16:46 -08002142 if (port->board->chip_flag == MOXA_MUST_MU150_HWID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 gdl &= MOXA_MUST_GDL_MASK;
2144 if (gdl >= recv_room) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002145 if (!port->ldisc_stop_rx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 mxser_stoprx(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 }
2148 while (gdl--) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002149 ch = inb(port->ioaddr + UART_RX);
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002150 tty_insert_flip_char(tty, ch, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 }
2153 goto end_intr;
2154 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002155intr_old:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
2157 do {
2158 if (max-- < 0)
2159 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
Jiri Slaby1c456072008-02-07 00:16:46 -08002161 ch = inb(port->ioaddr + UART_RX);
2162 if (port->board->chip_flag && (*status & UART_LSR_OE))
2163 outb(0x23, port->ioaddr + UART_FCR);
2164 *status &= port->read_status_mask;
2165 if (*status & port->ignore_status_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 if (++ignored > 100)
2167 break;
2168 } else {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002169 char flag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 if (*status & UART_LSR_SPECIAL) {
2171 if (*status & UART_LSR_BI) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002172 flag = TTY_BREAK;
Jiri Slaby1c456072008-02-07 00:16:46 -08002173 port->icount.brk++;
2174
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002175 if (port->port.flags & ASYNC_SAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 do_SAK(tty);
2177 } else if (*status & UART_LSR_PE) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002178 flag = TTY_PARITY;
Jiri Slaby1c456072008-02-07 00:16:46 -08002179 port->icount.parity++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 } else if (*status & UART_LSR_FE) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002181 flag = TTY_FRAME;
Jiri Slaby1c456072008-02-07 00:16:46 -08002182 port->icount.frame++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 } else if (*status & UART_LSR_OE) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002184 flag = TTY_OVERRUN;
Jiri Slaby1c456072008-02-07 00:16:46 -08002185 port->icount.overrun++;
2186 } else
2187 flag = TTY_BREAK;
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002188 }
2189 tty_insert_flip_char(tty, ch, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 cnt++;
2191 if (cnt >= recv_room) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002192 if (!port->ldisc_stop_rx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 mxser_stoprx(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 break;
2195 }
2196
2197 }
2198
Jiri Slaby1c456072008-02-07 00:16:46 -08002199 if (port->board->chip_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
Jiri Slaby1c456072008-02-07 00:16:46 -08002202 *status = inb(port->ioaddr + UART_LSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 } while (*status & UART_LSR_DR);
2204
Jiri Slaby1c456072008-02-07 00:16:46 -08002205end_intr:
Alan Cox216ba022008-10-13 10:40:19 +01002206 mxvar_log.rxcnt[tty->index] += cnt;
Jiri Slaby1c456072008-02-07 00:16:46 -08002207 port->mon_data.rxcnt += cnt;
2208 port->mon_data.up_rxcnt += cnt;
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002209
Jiri Slaby1c456072008-02-07 00:16:46 -08002210 /*
2211 * We are called from an interrupt context with &port->slock
2212 * being held. Drop it temporarily in order to prevent
2213 * recursive locking.
2214 */
2215 spin_unlock(&port->slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 tty_flip_buffer_push(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08002217 spin_lock(&port->slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218}
2219
Alan Cox216ba022008-10-13 10:40:19 +01002220static void mxser_transmit_chars(struct tty_struct *tty, struct mxser_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221{
2222 int count, cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
Jiri Slaby1c456072008-02-07 00:16:46 -08002224 if (port->x_char) {
2225 outb(port->x_char, port->ioaddr + UART_TX);
2226 port->x_char = 0;
Alan Cox216ba022008-10-13 10:40:19 +01002227 mxvar_log.txcnt[tty->index]++;
Jiri Slaby1c456072008-02-07 00:16:46 -08002228 port->mon_data.txcnt++;
2229 port->mon_data.up_txcnt++;
2230 port->icount.tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 return;
2232 }
2233
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002234 if (port->port.xmit_buf == NULL)
Jiri Slaby1c456072008-02-07 00:16:46 -08002235 return;
2236
Alan Cox216ba022008-10-13 10:40:19 +01002237 if (port->xmit_cnt <= 0 || tty->stopped ||
2238 (tty->hw_stopped &&
Jiri Slaby1c456072008-02-07 00:16:46 -08002239 (port->type != PORT_16550A) &&
2240 (!port->board->chip_flag))) {
2241 port->IER &= ~UART_IER_THRI;
2242 outb(port->IER, port->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 return;
2244 }
2245
Jiri Slaby1c456072008-02-07 00:16:46 -08002246 cnt = port->xmit_cnt;
2247 count = port->xmit_fifo_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 do {
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002249 outb(port->port.xmit_buf[port->xmit_tail++],
Jiri Slaby1c456072008-02-07 00:16:46 -08002250 port->ioaddr + UART_TX);
2251 port->xmit_tail = port->xmit_tail & (SERIAL_XMIT_SIZE - 1);
2252 if (--port->xmit_cnt <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 break;
2254 } while (--count > 0);
Alan Cox216ba022008-10-13 10:40:19 +01002255 mxvar_log.txcnt[tty->index] += (cnt - port->xmit_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
Jiri Slaby1c456072008-02-07 00:16:46 -08002257 port->mon_data.txcnt += (cnt - port->xmit_cnt);
2258 port->mon_data.up_txcnt += (cnt - port->xmit_cnt);
2259 port->icount.tx += (cnt - port->xmit_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
Alan Cox216ba022008-10-13 10:40:19 +01002261 if (port->xmit_cnt < WAKEUP_CHARS && tty)
2262 tty_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
Jiri Slaby1c456072008-02-07 00:16:46 -08002264 if (port->xmit_cnt <= 0) {
2265 port->IER &= ~UART_IER_THRI;
2266 outb(port->IER, port->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268}
2269
2270/*
Jiri Slaby1c456072008-02-07 00:16:46 -08002271 * This is the serial driver's generic interrupt routine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 */
Jiri Slaby1c456072008-02-07 00:16:46 -08002273static irqreturn_t mxser_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274{
Jiri Slaby1c456072008-02-07 00:16:46 -08002275 int status, iir, i;
2276 struct mxser_board *brd = NULL;
2277 struct mxser_port *port;
2278 int max, irqbits, bits, msr;
2279 unsigned int int_cnt, pass_counter = 0;
2280 int handled = IRQ_NONE;
Alan Cox216ba022008-10-13 10:40:19 +01002281 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
Jiri Slaby1c456072008-02-07 00:16:46 -08002283 for (i = 0; i < MXSER_BOARDS; i++)
2284 if (dev_id == &mxser_boards[i]) {
2285 brd = dev_id;
2286 break;
2287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
Jiri Slaby1c456072008-02-07 00:16:46 -08002289 if (i == MXSER_BOARDS)
2290 goto irq_stop;
2291 if (brd == NULL)
2292 goto irq_stop;
2293 max = brd->info->nports;
2294 while (pass_counter++ < MXSER_ISR_PASS_LIMIT) {
2295 irqbits = inb(brd->vector) & brd->vector_mask;
2296 if (irqbits == brd->vector_mask)
2297 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
Jiri Slaby1c456072008-02-07 00:16:46 -08002299 handled = IRQ_HANDLED;
2300 for (i = 0, bits = 1; i < max; i++, irqbits |= bits, bits <<= 1) {
2301 if (irqbits == brd->vector_mask)
2302 break;
2303 if (bits & irqbits)
2304 continue;
2305 port = &brd->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
Jiri Slaby1c456072008-02-07 00:16:46 -08002307 int_cnt = 0;
2308 spin_lock(&port->slock);
2309 do {
2310 iir = inb(port->ioaddr + UART_IIR);
2311 if (iir & UART_IIR_NO_INT)
2312 break;
2313 iir &= MOXA_MUST_IIR_MASK;
Alan Cox216ba022008-10-13 10:40:19 +01002314 tty = tty_port_tty_get(&port->port);
2315 if (!tty ||
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002316 (port->port.flags & ASYNC_CLOSING) ||
2317 !(port->port.flags &
Jiri Slaby1c456072008-02-07 00:16:46 -08002318 ASYNC_INITIALIZED)) {
2319 status = inb(port->ioaddr + UART_LSR);
2320 outb(0x27, port->ioaddr + UART_FCR);
2321 inb(port->ioaddr + UART_MSR);
Alan Cox216ba022008-10-13 10:40:19 +01002322 tty_kref_put(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08002323 break;
2324 }
2325
2326 status = inb(port->ioaddr + UART_LSR);
2327
2328 if (status & UART_LSR_PE)
2329 port->err_shadow |= NPPI_NOTIFY_PARITY;
2330 if (status & UART_LSR_FE)
2331 port->err_shadow |= NPPI_NOTIFY_FRAMING;
2332 if (status & UART_LSR_OE)
2333 port->err_shadow |=
2334 NPPI_NOTIFY_HW_OVERRUN;
2335 if (status & UART_LSR_BI)
2336 port->err_shadow |= NPPI_NOTIFY_BREAK;
2337
2338 if (port->board->chip_flag) {
2339 if (iir == MOXA_MUST_IIR_GDA ||
2340 iir == MOXA_MUST_IIR_RDA ||
2341 iir == MOXA_MUST_IIR_RTO ||
2342 iir == MOXA_MUST_IIR_LSR)
Alan Cox216ba022008-10-13 10:40:19 +01002343 mxser_receive_chars(tty, port,
Jiri Slaby1c456072008-02-07 00:16:46 -08002344 &status);
2345
2346 } else {
2347 status &= port->read_status_mask;
2348 if (status & UART_LSR_DR)
Alan Cox216ba022008-10-13 10:40:19 +01002349 mxser_receive_chars(tty, port,
Jiri Slaby1c456072008-02-07 00:16:46 -08002350 &status);
2351 }
2352 msr = inb(port->ioaddr + UART_MSR);
2353 if (msr & UART_MSR_ANY_DELTA)
Alan Cox216ba022008-10-13 10:40:19 +01002354 mxser_check_modem_status(tty, port, msr);
Jiri Slaby1c456072008-02-07 00:16:46 -08002355
2356 if (port->board->chip_flag) {
2357 if (iir == 0x02 && (status &
2358 UART_LSR_THRE))
Alan Cox216ba022008-10-13 10:40:19 +01002359 mxser_transmit_chars(tty, port);
Jiri Slaby1c456072008-02-07 00:16:46 -08002360 } else {
2361 if (status & UART_LSR_THRE)
Alan Cox216ba022008-10-13 10:40:19 +01002362 mxser_transmit_chars(tty, port);
Jiri Slaby1c456072008-02-07 00:16:46 -08002363 }
Alan Cox216ba022008-10-13 10:40:19 +01002364 tty_kref_put(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08002365 } while (int_cnt++ < MXSER_ISR_PASS_LIMIT);
2366 spin_unlock(&port->slock);
2367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 }
2369
Jiri Slaby1c456072008-02-07 00:16:46 -08002370irq_stop:
2371 return handled;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372}
2373
Jiri Slaby1c456072008-02-07 00:16:46 -08002374static const struct tty_operations mxser_ops = {
2375 .open = mxser_open,
2376 .close = mxser_close,
2377 .write = mxser_write,
2378 .put_char = mxser_put_char,
2379 .flush_chars = mxser_flush_chars,
2380 .write_room = mxser_write_room,
2381 .chars_in_buffer = mxser_chars_in_buffer,
2382 .flush_buffer = mxser_flush_buffer,
2383 .ioctl = mxser_ioctl,
2384 .throttle = mxser_throttle,
2385 .unthrottle = mxser_unthrottle,
2386 .set_termios = mxser_set_termios,
2387 .stop = mxser_stop,
2388 .start = mxser_start,
2389 .hangup = mxser_hangup,
2390 .break_ctl = mxser_rs_break,
2391 .wait_until_sent = mxser_wait_until_sent,
2392 .tiocmget = mxser_tiocmget,
2393 .tiocmset = mxser_tiocmset,
2394};
2395
Alan Cox31f35932009-01-02 13:45:05 +00002396struct tty_port_operations mxser_port_ops = {
2397 .carrier_raised = mxser_carrier_raised,
Alan Cox5d951fb2009-01-02 13:45:19 +00002398 .raise_dtr_rts = mxser_raise_dtr_rts,
Alan Cox31f35932009-01-02 13:45:05 +00002399};
2400
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401/*
Jiri Slaby1c456072008-02-07 00:16:46 -08002402 * The MOXA Smartio/Industio serial driver boot-time initialization code!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 */
Jiri Slaby1c456072008-02-07 00:16:46 -08002404
2405static void mxser_release_res(struct mxser_board *brd, struct pci_dev *pdev,
2406 unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407{
Jiri Slaby1c456072008-02-07 00:16:46 -08002408 if (irq)
2409 free_irq(brd->irq, brd);
2410 if (pdev != NULL) { /* PCI */
2411#ifdef CONFIG_PCI
2412 pci_release_region(pdev, 2);
2413 pci_release_region(pdev, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 } else {
Jiri Slaby1c456072008-02-07 00:16:46 -08002416 release_region(brd->ports[0].ioaddr, 8 * brd->info->nports);
2417 release_region(brd->vector, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419}
2420
Jiri Slaby1c456072008-02-07 00:16:46 -08002421static int __devinit mxser_initbrd(struct mxser_board *brd,
2422 struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423{
Jiri Slaby1c456072008-02-07 00:16:46 -08002424 struct mxser_port *info;
2425 unsigned int i;
2426 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
Jiri Slaby83766bc2008-07-25 01:48:21 -07002428 printk(KERN_INFO "mxser: max. baud rate = %d bps\n",
2429 brd->ports[0].max_baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430
Jiri Slaby1c456072008-02-07 00:16:46 -08002431 for (i = 0; i < brd->info->nports; i++) {
2432 info = &brd->ports[i];
Alan Cox44b7d1b2008-07-16 21:57:18 +01002433 tty_port_init(&info->port);
Alan Cox31f35932009-01-02 13:45:05 +00002434 info->port.ops = &mxser_port_ops;
Jiri Slaby1c456072008-02-07 00:16:46 -08002435 info->board = brd;
2436 info->stop_rx = 0;
2437 info->ldisc_stop_rx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438
Jiri Slaby1c456072008-02-07 00:16:46 -08002439 /* Enhance mode enabled here */
2440 if (brd->chip_flag != MOXA_OTHER_UART)
Christoph Hellwig148ff862008-04-30 00:54:29 -07002441 mxser_enable_must_enchance_mode(info->ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002443 info->port.flags = ASYNC_SHARE_IRQ;
Jiri Slaby1c456072008-02-07 00:16:46 -08002444 info->type = brd->uart_type;
2445
2446 process_txrx_fifo(info);
2447
2448 info->custom_divisor = info->baud_base * 16;
Alan Cox44b7d1b2008-07-16 21:57:18 +01002449 info->port.close_delay = 5 * HZ / 10;
2450 info->port.closing_wait = 30 * HZ;
Jiri Slaby1c456072008-02-07 00:16:46 -08002451 info->normal_termios = mxvar_sdriver->init_termios;
Jiri Slaby1c456072008-02-07 00:16:46 -08002452 init_waitqueue_head(&info->delta_msr_wait);
2453 memset(&info->mon_data, 0, sizeof(struct mxser_mon));
2454 info->err_shadow = 0;
2455 spin_lock_init(&info->slock);
2456
2457 /* before set INT ISR, disable all int */
2458 outb(inb(info->ioaddr + UART_IER) & 0xf0,
2459 info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 }
2461
Jiri Slaby1c456072008-02-07 00:16:46 -08002462 retval = request_irq(brd->irq, mxser_interrupt, IRQF_SHARED, "mxser",
2463 brd);
2464 if (retval) {
2465 printk(KERN_ERR "Board %s: Request irq failed, IRQ (%d) may "
2466 "conflict with another device.\n",
2467 brd->info->name, brd->irq);
2468 /* We hold resources, we need to release them. */
2469 mxser_release_res(brd, pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002471 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472}
2473
Jiri Slaby1c456072008-02-07 00:16:46 -08002474static int __init mxser_get_ISA_conf(int cap, struct mxser_board *brd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475{
2476 int id, i, bits;
2477 unsigned short regs[16], irq;
2478 unsigned char scratch, scratch2;
2479
Jiri Slaby1c456072008-02-07 00:16:46 -08002480 brd->chip_flag = MOXA_OTHER_UART;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481
2482 id = mxser_read_register(cap, regs);
Jiri Slaby1c456072008-02-07 00:16:46 -08002483 switch (id) {
2484 case C168_ASIC_ID:
2485 brd->info = &mxser_cards[0];
2486 break;
2487 case C104_ASIC_ID:
2488 brd->info = &mxser_cards[1];
2489 break;
2490 case CI104J_ASIC_ID:
2491 brd->info = &mxser_cards[2];
2492 break;
2493 case C102_ASIC_ID:
2494 brd->info = &mxser_cards[5];
2495 break;
2496 case CI132_ASIC_ID:
2497 brd->info = &mxser_cards[6];
2498 break;
2499 case CI134_ASIC_ID:
2500 brd->info = &mxser_cards[7];
2501 break;
2502 default:
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002503 return 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08002504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505
2506 irq = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08002507 /* some ISA cards have 2 ports, but we want to see them as 4-port (why?)
2508 Flag-hack checks if configuration should be read as 2-port here. */
2509 if (brd->info->nports == 2 || (brd->info->flags & MXSER_HAS2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 irq = regs[9] & 0xF000;
2511 irq = irq | (irq >> 4);
2512 if (irq != (regs[9] & 0xFF00))
Jiri Slaby83766bc2008-07-25 01:48:21 -07002513 goto err_irqconflict;
Jiri Slaby1c456072008-02-07 00:16:46 -08002514 } else if (brd->info->nports == 4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 irq = regs[9] & 0xF000;
2516 irq = irq | (irq >> 4);
2517 irq = irq | (irq >> 8);
2518 if (irq != regs[9])
Jiri Slaby83766bc2008-07-25 01:48:21 -07002519 goto err_irqconflict;
Jiri Slaby1c456072008-02-07 00:16:46 -08002520 } else if (brd->info->nports == 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 irq = regs[9] & 0xF000;
2522 irq = irq | (irq >> 4);
2523 irq = irq | (irq >> 8);
2524 if ((irq != regs[9]) || (irq != regs[10]))
Jiri Slaby83766bc2008-07-25 01:48:21 -07002525 goto err_irqconflict;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 }
2527
Jiri Slaby83766bc2008-07-25 01:48:21 -07002528 if (!irq) {
2529 printk(KERN_ERR "mxser: interrupt number unset\n");
2530 return -EIO;
2531 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002532 brd->irq = ((int)(irq & 0xF000) >> 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 for (i = 0; i < 8; i++)
Jiri Slaby1c456072008-02-07 00:16:46 -08002534 brd->ports[i].ioaddr = (int) regs[i + 1] & 0xFFF8;
Jiri Slaby83766bc2008-07-25 01:48:21 -07002535 if ((regs[12] & 0x80) == 0) {
2536 printk(KERN_ERR "mxser: invalid interrupt vector\n");
2537 return -EIO;
2538 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002539 brd->vector = (int)regs[11]; /* interrupt vector */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 if (id == 1)
Jiri Slaby1c456072008-02-07 00:16:46 -08002541 brd->vector_mask = 0x00FF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 else
Jiri Slaby1c456072008-02-07 00:16:46 -08002543 brd->vector_mask = 0x000F;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 for (i = 7, bits = 0x0100; i >= 0; i--, bits <<= 1) {
2545 if (regs[12] & bits) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002546 brd->ports[i].baud_base = 921600;
2547 brd->ports[i].max_baud = 921600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 } else {
Jiri Slaby1c456072008-02-07 00:16:46 -08002549 brd->ports[i].baud_base = 115200;
2550 brd->ports[i].max_baud = 115200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 }
2552 }
2553 scratch2 = inb(cap + UART_LCR) & (~UART_LCR_DLAB);
2554 outb(scratch2 | UART_LCR_DLAB, cap + UART_LCR);
2555 outb(0, cap + UART_EFR); /* EFR is the same as FCR */
2556 outb(scratch2, cap + UART_LCR);
2557 outb(UART_FCR_ENABLE_FIFO, cap + UART_FCR);
2558 scratch = inb(cap + UART_IIR);
2559
2560 if (scratch & 0xC0)
Jiri Slaby1c456072008-02-07 00:16:46 -08002561 brd->uart_type = PORT_16550A;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 else
Jiri Slaby1c456072008-02-07 00:16:46 -08002563 brd->uart_type = PORT_16450;
2564 if (!request_region(brd->ports[0].ioaddr, 8 * brd->info->nports,
Jiri Slaby83766bc2008-07-25 01:48:21 -07002565 "mxser(IO)")) {
2566 printk(KERN_ERR "mxser: can't request ports I/O region: "
2567 "0x%.8lx-0x%.8lx\n",
2568 brd->ports[0].ioaddr, brd->ports[0].ioaddr +
2569 8 * brd->info->nports - 1);
2570 return -EIO;
2571 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002572 if (!request_region(brd->vector, 1, "mxser(vector)")) {
2573 release_region(brd->ports[0].ioaddr, 8 * brd->info->nports);
Jiri Slaby83766bc2008-07-25 01:48:21 -07002574 printk(KERN_ERR "mxser: can't request interrupt vector region: "
2575 "0x%.8lx-0x%.8lx\n",
2576 brd->ports[0].ioaddr, brd->ports[0].ioaddr +
2577 8 * brd->info->nports - 1);
2578 return -EIO;
Jiri Slaby1c456072008-02-07 00:16:46 -08002579 }
2580 return brd->info->nports;
Jiri Slaby83766bc2008-07-25 01:48:21 -07002581
2582err_irqconflict:
2583 printk(KERN_ERR "mxser: invalid interrupt number\n");
2584 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585}
2586
Jiri Slaby1c456072008-02-07 00:16:46 -08002587static int __devinit mxser_probe(struct pci_dev *pdev,
2588 const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589{
Jiri Slaby1c456072008-02-07 00:16:46 -08002590#ifdef CONFIG_PCI
2591 struct mxser_board *brd;
2592 unsigned int i, j;
2593 unsigned long ioaddress;
2594 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595
Jiri Slaby1c456072008-02-07 00:16:46 -08002596 for (i = 0; i < MXSER_BOARDS; i++)
2597 if (mxser_boards[i].info == NULL)
2598 break;
2599
2600 if (i >= MXSER_BOARDS) {
Jiri Slaby83766bc2008-07-25 01:48:21 -07002601 dev_err(&pdev->dev, "too many boards found (maximum %d), board "
2602 "not configured\n", MXSER_BOARDS);
Jiri Slaby1c456072008-02-07 00:16:46 -08002603 goto err;
2604 }
2605
2606 brd = &mxser_boards[i];
2607 brd->idx = i * MXSER_PORTS_PER_BOARD;
Jiri Slaby83766bc2008-07-25 01:48:21 -07002608 dev_info(&pdev->dev, "found MOXA %s board (BusNo=%d, DevNo=%d)\n",
Jiri Slaby1c456072008-02-07 00:16:46 -08002609 mxser_cards[ent->driver_data].name,
2610 pdev->bus->number, PCI_SLOT(pdev->devfn));
2611
2612 retval = pci_enable_device(pdev);
2613 if (retval) {
Jiri Slaby83766bc2008-07-25 01:48:21 -07002614 dev_err(&pdev->dev, "PCI enable failed\n");
Jiri Slaby1c456072008-02-07 00:16:46 -08002615 goto err;
2616 }
2617
2618 /* io address */
2619 ioaddress = pci_resource_start(pdev, 2);
2620 retval = pci_request_region(pdev, 2, "mxser(IO)");
2621 if (retval)
2622 goto err;
2623
2624 brd->info = &mxser_cards[ent->driver_data];
2625 for (i = 0; i < brd->info->nports; i++)
2626 brd->ports[i].ioaddr = ioaddress + 8 * i;
2627
2628 /* vector */
2629 ioaddress = pci_resource_start(pdev, 3);
2630 retval = pci_request_region(pdev, 3, "mxser(vector)");
2631 if (retval)
2632 goto err_relio;
2633 brd->vector = ioaddress;
2634
2635 /* irq */
2636 brd->irq = pdev->irq;
2637
2638 brd->chip_flag = CheckIsMoxaMust(brd->ports[0].ioaddr);
2639 brd->uart_type = PORT_16550A;
2640 brd->vector_mask = 0;
2641
2642 for (i = 0; i < brd->info->nports; i++) {
2643 for (j = 0; j < UART_INFO_NUM; j++) {
2644 if (Gpci_uart_info[j].type == brd->chip_flag) {
2645 brd->ports[i].max_baud =
2646 Gpci_uart_info[j].max_baud;
2647
2648 /* exception....CP-102 */
2649 if (brd->info->flags & MXSER_HIGHBAUD)
2650 brd->ports[i].max_baud = 921600;
2651 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 }
2653 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002654 }
2655
2656 if (brd->chip_flag == MOXA_MUST_MU860_HWID) {
2657 for (i = 0; i < brd->info->nports; i++) {
2658 if (i < 4)
2659 brd->ports[i].opmode_ioaddr = ioaddress + 4;
2660 else
2661 brd->ports[i].opmode_ioaddr = ioaddress + 0x0c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002663 outb(0, ioaddress + 4); /* default set to RS232 mode */
2664 outb(0, ioaddress + 0x0c); /* default set to RS232 mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002666
2667 for (i = 0; i < brd->info->nports; i++) {
2668 brd->vector_mask |= (1 << i);
2669 brd->ports[i].baud_base = 921600;
2670 }
2671
2672 /* mxser_initbrd will hook ISR. */
2673 retval = mxser_initbrd(brd, pdev);
2674 if (retval)
2675 goto err_null;
2676
2677 for (i = 0; i < brd->info->nports; i++)
2678 tty_register_device(mxvar_sdriver, brd->idx + i, &pdev->dev);
2679
2680 pci_set_drvdata(pdev, brd);
2681
2682 return 0;
2683err_relio:
2684 pci_release_region(pdev, 2);
2685err_null:
2686 brd->info = NULL;
2687err:
2688 return retval;
2689#else
2690 return -ENODEV;
2691#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692}
2693
Jiri Slaby1c456072008-02-07 00:16:46 -08002694static void __devexit mxser_remove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695{
Jiri Slaby1c456072008-02-07 00:16:46 -08002696 struct mxser_board *brd = pci_get_drvdata(pdev);
2697 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698
Jiri Slaby1c456072008-02-07 00:16:46 -08002699 for (i = 0; i < brd->info->nports; i++)
2700 tty_unregister_device(mxvar_sdriver, brd->idx + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701
Jiri Slaby1c456072008-02-07 00:16:46 -08002702 mxser_release_res(brd, pdev, 1);
2703 brd->info = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704}
2705
Jiri Slaby1c456072008-02-07 00:16:46 -08002706static struct pci_driver mxser_driver = {
2707 .name = "mxser",
2708 .id_table = mxser_pcibrds,
2709 .probe = mxser_probe,
2710 .remove = __devexit_p(mxser_remove)
2711};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
Jiri Slaby1c456072008-02-07 00:16:46 -08002713static int __init mxser_module_init(void)
2714{
2715 struct mxser_board *brd;
Jiri Slaby1df00922008-07-25 01:48:22 -07002716 unsigned int b, i, m;
2717 int retval;
Jiri Slaby1c456072008-02-07 00:16:46 -08002718
Jiri Slaby1c456072008-02-07 00:16:46 -08002719 mxvar_sdriver = alloc_tty_driver(MXSER_PORTS + 1);
2720 if (!mxvar_sdriver)
2721 return -ENOMEM;
2722
2723 printk(KERN_INFO "MOXA Smartio/Industio family driver version %s\n",
2724 MXSER_VERSION);
2725
2726 /* Initialize the tty_driver structure */
2727 mxvar_sdriver->owner = THIS_MODULE;
2728 mxvar_sdriver->magic = TTY_DRIVER_MAGIC;
2729 mxvar_sdriver->name = "ttyMI";
2730 mxvar_sdriver->major = ttymajor;
2731 mxvar_sdriver->minor_start = 0;
2732 mxvar_sdriver->num = MXSER_PORTS + 1;
2733 mxvar_sdriver->type = TTY_DRIVER_TYPE_SERIAL;
2734 mxvar_sdriver->subtype = SERIAL_TYPE_NORMAL;
2735 mxvar_sdriver->init_termios = tty_std_termios;
2736 mxvar_sdriver->init_termios.c_cflag = B9600|CS8|CREAD|HUPCL|CLOCAL;
2737 mxvar_sdriver->flags = TTY_DRIVER_REAL_RAW|TTY_DRIVER_DYNAMIC_DEV;
2738 tty_set_operations(mxvar_sdriver, &mxser_ops);
2739
2740 retval = tty_register_driver(mxvar_sdriver);
2741 if (retval) {
2742 printk(KERN_ERR "Couldn't install MOXA Smartio/Industio family "
2743 "tty driver !\n");
2744 goto err_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002746
Jiri Slaby1c456072008-02-07 00:16:46 -08002747 /* Start finding ISA boards here */
Jiri Slaby1df00922008-07-25 01:48:22 -07002748 for (m = 0, b = 0; b < MXSER_BOARDS; b++) {
2749 if (!ioaddr[b])
2750 continue;
Jiri Slaby1c456072008-02-07 00:16:46 -08002751
Jiri Slaby1df00922008-07-25 01:48:22 -07002752 brd = &mxser_boards[m];
2753 retval = mxser_get_ISA_conf(!ioaddr[b], brd);
2754 if (retval <= 0) {
2755 brd->info = NULL;
2756 continue;
Jiri Slaby1c456072008-02-07 00:16:46 -08002757 }
2758
Jiri Slaby1df00922008-07-25 01:48:22 -07002759 printk(KERN_INFO "mxser: found MOXA %s board (CAP=0x%lx)\n",
2760 brd->info->name, ioaddr[b]);
2761
2762 /* mxser_initbrd will hook ISR. */
2763 if (mxser_initbrd(brd, NULL) < 0) {
2764 brd->info = NULL;
2765 continue;
2766 }
2767
2768 brd->idx = m * MXSER_PORTS_PER_BOARD;
2769 for (i = 0; i < brd->info->nports; i++)
2770 tty_register_device(mxvar_sdriver, brd->idx + i, NULL);
2771
2772 m++;
2773 }
2774
Jiri Slaby1c456072008-02-07 00:16:46 -08002775 retval = pci_register_driver(&mxser_driver);
2776 if (retval) {
Jiri Slaby83766bc2008-07-25 01:48:21 -07002777 printk(KERN_ERR "mxser: can't register pci driver\n");
Jiri Slaby1c456072008-02-07 00:16:46 -08002778 if (!m) {
2779 retval = -ENODEV;
2780 goto err_unr;
2781 } /* else: we have some ISA cards under control */
2782 }
2783
Jiri Slaby1c456072008-02-07 00:16:46 -08002784 return 0;
2785err_unr:
2786 tty_unregister_driver(mxvar_sdriver);
2787err_put:
2788 put_tty_driver(mxvar_sdriver);
2789 return retval;
2790}
2791
2792static void __exit mxser_module_exit(void)
2793{
2794 unsigned int i, j;
2795
Jiri Slaby1c456072008-02-07 00:16:46 -08002796 pci_unregister_driver(&mxser_driver);
2797
2798 for (i = 0; i < MXSER_BOARDS; i++) /* ISA remains */
2799 if (mxser_boards[i].info != NULL)
2800 for (j = 0; j < mxser_boards[i].info->nports; j++)
2801 tty_unregister_device(mxvar_sdriver,
2802 mxser_boards[i].idx + j);
2803 tty_unregister_driver(mxvar_sdriver);
2804 put_tty_driver(mxvar_sdriver);
2805
2806 for (i = 0; i < MXSER_BOARDS; i++)
2807 if (mxser_boards[i].info != NULL)
2808 mxser_release_res(&mxser_boards[i], NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809}
2810
2811module_init(mxser_module_init);
2812module_exit(mxser_module_exit);