blob: 402c9f217f83a3853f62b5a09401ab8ab0d8f3a3 [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;
Alan Coxa6614992009-01-02 13:46:50 +00001083 struct tty_port *port = &info->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
1085 unsigned long timeout;
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 Coxa6614992009-01-02 13:46:50 +00001092 if (tty_port_close_start(port, tty, filp) == 0)
1093 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 /*
1096 * Save the termios structure, since this port may have
1097 * separate termios for callout and dialin.
Alan Coxa6614992009-01-02 13:46:50 +00001098 *
1099 * FIXME: Can this go ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 */
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001101 if (info->port.flags & ASYNC_NORMAL_ACTIVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 info->normal_termios = *tty->termios;
1103 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 * At this point we stop accepting input. To do this, we
1105 * disable the receive line status interrupts, and tell the
1106 * interrupt driver to stop checking the data ready bit in the
1107 * line status register.
1108 */
1109 info->IER &= ~UART_IER_RLSI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001110 if (info->board->chip_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 info->IER &= ~MOXA_MUST_RECV_ISR;
Jiri Slaby1c456072008-02-07 00:16:46 -08001112
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001113 if (info->port.flags & ASYNC_INITIALIZED) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001114 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 /*
1116 * Before we drop DTR, make sure the UART transmitter
1117 * has completely drained; this is especially
1118 * important if there is a transmit FIFO!
1119 */
1120 timeout = jiffies + HZ;
Jiri Slaby1c456072008-02-07 00:16:46 -08001121 while (!(inb(info->ioaddr + UART_LSR) & UART_LSR_TEMT)) {
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07001122 schedule_timeout_interruptible(5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 if (time_after(jiffies, timeout))
1124 break;
1125 }
1126 }
Alan Cox216ba022008-10-13 10:40:19 +01001127 mxser_shutdown(tty);
Alan Cox978e5952008-04-30 00:53:59 -07001128 mxser_flush_buffer(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001129
Alan Coxa6614992009-01-02 13:46:50 +00001130 /* Right now the tty_port set is done outside of the close_end helper
1131 as we don't yet have everyone using refcounts */
1132 tty_port_close_end(port, tty);
1133 tty_port_tty_set(port, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134}
1135
1136static int mxser_write(struct tty_struct *tty, const unsigned char *buf, int count)
1137{
1138 int c, total = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08001139 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 unsigned long flags;
1141
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001142 if (!info->port.xmit_buf)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001143 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 while (1) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001146 c = min_t(int, count, min(SERIAL_XMIT_SIZE - info->xmit_cnt - 1,
1147 SERIAL_XMIT_SIZE - info->xmit_head));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 if (c <= 0)
1149 break;
1150
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001151 memcpy(info->port.xmit_buf + info->xmit_head, buf, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 spin_lock_irqsave(&info->slock, flags);
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001153 info->xmit_head = (info->xmit_head + c) &
1154 (SERIAL_XMIT_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 info->xmit_cnt += c;
1156 spin_unlock_irqrestore(&info->slock, flags);
1157
1158 buf += c;
1159 count -= c;
1160 total += c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
1162
Jiri Slaby1c456072008-02-07 00:16:46 -08001163 if (info->xmit_cnt && !tty->stopped) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001164 if (!tty->hw_stopped ||
1165 (info->type == PORT_16550A) ||
Jiri Slaby1c456072008-02-07 00:16:46 -08001166 (info->board->chip_flag)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 spin_lock_irqsave(&info->slock, flags);
Jiri Slaby1c456072008-02-07 00:16:46 -08001168 outb(info->IER & ~UART_IER_THRI, info->ioaddr +
1169 UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001171 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 spin_unlock_irqrestore(&info->slock, flags);
1173 }
1174 }
1175 return total;
1176}
1177
Alan Cox0be2ead2008-04-30 00:54:03 -07001178static int mxser_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179{
Jiri Slaby1c456072008-02-07 00:16:46 -08001180 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 unsigned long flags;
1182
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001183 if (!info->port.xmit_buf)
Alan Cox0be2ead2008-04-30 00:54:03 -07001184 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186 if (info->xmit_cnt >= SERIAL_XMIT_SIZE - 1)
Alan Cox0be2ead2008-04-30 00:54:03 -07001187 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
1189 spin_lock_irqsave(&info->slock, flags);
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001190 info->port.xmit_buf[info->xmit_head++] = ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 info->xmit_head &= SERIAL_XMIT_SIZE - 1;
1192 info->xmit_cnt++;
1193 spin_unlock_irqrestore(&info->slock, flags);
Jiri Slaby1c456072008-02-07 00:16:46 -08001194 if (!tty->stopped) {
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001195 if (!tty->hw_stopped ||
1196 (info->type == PORT_16550A) ||
Jiri Slaby1c456072008-02-07 00:16:46 -08001197 info->board->chip_flag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 spin_lock_irqsave(&info->slock, flags);
Jiri Slaby1c456072008-02-07 00:16:46 -08001199 outb(info->IER & ~UART_IER_THRI, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001201 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 spin_unlock_irqrestore(&info->slock, flags);
1203 }
1204 }
Alan Cox0be2ead2008-04-30 00:54:03 -07001205 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206}
1207
1208
1209static void mxser_flush_chars(struct tty_struct *tty)
1210{
Jiri Slaby1c456072008-02-07 00:16:46 -08001211 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 unsigned long flags;
1213
Jiri Slabyace7dd92008-07-25 01:48:22 -07001214 if (info->xmit_cnt <= 0 || tty->stopped || !info->port.xmit_buf ||
1215 (tty->hw_stopped && info->type != PORT_16550A &&
1216 !info->board->chip_flag))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 return;
1218
1219 spin_lock_irqsave(&info->slock, flags);
1220
Jiri Slaby1c456072008-02-07 00:16:46 -08001221 outb(info->IER & ~UART_IER_THRI, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001223 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225 spin_unlock_irqrestore(&info->slock, flags);
1226}
1227
1228static int mxser_write_room(struct tty_struct *tty)
1229{
Jiri Slaby1c456072008-02-07 00:16:46 -08001230 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 int ret;
1232
1233 ret = SERIAL_XMIT_SIZE - info->xmit_cnt - 1;
Jiri Slabyace7dd92008-07-25 01:48:22 -07001234 return ret < 0 ? 0 : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
1237static int mxser_chars_in_buffer(struct tty_struct *tty)
1238{
Jiri Slaby1c456072008-02-07 00:16:46 -08001239 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 return info->xmit_cnt;
1241}
1242
Jiri Slaby1c456072008-02-07 00:16:46 -08001243/*
1244 * ------------------------------------------------------------
1245 * friends of mxser_ioctl()
1246 * ------------------------------------------------------------
1247 */
Alan Cox216ba022008-10-13 10:40:19 +01001248static int mxser_get_serial_info(struct tty_struct *tty,
Jiri Slaby1c456072008-02-07 00:16:46 -08001249 struct serial_struct __user *retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
Alan Cox216ba022008-10-13 10:40:19 +01001251 struct mxser_port *info = tty->driver_data;
Jiri Slaby1c456072008-02-07 00:16:46 -08001252 struct serial_struct tmp = {
1253 .type = info->type,
Alan Cox216ba022008-10-13 10:40:19 +01001254 .line = tty->index,
Jiri Slaby1c456072008-02-07 00:16:46 -08001255 .port = info->ioaddr,
1256 .irq = info->board->irq,
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001257 .flags = info->port.flags,
Jiri Slaby1c456072008-02-07 00:16:46 -08001258 .baud_base = info->baud_base,
Alan Cox44b7d1b2008-07-16 21:57:18 +01001259 .close_delay = info->port.close_delay,
1260 .closing_wait = info->port.closing_wait,
Jiri Slaby1c456072008-02-07 00:16:46 -08001261 .custom_divisor = info->custom_divisor,
1262 .hub6 = 0
1263 };
1264 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
1265 return -EFAULT;
1266 return 0;
1267}
1268
Alan Cox216ba022008-10-13 10:40:19 +01001269static int mxser_set_serial_info(struct tty_struct *tty,
Jiri Slaby1c456072008-02-07 00:16:46 -08001270 struct serial_struct __user *new_info)
1271{
Alan Cox216ba022008-10-13 10:40:19 +01001272 struct mxser_port *info = tty->driver_data;
Jiri Slaby1c456072008-02-07 00:16:46 -08001273 struct serial_struct new_serial;
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001274 speed_t baud;
Jiri Slaby1c456072008-02-07 00:16:46 -08001275 unsigned long sl_flags;
1276 unsigned int flags;
1277 int retval = 0;
1278
1279 if (!new_info || !info->ioaddr)
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001280 return -ENODEV;
Jiri Slaby1c456072008-02-07 00:16:46 -08001281 if (copy_from_user(&new_serial, new_info, sizeof(new_serial)))
1282 return -EFAULT;
1283
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001284 if (new_serial.irq != info->board->irq ||
1285 new_serial.port != info->ioaddr)
1286 return -EINVAL;
Jiri Slaby1c456072008-02-07 00:16:46 -08001287
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001288 flags = info->port.flags & ASYNC_SPD_MASK;
Jiri Slaby1c456072008-02-07 00:16:46 -08001289
1290 if (!capable(CAP_SYS_ADMIN)) {
1291 if ((new_serial.baud_base != info->baud_base) ||
Alan Cox44b7d1b2008-07-16 21:57:18 +01001292 (new_serial.close_delay != info->port.close_delay) ||
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001293 ((new_serial.flags & ~ASYNC_USR_MASK) != (info->port.flags & ~ASYNC_USR_MASK)))
Jiri Slaby1c456072008-02-07 00:16:46 -08001294 return -EPERM;
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001295 info->port.flags = ((info->port.flags & ~ASYNC_USR_MASK) |
Jiri Slaby1c456072008-02-07 00:16:46 -08001296 (new_serial.flags & ASYNC_USR_MASK));
1297 } else {
1298 /*
1299 * OK, past this point, all the error checking has been done.
1300 * At this point, we start making changes.....
1301 */
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001302 info->port.flags = ((info->port.flags & ~ASYNC_FLAGS) |
Jiri Slaby1c456072008-02-07 00:16:46 -08001303 (new_serial.flags & ASYNC_FLAGS));
Alan Cox44b7d1b2008-07-16 21:57:18 +01001304 info->port.close_delay = new_serial.close_delay * HZ / 100;
1305 info->port.closing_wait = new_serial.closing_wait * HZ / 100;
Alan Cox216ba022008-10-13 10:40:19 +01001306 tty->low_latency = (info->port.flags & ASYNC_LOW_LATENCY)
1307 ? 1 : 0;
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001308 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST &&
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001309 (new_serial.baud_base != info->baud_base ||
1310 new_serial.custom_divisor !=
1311 info->custom_divisor)) {
1312 baud = new_serial.baud_base / new_serial.custom_divisor;
Alan Cox216ba022008-10-13 10:40:19 +01001313 tty_encode_baud_rate(tty, baud, baud);
Jiri Slaby80ff8a82008-02-07 00:16:51 -08001314 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001315 }
1316
1317 info->type = new_serial.type;
1318
1319 process_txrx_fifo(info);
1320
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001321 if (info->port.flags & ASYNC_INITIALIZED) {
1322 if (flags != (info->port.flags & ASYNC_SPD_MASK)) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001323 spin_lock_irqsave(&info->slock, sl_flags);
Alan Cox216ba022008-10-13 10:40:19 +01001324 mxser_change_speed(tty, NULL);
Jiri Slaby1c456072008-02-07 00:16:46 -08001325 spin_unlock_irqrestore(&info->slock, sl_flags);
1326 }
1327 } else
Alan Cox216ba022008-10-13 10:40:19 +01001328 retval = mxser_startup(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001329
1330 return retval;
1331}
1332
1333/*
1334 * mxser_get_lsr_info - get line status register info
1335 *
1336 * Purpose: Let user call ioctl() to get info when the UART physically
1337 * is emptied. On bus types like RS485, the transmitter must
1338 * release the bus after transmitting. This must be done when
1339 * the transmit shift register is empty, not be done when the
1340 * transmit holding register is empty. This functionality
1341 * allows an RS485 driver to be written in user space.
1342 */
1343static int mxser_get_lsr_info(struct mxser_port *info,
1344 unsigned int __user *value)
1345{
1346 unsigned char status;
1347 unsigned int result;
1348 unsigned long flags;
1349
1350 spin_lock_irqsave(&info->slock, flags);
1351 status = inb(info->ioaddr + UART_LSR);
1352 spin_unlock_irqrestore(&info->slock, flags);
1353 result = ((status & UART_LSR_TEMT) ? TIOCSER_TEMT : 0);
1354 return put_user(result, value);
1355}
1356
Jiri Slaby1c456072008-02-07 00:16:46 -08001357static int mxser_tiocmget(struct tty_struct *tty, struct file *file)
1358{
1359 struct mxser_port *info = tty->driver_data;
1360 unsigned char control, status;
1361 unsigned long flags;
1362
1363
1364 if (tty->index == MXSER_PORTS)
1365 return -ENOIOCTLCMD;
1366 if (test_bit(TTY_IO_ERROR, &tty->flags))
1367 return -EIO;
1368
1369 control = info->MCR;
1370
1371 spin_lock_irqsave(&info->slock, flags);
1372 status = inb(info->ioaddr + UART_MSR);
1373 if (status & UART_MSR_ANY_DELTA)
Alan Cox216ba022008-10-13 10:40:19 +01001374 mxser_check_modem_status(tty, info, status);
Jiri Slaby1c456072008-02-07 00:16:46 -08001375 spin_unlock_irqrestore(&info->slock, flags);
1376 return ((control & UART_MCR_RTS) ? TIOCM_RTS : 0) |
1377 ((control & UART_MCR_DTR) ? TIOCM_DTR : 0) |
1378 ((status & UART_MSR_DCD) ? TIOCM_CAR : 0) |
1379 ((status & UART_MSR_RI) ? TIOCM_RNG : 0) |
1380 ((status & UART_MSR_DSR) ? TIOCM_DSR : 0) |
1381 ((status & UART_MSR_CTS) ? TIOCM_CTS : 0);
1382}
1383
1384static int mxser_tiocmset(struct tty_struct *tty, struct file *file,
1385 unsigned int set, unsigned int clear)
1386{
1387 struct mxser_port *info = tty->driver_data;
1388 unsigned long flags;
1389
1390
1391 if (tty->index == MXSER_PORTS)
1392 return -ENOIOCTLCMD;
1393 if (test_bit(TTY_IO_ERROR, &tty->flags))
1394 return -EIO;
1395
1396 spin_lock_irqsave(&info->slock, flags);
1397
1398 if (set & TIOCM_RTS)
1399 info->MCR |= UART_MCR_RTS;
1400 if (set & TIOCM_DTR)
1401 info->MCR |= UART_MCR_DTR;
1402
1403 if (clear & TIOCM_RTS)
1404 info->MCR &= ~UART_MCR_RTS;
1405 if (clear & TIOCM_DTR)
1406 info->MCR &= ~UART_MCR_DTR;
1407
1408 outb(info->MCR, info->ioaddr + UART_MCR);
1409 spin_unlock_irqrestore(&info->slock, flags);
1410 return 0;
1411}
1412
1413static int __init mxser_program_mode(int port)
1414{
1415 int id, i, j, n;
1416
1417 outb(0, port);
1418 outb(0, port);
1419 outb(0, port);
1420 (void)inb(port);
1421 (void)inb(port);
1422 outb(0, port);
1423 (void)inb(port);
1424
1425 id = inb(port + 1) & 0x1F;
1426 if ((id != C168_ASIC_ID) &&
1427 (id != C104_ASIC_ID) &&
1428 (id != C102_ASIC_ID) &&
1429 (id != CI132_ASIC_ID) &&
1430 (id != CI134_ASIC_ID) &&
1431 (id != CI104J_ASIC_ID))
1432 return -1;
1433 for (i = 0, j = 0; i < 4; i++) {
1434 n = inb(port + 2);
1435 if (n == 'M') {
1436 j = 1;
1437 } else if ((j == 1) && (n == 1)) {
1438 j = 2;
1439 break;
1440 } else
1441 j = 0;
1442 }
1443 if (j != 2)
1444 id = -2;
1445 return id;
1446}
1447
1448static void __init mxser_normal_mode(int port)
1449{
1450 int i, n;
1451
1452 outb(0xA5, port + 1);
1453 outb(0x80, port + 3);
1454 outb(12, port + 0); /* 9600 bps */
1455 outb(0, port + 1);
1456 outb(0x03, port + 3); /* 8 data bits */
1457 outb(0x13, port + 4); /* loop back mode */
1458 for (i = 0; i < 16; i++) {
1459 n = inb(port + 5);
1460 if ((n & 0x61) == 0x60)
1461 break;
1462 if ((n & 1) == 1)
1463 (void)inb(port);
1464 }
1465 outb(0x00, port + 4);
1466}
1467
1468#define CHIP_SK 0x01 /* Serial Data Clock in Eprom */
1469#define CHIP_DO 0x02 /* Serial Data Output in Eprom */
1470#define CHIP_CS 0x04 /* Serial Chip Select in Eprom */
1471#define CHIP_DI 0x08 /* Serial Data Input in Eprom */
1472#define EN_CCMD 0x000 /* Chip's command register */
1473#define EN0_RSARLO 0x008 /* Remote start address reg 0 */
1474#define EN0_RSARHI 0x009 /* Remote start address reg 1 */
1475#define EN0_RCNTLO 0x00A /* Remote byte count reg WR */
1476#define EN0_RCNTHI 0x00B /* Remote byte count reg WR */
1477#define EN0_DCFG 0x00E /* Data configuration reg WR */
1478#define EN0_PORT 0x010 /* Rcv missed frame error counter RD */
1479#define ENC_PAGE0 0x000 /* Select page 0 of chip registers */
1480#define ENC_PAGE3 0x0C0 /* Select page 3 of chip registers */
1481static int __init mxser_read_register(int port, unsigned short *regs)
1482{
1483 int i, k, value, id;
1484 unsigned int j;
1485
1486 id = mxser_program_mode(port);
1487 if (id < 0)
1488 return id;
1489 for (i = 0; i < 14; i++) {
1490 k = (i & 0x3F) | 0x180;
1491 for (j = 0x100; j > 0; j >>= 1) {
1492 outb(CHIP_CS, port);
1493 if (k & j) {
1494 outb(CHIP_CS | CHIP_DO, port);
1495 outb(CHIP_CS | CHIP_DO | CHIP_SK, port); /* A? bit of read */
1496 } else {
1497 outb(CHIP_CS, port);
1498 outb(CHIP_CS | CHIP_SK, port); /* A? bit of read */
1499 }
1500 }
1501 (void)inb(port);
1502 value = 0;
1503 for (k = 0, j = 0x8000; k < 16; k++, j >>= 1) {
1504 outb(CHIP_CS, port);
1505 outb(CHIP_CS | CHIP_SK, port);
1506 if (inb(port) & CHIP_DI)
1507 value |= j;
1508 }
1509 regs[i] = value;
1510 outb(0, port);
1511 }
1512 mxser_normal_mode(port);
1513 return id;
1514}
1515
1516static int mxser_ioctl_special(unsigned int cmd, void __user *argp)
1517{
1518 struct mxser_port *port;
Alan Cox216ba022008-10-13 10:40:19 +01001519 struct tty_struct *tty;
Jiri Slaby1c456072008-02-07 00:16:46 -08001520 int result, status;
1521 unsigned int i, j;
Alan Cox9d6d1622008-04-30 00:53:20 -07001522 int ret = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08001523
1524 switch (cmd) {
1525 case MOXA_GET_MAJOR:
Jiri Slaby8f3d1372008-07-29 22:33:38 -07001526 if (printk_ratelimit())
1527 printk(KERN_WARNING "mxser: '%s' uses deprecated ioctl "
1528 "%x (GET_MAJOR), fix your userspace\n",
1529 current->comm, cmd);
Jiri Slaby1c456072008-02-07 00:16:46 -08001530 return put_user(ttymajor, (int __user *)argp);
1531
1532 case MOXA_CHKPORTENABLE:
1533 result = 0;
Alan Cox9d6d1622008-04-30 00:53:20 -07001534 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001535 for (i = 0; i < MXSER_BOARDS; i++)
1536 for (j = 0; j < MXSER_PORTS_PER_BOARD; j++)
1537 if (mxser_boards[i].ports[j].ioaddr)
1538 result |= (1 << i);
Alan Cox9d6d1622008-04-30 00:53:20 -07001539 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001540 return put_user(result, (unsigned long __user *)argp);
1541 case MOXA_GETDATACOUNT:
Alan Cox9d6d1622008-04-30 00:53:20 -07001542 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001543 if (copy_to_user(argp, &mxvar_log, sizeof(mxvar_log)))
Alan Cox9d6d1622008-04-30 00:53:20 -07001544 ret = -EFAULT;
1545 unlock_kernel();
1546 return ret;
Jiri Slaby72800df2008-07-25 01:48:20 -07001547 case MOXA_GETMSTATUS: {
1548 struct mxser_mstatus ms, __user *msu = argp;
Alan Cox9d6d1622008-04-30 00:53:20 -07001549 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001550 for (i = 0; i < MXSER_BOARDS; i++)
1551 for (j = 0; j < MXSER_PORTS_PER_BOARD; j++) {
1552 port = &mxser_boards[i].ports[j];
Jiri Slaby72800df2008-07-25 01:48:20 -07001553 memset(&ms, 0, sizeof(ms));
Jiri Slaby1c456072008-02-07 00:16:46 -08001554
Jiri Slaby72800df2008-07-25 01:48:20 -07001555 if (!port->ioaddr)
1556 goto copy;
Alan Cox216ba022008-10-13 10:40:19 +01001557
1558 tty = tty_port_tty_get(&port->port);
Jiri Slaby1c456072008-02-07 00:16:46 -08001559
Alan Cox216ba022008-10-13 10:40:19 +01001560 if (!tty || !tty->termios)
Jiri Slaby72800df2008-07-25 01:48:20 -07001561 ms.cflag = port->normal_termios.c_cflag;
Jiri Slaby1c456072008-02-07 00:16:46 -08001562 else
Alan Cox216ba022008-10-13 10:40:19 +01001563 ms.cflag = tty->termios->c_cflag;
1564 tty_kref_put(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001565 status = inb(port->ioaddr + UART_MSR);
Jiri Slaby72800df2008-07-25 01:48:20 -07001566 if (status & UART_MSR_DCD)
1567 ms.dcd = 1;
1568 if (status & UART_MSR_DSR)
1569 ms.dsr = 1;
1570 if (status & UART_MSR_CTS)
1571 ms.cts = 1;
1572 copy:
1573 if (copy_to_user(msu, &ms, sizeof(ms))) {
1574 unlock_kernel();
1575 return -EFAULT;
1576 }
1577 msu++;
Jiri Slaby1c456072008-02-07 00:16:46 -08001578 }
Alan Cox9d6d1622008-04-30 00:53:20 -07001579 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001580 return 0;
Jiri Slaby72800df2008-07-25 01:48:20 -07001581 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001582 case MOXA_ASPP_MON_EXT: {
Jiri Slaby72800df2008-07-25 01:48:20 -07001583 struct mxser_mon_ext *me; /* it's 2k, stack unfriendly */
1584 unsigned int cflag, iflag, p;
1585 u8 opmode;
1586
1587 me = kzalloc(sizeof(*me), GFP_KERNEL);
1588 if (!me)
1589 return -ENOMEM;
Jiri Slaby1c456072008-02-07 00:16:46 -08001590
Alan Cox9d6d1622008-04-30 00:53:20 -07001591 lock_kernel();
Jiri Slaby72800df2008-07-25 01:48:20 -07001592 for (i = 0, p = 0; i < MXSER_BOARDS; i++) {
1593 for (j = 0; j < MXSER_PORTS_PER_BOARD; j++, p++) {
1594 if (p >= ARRAY_SIZE(me->rx_cnt)) {
1595 i = MXSER_BOARDS;
1596 break;
1597 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001598 port = &mxser_boards[i].ports[j];
1599 if (!port->ioaddr)
1600 continue;
1601
Jiri Slaby72800df2008-07-25 01:48:20 -07001602 status = mxser_get_msr(port->ioaddr, 0, p);
Jiri Slaby1c456072008-02-07 00:16:46 -08001603
1604 if (status & UART_MSR_TERI)
1605 port->icount.rng++;
1606 if (status & UART_MSR_DDSR)
1607 port->icount.dsr++;
1608 if (status & UART_MSR_DDCD)
1609 port->icount.dcd++;
1610 if (status & UART_MSR_DCTS)
1611 port->icount.cts++;
1612
1613 port->mon_data.modem_status = status;
Jiri Slaby72800df2008-07-25 01:48:20 -07001614 me->rx_cnt[p] = port->mon_data.rxcnt;
1615 me->tx_cnt[p] = port->mon_data.txcnt;
1616 me->up_rxcnt[p] = port->mon_data.up_rxcnt;
1617 me->up_txcnt[p] = port->mon_data.up_txcnt;
1618 me->modem_status[p] =
Jiri Slaby1c456072008-02-07 00:16:46 -08001619 port->mon_data.modem_status;
Alan Cox216ba022008-10-13 10:40:19 +01001620 tty = tty_port_tty_get(&port->port);
Jiri Slaby1c456072008-02-07 00:16:46 -08001621
Alan Cox216ba022008-10-13 10:40:19 +01001622 if (!tty || !tty->termios) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001623 cflag = port->normal_termios.c_cflag;
1624 iflag = port->normal_termios.c_iflag;
Alan Cox216ba022008-10-13 10:40:19 +01001625 me->baudrate[p] = tty_termios_baud_rate(&port->normal_termios);
Jiri Slaby1c456072008-02-07 00:16:46 -08001626 } else {
Alan Cox216ba022008-10-13 10:40:19 +01001627 cflag = tty->termios->c_cflag;
1628 iflag = tty->termios->c_iflag;
1629 me->baudrate[p] = tty_get_baud_rate(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001630 }
Alan Cox216ba022008-10-13 10:40:19 +01001631 tty_kref_put(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001632
Jiri Slaby72800df2008-07-25 01:48:20 -07001633 me->databits[p] = cflag & CSIZE;
1634 me->stopbits[p] = cflag & CSTOPB;
1635 me->parity[p] = cflag & (PARENB | PARODD |
1636 CMSPAR);
Jiri Slaby1c456072008-02-07 00:16:46 -08001637
1638 if (cflag & CRTSCTS)
Jiri Slaby72800df2008-07-25 01:48:20 -07001639 me->flowctrl[p] |= 0x03;
Jiri Slaby1c456072008-02-07 00:16:46 -08001640
1641 if (iflag & (IXON | IXOFF))
Jiri Slaby72800df2008-07-25 01:48:20 -07001642 me->flowctrl[p] |= 0x0C;
Jiri Slaby1c456072008-02-07 00:16:46 -08001643
1644 if (port->type == PORT_16550A)
Jiri Slaby72800df2008-07-25 01:48:20 -07001645 me->fifo[p] = 1;
Jiri Slaby1c456072008-02-07 00:16:46 -08001646
Jiri Slaby72800df2008-07-25 01:48:20 -07001647 opmode = inb(port->opmode_ioaddr) >>
1648 ((p % 4) * 2);
Jiri Slaby1c456072008-02-07 00:16:46 -08001649 opmode &= OP_MODE_MASK;
Jiri Slaby72800df2008-07-25 01:48:20 -07001650 me->iftype[p] = opmode;
Jiri Slaby1c456072008-02-07 00:16:46 -08001651 }
Alan Cox9d6d1622008-04-30 00:53:20 -07001652 }
1653 unlock_kernel();
Jiri Slaby72800df2008-07-25 01:48:20 -07001654 if (copy_to_user(argp, me, sizeof(*me)))
1655 ret = -EFAULT;
1656 kfree(me);
1657 return ret;
Alan Cox9d6d1622008-04-30 00:53:20 -07001658 }
1659 default:
Jiri Slaby1c456072008-02-07 00:16:46 -08001660 return -ENOIOCTLCMD;
1661 }
1662 return 0;
1663}
1664
1665static int mxser_cflags_changed(struct mxser_port *info, unsigned long arg,
1666 struct async_icount *cprev)
1667{
1668 struct async_icount cnow;
1669 unsigned long flags;
1670 int ret;
1671
1672 spin_lock_irqsave(&info->slock, flags);
1673 cnow = info->icount; /* atomic copy */
1674 spin_unlock_irqrestore(&info->slock, flags);
1675
1676 ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
1677 ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
1678 ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
1679 ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts));
1680
1681 *cprev = cnow;
1682
1683 return ret;
1684}
1685
1686static int mxser_ioctl(struct tty_struct *tty, struct file *file,
1687 unsigned int cmd, unsigned long arg)
1688{
1689 struct mxser_port *info = tty->driver_data;
1690 struct async_icount cnow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 unsigned long flags;
1692 void __user *argp = (void __user *)arg;
Jiri Slaby1c456072008-02-07 00:16:46 -08001693 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
1695 if (tty->index == MXSER_PORTS)
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001696 return mxser_ioctl_special(cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 if (cmd == MOXA_SET_OP_MODE || cmd == MOXA_GET_OP_MODE) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001699 int p;
1700 unsigned long opmode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 static unsigned char ModeMask[] = { 0xfc, 0xf3, 0xcf, 0x3f };
1702 int shiftbit;
1703 unsigned char val, mask;
1704
Jiri Slaby1c456072008-02-07 00:16:46 -08001705 p = tty->index % 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 if (cmd == MOXA_SET_OP_MODE) {
1707 if (get_user(opmode, (int __user *) argp))
1708 return -EFAULT;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001709 if (opmode != RS232_MODE &&
1710 opmode != RS485_2WIRE_MODE &&
1711 opmode != RS422_MODE &&
1712 opmode != RS485_4WIRE_MODE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 return -EFAULT;
Alan Cox9d6d1622008-04-30 00:53:20 -07001714 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 mask = ModeMask[p];
1716 shiftbit = p * 2;
1717 val = inb(info->opmode_ioaddr);
1718 val &= mask;
1719 val |= (opmode << shiftbit);
1720 outb(val, info->opmode_ioaddr);
Alan Cox9d6d1622008-04-30 00:53:20 -07001721 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 } else {
Alan Cox9d6d1622008-04-30 00:53:20 -07001723 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 shiftbit = p * 2;
1725 opmode = inb(info->opmode_ioaddr) >> shiftbit;
1726 opmode &= OP_MODE_MASK;
Alan Cox9d6d1622008-04-30 00:53:20 -07001727 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001728 if (put_user(opmode, (int __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 return -EFAULT;
1730 }
1731 return 0;
1732 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Jiri Slaby1c456072008-02-07 00:16:46 -08001734 if (cmd != TIOCGSERIAL && cmd != TIOCMIWAIT && cmd != TIOCGICOUNT &&
1735 test_bit(TTY_IO_ERROR, &tty->flags))
1736 return -EIO;
1737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 case TIOCGSERIAL:
Alan Cox9d6d1622008-04-30 00:53:20 -07001740 lock_kernel();
Alan Cox216ba022008-10-13 10:40:19 +01001741 retval = mxser_get_serial_info(tty, argp);
Alan Cox9d6d1622008-04-30 00:53:20 -07001742 unlock_kernel();
1743 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 case TIOCSSERIAL:
Alan Cox9d6d1622008-04-30 00:53:20 -07001745 lock_kernel();
Alan Cox216ba022008-10-13 10:40:19 +01001746 retval = mxser_set_serial_info(tty, argp);
Alan Cox9d6d1622008-04-30 00:53:20 -07001747 unlock_kernel();
1748 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 case TIOCSERGETLSR: /* Get line status register */
Alan Cox9d6d1622008-04-30 00:53:20 -07001750 return mxser_get_lsr_info(info, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 /*
1752 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1753 * - mask passed in arg for lines of interest
1754 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1755 * Caller should use TIOCGICOUNT to see which one it was
1756 */
Jiri Slabyfc838152007-04-23 14:41:04 -07001757 case TIOCMIWAIT:
1758 spin_lock_irqsave(&info->slock, flags);
1759 cnow = info->icount; /* note the counters on entry */
1760 spin_unlock_irqrestore(&info->slock, flags);
1761
Jiri Slaby1c456072008-02-07 00:16:46 -08001762 return wait_event_interruptible(info->delta_msr_wait,
1763 mxser_cflags_changed(info, arg, &cnow));
1764 /*
1765 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1766 * Return: write counters to the user passed counter struct
1767 * NB: both 1->0 and 0->1 transitions are counted except for
1768 * RI where only 0->1 is counted.
1769 */
Jiri Slaby41aee9a2008-07-25 01:48:19 -07001770 case TIOCGICOUNT: {
1771 struct serial_icounter_struct icnt = { 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 spin_lock_irqsave(&info->slock, flags);
1773 cnow = info->icount;
1774 spin_unlock_irqrestore(&info->slock, flags);
Jiri Slaby41aee9a2008-07-25 01:48:19 -07001775
1776 icnt.frame = cnow.frame;
1777 icnt.brk = cnow.brk;
1778 icnt.overrun = cnow.overrun;
1779 icnt.buf_overrun = cnow.buf_overrun;
1780 icnt.parity = cnow.parity;
1781 icnt.rx = cnow.rx;
1782 icnt.tx = cnow.tx;
1783 icnt.cts = cnow.cts;
1784 icnt.dsr = cnow.dsr;
1785 icnt.rng = cnow.rng;
1786 icnt.dcd = cnow.dcd;
1787
1788 return copy_to_user(argp, &icnt, sizeof(icnt)) ? -EFAULT : 0;
1789 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 case MOXA_HighSpeedOn:
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001791 return put_user(info->baud_base != 115200 ? 1 : 0, (int __user *)argp);
Jiri Slaby1c456072008-02-07 00:16:46 -08001792 case MOXA_SDS_RSTICOUNTER:
Alan Cox9d6d1622008-04-30 00:53:20 -07001793 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001794 info->mon_data.rxcnt = 0;
1795 info->mon_data.txcnt = 0;
Alan Cox9d6d1622008-04-30 00:53:20 -07001796 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 return 0;
1798
1799 case MOXA_ASPP_OQUEUE:{
Jiri Slaby1c456072008-02-07 00:16:46 -08001800 int len, lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
Alan Cox9d6d1622008-04-30 00:53:20 -07001802 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001803 len = mxser_chars_in_buffer(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001804 lsr = inb(info->ioaddr + UART_LSR) & UART_LSR_TEMT;
Jiri Slaby1c456072008-02-07 00:16:46 -08001805 len += (lsr ? 0 : 1);
Alan Cox9d6d1622008-04-30 00:53:20 -07001806 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
Jiri Slaby1c456072008-02-07 00:16:46 -08001808 return put_user(len, (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 }
Jiri Slaby1c456072008-02-07 00:16:46 -08001810 case MOXA_ASPP_MON: {
1811 int mcr, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
Alan Cox9d6d1622008-04-30 00:53:20 -07001813 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001814 status = mxser_get_msr(info->ioaddr, 1, tty->index);
Alan Cox216ba022008-10-13 10:40:19 +01001815 mxser_check_modem_status(tty, info, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
Jiri Slaby1c456072008-02-07 00:16:46 -08001817 mcr = inb(info->ioaddr + UART_MCR);
1818 if (mcr & MOXA_MUST_MCR_XON_FLAG)
1819 info->mon_data.hold_reason &= ~NPPI_NOTIFY_XOFFHOLD;
1820 else
1821 info->mon_data.hold_reason |= NPPI_NOTIFY_XOFFHOLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Jiri Slaby1c456072008-02-07 00:16:46 -08001823 if (mcr & MOXA_MUST_MCR_TX_XON)
1824 info->mon_data.hold_reason &= ~NPPI_NOTIFY_XOFFXENT;
1825 else
1826 info->mon_data.hold_reason |= NPPI_NOTIFY_XOFFXENT;
1827
Alan Cox216ba022008-10-13 10:40:19 +01001828 if (tty->hw_stopped)
Jiri Slaby1c456072008-02-07 00:16:46 -08001829 info->mon_data.hold_reason |= NPPI_NOTIFY_CTSHOLD;
1830 else
1831 info->mon_data.hold_reason &= ~NPPI_NOTIFY_CTSHOLD;
Alan Cox9d6d1622008-04-30 00:53:20 -07001832 unlock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08001833 if (copy_to_user(argp, &info->mon_data,
1834 sizeof(struct mxser_mon)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 return -EFAULT;
Jiri Slaby1c456072008-02-07 00:16:46 -08001836
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 return 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08001838 }
1839 case MOXA_ASPP_LSTATUS: {
1840 if (put_user(info->err_shadow, (unsigned char __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
Jiri Slaby1c456072008-02-07 00:16:46 -08001843 info->err_shadow = 0;
1844 return 0;
1845 }
1846 case MOXA_SET_BAUD_METHOD: {
1847 int method;
1848
1849 if (get_user(method, (int __user *)argp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 return -EFAULT;
Jiri Slaby1c456072008-02-07 00:16:46 -08001851 mxser_set_baud_method[tty->index] = method;
1852 return put_user(method, (int __user *)argp);
1853 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 default:
1855 return -ENOIOCTLCMD;
1856 }
1857 return 0;
1858}
1859
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860static void mxser_stoprx(struct tty_struct *tty)
1861{
Jiri Slaby1c456072008-02-07 00:16:46 -08001862 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
1864 info->ldisc_stop_rx = 1;
1865 if (I_IXOFF(tty)) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001866 if (info->board->chip_flag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 info->IER &= ~MOXA_MUST_RECV_ISR;
Jiri Slaby1c456072008-02-07 00:16:46 -08001868 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 info->x_char = STOP_CHAR(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08001871 outb(0, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001873 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 }
1875 }
1876
Alan Cox216ba022008-10-13 10:40:19 +01001877 if (tty->termios->c_cflag & CRTSCTS) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001878 info->MCR &= ~UART_MCR_RTS;
1879 outb(info->MCR, info->ioaddr + UART_MCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 }
1881}
1882
1883/*
1884 * This routine is called by the upper-layer tty layer to signal that
1885 * incoming characters should be throttled.
1886 */
1887static void mxser_throttle(struct tty_struct *tty)
1888{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 mxser_stoprx(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890}
1891
1892static void mxser_unthrottle(struct tty_struct *tty)
1893{
Jiri Slaby1c456072008-02-07 00:16:46 -08001894 struct mxser_port *info = tty->driver_data;
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07001895
Jiri Slaby1c456072008-02-07 00:16:46 -08001896 /* startrx */
1897 info->ldisc_stop_rx = 0;
1898 if (I_IXOFF(tty)) {
1899 if (info->x_char)
1900 info->x_char = 0;
1901 else {
1902 if (info->board->chip_flag) {
1903 info->IER |= MOXA_MUST_RECV_ISR;
1904 outb(info->IER, info->ioaddr + UART_IER);
1905 } else {
1906 info->x_char = START_CHAR(tty);
1907 outb(0, info->ioaddr + UART_IER);
1908 info->IER |= UART_IER_THRI;
1909 outb(info->IER, info->ioaddr + UART_IER);
1910 }
1911 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 }
1913
Alan Cox216ba022008-10-13 10:40:19 +01001914 if (tty->termios->c_cflag & CRTSCTS) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001915 info->MCR |= UART_MCR_RTS;
1916 outb(info->MCR, info->ioaddr + UART_MCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 }
1918}
1919
1920/*
1921 * mxser_stop() and mxser_start()
1922 *
1923 * This routines are called before setting or resetting tty->stopped.
1924 * They enable or disable transmitter interrupts, as necessary.
1925 */
1926static void mxser_stop(struct tty_struct *tty)
1927{
Jiri Slaby1c456072008-02-07 00:16:46 -08001928 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 unsigned long flags;
1930
1931 spin_lock_irqsave(&info->slock, flags);
1932 if (info->IER & UART_IER_THRI) {
1933 info->IER &= ~UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001934 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 }
1936 spin_unlock_irqrestore(&info->slock, flags);
1937}
1938
1939static void mxser_start(struct tty_struct *tty)
1940{
Jiri Slaby1c456072008-02-07 00:16:46 -08001941 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 unsigned long flags;
1943
1944 spin_lock_irqsave(&info->slock, flags);
Alan Cox0ad9e7d2008-07-16 21:56:10 +01001945 if (info->xmit_cnt && info->port.xmit_buf) {
Jiri Slaby1c456072008-02-07 00:16:46 -08001946 outb(info->IER & ~UART_IER_THRI, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 info->IER |= UART_IER_THRI;
Jiri Slaby1c456072008-02-07 00:16:46 -08001948 outb(info->IER, info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 }
1950 spin_unlock_irqrestore(&info->slock, flags);
1951}
1952
Jiri Slaby1c456072008-02-07 00:16:46 -08001953static void mxser_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
1954{
1955 struct mxser_port *info = tty->driver_data;
1956 unsigned long flags;
1957
1958 spin_lock_irqsave(&info->slock, flags);
Alan Cox216ba022008-10-13 10:40:19 +01001959 mxser_change_speed(tty, old_termios);
Jiri Slaby1c456072008-02-07 00:16:46 -08001960 spin_unlock_irqrestore(&info->slock, flags);
1961
1962 if ((old_termios->c_cflag & CRTSCTS) &&
1963 !(tty->termios->c_cflag & CRTSCTS)) {
1964 tty->hw_stopped = 0;
1965 mxser_start(tty);
1966 }
1967
1968 /* Handle sw stopped */
1969 if ((old_termios->c_iflag & IXON) &&
1970 !(tty->termios->c_iflag & IXON)) {
1971 tty->stopped = 0;
1972
1973 if (info->board->chip_flag) {
1974 spin_lock_irqsave(&info->slock, flags);
Christoph Hellwig148ff862008-04-30 00:54:29 -07001975 mxser_disable_must_rx_software_flow_control(
1976 info->ioaddr);
Jiri Slaby1c456072008-02-07 00:16:46 -08001977 spin_unlock_irqrestore(&info->slock, flags);
1978 }
1979
1980 mxser_start(tty);
1981 }
1982}
1983
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984/*
1985 * mxser_wait_until_sent() --- wait until the transmitter is empty
1986 */
1987static void mxser_wait_until_sent(struct tty_struct *tty, int timeout)
1988{
Jiri Slaby1c456072008-02-07 00:16:46 -08001989 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 unsigned long orig_jiffies, char_time;
1991 int lsr;
1992
1993 if (info->type == PORT_UNKNOWN)
1994 return;
1995
1996 if (info->xmit_fifo_size == 0)
1997 return; /* Just in case.... */
1998
1999 orig_jiffies = jiffies;
2000 /*
2001 * Set the check interval to be 1/5 of the estimated time to
2002 * send a single character, and make it at least 1. The check
2003 * interval should also be less than the timeout.
2004 *
2005 * Note: we have to use pretty tight timings here to satisfy
2006 * the NIST-PCTS.
2007 */
2008 char_time = (info->timeout - HZ / 50) / info->xmit_fifo_size;
2009 char_time = char_time / 5;
2010 if (char_time == 0)
2011 char_time = 1;
2012 if (timeout && timeout < char_time)
2013 char_time = timeout;
2014 /*
2015 * If the transmitter hasn't cleared in twice the approximate
2016 * amount of time to send the entire FIFO, it probably won't
2017 * ever clear. This assumes the UART isn't doing flow
2018 * control, which is currently the case. Hence, if it ever
2019 * takes longer than info->timeout, this is probably due to a
2020 * UART bug of some kind. So, we clamp the timeout parameter at
2021 * 2*info->timeout.
2022 */
2023 if (!timeout || timeout > 2 * info->timeout)
2024 timeout = 2 * info->timeout;
2025#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002026 printk(KERN_DEBUG "In rs_wait_until_sent(%d) check=%lu...",
2027 timeout, char_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 printk("jiff=%lu...", jiffies);
2029#endif
Alan Cox978e5952008-04-30 00:53:59 -07002030 lock_kernel();
Jiri Slaby1c456072008-02-07 00:16:46 -08002031 while (!((lsr = inb(info->ioaddr + UART_LSR)) & UART_LSR_TEMT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2033 printk("lsr = %d (jiff=%lu)...", lsr, jiffies);
2034#endif
Nishanth Aravamudanda4cd8d2005-09-10 00:27:30 -07002035 schedule_timeout_interruptible(char_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 if (signal_pending(current))
2037 break;
2038 if (timeout && time_after(jiffies, orig_jiffies + timeout))
2039 break;
2040 }
2041 set_current_state(TASK_RUNNING);
Alan Cox978e5952008-04-30 00:53:59 -07002042 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
2044#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
2045 printk("lsr = %d (jiff=%lu)...done\n", lsr, jiffies);
2046#endif
2047}
2048
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049/*
2050 * This routine is called by tty_hangup() when a hangup is signaled.
2051 */
Jiri Slaby1c456072008-02-07 00:16:46 -08002052static void mxser_hangup(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053{
Jiri Slaby1c456072008-02-07 00:16:46 -08002054 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
2056 mxser_flush_buffer(tty);
Alan Cox216ba022008-10-13 10:40:19 +01002057 mxser_shutdown(tty);
Alan Cox3b6826b2009-01-02 13:45:58 +00002058 tty_port_hangup(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059}
2060
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061/*
2062 * mxser_rs_break() --- routine which turns the break handling on or off
2063 */
Alan Cox9e989662008-07-22 11:18:03 +01002064static int mxser_rs_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065{
Jiri Slaby1c456072008-02-07 00:16:46 -08002066 struct mxser_port *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 unsigned long flags;
2068
2069 spin_lock_irqsave(&info->slock, flags);
2070 if (break_state == -1)
Jiri Slaby1c456072008-02-07 00:16:46 -08002071 outb(inb(info->ioaddr + UART_LCR) | UART_LCR_SBC,
2072 info->ioaddr + UART_LCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 else
Jiri Slaby1c456072008-02-07 00:16:46 -08002074 outb(inb(info->ioaddr + UART_LCR) & ~UART_LCR_SBC,
2075 info->ioaddr + UART_LCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 spin_unlock_irqrestore(&info->slock, flags);
Alan Cox9e989662008-07-22 11:18:03 +01002077 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078}
2079
Alan Cox216ba022008-10-13 10:40:19 +01002080static void mxser_receive_chars(struct tty_struct *tty,
2081 struct mxser_port *port, int *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 unsigned char ch, gdl;
2084 int ignored = 0;
2085 int cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 int recv_room;
2087 int max = 256;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Alan Cox33f0f882006-01-09 20:54:13 -08002089 recv_room = tty->receive_room;
Alan Cox216ba022008-10-13 10:40:19 +01002090 if (recv_room == 0 && !port->ldisc_stop_rx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 mxser_stoprx(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08002092 if (port->board->chip_flag != MOXA_OTHER_UART) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
Jiri Slaby1c456072008-02-07 00:16:46 -08002094 if (*status & UART_LSR_SPECIAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 goto intr_old;
Jiri Slaby1c456072008-02-07 00:16:46 -08002096 if (port->board->chip_flag == MOXA_MUST_MU860_HWID &&
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002097 (*status & MOXA_MUST_LSR_RERR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 goto intr_old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 if (*status & MOXA_MUST_LSR_RERR)
2100 goto intr_old;
2101
Jiri Slaby1c456072008-02-07 00:16:46 -08002102 gdl = inb(port->ioaddr + MOXA_MUST_GDL_REGISTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
Jiri Slaby1c456072008-02-07 00:16:46 -08002104 if (port->board->chip_flag == MOXA_MUST_MU150_HWID)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 gdl &= MOXA_MUST_GDL_MASK;
2106 if (gdl >= recv_room) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002107 if (!port->ldisc_stop_rx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 mxser_stoprx(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 }
2110 while (gdl--) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002111 ch = inb(port->ioaddr + UART_RX);
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002112 tty_insert_flip_char(tty, ch, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 }
2115 goto end_intr;
2116 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002117intr_old:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
2119 do {
2120 if (max-- < 0)
2121 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
Jiri Slaby1c456072008-02-07 00:16:46 -08002123 ch = inb(port->ioaddr + UART_RX);
2124 if (port->board->chip_flag && (*status & UART_LSR_OE))
2125 outb(0x23, port->ioaddr + UART_FCR);
2126 *status &= port->read_status_mask;
2127 if (*status & port->ignore_status_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 if (++ignored > 100)
2129 break;
2130 } else {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002131 char flag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 if (*status & UART_LSR_SPECIAL) {
2133 if (*status & UART_LSR_BI) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002134 flag = TTY_BREAK;
Jiri Slaby1c456072008-02-07 00:16:46 -08002135 port->icount.brk++;
2136
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002137 if (port->port.flags & ASYNC_SAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 do_SAK(tty);
2139 } else if (*status & UART_LSR_PE) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002140 flag = TTY_PARITY;
Jiri Slaby1c456072008-02-07 00:16:46 -08002141 port->icount.parity++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 } else if (*status & UART_LSR_FE) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002143 flag = TTY_FRAME;
Jiri Slaby1c456072008-02-07 00:16:46 -08002144 port->icount.frame++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 } else if (*status & UART_LSR_OE) {
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002146 flag = TTY_OVERRUN;
Jiri Slaby1c456072008-02-07 00:16:46 -08002147 port->icount.overrun++;
2148 } else
2149 flag = TTY_BREAK;
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002150 }
2151 tty_insert_flip_char(tty, ch, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 cnt++;
2153 if (cnt >= recv_room) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002154 if (!port->ldisc_stop_rx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 mxser_stoprx(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 break;
2157 }
2158
2159 }
2160
Jiri Slaby1c456072008-02-07 00:16:46 -08002161 if (port->board->chip_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
Jiri Slaby1c456072008-02-07 00:16:46 -08002164 *status = inb(port->ioaddr + UART_LSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 } while (*status & UART_LSR_DR);
2166
Jiri Slaby1c456072008-02-07 00:16:46 -08002167end_intr:
Alan Cox216ba022008-10-13 10:40:19 +01002168 mxvar_log.rxcnt[tty->index] += cnt;
Jiri Slaby1c456072008-02-07 00:16:46 -08002169 port->mon_data.rxcnt += cnt;
2170 port->mon_data.up_rxcnt += cnt;
Denis Vlasenko3399ba52005-06-06 13:35:55 -07002171
Jiri Slaby1c456072008-02-07 00:16:46 -08002172 /*
2173 * We are called from an interrupt context with &port->slock
2174 * being held. Drop it temporarily in order to prevent
2175 * recursive locking.
2176 */
2177 spin_unlock(&port->slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 tty_flip_buffer_push(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08002179 spin_lock(&port->slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180}
2181
Alan Cox216ba022008-10-13 10:40:19 +01002182static void mxser_transmit_chars(struct tty_struct *tty, struct mxser_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183{
2184 int count, cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Jiri Slaby1c456072008-02-07 00:16:46 -08002186 if (port->x_char) {
2187 outb(port->x_char, port->ioaddr + UART_TX);
2188 port->x_char = 0;
Alan Cox216ba022008-10-13 10:40:19 +01002189 mxvar_log.txcnt[tty->index]++;
Jiri Slaby1c456072008-02-07 00:16:46 -08002190 port->mon_data.txcnt++;
2191 port->mon_data.up_txcnt++;
2192 port->icount.tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 return;
2194 }
2195
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002196 if (port->port.xmit_buf == NULL)
Jiri Slaby1c456072008-02-07 00:16:46 -08002197 return;
2198
Alan Cox216ba022008-10-13 10:40:19 +01002199 if (port->xmit_cnt <= 0 || tty->stopped ||
2200 (tty->hw_stopped &&
Jiri Slaby1c456072008-02-07 00:16:46 -08002201 (port->type != PORT_16550A) &&
2202 (!port->board->chip_flag))) {
2203 port->IER &= ~UART_IER_THRI;
2204 outb(port->IER, port->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 return;
2206 }
2207
Jiri Slaby1c456072008-02-07 00:16:46 -08002208 cnt = port->xmit_cnt;
2209 count = port->xmit_fifo_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 do {
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002211 outb(port->port.xmit_buf[port->xmit_tail++],
Jiri Slaby1c456072008-02-07 00:16:46 -08002212 port->ioaddr + UART_TX);
2213 port->xmit_tail = port->xmit_tail & (SERIAL_XMIT_SIZE - 1);
2214 if (--port->xmit_cnt <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 break;
2216 } while (--count > 0);
Alan Cox216ba022008-10-13 10:40:19 +01002217 mxvar_log.txcnt[tty->index] += (cnt - port->xmit_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
Jiri Slaby1c456072008-02-07 00:16:46 -08002219 port->mon_data.txcnt += (cnt - port->xmit_cnt);
2220 port->mon_data.up_txcnt += (cnt - port->xmit_cnt);
2221 port->icount.tx += (cnt - port->xmit_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
Alan Cox216ba022008-10-13 10:40:19 +01002223 if (port->xmit_cnt < WAKEUP_CHARS && tty)
2224 tty_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
Jiri Slaby1c456072008-02-07 00:16:46 -08002226 if (port->xmit_cnt <= 0) {
2227 port->IER &= ~UART_IER_THRI;
2228 outb(port->IER, port->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230}
2231
2232/*
Jiri Slaby1c456072008-02-07 00:16:46 -08002233 * This is the serial driver's generic interrupt routine
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 */
Jiri Slaby1c456072008-02-07 00:16:46 -08002235static irqreturn_t mxser_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236{
Jiri Slaby1c456072008-02-07 00:16:46 -08002237 int status, iir, i;
2238 struct mxser_board *brd = NULL;
2239 struct mxser_port *port;
2240 int max, irqbits, bits, msr;
2241 unsigned int int_cnt, pass_counter = 0;
2242 int handled = IRQ_NONE;
Alan Cox216ba022008-10-13 10:40:19 +01002243 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
Jiri Slaby1c456072008-02-07 00:16:46 -08002245 for (i = 0; i < MXSER_BOARDS; i++)
2246 if (dev_id == &mxser_boards[i]) {
2247 brd = dev_id;
2248 break;
2249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
Jiri Slaby1c456072008-02-07 00:16:46 -08002251 if (i == MXSER_BOARDS)
2252 goto irq_stop;
2253 if (brd == NULL)
2254 goto irq_stop;
2255 max = brd->info->nports;
2256 while (pass_counter++ < MXSER_ISR_PASS_LIMIT) {
2257 irqbits = inb(brd->vector) & brd->vector_mask;
2258 if (irqbits == brd->vector_mask)
2259 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
Jiri Slaby1c456072008-02-07 00:16:46 -08002261 handled = IRQ_HANDLED;
2262 for (i = 0, bits = 1; i < max; i++, irqbits |= bits, bits <<= 1) {
2263 if (irqbits == brd->vector_mask)
2264 break;
2265 if (bits & irqbits)
2266 continue;
2267 port = &brd->ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
Jiri Slaby1c456072008-02-07 00:16:46 -08002269 int_cnt = 0;
2270 spin_lock(&port->slock);
2271 do {
2272 iir = inb(port->ioaddr + UART_IIR);
2273 if (iir & UART_IIR_NO_INT)
2274 break;
2275 iir &= MOXA_MUST_IIR_MASK;
Alan Cox216ba022008-10-13 10:40:19 +01002276 tty = tty_port_tty_get(&port->port);
2277 if (!tty ||
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002278 (port->port.flags & ASYNC_CLOSING) ||
2279 !(port->port.flags &
Jiri Slaby1c456072008-02-07 00:16:46 -08002280 ASYNC_INITIALIZED)) {
2281 status = inb(port->ioaddr + UART_LSR);
2282 outb(0x27, port->ioaddr + UART_FCR);
2283 inb(port->ioaddr + UART_MSR);
Alan Cox216ba022008-10-13 10:40:19 +01002284 tty_kref_put(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08002285 break;
2286 }
2287
2288 status = inb(port->ioaddr + UART_LSR);
2289
2290 if (status & UART_LSR_PE)
2291 port->err_shadow |= NPPI_NOTIFY_PARITY;
2292 if (status & UART_LSR_FE)
2293 port->err_shadow |= NPPI_NOTIFY_FRAMING;
2294 if (status & UART_LSR_OE)
2295 port->err_shadow |=
2296 NPPI_NOTIFY_HW_OVERRUN;
2297 if (status & UART_LSR_BI)
2298 port->err_shadow |= NPPI_NOTIFY_BREAK;
2299
2300 if (port->board->chip_flag) {
2301 if (iir == MOXA_MUST_IIR_GDA ||
2302 iir == MOXA_MUST_IIR_RDA ||
2303 iir == MOXA_MUST_IIR_RTO ||
2304 iir == MOXA_MUST_IIR_LSR)
Alan Cox216ba022008-10-13 10:40:19 +01002305 mxser_receive_chars(tty, port,
Jiri Slaby1c456072008-02-07 00:16:46 -08002306 &status);
2307
2308 } else {
2309 status &= port->read_status_mask;
2310 if (status & UART_LSR_DR)
Alan Cox216ba022008-10-13 10:40:19 +01002311 mxser_receive_chars(tty, port,
Jiri Slaby1c456072008-02-07 00:16:46 -08002312 &status);
2313 }
2314 msr = inb(port->ioaddr + UART_MSR);
2315 if (msr & UART_MSR_ANY_DELTA)
Alan Cox216ba022008-10-13 10:40:19 +01002316 mxser_check_modem_status(tty, port, msr);
Jiri Slaby1c456072008-02-07 00:16:46 -08002317
2318 if (port->board->chip_flag) {
2319 if (iir == 0x02 && (status &
2320 UART_LSR_THRE))
Alan Cox216ba022008-10-13 10:40:19 +01002321 mxser_transmit_chars(tty, port);
Jiri Slaby1c456072008-02-07 00:16:46 -08002322 } else {
2323 if (status & UART_LSR_THRE)
Alan Cox216ba022008-10-13 10:40:19 +01002324 mxser_transmit_chars(tty, port);
Jiri Slaby1c456072008-02-07 00:16:46 -08002325 }
Alan Cox216ba022008-10-13 10:40:19 +01002326 tty_kref_put(tty);
Jiri Slaby1c456072008-02-07 00:16:46 -08002327 } while (int_cnt++ < MXSER_ISR_PASS_LIMIT);
2328 spin_unlock(&port->slock);
2329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 }
2331
Jiri Slaby1c456072008-02-07 00:16:46 -08002332irq_stop:
2333 return handled;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334}
2335
Jiri Slaby1c456072008-02-07 00:16:46 -08002336static const struct tty_operations mxser_ops = {
2337 .open = mxser_open,
2338 .close = mxser_close,
2339 .write = mxser_write,
2340 .put_char = mxser_put_char,
2341 .flush_chars = mxser_flush_chars,
2342 .write_room = mxser_write_room,
2343 .chars_in_buffer = mxser_chars_in_buffer,
2344 .flush_buffer = mxser_flush_buffer,
2345 .ioctl = mxser_ioctl,
2346 .throttle = mxser_throttle,
2347 .unthrottle = mxser_unthrottle,
2348 .set_termios = mxser_set_termios,
2349 .stop = mxser_stop,
2350 .start = mxser_start,
2351 .hangup = mxser_hangup,
2352 .break_ctl = mxser_rs_break,
2353 .wait_until_sent = mxser_wait_until_sent,
2354 .tiocmget = mxser_tiocmget,
2355 .tiocmset = mxser_tiocmset,
2356};
2357
Alan Cox31f35932009-01-02 13:45:05 +00002358struct tty_port_operations mxser_port_ops = {
2359 .carrier_raised = mxser_carrier_raised,
Alan Cox5d951fb2009-01-02 13:45:19 +00002360 .raise_dtr_rts = mxser_raise_dtr_rts,
Alan Cox31f35932009-01-02 13:45:05 +00002361};
2362
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363/*
Jiri Slaby1c456072008-02-07 00:16:46 -08002364 * The MOXA Smartio/Industio serial driver boot-time initialization code!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 */
Jiri Slaby1c456072008-02-07 00:16:46 -08002366
2367static void mxser_release_res(struct mxser_board *brd, struct pci_dev *pdev,
2368 unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369{
Jiri Slaby1c456072008-02-07 00:16:46 -08002370 if (irq)
2371 free_irq(brd->irq, brd);
2372 if (pdev != NULL) { /* PCI */
2373#ifdef CONFIG_PCI
2374 pci_release_region(pdev, 2);
2375 pci_release_region(pdev, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 } else {
Jiri Slaby1c456072008-02-07 00:16:46 -08002378 release_region(brd->ports[0].ioaddr, 8 * brd->info->nports);
2379 release_region(brd->vector, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381}
2382
Jiri Slaby1c456072008-02-07 00:16:46 -08002383static int __devinit mxser_initbrd(struct mxser_board *brd,
2384 struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385{
Jiri Slaby1c456072008-02-07 00:16:46 -08002386 struct mxser_port *info;
2387 unsigned int i;
2388 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389
Jiri Slaby83766bc2008-07-25 01:48:21 -07002390 printk(KERN_INFO "mxser: max. baud rate = %d bps\n",
2391 brd->ports[0].max_baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
Jiri Slaby1c456072008-02-07 00:16:46 -08002393 for (i = 0; i < brd->info->nports; i++) {
2394 info = &brd->ports[i];
Alan Cox44b7d1b2008-07-16 21:57:18 +01002395 tty_port_init(&info->port);
Alan Cox31f35932009-01-02 13:45:05 +00002396 info->port.ops = &mxser_port_ops;
Jiri Slaby1c456072008-02-07 00:16:46 -08002397 info->board = brd;
2398 info->stop_rx = 0;
2399 info->ldisc_stop_rx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400
Jiri Slaby1c456072008-02-07 00:16:46 -08002401 /* Enhance mode enabled here */
2402 if (brd->chip_flag != MOXA_OTHER_UART)
Christoph Hellwig148ff862008-04-30 00:54:29 -07002403 mxser_enable_must_enchance_mode(info->ioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
Alan Cox0ad9e7d2008-07-16 21:56:10 +01002405 info->port.flags = ASYNC_SHARE_IRQ;
Jiri Slaby1c456072008-02-07 00:16:46 -08002406 info->type = brd->uart_type;
2407
2408 process_txrx_fifo(info);
2409
2410 info->custom_divisor = info->baud_base * 16;
Alan Cox44b7d1b2008-07-16 21:57:18 +01002411 info->port.close_delay = 5 * HZ / 10;
2412 info->port.closing_wait = 30 * HZ;
Jiri Slaby1c456072008-02-07 00:16:46 -08002413 info->normal_termios = mxvar_sdriver->init_termios;
Jiri Slaby1c456072008-02-07 00:16:46 -08002414 init_waitqueue_head(&info->delta_msr_wait);
2415 memset(&info->mon_data, 0, sizeof(struct mxser_mon));
2416 info->err_shadow = 0;
2417 spin_lock_init(&info->slock);
2418
2419 /* before set INT ISR, disable all int */
2420 outb(inb(info->ioaddr + UART_IER) & 0xf0,
2421 info->ioaddr + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 }
2423
Jiri Slaby1c456072008-02-07 00:16:46 -08002424 retval = request_irq(brd->irq, mxser_interrupt, IRQF_SHARED, "mxser",
2425 brd);
2426 if (retval) {
2427 printk(KERN_ERR "Board %s: Request irq failed, IRQ (%d) may "
2428 "conflict with another device.\n",
2429 brd->info->name, brd->irq);
2430 /* We hold resources, we need to release them. */
2431 mxser_release_res(brd, pdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 }
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002433 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434}
2435
Jiri Slaby1c456072008-02-07 00:16:46 -08002436static int __init mxser_get_ISA_conf(int cap, struct mxser_board *brd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437{
2438 int id, i, bits;
2439 unsigned short regs[16], irq;
2440 unsigned char scratch, scratch2;
2441
Jiri Slaby1c456072008-02-07 00:16:46 -08002442 brd->chip_flag = MOXA_OTHER_UART;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
2444 id = mxser_read_register(cap, regs);
Jiri Slaby1c456072008-02-07 00:16:46 -08002445 switch (id) {
2446 case C168_ASIC_ID:
2447 brd->info = &mxser_cards[0];
2448 break;
2449 case C104_ASIC_ID:
2450 brd->info = &mxser_cards[1];
2451 break;
2452 case CI104J_ASIC_ID:
2453 brd->info = &mxser_cards[2];
2454 break;
2455 case C102_ASIC_ID:
2456 brd->info = &mxser_cards[5];
2457 break;
2458 case CI132_ASIC_ID:
2459 brd->info = &mxser_cards[6];
2460 break;
2461 case CI134_ASIC_ID:
2462 brd->info = &mxser_cards[7];
2463 break;
2464 default:
Jesper Juhl8ea2c2e2006-06-25 05:47:54 -07002465 return 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08002466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
2468 irq = 0;
Jiri Slaby1c456072008-02-07 00:16:46 -08002469 /* some ISA cards have 2 ports, but we want to see them as 4-port (why?)
2470 Flag-hack checks if configuration should be read as 2-port here. */
2471 if (brd->info->nports == 2 || (brd->info->flags & MXSER_HAS2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 irq = regs[9] & 0xF000;
2473 irq = irq | (irq >> 4);
2474 if (irq != (regs[9] & 0xFF00))
Jiri Slaby83766bc2008-07-25 01:48:21 -07002475 goto err_irqconflict;
Jiri Slaby1c456072008-02-07 00:16:46 -08002476 } else if (brd->info->nports == 4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 irq = regs[9] & 0xF000;
2478 irq = irq | (irq >> 4);
2479 irq = irq | (irq >> 8);
2480 if (irq != regs[9])
Jiri Slaby83766bc2008-07-25 01:48:21 -07002481 goto err_irqconflict;
Jiri Slaby1c456072008-02-07 00:16:46 -08002482 } else if (brd->info->nports == 8) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 irq = regs[9] & 0xF000;
2484 irq = irq | (irq >> 4);
2485 irq = irq | (irq >> 8);
2486 if ((irq != regs[9]) || (irq != regs[10]))
Jiri Slaby83766bc2008-07-25 01:48:21 -07002487 goto err_irqconflict;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 }
2489
Jiri Slaby83766bc2008-07-25 01:48:21 -07002490 if (!irq) {
2491 printk(KERN_ERR "mxser: interrupt number unset\n");
2492 return -EIO;
2493 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002494 brd->irq = ((int)(irq & 0xF000) >> 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 for (i = 0; i < 8; i++)
Jiri Slaby1c456072008-02-07 00:16:46 -08002496 brd->ports[i].ioaddr = (int) regs[i + 1] & 0xFFF8;
Jiri Slaby83766bc2008-07-25 01:48:21 -07002497 if ((regs[12] & 0x80) == 0) {
2498 printk(KERN_ERR "mxser: invalid interrupt vector\n");
2499 return -EIO;
2500 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002501 brd->vector = (int)regs[11]; /* interrupt vector */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 if (id == 1)
Jiri Slaby1c456072008-02-07 00:16:46 -08002503 brd->vector_mask = 0x00FF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 else
Jiri Slaby1c456072008-02-07 00:16:46 -08002505 brd->vector_mask = 0x000F;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 for (i = 7, bits = 0x0100; i >= 0; i--, bits <<= 1) {
2507 if (regs[12] & bits) {
Jiri Slaby1c456072008-02-07 00:16:46 -08002508 brd->ports[i].baud_base = 921600;
2509 brd->ports[i].max_baud = 921600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 } else {
Jiri Slaby1c456072008-02-07 00:16:46 -08002511 brd->ports[i].baud_base = 115200;
2512 brd->ports[i].max_baud = 115200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 }
2514 }
2515 scratch2 = inb(cap + UART_LCR) & (~UART_LCR_DLAB);
2516 outb(scratch2 | UART_LCR_DLAB, cap + UART_LCR);
2517 outb(0, cap + UART_EFR); /* EFR is the same as FCR */
2518 outb(scratch2, cap + UART_LCR);
2519 outb(UART_FCR_ENABLE_FIFO, cap + UART_FCR);
2520 scratch = inb(cap + UART_IIR);
2521
2522 if (scratch & 0xC0)
Jiri Slaby1c456072008-02-07 00:16:46 -08002523 brd->uart_type = PORT_16550A;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 else
Jiri Slaby1c456072008-02-07 00:16:46 -08002525 brd->uart_type = PORT_16450;
2526 if (!request_region(brd->ports[0].ioaddr, 8 * brd->info->nports,
Jiri Slaby83766bc2008-07-25 01:48:21 -07002527 "mxser(IO)")) {
2528 printk(KERN_ERR "mxser: can't request ports I/O region: "
2529 "0x%.8lx-0x%.8lx\n",
2530 brd->ports[0].ioaddr, brd->ports[0].ioaddr +
2531 8 * brd->info->nports - 1);
2532 return -EIO;
2533 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002534 if (!request_region(brd->vector, 1, "mxser(vector)")) {
2535 release_region(brd->ports[0].ioaddr, 8 * brd->info->nports);
Jiri Slaby83766bc2008-07-25 01:48:21 -07002536 printk(KERN_ERR "mxser: can't request interrupt vector region: "
2537 "0x%.8lx-0x%.8lx\n",
2538 brd->ports[0].ioaddr, brd->ports[0].ioaddr +
2539 8 * brd->info->nports - 1);
2540 return -EIO;
Jiri Slaby1c456072008-02-07 00:16:46 -08002541 }
2542 return brd->info->nports;
Jiri Slaby83766bc2008-07-25 01:48:21 -07002543
2544err_irqconflict:
2545 printk(KERN_ERR "mxser: invalid interrupt number\n");
2546 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547}
2548
Jiri Slaby1c456072008-02-07 00:16:46 -08002549static int __devinit mxser_probe(struct pci_dev *pdev,
2550 const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551{
Jiri Slaby1c456072008-02-07 00:16:46 -08002552#ifdef CONFIG_PCI
2553 struct mxser_board *brd;
2554 unsigned int i, j;
2555 unsigned long ioaddress;
2556 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
Jiri Slaby1c456072008-02-07 00:16:46 -08002558 for (i = 0; i < MXSER_BOARDS; i++)
2559 if (mxser_boards[i].info == NULL)
2560 break;
2561
2562 if (i >= MXSER_BOARDS) {
Jiri Slaby83766bc2008-07-25 01:48:21 -07002563 dev_err(&pdev->dev, "too many boards found (maximum %d), board "
2564 "not configured\n", MXSER_BOARDS);
Jiri Slaby1c456072008-02-07 00:16:46 -08002565 goto err;
2566 }
2567
2568 brd = &mxser_boards[i];
2569 brd->idx = i * MXSER_PORTS_PER_BOARD;
Jiri Slaby83766bc2008-07-25 01:48:21 -07002570 dev_info(&pdev->dev, "found MOXA %s board (BusNo=%d, DevNo=%d)\n",
Jiri Slaby1c456072008-02-07 00:16:46 -08002571 mxser_cards[ent->driver_data].name,
2572 pdev->bus->number, PCI_SLOT(pdev->devfn));
2573
2574 retval = pci_enable_device(pdev);
2575 if (retval) {
Jiri Slaby83766bc2008-07-25 01:48:21 -07002576 dev_err(&pdev->dev, "PCI enable failed\n");
Jiri Slaby1c456072008-02-07 00:16:46 -08002577 goto err;
2578 }
2579
2580 /* io address */
2581 ioaddress = pci_resource_start(pdev, 2);
2582 retval = pci_request_region(pdev, 2, "mxser(IO)");
2583 if (retval)
2584 goto err;
2585
2586 brd->info = &mxser_cards[ent->driver_data];
2587 for (i = 0; i < brd->info->nports; i++)
2588 brd->ports[i].ioaddr = ioaddress + 8 * i;
2589
2590 /* vector */
2591 ioaddress = pci_resource_start(pdev, 3);
2592 retval = pci_request_region(pdev, 3, "mxser(vector)");
2593 if (retval)
2594 goto err_relio;
2595 brd->vector = ioaddress;
2596
2597 /* irq */
2598 brd->irq = pdev->irq;
2599
2600 brd->chip_flag = CheckIsMoxaMust(brd->ports[0].ioaddr);
2601 brd->uart_type = PORT_16550A;
2602 brd->vector_mask = 0;
2603
2604 for (i = 0; i < brd->info->nports; i++) {
2605 for (j = 0; j < UART_INFO_NUM; j++) {
2606 if (Gpci_uart_info[j].type == brd->chip_flag) {
2607 brd->ports[i].max_baud =
2608 Gpci_uart_info[j].max_baud;
2609
2610 /* exception....CP-102 */
2611 if (brd->info->flags & MXSER_HIGHBAUD)
2612 brd->ports[i].max_baud = 921600;
2613 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 }
2615 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002616 }
2617
2618 if (brd->chip_flag == MOXA_MUST_MU860_HWID) {
2619 for (i = 0; i < brd->info->nports; i++) {
2620 if (i < 4)
2621 brd->ports[i].opmode_ioaddr = ioaddress + 4;
2622 else
2623 brd->ports[i].opmode_ioaddr = ioaddress + 0x0c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002625 outb(0, ioaddress + 4); /* default set to RS232 mode */
2626 outb(0, ioaddress + 0x0c); /* default set to RS232 mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002628
2629 for (i = 0; i < brd->info->nports; i++) {
2630 brd->vector_mask |= (1 << i);
2631 brd->ports[i].baud_base = 921600;
2632 }
2633
2634 /* mxser_initbrd will hook ISR. */
2635 retval = mxser_initbrd(brd, pdev);
2636 if (retval)
2637 goto err_null;
2638
2639 for (i = 0; i < brd->info->nports; i++)
2640 tty_register_device(mxvar_sdriver, brd->idx + i, &pdev->dev);
2641
2642 pci_set_drvdata(pdev, brd);
2643
2644 return 0;
2645err_relio:
2646 pci_release_region(pdev, 2);
2647err_null:
2648 brd->info = NULL;
2649err:
2650 return retval;
2651#else
2652 return -ENODEV;
2653#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654}
2655
Jiri Slaby1c456072008-02-07 00:16:46 -08002656static void __devexit mxser_remove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657{
Jiri Slaby1c456072008-02-07 00:16:46 -08002658 struct mxser_board *brd = pci_get_drvdata(pdev);
2659 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
Jiri Slaby1c456072008-02-07 00:16:46 -08002661 for (i = 0; i < brd->info->nports; i++)
2662 tty_unregister_device(mxvar_sdriver, brd->idx + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663
Jiri Slaby1c456072008-02-07 00:16:46 -08002664 mxser_release_res(brd, pdev, 1);
2665 brd->info = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666}
2667
Jiri Slaby1c456072008-02-07 00:16:46 -08002668static struct pci_driver mxser_driver = {
2669 .name = "mxser",
2670 .id_table = mxser_pcibrds,
2671 .probe = mxser_probe,
2672 .remove = __devexit_p(mxser_remove)
2673};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
Jiri Slaby1c456072008-02-07 00:16:46 -08002675static int __init mxser_module_init(void)
2676{
2677 struct mxser_board *brd;
Jiri Slaby1df00922008-07-25 01:48:22 -07002678 unsigned int b, i, m;
2679 int retval;
Jiri Slaby1c456072008-02-07 00:16:46 -08002680
Jiri Slaby1c456072008-02-07 00:16:46 -08002681 mxvar_sdriver = alloc_tty_driver(MXSER_PORTS + 1);
2682 if (!mxvar_sdriver)
2683 return -ENOMEM;
2684
2685 printk(KERN_INFO "MOXA Smartio/Industio family driver version %s\n",
2686 MXSER_VERSION);
2687
2688 /* Initialize the tty_driver structure */
2689 mxvar_sdriver->owner = THIS_MODULE;
2690 mxvar_sdriver->magic = TTY_DRIVER_MAGIC;
2691 mxvar_sdriver->name = "ttyMI";
2692 mxvar_sdriver->major = ttymajor;
2693 mxvar_sdriver->minor_start = 0;
2694 mxvar_sdriver->num = MXSER_PORTS + 1;
2695 mxvar_sdriver->type = TTY_DRIVER_TYPE_SERIAL;
2696 mxvar_sdriver->subtype = SERIAL_TYPE_NORMAL;
2697 mxvar_sdriver->init_termios = tty_std_termios;
2698 mxvar_sdriver->init_termios.c_cflag = B9600|CS8|CREAD|HUPCL|CLOCAL;
2699 mxvar_sdriver->flags = TTY_DRIVER_REAL_RAW|TTY_DRIVER_DYNAMIC_DEV;
2700 tty_set_operations(mxvar_sdriver, &mxser_ops);
2701
2702 retval = tty_register_driver(mxvar_sdriver);
2703 if (retval) {
2704 printk(KERN_ERR "Couldn't install MOXA Smartio/Industio family "
2705 "tty driver !\n");
2706 goto err_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 }
Jiri Slaby1c456072008-02-07 00:16:46 -08002708
Jiri Slaby1c456072008-02-07 00:16:46 -08002709 /* Start finding ISA boards here */
Jiri Slaby1df00922008-07-25 01:48:22 -07002710 for (m = 0, b = 0; b < MXSER_BOARDS; b++) {
2711 if (!ioaddr[b])
2712 continue;
Jiri Slaby1c456072008-02-07 00:16:46 -08002713
Jiri Slaby1df00922008-07-25 01:48:22 -07002714 brd = &mxser_boards[m];
2715 retval = mxser_get_ISA_conf(!ioaddr[b], brd);
2716 if (retval <= 0) {
2717 brd->info = NULL;
2718 continue;
Jiri Slaby1c456072008-02-07 00:16:46 -08002719 }
2720
Jiri Slaby1df00922008-07-25 01:48:22 -07002721 printk(KERN_INFO "mxser: found MOXA %s board (CAP=0x%lx)\n",
2722 brd->info->name, ioaddr[b]);
2723
2724 /* mxser_initbrd will hook ISR. */
2725 if (mxser_initbrd(brd, NULL) < 0) {
2726 brd->info = NULL;
2727 continue;
2728 }
2729
2730 brd->idx = m * MXSER_PORTS_PER_BOARD;
2731 for (i = 0; i < brd->info->nports; i++)
2732 tty_register_device(mxvar_sdriver, brd->idx + i, NULL);
2733
2734 m++;
2735 }
2736
Jiri Slaby1c456072008-02-07 00:16:46 -08002737 retval = pci_register_driver(&mxser_driver);
2738 if (retval) {
Jiri Slaby83766bc2008-07-25 01:48:21 -07002739 printk(KERN_ERR "mxser: can't register pci driver\n");
Jiri Slaby1c456072008-02-07 00:16:46 -08002740 if (!m) {
2741 retval = -ENODEV;
2742 goto err_unr;
2743 } /* else: we have some ISA cards under control */
2744 }
2745
Jiri Slaby1c456072008-02-07 00:16:46 -08002746 return 0;
2747err_unr:
2748 tty_unregister_driver(mxvar_sdriver);
2749err_put:
2750 put_tty_driver(mxvar_sdriver);
2751 return retval;
2752}
2753
2754static void __exit mxser_module_exit(void)
2755{
2756 unsigned int i, j;
2757
Jiri Slaby1c456072008-02-07 00:16:46 -08002758 pci_unregister_driver(&mxser_driver);
2759
2760 for (i = 0; i < MXSER_BOARDS; i++) /* ISA remains */
2761 if (mxser_boards[i].info != NULL)
2762 for (j = 0; j < mxser_boards[i].info->nports; j++)
2763 tty_unregister_device(mxvar_sdriver,
2764 mxser_boards[i].idx + j);
2765 tty_unregister_driver(mxvar_sdriver);
2766 put_tty_driver(mxvar_sdriver);
2767
2768 for (i = 0; i < MXSER_BOARDS; i++)
2769 if (mxser_boards[i].info != NULL)
2770 mxser_release_res(&mxser_boards[i], NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771}
2772
2773module_init(mxser_module_init);
2774module_exit(mxser_module_exit);