]>
Commit | Line | Data |
---|---|---|
1da177e4 | 1 | /* |
1da177e4 | 2 | Copyright (C) 1996 Digi International. |
ae0b78d0 | 3 | |
1da177e4 LT |
4 | For technical support please email [email protected] or |
5 | call Digi tech support at (612) 912-3456 | |
6 | ||
f2cf8e25 AC |
7 | ** This driver is no longer supported by Digi ** |
8 | ||
ae0b78d0 AD |
9 | 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. | |
12 | ||
13 | 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. | |
1da177e4 | 17 | |
ae0b78d0 AD |
18 | 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. | |
22 | ||
23 | 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 | */ | |
27 | /* See README.epca for change history --DAT*/ | |
1da177e4 | 28 | |
1da177e4 LT |
29 | #include <linux/module.h> |
30 | #include <linux/kernel.h> | |
31 | #include <linux/types.h> | |
32 | #include <linux/init.h> | |
d43c36dc | 33 | #include <linux/sched.h> |
1da177e4 LT |
34 | #include <linux/serial.h> |
35 | #include <linux/delay.h> | |
36 | #include <linux/ctype.h> | |
37 | #include <linux/tty.h> | |
38 | #include <linux/tty_flip.h> | |
39 | #include <linux/slab.h> | |
405f5571 | 40 | #include <linux/smp_lock.h> |
1da177e4 LT |
41 | #include <linux/ioport.h> |
42 | #include <linux/interrupt.h> | |
191260a0 AC |
43 | #include <linux/uaccess.h> |
44 | #include <linux/io.h> | |
f2cf8e25 | 45 | #include <linux/spinlock.h> |
1da177e4 LT |
46 | #include <linux/pci.h> |
47 | #include "digiPCI.h" | |
f2cf8e25 | 48 | |
1da177e4 LT |
49 | |
50 | #include "digi1.h" | |
51 | #include "digiFep1.h" | |
52 | #include "epca.h" | |
53 | #include "epcaconfig.h" | |
54 | ||
f2cf8e25 | 55 | #define VERSION "1.3.0.1-LK2.6" |
1da177e4 LT |
56 | |
57 | /* This major needs to be submitted to Linux to join the majors list */ | |
ae0b78d0 | 58 | #define DIGIINFOMAJOR 35 /* For Digi specific ioctl */ |
1da177e4 LT |
59 | |
60 | ||
61 | #define MAXCARDS 7 | |
62 | #define epcaassert(x, msg) if (!(x)) epca_error(__LINE__, msg) | |
63 | ||
64 | #define PFX "epca: " | |
65 | ||
1da177e4 LT |
66 | static int nbdevs, num_cards, liloconfig; |
67 | static int digi_poller_inhibited = 1 ; | |
68 | ||
69 | static int setup_error_code; | |
70 | static int invalid_lilo_config; | |
71 | ||
ae0b78d0 AD |
72 | /* |
73 | * The ISA boards do window flipping into the same spaces so its only sane with | |
d1c815e5 AC |
74 | * a single lock. It's still pretty efficient. This lock guards the hardware |
75 | * and the tty_port lock guards the kernel side stuff like use counts. Take | |
76 | * this lock inside the port lock if you must take both. | |
ae0b78d0 | 77 | */ |
34af946a | 78 | static DEFINE_SPINLOCK(epca_lock); |
f2cf8e25 | 79 | |
191260a0 AC |
80 | /* MAXBOARDS is typically 12, but ISA and EISA cards are restricted |
81 | to 7 below. */ | |
1da177e4 LT |
82 | static struct board_info boards[MAXBOARDS]; |
83 | ||
1da177e4 LT |
84 | static struct tty_driver *pc_driver; |
85 | static struct tty_driver *pc_info; | |
86 | ||
87 | /* ------------------ Begin Digi specific structures -------------------- */ | |
88 | ||
ae0b78d0 AD |
89 | /* |
90 | * digi_channels represents an array of structures that keep track of each | |
91 | * channel of the Digi product. Information such as transmit and receive | |
92 | * pointers, termio data, and signal definitions (DTR, CTS, etc ...) are stored | |
93 | * here. This structure is NOT used to overlay the cards physical channel | |
94 | * structure. | |
95 | */ | |
1da177e4 LT |
96 | static struct channel digi_channels[MAX_ALLOC]; |
97 | ||
ae0b78d0 AD |
98 | /* |
99 | * card_ptr is an array used to hold the address of the first channel structure | |
100 | * of each card. This array will hold the addresses of various channels located | |
101 | * in digi_channels. | |
102 | */ | |
1da177e4 LT |
103 | static struct channel *card_ptr[MAXCARDS]; |
104 | ||
105 | static struct timer_list epca_timer; | |
106 | ||
ae0b78d0 AD |
107 | /* |
108 | * Begin generic memory functions. These functions will be alias (point at) | |
109 | * more specific functions dependent on the board being configured. | |
110 | */ | |
f2cf8e25 AC |
111 | static void memwinon(struct board_info *b, unsigned int win); |
112 | static void memwinoff(struct board_info *b, unsigned int win); | |
113 | static void globalwinon(struct channel *ch); | |
114 | static void rxwinon(struct channel *ch); | |
115 | static void txwinon(struct channel *ch); | |
116 | static void memoff(struct channel *ch); | |
117 | static void assertgwinon(struct channel *ch); | |
118 | static void assertmemoff(struct channel *ch); | |
1da177e4 LT |
119 | |
120 | /* ---- Begin more 'specific' memory functions for cx_like products --- */ | |
121 | ||
f2cf8e25 AC |
122 | static void pcxem_memwinon(struct board_info *b, unsigned int win); |
123 | static void pcxem_memwinoff(struct board_info *b, unsigned int win); | |
124 | static void pcxem_globalwinon(struct channel *ch); | |
125 | static void pcxem_rxwinon(struct channel *ch); | |
126 | static void pcxem_txwinon(struct channel *ch); | |
127 | static void pcxem_memoff(struct channel *ch); | |
1da177e4 LT |
128 | |
129 | /* ------ Begin more 'specific' memory functions for the pcxe ------- */ | |
130 | ||
f2cf8e25 AC |
131 | static void pcxe_memwinon(struct board_info *b, unsigned int win); |
132 | static void pcxe_memwinoff(struct board_info *b, unsigned int win); | |
133 | static void pcxe_globalwinon(struct channel *ch); | |
134 | static void pcxe_rxwinon(struct channel *ch); | |
135 | static void pcxe_txwinon(struct channel *ch); | |
136 | static void pcxe_memoff(struct channel *ch); | |
1da177e4 LT |
137 | |
138 | /* ---- Begin more 'specific' memory functions for the pc64xe and pcxi ---- */ | |
139 | /* Note : pc64xe and pcxi share the same windowing routines */ | |
140 | ||
f2cf8e25 AC |
141 | static void pcxi_memwinon(struct board_info *b, unsigned int win); |
142 | static void pcxi_memwinoff(struct board_info *b, unsigned int win); | |
143 | static void pcxi_globalwinon(struct channel *ch); | |
144 | static void pcxi_rxwinon(struct channel *ch); | |
145 | static void pcxi_txwinon(struct channel *ch); | |
146 | static void pcxi_memoff(struct channel *ch); | |
1da177e4 LT |
147 | |
148 | /* - Begin 'specific' do nothing memory functions needed for some cards - */ | |
149 | ||
f2cf8e25 AC |
150 | static void dummy_memwinon(struct board_info *b, unsigned int win); |
151 | static void dummy_memwinoff(struct board_info *b, unsigned int win); | |
152 | static void dummy_globalwinon(struct channel *ch); | |
153 | static void dummy_rxwinon(struct channel *ch); | |
154 | static void dummy_txwinon(struct channel *ch); | |
155 | static void dummy_memoff(struct channel *ch); | |
156 | static void dummy_assertgwinon(struct channel *ch); | |
157 | static void dummy_assertmemoff(struct channel *ch); | |
1da177e4 | 158 | |
f2cf8e25 AC |
159 | static struct channel *verifyChannel(struct tty_struct *); |
160 | static void pc_sched_event(struct channel *, int); | |
1da177e4 LT |
161 | static void epca_error(int, char *); |
162 | static void pc_close(struct tty_struct *, struct file *); | |
d1c815e5 | 163 | static void shutdown(struct channel *, struct tty_struct *tty); |
1da177e4 | 164 | static void pc_hangup(struct tty_struct *); |
1da177e4 LT |
165 | static int pc_write_room(struct tty_struct *); |
166 | static int pc_chars_in_buffer(struct tty_struct *); | |
167 | static void pc_flush_buffer(struct tty_struct *); | |
168 | static void pc_flush_chars(struct tty_struct *); | |
1da177e4 LT |
169 | static int pc_open(struct tty_struct *, struct file *); |
170 | static void post_fep_init(unsigned int crd); | |
171 | static void epcapoll(unsigned long); | |
172 | static void doevent(int); | |
173 | static void fepcmd(struct channel *, int, int, int, int, int); | |
174 | static unsigned termios2digi_h(struct channel *ch, unsigned); | |
175 | static unsigned termios2digi_i(struct channel *ch, unsigned); | |
176 | static unsigned termios2digi_c(struct channel *ch, unsigned); | |
177 | static void epcaparam(struct tty_struct *, struct channel *); | |
3969ffba | 178 | static void receive_data(struct channel *, struct tty_struct *tty); |
1da177e4 | 179 | static int pc_ioctl(struct tty_struct *, struct file *, |
191260a0 | 180 | unsigned int, unsigned long); |
1da177e4 | 181 | static int info_ioctl(struct tty_struct *, struct file *, |
191260a0 | 182 | unsigned int, unsigned long); |
606d099c | 183 | static void pc_set_termios(struct tty_struct *, struct ktermios *); |
c4028958 | 184 | static void do_softint(struct work_struct *work); |
1da177e4 LT |
185 | static void pc_stop(struct tty_struct *); |
186 | static void pc_start(struct tty_struct *); | |
191260a0 | 187 | static void pc_throttle(struct tty_struct *tty); |
1da177e4 | 188 | static void pc_unthrottle(struct tty_struct *tty); |
dcbf1280 | 189 | static int pc_send_break(struct tty_struct *tty, int msec); |
1da177e4 | 190 | static void setup_empty_event(struct tty_struct *tty, struct channel *ch); |
1da177e4 | 191 | |
1da177e4 | 192 | static int pc_write(struct tty_struct *, const unsigned char *, int); |
f2cf8e25 | 193 | static int pc_init(void); |
1da177e4 | 194 | static int init_PCI(void); |
1da177e4 | 195 | |
ae0b78d0 AD |
196 | /* |
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 | */ | |
f2cf8e25 | 205 | static void memwinon(struct board_info *b, unsigned int win) |
1da177e4 | 206 | { |
ae0b78d0 | 207 | b->memwinon(b, win); |
1da177e4 LT |
208 | } |
209 | ||
f2cf8e25 | 210 | static void memwinoff(struct board_info *b, unsigned int win) |
1da177e4 | 211 | { |
ae0b78d0 | 212 | b->memwinoff(b, win); |
1da177e4 LT |
213 | } |
214 | ||
f2cf8e25 | 215 | static void globalwinon(struct channel *ch) |
1da177e4 | 216 | { |
ae0b78d0 | 217 | ch->board->globalwinon(ch); |
1da177e4 LT |
218 | } |
219 | ||
f2cf8e25 | 220 | static void rxwinon(struct channel *ch) |
1da177e4 | 221 | { |
ae0b78d0 | 222 | ch->board->rxwinon(ch); |
1da177e4 LT |
223 | } |
224 | ||
f2cf8e25 | 225 | static void txwinon(struct channel *ch) |
1da177e4 | 226 | { |
ae0b78d0 | 227 | ch->board->txwinon(ch); |
1da177e4 LT |
228 | } |
229 | ||
f2cf8e25 | 230 | static void memoff(struct channel *ch) |
1da177e4 | 231 | { |
ae0b78d0 | 232 | ch->board->memoff(ch); |
1da177e4 | 233 | } |
f2cf8e25 | 234 | static void assertgwinon(struct channel *ch) |
1da177e4 | 235 | { |
ae0b78d0 | 236 | ch->board->assertgwinon(ch); |
1da177e4 LT |
237 | } |
238 | ||
f2cf8e25 | 239 | static void assertmemoff(struct channel *ch) |
1da177e4 | 240 | { |
ae0b78d0 | 241 | ch->board->assertmemoff(ch); |
1da177e4 LT |
242 | } |
243 | ||
ae0b78d0 | 244 | /* PCXEM windowing is the same as that used in the PCXR and CX series cards. */ |
f2cf8e25 | 245 | static void pcxem_memwinon(struct board_info *b, unsigned int win) |
1da177e4 | 246 | { |
191260a0 | 247 | outb_p(FEPWIN | win, b->port + 1); |
1da177e4 LT |
248 | } |
249 | ||
f2cf8e25 | 250 | static void pcxem_memwinoff(struct board_info *b, unsigned int win) |
1da177e4 | 251 | { |
f2cf8e25 | 252 | outb_p(0, b->port + 1); |
1da177e4 LT |
253 | } |
254 | ||
f2cf8e25 | 255 | static void pcxem_globalwinon(struct channel *ch) |
1da177e4 | 256 | { |
191260a0 | 257 | outb_p(FEPWIN, (int)ch->board->port + 1); |
1da177e4 LT |
258 | } |
259 | ||
f2cf8e25 | 260 | static void pcxem_rxwinon(struct channel *ch) |
1da177e4 LT |
261 | { |
262 | outb_p(ch->rxwin, (int)ch->board->port + 1); | |
263 | } | |
264 | ||
f2cf8e25 | 265 | static void pcxem_txwinon(struct channel *ch) |
1da177e4 LT |
266 | { |
267 | outb_p(ch->txwin, (int)ch->board->port + 1); | |
268 | } | |
269 | ||
f2cf8e25 | 270 | static void pcxem_memoff(struct channel *ch) |
1da177e4 LT |
271 | { |
272 | outb_p(0, (int)ch->board->port + 1); | |
273 | } | |
274 | ||
275 | /* ----------------- Begin pcxe memory window stuff ------------------ */ | |
f2cf8e25 | 276 | static void pcxe_memwinon(struct board_info *b, unsigned int win) |
1da177e4 | 277 | { |
ae0b78d0 | 278 | outb_p(FEPWIN | win, b->port + 1); |
1da177e4 LT |
279 | } |
280 | ||
f2cf8e25 | 281 | static void pcxe_memwinoff(struct board_info *b, unsigned int win) |
1da177e4 | 282 | { |
ae0b78d0 | 283 | outb_p(inb(b->port) & ~FEPMEM, b->port + 1); |
f2cf8e25 | 284 | outb_p(0, b->port + 1); |
1da177e4 LT |
285 | } |
286 | ||
f2cf8e25 | 287 | static void pcxe_globalwinon(struct channel *ch) |
1da177e4 | 288 | { |
ae0b78d0 | 289 | outb_p(FEPWIN, (int)ch->board->port + 1); |
1da177e4 LT |
290 | } |
291 | ||
f2cf8e25 | 292 | static void pcxe_rxwinon(struct channel *ch) |
1da177e4 | 293 | { |
ae0b78d0 | 294 | outb_p(ch->rxwin, (int)ch->board->port + 1); |
1da177e4 LT |
295 | } |
296 | ||
f2cf8e25 | 297 | static void pcxe_txwinon(struct channel *ch) |
1da177e4 | 298 | { |
ae0b78d0 | 299 | outb_p(ch->txwin, (int)ch->board->port + 1); |
1da177e4 LT |
300 | } |
301 | ||
f2cf8e25 | 302 | static void pcxe_memoff(struct channel *ch) |
1da177e4 LT |
303 | { |
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 -------------- */ | |
f2cf8e25 | 309 | static void pcxi_memwinon(struct board_info *b, unsigned int win) |
1da177e4 | 310 | { |
ae0b78d0 | 311 | outb_p(inb(b->port) | FEPMEM, b->port); |
1da177e4 LT |
312 | } |
313 | ||
f2cf8e25 | 314 | static void pcxi_memwinoff(struct board_info *b, unsigned int win) |
1da177e4 | 315 | { |
f2cf8e25 | 316 | outb_p(inb(b->port) & ~FEPMEM, b->port); |
1da177e4 LT |
317 | } |
318 | ||
f2cf8e25 | 319 | static void pcxi_globalwinon(struct channel *ch) |
1da177e4 | 320 | { |
f2cf8e25 | 321 | outb_p(FEPMEM, ch->board->port); |
1da177e4 LT |
322 | } |
323 | ||
f2cf8e25 | 324 | static void pcxi_rxwinon(struct channel *ch) |
1da177e4 | 325 | { |
ae0b78d0 | 326 | outb_p(FEPMEM, ch->board->port); |
1da177e4 LT |
327 | } |
328 | ||
f2cf8e25 | 329 | static void pcxi_txwinon(struct channel *ch) |
1da177e4 | 330 | { |
ae0b78d0 | 331 | outb_p(FEPMEM, ch->board->port); |
1da177e4 LT |
332 | } |
333 | ||
f2cf8e25 | 334 | static void pcxi_memoff(struct channel *ch) |
1da177e4 | 335 | { |
f2cf8e25 | 336 | outb_p(0, ch->board->port); |
1da177e4 LT |
337 | } |
338 | ||
f2cf8e25 | 339 | static void pcxi_assertgwinon(struct channel *ch) |
1da177e4 | 340 | { |
f2cf8e25 | 341 | epcaassert(inb(ch->board->port) & FEPMEM, "Global memory off"); |
1da177e4 LT |
342 | } |
343 | ||
f2cf8e25 | 344 | static void pcxi_assertmemoff(struct channel *ch) |
1da177e4 | 345 | { |
f2cf8e25 | 346 | epcaassert(!(inb(ch->board->port) & FEPMEM), "Memory on"); |
1da177e4 LT |
347 | } |
348 | ||
ae0b78d0 AD |
349 | /* |
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 | */ | |
f2cf8e25 | 356 | static void dummy_memwinon(struct board_info *b, unsigned int win) |
1da177e4 LT |
357 | { |
358 | } | |
359 | ||
f2cf8e25 | 360 | static void dummy_memwinoff(struct board_info *b, unsigned int win) |
1da177e4 LT |
361 | { |
362 | } | |
363 | ||
f2cf8e25 | 364 | static void dummy_globalwinon(struct channel *ch) |
1da177e4 LT |
365 | { |
366 | } | |
367 | ||
f2cf8e25 | 368 | static void dummy_rxwinon(struct channel *ch) |
1da177e4 LT |
369 | { |
370 | } | |
371 | ||
f2cf8e25 | 372 | static void dummy_txwinon(struct channel *ch) |
1da177e4 LT |
373 | { |
374 | } | |
375 | ||
f2cf8e25 | 376 | static void dummy_memoff(struct channel *ch) |
1da177e4 LT |
377 | { |
378 | } | |
379 | ||
f2cf8e25 | 380 | static void dummy_assertgwinon(struct channel *ch) |
1da177e4 LT |
381 | { |
382 | } | |
383 | ||
f2cf8e25 | 384 | static void dummy_assertmemoff(struct channel *ch) |
1da177e4 LT |
385 | { |
386 | } | |
387 | ||
f2cf8e25 | 388 | static struct channel *verifyChannel(struct tty_struct *tty) |
ae0b78d0 AD |
389 | { |
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 | */ | |
f2cf8e25 | 396 | if (tty) { |
c9f19e96 | 397 | struct channel *ch = tty->driver_data; |
191260a0 | 398 | if (ch >= &digi_channels[0] && ch < &digi_channels[nbdevs]) { |
1da177e4 LT |
399 | if (ch->magic == EPCA_MAGIC) |
400 | return ch; | |
401 | } | |
f2cf8e25 | 402 | } |
1da177e4 | 403 | return NULL; |
ae0b78d0 | 404 | } |
1da177e4 | 405 | |
f2cf8e25 AC |
406 | static void pc_sched_event(struct channel *ch, int event) |
407 | { | |
ae0b78d0 AD |
408 | /* |
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 | */ | |
1da177e4 LT |
412 | ch->event |= 1 << event; |
413 | schedule_work(&ch->tqueue); | |
ae0b78d0 | 414 | } |
1da177e4 LT |
415 | |
416 | static void epca_error(int line, char *msg) | |
f2cf8e25 | 417 | { |
191260a0 | 418 | printk(KERN_ERR "epca_error (Digi): line = %d %s\n", line, msg); |
f2cf8e25 | 419 | } |
1da177e4 | 420 | |
ae0b78d0 | 421 | static void pc_close(struct tty_struct *tty, struct file *filp) |
f2cf8e25 | 422 | { |
1da177e4 | 423 | struct channel *ch; |
d1c815e5 | 424 | struct tty_port *port; |
ae0b78d0 AD |
425 | /* |
426 | * verifyChannel returns the channel from the tty struct if it is | |
427 | * valid. This serves as a sanity check. | |
428 | */ | |
191260a0 | 429 | ch = verifyChannel(tty); |
d1c815e5 AC |
430 | if (ch == NULL) |
431 | return; | |
432 | port = &ch->port; | |
1da177e4 | 433 | |
6ed1dbae | 434 | if (tty_port_close_start(port, tty, filp) == 0) |
d1c815e5 | 435 | return; |
1da177e4 | 436 | |
d1c815e5 | 437 | pc_flush_buffer(tty); |
d1c815e5 AC |
438 | shutdown(ch, tty); |
439 | ||
6ed1dbae AC |
440 | tty_port_close_end(port, tty); |
441 | ch->event = 0; /* FIXME: review ch->event locking */ | |
3969ffba | 442 | tty_port_tty_set(port, NULL); |
ae0b78d0 | 443 | } |
1da177e4 | 444 | |
d1c815e5 | 445 | static void shutdown(struct channel *ch, struct tty_struct *tty) |
ae0b78d0 | 446 | { |
1da177e4 | 447 | unsigned long flags; |
bc9a5154 | 448 | struct board_chan __iomem *bc; |
d1c815e5 | 449 | struct tty_port *port = &ch->port; |
1da177e4 | 450 | |
d1c815e5 | 451 | if (!(port->flags & ASYNC_INITIALIZED)) |
1da177e4 LT |
452 | return; |
453 | ||
f2cf8e25 | 454 | spin_lock_irqsave(&epca_lock, flags); |
1da177e4 | 455 | |
f2cf8e25 | 456 | globalwinon(ch); |
1da177e4 LT |
457 | bc = ch->brdchan; |
458 | ||
ae0b78d0 AD |
459 | /* |
460 | * In order for an event to be generated on the receipt of data the | |
461 | * idata flag must be set. Since we are shutting down, this is not | |
462 | * necessary clear this flag. | |
463 | */ | |
1da177e4 | 464 | if (bc) |
f2cf8e25 | 465 | writeb(0, &bc->idata); |
1da177e4 | 466 | |
ae0b78d0 | 467 | /* If we're a modem control device and HUPCL is on, drop RTS & DTR. */ |
f2cf8e25 | 468 | if (tty->termios->c_cflag & HUPCL) { |
1da177e4 LT |
469 | ch->omodem &= ~(ch->m_rts | ch->m_dtr); |
470 | fepcmd(ch, SETMODEM, 0, ch->m_dtr | ch->m_rts, 10, 1); | |
471 | } | |
1da177e4 LT |
472 | memoff(ch); |
473 | ||
ae0b78d0 AD |
474 | /* |
475 | * The channel has officialy been closed. The next time it is opened it | |
476 | * will have to reinitialized. Set a flag to indicate this. | |
477 | */ | |
1da177e4 | 478 | /* Prevent future Digi programmed interrupts from coming active */ |
d1c815e5 | 479 | port->flags &= ~ASYNC_INITIALIZED; |
f2cf8e25 | 480 | spin_unlock_irqrestore(&epca_lock, flags); |
ae0b78d0 | 481 | } |
1da177e4 LT |
482 | |
483 | static void pc_hangup(struct tty_struct *tty) | |
ae0b78d0 | 484 | { |
1da177e4 | 485 | struct channel *ch; |
d1c815e5 | 486 | |
ae0b78d0 AD |
487 | /* |
488 | * verifyChannel returns the channel from the tty struct if it is | |
489 | * valid. This serves as a sanity check. | |
490 | */ | |
191260a0 AC |
491 | ch = verifyChannel(tty); |
492 | if (ch != NULL) { | |
978e595f | 493 | pc_flush_buffer(tty); |
1da177e4 | 494 | tty_ldisc_flush(tty); |
d1c815e5 AC |
495 | shutdown(ch, tty); |
496 | ||
d1c815e5 | 497 | ch->event = 0; /* FIXME: review locking of ch->event */ |
6ed1dbae | 498 | tty_port_hangup(&ch->port); |
ae0b78d0 AD |
499 | } |
500 | } | |
1da177e4 | 501 | |
ae0b78d0 | 502 | static int pc_write(struct tty_struct *tty, |
191260a0 | 503 | const unsigned char *buf, int bytesAvailable) |
ae0b78d0 | 504 | { |
f2cf8e25 AC |
505 | unsigned int head, tail; |
506 | int dataLen; | |
507 | int size; | |
508 | int amountCopied; | |
1da177e4 LT |
509 | struct channel *ch; |
510 | unsigned long flags; | |
511 | int remain; | |
bc9a5154 | 512 | struct board_chan __iomem *bc; |
1da177e4 | 513 | |
ae0b78d0 AD |
514 | /* |
515 | * pc_write is primarily called directly by the kernel routine | |
516 | * tty_write (Though it can also be called by put_char) found in | |
517 | * tty_io.c. pc_write is passed a line discipline buffer where the data | |
518 | * to be written out is stored. The line discipline implementation | |
519 | * itself is done at the kernel level and is not brought into the | |
520 | * driver. | |
521 | */ | |
1da177e4 | 522 | |
ae0b78d0 AD |
523 | /* |
524 | * verifyChannel returns the channel from the tty struct if it is | |
525 | * valid. This serves as a sanity check. | |
526 | */ | |
191260a0 AC |
527 | ch = verifyChannel(tty); |
528 | if (ch == NULL) | |
1da177e4 LT |
529 | return 0; |
530 | ||
531 | /* Make a pointer to the channel data structure found on the board. */ | |
1da177e4 LT |
532 | bc = ch->brdchan; |
533 | size = ch->txbufsize; | |
1da177e4 | 534 | amountCopied = 0; |
1da177e4 | 535 | |
f2cf8e25 | 536 | spin_lock_irqsave(&epca_lock, flags); |
1da177e4 LT |
537 | globalwinon(ch); |
538 | ||
f2cf8e25 AC |
539 | head = readw(&bc->tin) & (size - 1); |
540 | tail = readw(&bc->tout); | |
1da177e4 | 541 | |
f2cf8e25 AC |
542 | if (tail != readw(&bc->tout)) |
543 | tail = readw(&bc->tout); | |
1da177e4 LT |
544 | tail &= (size - 1); |
545 | ||
ae0b78d0 AD |
546 | if (head >= tail) { |
547 | /* head has not wrapped */ | |
548 | /* | |
549 | * remain (much like dataLen above) represents the total amount | |
550 | * of space available on the card for data. Here dataLen | |
551 | * represents the space existing between the head pointer and | |
552 | * the end of buffer. This is important because a memcpy cannot | |
553 | * be told to automatically wrap around when it hits the buffer | |
554 | * end. | |
555 | */ | |
1da177e4 LT |
556 | dataLen = size - head; |
557 | remain = size - (head - tail) - 1; | |
ae0b78d0 AD |
558 | } else { |
559 | /* head has wrapped around */ | |
1da177e4 LT |
560 | remain = tail - head - 1; |
561 | dataLen = remain; | |
ae0b78d0 AD |
562 | } |
563 | /* | |
564 | * Check the space on the card. If we have more data than space; reduce | |
565 | * the amount of data to fit the space. | |
566 | */ | |
1da177e4 | 567 | bytesAvailable = min(remain, bytesAvailable); |
1da177e4 | 568 | txwinon(ch); |
ae0b78d0 AD |
569 | while (bytesAvailable > 0) { |
570 | /* there is data to copy onto card */ | |
1da177e4 | 571 | |
ae0b78d0 AD |
572 | /* |
573 | * If head is not wrapped, the below will make sure the first | |
574 | * data copy fills to the end of card buffer. | |
575 | */ | |
1da177e4 | 576 | dataLen = min(bytesAvailable, dataLen); |
bc9a5154 | 577 | memcpy_toio(ch->txptr + head, buf, dataLen); |
1da177e4 LT |
578 | buf += dataLen; |
579 | head += dataLen; | |
580 | amountCopied += dataLen; | |
581 | bytesAvailable -= dataLen; | |
582 | ||
f2cf8e25 | 583 | if (head >= size) { |
1da177e4 LT |
584 | head = 0; |
585 | dataLen = tail; | |
586 | } | |
ae0b78d0 | 587 | } |
1da177e4 LT |
588 | ch->statusflags |= TXBUSY; |
589 | globalwinon(ch); | |
f2cf8e25 | 590 | writew(head, &bc->tin); |
1da177e4 | 591 | |
f2cf8e25 | 592 | if ((ch->statusflags & LOWWAIT) == 0) { |
1da177e4 | 593 | ch->statusflags |= LOWWAIT; |
f2cf8e25 | 594 | writeb(1, &bc->ilow); |
1da177e4 LT |
595 | } |
596 | memoff(ch); | |
f2cf8e25 | 597 | spin_unlock_irqrestore(&epca_lock, flags); |
ae0b78d0 AD |
598 | return amountCopied; |
599 | } | |
1da177e4 | 600 | |
1da177e4 | 601 | static int pc_write_room(struct tty_struct *tty) |
ae0b78d0 | 602 | { |
191260a0 | 603 | int remain = 0; |
1da177e4 LT |
604 | struct channel *ch; |
605 | unsigned long flags; | |
606 | unsigned int head, tail; | |
bc9a5154 | 607 | struct board_chan __iomem *bc; |
ae0b78d0 AD |
608 | /* |
609 | * verifyChannel returns the channel from the tty struct if it is | |
610 | * valid. This serves as a sanity check. | |
611 | */ | |
191260a0 AC |
612 | ch = verifyChannel(tty); |
613 | if (ch != NULL) { | |
f2cf8e25 | 614 | spin_lock_irqsave(&epca_lock, flags); |
1da177e4 LT |
615 | globalwinon(ch); |
616 | ||
617 | bc = ch->brdchan; | |
f2cf8e25 AC |
618 | head = readw(&bc->tin) & (ch->txbufsize - 1); |
619 | tail = readw(&bc->tout); | |
1da177e4 | 620 | |
f2cf8e25 AC |
621 | if (tail != readw(&bc->tout)) |
622 | tail = readw(&bc->tout); | |
1da177e4 LT |
623 | /* Wrap tail if necessary */ |
624 | tail &= (ch->txbufsize - 1); | |
191260a0 AC |
625 | remain = tail - head - 1; |
626 | if (remain < 0) | |
1da177e4 LT |
627 | remain += ch->txbufsize; |
628 | ||
f2cf8e25 | 629 | if (remain && (ch->statusflags & LOWWAIT) == 0) { |
1da177e4 | 630 | ch->statusflags |= LOWWAIT; |
f2cf8e25 | 631 | writeb(1, &bc->ilow); |
1da177e4 LT |
632 | } |
633 | memoff(ch); | |
f2cf8e25 | 634 | spin_unlock_irqrestore(&epca_lock, flags); |
1da177e4 | 635 | } |
1da177e4 LT |
636 | /* Return how much room is left on card */ |
637 | return remain; | |
ae0b78d0 | 638 | } |
1da177e4 LT |
639 | |
640 | static int pc_chars_in_buffer(struct tty_struct *tty) | |
ae0b78d0 | 641 | { |
1da177e4 LT |
642 | int chars; |
643 | unsigned int ctail, head, tail; | |
644 | int remain; | |
645 | unsigned long flags; | |
646 | struct channel *ch; | |
bc9a5154 | 647 | struct board_chan __iomem *bc; |
ae0b78d0 AD |
648 | /* |
649 | * verifyChannel returns the channel from the tty struct if it is | |
650 | * valid. This serves as a sanity check. | |
651 | */ | |
191260a0 AC |
652 | ch = verifyChannel(tty); |
653 | if (ch == NULL) | |
ae0b78d0 | 654 | return 0; |
1da177e4 | 655 | |
f2cf8e25 | 656 | spin_lock_irqsave(&epca_lock, flags); |
1da177e4 LT |
657 | globalwinon(ch); |
658 | ||
659 | bc = ch->brdchan; | |
f2cf8e25 AC |
660 | tail = readw(&bc->tout); |
661 | head = readw(&bc->tin); | |
662 | ctail = readw(&ch->mailbox->cout); | |
1da177e4 | 663 | |
191260a0 AC |
664 | if (tail == head && readw(&ch->mailbox->cin) == ctail && |
665 | readb(&bc->tbusy) == 0) | |
1da177e4 | 666 | chars = 0; |
f2cf8e25 AC |
667 | else { /* Begin if some space on the card has been used */ |
668 | head = readw(&bc->tin) & (ch->txbufsize - 1); | |
1da177e4 | 669 | tail &= (ch->txbufsize - 1); |
ae0b78d0 AD |
670 | /* |
671 | * The logic here is basically opposite of the above | |
672 | * pc_write_room here we are finding the amount of bytes in the | |
673 | * buffer filled. Not the amount of bytes empty. | |
674 | */ | |
191260a0 AC |
675 | remain = tail - head - 1; |
676 | if (remain < 0) | |
1da177e4 | 677 | remain += ch->txbufsize; |
1da177e4 | 678 | chars = (int)(ch->txbufsize - remain); |
ae0b78d0 AD |
679 | /* |
680 | * Make it possible to wakeup anything waiting for output in | |
681 | * tty_ioctl.c, etc. | |
682 | * | |
683 | * If not already set. Setup an event to indicate when the | |
684 | * transmit buffer empties. | |
685 | */ | |
1da177e4 | 686 | if (!(ch->statusflags & EMPTYWAIT)) |
191260a0 | 687 | setup_empty_event(tty, ch); |
1da177e4 | 688 | } /* End if some space on the card has been used */ |
1da177e4 | 689 | memoff(ch); |
f2cf8e25 | 690 | spin_unlock_irqrestore(&epca_lock, flags); |
1da177e4 | 691 | /* Return number of characters residing on card. */ |
ae0b78d0 AD |
692 | return chars; |
693 | } | |
1da177e4 LT |
694 | |
695 | static void pc_flush_buffer(struct tty_struct *tty) | |
ae0b78d0 | 696 | { |
1da177e4 LT |
697 | unsigned int tail; |
698 | unsigned long flags; | |
699 | struct channel *ch; | |
bc9a5154 | 700 | struct board_chan __iomem *bc; |
ae0b78d0 AD |
701 | /* |
702 | * verifyChannel returns the channel from the tty struct if it is | |
703 | * valid. This serves as a sanity check. | |
704 | */ | |
191260a0 AC |
705 | ch = verifyChannel(tty); |
706 | if (ch == NULL) | |
1da177e4 LT |
707 | return; |
708 | ||
f2cf8e25 | 709 | spin_lock_irqsave(&epca_lock, flags); |
1da177e4 | 710 | globalwinon(ch); |
1da177e4 | 711 | bc = ch->brdchan; |
f2cf8e25 | 712 | tail = readw(&bc->tout); |
1da177e4 | 713 | /* Have FEP move tout pointer; effectively flushing transmit buffer */ |
1da177e4 | 714 | fepcmd(ch, STOUT, (unsigned) tail, 0, 0, 0); |
1da177e4 | 715 | memoff(ch); |
f2cf8e25 | 716 | spin_unlock_irqrestore(&epca_lock, flags); |
1da177e4 | 717 | tty_wakeup(tty); |
ae0b78d0 | 718 | } |
1da177e4 LT |
719 | |
720 | static void pc_flush_chars(struct tty_struct *tty) | |
ae0b78d0 AD |
721 | { |
722 | struct channel *ch; | |
723 | /* | |
724 | * verifyChannel returns the channel from the tty struct if it is | |
725 | * valid. This serves as a sanity check. | |
726 | */ | |
191260a0 AC |
727 | ch = verifyChannel(tty); |
728 | if (ch != NULL) { | |
1da177e4 | 729 | unsigned long flags; |
f2cf8e25 | 730 | spin_lock_irqsave(&epca_lock, flags); |
ae0b78d0 AD |
731 | /* |
732 | * If not already set and the transmitter is busy setup an | |
733 | * event to indicate when the transmit empties. | |
734 | */ | |
191260a0 AC |
735 | if ((ch->statusflags & TXBUSY) && |
736 | !(ch->statusflags & EMPTYWAIT)) | |
737 | setup_empty_event(tty, ch); | |
f2cf8e25 | 738 | spin_unlock_irqrestore(&epca_lock, flags); |
1da177e4 | 739 | } |
ae0b78d0 | 740 | } |
1da177e4 | 741 | |
6ed1dbae | 742 | static int epca_carrier_raised(struct tty_port *port) |
ae0b78d0 | 743 | { |
6ed1dbae AC |
744 | struct channel *ch = container_of(port, struct channel, port); |
745 | if (ch->imodem & ch->dcd) | |
746 | return 1; | |
1da177e4 | 747 | return 0; |
ae0b78d0 | 748 | } |
1da177e4 | 749 | |
fcc8ac18 | 750 | static void epca_dtr_rts(struct tty_port *port, int onoff) |
6ed1dbae AC |
751 | { |
752 | } | |
753 | ||
191260a0 | 754 | static int pc_open(struct tty_struct *tty, struct file *filp) |
ae0b78d0 | 755 | { |
1da177e4 | 756 | struct channel *ch; |
d1c815e5 | 757 | struct tty_port *port; |
1da177e4 LT |
758 | unsigned long flags; |
759 | int line, retval, boardnum; | |
bc9a5154 | 760 | struct board_chan __iomem *bc; |
f2cf8e25 | 761 | unsigned int head; |
1da177e4 LT |
762 | |
763 | line = tty->index; | |
f2cf8e25 AC |
764 | if (line < 0 || line >= nbdevs) |
765 | return -ENODEV; | |
1da177e4 LT |
766 | |
767 | ch = &digi_channels[line]; | |
d1c815e5 | 768 | port = &ch->port; |
1da177e4 LT |
769 | boardnum = ch->boardnum; |
770 | ||
771 | /* Check status of board configured in system. */ | |
772 | ||
ae0b78d0 | 773 | /* |
0211a9c8 | 774 | * I check to see if the epca_setup routine detected a user error. It |
ae0b78d0 AD |
775 | * might be better to put this in pc_init, but for the moment it goes |
776 | * here. | |
777 | */ | |
f2cf8e25 | 778 | if (invalid_lilo_config) { |
1da177e4 | 779 | if (setup_error_code & INVALID_BOARD_TYPE) |
f2cf8e25 | 780 | printk(KERN_ERR "epca: pc_open: Invalid board type specified in kernel options.\n"); |
1da177e4 | 781 | if (setup_error_code & INVALID_NUM_PORTS) |
f2cf8e25 | 782 | printk(KERN_ERR "epca: pc_open: Invalid number of ports specified in kernel options.\n"); |
1da177e4 | 783 | if (setup_error_code & INVALID_MEM_BASE) |
f2cf8e25 | 784 | printk(KERN_ERR "epca: pc_open: Invalid board memory address specified in kernel options.\n"); |
1da177e4 | 785 | if (setup_error_code & INVALID_PORT_BASE) |
f2cf8e25 | 786 | printk(KERN_ERR "epca; pc_open: Invalid board port address specified in kernel options.\n"); |
1da177e4 | 787 | if (setup_error_code & INVALID_BOARD_STATUS) |
f2cf8e25 | 788 | printk(KERN_ERR "epca: pc_open: Invalid board status specified in kernel options.\n"); |
1da177e4 | 789 | if (setup_error_code & INVALID_ALTPIN) |
f2cf8e25 | 790 | printk(KERN_ERR "epca: pc_open: Invalid board altpin specified in kernel options;\n"); |
1da177e4 | 791 | tty->driver_data = NULL; /* Mark this device as 'down' */ |
f2cf8e25 | 792 | return -ENODEV; |
1da177e4 | 793 | } |
f2cf8e25 | 794 | if (boardnum >= num_cards || boards[boardnum].status == DISABLED) { |
1da177e4 LT |
795 | tty->driver_data = NULL; /* Mark this device as 'down' */ |
796 | return(-ENODEV); | |
797 | } | |
ae0b78d0 | 798 | |
11fb09bf HH |
799 | bc = ch->brdchan; |
800 | if (bc == NULL) { | |
1da177e4 | 801 | tty->driver_data = NULL; |
f2cf8e25 | 802 | return -ENODEV; |
1da177e4 LT |
803 | } |
804 | ||
d1c815e5 | 805 | spin_lock_irqsave(&port->lock, flags); |
ae0b78d0 AD |
806 | /* |
807 | * Every time a channel is opened, increment a counter. This is | |
808 | * necessary because we do not wish to flush and shutdown the channel | |
809 | * until the last app holding the channel open, closes it. | |
810 | */ | |
d1c815e5 | 811 | port->count++; |
ae0b78d0 AD |
812 | /* |
813 | * Set a kernel structures pointer to our local channel structure. This | |
814 | * way we can get to it when passed only a tty struct. | |
815 | */ | |
1da177e4 | 816 | tty->driver_data = ch; |
d1c815e5 | 817 | port->tty = tty; |
ae0b78d0 AD |
818 | /* |
819 | * If this is the first time the channel has been opened, initialize | |
820 | * the tty->termios struct otherwise let pc_close handle it. | |
821 | */ | |
d1c815e5 | 822 | spin_lock(&epca_lock); |
1da177e4 LT |
823 | globalwinon(ch); |
824 | ch->statusflags = 0; | |
825 | ||
826 | /* Save boards current modem status */ | |
bc9a5154 | 827 | ch->imodem = readb(&bc->mstat); |
1da177e4 | 828 | |
ae0b78d0 AD |
829 | /* |
830 | * Set receive head and tail ptrs to each other. This indicates no data | |
831 | * available to read. | |
832 | */ | |
f2cf8e25 AC |
833 | head = readw(&bc->rin); |
834 | writew(head, &bc->rout); | |
1da177e4 LT |
835 | |
836 | /* Set the channels associated tty structure */ | |
1da177e4 | 837 | |
ae0b78d0 AD |
838 | /* |
839 | * The below routine generally sets up parity, baud, flow control | |
840 | * issues, etc.... It effect both control flags and input flags. | |
841 | */ | |
191260a0 | 842 | epcaparam(tty, ch); |
1da177e4 | 843 | memoff(ch); |
d1c815e5 AC |
844 | spin_unlock(&epca_lock); |
845 | port->flags |= ASYNC_INITIALIZED; | |
846 | spin_unlock_irqrestore(&port->lock, flags); | |
1da177e4 | 847 | |
6ed1dbae | 848 | retval = tty_port_block_til_ready(port, tty, filp); |
1da177e4 | 849 | if (retval) |
1da177e4 | 850 | return retval; |
ae0b78d0 AD |
851 | /* |
852 | * Set this again in case a hangup set it to zero while this open() was | |
853 | * waiting for the line... | |
854 | */ | |
d1c815e5 AC |
855 | spin_lock_irqsave(&port->lock, flags); |
856 | port->tty = tty; | |
857 | spin_lock(&epca_lock); | |
1da177e4 | 858 | globalwinon(ch); |
1da177e4 | 859 | /* Enable Digi Data events */ |
f2cf8e25 | 860 | writeb(1, &bc->idata); |
1da177e4 | 861 | memoff(ch); |
d1c815e5 AC |
862 | spin_unlock(&epca_lock); |
863 | spin_unlock_irqrestore(&port->lock, flags); | |
1da177e4 | 864 | return 0; |
ae0b78d0 | 865 | } |
1da177e4 | 866 | |
1da177e4 | 867 | static int __init epca_module_init(void) |
ae0b78d0 | 868 | { |
f2cf8e25 | 869 | return pc_init(); |
1da177e4 | 870 | } |
1da177e4 | 871 | module_init(epca_module_init); |
1da177e4 | 872 | |
1da177e4 | 873 | static struct pci_driver epca_driver; |
1da177e4 LT |
874 | |
875 | static void __exit epca_module_exit(void) | |
876 | { | |
1da177e4 LT |
877 | int count, crd; |
878 | struct board_info *bd; | |
879 | struct channel *ch; | |
1da177e4 LT |
880 | |
881 | del_timer_sync(&epca_timer); | |
882 | ||
191260a0 AC |
883 | if (tty_unregister_driver(pc_driver) || |
884 | tty_unregister_driver(pc_info)) { | |
f2cf8e25 | 885 | printk(KERN_WARNING "epca: cleanup_module failed to un-register tty driver\n"); |
1da177e4 LT |
886 | return; |
887 | } | |
888 | put_tty_driver(pc_driver); | |
889 | put_tty_driver(pc_info); | |
890 | ||
ae0b78d0 | 891 | for (crd = 0; crd < num_cards; crd++) { |
1da177e4 | 892 | bd = &boards[crd]; |
ae0b78d0 | 893 | if (!bd) { /* sanity check */ |
1da177e4 LT |
894 | printk(KERN_ERR "<Error> - Digi : cleanup_module failed\n"); |
895 | return; | |
ae0b78d0 | 896 | } |
f2cf8e25 | 897 | ch = card_ptr[crd]; |
ae0b78d0 | 898 | for (count = 0; count < bd->numports; count++, ch++) { |
3969ffba AC |
899 | struct tty_struct *tty = tty_port_tty_get(&ch->port); |
900 | if (tty) { | |
901 | tty_hangup(tty); | |
902 | tty_kref_put(tty); | |
903 | } | |
ae0b78d0 AD |
904 | } |
905 | } | |
906 | pci_unregister_driver(&epca_driver); | |
1da177e4 LT |
907 | } |
908 | module_exit(epca_module_exit); | |
1da177e4 | 909 | |
b68e31d0 | 910 | static const struct tty_operations pc_ops = { |
1da177e4 LT |
911 | .open = pc_open, |
912 | .close = pc_close, | |
913 | .write = pc_write, | |
914 | .write_room = pc_write_room, | |
915 | .flush_buffer = pc_flush_buffer, | |
916 | .chars_in_buffer = pc_chars_in_buffer, | |
917 | .flush_chars = pc_flush_chars, | |
1da177e4 LT |
918 | .ioctl = pc_ioctl, |
919 | .set_termios = pc_set_termios, | |
920 | .stop = pc_stop, | |
921 | .start = pc_start, | |
922 | .throttle = pc_throttle, | |
923 | .unthrottle = pc_unthrottle, | |
924 | .hangup = pc_hangup, | |
dcbf1280 | 925 | .break_ctl = pc_send_break |
1da177e4 LT |
926 | }; |
927 | ||
6ed1dbae AC |
928 | static const struct tty_port_operations epca_port_ops = { |
929 | .carrier_raised = epca_carrier_raised, | |
fcc8ac18 | 930 | .dtr_rts = epca_dtr_rts, |
6ed1dbae AC |
931 | }; |
932 | ||
191260a0 | 933 | static int info_open(struct tty_struct *tty, struct file *filp) |
1da177e4 LT |
934 | { |
935 | return 0; | |
936 | } | |
937 | ||
1cceefd3 | 938 | static const struct tty_operations info_ops = { |
1da177e4 LT |
939 | .open = info_open, |
940 | .ioctl = info_ioctl, | |
941 | }; | |
942 | ||
f2cf8e25 | 943 | static int __init pc_init(void) |
ae0b78d0 | 944 | { |
1da177e4 LT |
945 | int crd; |
946 | struct board_info *bd; | |
947 | unsigned char board_id = 0; | |
dabad056 | 948 | int err = -ENOMEM; |
1da177e4 | 949 | |
1da177e4 LT |
950 | int pci_boards_found, pci_count; |
951 | ||
952 | pci_count = 0; | |
1da177e4 LT |
953 | |
954 | pc_driver = alloc_tty_driver(MAX_ALLOC); | |
955 | if (!pc_driver) | |
dabad056 | 956 | goto out1; |
1da177e4 LT |
957 | |
958 | pc_info = alloc_tty_driver(MAX_ALLOC); | |
dabad056 AM |
959 | if (!pc_info) |
960 | goto out2; | |
1da177e4 | 961 | |
ae0b78d0 AD |
962 | /* |
963 | * If epca_setup has not been ran by LILO set num_cards to defaults; | |
964 | * copy board structure defined by digiConfig into drivers board | |
965 | * structure. Note : If LILO has ran epca_setup then epca_setup will | |
966 | * handle defining num_cards as well as copying the data into the board | |
967 | * structure. | |
968 | */ | |
969 | if (!liloconfig) { | |
970 | /* driver has been configured via. epcaconfig */ | |
1da177e4 LT |
971 | nbdevs = NBDEVS; |
972 | num_cards = NUMCARDS; | |
ae0b78d0 AD |
973 | memcpy(&boards, &static_boards, |
974 | sizeof(struct board_info) * NUMCARDS); | |
975 | } | |
1da177e4 | 976 | |
ae0b78d0 AD |
977 | /* |
978 | * Note : If lilo was used to configure the driver and the ignore | |
979 | * epcaconfig option was choosen (digiepca=2) then nbdevs and num_cards | |
980 | * will equal 0 at this point. This is okay; PCI cards will still be | |
981 | * picked up if detected. | |
982 | */ | |
1da177e4 | 983 | |
ae0b78d0 AD |
984 | /* |
985 | * Set up interrupt, we will worry about memory allocation in | |
986 | * post_fep_init. | |
987 | */ | |
191260a0 | 988 | printk(KERN_INFO "DIGI epca driver version %s loaded.\n", VERSION); |
1da177e4 | 989 | |
ae0b78d0 AD |
990 | /* |
991 | * NOTE : This code assumes that the number of ports found in the | |
992 | * boards array is correct. This could be wrong if the card in question | |
993 | * is PCI (And therefore has no ports entry in the boards structure.) | |
994 | * The rest of the information will be valid for PCI because the | |
995 | * beginning of pc_init scans for PCI and determines i/o and base | |
996 | * memory addresses. I am not sure if it is possible to read the number | |
997 | * of ports supported by the card prior to it being booted (Since that | |
998 | * is the state it is in when pc_init is run). Because it is not | |
999 | * possible to query the number of supported ports until after the card | |
1000 | * has booted; we are required to calculate the card_ptrs as the card | |
1001 | * is initialized (Inside post_fep_init). The negative thing about this | |
1002 | * approach is that digiDload's call to GET_INFO will have a bad port | |
1003 | * value. (Since this is called prior to post_fep_init.) | |
1004 | */ | |
1da177e4 | 1005 | pci_boards_found = 0; |
ae0b78d0 | 1006 | if (num_cards < MAXBOARDS) |
1da177e4 LT |
1007 | pci_boards_found += init_PCI(); |
1008 | num_cards += pci_boards_found; | |
1009 | ||
1da177e4 | 1010 | pc_driver->owner = THIS_MODULE; |
ae0b78d0 AD |
1011 | pc_driver->name = "ttyD"; |
1012 | pc_driver->major = DIGI_MAJOR; | |
1da177e4 LT |
1013 | pc_driver->minor_start = 0; |
1014 | pc_driver->type = TTY_DRIVER_TYPE_SERIAL; | |
1015 | pc_driver->subtype = SERIAL_TYPE_NORMAL; | |
1016 | pc_driver->init_termios = tty_std_termios; | |
1017 | pc_driver->init_termios.c_iflag = 0; | |
1018 | pc_driver->init_termios.c_oflag = 0; | |
1019 | pc_driver->init_termios.c_cflag = B9600 | CS8 | CREAD | CLOCAL | HUPCL; | |
1020 | pc_driver->init_termios.c_lflag = 0; | |
606d099c AC |
1021 | pc_driver->init_termios.c_ispeed = 9600; |
1022 | pc_driver->init_termios.c_ospeed = 9600; | |
dcbf1280 | 1023 | pc_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_HARDWARE_BREAK; |
1da177e4 LT |
1024 | tty_set_operations(pc_driver, &pc_ops); |
1025 | ||
1026 | pc_info->owner = THIS_MODULE; | |
1027 | pc_info->name = "digi_ctl"; | |
1028 | pc_info->major = DIGIINFOMAJOR; | |
1029 | pc_info->minor_start = 0; | |
1030 | pc_info->type = TTY_DRIVER_TYPE_SERIAL; | |
1031 | pc_info->subtype = SERIAL_TYPE_INFO; | |
1032 | pc_info->init_termios = tty_std_termios; | |
1033 | pc_info->init_termios.c_iflag = 0; | |
1034 | pc_info->init_termios.c_oflag = 0; | |
1035 | pc_info->init_termios.c_lflag = 0; | |
1036 | pc_info->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL; | |
606d099c AC |
1037 | pc_info->init_termios.c_ispeed = 9600; |
1038 | pc_info->init_termios.c_ospeed = 9600; | |
1da177e4 LT |
1039 | pc_info->flags = TTY_DRIVER_REAL_RAW; |
1040 | tty_set_operations(pc_info, &info_ops); | |
1041 | ||
1042 | ||
ae0b78d0 AD |
1043 | for (crd = 0; crd < num_cards; crd++) { |
1044 | /* | |
1045 | * This is where the appropriate memory handlers for the | |
1046 | * hardware is set. Everything at runtime blindly jumps through | |
1047 | * these vectors. | |
1048 | */ | |
1da177e4 LT |
1049 | |
1050 | /* defined in epcaconfig.h */ | |
1051 | bd = &boards[crd]; | |
1052 | ||
ae0b78d0 AD |
1053 | switch (bd->type) { |
1054 | case PCXEM: | |
1055 | case EISAXEM: | |
1056 | bd->memwinon = pcxem_memwinon; | |
1057 | bd->memwinoff = pcxem_memwinoff; | |
1058 | bd->globalwinon = pcxem_globalwinon; | |
1059 | bd->txwinon = pcxem_txwinon; | |
1060 | bd->rxwinon = pcxem_rxwinon; | |
1061 | bd->memoff = pcxem_memoff; | |
1062 | bd->assertgwinon = dummy_assertgwinon; | |
1063 | bd->assertmemoff = dummy_assertmemoff; | |
1da177e4 LT |
1064 | break; |
1065 | ||
ae0b78d0 AD |
1066 | case PCIXEM: |
1067 | case PCIXRJ: | |
1068 | case PCIXR: | |
1069 | bd->memwinon = dummy_memwinon; | |
1070 | bd->memwinoff = dummy_memwinoff; | |
1071 | bd->globalwinon = dummy_globalwinon; | |
1072 | bd->txwinon = dummy_txwinon; | |
1073 | bd->rxwinon = dummy_rxwinon; | |
1074 | bd->memoff = dummy_memoff; | |
1075 | bd->assertgwinon = dummy_assertgwinon; | |
1076 | bd->assertmemoff = dummy_assertmemoff; | |
1077 | break; | |
1da177e4 | 1078 | |
ae0b78d0 AD |
1079 | case PCXE: |
1080 | case PCXEVE: | |
1081 | bd->memwinon = pcxe_memwinon; | |
1082 | bd->memwinoff = pcxe_memwinoff; | |
1083 | bd->globalwinon = pcxe_globalwinon; | |
1084 | bd->txwinon = pcxe_txwinon; | |
1085 | bd->rxwinon = pcxe_rxwinon; | |
1086 | bd->memoff = pcxe_memoff; | |
1087 | bd->assertgwinon = dummy_assertgwinon; | |
1088 | bd->assertmemoff = dummy_assertmemoff; | |
1089 | break; | |
1da177e4 | 1090 | |
ae0b78d0 AD |
1091 | case PCXI: |
1092 | case PC64XE: | |
1093 | bd->memwinon = pcxi_memwinon; | |
1094 | bd->memwinoff = pcxi_memwinoff; | |
1095 | bd->globalwinon = pcxi_globalwinon; | |
1096 | bd->txwinon = pcxi_txwinon; | |
1097 | bd->rxwinon = pcxi_rxwinon; | |
1098 | bd->memoff = pcxi_memoff; | |
1099 | bd->assertgwinon = pcxi_assertgwinon; | |
1100 | bd->assertmemoff = pcxi_assertmemoff; | |
1101 | break; | |
1da177e4 | 1102 | |
ae0b78d0 | 1103 | default: |
1da177e4 | 1104 | break; |
ae0b78d0 | 1105 | } |
1da177e4 | 1106 | |
ae0b78d0 AD |
1107 | /* |
1108 | * Some cards need a memory segment to be defined for use in | |
1109 | * transmit and receive windowing operations. These boards are | |
1110 | * listed in the below switch. In the case of the XI the amount | |
1111 | * of memory on the board is variable so the memory_seg is also | |
1112 | * variable. This code determines what they segment should be. | |
1113 | */ | |
1114 | switch (bd->type) { | |
1115 | case PCXE: | |
1116 | case PCXEVE: | |
1117 | case PC64XE: | |
1118 | bd->memory_seg = 0xf000; | |
1119 | break; | |
1da177e4 | 1120 | |
ae0b78d0 AD |
1121 | case PCXI: |
1122 | board_id = inb((int)bd->port); | |
1123 | if ((board_id & 0x1) == 0x1) { | |
1124 | /* it's an XI card */ | |
1125 | /* Is it a 64K board */ | |
1126 | if ((board_id & 0x30) == 0) | |
1127 | bd->memory_seg = 0xf000; | |
1128 | ||
1129 | /* Is it a 128K board */ | |
1130 | if ((board_id & 0x30) == 0x10) | |
1131 | bd->memory_seg = 0xe000; | |
1132 | ||
1133 | /* Is is a 256K board */ | |
1134 | if ((board_id & 0x30) == 0x20) | |
1135 | bd->memory_seg = 0xc000; | |
1136 | ||
1137 | /* Is it a 512K board */ | |
1138 | if ((board_id & 0x30) == 0x30) | |
1139 | bd->memory_seg = 0x8000; | |
1140 | } else | |
191260a0 | 1141 | printk(KERN_ERR "epca: Board at 0x%x doesn't appear to be an XI\n", (int)bd->port); |
ae0b78d0 AD |
1142 | break; |
1143 | } | |
1144 | } | |
1da177e4 | 1145 | |
dabad056 AM |
1146 | err = tty_register_driver(pc_driver); |
1147 | if (err) { | |
1148 | printk(KERN_ERR "Couldn't register Digi PC/ driver"); | |
1149 | goto out3; | |
1150 | } | |
1da177e4 | 1151 | |
dabad056 AM |
1152 | err = tty_register_driver(pc_info); |
1153 | if (err) { | |
1154 | printk(KERN_ERR "Couldn't register Digi PC/ info "); | |
1155 | goto out4; | |
1156 | } | |
1da177e4 | 1157 | |
ae0b78d0 | 1158 | /* Start up the poller to check for events on all enabled boards */ |
1da177e4 LT |
1159 | init_timer(&epca_timer); |
1160 | epca_timer.function = epcapoll; | |
1161 | mod_timer(&epca_timer, jiffies + HZ/25); | |
1da177e4 LT |
1162 | return 0; |
1163 | ||
dabad056 AM |
1164 | out4: |
1165 | tty_unregister_driver(pc_driver); | |
1166 | out3: | |
1167 | put_tty_driver(pc_info); | |
1168 | out2: | |
1169 | put_tty_driver(pc_driver); | |
1170 | out1: | |
1171 | return err; | |
ae0b78d0 | 1172 | } |
1da177e4 LT |
1173 | |
1174 | static void post_fep_init(unsigned int crd) | |
ae0b78d0 | 1175 | { |
1da177e4 | 1176 | int i; |
bc9a5154 AV |
1177 | void __iomem *memaddr; |
1178 | struct global_data __iomem *gd; | |
1da177e4 | 1179 | struct board_info *bd; |
bc9a5154 | 1180 | struct board_chan __iomem *bc; |
ae0b78d0 AD |
1181 | struct channel *ch; |
1182 | int shrinkmem = 0, lowwater; | |
1da177e4 | 1183 | |
ae0b78d0 AD |
1184 | /* |
1185 | * This call is made by the user via. the ioctl call DIGI_INIT. It is | |
1186 | * responsible for setting up all the card specific stuff. | |
1187 | */ | |
1188 | bd = &boards[crd]; | |
1da177e4 | 1189 | |
ae0b78d0 AD |
1190 | /* |
1191 | * If this is a PCI board, get the port info. Remember PCI cards do not | |
1192 | * have entries into the epcaconfig.h file, so we can't get the number | |
1193 | * of ports from it. Unfortunetly, this means that anyone doing a | |
1194 | * DIGI_GETINFO before the board has booted will get an invalid number | |
1195 | * of ports returned (It should return 0). Calls to DIGI_GETINFO after | |
1196 | * DIGI_INIT has been called will return the proper values. | |
1197 | */ | |
f2cf8e25 | 1198 | if (bd->type >= PCIXEM) { /* Begin get PCI number of ports */ |
ae0b78d0 AD |
1199 | /* |
1200 | * Below we use XEMPORTS as a memory offset regardless of which | |
1201 | * PCI card it is. This is because all of the supported PCI | |
1202 | * cards have the same memory offset for the channel data. This | |
1203 | * will have to be changed if we ever develop a PCI/XE card. | |
1204 | * NOTE : The FEP manual states that the port offset is 0xC22 | |
1205 | * as opposed to 0xC02. This is only true for PC/XE, and PC/XI | |
1206 | * cards; not for the XEM, or CX series. On the PCI cards the | |
1207 | * number of ports is determined by reading a ID PROM located | |
1208 | * in the box attached to the card. The card can then determine | |
1209 | * the index the id to determine the number of ports available. | |
1210 | * (FYI - The id should be located at 0x1ac (And may use up to | |
1211 | * 4 bytes if the box in question is a XEM or CX)). | |
1212 | */ | |
f2cf8e25 AC |
1213 | /* PCI cards are already remapped at this point ISA are not */ |
1214 | bd->numports = readw(bd->re_map_membase + XEMPORTS); | |
191260a0 | 1215 | epcaassert(bd->numports <= 64, "PCI returned a invalid number of ports"); |
1da177e4 | 1216 | nbdevs += (bd->numports); |
f2cf8e25 AC |
1217 | } else { |
1218 | /* Fix up the mappings for ISA/EISA etc */ | |
1219 | /* FIXME: 64K - can we be smarter ? */ | |
191260a0 | 1220 | bd->re_map_membase = ioremap_nocache(bd->membase, 0x10000); |
f2cf8e25 | 1221 | } |
1da177e4 LT |
1222 | |
1223 | if (crd != 0) | |
1224 | card_ptr[crd] = card_ptr[crd-1] + boards[crd-1].numports; | |
1225 | else | |
1226 | card_ptr[crd] = &digi_channels[crd]; /* <- For card 0 only */ | |
1227 | ||
1228 | ch = card_ptr[crd]; | |
1da177e4 LT |
1229 | epcaassert(ch <= &digi_channels[nbdevs - 1], "ch out of range"); |
1230 | ||
f2cf8e25 | 1231 | memaddr = bd->re_map_membase; |
1da177e4 | 1232 | |
ae0b78d0 AD |
1233 | /* |
1234 | * The below assignment will set bc to point at the BEGINING of the | |
1235 | * cards channel structures. For 1 card there will be between 8 and 64 | |
1236 | * of these structures. | |
1237 | */ | |
bc9a5154 | 1238 | bc = memaddr + CHANSTRUCT; |
1da177e4 | 1239 | |
ae0b78d0 AD |
1240 | /* |
1241 | * The below assignment will set gd to point at the BEGINING of global | |
1242 | * memory address 0xc00. The first data in that global memory actually | |
1243 | * starts at address 0xc1a. The command in pointer begins at 0xd10. | |
1244 | */ | |
bc9a5154 | 1245 | gd = memaddr + GLOBAL; |
1da177e4 | 1246 | |
ae0b78d0 AD |
1247 | /* |
1248 | * XEPORTS (address 0xc22) points at the number of channels the card | |
1249 | * supports. (For 64XE, XI, XEM, and XR use 0xc02) | |
1250 | */ | |
191260a0 AC |
1251 | if ((bd->type == PCXEVE || bd->type == PCXE) && |
1252 | (readw(memaddr + XEPORTS) < 3)) | |
1da177e4 LT |
1253 | shrinkmem = 1; |
1254 | if (bd->type < PCIXEM) | |
1255 | if (!request_region((int)bd->port, 4, board_desc[bd->type])) | |
ae0b78d0 | 1256 | return; |
1da177e4 LT |
1257 | memwinon(bd, 0); |
1258 | ||
ae0b78d0 AD |
1259 | /* |
1260 | * Remember ch is the main drivers channels structure, while bc is the | |
1261 | * cards channel structure. | |
1262 | */ | |
1263 | for (i = 0; i < bd->numports; i++, ch++, bc++) { | |
f2cf8e25 | 1264 | unsigned long flags; |
bc9a5154 | 1265 | u16 tseg, rseg; |
1da177e4 | 1266 | |
9ae7b08a | 1267 | tty_port_init(&ch->port); |
c1314a49 | 1268 | ch->port.ops = &epca_port_ops; |
ae0b78d0 AD |
1269 | ch->brdchan = bc; |
1270 | ch->mailbox = gd; | |
c4028958 | 1271 | INIT_WORK(&ch->tqueue, do_softint); |
ae0b78d0 | 1272 | ch->board = &boards[crd]; |
1da177e4 | 1273 | |
f2cf8e25 AC |
1274 | spin_lock_irqsave(&epca_lock, flags); |
1275 | switch (bd->type) { | |
ae0b78d0 AD |
1276 | /* |
1277 | * Since some of the boards use different bitmaps for | |
1278 | * their control signals we cannot hard code these | |
1279 | * values and retain portability. We virtualize this | |
1280 | * data here. | |
1281 | */ | |
1282 | case EISAXEM: | |
1283 | case PCXEM: | |
1284 | case PCIXEM: | |
1285 | case PCIXRJ: | |
1286 | case PCIXR: | |
1287 | ch->m_rts = 0x02; | |
1288 | ch->m_dcd = 0x80; | |
1289 | ch->m_dsr = 0x20; | |
1290 | ch->m_cts = 0x10; | |
1291 | ch->m_ri = 0x40; | |
1292 | ch->m_dtr = 0x01; | |
1293 | break; | |
1294 | ||
1295 | case PCXE: | |
1296 | case PCXEVE: | |
1297 | case PCXI: | |
1298 | case PC64XE: | |
1299 | ch->m_rts = 0x02; | |
1300 | ch->m_dcd = 0x08; | |
1301 | ch->m_dsr = 0x10; | |
1302 | ch->m_cts = 0x20; | |
1303 | ch->m_ri = 0x40; | |
1304 | ch->m_dtr = 0x80; | |
1305 | break; | |
1306 | } | |
1da177e4 | 1307 | |
f2cf8e25 | 1308 | if (boards[crd].altpin) { |
1da177e4 LT |
1309 | ch->dsr = ch->m_dcd; |
1310 | ch->dcd = ch->m_dsr; | |
1311 | ch->digiext.digi_flags |= DIGI_ALTPIN; | |
ae0b78d0 | 1312 | } else { |
1da177e4 LT |
1313 | ch->dcd = ch->m_dcd; |
1314 | ch->dsr = ch->m_dsr; | |
1315 | } | |
ae0b78d0 | 1316 | |
1da177e4 LT |
1317 | ch->boardnum = crd; |
1318 | ch->channelnum = i; | |
1319 | ch->magic = EPCA_MAGIC; | |
3969ffba | 1320 | tty_port_tty_set(&ch->port, NULL); |
1da177e4 | 1321 | |
f2cf8e25 | 1322 | if (shrinkmem) { |
1da177e4 LT |
1323 | fepcmd(ch, SETBUFFER, 32, 0, 0, 0); |
1324 | shrinkmem = 0; | |
1325 | } | |
1326 | ||
bc9a5154 AV |
1327 | tseg = readw(&bc->tseg); |
1328 | rseg = readw(&bc->rseg); | |
1329 | ||
f2cf8e25 | 1330 | switch (bd->type) { |
ae0b78d0 AD |
1331 | case PCIXEM: |
1332 | case PCIXRJ: | |
1333 | case PCIXR: | |
1334 | /* Cover all the 2MEG cards */ | |
1335 | ch->txptr = memaddr + ((tseg << 4) & 0x1fffff); | |
1336 | ch->rxptr = memaddr + ((rseg << 4) & 0x1fffff); | |
1337 | ch->txwin = FEPWIN | (tseg >> 11); | |
1338 | ch->rxwin = FEPWIN | (rseg >> 11); | |
1339 | break; | |
1340 | ||
1341 | case PCXEM: | |
1342 | case EISAXEM: | |
1343 | /* Cover all the 32K windowed cards */ | |
1344 | /* Mask equal to window size - 1 */ | |
1345 | ch->txptr = memaddr + ((tseg << 4) & 0x7fff); | |
1346 | ch->rxptr = memaddr + ((rseg << 4) & 0x7fff); | |
1347 | ch->txwin = FEPWIN | (tseg >> 11); | |
1348 | ch->rxwin = FEPWIN | (rseg >> 11); | |
1349 | break; | |
1da177e4 | 1350 | |
ae0b78d0 AD |
1351 | case PCXEVE: |
1352 | case PCXE: | |
191260a0 AC |
1353 | ch->txptr = memaddr + (((tseg - bd->memory_seg) << 4) |
1354 | & 0x1fff); | |
ae0b78d0 | 1355 | ch->txwin = FEPWIN | ((tseg - bd->memory_seg) >> 9); |
191260a0 AC |
1356 | ch->rxptr = memaddr + (((rseg - bd->memory_seg) << 4) |
1357 | & 0x1fff); | |
1358 | ch->rxwin = FEPWIN | ((rseg - bd->memory_seg) >> 9); | |
ae0b78d0 AD |
1359 | break; |
1360 | ||
1361 | case PCXI: | |
1362 | case PC64XE: | |
1363 | ch->txptr = memaddr + ((tseg - bd->memory_seg) << 4); | |
1364 | ch->rxptr = memaddr + ((rseg - bd->memory_seg) << 4); | |
1365 | ch->txwin = ch->rxwin = 0; | |
1366 | break; | |
1367 | } | |
1da177e4 LT |
1368 | |
1369 | ch->txbufhead = 0; | |
bc9a5154 | 1370 | ch->txbufsize = readw(&bc->tmax) + 1; |
ae0b78d0 | 1371 | |
1da177e4 | 1372 | ch->rxbufhead = 0; |
bc9a5154 | 1373 | ch->rxbufsize = readw(&bc->rmax) + 1; |
ae0b78d0 | 1374 | |
1da177e4 LT |
1375 | lowwater = ch->txbufsize >= 2000 ? 1024 : (ch->txbufsize / 2); |
1376 | ||
1377 | /* Set transmitter low water mark */ | |
1378 | fepcmd(ch, STXLWATER, lowwater, 0, 10, 0); | |
1379 | ||
1380 | /* Set receiver low water mark */ | |
1da177e4 LT |
1381 | fepcmd(ch, SRXLWATER, (ch->rxbufsize / 4), 0, 10, 0); |
1382 | ||
1383 | /* Set receiver high water mark */ | |
1da177e4 LT |
1384 | fepcmd(ch, SRXHWATER, (3 * ch->rxbufsize / 4), 0, 10, 0); |
1385 | ||
f2cf8e25 AC |
1386 | writew(100, &bc->edelay); |
1387 | writeb(1, &bc->idata); | |
ae0b78d0 | 1388 | |
f2cf8e25 AC |
1389 | ch->startc = readb(&bc->startc); |
1390 | ch->stopc = readb(&bc->stopc); | |
1391 | ch->startca = readb(&bc->startca); | |
1392 | ch->stopca = readb(&bc->stopca); | |
ae0b78d0 | 1393 | |
1da177e4 LT |
1394 | ch->fepcflag = 0; |
1395 | ch->fepiflag = 0; | |
1396 | ch->fepoflag = 0; | |
1397 | ch->fepstartc = 0; | |
1398 | ch->fepstopc = 0; | |
1399 | ch->fepstartca = 0; | |
1400 | ch->fepstopca = 0; | |
ae0b78d0 | 1401 | |
6ed1dbae | 1402 | ch->port.close_delay = 50; |
f2cf8e25 AC |
1403 | |
1404 | spin_unlock_irqrestore(&epca_lock, flags); | |
ae0b78d0 | 1405 | } |
1da177e4 | 1406 | |
ae0b78d0 | 1407 | printk(KERN_INFO |
191260a0 AC |
1408 | "Digi PC/Xx Driver V%s: %s I/O = 0x%lx Mem = 0x%lx Ports = %d\n", |
1409 | VERSION, board_desc[bd->type], (long)bd->port, | |
1410 | (long)bd->membase, bd->numports); | |
1da177e4 | 1411 | memwinoff(bd, 0); |
ae0b78d0 | 1412 | } |
1da177e4 LT |
1413 | |
1414 | static void epcapoll(unsigned long ignored) | |
ae0b78d0 | 1415 | { |
1da177e4 LT |
1416 | unsigned long flags; |
1417 | int crd; | |
191260a0 | 1418 | unsigned int head, tail; |
1da177e4 LT |
1419 | struct channel *ch; |
1420 | struct board_info *bd; | |
1421 | ||
ae0b78d0 AD |
1422 | /* |
1423 | * This routine is called upon every timer interrupt. Even though the | |
1424 | * Digi series cards are capable of generating interrupts this method | |
1425 | * of non-looping polling is more efficient. This routine checks for | |
1426 | * card generated events (Such as receive data, are transmit buffer | |
1427 | * empty) and acts on those events. | |
1428 | */ | |
1429 | for (crd = 0; crd < num_cards; crd++) { | |
1da177e4 LT |
1430 | bd = &boards[crd]; |
1431 | ch = card_ptr[crd]; | |
1432 | ||
1433 | if ((bd->status == DISABLED) || digi_poller_inhibited) | |
ae0b78d0 | 1434 | continue; |
1da177e4 | 1435 | |
ae0b78d0 AD |
1436 | /* |
1437 | * assertmemoff is not needed here; indeed it is an empty | |
1438 | * subroutine. It is being kept because future boards may need | |
1439 | * this as well as some legacy boards. | |
1440 | */ | |
f2cf8e25 AC |
1441 | spin_lock_irqsave(&epca_lock, flags); |
1442 | ||
1da177e4 LT |
1443 | assertmemoff(ch); |
1444 | ||
1445 | globalwinon(ch); | |
1446 | ||
ae0b78d0 AD |
1447 | /* |
1448 | * In this case head and tail actually refer to the event queue | |
1449 | * not the transmit or receive queue. | |
1450 | */ | |
f2cf8e25 AC |
1451 | head = readw(&ch->mailbox->ein); |
1452 | tail = readw(&ch->mailbox->eout); | |
1da177e4 | 1453 | |
ae0b78d0 | 1454 | /* If head isn't equal to tail we have an event */ |
1da177e4 LT |
1455 | if (head != tail) |
1456 | doevent(crd); | |
1da177e4 LT |
1457 | memoff(ch); |
1458 | ||
f2cf8e25 | 1459 | spin_unlock_irqrestore(&epca_lock, flags); |
f2cf8e25 | 1460 | } /* End for each card */ |
1da177e4 | 1461 | mod_timer(&epca_timer, jiffies + (HZ / 25)); |
ae0b78d0 | 1462 | } |
1da177e4 LT |
1463 | |
1464 | static void doevent(int crd) | |
ae0b78d0 | 1465 | { |
bc9a5154 | 1466 | void __iomem *eventbuf; |
1da177e4 LT |
1467 | struct channel *ch, *chan0; |
1468 | static struct tty_struct *tty; | |
f2cf8e25 | 1469 | struct board_info *bd; |
bc9a5154 | 1470 | struct board_chan __iomem *bc; |
f2cf8e25 AC |
1471 | unsigned int tail, head; |
1472 | int event, channel; | |
1473 | int mstat, lstat; | |
1da177e4 | 1474 | |
ae0b78d0 AD |
1475 | /* |
1476 | * This subroutine is called by epcapoll when an event is detected | |
1477 | * in the event queue. This routine responds to those events. | |
1478 | */ | |
1da177e4 LT |
1479 | bd = &boards[crd]; |
1480 | ||
1481 | chan0 = card_ptr[crd]; | |
1482 | epcaassert(chan0 <= &digi_channels[nbdevs - 1], "ch out of range"); | |
1da177e4 | 1483 | assertgwinon(chan0); |
191260a0 AC |
1484 | while ((tail = readw(&chan0->mailbox->eout)) != |
1485 | (head = readw(&chan0->mailbox->ein))) { | |
1486 | /* Begin while something in event queue */ | |
1da177e4 | 1487 | assertgwinon(chan0); |
f2cf8e25 | 1488 | eventbuf = bd->re_map_membase + tail + ISTART; |
1da177e4 | 1489 | /* Get the channel the event occurred on */ |
f2cf8e25 | 1490 | channel = readb(eventbuf); |
1da177e4 | 1491 | /* Get the actual event code that occurred */ |
f2cf8e25 | 1492 | event = readb(eventbuf + 1); |
ae0b78d0 AD |
1493 | /* |
1494 | * The two assignments below get the current modem status | |
1495 | * (mstat) and the previous modem status (lstat). These are | |
1496 | * useful becuase an event could signal a change in modem | |
1497 | * signals itself. | |
1498 | */ | |
f2cf8e25 AC |
1499 | mstat = readb(eventbuf + 2); |
1500 | lstat = readb(eventbuf + 3); | |
1da177e4 LT |
1501 | |
1502 | ch = chan0 + channel; | |
f2cf8e25 | 1503 | if ((unsigned)channel >= bd->numports || !ch) { |
1da177e4 LT |
1504 | if (channel >= bd->numports) |
1505 | ch = chan0; | |
1506 | bc = ch->brdchan; | |
1507 | goto next; | |
1508 | } | |
1509 | ||
191260a0 AC |
1510 | bc = ch->brdchan; |
1511 | if (bc == NULL) | |
1da177e4 LT |
1512 | goto next; |
1513 | ||
3969ffba | 1514 | tty = tty_port_tty_get(&ch->port); |
f2cf8e25 | 1515 | if (event & DATA_IND) { /* Begin DATA_IND */ |
3969ffba | 1516 | receive_data(ch, tty); |
1da177e4 | 1517 | assertgwinon(ch); |
1da177e4 LT |
1518 | } /* End DATA_IND */ |
1519 | /* else *//* Fix for DCD transition missed bug */ | |
ae0b78d0 | 1520 | if (event & MODEMCHG_IND) { |
1da177e4 | 1521 | /* A modem signal change has been indicated */ |
1da177e4 | 1522 | ch->imodem = mstat; |
c3301a5c | 1523 | if (test_bit(ASYNCB_CHECK_CD, &ch->port.flags)) { |
191260a0 AC |
1524 | /* We are now receiving dcd */ |
1525 | if (mstat & ch->dcd) | |
52d41738 | 1526 | wake_up_interruptible(&ch->port.open_wait); |
191260a0 AC |
1527 | else /* No dcd; hangup */ |
1528 | pc_sched_event(ch, EPCA_EVENT_HANGUP); | |
1da177e4 | 1529 | } |
ae0b78d0 | 1530 | } |
ae0b78d0 AD |
1531 | if (tty) { |
1532 | if (event & BREAK_IND) { | |
1da177e4 | 1533 | /* A break has been indicated */ |
33f0f88f | 1534 | tty_insert_flip_char(tty, 0, TTY_BREAK); |
ae0b78d0 AD |
1535 | tty_schedule_flip(tty); |
1536 | } else if (event & LOWTX_IND) { | |
1537 | if (ch->statusflags & LOWWAIT) { | |
1da177e4 LT |
1538 | ch->statusflags &= ~LOWWAIT; |
1539 | tty_wakeup(tty); | |
ae0b78d0 AD |
1540 | } |
1541 | } else if (event & EMPTYTX_IND) { | |
191260a0 AC |
1542 | /* This event is generated by |
1543 | setup_empty_event */ | |
1da177e4 | 1544 | ch->statusflags &= ~TXBUSY; |
ae0b78d0 | 1545 | if (ch->statusflags & EMPTYWAIT) { |
1da177e4 LT |
1546 | ch->statusflags &= ~EMPTYWAIT; |
1547 | tty_wakeup(tty); | |
ae0b78d0 AD |
1548 | } |
1549 | } | |
3969ffba | 1550 | tty_kref_put(tty); |
ae0b78d0 | 1551 | } |
191260a0 | 1552 | next: |
1da177e4 | 1553 | globalwinon(ch); |
f2cf8e25 AC |
1554 | BUG_ON(!bc); |
1555 | writew(1, &bc->idata); | |
1556 | writew((tail + 4) & (IMAX - ISTART - 4), &chan0->mailbox->eout); | |
1da177e4 | 1557 | globalwinon(chan0); |
1da177e4 | 1558 | } /* End while something in event queue */ |
ae0b78d0 | 1559 | } |
1da177e4 LT |
1560 | |
1561 | static void fepcmd(struct channel *ch, int cmd, int word_or_byte, | |
191260a0 | 1562 | int byte2, int ncmds, int bytecmd) |
ae0b78d0 | 1563 | { |
bc9a5154 | 1564 | unchar __iomem *memaddr; |
1da177e4 LT |
1565 | unsigned int head, cmdTail, cmdStart, cmdMax; |
1566 | long count; | |
1567 | int n; | |
1568 | ||
1569 | /* This is the routine in which commands may be passed to the card. */ | |
1570 | ||
1571 | if (ch->board->status == DISABLED) | |
1da177e4 | 1572 | return; |
1da177e4 | 1573 | assertgwinon(ch); |
1da177e4 | 1574 | /* Remember head (As well as max) is just an offset not a base addr */ |
f2cf8e25 | 1575 | head = readw(&ch->mailbox->cin); |
1da177e4 | 1576 | /* cmdStart is a base address */ |
f2cf8e25 | 1577 | cmdStart = readw(&ch->mailbox->cstart); |
ae0b78d0 AD |
1578 | /* |
1579 | * We do the addition below because we do not want a max pointer | |
1580 | * relative to cmdStart. We want a max pointer that points at the | |
1581 | * physical end of the command queue. | |
1582 | */ | |
f2cf8e25 | 1583 | cmdMax = (cmdStart + 4 + readw(&ch->mailbox->cmax)); |
1da177e4 LT |
1584 | memaddr = ch->board->re_map_membase; |
1585 | ||
f2cf8e25 | 1586 | if (head >= (cmdMax - cmdStart) || (head & 03)) { |
191260a0 AC |
1587 | printk(KERN_ERR "line %d: Out of range, cmd = %x, head = %x\n", |
1588 | __LINE__, cmd, head); | |
1589 | printk(KERN_ERR "line %d: Out of range, cmdMax = %x, cmdStart = %x\n", | |
1590 | __LINE__, cmdMax, cmdStart); | |
1da177e4 LT |
1591 | return; |
1592 | } | |
f2cf8e25 AC |
1593 | if (bytecmd) { |
1594 | writeb(cmd, memaddr + head + cmdStart + 0); | |
1595 | writeb(ch->channelnum, memaddr + head + cmdStart + 1); | |
1da177e4 | 1596 | /* Below word_or_byte is bits to set */ |
f2cf8e25 | 1597 | writeb(word_or_byte, memaddr + head + cmdStart + 2); |
1da177e4 | 1598 | /* Below byte2 is bits to reset */ |
f2cf8e25 AC |
1599 | writeb(byte2, memaddr + head + cmdStart + 3); |
1600 | } else { | |
1601 | writeb(cmd, memaddr + head + cmdStart + 0); | |
1602 | writeb(ch->channelnum, memaddr + head + cmdStart + 1); | |
1603 | writeb(word_or_byte, memaddr + head + cmdStart + 2); | |
1da177e4 | 1604 | } |
1da177e4 | 1605 | head = (head + 4) & (cmdMax - cmdStart - 4); |
f2cf8e25 | 1606 | writew(head, &ch->mailbox->cin); |
1da177e4 LT |
1607 | count = FEPTIMEOUT; |
1608 | ||
ae0b78d0 | 1609 | for (;;) { |
1da177e4 | 1610 | count--; |
f2cf8e25 | 1611 | if (count == 0) { |
1da177e4 LT |
1612 | printk(KERN_ERR "<Error> - Fep not responding in fepcmd()\n"); |
1613 | return; | |
1614 | } | |
f2cf8e25 AC |
1615 | head = readw(&ch->mailbox->cin); |
1616 | cmdTail = readw(&ch->mailbox->cout); | |
1da177e4 | 1617 | n = (head - cmdTail) & (cmdMax - cmdStart - 4); |
ae0b78d0 AD |
1618 | /* |
1619 | * Basically this will break when the FEP acknowledges the | |
1620 | * command by incrementing cmdTail (Making it equal to head). | |
1621 | */ | |
1da177e4 | 1622 | if (n <= ncmds * (sizeof(short) * 4)) |
ae0b78d0 AD |
1623 | break; |
1624 | } | |
1625 | } | |
1da177e4 | 1626 | |
ae0b78d0 AD |
1627 | /* |
1628 | * Digi products use fields in their channels structures that are very similar | |
1629 | * to the c_cflag and c_iflag fields typically found in UNIX termios | |
1630 | * structures. The below three routines allow mappings between these hardware | |
1631 | * "flags" and their respective Linux flags. | |
1632 | */ | |
1da177e4 | 1633 | static unsigned termios2digi_h(struct channel *ch, unsigned cflag) |
ae0b78d0 | 1634 | { |
1da177e4 LT |
1635 | unsigned res = 0; |
1636 | ||
f2cf8e25 | 1637 | if (cflag & CRTSCTS) { |
1da177e4 LT |
1638 | ch->digiext.digi_flags |= (RTSPACE | CTSPACE); |
1639 | res |= ((ch->m_cts) | (ch->m_rts)); | |
1640 | } | |
1641 | ||
1642 | if (ch->digiext.digi_flags & RTSPACE) | |
1643 | res |= ch->m_rts; | |
1644 | ||
1645 | if (ch->digiext.digi_flags & DTRPACE) | |
1646 | res |= ch->m_dtr; | |
1647 | ||
1648 | if (ch->digiext.digi_flags & CTSPACE) | |
1649 | res |= ch->m_cts; | |
1650 | ||
1651 | if (ch->digiext.digi_flags & DSRPACE) | |
1652 | res |= ch->dsr; | |
1653 | ||
1654 | if (ch->digiext.digi_flags & DCDPACE) | |
1655 | res |= ch->dcd; | |
1656 | ||
1657 | if (res & (ch->m_rts)) | |
1658 | ch->digiext.digi_flags |= RTSPACE; | |
1659 | ||
1660 | if (res & (ch->m_cts)) | |
1661 | ch->digiext.digi_flags |= CTSPACE; | |
1662 | ||
1663 | return res; | |
ae0b78d0 | 1664 | } |
1da177e4 | 1665 | |
1da177e4 | 1666 | static unsigned termios2digi_i(struct channel *ch, unsigned iflag) |
ae0b78d0 AD |
1667 | { |
1668 | unsigned res = iflag & (IGNBRK | BRKINT | IGNPAR | PARMRK | | |
191260a0 | 1669 | INPCK | ISTRIP | IXON | IXANY | IXOFF); |
1da177e4 LT |
1670 | if (ch->digiext.digi_flags & DIGI_AIXON) |
1671 | res |= IAIXON; | |
1672 | return res; | |
ae0b78d0 | 1673 | } |
1da177e4 LT |
1674 | |
1675 | static unsigned termios2digi_c(struct channel *ch, unsigned cflag) | |
ae0b78d0 | 1676 | { |
1da177e4 | 1677 | unsigned res = 0; |
ae0b78d0 | 1678 | if (cflag & CBAUDEX) { |
1da177e4 | 1679 | ch->digiext.digi_flags |= DIGI_FAST; |
ae0b78d0 AD |
1680 | /* |
1681 | * HUPCL bit is used by FEP to indicate fast baud table is to | |
1682 | * be used. | |
1683 | */ | |
1da177e4 | 1684 | res |= FEP_HUPCL; |
ae0b78d0 AD |
1685 | } else |
1686 | ch->digiext.digi_flags &= ~DIGI_FAST; | |
1687 | /* | |
1688 | * CBAUD has bit position 0x1000 set these days to indicate Linux | |
1689 | * baud rate remap. Digi hardware can't handle the bit assignment. | |
1690 | * (We use a different bit assignment for high speed.). Clear this | |
1691 | * bit out. | |
1692 | */ | |
1da177e4 | 1693 | res |= cflag & ((CBAUD ^ CBAUDEX) | PARODD | PARENB | CSTOPB | CSIZE); |
ae0b78d0 AD |
1694 | /* |
1695 | * This gets a little confusing. The Digi cards have their own | |
8dfba4d7 | 1696 | * representation of c_cflags controlling baud rate. For the most part |
ae0b78d0 AD |
1697 | * this is identical to the Linux implementation. However; Digi |
1698 | * supports one rate (76800) that Linux doesn't. This means that the | |
1699 | * c_cflag entry that would normally mean 76800 for Digi actually means | |
1700 | * 115200 under Linux. Without the below mapping, a stty 115200 would | |
1701 | * only drive the board at 76800. Since the rate 230400 is also found | |
1702 | * after 76800, the same problem afflicts us when we choose a rate of | |
1703 | * 230400. Without the below modificiation stty 230400 would actually | |
1704 | * give us 115200. | |
1705 | * | |
1706 | * There are two additional differences. The Linux value for CLOCAL | |
1707 | * (0x800; 0004000) has no meaning to the Digi hardware. Also in later | |
1708 | * releases of Linux; the CBAUD define has CBAUDEX (0x1000; 0010000) | |
1709 | * ored into it (CBAUD = 0x100f as opposed to 0xf). CBAUDEX should be | |
1710 | * checked for a screened out prior to termios2digi_c returning. Since | |
1711 | * CLOCAL isn't used by the board this can be ignored as long as the | |
1712 | * returned value is used only by Digi hardware. | |
1713 | */ | |
f2cf8e25 | 1714 | if (cflag & CBAUDEX) { |
ae0b78d0 AD |
1715 | /* |
1716 | * The below code is trying to guarantee that only baud rates | |
1717 | * 115200 and 230400 are remapped. We use exclusive or because | |
1718 | * the various baud rates share common bit positions and | |
1719 | * therefore can't be tested for easily. | |
1720 | */ | |
1721 | if ((!((cflag & 0x7) ^ (B115200 & ~CBAUDEX))) || | |
1da177e4 | 1722 | (!((cflag & 0x7) ^ (B230400 & ~CBAUDEX)))) |
1da177e4 | 1723 | res += 1; |
1da177e4 | 1724 | } |
1da177e4 | 1725 | return res; |
ae0b78d0 | 1726 | } |
1da177e4 | 1727 | |
f2cf8e25 | 1728 | /* Caller must hold the locks */ |
1da177e4 | 1729 | static void epcaparam(struct tty_struct *tty, struct channel *ch) |
ae0b78d0 | 1730 | { |
1da177e4 | 1731 | unsigned int cmdHead; |
606d099c | 1732 | struct ktermios *ts; |
bc9a5154 | 1733 | struct board_chan __iomem *bc; |
1da177e4 LT |
1734 | unsigned mval, hflow, cflag, iflag; |
1735 | ||
1736 | bc = ch->brdchan; | |
11fb09bf | 1737 | epcaassert(bc != NULL, "bc out of range"); |
1da177e4 LT |
1738 | |
1739 | assertgwinon(ch); | |
1da177e4 | 1740 | ts = tty->termios; |
f2cf8e25 AC |
1741 | if ((ts->c_cflag & CBAUD) == 0) { /* Begin CBAUD detected */ |
1742 | cmdHead = readw(&bc->rin); | |
bc9a5154 | 1743 | writew(cmdHead, &bc->rout); |
f2cf8e25 | 1744 | cmdHead = readw(&bc->tin); |
1da177e4 | 1745 | /* Changing baud in mid-stream transmission can be wonderful */ |
ae0b78d0 AD |
1746 | /* |
1747 | * Flush current transmit buffer by setting cmdTail pointer | |
1748 | * (tout) to cmdHead pointer (tin). Hopefully the transmit | |
1749 | * buffer is empty. | |
1750 | */ | |
1da177e4 LT |
1751 | fepcmd(ch, STOUT, (unsigned) cmdHead, 0, 0, 0); |
1752 | mval = 0; | |
ae0b78d0 AD |
1753 | } else { /* Begin CBAUD not detected */ |
1754 | /* | |
1755 | * c_cflags have changed but that change had nothing to do with | |
1756 | * BAUD. Propagate the change to the card. | |
1757 | */ | |
1da177e4 | 1758 | cflag = termios2digi_c(ch, ts->c_cflag); |
f2cf8e25 | 1759 | if (cflag != ch->fepcflag) { |
1da177e4 LT |
1760 | ch->fepcflag = cflag; |
1761 | /* Set baud rate, char size, stop bits, parity */ | |
1762 | fepcmd(ch, SETCTRLFLAGS, (unsigned) cflag, 0, 0, 0); | |
1763 | } | |
ae0b78d0 AD |
1764 | /* |
1765 | * If the user has not forced CLOCAL and if the device is not a | |
1766 | * CALLOUT device (Which is always CLOCAL) we set flags such | |
1767 | * that the driver will wait on carrier detect. | |
1768 | */ | |
1da177e4 | 1769 | if (ts->c_cflag & CLOCAL) |
c3301a5c | 1770 | clear_bit(ASYNCB_CHECK_CD, &ch->port.flags); |
1da177e4 | 1771 | else |
c3301a5c | 1772 | set_bit(ASYNCB_CHECK_CD, &ch->port.flags); |
1da177e4 | 1773 | mval = ch->m_dtr | ch->m_rts; |
1da177e4 | 1774 | } /* End CBAUD not detected */ |
1da177e4 | 1775 | iflag = termios2digi_i(ch, ts->c_iflag); |
1da177e4 | 1776 | /* Check input mode flags */ |
f2cf8e25 | 1777 | if (iflag != ch->fepiflag) { |
1da177e4 | 1778 | ch->fepiflag = iflag; |
ae0b78d0 AD |
1779 | /* |
1780 | * Command sets channels iflag structure on the board. Such | |
1781 | * things as input soft flow control, handling of parity | |
1782 | * errors, and break handling are all set here. | |
191260a0 AC |
1783 | * |
1784 | * break handling, parity handling, input stripping, | |
1785 | * flow control chars | |
ae0b78d0 | 1786 | */ |
1da177e4 LT |
1787 | fepcmd(ch, SETIFLAGS, (unsigned int) ch->fepiflag, 0, 0, 0); |
1788 | } | |
ae0b78d0 AD |
1789 | /* |
1790 | * Set the board mint value for this channel. This will cause hardware | |
1791 | * events to be generated each time the DCD signal (Described in mint) | |
1792 | * changes. | |
1793 | */ | |
f2cf8e25 | 1794 | writeb(ch->dcd, &bc->mint); |
1da177e4 LT |
1795 | if ((ts->c_cflag & CLOCAL) || (ch->digiext.digi_flags & DIGI_FORCEDCD)) |
1796 | if (ch->digiext.digi_flags & DIGI_FORCEDCD) | |
f2cf8e25 AC |
1797 | writeb(0, &bc->mint); |
1798 | ch->imodem = readb(&bc->mstat); | |
1da177e4 | 1799 | hflow = termios2digi_h(ch, ts->c_cflag); |
f2cf8e25 | 1800 | if (hflow != ch->hflow) { |
1da177e4 | 1801 | ch->hflow = hflow; |
ae0b78d0 AD |
1802 | /* |
1803 | * Hard flow control has been selected but the board is not | |
1804 | * using it. Activate hard flow control now. | |
1805 | */ | |
1da177e4 LT |
1806 | fepcmd(ch, SETHFLOW, hflow, 0xff, 0, 1); |
1807 | } | |
1da177e4 LT |
1808 | mval ^= ch->modemfake & (mval ^ ch->modem); |
1809 | ||
f2cf8e25 | 1810 | if (ch->omodem ^ mval) { |
1da177e4 | 1811 | ch->omodem = mval; |
ae0b78d0 AD |
1812 | /* |
1813 | * The below command sets the DTR and RTS mstat structure. If | |
1814 | * hard flow control is NOT active these changes will drive the | |
1815 | * output of the actual DTR and RTS lines. If hard flow control | |
1816 | * is active, the changes will be saved in the mstat structure | |
1817 | * and only asserted when hard flow control is turned off. | |
1818 | */ | |
1da177e4 LT |
1819 | |
1820 | /* First reset DTR & RTS; then set them */ | |
1821 | fepcmd(ch, SETMODEM, 0, ((ch->m_dtr)|(ch->m_rts)), 0, 1); | |
1822 | fepcmd(ch, SETMODEM, mval, 0, 0, 1); | |
1da177e4 | 1823 | } |
f2cf8e25 | 1824 | if (ch->startc != ch->fepstartc || ch->stopc != ch->fepstopc) { |
1da177e4 LT |
1825 | ch->fepstartc = ch->startc; |
1826 | ch->fepstopc = ch->stopc; | |
ae0b78d0 AD |
1827 | /* |
1828 | * The XON / XOFF characters have changed; propagate these | |
1829 | * changes to the card. | |
1830 | */ | |
1da177e4 LT |
1831 | fepcmd(ch, SONOFFC, ch->fepstartc, ch->fepstopc, 0, 1); |
1832 | } | |
f2cf8e25 | 1833 | if (ch->startca != ch->fepstartca || ch->stopca != ch->fepstopca) { |
1da177e4 LT |
1834 | ch->fepstartca = ch->startca; |
1835 | ch->fepstopca = ch->stopca; | |
ae0b78d0 AD |
1836 | /* |
1837 | * Similar to the above, this time the auxilarly XON / XOFF | |
1838 | * characters have changed; propagate these changes to the card. | |
1839 | */ | |
1da177e4 LT |
1840 | fepcmd(ch, SAUXONOFFC, ch->fepstartca, ch->fepstopca, 0, 1); |
1841 | } | |
ae0b78d0 | 1842 | } |
1da177e4 | 1843 | |
f2cf8e25 | 1844 | /* Caller holds lock */ |
3969ffba | 1845 | static void receive_data(struct channel *ch, struct tty_struct *tty) |
ae0b78d0 | 1846 | { |
1da177e4 | 1847 | unchar *rptr; |
606d099c | 1848 | struct ktermios *ts = NULL; |
bc9a5154 | 1849 | struct board_chan __iomem *bc; |
f2cf8e25 AC |
1850 | int dataToRead, wrapgap, bytesAvailable; |
1851 | unsigned int tail, head; | |
1da177e4 | 1852 | unsigned int wrapmask; |
1da177e4 | 1853 | |
ae0b78d0 AD |
1854 | /* |
1855 | * This routine is called by doint when a receive data event has taken | |
1856 | * place. | |
1857 | */ | |
1da177e4 | 1858 | globalwinon(ch); |
1da177e4 LT |
1859 | if (ch->statusflags & RXSTOPPED) |
1860 | return; | |
1da177e4 LT |
1861 | if (tty) |
1862 | ts = tty->termios; | |
1da177e4 | 1863 | bc = ch->brdchan; |
f2cf8e25 | 1864 | BUG_ON(!bc); |
1da177e4 LT |
1865 | wrapmask = ch->rxbufsize - 1; |
1866 | ||
ae0b78d0 AD |
1867 | /* |
1868 | * Get the head and tail pointers to the receiver queue. Wrap the head | |
1869 | * pointer if it has reached the end of the buffer. | |
1870 | */ | |
f2cf8e25 | 1871 | head = readw(&bc->rin); |
1da177e4 | 1872 | head &= wrapmask; |
f2cf8e25 | 1873 | tail = readw(&bc->rout) & wrapmask; |
1da177e4 LT |
1874 | |
1875 | bytesAvailable = (head - tail) & wrapmask; | |
1da177e4 LT |
1876 | if (bytesAvailable == 0) |
1877 | return; | |
1878 | ||
ae0b78d0 | 1879 | /* If CREAD bit is off or device not open, set TX tail to head */ |
191260a0 | 1880 | if (!tty || !ts || !(ts->c_cflag & CREAD)) { |
bc9a5154 | 1881 | writew(head, &bc->rout); |
1da177e4 LT |
1882 | return; |
1883 | } | |
1884 | ||
33f0f88f | 1885 | if (tty_buffer_request_room(tty, bytesAvailable + 1) == 0) |
1da177e4 LT |
1886 | return; |
1887 | ||
f2cf8e25 AC |
1888 | if (readb(&bc->orun)) { |
1889 | writeb(0, &bc->orun); | |
191260a0 AC |
1890 | printk(KERN_WARNING "epca; overrun! DigiBoard device %s\n", |
1891 | tty->name); | |
33f0f88f | 1892 | tty_insert_flip_char(tty, 0, TTY_OVERRUN); |
1da177e4 | 1893 | } |
1da177e4 | 1894 | rxwinon(ch); |
191260a0 AC |
1895 | while (bytesAvailable > 0) { |
1896 | /* Begin while there is data on the card */ | |
1da177e4 | 1897 | wrapgap = (head >= tail) ? head - tail : ch->rxbufsize - tail; |
ae0b78d0 AD |
1898 | /* |
1899 | * Even if head has wrapped around only report the amount of | |
1900 | * data to be equal to the size - tail. Remember memcpy can't | |
1901 | * automaticly wrap around the receive buffer. | |
1902 | */ | |
191260a0 AC |
1903 | dataToRead = (wrapgap < bytesAvailable) ? wrapgap |
1904 | : bytesAvailable; | |
ae0b78d0 | 1905 | /* Make sure we don't overflow the buffer */ |
33f0f88f | 1906 | dataToRead = tty_prepare_flip_string(tty, &rptr, dataToRead); |
1da177e4 LT |
1907 | if (dataToRead == 0) |
1908 | break; | |
ae0b78d0 AD |
1909 | /* |
1910 | * Move data read from our card into the line disciplines | |
1911 | * buffer for translation if necessary. | |
1912 | */ | |
f2cf8e25 | 1913 | memcpy_fromio(rptr, ch->rxptr + tail, dataToRead); |
1da177e4 LT |
1914 | tail = (tail + dataToRead) & wrapmask; |
1915 | bytesAvailable -= dataToRead; | |
1da177e4 | 1916 | } /* End while there is data on the card */ |
1da177e4 | 1917 | globalwinon(ch); |
f2cf8e25 | 1918 | writew(tail, &bc->rout); |
1da177e4 | 1919 | /* Must be called with global data */ |
3969ffba | 1920 | tty_schedule_flip(tty); |
ae0b78d0 | 1921 | } |
1da177e4 | 1922 | |
ae0b78d0 | 1923 | static int info_ioctl(struct tty_struct *tty, struct file *file, |
1da177e4 LT |
1924 | unsigned int cmd, unsigned long arg) |
1925 | { | |
ae0b78d0 AD |
1926 | switch (cmd) { |
1927 | case DIGI_GETINFO: | |
1928 | { | |
1929 | struct digi_info di; | |
1da177e4 LT |
1930 | int brd; |
1931 | ||
ae0b78d0 | 1932 | if (get_user(brd, (unsigned int __user *)arg)) |
f2cf8e25 AC |
1933 | return -EFAULT; |
1934 | if (brd < 0 || brd >= num_cards || num_cards == 0) | |
1935 | return -ENODEV; | |
1da177e4 LT |
1936 | |
1937 | memset(&di, 0, sizeof(di)); | |
1938 | ||
ae0b78d0 | 1939 | di.board = brd; |
1da177e4 LT |
1940 | di.status = boards[brd].status; |
1941 | di.type = boards[brd].type ; | |
1942 | di.numports = boards[brd].numports ; | |
f2cf8e25 AC |
1943 | /* Legacy fixups - just move along nothing to see */ |
1944 | di.port = (unsigned char *)boards[brd].port ; | |
1945 | di.membase = (unsigned char *)boards[brd].membase ; | |
1da177e4 | 1946 | |
ae0b78d0 | 1947 | if (copy_to_user((void __user *)arg, &di, sizeof(di))) |
1da177e4 LT |
1948 | return -EFAULT; |
1949 | break; | |
1950 | ||
ae0b78d0 | 1951 | } |
1da177e4 | 1952 | |
ae0b78d0 AD |
1953 | case DIGI_POLLER: |
1954 | { | |
1955 | int brd = arg & 0xff000000 >> 16; | |
1956 | unsigned char state = arg & 0xff; | |
1da177e4 | 1957 | |
f2cf8e25 AC |
1958 | if (brd < 0 || brd >= num_cards) { |
1959 | printk(KERN_ERR "epca: DIGI POLLER : brd not valid!\n"); | |
ae0b78d0 | 1960 | return -ENODEV; |
1da177e4 | 1961 | } |
ae0b78d0 AD |
1962 | digi_poller_inhibited = state; |
1963 | break; | |
1964 | } | |
1965 | ||
1966 | case DIGI_INIT: | |
1967 | { | |
1968 | /* | |
1969 | * This call is made by the apps to complete the | |
8dfba4d7 | 1970 | * initialization of the board(s). This routine is |
ae0b78d0 AD |
1971 | * responsible for setting the card to its initial |
1972 | * state and setting the drivers control fields to the | |
1973 | * sutianle settings for the card in question. | |
1974 | */ | |
1975 | int crd; | |
1976 | for (crd = 0; crd < num_cards; crd++) | |
1977 | post_fep_init(crd); | |
1978 | break; | |
1979 | } | |
1980 | default: | |
1981 | return -ENOTTY; | |
1982 | } | |
1983 | return 0; | |
1da177e4 | 1984 | } |
1da177e4 LT |
1985 | |
1986 | static int pc_tiocmget(struct tty_struct *tty, struct file *file) | |
1987 | { | |
c9f19e96 | 1988 | struct channel *ch = tty->driver_data; |
bc9a5154 | 1989 | struct board_chan __iomem *bc; |
1da177e4 LT |
1990 | unsigned int mstat, mflag = 0; |
1991 | unsigned long flags; | |
1992 | ||
1993 | if (ch) | |
1994 | bc = ch->brdchan; | |
1995 | else | |
f2cf8e25 | 1996 | return -EINVAL; |
1da177e4 | 1997 | |
f2cf8e25 | 1998 | spin_lock_irqsave(&epca_lock, flags); |
1da177e4 | 1999 | globalwinon(ch); |
f2cf8e25 | 2000 | mstat = readb(&bc->mstat); |
1da177e4 | 2001 | memoff(ch); |
f2cf8e25 | 2002 | spin_unlock_irqrestore(&epca_lock, flags); |
1da177e4 LT |
2003 | |
2004 | if (mstat & ch->m_dtr) | |
2005 | mflag |= TIOCM_DTR; | |
1da177e4 LT |
2006 | if (mstat & ch->m_rts) |
2007 | mflag |= TIOCM_RTS; | |
1da177e4 LT |
2008 | if (mstat & ch->m_cts) |
2009 | mflag |= TIOCM_CTS; | |
1da177e4 LT |
2010 | if (mstat & ch->dsr) |
2011 | mflag |= TIOCM_DSR; | |
1da177e4 LT |
2012 | if (mstat & ch->m_ri) |
2013 | mflag |= TIOCM_RI; | |
1da177e4 LT |
2014 | if (mstat & ch->dcd) |
2015 | mflag |= TIOCM_CD; | |
1da177e4 LT |
2016 | return mflag; |
2017 | } | |
2018 | ||
2019 | static int pc_tiocmset(struct tty_struct *tty, struct file *file, | |
2020 | unsigned int set, unsigned int clear) | |
2021 | { | |
c9f19e96 | 2022 | struct channel *ch = tty->driver_data; |
1da177e4 LT |
2023 | unsigned long flags; |
2024 | ||
f2cf8e25 AC |
2025 | if (!ch) |
2026 | return -EINVAL; | |
1da177e4 | 2027 | |
f2cf8e25 | 2028 | spin_lock_irqsave(&epca_lock, flags); |
1da177e4 | 2029 | /* |
ae0b78d0 AD |
2030 | * I think this modemfake stuff is broken. It doesn't correctly reflect |
2031 | * the behaviour desired by the TIOCM* ioctls. Therefore this is | |
2032 | * probably broken. | |
1da177e4 LT |
2033 | */ |
2034 | if (set & TIOCM_RTS) { | |
2035 | ch->modemfake |= ch->m_rts; | |
2036 | ch->modem |= ch->m_rts; | |
2037 | } | |
2038 | if (set & TIOCM_DTR) { | |
2039 | ch->modemfake |= ch->m_dtr; | |
2040 | ch->modem |= ch->m_dtr; | |
2041 | } | |
2042 | if (clear & TIOCM_RTS) { | |
2043 | ch->modemfake |= ch->m_rts; | |
2044 | ch->modem &= ~ch->m_rts; | |
2045 | } | |
2046 | if (clear & TIOCM_DTR) { | |
2047 | ch->modemfake |= ch->m_dtr; | |
2048 | ch->modem &= ~ch->m_dtr; | |
2049 | } | |
1da177e4 | 2050 | globalwinon(ch); |
ae0b78d0 AD |
2051 | /* |
2052 | * The below routine generally sets up parity, baud, flow control | |
2053 | * issues, etc.... It effect both control flags and input flags. | |
2054 | */ | |
191260a0 | 2055 | epcaparam(tty, ch); |
1da177e4 | 2056 | memoff(ch); |
f2cf8e25 | 2057 | spin_unlock_irqrestore(&epca_lock, flags); |
1da177e4 LT |
2058 | return 0; |
2059 | } | |
2060 | ||
191260a0 AC |
2061 | static int pc_ioctl(struct tty_struct *tty, struct file *file, |
2062 | unsigned int cmd, unsigned long arg) | |
ae0b78d0 | 2063 | { |
1da177e4 | 2064 | digiflow_t dflow; |
1da177e4 LT |
2065 | unsigned long flags; |
2066 | unsigned int mflag, mstat; | |
2067 | unsigned char startc, stopc; | |
bc9a5154 | 2068 | struct board_chan __iomem *bc; |
c9f19e96 | 2069 | struct channel *ch = tty->driver_data; |
1da177e4 | 2070 | void __user *argp = (void __user *)arg; |
ae0b78d0 | 2071 | |
1da177e4 LT |
2072 | if (ch) |
2073 | bc = ch->brdchan; | |
ae0b78d0 | 2074 | else |
f2cf8e25 | 2075 | return -EINVAL; |
ae0b78d0 | 2076 | switch (cmd) { |
ae0b78d0 AD |
2077 | case TIOCMODG: |
2078 | mflag = pc_tiocmget(tty, file); | |
2079 | if (put_user(mflag, (unsigned long __user *)argp)) | |
2080 | return -EFAULT; | |
2081 | break; | |
2082 | case TIOCMODS: | |
2083 | if (get_user(mstat, (unsigned __user *)argp)) | |
2084 | return -EFAULT; | |
2085 | return pc_tiocmset(tty, file, mstat, ~mstat); | |
2086 | case TIOCSDTR: | |
2087 | spin_lock_irqsave(&epca_lock, flags); | |
2088 | ch->omodem |= ch->m_dtr; | |
2089 | globalwinon(ch); | |
2090 | fepcmd(ch, SETMODEM, ch->m_dtr, 0, 10, 1); | |
2091 | memoff(ch); | |
2092 | spin_unlock_irqrestore(&epca_lock, flags); | |
2093 | break; | |
1da177e4 | 2094 | |
ae0b78d0 AD |
2095 | case TIOCCDTR: |
2096 | spin_lock_irqsave(&epca_lock, flags); | |
2097 | ch->omodem &= ~ch->m_dtr; | |
2098 | globalwinon(ch); | |
2099 | fepcmd(ch, SETMODEM, 0, ch->m_dtr, 10, 1); | |
2100 | memoff(ch); | |
2101 | spin_unlock_irqrestore(&epca_lock, flags); | |
2102 | break; | |
2103 | case DIGI_GETA: | |
2104 | if (copy_to_user(argp, &ch->digiext, sizeof(digi_t))) | |
2105 | return -EFAULT; | |
2106 | break; | |
2107 | case DIGI_SETAW: | |
2108 | case DIGI_SETAF: | |
37925e05 | 2109 | lock_kernel(); |
ae0b78d0 | 2110 | if (cmd == DIGI_SETAW) { |
191260a0 AC |
2111 | /* Setup an event to indicate when the transmit |
2112 | buffer empties */ | |
f2cf8e25 | 2113 | spin_lock_irqsave(&epca_lock, flags); |
191260a0 | 2114 | setup_empty_event(tty, ch); |
f2cf8e25 | 2115 | spin_unlock_irqrestore(&epca_lock, flags); |
ae0b78d0 AD |
2116 | tty_wait_until_sent(tty, 0); |
2117 | } else { | |
2118 | /* ldisc lock already held in ioctl */ | |
c65c9bc3 AC |
2119 | if (tty->ldisc->ops->flush_buffer) |
2120 | tty->ldisc->ops->flush_buffer(tty); | |
ae0b78d0 | 2121 | } |
37925e05 | 2122 | unlock_kernel(); |
ae0b78d0 AD |
2123 | /* Fall Thru */ |
2124 | case DIGI_SETA: | |
2125 | if (copy_from_user(&ch->digiext, argp, sizeof(digi_t))) | |
2126 | return -EFAULT; | |
2127 | ||
2128 | if (ch->digiext.digi_flags & DIGI_ALTPIN) { | |
2129 | ch->dcd = ch->m_dsr; | |
2130 | ch->dsr = ch->m_dcd; | |
2131 | } else { | |
2132 | ch->dcd = ch->m_dcd; | |
2133 | ch->dsr = ch->m_dsr; | |
1da177e4 | 2134 | } |
1da177e4 | 2135 | |
ae0b78d0 AD |
2136 | spin_lock_irqsave(&epca_lock, flags); |
2137 | globalwinon(ch); | |
1da177e4 | 2138 | |
ae0b78d0 AD |
2139 | /* |
2140 | * The below routine generally sets up parity, baud, flow | |
2141 | * control issues, etc.... It effect both control flags and | |
2142 | * input flags. | |
2143 | */ | |
191260a0 | 2144 | epcaparam(tty, ch); |
ae0b78d0 AD |
2145 | memoff(ch); |
2146 | spin_unlock_irqrestore(&epca_lock, flags); | |
2147 | break; | |
2148 | ||
2149 | case DIGI_GETFLOW: | |
2150 | case DIGI_GETAFLOW: | |
2151 | spin_lock_irqsave(&epca_lock, flags); | |
2152 | globalwinon(ch); | |
2153 | if (cmd == DIGI_GETFLOW) { | |
2154 | dflow.startc = readb(&bc->startc); | |
2155 | dflow.stopc = readb(&bc->stopc); | |
2156 | } else { | |
2157 | dflow.startc = readb(&bc->startca); | |
2158 | dflow.stopc = readb(&bc->stopca); | |
2159 | } | |
2160 | memoff(ch); | |
2161 | spin_unlock_irqrestore(&epca_lock, flags); | |
2162 | ||
2163 | if (copy_to_user(argp, &dflow, sizeof(dflow))) | |
2164 | return -EFAULT; | |
2165 | break; | |
2166 | ||
2167 | case DIGI_SETAFLOW: | |
2168 | case DIGI_SETFLOW: | |
2169 | if (cmd == DIGI_SETFLOW) { | |
2170 | startc = ch->startc; | |
2171 | stopc = ch->stopc; | |
2172 | } else { | |
2173 | startc = ch->startca; | |
2174 | stopc = ch->stopca; | |
2175 | } | |
1da177e4 | 2176 | |
ae0b78d0 AD |
2177 | if (copy_from_user(&dflow, argp, sizeof(dflow))) |
2178 | return -EFAULT; | |
2179 | ||
191260a0 AC |
2180 | if (dflow.startc != startc || dflow.stopc != stopc) { |
2181 | /* Begin if setflow toggled */ | |
f2cf8e25 | 2182 | spin_lock_irqsave(&epca_lock, flags); |
1da177e4 | 2183 | globalwinon(ch); |
1da177e4 | 2184 | |
f2cf8e25 | 2185 | if (cmd == DIGI_SETFLOW) { |
ae0b78d0 AD |
2186 | ch->fepstartc = ch->startc = dflow.startc; |
2187 | ch->fepstopc = ch->stopc = dflow.stopc; | |
191260a0 AC |
2188 | fepcmd(ch, SONOFFC, ch->fepstartc, |
2189 | ch->fepstopc, 0, 1); | |
f2cf8e25 | 2190 | } else { |
ae0b78d0 AD |
2191 | ch->fepstartca = ch->startca = dflow.startc; |
2192 | ch->fepstopca = ch->stopca = dflow.stopc; | |
191260a0 AC |
2193 | fepcmd(ch, SAUXONOFFC, ch->fepstartca, |
2194 | ch->fepstopca, 0, 1); | |
1da177e4 LT |
2195 | } |
2196 | ||
ae0b78d0 AD |
2197 | if (ch->statusflags & TXSTOPPED) |
2198 | pc_start(tty); | |
1da177e4 | 2199 | |
ae0b78d0 AD |
2200 | memoff(ch); |
2201 | spin_unlock_irqrestore(&epca_lock, flags); | |
2202 | } /* End if setflow toggled */ | |
2203 | break; | |
2204 | default: | |
2205 | return -ENOIOCTLCMD; | |
2206 | } | |
1da177e4 | 2207 | return 0; |
ae0b78d0 | 2208 | } |
1da177e4 | 2209 | |
606d099c | 2210 | static void pc_set_termios(struct tty_struct *tty, struct ktermios *old_termios) |
ae0b78d0 | 2211 | { |
1da177e4 LT |
2212 | struct channel *ch; |
2213 | unsigned long flags; | |
ae0b78d0 AD |
2214 | /* |
2215 | * verifyChannel returns the channel from the tty struct if it is | |
2216 | * valid. This serves as a sanity check. | |
2217 | */ | |
191260a0 AC |
2218 | ch = verifyChannel(tty); |
2219 | ||
2220 | if (ch != NULL) { /* Begin if channel valid */ | |
f2cf8e25 | 2221 | spin_lock_irqsave(&epca_lock, flags); |
1da177e4 LT |
2222 | globalwinon(ch); |
2223 | epcaparam(tty, ch); | |
2224 | memoff(ch); | |
f2cf8e25 | 2225 | spin_unlock_irqrestore(&epca_lock, flags); |
1da177e4 LT |
2226 | |
2227 | if ((old_termios->c_cflag & CRTSCTS) && | |
2228 | ((tty->termios->c_cflag & CRTSCTS) == 0)) | |
2229 | tty->hw_stopped = 0; | |
2230 | ||
2231 | if (!(old_termios->c_cflag & CLOCAL) && | |
2232 | (tty->termios->c_cflag & CLOCAL)) | |
52d41738 | 2233 | wake_up_interruptible(&ch->port.open_wait); |
1da177e4 | 2234 | |
1da177e4 | 2235 | } /* End if channel valid */ |
ae0b78d0 | 2236 | } |
1da177e4 | 2237 | |
c4028958 | 2238 | static void do_softint(struct work_struct *work) |
ae0b78d0 | 2239 | { |
c4028958 | 2240 | struct channel *ch = container_of(work, struct channel, tqueue); |
1da177e4 | 2241 | /* Called in response to a modem change event */ |
ae0b78d0 | 2242 | if (ch && ch->magic == EPCA_MAGIC) { |
a419aef8 | 2243 | struct tty_struct *tty = tty_port_tty_get(&ch->port); |
1da177e4 | 2244 | |
f2cf8e25 | 2245 | if (tty && tty->driver_data) { |
ae0b78d0 | 2246 | if (test_and_clear_bit(EPCA_EVENT_HANGUP, &ch->event)) { |
191260a0 | 2247 | tty_hangup(tty); |
52d41738 | 2248 | wake_up_interruptible(&ch->port.open_wait); |
c3301a5c JS |
2249 | clear_bit(ASYNCB_NORMAL_ACTIVE, |
2250 | &ch->port.flags); | |
ae0b78d0 | 2251 | } |
1da177e4 | 2252 | } |
3969ffba | 2253 | tty_kref_put(tty); |
ae0b78d0 AD |
2254 | } |
2255 | } | |
1da177e4 | 2256 | |
ae0b78d0 AD |
2257 | /* |
2258 | * pc_stop and pc_start provide software flow control to the routine and the | |
2259 | * pc_ioctl routine. | |
2260 | */ | |
1da177e4 | 2261 | static void pc_stop(struct tty_struct *tty) |
ae0b78d0 | 2262 | { |
1da177e4 LT |
2263 | struct channel *ch; |
2264 | unsigned long flags; | |
ae0b78d0 AD |
2265 | /* |
2266 | * verifyChannel returns the channel from the tty struct if it is | |
2267 | * valid. This serves as a sanity check. | |
2268 | */ | |
191260a0 AC |
2269 | ch = verifyChannel(tty); |
2270 | if (ch != NULL) { | |
f2cf8e25 | 2271 | spin_lock_irqsave(&epca_lock, flags); |
191260a0 AC |
2272 | if ((ch->statusflags & TXSTOPPED) == 0) { |
2273 | /* Begin if transmit stop requested */ | |
1da177e4 | 2274 | globalwinon(ch); |
1da177e4 | 2275 | /* STOP transmitting now !! */ |
1da177e4 | 2276 | fepcmd(ch, PAUSETX, 0, 0, 0, 0); |
1da177e4 LT |
2277 | ch->statusflags |= TXSTOPPED; |
2278 | memoff(ch); | |
1da177e4 | 2279 | } /* End if transmit stop requested */ |
f2cf8e25 | 2280 | spin_unlock_irqrestore(&epca_lock, flags); |
ae0b78d0 AD |
2281 | } |
2282 | } | |
1da177e4 LT |
2283 | |
2284 | static void pc_start(struct tty_struct *tty) | |
ae0b78d0 | 2285 | { |
1da177e4 | 2286 | struct channel *ch; |
ae0b78d0 AD |
2287 | /* |
2288 | * verifyChannel returns the channel from the tty struct if it is | |
2289 | * valid. This serves as a sanity check. | |
2290 | */ | |
191260a0 AC |
2291 | ch = verifyChannel(tty); |
2292 | if (ch != NULL) { | |
1da177e4 | 2293 | unsigned long flags; |
f2cf8e25 | 2294 | spin_lock_irqsave(&epca_lock, flags); |
191260a0 AC |
2295 | /* Just in case output was resumed because of a change |
2296 | in Digi-flow */ | |
2297 | if (ch->statusflags & TXSTOPPED) { | |
2298 | /* Begin transmit resume requested */ | |
bc9a5154 | 2299 | struct board_chan __iomem *bc; |
1da177e4 LT |
2300 | globalwinon(ch); |
2301 | bc = ch->brdchan; | |
2302 | if (ch->statusflags & LOWWAIT) | |
f2cf8e25 | 2303 | writeb(1, &bc->ilow); |
1da177e4 | 2304 | /* Okay, you can start transmitting again... */ |
1da177e4 | 2305 | fepcmd(ch, RESUMETX, 0, 0, 0, 0); |
1da177e4 LT |
2306 | ch->statusflags &= ~TXSTOPPED; |
2307 | memoff(ch); | |
1da177e4 | 2308 | } /* End transmit resume requested */ |
f2cf8e25 | 2309 | spin_unlock_irqrestore(&epca_lock, flags); |
ae0b78d0 AD |
2310 | } |
2311 | } | |
2312 | ||
2313 | /* | |
2314 | * The below routines pc_throttle and pc_unthrottle are used to slow (And | |
2315 | * resume) the receipt of data into the kernels receive buffers. The exact | |
2316 | * occurrence of this depends on the size of the kernels receive buffer and | |
2317 | * what the 'watermarks' are set to for that buffer. See the n_ttys.c file for | |
2318 | * more details. | |
2319 | */ | |
2320 | static void pc_throttle(struct tty_struct *tty) | |
2321 | { | |
1da177e4 LT |
2322 | struct channel *ch; |
2323 | unsigned long flags; | |
ae0b78d0 AD |
2324 | /* |
2325 | * verifyChannel returns the channel from the tty struct if it is | |
2326 | * valid. This serves as a sanity check. | |
2327 | */ | |
191260a0 AC |
2328 | ch = verifyChannel(tty); |
2329 | if (ch != NULL) { | |
f2cf8e25 AC |
2330 | spin_lock_irqsave(&epca_lock, flags); |
2331 | if ((ch->statusflags & RXSTOPPED) == 0) { | |
1da177e4 LT |
2332 | globalwinon(ch); |
2333 | fepcmd(ch, PAUSERX, 0, 0, 0, 0); | |
1da177e4 LT |
2334 | ch->statusflags |= RXSTOPPED; |
2335 | memoff(ch); | |
2336 | } | |
f2cf8e25 | 2337 | spin_unlock_irqrestore(&epca_lock, flags); |
ae0b78d0 AD |
2338 | } |
2339 | } | |
1da177e4 LT |
2340 | |
2341 | static void pc_unthrottle(struct tty_struct *tty) | |
ae0b78d0 | 2342 | { |
1da177e4 LT |
2343 | struct channel *ch; |
2344 | unsigned long flags; | |
ae0b78d0 AD |
2345 | /* |
2346 | * verifyChannel returns the channel from the tty struct if it is | |
2347 | * valid. This serves as a sanity check. | |
2348 | */ | |
191260a0 AC |
2349 | ch = verifyChannel(tty); |
2350 | if (ch != NULL) { | |
2351 | /* Just in case output was resumed because of a change | |
2352 | in Digi-flow */ | |
f2cf8e25 AC |
2353 | spin_lock_irqsave(&epca_lock, flags); |
2354 | if (ch->statusflags & RXSTOPPED) { | |
1da177e4 | 2355 | globalwinon(ch); |
1da177e4 | 2356 | fepcmd(ch, RESUMERX, 0, 0, 0, 0); |
1da177e4 LT |
2357 | ch->statusflags &= ~RXSTOPPED; |
2358 | memoff(ch); | |
2359 | } | |
f2cf8e25 | 2360 | spin_unlock_irqrestore(&epca_lock, flags); |
ae0b78d0 AD |
2361 | } |
2362 | } | |
1da177e4 | 2363 | |
dcbf1280 | 2364 | static int pc_send_break(struct tty_struct *tty, int msec) |
ae0b78d0 | 2365 | { |
c9f19e96 | 2366 | struct channel *ch = tty->driver_data; |
1da177e4 LT |
2367 | unsigned long flags; |
2368 | ||
dcbf1280 | 2369 | if (msec == -1) |
252883e5 AC |
2370 | msec = 0xFFFF; |
2371 | else if (msec > 0xFFFE) | |
2372 | msec = 0xFFFE; | |
2373 | else if (msec < 1) | |
2374 | msec = 1; | |
dcbf1280 | 2375 | |
f2cf8e25 | 2376 | spin_lock_irqsave(&epca_lock, flags); |
1da177e4 | 2377 | globalwinon(ch); |
ae0b78d0 AD |
2378 | /* |
2379 | * Maybe I should send an infinite break here, schedule() for msec | |
2380 | * amount of time, and then stop the break. This way, the user can't | |
2381 | * screw up the FEP by causing digi_send_break() to be called (i.e. via | |
2382 | * an ioctl()) more than once in msec amount of time. | |
2383 | * Try this for now... | |
2384 | */ | |
1da177e4 LT |
2385 | fepcmd(ch, SENDBREAK, msec, 0, 10, 0); |
2386 | memoff(ch); | |
f2cf8e25 | 2387 | spin_unlock_irqrestore(&epca_lock, flags); |
dcbf1280 | 2388 | return 0; |
ae0b78d0 | 2389 | } |
1da177e4 | 2390 | |
f2cf8e25 | 2391 | /* Caller MUST hold the lock */ |
1da177e4 | 2392 | static void setup_empty_event(struct tty_struct *tty, struct channel *ch) |
ae0b78d0 | 2393 | { |
bc9a5154 | 2394 | struct board_chan __iomem *bc = ch->brdchan; |
1da177e4 | 2395 | |
1da177e4 LT |
2396 | globalwinon(ch); |
2397 | ch->statusflags |= EMPTYWAIT; | |
ae0b78d0 AD |
2398 | /* |
2399 | * When set the iempty flag request a event to be generated when the | |
2400 | * transmit buffer is empty (If there is no BREAK in progress). | |
2401 | */ | |
f2cf8e25 | 2402 | writeb(1, &bc->iempty); |
1da177e4 | 2403 | memoff(ch); |
ae0b78d0 | 2404 | } |
1da177e4 | 2405 | |
88e88249 DH |
2406 | #ifndef MODULE |
2407 | static void __init epca_setup(char *str, int *ints) | |
ae0b78d0 | 2408 | { |
1da177e4 LT |
2409 | struct board_info board; |
2410 | int index, loop, last; | |
2411 | char *temp, *t2; | |
2412 | unsigned len; | |
2413 | ||
ae0b78d0 AD |
2414 | /* |
2415 | * If this routine looks a little strange it is because it is only | |
2416 | * called if a LILO append command is given to boot the kernel with | |
2417 | * parameters. In this way, we can provide the user a method of | |
2418 | * changing his board configuration without rebuilding the kernel. | |
2419 | */ | |
2420 | if (!liloconfig) | |
2421 | liloconfig = 1; | |
1da177e4 LT |
2422 | |
2423 | memset(&board, 0, sizeof(board)); | |
2424 | ||
2425 | /* Assume the data is int first, later we can change it */ | |
2426 | /* I think that array position 0 of ints holds the number of args */ | |
2427 | for (last = 0, index = 1; index <= ints[0]; index++) | |
ae0b78d0 AD |
2428 | switch (index) { /* Begin parse switch */ |
2429 | case 1: | |
2430 | board.status = ints[index]; | |
2431 | /* | |
2432 | * We check for 2 (As opposed to 1; because 2 is a flag | |
2433 | * instructing the driver to ignore epcaconfig.) For | |
2434 | * this reason we check for 2. | |
2435 | */ | |
191260a0 AC |
2436 | if (board.status == 2) { |
2437 | /* Begin ignore epcaconfig as well as lilo cmd line */ | |
ae0b78d0 AD |
2438 | nbdevs = 0; |
2439 | num_cards = 0; | |
2440 | return; | |
2441 | } /* End ignore epcaconfig as well as lilo cmd line */ | |
2442 | ||
2443 | if (board.status > 2) { | |
191260a0 AC |
2444 | printk(KERN_ERR "epca_setup: Invalid board status 0x%x\n", |
2445 | board.status); | |
ae0b78d0 AD |
2446 | invalid_lilo_config = 1; |
2447 | setup_error_code |= INVALID_BOARD_STATUS; | |
2448 | return; | |
2449 | } | |
2450 | last = index; | |
2451 | break; | |
2452 | case 2: | |
2453 | board.type = ints[index]; | |
2454 | if (board.type >= PCIXEM) { | |
2455 | printk(KERN_ERR "epca_setup: Invalid board type 0x%x\n", board.type); | |
2456 | invalid_lilo_config = 1; | |
2457 | setup_error_code |= INVALID_BOARD_TYPE; | |
2458 | return; | |
2459 | } | |
2460 | last = index; | |
2461 | break; | |
2462 | case 3: | |
2463 | board.altpin = ints[index]; | |
2464 | if (board.altpin > 1) { | |
2465 | printk(KERN_ERR "epca_setup: Invalid board altpin 0x%x\n", board.altpin); | |
2466 | invalid_lilo_config = 1; | |
2467 | setup_error_code |= INVALID_ALTPIN; | |
2468 | return; | |
2469 | } | |
2470 | last = index; | |
2471 | break; | |
2472 | ||
2473 | case 4: | |
2474 | board.numports = ints[index]; | |
2475 | if (board.numports < 2 || board.numports > 256) { | |
2476 | printk(KERN_ERR "epca_setup: Invalid board numports 0x%x\n", board.numports); | |
2477 | invalid_lilo_config = 1; | |
2478 | setup_error_code |= INVALID_NUM_PORTS; | |
2479 | return; | |
2480 | } | |
2481 | nbdevs += board.numports; | |
2482 | last = index; | |
2483 | break; | |
1da177e4 | 2484 | |
ae0b78d0 AD |
2485 | case 5: |
2486 | board.port = ints[index]; | |
2487 | if (ints[index] <= 0) { | |
2488 | printk(KERN_ERR "epca_setup: Invalid io port 0x%x\n", (unsigned int)board.port); | |
2489 | invalid_lilo_config = 1; | |
2490 | setup_error_code |= INVALID_PORT_BASE; | |
1da177e4 | 2491 | return; |
ae0b78d0 AD |
2492 | } |
2493 | last = index; | |
2494 | break; | |
2495 | ||
2496 | case 6: | |
2497 | board.membase = ints[index]; | |
2498 | if (ints[index] <= 0) { | |
191260a0 AC |
2499 | printk(KERN_ERR "epca_setup: Invalid memory base 0x%x\n", |
2500 | (unsigned int)board.membase); | |
ae0b78d0 AD |
2501 | invalid_lilo_config = 1; |
2502 | setup_error_code |= INVALID_MEM_BASE; | |
2503 | return; | |
2504 | } | |
2505 | last = index; | |
2506 | break; | |
2507 | ||
2508 | default: | |
2509 | printk(KERN_ERR "<Error> - epca_setup: Too many integer parms\n"); | |
2510 | return; | |
1da177e4 LT |
2511 | |
2512 | } /* End parse switch */ | |
2513 | ||
f2cf8e25 | 2514 | while (str && *str) { /* Begin while there is a string arg */ |
1da177e4 LT |
2515 | /* find the next comma or terminator */ |
2516 | temp = str; | |
1da177e4 LT |
2517 | /* While string is not null, and a comma hasn't been found */ |
2518 | while (*temp && (*temp != ',')) | |
2519 | temp++; | |
1da177e4 LT |
2520 | if (!*temp) |
2521 | temp = NULL; | |
2522 | else | |
2523 | *temp++ = 0; | |
1da177e4 LT |
2524 | /* Set index to the number of args + 1 */ |
2525 | index = last + 1; | |
2526 | ||
ae0b78d0 AD |
2527 | switch (index) { |
2528 | case 1: | |
2529 | len = strlen(str); | |
2530 | if (strncmp("Disable", str, len) == 0) | |
2531 | board.status = 0; | |
2532 | else if (strncmp("Enable", str, len) == 0) | |
2533 | board.status = 1; | |
2534 | else { | |
2535 | printk(KERN_ERR "epca_setup: Invalid status %s\n", str); | |
2536 | invalid_lilo_config = 1; | |
2537 | setup_error_code |= INVALID_BOARD_STATUS; | |
2538 | return; | |
2539 | } | |
2540 | last = index; | |
2541 | break; | |
1da177e4 | 2542 | |
ae0b78d0 AD |
2543 | case 2: |
2544 | for (loop = 0; loop < EPCA_NUM_TYPES; loop++) | |
2545 | if (strcmp(board_desc[loop], str) == 0) | |
2546 | break; | |
2547 | /* | |
2548 | * If the index incremented above refers to a | |
2549 | * legitamate board type set it here. | |
2550 | */ | |
2551 | if (index < EPCA_NUM_TYPES) | |
2552 | board.type = loop; | |
2553 | else { | |
2554 | printk(KERN_ERR "epca_setup: Invalid board type: %s\n", str); | |
2555 | invalid_lilo_config = 1; | |
2556 | setup_error_code |= INVALID_BOARD_TYPE; | |
2557 | return; | |
2558 | } | |
2559 | last = index; | |
2560 | break; | |
2561 | ||
2562 | case 3: | |
2563 | len = strlen(str); | |
2564 | if (strncmp("Disable", str, len) == 0) | |
2565 | board.altpin = 0; | |
2566 | else if (strncmp("Enable", str, len) == 0) | |
2567 | board.altpin = 1; | |
2568 | else { | |
2569 | printk(KERN_ERR "epca_setup: Invalid altpin %s\n", str); | |
2570 | invalid_lilo_config = 1; | |
2571 | setup_error_code |= INVALID_ALTPIN; | |
2572 | return; | |
2573 | } | |
2574 | last = index; | |
2575 | break; | |
1da177e4 | 2576 | |
ae0b78d0 AD |
2577 | case 4: |
2578 | t2 = str; | |
2579 | while (isdigit(*t2)) | |
2580 | t2++; | |
1da177e4 | 2581 | |
ae0b78d0 AD |
2582 | if (*t2) { |
2583 | printk(KERN_ERR "epca_setup: Invalid port count %s\n", str); | |
2584 | invalid_lilo_config = 1; | |
2585 | setup_error_code |= INVALID_NUM_PORTS; | |
2586 | return; | |
2587 | } | |
1da177e4 | 2588 | |
ae0b78d0 AD |
2589 | /* |
2590 | * There is not a man page for simple_strtoul but the | |
2591 | * code can be found in vsprintf.c. The first argument | |
2592 | * is the string to translate (To an unsigned long | |
2593 | * obviously), the second argument can be the address | |
2594 | * of any character variable or a NULL. If a variable | |
2595 | * is given, the end pointer of the string will be | |
2596 | * stored in that variable; if a NULL is given the end | |
2597 | * pointer will not be returned. The last argument is | |
2598 | * the base to use. If a 0 is indicated, the routine | |
2599 | * will attempt to determine the proper base by looking | |
2600 | * at the values prefix (A '0' for octal, a 'x' for | |
2601 | * hex, etc ... If a value is given it will use that | |
2602 | * value as the base. | |
2603 | */ | |
2604 | board.numports = simple_strtoul(str, NULL, 0); | |
2605 | nbdevs += board.numports; | |
2606 | last = index; | |
2607 | break; | |
2608 | ||
2609 | case 5: | |
2610 | t2 = str; | |
2611 | while (isxdigit(*t2)) | |
2612 | t2++; | |
2613 | ||
2614 | if (*t2) { | |
2615 | printk(KERN_ERR "epca_setup: Invalid i/o address %s\n", str); | |
2616 | invalid_lilo_config = 1; | |
2617 | setup_error_code |= INVALID_PORT_BASE; | |
2618 | return; | |
2619 | } | |
2620 | ||
2621 | board.port = simple_strtoul(str, NULL, 16); | |
2622 | last = index; | |
2623 | break; | |
2624 | ||
2625 | case 6: | |
2626 | t2 = str; | |
2627 | while (isxdigit(*t2)) | |
2628 | t2++; | |
2629 | ||
2630 | if (*t2) { | |
191260a0 | 2631 | printk(KERN_ERR "epca_setup: Invalid memory base %s\n", str); |
ae0b78d0 AD |
2632 | invalid_lilo_config = 1; |
2633 | setup_error_code |= INVALID_MEM_BASE; | |
1da177e4 | 2634 | return; |
ae0b78d0 AD |
2635 | } |
2636 | board.membase = simple_strtoul(str, NULL, 16); | |
2637 | last = index; | |
2638 | break; | |
2639 | default: | |
2640 | printk(KERN_ERR "epca: Too many string parms\n"); | |
2641 | return; | |
1da177e4 LT |
2642 | } |
2643 | str = temp; | |
1da177e4 LT |
2644 | } /* End while there is a string arg */ |
2645 | ||
f2cf8e25 AC |
2646 | if (last < 6) { |
2647 | printk(KERN_ERR "epca: Insufficient parms specified\n"); | |
1da177e4 LT |
2648 | return; |
2649 | } | |
ae0b78d0 | 2650 | |
1da177e4 | 2651 | /* I should REALLY validate the stuff here */ |
1da177e4 | 2652 | /* Copies our local copy of board into boards */ |
191260a0 | 2653 | memcpy((void *)&boards[num_cards], (void *)&board, sizeof(board)); |
1da177e4 | 2654 | /* Does this get called once per lilo arg are what ? */ |
ae0b78d0 AD |
2655 | printk(KERN_INFO "PC/Xx: Added board %i, %s %i ports at 0x%4.4X base 0x%6.6X\n", |
2656 | num_cards, board_desc[board.type], | |
1da177e4 | 2657 | board.numports, (int)board.port, (unsigned int) board.membase); |
1da177e4 | 2658 | num_cards++; |
ae0b78d0 | 2659 | } |
1da177e4 | 2660 | |
88e88249 DH |
2661 | static int __init epca_real_setup(char *str) |
2662 | { | |
2663 | int ints[11]; | |
2664 | ||
2665 | epca_setup(get_options(str, 11, ints), ints); | |
2666 | return 1; | |
2667 | } | |
2668 | ||
2669 | __setup("digiepca", epca_real_setup); | |
2670 | #endif | |
2671 | ||
1da177e4 LT |
2672 | enum epic_board_types { |
2673 | brd_xr = 0, | |
2674 | brd_xem, | |
2675 | brd_cx, | |
2676 | brd_xrj, | |
2677 | }; | |
2678 | ||
1da177e4 LT |
2679 | /* indexed directly by epic_board_types enum */ |
2680 | static struct { | |
2681 | unsigned char board_type; | |
2682 | unsigned bar_idx; /* PCI base address region */ | |
2683 | } epca_info_tbl[] = { | |
2684 | { PCIXR, 0, }, | |
2685 | { PCIXEM, 0, }, | |
2686 | { PCICX, 0, }, | |
2687 | { PCIXRJ, 2, }, | |
2688 | }; | |
2689 | ||
ae0b78d0 | 2690 | static int __devinit epca_init_one(struct pci_dev *pdev, |
1da177e4 LT |
2691 | const struct pci_device_id *ent) |
2692 | { | |
2693 | static int board_num = -1; | |
2694 | int board_idx, info_idx = ent->driver_data; | |
2695 | unsigned long addr; | |
2696 | ||
2697 | if (pci_enable_device(pdev)) | |
2698 | return -EIO; | |
2699 | ||
2700 | board_num++; | |
2701 | board_idx = board_num + num_cards; | |
2702 | if (board_idx >= MAXBOARDS) | |
2703 | goto err_out; | |
ae0b78d0 | 2704 | |
191260a0 | 2705 | addr = pci_resource_start(pdev, epca_info_tbl[info_idx].bar_idx); |
1da177e4 | 2706 | if (!addr) { |
191260a0 | 2707 | printk(KERN_ERR PFX "PCI region #%d not available (size 0)\n", |
1da177e4 LT |
2708 | epca_info_tbl[info_idx].bar_idx); |
2709 | goto err_out; | |
2710 | } | |
2711 | ||
2712 | boards[board_idx].status = ENABLED; | |
2713 | boards[board_idx].type = epca_info_tbl[info_idx].board_type; | |
2714 | boards[board_idx].numports = 0x0; | |
f2cf8e25 AC |
2715 | boards[board_idx].port = addr + PCI_IO_OFFSET; |
2716 | boards[board_idx].membase = addr; | |
1da177e4 | 2717 | |
191260a0 AC |
2718 | if (!request_mem_region(addr + PCI_IO_OFFSET, 0x200000, "epca")) { |
2719 | printk(KERN_ERR PFX "resource 0x%x @ 0x%lx unavailable\n", | |
1da177e4 LT |
2720 | 0x200000, addr + PCI_IO_OFFSET); |
2721 | goto err_out; | |
2722 | } | |
2723 | ||
191260a0 AC |
2724 | boards[board_idx].re_map_port = ioremap_nocache(addr + PCI_IO_OFFSET, |
2725 | 0x200000); | |
1da177e4 | 2726 | if (!boards[board_idx].re_map_port) { |
191260a0 | 2727 | printk(KERN_ERR PFX "cannot map 0x%x @ 0x%lx\n", |
1da177e4 LT |
2728 | 0x200000, addr + PCI_IO_OFFSET); |
2729 | goto err_out_free_pciio; | |
2730 | } | |
2731 | ||
191260a0 AC |
2732 | if (!request_mem_region(addr, 0x200000, "epca")) { |
2733 | printk(KERN_ERR PFX "resource 0x%x @ 0x%lx unavailable\n", | |
1da177e4 LT |
2734 | 0x200000, addr); |
2735 | goto err_out_free_iounmap; | |
2736 | } | |
2737 | ||
191260a0 | 2738 | boards[board_idx].re_map_membase = ioremap_nocache(addr, 0x200000); |
1da177e4 | 2739 | if (!boards[board_idx].re_map_membase) { |
191260a0 | 2740 | printk(KERN_ERR PFX "cannot map 0x%x @ 0x%lx\n", |
1da177e4 LT |
2741 | 0x200000, addr + PCI_IO_OFFSET); |
2742 | goto err_out_free_memregion; | |
2743 | } | |
2744 | ||
ae0b78d0 AD |
2745 | /* |
2746 | * I don't know what the below does, but the hardware guys say its | |
2747 | * required on everything except PLX (In this case XRJ). | |
2748 | */ | |
1da177e4 | 2749 | if (info_idx != brd_xrj) { |
ae0b78d0 | 2750 | pci_write_config_byte(pdev, 0x40, 0); |
1da177e4 LT |
2751 | pci_write_config_byte(pdev, 0x46, 0); |
2752 | } | |
ae0b78d0 | 2753 | |
1da177e4 LT |
2754 | return 0; |
2755 | ||
2756 | err_out_free_memregion: | |
191260a0 | 2757 | release_mem_region(addr, 0x200000); |
1da177e4 | 2758 | err_out_free_iounmap: |
191260a0 | 2759 | iounmap(boards[board_idx].re_map_port); |
1da177e4 | 2760 | err_out_free_pciio: |
191260a0 | 2761 | release_mem_region(addr + PCI_IO_OFFSET, 0x200000); |
1da177e4 LT |
2762 | err_out: |
2763 | return -ENODEV; | |
2764 | } | |
2765 | ||
2766 | ||
2767 | static struct pci_device_id epca_pci_tbl[] = { | |
2768 | { PCI_VENDOR_DIGI, PCI_DEVICE_XR, PCI_ANY_ID, PCI_ANY_ID, 0, 0, brd_xr }, | |
2769 | { PCI_VENDOR_DIGI, PCI_DEVICE_XEM, PCI_ANY_ID, PCI_ANY_ID, 0, 0, brd_xem }, | |
2770 | { PCI_VENDOR_DIGI, PCI_DEVICE_CX, PCI_ANY_ID, PCI_ANY_ID, 0, 0, brd_cx }, | |
2771 | { PCI_VENDOR_DIGI, PCI_DEVICE_XRJ, PCI_ANY_ID, PCI_ANY_ID, 0, 0, brd_xrj }, | |
2772 | { 0, } | |
2773 | }; | |
2774 | ||
2775 | MODULE_DEVICE_TABLE(pci, epca_pci_tbl); | |
2776 | ||
11fb09bf | 2777 | static int __init init_PCI(void) |
ae0b78d0 | 2778 | { |
191260a0 | 2779 | memset(&epca_driver, 0, sizeof(epca_driver)); |
1da177e4 LT |
2780 | epca_driver.name = "epca"; |
2781 | epca_driver.id_table = epca_pci_tbl; | |
2782 | epca_driver.probe = epca_init_one; | |
2783 | ||
2784 | return pci_register_driver(&epca_driver); | |
f2cf8e25 | 2785 | } |
1da177e4 LT |
2786 | |
2787 | MODULE_LICENSE("GPL"); |