blob: e07d7925c300196484c48dc73de8170ddf3f0a23 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 Copyright (C) 1996 Digi International.
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07003
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 For technical support please email digiLinux@dgii.com or
5 call Digi tech support at (612) 912-3456
6
Alan Coxf2cf8e22005-09-06 15:16:44 -07007 ** This driver is no longer supported by Digi **
8
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07009 Much of this design and code came from epca.c which was
10 copyright (C) 1994, 1995 Troy De Jongh, and subsquently
11 modified by David Nugent, Christoph Lameter, Mike McLagan.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -070013 This program is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2 of the License, or
16 (at your option) any later version.
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -070018 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -070023 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070027/* See README.epca for change history --DAT*/
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/module.h>
30#include <linux/kernel.h>
31#include <linux/types.h>
32#include <linux/init.h>
33#include <linux/serial.h>
34#include <linux/delay.h>
35#include <linux/ctype.h>
36#include <linux/tty.h>
37#include <linux/tty_flip.h>
38#include <linux/slab.h>
39#include <linux/ioport.h>
40#include <linux/interrupt.h>
Alan Cox191260a2008-04-30 00:54:16 -070041#include <linux/uaccess.h>
42#include <linux/io.h>
Alan Coxf2cf8e22005-09-06 15:16:44 -070043#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/pci.h>
45#include "digiPCI.h"
Alan Coxf2cf8e22005-09-06 15:16:44 -070046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#include "digi1.h"
49#include "digiFep1.h"
50#include "epca.h"
51#include "epcaconfig.h"
52
Alan Coxf2cf8e22005-09-06 15:16:44 -070053#define VERSION "1.3.0.1-LK2.6"
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55/* This major needs to be submitted to Linux to join the majors list */
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -070056#define DIGIINFOMAJOR 35 /* For Digi specific ioctl */
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58
59#define MAXCARDS 7
60#define epcaassert(x, msg) if (!(x)) epca_error(__LINE__, msg)
61
62#define PFX "epca: "
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static int nbdevs, num_cards, liloconfig;
65static int digi_poller_inhibited = 1 ;
66
67static int setup_error_code;
68static int invalid_lilo_config;
69
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -070070/*
71 * The ISA boards do window flipping into the same spaces so its only sane with
Alan Coxd1c815e2009-01-02 13:47:58 +000072 * a single lock. It's still pretty efficient. This lock guards the hardware
73 * and the tty_port lock guards the kernel side stuff like use counts. Take
74 * this lock inside the port lock if you must take both.
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -070075 */
Ingo Molnar34af9462006-06-27 02:53:55 -070076static DEFINE_SPINLOCK(epca_lock);
Alan Coxf2cf8e22005-09-06 15:16:44 -070077
Alan Cox191260a2008-04-30 00:54:16 -070078/* MAXBOARDS is typically 12, but ISA and EISA cards are restricted
79 to 7 below. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070080static struct board_info boards[MAXBOARDS];
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082static struct tty_driver *pc_driver;
83static struct tty_driver *pc_info;
84
85/* ------------------ Begin Digi specific structures -------------------- */
86
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -070087/*
88 * digi_channels represents an array of structures that keep track of each
89 * channel of the Digi product. Information such as transmit and receive
90 * pointers, termio data, and signal definitions (DTR, CTS, etc ...) are stored
91 * here. This structure is NOT used to overlay the cards physical channel
92 * structure.
93 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static struct channel digi_channels[MAX_ALLOC];
95
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -070096/*
97 * card_ptr is an array used to hold the address of the first channel structure
98 * of each card. This array will hold the addresses of various channels located
99 * in digi_channels.
100 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101static struct channel *card_ptr[MAXCARDS];
102
103static struct timer_list epca_timer;
104
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700105/*
106 * Begin generic memory functions. These functions will be alias (point at)
107 * more specific functions dependent on the board being configured.
108 */
Alan Coxf2cf8e22005-09-06 15:16:44 -0700109static void memwinon(struct board_info *b, unsigned int win);
110static void memwinoff(struct board_info *b, unsigned int win);
111static void globalwinon(struct channel *ch);
112static void rxwinon(struct channel *ch);
113static void txwinon(struct channel *ch);
114static void memoff(struct channel *ch);
115static void assertgwinon(struct channel *ch);
116static void assertmemoff(struct channel *ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118/* ---- Begin more 'specific' memory functions for cx_like products --- */
119
Alan Coxf2cf8e22005-09-06 15:16:44 -0700120static void pcxem_memwinon(struct board_info *b, unsigned int win);
121static void pcxem_memwinoff(struct board_info *b, unsigned int win);
122static void pcxem_globalwinon(struct channel *ch);
123static void pcxem_rxwinon(struct channel *ch);
124static void pcxem_txwinon(struct channel *ch);
125static void pcxem_memoff(struct channel *ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127/* ------ Begin more 'specific' memory functions for the pcxe ------- */
128
Alan Coxf2cf8e22005-09-06 15:16:44 -0700129static void pcxe_memwinon(struct board_info *b, unsigned int win);
130static void pcxe_memwinoff(struct board_info *b, unsigned int win);
131static void pcxe_globalwinon(struct channel *ch);
132static void pcxe_rxwinon(struct channel *ch);
133static void pcxe_txwinon(struct channel *ch);
134static void pcxe_memoff(struct channel *ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136/* ---- Begin more 'specific' memory functions for the pc64xe and pcxi ---- */
137/* Note : pc64xe and pcxi share the same windowing routines */
138
Alan Coxf2cf8e22005-09-06 15:16:44 -0700139static void pcxi_memwinon(struct board_info *b, unsigned int win);
140static void pcxi_memwinoff(struct board_info *b, unsigned int win);
141static void pcxi_globalwinon(struct channel *ch);
142static void pcxi_rxwinon(struct channel *ch);
143static void pcxi_txwinon(struct channel *ch);
144static void pcxi_memoff(struct channel *ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146/* - Begin 'specific' do nothing memory functions needed for some cards - */
147
Alan Coxf2cf8e22005-09-06 15:16:44 -0700148static void dummy_memwinon(struct board_info *b, unsigned int win);
149static void dummy_memwinoff(struct board_info *b, unsigned int win);
150static void dummy_globalwinon(struct channel *ch);
151static void dummy_rxwinon(struct channel *ch);
152static void dummy_txwinon(struct channel *ch);
153static void dummy_memoff(struct channel *ch);
154static void dummy_assertgwinon(struct channel *ch);
155static void dummy_assertmemoff(struct channel *ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Alan Coxf2cf8e22005-09-06 15:16:44 -0700157static struct channel *verifyChannel(struct tty_struct *);
158static void pc_sched_event(struct channel *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159static void epca_error(int, char *);
160static void pc_close(struct tty_struct *, struct file *);
Alan Coxd1c815e2009-01-02 13:47:58 +0000161static void shutdown(struct channel *, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162static void pc_hangup(struct tty_struct *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163static int pc_write_room(struct tty_struct *);
164static int pc_chars_in_buffer(struct tty_struct *);
165static void pc_flush_buffer(struct tty_struct *);
166static void pc_flush_chars(struct tty_struct *);
167static int block_til_ready(struct tty_struct *, struct file *,
Alan Cox191260a2008-04-30 00:54:16 -0700168 struct channel *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169static int pc_open(struct tty_struct *, struct file *);
170static void post_fep_init(unsigned int crd);
171static void epcapoll(unsigned long);
172static void doevent(int);
173static void fepcmd(struct channel *, int, int, int, int, int);
174static unsigned termios2digi_h(struct channel *ch, unsigned);
175static unsigned termios2digi_i(struct channel *ch, unsigned);
176static unsigned termios2digi_c(struct channel *ch, unsigned);
177static void epcaparam(struct tty_struct *, struct channel *);
178static void receive_data(struct channel *);
179static int pc_ioctl(struct tty_struct *, struct file *,
Alan Cox191260a2008-04-30 00:54:16 -0700180 unsigned int, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181static int info_ioctl(struct tty_struct *, struct file *,
Alan Cox191260a2008-04-30 00:54:16 -0700182 unsigned int, unsigned long);
Alan Cox606d0992006-12-08 02:38:45 -0800183static void pc_set_termios(struct tty_struct *, struct ktermios *);
David Howellsc4028952006-11-22 14:57:56 +0000184static void do_softint(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185static void pc_stop(struct tty_struct *);
186static void pc_start(struct tty_struct *);
Alan Cox191260a2008-04-30 00:54:16 -0700187static void pc_throttle(struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188static void pc_unthrottle(struct tty_struct *tty);
Alan Coxdcbf1282008-07-22 11:18:12 +0100189static int pc_send_break(struct tty_struct *tty, int msec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190static void setup_empty_event(struct tty_struct *tty, struct channel *ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192static int pc_write(struct tty_struct *, const unsigned char *, int);
Alan Coxf2cf8e22005-09-06 15:16:44 -0700193static int pc_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194static int init_PCI(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700196/*
197 * Table of functions for each board to handle memory. Mantaining parallelism
198 * is a *very* good idea here. The idea is for the runtime code to blindly call
199 * these functions, not knowing/caring about the underlying hardware. This
200 * stuff should contain no conditionals; if more functionality is needed a
201 * different entry should be established. These calls are the interface calls
202 * and are the only functions that should be accessed. Anyone caught making
203 * direct calls deserves what they get.
204 */
Alan Coxf2cf8e22005-09-06 15:16:44 -0700205static void memwinon(struct board_info *b, unsigned int win)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700207 b->memwinon(b, win);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208}
209
Alan Coxf2cf8e22005-09-06 15:16:44 -0700210static void memwinoff(struct board_info *b, unsigned int win)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700212 b->memwinoff(b, win);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
214
Alan Coxf2cf8e22005-09-06 15:16:44 -0700215static void globalwinon(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700217 ch->board->globalwinon(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
Alan Coxf2cf8e22005-09-06 15:16:44 -0700220static void rxwinon(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700222 ch->board->rxwinon(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
Alan Coxf2cf8e22005-09-06 15:16:44 -0700225static void txwinon(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700227 ch->board->txwinon(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
229
Alan Coxf2cf8e22005-09-06 15:16:44 -0700230static void memoff(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700232 ch->board->memoff(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
Alan Coxf2cf8e22005-09-06 15:16:44 -0700234static void assertgwinon(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700236 ch->board->assertgwinon(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
Alan Coxf2cf8e22005-09-06 15:16:44 -0700239static void assertmemoff(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700241 ch->board->assertmemoff(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700244/* PCXEM windowing is the same as that used in the PCXR and CX series cards. */
Alan Coxf2cf8e22005-09-06 15:16:44 -0700245static void pcxem_memwinon(struct board_info *b, unsigned int win)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Alan Cox191260a2008-04-30 00:54:16 -0700247 outb_p(FEPWIN | win, b->port + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249
Alan Coxf2cf8e22005-09-06 15:16:44 -0700250static void pcxem_memwinoff(struct board_info *b, unsigned int win)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
Alan Coxf2cf8e22005-09-06 15:16:44 -0700252 outb_p(0, b->port + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
Alan Coxf2cf8e22005-09-06 15:16:44 -0700255static void pcxem_globalwinon(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
Alan Cox191260a2008-04-30 00:54:16 -0700257 outb_p(FEPWIN, (int)ch->board->port + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
Alan Coxf2cf8e22005-09-06 15:16:44 -0700260static void pcxem_rxwinon(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
262 outb_p(ch->rxwin, (int)ch->board->port + 1);
263}
264
Alan Coxf2cf8e22005-09-06 15:16:44 -0700265static void pcxem_txwinon(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
267 outb_p(ch->txwin, (int)ch->board->port + 1);
268}
269
Alan Coxf2cf8e22005-09-06 15:16:44 -0700270static void pcxem_memoff(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
272 outb_p(0, (int)ch->board->port + 1);
273}
274
275/* ----------------- Begin pcxe memory window stuff ------------------ */
Alan Coxf2cf8e22005-09-06 15:16:44 -0700276static void pcxe_memwinon(struct board_info *b, unsigned int win)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700278 outb_p(FEPWIN | win, b->port + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
Alan Coxf2cf8e22005-09-06 15:16:44 -0700281static void pcxe_memwinoff(struct board_info *b, unsigned int win)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700283 outb_p(inb(b->port) & ~FEPMEM, b->port + 1);
Alan Coxf2cf8e22005-09-06 15:16:44 -0700284 outb_p(0, b->port + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
Alan Coxf2cf8e22005-09-06 15:16:44 -0700287static void pcxe_globalwinon(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700289 outb_p(FEPWIN, (int)ch->board->port + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
Alan Coxf2cf8e22005-09-06 15:16:44 -0700292static void pcxe_rxwinon(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700294 outb_p(ch->rxwin, (int)ch->board->port + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
296
Alan Coxf2cf8e22005-09-06 15:16:44 -0700297static void pcxe_txwinon(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700299 outb_p(ch->txwin, (int)ch->board->port + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
Alan Coxf2cf8e22005-09-06 15:16:44 -0700302static void pcxe_memoff(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 outb_p(0, (int)ch->board->port);
305 outb_p(0, (int)ch->board->port + 1);
306}
307
308/* ------------- Begin pc64xe and pcxi memory window stuff -------------- */
Alan Coxf2cf8e22005-09-06 15:16:44 -0700309static void pcxi_memwinon(struct board_info *b, unsigned int win)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700311 outb_p(inb(b->port) | FEPMEM, b->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Alan Coxf2cf8e22005-09-06 15:16:44 -0700314static void pcxi_memwinoff(struct board_info *b, unsigned int win)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Alan Coxf2cf8e22005-09-06 15:16:44 -0700316 outb_p(inb(b->port) & ~FEPMEM, b->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
Alan Coxf2cf8e22005-09-06 15:16:44 -0700319static void pcxi_globalwinon(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
Alan Coxf2cf8e22005-09-06 15:16:44 -0700321 outb_p(FEPMEM, ch->board->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
Alan Coxf2cf8e22005-09-06 15:16:44 -0700324static void pcxi_rxwinon(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700326 outb_p(FEPMEM, ch->board->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
Alan Coxf2cf8e22005-09-06 15:16:44 -0700329static void pcxi_txwinon(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700331 outb_p(FEPMEM, ch->board->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
Alan Coxf2cf8e22005-09-06 15:16:44 -0700334static void pcxi_memoff(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Alan Coxf2cf8e22005-09-06 15:16:44 -0700336 outb_p(0, ch->board->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
Alan Coxf2cf8e22005-09-06 15:16:44 -0700339static void pcxi_assertgwinon(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
Alan Coxf2cf8e22005-09-06 15:16:44 -0700341 epcaassert(inb(ch->board->port) & FEPMEM, "Global memory off");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
Alan Coxf2cf8e22005-09-06 15:16:44 -0700344static void pcxi_assertmemoff(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Alan Coxf2cf8e22005-09-06 15:16:44 -0700346 epcaassert(!(inb(ch->board->port) & FEPMEM), "Memory on");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700349/*
350 * Not all of the cards need specific memory windowing routines. Some cards
351 * (Such as PCI) needs no windowing routines at all. We provide these do
352 * nothing routines so that the same code base can be used. The driver will
353 * ALWAYS call a windowing routine if it thinks it needs to; regardless of the
354 * card. However, dependent on the card the routine may or may not do anything.
355 */
Alan Coxf2cf8e22005-09-06 15:16:44 -0700356static void dummy_memwinon(struct board_info *b, unsigned int win)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
358}
359
Alan Coxf2cf8e22005-09-06 15:16:44 -0700360static void dummy_memwinoff(struct board_info *b, unsigned int win)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
362}
363
Alan Coxf2cf8e22005-09-06 15:16:44 -0700364static void dummy_globalwinon(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
366}
367
Alan Coxf2cf8e22005-09-06 15:16:44 -0700368static void dummy_rxwinon(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
370}
371
Alan Coxf2cf8e22005-09-06 15:16:44 -0700372static void dummy_txwinon(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
374}
375
Alan Coxf2cf8e22005-09-06 15:16:44 -0700376static void dummy_memoff(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
378}
379
Alan Coxf2cf8e22005-09-06 15:16:44 -0700380static void dummy_assertgwinon(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
382}
383
Alan Coxf2cf8e22005-09-06 15:16:44 -0700384static void dummy_assertmemoff(struct channel *ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
386}
387
Alan Coxf2cf8e22005-09-06 15:16:44 -0700388static struct channel *verifyChannel(struct tty_struct *tty)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700389{
390 /*
391 * This routine basically provides a sanity check. It insures that the
392 * channel returned is within the proper range of addresses as well as
393 * properly initialized. If some bogus info gets passed in
394 * through tty->driver_data this should catch it.
395 */
Alan Coxf2cf8e22005-09-06 15:16:44 -0700396 if (tty) {
Alan Coxc9f19e92009-01-02 13:47:26 +0000397 struct channel *ch = tty->driver_data;
Alan Cox191260a2008-04-30 00:54:16 -0700398 if (ch >= &digi_channels[0] && ch < &digi_channels[nbdevs]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (ch->magic == EPCA_MAGIC)
400 return ch;
401 }
Alan Coxf2cf8e22005-09-06 15:16:44 -0700402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return NULL;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700404}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Alan Coxf2cf8e22005-09-06 15:16:44 -0700406static void pc_sched_event(struct channel *ch, int event)
407{
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700408 /*
409 * We call this to schedule interrupt processing on some event. The
410 * kernel sees our request and calls the related routine in OUR driver.
411 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 ch->event |= 1 << event;
413 schedule_work(&ch->tqueue);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700414}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416static void epca_error(int line, char *msg)
Alan Coxf2cf8e22005-09-06 15:16:44 -0700417{
Alan Cox191260a2008-04-30 00:54:16 -0700418 printk(KERN_ERR "epca_error (Digi): line = %d %s\n", line, msg);
Alan Coxf2cf8e22005-09-06 15:16:44 -0700419}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700421static void pc_close(struct tty_struct *tty, struct file *filp)
Alan Coxf2cf8e22005-09-06 15:16:44 -0700422{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 struct channel *ch;
Alan Coxd1c815e2009-01-02 13:47:58 +0000424 struct tty_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 unsigned long flags;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700426 /*
427 * verifyChannel returns the channel from the tty struct if it is
428 * valid. This serves as a sanity check.
429 */
Alan Cox191260a2008-04-30 00:54:16 -0700430 ch = verifyChannel(tty);
Alan Coxd1c815e2009-01-02 13:47:58 +0000431 if (ch == NULL)
432 return;
433 port = &ch->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Alan Coxd1c815e2009-01-02 13:47:58 +0000435 spin_lock_irqsave(&port->lock, flags);
436 if (tty_hung_up_p(filp)) {
437 spin_unlock_irqrestore(&port->lock, flags);
438 return;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700439 }
Alan Coxd1c815e2009-01-02 13:47:58 +0000440 if (port->count-- > 1) {
441 /* Begin channel is open more than once */
442 /*
443 * Return without doing anything. Someone might still
444 * be using the channel.
445 */
446 spin_unlock_irqrestore(&port->lock, flags);
447 return;
448 }
449 /* Port open only once go ahead with shutdown & reset */
450 WARN_ON(port->count < 0);
451
452 /*
453 * Let the rest of the driver know the channel is being closed.
454 * This becomes important if an open is attempted before close
455 * is finished.
456 */
457 port->flags |= ASYNC_CLOSING;
458 tty->closing = 1;
459
460 spin_unlock_irqrestore(&port->lock, flags);
461
462 if (port->flags & ASYNC_INITIALIZED) {
463 /* Setup an event to indicate when the
464 transmit buffer empties */
465 setup_empty_event(tty, ch);
466 /* 30 seconds timeout */
467 tty_wait_until_sent(tty, 3000);
468 }
469 pc_flush_buffer(tty);
470 tty_ldisc_flush(tty);
471 shutdown(ch, tty);
472
473 spin_lock_irqsave(&port->lock, flags);
474 tty->closing = 0;
475 ch->event = 0;
476 port->tty = NULL;
477 spin_unlock_irqrestore(&port->lock, flags);
478
479 if (port->blocked_open) {
480 if (ch->close_delay)
481 msleep_interruptible(jiffies_to_msecs(ch->close_delay));
482 wake_up_interruptible(&port->open_wait);
483 }
484 port->flags &= ~(ASYNC_NORMAL_ACTIVE | ASYNC_INITIALIZED |
485 ASYNC_CLOSING);
486 wake_up_interruptible(&port->close_wait);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700487}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Alan Coxd1c815e2009-01-02 13:47:58 +0000489static void shutdown(struct channel *ch, struct tty_struct *tty)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700490{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 unsigned long flags;
Al Virobc9a5152005-09-15 22:53:28 +0100492 struct board_chan __iomem *bc;
Alan Coxd1c815e2009-01-02 13:47:58 +0000493 struct tty_port *port = &ch->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Alan Coxd1c815e2009-01-02 13:47:58 +0000495 if (!(port->flags & ASYNC_INITIALIZED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 return;
497
Alan Coxf2cf8e22005-09-06 15:16:44 -0700498 spin_lock_irqsave(&epca_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Alan Coxf2cf8e22005-09-06 15:16:44 -0700500 globalwinon(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 bc = ch->brdchan;
502
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700503 /*
504 * In order for an event to be generated on the receipt of data the
505 * idata flag must be set. Since we are shutting down, this is not
506 * necessary clear this flag.
507 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if (bc)
Alan Coxf2cf8e22005-09-06 15:16:44 -0700509 writeb(0, &bc->idata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700511 /* If we're a modem control device and HUPCL is on, drop RTS & DTR. */
Alan Coxf2cf8e22005-09-06 15:16:44 -0700512 if (tty->termios->c_cflag & HUPCL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 ch->omodem &= ~(ch->m_rts | ch->m_dtr);
514 fepcmd(ch, SETMODEM, 0, ch->m_dtr | ch->m_rts, 10, 1);
515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 memoff(ch);
517
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700518 /*
519 * The channel has officialy been closed. The next time it is opened it
520 * will have to reinitialized. Set a flag to indicate this.
521 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 /* Prevent future Digi programmed interrupts from coming active */
Alan Coxd1c815e2009-01-02 13:47:58 +0000523 port->flags &= ~ASYNC_INITIALIZED;
Alan Coxf2cf8e22005-09-06 15:16:44 -0700524 spin_unlock_irqrestore(&epca_lock, flags);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700525}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527static void pc_hangup(struct tty_struct *tty)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700528{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 struct channel *ch;
Alan Coxd1c815e2009-01-02 13:47:58 +0000530 struct tty_port *port;
531
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700532 /*
533 * verifyChannel returns the channel from the tty struct if it is
534 * valid. This serves as a sanity check.
535 */
Alan Cox191260a2008-04-30 00:54:16 -0700536 ch = verifyChannel(tty);
537 if (ch != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 unsigned long flags;
Alan Coxd1c815e2009-01-02 13:47:58 +0000539 port = &ch->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Alan Cox978e5952008-04-30 00:53:59 -0700541 pc_flush_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 tty_ldisc_flush(tty);
Alan Coxd1c815e2009-01-02 13:47:58 +0000543 shutdown(ch, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Alan Coxd1c815e2009-01-02 13:47:58 +0000545 spin_lock_irqsave(&port->lock, flags);
546 port->tty = NULL;
547 ch->event = 0; /* FIXME: review locking of ch->event */
548 port->count = 0;
549 port->flags &= ~(ASYNC_NORMAL_ACTIVE | ASYNC_INITIALIZED);
550 spin_unlock_irqrestore(&port->lock, flags);
551 wake_up_interruptible(&port->open_wait);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700552 }
553}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700555static int pc_write(struct tty_struct *tty,
Alan Cox191260a2008-04-30 00:54:16 -0700556 const unsigned char *buf, int bytesAvailable)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700557{
Alan Coxf2cf8e22005-09-06 15:16:44 -0700558 unsigned int head, tail;
559 int dataLen;
560 int size;
561 int amountCopied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 struct channel *ch;
563 unsigned long flags;
564 int remain;
Al Virobc9a5152005-09-15 22:53:28 +0100565 struct board_chan __iomem *bc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700567 /*
568 * pc_write is primarily called directly by the kernel routine
569 * tty_write (Though it can also be called by put_char) found in
570 * tty_io.c. pc_write is passed a line discipline buffer where the data
571 * to be written out is stored. The line discipline implementation
572 * itself is done at the kernel level and is not brought into the
573 * driver.
574 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700576 /*
577 * verifyChannel returns the channel from the tty struct if it is
578 * valid. This serves as a sanity check.
579 */
Alan Cox191260a2008-04-30 00:54:16 -0700580 ch = verifyChannel(tty);
581 if (ch == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return 0;
583
584 /* Make a pointer to the channel data structure found on the board. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 bc = ch->brdchan;
586 size = ch->txbufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 amountCopied = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Alan Coxf2cf8e22005-09-06 15:16:44 -0700589 spin_lock_irqsave(&epca_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 globalwinon(ch);
591
Alan Coxf2cf8e22005-09-06 15:16:44 -0700592 head = readw(&bc->tin) & (size - 1);
593 tail = readw(&bc->tout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Alan Coxf2cf8e22005-09-06 15:16:44 -0700595 if (tail != readw(&bc->tout))
596 tail = readw(&bc->tout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 tail &= (size - 1);
598
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700599 if (head >= tail) {
600 /* head has not wrapped */
601 /*
602 * remain (much like dataLen above) represents the total amount
603 * of space available on the card for data. Here dataLen
604 * represents the space existing between the head pointer and
605 * the end of buffer. This is important because a memcpy cannot
606 * be told to automatically wrap around when it hits the buffer
607 * end.
608 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 dataLen = size - head;
610 remain = size - (head - tail) - 1;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700611 } else {
612 /* head has wrapped around */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 remain = tail - head - 1;
614 dataLen = remain;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700615 }
616 /*
617 * Check the space on the card. If we have more data than space; reduce
618 * the amount of data to fit the space.
619 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 bytesAvailable = min(remain, bytesAvailable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 txwinon(ch);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700622 while (bytesAvailable > 0) {
623 /* there is data to copy onto card */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700625 /*
626 * If head is not wrapped, the below will make sure the first
627 * data copy fills to the end of card buffer.
628 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 dataLen = min(bytesAvailable, dataLen);
Al Virobc9a5152005-09-15 22:53:28 +0100630 memcpy_toio(ch->txptr + head, buf, dataLen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 buf += dataLen;
632 head += dataLen;
633 amountCopied += dataLen;
634 bytesAvailable -= dataLen;
635
Alan Coxf2cf8e22005-09-06 15:16:44 -0700636 if (head >= size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 head = 0;
638 dataLen = tail;
639 }
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 ch->statusflags |= TXBUSY;
642 globalwinon(ch);
Alan Coxf2cf8e22005-09-06 15:16:44 -0700643 writew(head, &bc->tin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Alan Coxf2cf8e22005-09-06 15:16:44 -0700645 if ((ch->statusflags & LOWWAIT) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 ch->statusflags |= LOWWAIT;
Alan Coxf2cf8e22005-09-06 15:16:44 -0700647 writeb(1, &bc->ilow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
649 memoff(ch);
Alan Coxf2cf8e22005-09-06 15:16:44 -0700650 spin_unlock_irqrestore(&epca_lock, flags);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700651 return amountCopied;
652}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654static int pc_write_room(struct tty_struct *tty)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700655{
Alan Cox191260a2008-04-30 00:54:16 -0700656 int remain = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 struct channel *ch;
658 unsigned long flags;
659 unsigned int head, tail;
Al Virobc9a5152005-09-15 22:53:28 +0100660 struct board_chan __iomem *bc;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700661 /*
662 * verifyChannel returns the channel from the tty struct if it is
663 * valid. This serves as a sanity check.
664 */
Alan Cox191260a2008-04-30 00:54:16 -0700665 ch = verifyChannel(tty);
666 if (ch != NULL) {
Alan Coxf2cf8e22005-09-06 15:16:44 -0700667 spin_lock_irqsave(&epca_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 globalwinon(ch);
669
670 bc = ch->brdchan;
Alan Coxf2cf8e22005-09-06 15:16:44 -0700671 head = readw(&bc->tin) & (ch->txbufsize - 1);
672 tail = readw(&bc->tout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Alan Coxf2cf8e22005-09-06 15:16:44 -0700674 if (tail != readw(&bc->tout))
675 tail = readw(&bc->tout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 /* Wrap tail if necessary */
677 tail &= (ch->txbufsize - 1);
Alan Cox191260a2008-04-30 00:54:16 -0700678 remain = tail - head - 1;
679 if (remain < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 remain += ch->txbufsize;
681
Alan Coxf2cf8e22005-09-06 15:16:44 -0700682 if (remain && (ch->statusflags & LOWWAIT) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 ch->statusflags |= LOWWAIT;
Alan Coxf2cf8e22005-09-06 15:16:44 -0700684 writeb(1, &bc->ilow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
686 memoff(ch);
Alan Coxf2cf8e22005-09-06 15:16:44 -0700687 spin_unlock_irqrestore(&epca_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 /* Return how much room is left on card */
690 return remain;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700691}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693static int pc_chars_in_buffer(struct tty_struct *tty)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700694{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 int chars;
696 unsigned int ctail, head, tail;
697 int remain;
698 unsigned long flags;
699 struct channel *ch;
Al Virobc9a5152005-09-15 22:53:28 +0100700 struct board_chan __iomem *bc;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700701 /*
702 * verifyChannel returns the channel from the tty struct if it is
703 * valid. This serves as a sanity check.
704 */
Alan Cox191260a2008-04-30 00:54:16 -0700705 ch = verifyChannel(tty);
706 if (ch == NULL)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700707 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Alan Coxf2cf8e22005-09-06 15:16:44 -0700709 spin_lock_irqsave(&epca_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 globalwinon(ch);
711
712 bc = ch->brdchan;
Alan Coxf2cf8e22005-09-06 15:16:44 -0700713 tail = readw(&bc->tout);
714 head = readw(&bc->tin);
715 ctail = readw(&ch->mailbox->cout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Alan Cox191260a2008-04-30 00:54:16 -0700717 if (tail == head && readw(&ch->mailbox->cin) == ctail &&
718 readb(&bc->tbusy) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 chars = 0;
Alan Coxf2cf8e22005-09-06 15:16:44 -0700720 else { /* Begin if some space on the card has been used */
721 head = readw(&bc->tin) & (ch->txbufsize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 tail &= (ch->txbufsize - 1);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700723 /*
724 * The logic here is basically opposite of the above
725 * pc_write_room here we are finding the amount of bytes in the
726 * buffer filled. Not the amount of bytes empty.
727 */
Alan Cox191260a2008-04-30 00:54:16 -0700728 remain = tail - head - 1;
729 if (remain < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 remain += ch->txbufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 chars = (int)(ch->txbufsize - remain);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700732 /*
733 * Make it possible to wakeup anything waiting for output in
734 * tty_ioctl.c, etc.
735 *
736 * If not already set. Setup an event to indicate when the
737 * transmit buffer empties.
738 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 if (!(ch->statusflags & EMPTYWAIT))
Alan Cox191260a2008-04-30 00:54:16 -0700740 setup_empty_event(tty, ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 } /* End if some space on the card has been used */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 memoff(ch);
Alan Coxf2cf8e22005-09-06 15:16:44 -0700743 spin_unlock_irqrestore(&epca_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 /* Return number of characters residing on card. */
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700745 return chars;
746}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748static void pc_flush_buffer(struct tty_struct *tty)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700749{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 unsigned int tail;
751 unsigned long flags;
752 struct channel *ch;
Al Virobc9a5152005-09-15 22:53:28 +0100753 struct board_chan __iomem *bc;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700754 /*
755 * verifyChannel returns the channel from the tty struct if it is
756 * valid. This serves as a sanity check.
757 */
Alan Cox191260a2008-04-30 00:54:16 -0700758 ch = verifyChannel(tty);
759 if (ch == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 return;
761
Alan Coxf2cf8e22005-09-06 15:16:44 -0700762 spin_lock_irqsave(&epca_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 globalwinon(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 bc = ch->brdchan;
Alan Coxf2cf8e22005-09-06 15:16:44 -0700765 tail = readw(&bc->tout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 /* Have FEP move tout pointer; effectively flushing transmit buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 fepcmd(ch, STOUT, (unsigned) tail, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 memoff(ch);
Alan Coxf2cf8e22005-09-06 15:16:44 -0700769 spin_unlock_irqrestore(&epca_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 tty_wakeup(tty);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700771}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773static void pc_flush_chars(struct tty_struct *tty)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700774{
775 struct channel *ch;
776 /*
777 * verifyChannel returns the channel from the tty struct if it is
778 * valid. This serves as a sanity check.
779 */
Alan Cox191260a2008-04-30 00:54:16 -0700780 ch = verifyChannel(tty);
781 if (ch != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 unsigned long flags;
Alan Coxf2cf8e22005-09-06 15:16:44 -0700783 spin_lock_irqsave(&epca_lock, flags);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700784 /*
785 * If not already set and the transmitter is busy setup an
786 * event to indicate when the transmit empties.
787 */
Alan Cox191260a2008-04-30 00:54:16 -0700788 if ((ch->statusflags & TXBUSY) &&
789 !(ch->statusflags & EMPTYWAIT))
790 setup_empty_event(tty, ch);
Alan Coxf2cf8e22005-09-06 15:16:44 -0700791 spin_unlock_irqrestore(&epca_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 }
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700793}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700795static int block_til_ready(struct tty_struct *tty,
Alan Cox191260a2008-04-30 00:54:16 -0700796 struct file *filp, struct channel *ch)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700797{
Alan Cox191260a2008-04-30 00:54:16 -0700798 DECLARE_WAITQUEUE(wait, current);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700799 int retval, do_clocal = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 unsigned long flags;
Alan Coxd1c815e2009-01-02 13:47:58 +0000801 struct tty_port *port = &ch->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Alan Coxf2cf8e22005-09-06 15:16:44 -0700803 if (tty_hung_up_p(filp)) {
Alan Coxd1c815e2009-01-02 13:47:58 +0000804 if (port->flags & ASYNC_HUP_NOTIFY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 retval = -EAGAIN;
806 else
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700807 retval = -ERESTARTSYS;
808 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 }
810
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700811 /*
812 * If the device is in the middle of being closed, then block until
813 * it's done, and then try again.
814 */
Alan Coxd1c815e2009-01-02 13:47:58 +0000815 if (port->flags & ASYNC_CLOSING) {
816 interruptible_sleep_on(&port->close_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Alan Coxd1c815e2009-01-02 13:47:58 +0000818 if (port->flags & ASYNC_HUP_NOTIFY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 return -EAGAIN;
820 else
821 return -ERESTARTSYS;
822 }
823
Alan Coxf2cf8e22005-09-06 15:16:44 -0700824 if (filp->f_flags & O_NONBLOCK) {
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700825 /*
826 * If non-blocking mode is set, then make the check up front
827 * and then exit.
828 */
Alan Coxd1c815e2009-01-02 13:47:58 +0000829 port->flags |= ASYNC_NORMAL_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 return 0;
831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 if (tty->termios->c_cflag & CLOCAL)
833 do_clocal = 1;
Alan Coxf2cf8e22005-09-06 15:16:44 -0700834 /* Block waiting for the carrier detect and the line to become free */
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 retval = 0;
Alan Coxd1c815e2009-01-02 13:47:58 +0000837 add_wait_queue(&port->open_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Alan Coxd1c815e2009-01-02 13:47:58 +0000839 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 /* We dec count so that pc_close will know when to free things */
841 if (!tty_hung_up_p(filp))
Alan Coxd1c815e2009-01-02 13:47:58 +0000842 port->count--;
843 port->blocked_open++;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700844 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 set_current_state(TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 if (tty_hung_up_p(filp) ||
Alan Coxd1c815e2009-01-02 13:47:58 +0000847 !(port->flags & ASYNC_INITIALIZED)) {
848 if (port->flags & ASYNC_HUP_NOTIFY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 retval = -EAGAIN;
850 else
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700851 retval = -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 break;
853 }
Alan Coxd1c815e2009-01-02 13:47:58 +0000854 if (!(port->flags & ASYNC_CLOSING) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 (do_clocal || (ch->imodem & ch->dcd)))
856 break;
Alan Coxf2cf8e22005-09-06 15:16:44 -0700857 if (signal_pending(current)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 retval = -ERESTARTSYS;
859 break;
860 }
Alan Coxd1c815e2009-01-02 13:47:58 +0000861 spin_unlock_irqrestore(&port->lock, flags);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700862 /*
863 * Allow someone else to be scheduled. We will occasionally go
864 * through this loop until one of the above conditions change.
865 * The below schedule call will allow other processes to enter
866 * and prevent this loop from hogging the cpu.
867 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 schedule();
Alan Coxd1c815e2009-01-02 13:47:58 +0000869 spin_lock_irqsave(&port->lock, flags);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Milind Arun Choudharycc0a8fb2007-05-08 00:30:52 -0700872 __set_current_state(TASK_RUNNING);
Alan Coxd1c815e2009-01-02 13:47:58 +0000873 remove_wait_queue(&port->open_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 if (!tty_hung_up_p(filp))
Alan Coxd1c815e2009-01-02 13:47:58 +0000875 port->count++;
876 port->blocked_open--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Alan Coxd1c815e2009-01-02 13:47:58 +0000878 spin_unlock_irqrestore(&port->lock, flags);
Alan Coxf2cf8e22005-09-06 15:16:44 -0700879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 if (retval)
881 return retval;
882
Alan Coxd1c815e2009-01-02 13:47:58 +0000883 port->flags |= ASYNC_NORMAL_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 return 0;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700885}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Alan Cox191260a2008-04-30 00:54:16 -0700887static int pc_open(struct tty_struct *tty, struct file *filp)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700888{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 struct channel *ch;
Alan Coxd1c815e2009-01-02 13:47:58 +0000890 struct tty_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 unsigned long flags;
892 int line, retval, boardnum;
Al Virobc9a5152005-09-15 22:53:28 +0100893 struct board_chan __iomem *bc;
Alan Coxf2cf8e22005-09-06 15:16:44 -0700894 unsigned int head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896 line = tty->index;
Alan Coxf2cf8e22005-09-06 15:16:44 -0700897 if (line < 0 || line >= nbdevs)
898 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 ch = &digi_channels[line];
Alan Coxd1c815e2009-01-02 13:47:58 +0000901 port = &ch->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 boardnum = ch->boardnum;
903
904 /* Check status of board configured in system. */
905
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700906 /*
907 * I check to see if the epca_setup routine detected an user error. It
908 * might be better to put this in pc_init, but for the moment it goes
909 * here.
910 */
Alan Coxf2cf8e22005-09-06 15:16:44 -0700911 if (invalid_lilo_config) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 if (setup_error_code & INVALID_BOARD_TYPE)
Alan Coxf2cf8e22005-09-06 15:16:44 -0700913 printk(KERN_ERR "epca: pc_open: Invalid board type specified in kernel options.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 if (setup_error_code & INVALID_NUM_PORTS)
Alan Coxf2cf8e22005-09-06 15:16:44 -0700915 printk(KERN_ERR "epca: pc_open: Invalid number of ports specified in kernel options.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 if (setup_error_code & INVALID_MEM_BASE)
Alan Coxf2cf8e22005-09-06 15:16:44 -0700917 printk(KERN_ERR "epca: pc_open: Invalid board memory address specified in kernel options.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 if (setup_error_code & INVALID_PORT_BASE)
Alan Coxf2cf8e22005-09-06 15:16:44 -0700919 printk(KERN_ERR "epca; pc_open: Invalid board port address specified in kernel options.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 if (setup_error_code & INVALID_BOARD_STATUS)
Alan Coxf2cf8e22005-09-06 15:16:44 -0700921 printk(KERN_ERR "epca: pc_open: Invalid board status specified in kernel options.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 if (setup_error_code & INVALID_ALTPIN)
Alan Coxf2cf8e22005-09-06 15:16:44 -0700923 printk(KERN_ERR "epca: pc_open: Invalid board altpin specified in kernel options;\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 tty->driver_data = NULL; /* Mark this device as 'down' */
Alan Coxf2cf8e22005-09-06 15:16:44 -0700925 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 }
Alan Coxf2cf8e22005-09-06 15:16:44 -0700927 if (boardnum >= num_cards || boards[boardnum].status == DISABLED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 tty->driver_data = NULL; /* Mark this device as 'down' */
929 return(-ENODEV);
930 }
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700931
Harvey Harrison11fb09b2008-04-30 00:53:52 -0700932 bc = ch->brdchan;
933 if (bc == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 tty->driver_data = NULL;
Alan Coxf2cf8e22005-09-06 15:16:44 -0700935 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
937
Alan Coxd1c815e2009-01-02 13:47:58 +0000938 spin_lock_irqsave(&port->lock, flags);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700939 /*
940 * Every time a channel is opened, increment a counter. This is
941 * necessary because we do not wish to flush and shutdown the channel
942 * until the last app holding the channel open, closes it.
943 */
Alan Coxd1c815e2009-01-02 13:47:58 +0000944 port->count++;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700945 /*
946 * Set a kernel structures pointer to our local channel structure. This
947 * way we can get to it when passed only a tty struct.
948 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 tty->driver_data = ch;
Alan Coxd1c815e2009-01-02 13:47:58 +0000950 port->tty = tty;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700951 /*
952 * If this is the first time the channel has been opened, initialize
953 * the tty->termios struct otherwise let pc_close handle it.
954 */
Alan Coxd1c815e2009-01-02 13:47:58 +0000955 spin_lock(&epca_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 globalwinon(ch);
957 ch->statusflags = 0;
958
959 /* Save boards current modem status */
Al Virobc9a5152005-09-15 22:53:28 +0100960 ch->imodem = readb(&bc->mstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700962 /*
963 * Set receive head and tail ptrs to each other. This indicates no data
964 * available to read.
965 */
Alan Coxf2cf8e22005-09-06 15:16:44 -0700966 head = readw(&bc->rin);
967 writew(head, &bc->rout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
969 /* Set the channels associated tty structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700971 /*
972 * The below routine generally sets up parity, baud, flow control
973 * issues, etc.... It effect both control flags and input flags.
974 */
Alan Cox191260a2008-04-30 00:54:16 -0700975 epcaparam(tty, ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 memoff(ch);
Alan Coxd1c815e2009-01-02 13:47:58 +0000977 spin_unlock(&epca_lock);
978 port->flags |= ASYNC_INITIALIZED;
979 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
981 retval = block_til_ready(tty, filp, ch);
982 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 return retval;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -0700984 /*
985 * Set this again in case a hangup set it to zero while this open() was
986 * waiting for the line...
987 */
Alan Coxd1c815e2009-01-02 13:47:58 +0000988 spin_lock_irqsave(&port->lock, flags);
989 port->tty = tty;
990 spin_lock(&epca_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 globalwinon(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 /* Enable Digi Data events */
Alan Coxf2cf8e22005-09-06 15:16:44 -0700993 writeb(1, &bc->idata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 memoff(ch);
Alan Coxd1c815e2009-01-02 13:47:58 +0000995 spin_unlock(&epca_lock);
996 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998}
999
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001000static int __init epca_module_init(void)
1001{
1002 return pc_init();
1003}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004module_init(epca_module_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006static struct pci_driver epca_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
1008static void __exit epca_module_exit(void)
1009{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 int count, crd;
1011 struct board_info *bd;
1012 struct channel *ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 del_timer_sync(&epca_timer);
1015
Alan Cox191260a2008-04-30 00:54:16 -07001016 if (tty_unregister_driver(pc_driver) ||
1017 tty_unregister_driver(pc_info)) {
Alan Coxf2cf8e22005-09-06 15:16:44 -07001018 printk(KERN_WARNING "epca: cleanup_module failed to un-register tty driver\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 return;
1020 }
1021 put_tty_driver(pc_driver);
1022 put_tty_driver(pc_info);
1023
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001024 for (crd = 0; crd < num_cards; crd++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 bd = &boards[crd];
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001026 if (!bd) { /* sanity check */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 printk(KERN_ERR "<Error> - Digi : cleanup_module failed\n");
1028 return;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001029 }
Alan Coxf2cf8e22005-09-06 15:16:44 -07001030 ch = card_ptr[crd];
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001031 for (count = 0; count < bd->numports; count++, ch++) {
Alan Cox52d41732008-07-16 21:55:02 +01001032 if (ch && ch->port.tty)
1033 tty_hangup(ch->port.tty);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001034 }
1035 }
1036 pci_unregister_driver(&epca_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037}
1038module_exit(epca_module_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Jeff Dikeb68e31d2006-10-02 02:17:18 -07001040static const struct tty_operations pc_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 .open = pc_open,
1042 .close = pc_close,
1043 .write = pc_write,
1044 .write_room = pc_write_room,
1045 .flush_buffer = pc_flush_buffer,
1046 .chars_in_buffer = pc_chars_in_buffer,
1047 .flush_chars = pc_flush_chars,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 .ioctl = pc_ioctl,
1049 .set_termios = pc_set_termios,
1050 .stop = pc_stop,
1051 .start = pc_start,
1052 .throttle = pc_throttle,
1053 .unthrottle = pc_unthrottle,
1054 .hangup = pc_hangup,
Alan Coxdcbf1282008-07-22 11:18:12 +01001055 .break_ctl = pc_send_break
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056};
1057
Alan Cox191260a2008-04-30 00:54:16 -07001058static int info_open(struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
1060 return 0;
1061}
1062
1063static struct tty_operations info_ops = {
1064 .open = info_open,
1065 .ioctl = info_ioctl,
1066};
1067
Alan Coxf2cf8e22005-09-06 15:16:44 -07001068static int __init pc_init(void)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001069{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 int crd;
1071 struct board_info *bd;
1072 unsigned char board_id = 0;
Akinobu Mitadabad052006-10-17 00:10:28 -07001073 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 int pci_boards_found, pci_count;
1076
1077 pci_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
1079 pc_driver = alloc_tty_driver(MAX_ALLOC);
1080 if (!pc_driver)
Akinobu Mitadabad052006-10-17 00:10:28 -07001081 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
1083 pc_info = alloc_tty_driver(MAX_ALLOC);
Akinobu Mitadabad052006-10-17 00:10:28 -07001084 if (!pc_info)
1085 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001087 /*
1088 * If epca_setup has not been ran by LILO set num_cards to defaults;
1089 * copy board structure defined by digiConfig into drivers board
1090 * structure. Note : If LILO has ran epca_setup then epca_setup will
1091 * handle defining num_cards as well as copying the data into the board
1092 * structure.
1093 */
1094 if (!liloconfig) {
1095 /* driver has been configured via. epcaconfig */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 nbdevs = NBDEVS;
1097 num_cards = NUMCARDS;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001098 memcpy(&boards, &static_boards,
1099 sizeof(struct board_info) * NUMCARDS);
1100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001102 /*
1103 * Note : If lilo was used to configure the driver and the ignore
1104 * epcaconfig option was choosen (digiepca=2) then nbdevs and num_cards
1105 * will equal 0 at this point. This is okay; PCI cards will still be
1106 * picked up if detected.
1107 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001109 /*
1110 * Set up interrupt, we will worry about memory allocation in
1111 * post_fep_init.
1112 */
Alan Cox191260a2008-04-30 00:54:16 -07001113 printk(KERN_INFO "DIGI epca driver version %s loaded.\n", VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001115 /*
1116 * NOTE : This code assumes that the number of ports found in the
1117 * boards array is correct. This could be wrong if the card in question
1118 * is PCI (And therefore has no ports entry in the boards structure.)
1119 * The rest of the information will be valid for PCI because the
1120 * beginning of pc_init scans for PCI and determines i/o and base
1121 * memory addresses. I am not sure if it is possible to read the number
1122 * of ports supported by the card prior to it being booted (Since that
1123 * is the state it is in when pc_init is run). Because it is not
1124 * possible to query the number of supported ports until after the card
1125 * has booted; we are required to calculate the card_ptrs as the card
1126 * is initialized (Inside post_fep_init). The negative thing about this
1127 * approach is that digiDload's call to GET_INFO will have a bad port
1128 * value. (Since this is called prior to post_fep_init.)
1129 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 pci_boards_found = 0;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001131 if (num_cards < MAXBOARDS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 pci_boards_found += init_PCI();
1133 num_cards += pci_boards_found;
1134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 pc_driver->owner = THIS_MODULE;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001136 pc_driver->name = "ttyD";
1137 pc_driver->major = DIGI_MAJOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 pc_driver->minor_start = 0;
1139 pc_driver->type = TTY_DRIVER_TYPE_SERIAL;
1140 pc_driver->subtype = SERIAL_TYPE_NORMAL;
1141 pc_driver->init_termios = tty_std_termios;
1142 pc_driver->init_termios.c_iflag = 0;
1143 pc_driver->init_termios.c_oflag = 0;
1144 pc_driver->init_termios.c_cflag = B9600 | CS8 | CREAD | CLOCAL | HUPCL;
1145 pc_driver->init_termios.c_lflag = 0;
Alan Cox606d0992006-12-08 02:38:45 -08001146 pc_driver->init_termios.c_ispeed = 9600;
1147 pc_driver->init_termios.c_ospeed = 9600;
Alan Coxdcbf1282008-07-22 11:18:12 +01001148 pc_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_HARDWARE_BREAK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 tty_set_operations(pc_driver, &pc_ops);
1150
1151 pc_info->owner = THIS_MODULE;
1152 pc_info->name = "digi_ctl";
1153 pc_info->major = DIGIINFOMAJOR;
1154 pc_info->minor_start = 0;
1155 pc_info->type = TTY_DRIVER_TYPE_SERIAL;
1156 pc_info->subtype = SERIAL_TYPE_INFO;
1157 pc_info->init_termios = tty_std_termios;
1158 pc_info->init_termios.c_iflag = 0;
1159 pc_info->init_termios.c_oflag = 0;
1160 pc_info->init_termios.c_lflag = 0;
1161 pc_info->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL;
Alan Cox606d0992006-12-08 02:38:45 -08001162 pc_info->init_termios.c_ispeed = 9600;
1163 pc_info->init_termios.c_ospeed = 9600;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 pc_info->flags = TTY_DRIVER_REAL_RAW;
1165 tty_set_operations(pc_info, &info_ops);
1166
1167
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001168 for (crd = 0; crd < num_cards; crd++) {
1169 /*
1170 * This is where the appropriate memory handlers for the
1171 * hardware is set. Everything at runtime blindly jumps through
1172 * these vectors.
1173 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
1175 /* defined in epcaconfig.h */
1176 bd = &boards[crd];
1177
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001178 switch (bd->type) {
1179 case PCXEM:
1180 case EISAXEM:
1181 bd->memwinon = pcxem_memwinon;
1182 bd->memwinoff = pcxem_memwinoff;
1183 bd->globalwinon = pcxem_globalwinon;
1184 bd->txwinon = pcxem_txwinon;
1185 bd->rxwinon = pcxem_rxwinon;
1186 bd->memoff = pcxem_memoff;
1187 bd->assertgwinon = dummy_assertgwinon;
1188 bd->assertmemoff = dummy_assertmemoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 break;
1190
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001191 case PCIXEM:
1192 case PCIXRJ:
1193 case PCIXR:
1194 bd->memwinon = dummy_memwinon;
1195 bd->memwinoff = dummy_memwinoff;
1196 bd->globalwinon = dummy_globalwinon;
1197 bd->txwinon = dummy_txwinon;
1198 bd->rxwinon = dummy_rxwinon;
1199 bd->memoff = dummy_memoff;
1200 bd->assertgwinon = dummy_assertgwinon;
1201 bd->assertmemoff = dummy_assertmemoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 break;
1203
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001204 case PCXE:
1205 case PCXEVE:
1206 bd->memwinon = pcxe_memwinon;
1207 bd->memwinoff = pcxe_memwinoff;
1208 bd->globalwinon = pcxe_globalwinon;
1209 bd->txwinon = pcxe_txwinon;
1210 bd->rxwinon = pcxe_rxwinon;
1211 bd->memoff = pcxe_memoff;
1212 bd->assertgwinon = dummy_assertgwinon;
1213 bd->assertmemoff = dummy_assertmemoff;
1214 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001216 case PCXI:
1217 case PC64XE:
1218 bd->memwinon = pcxi_memwinon;
1219 bd->memwinoff = pcxi_memwinoff;
1220 bd->globalwinon = pcxi_globalwinon;
1221 bd->txwinon = pcxi_txwinon;
1222 bd->rxwinon = pcxi_rxwinon;
1223 bd->memoff = pcxi_memoff;
1224 bd->assertgwinon = pcxi_assertgwinon;
1225 bd->assertmemoff = pcxi_assertmemoff;
1226 break;
1227
1228 default:
1229 break;
1230 }
1231
1232 /*
1233 * Some cards need a memory segment to be defined for use in
1234 * transmit and receive windowing operations. These boards are
1235 * listed in the below switch. In the case of the XI the amount
1236 * of memory on the board is variable so the memory_seg is also
1237 * variable. This code determines what they segment should be.
1238 */
1239 switch (bd->type) {
1240 case PCXE:
1241 case PCXEVE:
1242 case PC64XE:
1243 bd->memory_seg = 0xf000;
1244 break;
1245
1246 case PCXI:
1247 board_id = inb((int)bd->port);
1248 if ((board_id & 0x1) == 0x1) {
1249 /* it's an XI card */
1250 /* Is it a 64K board */
1251 if ((board_id & 0x30) == 0)
1252 bd->memory_seg = 0xf000;
1253
1254 /* Is it a 128K board */
1255 if ((board_id & 0x30) == 0x10)
1256 bd->memory_seg = 0xe000;
1257
1258 /* Is is a 256K board */
1259 if ((board_id & 0x30) == 0x20)
1260 bd->memory_seg = 0xc000;
1261
1262 /* Is it a 512K board */
1263 if ((board_id & 0x30) == 0x30)
1264 bd->memory_seg = 0x8000;
1265 } else
Alan Cox191260a2008-04-30 00:54:16 -07001266 printk(KERN_ERR "epca: Board at 0x%x doesn't appear to be an XI\n", (int)bd->port);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001267 break;
1268 }
1269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Akinobu Mitadabad052006-10-17 00:10:28 -07001271 err = tty_register_driver(pc_driver);
1272 if (err) {
1273 printk(KERN_ERR "Couldn't register Digi PC/ driver");
1274 goto out3;
1275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Akinobu Mitadabad052006-10-17 00:10:28 -07001277 err = tty_register_driver(pc_info);
1278 if (err) {
1279 printk(KERN_ERR "Couldn't register Digi PC/ info ");
1280 goto out4;
1281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001283 /* Start up the poller to check for events on all enabled boards */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 init_timer(&epca_timer);
1285 epca_timer.function = epcapoll;
1286 mod_timer(&epca_timer, jiffies + HZ/25);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 return 0;
1288
Akinobu Mitadabad052006-10-17 00:10:28 -07001289out4:
1290 tty_unregister_driver(pc_driver);
1291out3:
1292 put_tty_driver(pc_info);
1293out2:
1294 put_tty_driver(pc_driver);
1295out1:
1296 return err;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001297}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
1299static void post_fep_init(unsigned int crd)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001300{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 int i;
Al Virobc9a5152005-09-15 22:53:28 +01001302 void __iomem *memaddr;
1303 struct global_data __iomem *gd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 struct board_info *bd;
Al Virobc9a5152005-09-15 22:53:28 +01001305 struct board_chan __iomem *bc;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001306 struct channel *ch;
1307 int shrinkmem = 0, lowwater;
1308
1309 /*
1310 * This call is made by the user via. the ioctl call DIGI_INIT. It is
1311 * responsible for setting up all the card specific stuff.
1312 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 bd = &boards[crd];
1314
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001315 /*
1316 * If this is a PCI board, get the port info. Remember PCI cards do not
1317 * have entries into the epcaconfig.h file, so we can't get the number
1318 * of ports from it. Unfortunetly, this means that anyone doing a
1319 * DIGI_GETINFO before the board has booted will get an invalid number
1320 * of ports returned (It should return 0). Calls to DIGI_GETINFO after
1321 * DIGI_INIT has been called will return the proper values.
1322 */
Alan Coxf2cf8e22005-09-06 15:16:44 -07001323 if (bd->type >= PCIXEM) { /* Begin get PCI number of ports */
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001324 /*
1325 * Below we use XEMPORTS as a memory offset regardless of which
1326 * PCI card it is. This is because all of the supported PCI
1327 * cards have the same memory offset for the channel data. This
1328 * will have to be changed if we ever develop a PCI/XE card.
1329 * NOTE : The FEP manual states that the port offset is 0xC22
1330 * as opposed to 0xC02. This is only true for PC/XE, and PC/XI
1331 * cards; not for the XEM, or CX series. On the PCI cards the
1332 * number of ports is determined by reading a ID PROM located
1333 * in the box attached to the card. The card can then determine
1334 * the index the id to determine the number of ports available.
1335 * (FYI - The id should be located at 0x1ac (And may use up to
1336 * 4 bytes if the box in question is a XEM or CX)).
1337 */
Alan Coxf2cf8e22005-09-06 15:16:44 -07001338 /* PCI cards are already remapped at this point ISA are not */
1339 bd->numports = readw(bd->re_map_membase + XEMPORTS);
Alan Cox191260a2008-04-30 00:54:16 -07001340 epcaassert(bd->numports <= 64, "PCI returned a invalid number of ports");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 nbdevs += (bd->numports);
Alan Coxf2cf8e22005-09-06 15:16:44 -07001342 } else {
1343 /* Fix up the mappings for ISA/EISA etc */
1344 /* FIXME: 64K - can we be smarter ? */
Alan Cox191260a2008-04-30 00:54:16 -07001345 bd->re_map_membase = ioremap_nocache(bd->membase, 0x10000);
Alan Coxf2cf8e22005-09-06 15:16:44 -07001346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348 if (crd != 0)
1349 card_ptr[crd] = card_ptr[crd-1] + boards[crd-1].numports;
1350 else
1351 card_ptr[crd] = &digi_channels[crd]; /* <- For card 0 only */
1352
1353 ch = card_ptr[crd];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 epcaassert(ch <= &digi_channels[nbdevs - 1], "ch out of range");
1355
Alan Coxf2cf8e22005-09-06 15:16:44 -07001356 memaddr = bd->re_map_membase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001358 /*
1359 * The below assignment will set bc to point at the BEGINING of the
1360 * cards channel structures. For 1 card there will be between 8 and 64
1361 * of these structures.
1362 */
Al Virobc9a5152005-09-15 22:53:28 +01001363 bc = memaddr + CHANSTRUCT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001365 /*
1366 * The below assignment will set gd to point at the BEGINING of global
1367 * memory address 0xc00. The first data in that global memory actually
1368 * starts at address 0xc1a. The command in pointer begins at 0xd10.
1369 */
Al Virobc9a5152005-09-15 22:53:28 +01001370 gd = memaddr + GLOBAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001372 /*
1373 * XEPORTS (address 0xc22) points at the number of channels the card
1374 * supports. (For 64XE, XI, XEM, and XR use 0xc02)
1375 */
Alan Cox191260a2008-04-30 00:54:16 -07001376 if ((bd->type == PCXEVE || bd->type == PCXE) &&
1377 (readw(memaddr + XEPORTS) < 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 shrinkmem = 1;
1379 if (bd->type < PCIXEM)
1380 if (!request_region((int)bd->port, 4, board_desc[bd->type]))
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001381 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 memwinon(bd, 0);
1383
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001384 /*
1385 * Remember ch is the main drivers channels structure, while bc is the
1386 * cards channel structure.
1387 */
1388 for (i = 0; i < bd->numports; i++, ch++, bc++) {
Alan Coxf2cf8e22005-09-06 15:16:44 -07001389 unsigned long flags;
Al Virobc9a5152005-09-15 22:53:28 +01001390 u16 tseg, rseg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Alan Cox9ae7b082008-10-13 10:32:09 +01001392 tty_port_init(&ch->port);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001393 ch->brdchan = bc;
1394 ch->mailbox = gd;
David Howellsc4028952006-11-22 14:57:56 +00001395 INIT_WORK(&ch->tqueue, do_softint);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001396 ch->board = &boards[crd];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Alan Coxf2cf8e22005-09-06 15:16:44 -07001398 spin_lock_irqsave(&epca_lock, flags);
1399 switch (bd->type) {
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001400 /*
1401 * Since some of the boards use different bitmaps for
1402 * their control signals we cannot hard code these
1403 * values and retain portability. We virtualize this
1404 * data here.
1405 */
1406 case EISAXEM:
1407 case PCXEM:
1408 case PCIXEM:
1409 case PCIXRJ:
1410 case PCIXR:
1411 ch->m_rts = 0x02;
1412 ch->m_dcd = 0x80;
1413 ch->m_dsr = 0x20;
1414 ch->m_cts = 0x10;
1415 ch->m_ri = 0x40;
1416 ch->m_dtr = 0x01;
1417 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001419 case PCXE:
1420 case PCXEVE:
1421 case PCXI:
1422 case PC64XE:
1423 ch->m_rts = 0x02;
1424 ch->m_dcd = 0x08;
1425 ch->m_dsr = 0x10;
1426 ch->m_cts = 0x20;
1427 ch->m_ri = 0x40;
1428 ch->m_dtr = 0x80;
1429 break;
1430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Alan Coxf2cf8e22005-09-06 15:16:44 -07001432 if (boards[crd].altpin) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 ch->dsr = ch->m_dcd;
1434 ch->dcd = ch->m_dsr;
1435 ch->digiext.digi_flags |= DIGI_ALTPIN;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001436 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 ch->dcd = ch->m_dcd;
1438 ch->dsr = ch->m_dsr;
1439 }
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 ch->boardnum = crd;
1442 ch->channelnum = i;
1443 ch->magic = EPCA_MAGIC;
Alan Cox52d41732008-07-16 21:55:02 +01001444 ch->port.tty = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Alan Coxf2cf8e22005-09-06 15:16:44 -07001446 if (shrinkmem) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 fepcmd(ch, SETBUFFER, 32, 0, 0, 0);
1448 shrinkmem = 0;
1449 }
1450
Al Virobc9a5152005-09-15 22:53:28 +01001451 tseg = readw(&bc->tseg);
1452 rseg = readw(&bc->rseg);
1453
Alan Coxf2cf8e22005-09-06 15:16:44 -07001454 switch (bd->type) {
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001455 case PCIXEM:
1456 case PCIXRJ:
1457 case PCIXR:
1458 /* Cover all the 2MEG cards */
1459 ch->txptr = memaddr + ((tseg << 4) & 0x1fffff);
1460 ch->rxptr = memaddr + ((rseg << 4) & 0x1fffff);
1461 ch->txwin = FEPWIN | (tseg >> 11);
1462 ch->rxwin = FEPWIN | (rseg >> 11);
1463 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001465 case PCXEM:
1466 case EISAXEM:
1467 /* Cover all the 32K windowed cards */
1468 /* Mask equal to window size - 1 */
1469 ch->txptr = memaddr + ((tseg << 4) & 0x7fff);
1470 ch->rxptr = memaddr + ((rseg << 4) & 0x7fff);
1471 ch->txwin = FEPWIN | (tseg >> 11);
1472 ch->rxwin = FEPWIN | (rseg >> 11);
1473 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001475 case PCXEVE:
1476 case PCXE:
Alan Cox191260a2008-04-30 00:54:16 -07001477 ch->txptr = memaddr + (((tseg - bd->memory_seg) << 4)
1478 & 0x1fff);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001479 ch->txwin = FEPWIN | ((tseg - bd->memory_seg) >> 9);
Alan Cox191260a2008-04-30 00:54:16 -07001480 ch->rxptr = memaddr + (((rseg - bd->memory_seg) << 4)
1481 & 0x1fff);
1482 ch->rxwin = FEPWIN | ((rseg - bd->memory_seg) >> 9);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001483 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001485 case PCXI:
1486 case PC64XE:
1487 ch->txptr = memaddr + ((tseg - bd->memory_seg) << 4);
1488 ch->rxptr = memaddr + ((rseg - bd->memory_seg) << 4);
1489 ch->txwin = ch->rxwin = 0;
1490 break;
1491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
1493 ch->txbufhead = 0;
Al Virobc9a5152005-09-15 22:53:28 +01001494 ch->txbufsize = readw(&bc->tmax) + 1;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001495
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 ch->rxbufhead = 0;
Al Virobc9a5152005-09-15 22:53:28 +01001497 ch->rxbufsize = readw(&bc->rmax) + 1;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 lowwater = ch->txbufsize >= 2000 ? 1024 : (ch->txbufsize / 2);
1500
1501 /* Set transmitter low water mark */
1502 fepcmd(ch, STXLWATER, lowwater, 0, 10, 0);
1503
1504 /* Set receiver low water mark */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 fepcmd(ch, SRXLWATER, (ch->rxbufsize / 4), 0, 10, 0);
1506
1507 /* Set receiver high water mark */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 fepcmd(ch, SRXHWATER, (3 * ch->rxbufsize / 4), 0, 10, 0);
1509
Alan Coxf2cf8e22005-09-06 15:16:44 -07001510 writew(100, &bc->edelay);
1511 writeb(1, &bc->idata);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001512
Alan Coxf2cf8e22005-09-06 15:16:44 -07001513 ch->startc = readb(&bc->startc);
1514 ch->stopc = readb(&bc->stopc);
1515 ch->startca = readb(&bc->startca);
1516 ch->stopca = readb(&bc->stopca);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 ch->fepcflag = 0;
1519 ch->fepiflag = 0;
1520 ch->fepoflag = 0;
1521 ch->fepstartc = 0;
1522 ch->fepstopc = 0;
1523 ch->fepstartca = 0;
1524 ch->fepstopca = 0;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001525
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 ch->close_delay = 50;
Alan Coxf2cf8e22005-09-06 15:16:44 -07001527
1528 spin_unlock_irqrestore(&epca_lock, flags);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001531 printk(KERN_INFO
Alan Cox191260a2008-04-30 00:54:16 -07001532 "Digi PC/Xx Driver V%s: %s I/O = 0x%lx Mem = 0x%lx Ports = %d\n",
1533 VERSION, board_desc[bd->type], (long)bd->port,
1534 (long)bd->membase, bd->numports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 memwinoff(bd, 0);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001536}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
1538static void epcapoll(unsigned long ignored)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001539{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 unsigned long flags;
1541 int crd;
Alan Cox191260a2008-04-30 00:54:16 -07001542 unsigned int head, tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 struct channel *ch;
1544 struct board_info *bd;
1545
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001546 /*
1547 * This routine is called upon every timer interrupt. Even though the
1548 * Digi series cards are capable of generating interrupts this method
1549 * of non-looping polling is more efficient. This routine checks for
1550 * card generated events (Such as receive data, are transmit buffer
1551 * empty) and acts on those events.
1552 */
1553 for (crd = 0; crd < num_cards; crd++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 bd = &boards[crd];
1555 ch = card_ptr[crd];
1556
1557 if ((bd->status == DISABLED) || digi_poller_inhibited)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001558 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001560 /*
1561 * assertmemoff is not needed here; indeed it is an empty
1562 * subroutine. It is being kept because future boards may need
1563 * this as well as some legacy boards.
1564 */
Alan Coxf2cf8e22005-09-06 15:16:44 -07001565 spin_lock_irqsave(&epca_lock, flags);
1566
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 assertmemoff(ch);
1568
1569 globalwinon(ch);
1570
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001571 /*
1572 * In this case head and tail actually refer to the event queue
1573 * not the transmit or receive queue.
1574 */
Alan Coxf2cf8e22005-09-06 15:16:44 -07001575 head = readw(&ch->mailbox->ein);
1576 tail = readw(&ch->mailbox->eout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001578 /* If head isn't equal to tail we have an event */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 if (head != tail)
1580 doevent(crd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 memoff(ch);
1582
Alan Coxf2cf8e22005-09-06 15:16:44 -07001583 spin_unlock_irqrestore(&epca_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 } /* End for each card */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 mod_timer(&epca_timer, jiffies + (HZ / 25));
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001586}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588static void doevent(int crd)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001589{
Al Virobc9a5152005-09-15 22:53:28 +01001590 void __iomem *eventbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 struct channel *ch, *chan0;
1592 static struct tty_struct *tty;
Alan Coxf2cf8e22005-09-06 15:16:44 -07001593 struct board_info *bd;
Al Virobc9a5152005-09-15 22:53:28 +01001594 struct board_chan __iomem *bc;
Alan Coxf2cf8e22005-09-06 15:16:44 -07001595 unsigned int tail, head;
1596 int event, channel;
1597 int mstat, lstat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001599 /*
1600 * This subroutine is called by epcapoll when an event is detected
1601 * in the event queue. This routine responds to those events.
1602 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 bd = &boards[crd];
1604
1605 chan0 = card_ptr[crd];
1606 epcaassert(chan0 <= &digi_channels[nbdevs - 1], "ch out of range");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 assertgwinon(chan0);
Alan Cox191260a2008-04-30 00:54:16 -07001608 while ((tail = readw(&chan0->mailbox->eout)) !=
1609 (head = readw(&chan0->mailbox->ein))) {
1610 /* Begin while something in event queue */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 assertgwinon(chan0);
Alan Coxf2cf8e22005-09-06 15:16:44 -07001612 eventbuf = bd->re_map_membase + tail + ISTART;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 /* Get the channel the event occurred on */
Alan Coxf2cf8e22005-09-06 15:16:44 -07001614 channel = readb(eventbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 /* Get the actual event code that occurred */
Alan Coxf2cf8e22005-09-06 15:16:44 -07001616 event = readb(eventbuf + 1);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001617 /*
1618 * The two assignments below get the current modem status
1619 * (mstat) and the previous modem status (lstat). These are
1620 * useful becuase an event could signal a change in modem
1621 * signals itself.
1622 */
Alan Coxf2cf8e22005-09-06 15:16:44 -07001623 mstat = readb(eventbuf + 2);
1624 lstat = readb(eventbuf + 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
1626 ch = chan0 + channel;
Alan Coxf2cf8e22005-09-06 15:16:44 -07001627 if ((unsigned)channel >= bd->numports || !ch) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 if (channel >= bd->numports)
1629 ch = chan0;
1630 bc = ch->brdchan;
1631 goto next;
1632 }
1633
Alan Cox191260a2008-04-30 00:54:16 -07001634 bc = ch->brdchan;
1635 if (bc == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 goto next;
1637
Alan Coxf2cf8e22005-09-06 15:16:44 -07001638 if (event & DATA_IND) { /* Begin DATA_IND */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 receive_data(ch);
1640 assertgwinon(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 } /* End DATA_IND */
1642 /* else *//* Fix for DCD transition missed bug */
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001643 if (event & MODEMCHG_IND) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 /* A modem signal change has been indicated */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 ch->imodem = mstat;
Alan Cox52d41732008-07-16 21:55:02 +01001646 if (ch->port.flags & ASYNC_CHECK_CD) {
Alan Cox191260a2008-04-30 00:54:16 -07001647 /* We are now receiving dcd */
1648 if (mstat & ch->dcd)
Alan Cox52d41732008-07-16 21:55:02 +01001649 wake_up_interruptible(&ch->port.open_wait);
Alan Cox191260a2008-04-30 00:54:16 -07001650 else /* No dcd; hangup */
1651 pc_sched_event(ch, EPCA_EVENT_HANGUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 }
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001653 }
Alan Cox52d41732008-07-16 21:55:02 +01001654 tty = ch->port.tty;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001655 if (tty) {
1656 if (event & BREAK_IND) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 /* A break has been indicated */
Alan Cox33f0f882006-01-09 20:54:13 -08001658 tty_insert_flip_char(tty, 0, TTY_BREAK);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001659 tty_schedule_flip(tty);
1660 } else if (event & LOWTX_IND) {
1661 if (ch->statusflags & LOWWAIT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 ch->statusflags &= ~LOWWAIT;
1663 tty_wakeup(tty);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001664 }
1665 } else if (event & EMPTYTX_IND) {
Alan Cox191260a2008-04-30 00:54:16 -07001666 /* This event is generated by
1667 setup_empty_event */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 ch->statusflags &= ~TXBUSY;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001669 if (ch->statusflags & EMPTYWAIT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 ch->statusflags &= ~EMPTYWAIT;
1671 tty_wakeup(tty);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001672 }
1673 }
1674 }
Alan Cox191260a2008-04-30 00:54:16 -07001675next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 globalwinon(ch);
Alan Coxf2cf8e22005-09-06 15:16:44 -07001677 BUG_ON(!bc);
1678 writew(1, &bc->idata);
1679 writew((tail + 4) & (IMAX - ISTART - 4), &chan0->mailbox->eout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 globalwinon(chan0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 } /* End while something in event queue */
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001682}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684static void fepcmd(struct channel *ch, int cmd, int word_or_byte,
Alan Cox191260a2008-04-30 00:54:16 -07001685 int byte2, int ncmds, int bytecmd)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001686{
Al Virobc9a5152005-09-15 22:53:28 +01001687 unchar __iomem *memaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 unsigned int head, cmdTail, cmdStart, cmdMax;
1689 long count;
1690 int n;
1691
1692 /* This is the routine in which commands may be passed to the card. */
1693
1694 if (ch->board->status == DISABLED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 assertgwinon(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 /* Remember head (As well as max) is just an offset not a base addr */
Alan Coxf2cf8e22005-09-06 15:16:44 -07001698 head = readw(&ch->mailbox->cin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 /* cmdStart is a base address */
Alan Coxf2cf8e22005-09-06 15:16:44 -07001700 cmdStart = readw(&ch->mailbox->cstart);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001701 /*
1702 * We do the addition below because we do not want a max pointer
1703 * relative to cmdStart. We want a max pointer that points at the
1704 * physical end of the command queue.
1705 */
Alan Coxf2cf8e22005-09-06 15:16:44 -07001706 cmdMax = (cmdStart + 4 + readw(&ch->mailbox->cmax));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 memaddr = ch->board->re_map_membase;
1708
Alan Coxf2cf8e22005-09-06 15:16:44 -07001709 if (head >= (cmdMax - cmdStart) || (head & 03)) {
Alan Cox191260a2008-04-30 00:54:16 -07001710 printk(KERN_ERR "line %d: Out of range, cmd = %x, head = %x\n",
1711 __LINE__, cmd, head);
1712 printk(KERN_ERR "line %d: Out of range, cmdMax = %x, cmdStart = %x\n",
1713 __LINE__, cmdMax, cmdStart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 return;
1715 }
Alan Coxf2cf8e22005-09-06 15:16:44 -07001716 if (bytecmd) {
1717 writeb(cmd, memaddr + head + cmdStart + 0);
1718 writeb(ch->channelnum, memaddr + head + cmdStart + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 /* Below word_or_byte is bits to set */
Alan Coxf2cf8e22005-09-06 15:16:44 -07001720 writeb(word_or_byte, memaddr + head + cmdStart + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 /* Below byte2 is bits to reset */
Alan Coxf2cf8e22005-09-06 15:16:44 -07001722 writeb(byte2, memaddr + head + cmdStart + 3);
1723 } else {
1724 writeb(cmd, memaddr + head + cmdStart + 0);
1725 writeb(ch->channelnum, memaddr + head + cmdStart + 1);
1726 writeb(word_or_byte, memaddr + head + cmdStart + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 head = (head + 4) & (cmdMax - cmdStart - 4);
Alan Coxf2cf8e22005-09-06 15:16:44 -07001729 writew(head, &ch->mailbox->cin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 count = FEPTIMEOUT;
1731
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001732 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 count--;
Alan Coxf2cf8e22005-09-06 15:16:44 -07001734 if (count == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 printk(KERN_ERR "<Error> - Fep not responding in fepcmd()\n");
1736 return;
1737 }
Alan Coxf2cf8e22005-09-06 15:16:44 -07001738 head = readw(&ch->mailbox->cin);
1739 cmdTail = readw(&ch->mailbox->cout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 n = (head - cmdTail) & (cmdMax - cmdStart - 4);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001741 /*
1742 * Basically this will break when the FEP acknowledges the
1743 * command by incrementing cmdTail (Making it equal to head).
1744 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 if (n <= ncmds * (sizeof(short) * 4))
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001746 break;
1747 }
1748}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001750/*
1751 * Digi products use fields in their channels structures that are very similar
1752 * to the c_cflag and c_iflag fields typically found in UNIX termios
1753 * structures. The below three routines allow mappings between these hardware
1754 * "flags" and their respective Linux flags.
1755 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756static unsigned termios2digi_h(struct channel *ch, unsigned cflag)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001757{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 unsigned res = 0;
1759
Alan Coxf2cf8e22005-09-06 15:16:44 -07001760 if (cflag & CRTSCTS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 ch->digiext.digi_flags |= (RTSPACE | CTSPACE);
1762 res |= ((ch->m_cts) | (ch->m_rts));
1763 }
1764
1765 if (ch->digiext.digi_flags & RTSPACE)
1766 res |= ch->m_rts;
1767
1768 if (ch->digiext.digi_flags & DTRPACE)
1769 res |= ch->m_dtr;
1770
1771 if (ch->digiext.digi_flags & CTSPACE)
1772 res |= ch->m_cts;
1773
1774 if (ch->digiext.digi_flags & DSRPACE)
1775 res |= ch->dsr;
1776
1777 if (ch->digiext.digi_flags & DCDPACE)
1778 res |= ch->dcd;
1779
1780 if (res & (ch->m_rts))
1781 ch->digiext.digi_flags |= RTSPACE;
1782
1783 if (res & (ch->m_cts))
1784 ch->digiext.digi_flags |= CTSPACE;
1785
1786 return res;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001787}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789static unsigned termios2digi_i(struct channel *ch, unsigned iflag)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001790{
1791 unsigned res = iflag & (IGNBRK | BRKINT | IGNPAR | PARMRK |
Alan Cox191260a2008-04-30 00:54:16 -07001792 INPCK | ISTRIP | IXON | IXANY | IXOFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 if (ch->digiext.digi_flags & DIGI_AIXON)
1794 res |= IAIXON;
1795 return res;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001796}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
1798static unsigned termios2digi_c(struct channel *ch, unsigned cflag)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001799{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 unsigned res = 0;
Alan Coxf2cf8e22005-09-06 15:16:44 -07001801 if (cflag & CBAUDEX) {
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001802 ch->digiext.digi_flags |= DIGI_FAST;
1803 /*
1804 * HUPCL bit is used by FEP to indicate fast baud table is to
1805 * be used.
1806 */
1807 res |= FEP_HUPCL;
1808 } else
1809 ch->digiext.digi_flags &= ~DIGI_FAST;
1810 /*
1811 * CBAUD has bit position 0x1000 set these days to indicate Linux
1812 * baud rate remap. Digi hardware can't handle the bit assignment.
1813 * (We use a different bit assignment for high speed.). Clear this
1814 * bit out.
1815 */
1816 res |= cflag & ((CBAUD ^ CBAUDEX) | PARODD | PARENB | CSTOPB | CSIZE);
1817 /*
1818 * This gets a little confusing. The Digi cards have their own
Joe Perches8dfba4d2008-02-03 17:11:42 +02001819 * representation of c_cflags controlling baud rate. For the most part
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001820 * this is identical to the Linux implementation. However; Digi
1821 * supports one rate (76800) that Linux doesn't. This means that the
1822 * c_cflag entry that would normally mean 76800 for Digi actually means
1823 * 115200 under Linux. Without the below mapping, a stty 115200 would
1824 * only drive the board at 76800. Since the rate 230400 is also found
1825 * after 76800, the same problem afflicts us when we choose a rate of
1826 * 230400. Without the below modificiation stty 230400 would actually
1827 * give us 115200.
1828 *
1829 * There are two additional differences. The Linux value for CLOCAL
1830 * (0x800; 0004000) has no meaning to the Digi hardware. Also in later
1831 * releases of Linux; the CBAUD define has CBAUDEX (0x1000; 0010000)
1832 * ored into it (CBAUD = 0x100f as opposed to 0xf). CBAUDEX should be
1833 * checked for a screened out prior to termios2digi_c returning. Since
1834 * CLOCAL isn't used by the board this can be ignored as long as the
1835 * returned value is used only by Digi hardware.
1836 */
1837 if (cflag & CBAUDEX) {
1838 /*
1839 * The below code is trying to guarantee that only baud rates
1840 * 115200 and 230400 are remapped. We use exclusive or because
1841 * the various baud rates share common bit positions and
1842 * therefore can't be tested for easily.
1843 */
1844 if ((!((cflag & 0x7) ^ (B115200 & ~CBAUDEX))) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 (!((cflag & 0x7) ^ (B230400 & ~CBAUDEX))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 res += 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 return res;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001849}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Alan Coxf2cf8e22005-09-06 15:16:44 -07001851/* Caller must hold the locks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852static void epcaparam(struct tty_struct *tty, struct channel *ch)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001853{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 unsigned int cmdHead;
Alan Cox606d0992006-12-08 02:38:45 -08001855 struct ktermios *ts;
Al Virobc9a5152005-09-15 22:53:28 +01001856 struct board_chan __iomem *bc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 unsigned mval, hflow, cflag, iflag;
1858
1859 bc = ch->brdchan;
Harvey Harrison11fb09b2008-04-30 00:53:52 -07001860 epcaassert(bc != NULL, "bc out of range");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
1862 assertgwinon(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 ts = tty->termios;
Alan Coxf2cf8e22005-09-06 15:16:44 -07001864 if ((ts->c_cflag & CBAUD) == 0) { /* Begin CBAUD detected */
1865 cmdHead = readw(&bc->rin);
Al Virobc9a5152005-09-15 22:53:28 +01001866 writew(cmdHead, &bc->rout);
Alan Coxf2cf8e22005-09-06 15:16:44 -07001867 cmdHead = readw(&bc->tin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 /* Changing baud in mid-stream transmission can be wonderful */
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001869 /*
1870 * Flush current transmit buffer by setting cmdTail pointer
1871 * (tout) to cmdHead pointer (tin). Hopefully the transmit
1872 * buffer is empty.
1873 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 fepcmd(ch, STOUT, (unsigned) cmdHead, 0, 0, 0);
1875 mval = 0;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001876 } else { /* Begin CBAUD not detected */
1877 /*
1878 * c_cflags have changed but that change had nothing to do with
1879 * BAUD. Propagate the change to the card.
1880 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 cflag = termios2digi_c(ch, ts->c_cflag);
Alan Coxf2cf8e22005-09-06 15:16:44 -07001882 if (cflag != ch->fepcflag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 ch->fepcflag = cflag;
1884 /* Set baud rate, char size, stop bits, parity */
1885 fepcmd(ch, SETCTRLFLAGS, (unsigned) cflag, 0, 0, 0);
1886 }
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001887 /*
1888 * If the user has not forced CLOCAL and if the device is not a
1889 * CALLOUT device (Which is always CLOCAL) we set flags such
1890 * that the driver will wait on carrier detect.
1891 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 if (ts->c_cflag & CLOCAL)
Alan Cox52d41732008-07-16 21:55:02 +01001893 ch->port.flags &= ~ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 else
Alan Cox52d41732008-07-16 21:55:02 +01001895 ch->port.flags |= ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 mval = ch->m_dtr | ch->m_rts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 } /* End CBAUD not detected */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 iflag = termios2digi_i(ch, ts->c_iflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 /* Check input mode flags */
Alan Coxf2cf8e22005-09-06 15:16:44 -07001900 if (iflag != ch->fepiflag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 ch->fepiflag = iflag;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001902 /*
1903 * Command sets channels iflag structure on the board. Such
1904 * things as input soft flow control, handling of parity
1905 * errors, and break handling are all set here.
Alan Cox191260a2008-04-30 00:54:16 -07001906 *
1907 * break handling, parity handling, input stripping,
1908 * flow control chars
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001909 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 fepcmd(ch, SETIFLAGS, (unsigned int) ch->fepiflag, 0, 0, 0);
1911 }
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001912 /*
1913 * Set the board mint value for this channel. This will cause hardware
1914 * events to be generated each time the DCD signal (Described in mint)
1915 * changes.
1916 */
Alan Coxf2cf8e22005-09-06 15:16:44 -07001917 writeb(ch->dcd, &bc->mint);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 if ((ts->c_cflag & CLOCAL) || (ch->digiext.digi_flags & DIGI_FORCEDCD))
1919 if (ch->digiext.digi_flags & DIGI_FORCEDCD)
Alan Coxf2cf8e22005-09-06 15:16:44 -07001920 writeb(0, &bc->mint);
1921 ch->imodem = readb(&bc->mstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 hflow = termios2digi_h(ch, ts->c_cflag);
Alan Coxf2cf8e22005-09-06 15:16:44 -07001923 if (hflow != ch->hflow) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 ch->hflow = hflow;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001925 /*
1926 * Hard flow control has been selected but the board is not
1927 * using it. Activate hard flow control now.
1928 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 fepcmd(ch, SETHFLOW, hflow, 0xff, 0, 1);
1930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 mval ^= ch->modemfake & (mval ^ ch->modem);
1932
Alan Coxf2cf8e22005-09-06 15:16:44 -07001933 if (ch->omodem ^ mval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 ch->omodem = mval;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001935 /*
1936 * The below command sets the DTR and RTS mstat structure. If
1937 * hard flow control is NOT active these changes will drive the
1938 * output of the actual DTR and RTS lines. If hard flow control
1939 * is active, the changes will be saved in the mstat structure
1940 * and only asserted when hard flow control is turned off.
1941 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
1943 /* First reset DTR & RTS; then set them */
1944 fepcmd(ch, SETMODEM, 0, ((ch->m_dtr)|(ch->m_rts)), 0, 1);
1945 fepcmd(ch, SETMODEM, mval, 0, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 }
Alan Coxf2cf8e22005-09-06 15:16:44 -07001947 if (ch->startc != ch->fepstartc || ch->stopc != ch->fepstopc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 ch->fepstartc = ch->startc;
1949 ch->fepstopc = ch->stopc;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001950 /*
1951 * The XON / XOFF characters have changed; propagate these
1952 * changes to the card.
1953 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 fepcmd(ch, SONOFFC, ch->fepstartc, ch->fepstopc, 0, 1);
1955 }
Alan Coxf2cf8e22005-09-06 15:16:44 -07001956 if (ch->startca != ch->fepstartca || ch->stopca != ch->fepstopca) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 ch->fepstartca = ch->startca;
1958 ch->fepstopca = ch->stopca;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001959 /*
1960 * Similar to the above, this time the auxilarly XON / XOFF
1961 * characters have changed; propagate these changes to the card.
1962 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 fepcmd(ch, SAUXONOFFC, ch->fepstartca, ch->fepstopca, 0, 1);
1964 }
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001965}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
Alan Coxf2cf8e22005-09-06 15:16:44 -07001967/* Caller holds lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968static void receive_data(struct channel *ch)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001969{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 unchar *rptr;
Alan Cox606d0992006-12-08 02:38:45 -08001971 struct ktermios *ts = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 struct tty_struct *tty;
Al Virobc9a5152005-09-15 22:53:28 +01001973 struct board_chan __iomem *bc;
Alan Coxf2cf8e22005-09-06 15:16:44 -07001974 int dataToRead, wrapgap, bytesAvailable;
1975 unsigned int tail, head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 unsigned int wrapmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001978 /*
1979 * This routine is called by doint when a receive data event has taken
1980 * place.
1981 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 globalwinon(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 if (ch->statusflags & RXSTOPPED)
1984 return;
Alan Cox52d41732008-07-16 21:55:02 +01001985 tty = ch->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 if (tty)
1987 ts = tty->termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 bc = ch->brdchan;
Alan Coxf2cf8e22005-09-06 15:16:44 -07001989 BUG_ON(!bc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 wrapmask = ch->rxbufsize - 1;
1991
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07001992 /*
1993 * Get the head and tail pointers to the receiver queue. Wrap the head
1994 * pointer if it has reached the end of the buffer.
1995 */
Alan Coxf2cf8e22005-09-06 15:16:44 -07001996 head = readw(&bc->rin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 head &= wrapmask;
Alan Coxf2cf8e22005-09-06 15:16:44 -07001998 tail = readw(&bc->rout) & wrapmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
2000 bytesAvailable = (head - tail) & wrapmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 if (bytesAvailable == 0)
2002 return;
2003
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002004 /* If CREAD bit is off or device not open, set TX tail to head */
Alan Cox191260a2008-04-30 00:54:16 -07002005 if (!tty || !ts || !(ts->c_cflag & CREAD)) {
Al Virobc9a5152005-09-15 22:53:28 +01002006 writew(head, &bc->rout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 return;
2008 }
2009
Alan Cox33f0f882006-01-09 20:54:13 -08002010 if (tty_buffer_request_room(tty, bytesAvailable + 1) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 return;
2012
Alan Coxf2cf8e22005-09-06 15:16:44 -07002013 if (readb(&bc->orun)) {
2014 writeb(0, &bc->orun);
Alan Cox191260a2008-04-30 00:54:16 -07002015 printk(KERN_WARNING "epca; overrun! DigiBoard device %s\n",
2016 tty->name);
Alan Cox33f0f882006-01-09 20:54:13 -08002017 tty_insert_flip_char(tty, 0, TTY_OVERRUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 rxwinon(ch);
Alan Cox191260a2008-04-30 00:54:16 -07002020 while (bytesAvailable > 0) {
2021 /* Begin while there is data on the card */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 wrapgap = (head >= tail) ? head - tail : ch->rxbufsize - tail;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002023 /*
2024 * Even if head has wrapped around only report the amount of
2025 * data to be equal to the size - tail. Remember memcpy can't
2026 * automaticly wrap around the receive buffer.
2027 */
Alan Cox191260a2008-04-30 00:54:16 -07002028 dataToRead = (wrapgap < bytesAvailable) ? wrapgap
2029 : bytesAvailable;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002030 /* Make sure we don't overflow the buffer */
Alan Cox33f0f882006-01-09 20:54:13 -08002031 dataToRead = tty_prepare_flip_string(tty, &rptr, dataToRead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 if (dataToRead == 0)
2033 break;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002034 /*
2035 * Move data read from our card into the line disciplines
2036 * buffer for translation if necessary.
2037 */
Alan Coxf2cf8e22005-09-06 15:16:44 -07002038 memcpy_fromio(rptr, ch->rxptr + tail, dataToRead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 tail = (tail + dataToRead) & wrapmask;
2040 bytesAvailable -= dataToRead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 } /* End while there is data on the card */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 globalwinon(ch);
Alan Coxf2cf8e22005-09-06 15:16:44 -07002043 writew(tail, &bc->rout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 /* Must be called with global data */
Alan Cox52d41732008-07-16 21:55:02 +01002045 tty_schedule_flip(ch->port.tty);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002046}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002048static int info_ioctl(struct tty_struct *tty, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 unsigned int cmd, unsigned long arg)
2050{
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002051 switch (cmd) {
2052 case DIGI_GETINFO:
2053 {
2054 struct digi_info di;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 int brd;
2056
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002057 if (get_user(brd, (unsigned int __user *)arg))
Alan Coxf2cf8e22005-09-06 15:16:44 -07002058 return -EFAULT;
2059 if (brd < 0 || brd >= num_cards || num_cards == 0)
2060 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
2062 memset(&di, 0, sizeof(di));
2063
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002064 di.board = brd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 di.status = boards[brd].status;
2066 di.type = boards[brd].type ;
2067 di.numports = boards[brd].numports ;
Alan Coxf2cf8e22005-09-06 15:16:44 -07002068 /* Legacy fixups - just move along nothing to see */
2069 di.port = (unsigned char *)boards[brd].port ;
2070 di.membase = (unsigned char *)boards[brd].membase ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002072 if (copy_to_user((void __user *)arg, &di, sizeof(di)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 return -EFAULT;
2074 break;
2075
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002078 case DIGI_POLLER:
2079 {
2080 int brd = arg & 0xff000000 >> 16;
2081 unsigned char state = arg & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
Alan Coxf2cf8e22005-09-06 15:16:44 -07002083 if (brd < 0 || brd >= num_cards) {
2084 printk(KERN_ERR "epca: DIGI POLLER : brd not valid!\n");
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002085 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 }
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002087 digi_poller_inhibited = state;
2088 break;
2089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002091 case DIGI_INIT:
2092 {
2093 /*
2094 * This call is made by the apps to complete the
Joe Perches8dfba4d2008-02-03 17:11:42 +02002095 * initialization of the board(s). This routine is
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002096 * responsible for setting the card to its initial
2097 * state and setting the drivers control fields to the
2098 * sutianle settings for the card in question.
2099 */
2100 int crd;
2101 for (crd = 0; crd < num_cards; crd++)
2102 post_fep_init(crd);
2103 break;
2104 }
2105 default:
2106 return -ENOTTY;
2107 }
2108 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
2111static int pc_tiocmget(struct tty_struct *tty, struct file *file)
2112{
Alan Coxc9f19e92009-01-02 13:47:26 +00002113 struct channel *ch = tty->driver_data;
Al Virobc9a5152005-09-15 22:53:28 +01002114 struct board_chan __iomem *bc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 unsigned int mstat, mflag = 0;
2116 unsigned long flags;
2117
2118 if (ch)
2119 bc = ch->brdchan;
2120 else
Alan Coxf2cf8e22005-09-06 15:16:44 -07002121 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
Alan Coxf2cf8e22005-09-06 15:16:44 -07002123 spin_lock_irqsave(&epca_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 globalwinon(ch);
Alan Coxf2cf8e22005-09-06 15:16:44 -07002125 mstat = readb(&bc->mstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 memoff(ch);
Alan Coxf2cf8e22005-09-06 15:16:44 -07002127 spin_unlock_irqrestore(&epca_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
2129 if (mstat & ch->m_dtr)
2130 mflag |= TIOCM_DTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 if (mstat & ch->m_rts)
2132 mflag |= TIOCM_RTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 if (mstat & ch->m_cts)
2134 mflag |= TIOCM_CTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 if (mstat & ch->dsr)
2136 mflag |= TIOCM_DSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 if (mstat & ch->m_ri)
2138 mflag |= TIOCM_RI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 if (mstat & ch->dcd)
2140 mflag |= TIOCM_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 return mflag;
2142}
2143
2144static int pc_tiocmset(struct tty_struct *tty, struct file *file,
2145 unsigned int set, unsigned int clear)
2146{
Alan Coxc9f19e92009-01-02 13:47:26 +00002147 struct channel *ch = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 unsigned long flags;
2149
Alan Coxf2cf8e22005-09-06 15:16:44 -07002150 if (!ch)
2151 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Alan Coxf2cf8e22005-09-06 15:16:44 -07002153 spin_lock_irqsave(&epca_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 /*
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002155 * I think this modemfake stuff is broken. It doesn't correctly reflect
2156 * the behaviour desired by the TIOCM* ioctls. Therefore this is
2157 * probably broken.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 */
2159 if (set & TIOCM_RTS) {
2160 ch->modemfake |= ch->m_rts;
2161 ch->modem |= ch->m_rts;
2162 }
2163 if (set & TIOCM_DTR) {
2164 ch->modemfake |= ch->m_dtr;
2165 ch->modem |= ch->m_dtr;
2166 }
2167 if (clear & TIOCM_RTS) {
2168 ch->modemfake |= ch->m_rts;
2169 ch->modem &= ~ch->m_rts;
2170 }
2171 if (clear & TIOCM_DTR) {
2172 ch->modemfake |= ch->m_dtr;
2173 ch->modem &= ~ch->m_dtr;
2174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 globalwinon(ch);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002176 /*
2177 * The below routine generally sets up parity, baud, flow control
2178 * issues, etc.... It effect both control flags and input flags.
2179 */
Alan Cox191260a2008-04-30 00:54:16 -07002180 epcaparam(tty, ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 memoff(ch);
Alan Coxf2cf8e22005-09-06 15:16:44 -07002182 spin_unlock_irqrestore(&epca_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 return 0;
2184}
2185
Alan Cox191260a2008-04-30 00:54:16 -07002186static int pc_ioctl(struct tty_struct *tty, struct file *file,
2187 unsigned int cmd, unsigned long arg)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002188{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 digiflow_t dflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 unsigned long flags;
2191 unsigned int mflag, mstat;
2192 unsigned char startc, stopc;
Al Virobc9a5152005-09-15 22:53:28 +01002193 struct board_chan __iomem *bc;
Alan Coxc9f19e92009-01-02 13:47:26 +00002194 struct channel *ch = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 void __user *argp = (void __user *)arg;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002196
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 if (ch)
2198 bc = ch->brdchan;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002199 else
Alan Coxf2cf8e22005-09-06 15:16:44 -07002200 return -EINVAL;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002201 switch (cmd) {
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002202 case TIOCMODG:
2203 mflag = pc_tiocmget(tty, file);
2204 if (put_user(mflag, (unsigned long __user *)argp))
2205 return -EFAULT;
2206 break;
2207 case TIOCMODS:
2208 if (get_user(mstat, (unsigned __user *)argp))
2209 return -EFAULT;
2210 return pc_tiocmset(tty, file, mstat, ~mstat);
2211 case TIOCSDTR:
2212 spin_lock_irqsave(&epca_lock, flags);
2213 ch->omodem |= ch->m_dtr;
2214 globalwinon(ch);
2215 fepcmd(ch, SETMODEM, ch->m_dtr, 0, 10, 1);
2216 memoff(ch);
2217 spin_unlock_irqrestore(&epca_lock, flags);
2218 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002220 case TIOCCDTR:
2221 spin_lock_irqsave(&epca_lock, flags);
2222 ch->omodem &= ~ch->m_dtr;
2223 globalwinon(ch);
2224 fepcmd(ch, SETMODEM, 0, ch->m_dtr, 10, 1);
2225 memoff(ch);
2226 spin_unlock_irqrestore(&epca_lock, flags);
2227 break;
2228 case DIGI_GETA:
2229 if (copy_to_user(argp, &ch->digiext, sizeof(digi_t)))
2230 return -EFAULT;
2231 break;
2232 case DIGI_SETAW:
2233 case DIGI_SETAF:
Alan Cox37925e02008-04-30 00:53:17 -07002234 lock_kernel();
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002235 if (cmd == DIGI_SETAW) {
Alan Cox191260a2008-04-30 00:54:16 -07002236 /* Setup an event to indicate when the transmit
2237 buffer empties */
Alan Coxf2cf8e22005-09-06 15:16:44 -07002238 spin_lock_irqsave(&epca_lock, flags);
Alan Cox191260a2008-04-30 00:54:16 -07002239 setup_empty_event(tty, ch);
Alan Coxf2cf8e22005-09-06 15:16:44 -07002240 spin_unlock_irqrestore(&epca_lock, flags);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002241 tty_wait_until_sent(tty, 0);
2242 } else {
2243 /* ldisc lock already held in ioctl */
Alan Coxa352def2008-07-16 21:53:12 +01002244 if (tty->ldisc.ops->flush_buffer)
2245 tty->ldisc.ops->flush_buffer(tty);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002246 }
Alan Cox37925e02008-04-30 00:53:17 -07002247 unlock_kernel();
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002248 /* Fall Thru */
2249 case DIGI_SETA:
2250 if (copy_from_user(&ch->digiext, argp, sizeof(digi_t)))
2251 return -EFAULT;
2252
2253 if (ch->digiext.digi_flags & DIGI_ALTPIN) {
2254 ch->dcd = ch->m_dsr;
2255 ch->dsr = ch->m_dcd;
2256 } else {
2257 ch->dcd = ch->m_dcd;
2258 ch->dsr = ch->m_dsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 }
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002260
2261 spin_lock_irqsave(&epca_lock, flags);
2262 globalwinon(ch);
2263
2264 /*
2265 * The below routine generally sets up parity, baud, flow
2266 * control issues, etc.... It effect both control flags and
2267 * input flags.
2268 */
Alan Cox191260a2008-04-30 00:54:16 -07002269 epcaparam(tty, ch);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002270 memoff(ch);
2271 spin_unlock_irqrestore(&epca_lock, flags);
2272 break;
2273
2274 case DIGI_GETFLOW:
2275 case DIGI_GETAFLOW:
2276 spin_lock_irqsave(&epca_lock, flags);
2277 globalwinon(ch);
2278 if (cmd == DIGI_GETFLOW) {
2279 dflow.startc = readb(&bc->startc);
2280 dflow.stopc = readb(&bc->stopc);
2281 } else {
2282 dflow.startc = readb(&bc->startca);
2283 dflow.stopc = readb(&bc->stopca);
2284 }
2285 memoff(ch);
2286 spin_unlock_irqrestore(&epca_lock, flags);
2287
2288 if (copy_to_user(argp, &dflow, sizeof(dflow)))
2289 return -EFAULT;
2290 break;
2291
2292 case DIGI_SETAFLOW:
2293 case DIGI_SETFLOW:
2294 if (cmd == DIGI_SETFLOW) {
2295 startc = ch->startc;
2296 stopc = ch->stopc;
2297 } else {
2298 startc = ch->startca;
2299 stopc = ch->stopca;
2300 }
2301
2302 if (copy_from_user(&dflow, argp, sizeof(dflow)))
2303 return -EFAULT;
2304
Alan Cox191260a2008-04-30 00:54:16 -07002305 if (dflow.startc != startc || dflow.stopc != stopc) {
2306 /* Begin if setflow toggled */
Alan Coxf2cf8e22005-09-06 15:16:44 -07002307 spin_lock_irqsave(&epca_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 globalwinon(ch);
2309
Alan Coxf2cf8e22005-09-06 15:16:44 -07002310 if (cmd == DIGI_SETFLOW) {
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002311 ch->fepstartc = ch->startc = dflow.startc;
2312 ch->fepstopc = ch->stopc = dflow.stopc;
Alan Cox191260a2008-04-30 00:54:16 -07002313 fepcmd(ch, SONOFFC, ch->fepstartc,
2314 ch->fepstopc, 0, 1);
Alan Coxf2cf8e22005-09-06 15:16:44 -07002315 } else {
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002316 ch->fepstartca = ch->startca = dflow.startc;
2317 ch->fepstopca = ch->stopca = dflow.stopc;
Alan Cox191260a2008-04-30 00:54:16 -07002318 fepcmd(ch, SAUXONOFFC, ch->fepstartca,
2319 ch->fepstopca, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 }
2321
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002322 if (ch->statusflags & TXSTOPPED)
2323 pc_start(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002325 memoff(ch);
2326 spin_unlock_irqrestore(&epca_lock, flags);
2327 } /* End if setflow toggled */
2328 break;
2329 default:
2330 return -ENOIOCTLCMD;
2331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 return 0;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002333}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
Alan Cox606d0992006-12-08 02:38:45 -08002335static void pc_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002336{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 struct channel *ch;
2338 unsigned long flags;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002339 /*
2340 * verifyChannel returns the channel from the tty struct if it is
2341 * valid. This serves as a sanity check.
2342 */
Alan Cox191260a2008-04-30 00:54:16 -07002343 ch = verifyChannel(tty);
2344
2345 if (ch != NULL) { /* Begin if channel valid */
Alan Coxf2cf8e22005-09-06 15:16:44 -07002346 spin_lock_irqsave(&epca_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 globalwinon(ch);
2348 epcaparam(tty, ch);
2349 memoff(ch);
Alan Coxf2cf8e22005-09-06 15:16:44 -07002350 spin_unlock_irqrestore(&epca_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
2352 if ((old_termios->c_cflag & CRTSCTS) &&
2353 ((tty->termios->c_cflag & CRTSCTS) == 0))
2354 tty->hw_stopped = 0;
2355
2356 if (!(old_termios->c_cflag & CLOCAL) &&
2357 (tty->termios->c_cflag & CLOCAL))
Alan Cox52d41732008-07-16 21:55:02 +01002358 wake_up_interruptible(&ch->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 } /* End if channel valid */
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002361}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
David Howellsc4028952006-11-22 14:57:56 +00002363static void do_softint(struct work_struct *work)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002364{
David Howellsc4028952006-11-22 14:57:56 +00002365 struct channel *ch = container_of(work, struct channel, tqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 /* Called in response to a modem change event */
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002367 if (ch && ch->magic == EPCA_MAGIC) {
Alan Cox52d41732008-07-16 21:55:02 +01002368 struct tty_struct *tty = ch->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
Alan Coxf2cf8e22005-09-06 15:16:44 -07002370 if (tty && tty->driver_data) {
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002371 if (test_and_clear_bit(EPCA_EVENT_HANGUP, &ch->event)) {
Alan Cox191260a2008-04-30 00:54:16 -07002372 tty_hangup(tty);
Alan Cox52d41732008-07-16 21:55:02 +01002373 wake_up_interruptible(&ch->port.open_wait);
2374 ch->port.flags &= ~ASYNC_NORMAL_ACTIVE;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 }
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002377 }
2378}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002380/*
2381 * pc_stop and pc_start provide software flow control to the routine and the
2382 * pc_ioctl routine.
2383 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384static void pc_stop(struct tty_struct *tty)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002385{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 struct channel *ch;
2387 unsigned long flags;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002388 /*
2389 * verifyChannel returns the channel from the tty struct if it is
2390 * valid. This serves as a sanity check.
2391 */
Alan Cox191260a2008-04-30 00:54:16 -07002392 ch = verifyChannel(tty);
2393 if (ch != NULL) {
Alan Coxf2cf8e22005-09-06 15:16:44 -07002394 spin_lock_irqsave(&epca_lock, flags);
Alan Cox191260a2008-04-30 00:54:16 -07002395 if ((ch->statusflags & TXSTOPPED) == 0) {
2396 /* Begin if transmit stop requested */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 globalwinon(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 /* STOP transmitting now !! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 fepcmd(ch, PAUSETX, 0, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 ch->statusflags |= TXSTOPPED;
2401 memoff(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 } /* End if transmit stop requested */
Alan Coxf2cf8e22005-09-06 15:16:44 -07002403 spin_unlock_irqrestore(&epca_lock, flags);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002404 }
2405}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
2407static void pc_start(struct tty_struct *tty)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002408{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 struct channel *ch;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002410 /*
2411 * verifyChannel returns the channel from the tty struct if it is
2412 * valid. This serves as a sanity check.
2413 */
Alan Cox191260a2008-04-30 00:54:16 -07002414 ch = verifyChannel(tty);
2415 if (ch != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 unsigned long flags;
Alan Coxf2cf8e22005-09-06 15:16:44 -07002417 spin_lock_irqsave(&epca_lock, flags);
Alan Cox191260a2008-04-30 00:54:16 -07002418 /* Just in case output was resumed because of a change
2419 in Digi-flow */
2420 if (ch->statusflags & TXSTOPPED) {
2421 /* Begin transmit resume requested */
Al Virobc9a5152005-09-15 22:53:28 +01002422 struct board_chan __iomem *bc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 globalwinon(ch);
2424 bc = ch->brdchan;
2425 if (ch->statusflags & LOWWAIT)
Alan Coxf2cf8e22005-09-06 15:16:44 -07002426 writeb(1, &bc->ilow);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 /* Okay, you can start transmitting again... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 fepcmd(ch, RESUMETX, 0, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 ch->statusflags &= ~TXSTOPPED;
2430 memoff(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 } /* End transmit resume requested */
Alan Coxf2cf8e22005-09-06 15:16:44 -07002432 spin_unlock_irqrestore(&epca_lock, flags);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002433 }
2434}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002436/*
2437 * The below routines pc_throttle and pc_unthrottle are used to slow (And
2438 * resume) the receipt of data into the kernels receive buffers. The exact
2439 * occurrence of this depends on the size of the kernels receive buffer and
2440 * what the 'watermarks' are set to for that buffer. See the n_ttys.c file for
2441 * more details.
2442 */
2443static void pc_throttle(struct tty_struct *tty)
2444{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 struct channel *ch;
2446 unsigned long flags;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002447 /*
2448 * verifyChannel returns the channel from the tty struct if it is
2449 * valid. This serves as a sanity check.
2450 */
Alan Cox191260a2008-04-30 00:54:16 -07002451 ch = verifyChannel(tty);
2452 if (ch != NULL) {
Alan Coxf2cf8e22005-09-06 15:16:44 -07002453 spin_lock_irqsave(&epca_lock, flags);
2454 if ((ch->statusflags & RXSTOPPED) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 globalwinon(ch);
2456 fepcmd(ch, PAUSERX, 0, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 ch->statusflags |= RXSTOPPED;
2458 memoff(ch);
2459 }
Alan Coxf2cf8e22005-09-06 15:16:44 -07002460 spin_unlock_irqrestore(&epca_lock, flags);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002461 }
2462}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463
2464static void pc_unthrottle(struct tty_struct *tty)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002465{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 struct channel *ch;
2467 unsigned long flags;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002468 /*
2469 * verifyChannel returns the channel from the tty struct if it is
2470 * valid. This serves as a sanity check.
2471 */
Alan Cox191260a2008-04-30 00:54:16 -07002472 ch = verifyChannel(tty);
2473 if (ch != NULL) {
2474 /* Just in case output was resumed because of a change
2475 in Digi-flow */
Alan Coxf2cf8e22005-09-06 15:16:44 -07002476 spin_lock_irqsave(&epca_lock, flags);
2477 if (ch->statusflags & RXSTOPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 globalwinon(ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 fepcmd(ch, RESUMERX, 0, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 ch->statusflags &= ~RXSTOPPED;
2481 memoff(ch);
2482 }
Alan Coxf2cf8e22005-09-06 15:16:44 -07002483 spin_unlock_irqrestore(&epca_lock, flags);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002484 }
2485}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
Alan Coxdcbf1282008-07-22 11:18:12 +01002487static int pc_send_break(struct tty_struct *tty, int msec)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002488{
Alan Coxc9f19e92009-01-02 13:47:26 +00002489 struct channel *ch = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 unsigned long flags;
2491
Alan Coxdcbf1282008-07-22 11:18:12 +01002492 if (msec == -1)
Alan Cox252883e2008-10-17 20:28:25 +01002493 msec = 0xFFFF;
2494 else if (msec > 0xFFFE)
2495 msec = 0xFFFE;
2496 else if (msec < 1)
2497 msec = 1;
Alan Coxdcbf1282008-07-22 11:18:12 +01002498
Alan Coxf2cf8e22005-09-06 15:16:44 -07002499 spin_lock_irqsave(&epca_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 globalwinon(ch);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002501 /*
2502 * Maybe I should send an infinite break here, schedule() for msec
2503 * amount of time, and then stop the break. This way, the user can't
2504 * screw up the FEP by causing digi_send_break() to be called (i.e. via
2505 * an ioctl()) more than once in msec amount of time.
2506 * Try this for now...
2507 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 fepcmd(ch, SENDBREAK, msec, 0, 10, 0);
2509 memoff(ch);
Alan Coxf2cf8e22005-09-06 15:16:44 -07002510 spin_unlock_irqrestore(&epca_lock, flags);
Alan Coxdcbf1282008-07-22 11:18:12 +01002511 return 0;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002512}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513
Alan Coxf2cf8e22005-09-06 15:16:44 -07002514/* Caller MUST hold the lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515static void setup_empty_event(struct tty_struct *tty, struct channel *ch)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002516{
Al Virobc9a5152005-09-15 22:53:28 +01002517 struct board_chan __iomem *bc = ch->brdchan;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 globalwinon(ch);
2520 ch->statusflags |= EMPTYWAIT;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002521 /*
2522 * When set the iempty flag request a event to be generated when the
2523 * transmit buffer is empty (If there is no BREAK in progress).
2524 */
Alan Coxf2cf8e22005-09-06 15:16:44 -07002525 writeb(1, &bc->iempty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 memoff(ch);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002527}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
David Howells88e88242008-07-22 11:20:45 +01002529#ifndef MODULE
2530static void __init epca_setup(char *str, int *ints)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002531{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 struct board_info board;
2533 int index, loop, last;
2534 char *temp, *t2;
2535 unsigned len;
2536
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002537 /*
2538 * If this routine looks a little strange it is because it is only
2539 * called if a LILO append command is given to boot the kernel with
2540 * parameters. In this way, we can provide the user a method of
2541 * changing his board configuration without rebuilding the kernel.
2542 */
2543 if (!liloconfig)
2544 liloconfig = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
2546 memset(&board, 0, sizeof(board));
2547
2548 /* Assume the data is int first, later we can change it */
2549 /* I think that array position 0 of ints holds the number of args */
2550 for (last = 0, index = 1; index <= ints[0]; index++)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002551 switch (index) { /* Begin parse switch */
2552 case 1:
2553 board.status = ints[index];
2554 /*
2555 * We check for 2 (As opposed to 1; because 2 is a flag
2556 * instructing the driver to ignore epcaconfig.) For
2557 * this reason we check for 2.
2558 */
Alan Cox191260a2008-04-30 00:54:16 -07002559 if (board.status == 2) {
2560 /* Begin ignore epcaconfig as well as lilo cmd line */
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002561 nbdevs = 0;
2562 num_cards = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 return;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002564 } /* End ignore epcaconfig as well as lilo cmd line */
2565
2566 if (board.status > 2) {
Alan Cox191260a2008-04-30 00:54:16 -07002567 printk(KERN_ERR "epca_setup: Invalid board status 0x%x\n",
2568 board.status);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002569 invalid_lilo_config = 1;
2570 setup_error_code |= INVALID_BOARD_STATUS;
2571 return;
2572 }
2573 last = index;
2574 break;
2575 case 2:
2576 board.type = ints[index];
2577 if (board.type >= PCIXEM) {
2578 printk(KERN_ERR "epca_setup: Invalid board type 0x%x\n", board.type);
2579 invalid_lilo_config = 1;
2580 setup_error_code |= INVALID_BOARD_TYPE;
2581 return;
2582 }
2583 last = index;
2584 break;
2585 case 3:
2586 board.altpin = ints[index];
2587 if (board.altpin > 1) {
2588 printk(KERN_ERR "epca_setup: Invalid board altpin 0x%x\n", board.altpin);
2589 invalid_lilo_config = 1;
2590 setup_error_code |= INVALID_ALTPIN;
2591 return;
2592 }
2593 last = index;
2594 break;
2595
2596 case 4:
2597 board.numports = ints[index];
2598 if (board.numports < 2 || board.numports > 256) {
2599 printk(KERN_ERR "epca_setup: Invalid board numports 0x%x\n", board.numports);
2600 invalid_lilo_config = 1;
2601 setup_error_code |= INVALID_NUM_PORTS;
2602 return;
2603 }
2604 nbdevs += board.numports;
2605 last = index;
2606 break;
2607
2608 case 5:
2609 board.port = ints[index];
2610 if (ints[index] <= 0) {
2611 printk(KERN_ERR "epca_setup: Invalid io port 0x%x\n", (unsigned int)board.port);
2612 invalid_lilo_config = 1;
2613 setup_error_code |= INVALID_PORT_BASE;
2614 return;
2615 }
2616 last = index;
2617 break;
2618
2619 case 6:
2620 board.membase = ints[index];
2621 if (ints[index] <= 0) {
Alan Cox191260a2008-04-30 00:54:16 -07002622 printk(KERN_ERR "epca_setup: Invalid memory base 0x%x\n",
2623 (unsigned int)board.membase);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002624 invalid_lilo_config = 1;
2625 setup_error_code |= INVALID_MEM_BASE;
2626 return;
2627 }
2628 last = index;
2629 break;
2630
2631 default:
2632 printk(KERN_ERR "<Error> - epca_setup: Too many integer parms\n");
2633 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
2635 } /* End parse switch */
2636
Alan Coxf2cf8e22005-09-06 15:16:44 -07002637 while (str && *str) { /* Begin while there is a string arg */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 /* find the next comma or terminator */
2639 temp = str;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 /* While string is not null, and a comma hasn't been found */
2641 while (*temp && (*temp != ','))
2642 temp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 if (!*temp)
2644 temp = NULL;
2645 else
2646 *temp++ = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 /* Set index to the number of args + 1 */
2648 index = last + 1;
2649
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002650 switch (index) {
2651 case 1:
2652 len = strlen(str);
2653 if (strncmp("Disable", str, len) == 0)
2654 board.status = 0;
2655 else if (strncmp("Enable", str, len) == 0)
2656 board.status = 1;
2657 else {
2658 printk(KERN_ERR "epca_setup: Invalid status %s\n", str);
2659 invalid_lilo_config = 1;
2660 setup_error_code |= INVALID_BOARD_STATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 return;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002662 }
2663 last = index;
2664 break;
2665
2666 case 2:
2667 for (loop = 0; loop < EPCA_NUM_TYPES; loop++)
2668 if (strcmp(board_desc[loop], str) == 0)
2669 break;
2670 /*
2671 * If the index incremented above refers to a
2672 * legitamate board type set it here.
2673 */
2674 if (index < EPCA_NUM_TYPES)
2675 board.type = loop;
2676 else {
2677 printk(KERN_ERR "epca_setup: Invalid board type: %s\n", str);
2678 invalid_lilo_config = 1;
2679 setup_error_code |= INVALID_BOARD_TYPE;
2680 return;
2681 }
2682 last = index;
2683 break;
2684
2685 case 3:
2686 len = strlen(str);
2687 if (strncmp("Disable", str, len) == 0)
2688 board.altpin = 0;
2689 else if (strncmp("Enable", str, len) == 0)
2690 board.altpin = 1;
2691 else {
2692 printk(KERN_ERR "epca_setup: Invalid altpin %s\n", str);
2693 invalid_lilo_config = 1;
2694 setup_error_code |= INVALID_ALTPIN;
2695 return;
2696 }
2697 last = index;
2698 break;
2699
2700 case 4:
2701 t2 = str;
2702 while (isdigit(*t2))
2703 t2++;
2704
2705 if (*t2) {
2706 printk(KERN_ERR "epca_setup: Invalid port count %s\n", str);
2707 invalid_lilo_config = 1;
2708 setup_error_code |= INVALID_NUM_PORTS;
2709 return;
2710 }
2711
2712 /*
2713 * There is not a man page for simple_strtoul but the
2714 * code can be found in vsprintf.c. The first argument
2715 * is the string to translate (To an unsigned long
2716 * obviously), the second argument can be the address
2717 * of any character variable or a NULL. If a variable
2718 * is given, the end pointer of the string will be
2719 * stored in that variable; if a NULL is given the end
2720 * pointer will not be returned. The last argument is
2721 * the base to use. If a 0 is indicated, the routine
2722 * will attempt to determine the proper base by looking
2723 * at the values prefix (A '0' for octal, a 'x' for
2724 * hex, etc ... If a value is given it will use that
2725 * value as the base.
2726 */
2727 board.numports = simple_strtoul(str, NULL, 0);
2728 nbdevs += board.numports;
2729 last = index;
2730 break;
2731
2732 case 5:
2733 t2 = str;
2734 while (isxdigit(*t2))
2735 t2++;
2736
2737 if (*t2) {
2738 printk(KERN_ERR "epca_setup: Invalid i/o address %s\n", str);
2739 invalid_lilo_config = 1;
2740 setup_error_code |= INVALID_PORT_BASE;
2741 return;
2742 }
2743
2744 board.port = simple_strtoul(str, NULL, 16);
2745 last = index;
2746 break;
2747
2748 case 6:
2749 t2 = str;
2750 while (isxdigit(*t2))
2751 t2++;
2752
2753 if (*t2) {
Alan Cox191260a2008-04-30 00:54:16 -07002754 printk(KERN_ERR "epca_setup: Invalid memory base %s\n", str);
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002755 invalid_lilo_config = 1;
2756 setup_error_code |= INVALID_MEM_BASE;
2757 return;
2758 }
2759 board.membase = simple_strtoul(str, NULL, 16);
2760 last = index;
2761 break;
2762 default:
2763 printk(KERN_ERR "epca: Too many string parms\n");
2764 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 }
2766 str = temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 } /* End while there is a string arg */
2768
Alan Coxf2cf8e22005-09-06 15:16:44 -07002769 if (last < 6) {
2770 printk(KERN_ERR "epca: Insufficient parms specified\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 return;
2772 }
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002773
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 /* I should REALLY validate the stuff here */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 /* Copies our local copy of board into boards */
Alan Cox191260a2008-04-30 00:54:16 -07002776 memcpy((void *)&boards[num_cards], (void *)&board, sizeof(board));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 /* Does this get called once per lilo arg are what ? */
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002778 printk(KERN_INFO "PC/Xx: Added board %i, %s %i ports at 0x%4.4X base 0x%6.6X\n",
2779 num_cards, board_desc[board.type],
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 board.numports, (int)board.port, (unsigned int) board.membase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 num_cards++;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002782}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
David Howells88e88242008-07-22 11:20:45 +01002784static int __init epca_real_setup(char *str)
2785{
2786 int ints[11];
2787
2788 epca_setup(get_options(str, 11, ints), ints);
2789 return 1;
2790}
2791
2792__setup("digiepca", epca_real_setup);
2793#endif
2794
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795enum epic_board_types {
2796 brd_xr = 0,
2797 brd_xem,
2798 brd_cx,
2799 brd_xrj,
2800};
2801
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802/* indexed directly by epic_board_types enum */
2803static struct {
2804 unsigned char board_type;
2805 unsigned bar_idx; /* PCI base address region */
2806} epca_info_tbl[] = {
2807 { PCIXR, 0, },
2808 { PCIXEM, 0, },
2809 { PCICX, 0, },
2810 { PCIXRJ, 2, },
2811};
2812
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002813static int __devinit epca_init_one(struct pci_dev *pdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 const struct pci_device_id *ent)
2815{
2816 static int board_num = -1;
2817 int board_idx, info_idx = ent->driver_data;
2818 unsigned long addr;
2819
2820 if (pci_enable_device(pdev))
2821 return -EIO;
2822
2823 board_num++;
2824 board_idx = board_num + num_cards;
2825 if (board_idx >= MAXBOARDS)
2826 goto err_out;
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002827
Alan Cox191260a2008-04-30 00:54:16 -07002828 addr = pci_resource_start(pdev, epca_info_tbl[info_idx].bar_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 if (!addr) {
Alan Cox191260a2008-04-30 00:54:16 -07002830 printk(KERN_ERR PFX "PCI region #%d not available (size 0)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 epca_info_tbl[info_idx].bar_idx);
2832 goto err_out;
2833 }
2834
2835 boards[board_idx].status = ENABLED;
2836 boards[board_idx].type = epca_info_tbl[info_idx].board_type;
2837 boards[board_idx].numports = 0x0;
Alan Coxf2cf8e22005-09-06 15:16:44 -07002838 boards[board_idx].port = addr + PCI_IO_OFFSET;
2839 boards[board_idx].membase = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840
Alan Cox191260a2008-04-30 00:54:16 -07002841 if (!request_mem_region(addr + PCI_IO_OFFSET, 0x200000, "epca")) {
2842 printk(KERN_ERR PFX "resource 0x%x @ 0x%lx unavailable\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 0x200000, addr + PCI_IO_OFFSET);
2844 goto err_out;
2845 }
2846
Alan Cox191260a2008-04-30 00:54:16 -07002847 boards[board_idx].re_map_port = ioremap_nocache(addr + PCI_IO_OFFSET,
2848 0x200000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 if (!boards[board_idx].re_map_port) {
Alan Cox191260a2008-04-30 00:54:16 -07002850 printk(KERN_ERR PFX "cannot map 0x%x @ 0x%lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 0x200000, addr + PCI_IO_OFFSET);
2852 goto err_out_free_pciio;
2853 }
2854
Alan Cox191260a2008-04-30 00:54:16 -07002855 if (!request_mem_region(addr, 0x200000, "epca")) {
2856 printk(KERN_ERR PFX "resource 0x%x @ 0x%lx unavailable\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 0x200000, addr);
2858 goto err_out_free_iounmap;
2859 }
2860
Alan Cox191260a2008-04-30 00:54:16 -07002861 boards[board_idx].re_map_membase = ioremap_nocache(addr, 0x200000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 if (!boards[board_idx].re_map_membase) {
Alan Cox191260a2008-04-30 00:54:16 -07002863 printk(KERN_ERR PFX "cannot map 0x%x @ 0x%lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 0x200000, addr + PCI_IO_OFFSET);
2865 goto err_out_free_memregion;
2866 }
2867
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002868 /*
2869 * I don't know what the below does, but the hardware guys say its
2870 * required on everything except PLX (In this case XRJ).
2871 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 if (info_idx != brd_xrj) {
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002873 pci_write_config_byte(pdev, 0x40, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 pci_write_config_byte(pdev, 0x46, 0);
2875 }
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002876
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 return 0;
2878
2879err_out_free_memregion:
Alan Cox191260a2008-04-30 00:54:16 -07002880 release_mem_region(addr, 0x200000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881err_out_free_iounmap:
Alan Cox191260a2008-04-30 00:54:16 -07002882 iounmap(boards[board_idx].re_map_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883err_out_free_pciio:
Alan Cox191260a2008-04-30 00:54:16 -07002884 release_mem_region(addr + PCI_IO_OFFSET, 0x200000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885err_out:
2886 return -ENODEV;
2887}
2888
2889
2890static struct pci_device_id epca_pci_tbl[] = {
2891 { PCI_VENDOR_DIGI, PCI_DEVICE_XR, PCI_ANY_ID, PCI_ANY_ID, 0, 0, brd_xr },
2892 { PCI_VENDOR_DIGI, PCI_DEVICE_XEM, PCI_ANY_ID, PCI_ANY_ID, 0, 0, brd_xem },
2893 { PCI_VENDOR_DIGI, PCI_DEVICE_CX, PCI_ANY_ID, PCI_ANY_ID, 0, 0, brd_cx },
2894 { PCI_VENDOR_DIGI, PCI_DEVICE_XRJ, PCI_ANY_ID, PCI_ANY_ID, 0, 0, brd_xrj },
2895 { 0, }
2896};
2897
2898MODULE_DEVICE_TABLE(pci, epca_pci_tbl);
2899
Harvey Harrison11fb09b2008-04-30 00:53:52 -07002900static int __init init_PCI(void)
Alexey Dobriyanae0b78d2007-10-16 23:26:37 -07002901{
Alan Cox191260a2008-04-30 00:54:16 -07002902 memset(&epca_driver, 0, sizeof(epca_driver));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 epca_driver.name = "epca";
2904 epca_driver.id_table = epca_pci_tbl;
2905 epca_driver.probe = epca_init_one;
2906
2907 return pci_register_driver(&epca_driver);
Alan Coxf2cf8e22005-09-06 15:16:44 -07002908}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
2910MODULE_LICENSE("GPL");