tty: Rework istallion to use the tty port changes
[safe/jmp/linux-2.6] / drivers / char / istallion.c
1 /*****************************************************************************/
2
3 /*
4  *      istallion.c  -- stallion intelligent multiport serial driver.
5  *
6  *      Copyright (C) 1996-1999  Stallion Technologies
7  *      Copyright (C) 1994-1996  Greg Ungerer.
8  *
9  *      This code is loosely based on the Linux serial driver, written by
10  *      Linus Torvalds, Theodore T'so and others.
11  *
12  *      This program is free software; you can redistribute it and/or modify
13  *      it under the terms of the GNU General Public License as published by
14  *      the Free Software Foundation; either version 2 of the License, or
15  *      (at your option) any later version.
16  *
17  */
18
19 /*****************************************************************************/
20
21 #include <linux/module.h>
22 #include <linux/slab.h>
23 #include <linux/interrupt.h>
24 #include <linux/tty.h>
25 #include <linux/tty_flip.h>
26 #include <linux/serial.h>
27 #include <linux/cdk.h>
28 #include <linux/comstats.h>
29 #include <linux/istallion.h>
30 #include <linux/ioport.h>
31 #include <linux/delay.h>
32 #include <linux/init.h>
33 #include <linux/device.h>
34 #include <linux/wait.h>
35 #include <linux/eisa.h>
36 #include <linux/ctype.h>
37
38 #include <asm/io.h>
39 #include <asm/uaccess.h>
40
41 #include <linux/pci.h>
42
43 /*****************************************************************************/
44
45 /*
46  *      Define different board types. Not all of the following board types
47  *      are supported by this driver. But I will use the standard "assigned"
48  *      board numbers. Currently supported boards are abbreviated as:
49  *      ECP = EasyConnection 8/64, ONB = ONboard, BBY = Brumby and
50  *      STAL = Stallion.
51  */
52 #define BRD_UNKNOWN     0
53 #define BRD_STALLION    1
54 #define BRD_BRUMBY4     2
55 #define BRD_ONBOARD2    3
56 #define BRD_ONBOARD     4
57 #define BRD_ONBOARDE    7
58 #define BRD_ECP         23
59 #define BRD_ECPE        24
60 #define BRD_ECPMC       25
61 #define BRD_ECPPCI      29
62
63 #define BRD_BRUMBY      BRD_BRUMBY4
64
65 /*
66  *      Define a configuration structure to hold the board configuration.
67  *      Need to set this up in the code (for now) with the boards that are
68  *      to be configured into the system. This is what needs to be modified
69  *      when adding/removing/modifying boards. Each line entry in the
70  *      stli_brdconf[] array is a board. Each line contains io/irq/memory
71  *      ranges for that board (as well as what type of board it is).
72  *      Some examples:
73  *              { BRD_ECP, 0x2a0, 0, 0xcc000, 0, 0 },
74  *      This line will configure an EasyConnection 8/64 at io address 2a0,
75  *      and shared memory address of cc000. Multiple EasyConnection 8/64
76  *      boards can share the same shared memory address space. No interrupt
77  *      is required for this board type.
78  *      Another example:
79  *              { BRD_ECPE, 0x5000, 0, 0x80000000, 0, 0 },
80  *      This line will configure an EasyConnection 8/64 EISA in slot 5 and
81  *      shared memory address of 0x80000000 (2 GByte). Multiple
82  *      EasyConnection 8/64 EISA boards can share the same shared memory
83  *      address space. No interrupt is required for this board type.
84  *      Another example:
85  *              { BRD_ONBOARD, 0x240, 0, 0xd0000, 0, 0 },
86  *      This line will configure an ONboard (ISA type) at io address 240,
87  *      and shared memory address of d0000. Multiple ONboards can share
88  *      the same shared memory address space. No interrupt required.
89  *      Another example:
90  *              { BRD_BRUMBY4, 0x360, 0, 0xc8000, 0, 0 },
91  *      This line will configure a Brumby board (any number of ports!) at
92  *      io address 360 and shared memory address of c8000. All Brumby boards
93  *      configured into a system must have their own separate io and memory
94  *      addresses. No interrupt is required.
95  *      Another example:
96  *              { BRD_STALLION, 0x330, 0, 0xd0000, 0, 0 },
97  *      This line will configure an original Stallion board at io address 330
98  *      and shared memory address d0000 (this would only be valid for a "V4.0"
99  *      or Rev.O Stallion board). All Stallion boards configured into the
100  *      system must have their own separate io and memory addresses. No
101  *      interrupt is required.
102  */
103
104 struct stlconf {
105         int             brdtype;
106         int             ioaddr1;
107         int             ioaddr2;
108         unsigned long   memaddr;
109         int             irq;
110         int             irqtype;
111 };
112
113 static unsigned int stli_nrbrds;
114
115 /* stli_lock must NOT be taken holding brd_lock */
116 static spinlock_t stli_lock;    /* TTY logic lock */
117 static spinlock_t brd_lock;     /* Board logic lock */
118
119 /*
120  *      There is some experimental EISA board detection code in this driver.
121  *      By default it is disabled, but for those that want to try it out,
122  *      then set the define below to be 1.
123  */
124 #define STLI_EISAPROBE  0
125
126 /*****************************************************************************/
127
128 /*
129  *      Define some important driver characteristics. Device major numbers
130  *      allocated as per Linux Device Registry.
131  */
132 #ifndef STL_SIOMEMMAJOR
133 #define STL_SIOMEMMAJOR         28
134 #endif
135 #ifndef STL_SERIALMAJOR
136 #define STL_SERIALMAJOR         24
137 #endif
138 #ifndef STL_CALLOUTMAJOR
139 #define STL_CALLOUTMAJOR        25
140 #endif
141
142 /*****************************************************************************/
143
144 /*
145  *      Define our local driver identity first. Set up stuff to deal with
146  *      all the local structures required by a serial tty driver.
147  */
148 static char     *stli_drvtitle = "Stallion Intelligent Multiport Serial Driver";
149 static char     *stli_drvname = "istallion";
150 static char     *stli_drvversion = "5.6.0";
151 static char     *stli_serialname = "ttyE";
152
153 static struct tty_driver        *stli_serial;
154 static const struct tty_port_operations stli_port_ops;
155
156 #define STLI_TXBUFSIZE          4096
157
158 /*
159  *      Use a fast local buffer for cooked characters. Typically a whole
160  *      bunch of cooked characters come in for a port, 1 at a time. So we
161  *      save those up into a local buffer, then write out the whole lot
162  *      with a large memcpy. Just use 1 buffer for all ports, since its
163  *      use it is only need for short periods of time by each port.
164  */
165 static char                     *stli_txcookbuf;
166 static int                      stli_txcooksize;
167 static int                      stli_txcookrealsize;
168 static struct tty_struct        *stli_txcooktty;
169
170 /*
171  *      Define a local default termios struct. All ports will be created
172  *      with this termios initially. Basically all it defines is a raw port
173  *      at 9600 baud, 8 data bits, no parity, 1 stop bit.
174  */
175 static struct ktermios          stli_deftermios = {
176         .c_cflag        = (B9600 | CS8 | CREAD | HUPCL | CLOCAL),
177         .c_cc           = INIT_C_CC,
178         .c_ispeed       = 9600,
179         .c_ospeed       = 9600,
180 };
181
182 /*
183  *      Define global stats structures. Not used often, and can be
184  *      re-used for each stats call.
185  */
186 static comstats_t       stli_comstats;
187 static combrd_t         stli_brdstats;
188 static struct asystats  stli_cdkstats;
189
190 /*****************************************************************************/
191
192 static DEFINE_MUTEX(stli_brdslock);
193 static struct stlibrd   *stli_brds[STL_MAXBRDS];
194
195 static int              stli_shared;
196
197 /*
198  *      Per board state flags. Used with the state field of the board struct.
199  *      Not really much here... All we need to do is keep track of whether
200  *      the board has been detected, and whether it is actually running a slave
201  *      or not.
202  */
203 #define BST_FOUND       0x1
204 #define BST_STARTED     0x2
205 #define BST_PROBED      0x4
206
207 /*
208  *      Define the set of port state flags. These are marked for internal
209  *      state purposes only, usually to do with the state of communications
210  *      with the slave. Most of them need to be updated atomically, so always
211  *      use the bit setting operations (unless protected by cli/sti).
212  */
213 #define ST_INITIALIZING 1
214 #define ST_OPENING      2
215 #define ST_CLOSING      3
216 #define ST_CMDING       4
217 #define ST_TXBUSY       5
218 #define ST_RXING        6
219 #define ST_DOFLUSHRX    7
220 #define ST_DOFLUSHTX    8
221 #define ST_DOSIGS       9
222 #define ST_RXSTOP       10
223 #define ST_GETSIGS      11
224
225 /*
226  *      Define an array of board names as printable strings. Handy for
227  *      referencing boards when printing trace and stuff.
228  */
229 static char     *stli_brdnames[] = {
230         "Unknown",
231         "Stallion",
232         "Brumby",
233         "ONboard-MC",
234         "ONboard",
235         "Brumby",
236         "Brumby",
237         "ONboard-EI",
238         NULL,
239         "ONboard",
240         "ONboard-MC",
241         "ONboard-MC",
242         NULL,
243         NULL,
244         NULL,
245         NULL,
246         NULL,
247         NULL,
248         NULL,
249         NULL,
250         "EasyIO",
251         "EC8/32-AT",
252         "EC8/32-MC",
253         "EC8/64-AT",
254         "EC8/64-EI",
255         "EC8/64-MC",
256         "EC8/32-PCI",
257         "EC8/64-PCI",
258         "EasyIO-PCI",
259         "EC/RA-PCI",
260 };
261
262 /*****************************************************************************/
263
264 /*
265  *      Define some string labels for arguments passed from the module
266  *      load line. These allow for easy board definitions, and easy
267  *      modification of the io, memory and irq resoucres.
268  */
269
270 static char     *board0[8];
271 static char     *board1[8];
272 static char     *board2[8];
273 static char     *board3[8];
274
275 static char     **stli_brdsp[] = {
276         (char **) &board0,
277         (char **) &board1,
278         (char **) &board2,
279         (char **) &board3
280 };
281
282 /*
283  *      Define a set of common board names, and types. This is used to
284  *      parse any module arguments.
285  */
286
287 static struct stlibrdtype {
288         char    *name;
289         int     type;
290 } stli_brdstr[] = {
291         { "stallion", BRD_STALLION },
292         { "1", BRD_STALLION },
293         { "brumby", BRD_BRUMBY },
294         { "brumby4", BRD_BRUMBY },
295         { "brumby/4", BRD_BRUMBY },
296         { "brumby-4", BRD_BRUMBY },
297         { "brumby8", BRD_BRUMBY },
298         { "brumby/8", BRD_BRUMBY },
299         { "brumby-8", BRD_BRUMBY },
300         { "brumby16", BRD_BRUMBY },
301         { "brumby/16", BRD_BRUMBY },
302         { "brumby-16", BRD_BRUMBY },
303         { "2", BRD_BRUMBY },
304         { "onboard2", BRD_ONBOARD2 },
305         { "onboard-2", BRD_ONBOARD2 },
306         { "onboard/2", BRD_ONBOARD2 },
307         { "onboard-mc", BRD_ONBOARD2 },
308         { "onboard/mc", BRD_ONBOARD2 },
309         { "onboard-mca", BRD_ONBOARD2 },
310         { "onboard/mca", BRD_ONBOARD2 },
311         { "3", BRD_ONBOARD2 },
312         { "onboard", BRD_ONBOARD },
313         { "onboardat", BRD_ONBOARD },
314         { "4", BRD_ONBOARD },
315         { "onboarde", BRD_ONBOARDE },
316         { "onboard-e", BRD_ONBOARDE },
317         { "onboard/e", BRD_ONBOARDE },
318         { "onboard-ei", BRD_ONBOARDE },
319         { "onboard/ei", BRD_ONBOARDE },
320         { "7", BRD_ONBOARDE },
321         { "ecp", BRD_ECP },
322         { "ecpat", BRD_ECP },
323         { "ec8/64", BRD_ECP },
324         { "ec8/64-at", BRD_ECP },
325         { "ec8/64-isa", BRD_ECP },
326         { "23", BRD_ECP },
327         { "ecpe", BRD_ECPE },
328         { "ecpei", BRD_ECPE },
329         { "ec8/64-e", BRD_ECPE },
330         { "ec8/64-ei", BRD_ECPE },
331         { "24", BRD_ECPE },
332         { "ecpmc", BRD_ECPMC },
333         { "ec8/64-mc", BRD_ECPMC },
334         { "ec8/64-mca", BRD_ECPMC },
335         { "25", BRD_ECPMC },
336         { "ecppci", BRD_ECPPCI },
337         { "ec/ra", BRD_ECPPCI },
338         { "ec/ra-pc", BRD_ECPPCI },
339         { "ec/ra-pci", BRD_ECPPCI },
340         { "29", BRD_ECPPCI },
341 };
342
343 /*
344  *      Define the module agruments.
345  */
346 MODULE_AUTHOR("Greg Ungerer");
347 MODULE_DESCRIPTION("Stallion Intelligent Multiport Serial Driver");
348 MODULE_LICENSE("GPL");
349
350
351 module_param_array(board0, charp, NULL, 0);
352 MODULE_PARM_DESC(board0, "Board 0 config -> name[,ioaddr[,memaddr]");
353 module_param_array(board1, charp, NULL, 0);
354 MODULE_PARM_DESC(board1, "Board 1 config -> name[,ioaddr[,memaddr]");
355 module_param_array(board2, charp, NULL, 0);
356 MODULE_PARM_DESC(board2, "Board 2 config -> name[,ioaddr[,memaddr]");
357 module_param_array(board3, charp, NULL, 0);
358 MODULE_PARM_DESC(board3, "Board 3 config -> name[,ioaddr[,memaddr]");
359
360 #if STLI_EISAPROBE != 0
361 /*
362  *      Set up a default memory address table for EISA board probing.
363  *      The default addresses are all bellow 1Mbyte, which has to be the
364  *      case anyway. They should be safe, since we only read values from
365  *      them, and interrupts are disabled while we do it. If the higher
366  *      memory support is compiled in then we also try probing around
367  *      the 1Gb, 2Gb and 3Gb areas as well...
368  */
369 static unsigned long    stli_eisamemprobeaddrs[] = {
370         0xc0000,    0xd0000,    0xe0000,    0xf0000,
371         0x80000000, 0x80010000, 0x80020000, 0x80030000,
372         0x40000000, 0x40010000, 0x40020000, 0x40030000,
373         0xc0000000, 0xc0010000, 0xc0020000, 0xc0030000,
374         0xff000000, 0xff010000, 0xff020000, 0xff030000,
375 };
376
377 static int      stli_eisamempsize = ARRAY_SIZE(stli_eisamemprobeaddrs);
378 #endif
379
380 /*
381  *      Define the Stallion PCI vendor and device IDs.
382  */
383 #ifndef PCI_DEVICE_ID_ECRA
384 #define PCI_DEVICE_ID_ECRA              0x0004
385 #endif
386
387 static struct pci_device_id istallion_pci_tbl[] = {
388         { PCI_DEVICE(PCI_VENDOR_ID_STALLION, PCI_DEVICE_ID_ECRA), },
389         { 0 }
390 };
391 MODULE_DEVICE_TABLE(pci, istallion_pci_tbl);
392
393 static struct pci_driver stli_pcidriver;
394
395 /*****************************************************************************/
396
397 /*
398  *      Hardware configuration info for ECP boards. These defines apply
399  *      to the directly accessible io ports of the ECP. There is a set of
400  *      defines for each ECP board type, ISA, EISA, MCA and PCI.
401  */
402 #define ECP_IOSIZE      4
403
404 #define ECP_MEMSIZE     (128 * 1024)
405 #define ECP_PCIMEMSIZE  (256 * 1024)
406
407 #define ECP_ATPAGESIZE  (4 * 1024)
408 #define ECP_MCPAGESIZE  (4 * 1024)
409 #define ECP_EIPAGESIZE  (64 * 1024)
410 #define ECP_PCIPAGESIZE (64 * 1024)
411
412 #define STL_EISAID      0x8c4e
413
414 /*
415  *      Important defines for the ISA class of ECP board.
416  */
417 #define ECP_ATIREG      0
418 #define ECP_ATCONFR     1
419 #define ECP_ATMEMAR     2
420 #define ECP_ATMEMPR     3
421 #define ECP_ATSTOP      0x1
422 #define ECP_ATINTENAB   0x10
423 #define ECP_ATENABLE    0x20
424 #define ECP_ATDISABLE   0x00
425 #define ECP_ATADDRMASK  0x3f000
426 #define ECP_ATADDRSHFT  12
427
428 /*
429  *      Important defines for the EISA class of ECP board.
430  */
431 #define ECP_EIIREG      0
432 #define ECP_EIMEMARL    1
433 #define ECP_EICONFR     2
434 #define ECP_EIMEMARH    3
435 #define ECP_EIENABLE    0x1
436 #define ECP_EIDISABLE   0x0
437 #define ECP_EISTOP      0x4
438 #define ECP_EIEDGE      0x00
439 #define ECP_EILEVEL     0x80
440 #define ECP_EIADDRMASKL 0x00ff0000
441 #define ECP_EIADDRSHFTL 16
442 #define ECP_EIADDRMASKH 0xff000000
443 #define ECP_EIADDRSHFTH 24
444 #define ECP_EIBRDENAB   0xc84
445
446 #define ECP_EISAID      0x4
447
448 /*
449  *      Important defines for the Micro-channel class of ECP board.
450  *      (It has a lot in common with the ISA boards.)
451  */
452 #define ECP_MCIREG      0
453 #define ECP_MCCONFR     1
454 #define ECP_MCSTOP      0x20
455 #define ECP_MCENABLE    0x80
456 #define ECP_MCDISABLE   0x00
457
458 /*
459  *      Important defines for the PCI class of ECP board.
460  *      (It has a lot in common with the other ECP boards.)
461  */
462 #define ECP_PCIIREG     0
463 #define ECP_PCICONFR    1
464 #define ECP_PCISTOP     0x01
465
466 /*
467  *      Hardware configuration info for ONboard and Brumby boards. These
468  *      defines apply to the directly accessible io ports of these boards.
469  */
470 #define ONB_IOSIZE      16
471 #define ONB_MEMSIZE     (64 * 1024)
472 #define ONB_ATPAGESIZE  (64 * 1024)
473 #define ONB_MCPAGESIZE  (64 * 1024)
474 #define ONB_EIMEMSIZE   (128 * 1024)
475 #define ONB_EIPAGESIZE  (64 * 1024)
476
477 /*
478  *      Important defines for the ISA class of ONboard board.
479  */
480 #define ONB_ATIREG      0
481 #define ONB_ATMEMAR     1
482 #define ONB_ATCONFR     2
483 #define ONB_ATSTOP      0x4
484 #define ONB_ATENABLE    0x01
485 #define ONB_ATDISABLE   0x00
486 #define ONB_ATADDRMASK  0xff0000
487 #define ONB_ATADDRSHFT  16
488
489 #define ONB_MEMENABLO   0
490 #define ONB_MEMENABHI   0x02
491
492 /*
493  *      Important defines for the EISA class of ONboard board.
494  */
495 #define ONB_EIIREG      0
496 #define ONB_EIMEMARL    1
497 #define ONB_EICONFR     2
498 #define ONB_EIMEMARH    3
499 #define ONB_EIENABLE    0x1
500 #define ONB_EIDISABLE   0x0
501 #define ONB_EISTOP      0x4
502 #define ONB_EIEDGE      0x00
503 #define ONB_EILEVEL     0x80
504 #define ONB_EIADDRMASKL 0x00ff0000
505 #define ONB_EIADDRSHFTL 16
506 #define ONB_EIADDRMASKH 0xff000000
507 #define ONB_EIADDRSHFTH 24
508 #define ONB_EIBRDENAB   0xc84
509
510 #define ONB_EISAID      0x1
511
512 /*
513  *      Important defines for the Brumby boards. They are pretty simple,
514  *      there is not much that is programmably configurable.
515  */
516 #define BBY_IOSIZE      16
517 #define BBY_MEMSIZE     (64 * 1024)
518 #define BBY_PAGESIZE    (16 * 1024)
519
520 #define BBY_ATIREG      0
521 #define BBY_ATCONFR     1
522 #define BBY_ATSTOP      0x4
523
524 /*
525  *      Important defines for the Stallion boards. They are pretty simple,
526  *      there is not much that is programmably configurable.
527  */
528 #define STAL_IOSIZE     16
529 #define STAL_MEMSIZE    (64 * 1024)
530 #define STAL_PAGESIZE   (64 * 1024)
531
532 /*
533  *      Define the set of status register values for EasyConnection panels.
534  *      The signature will return with the status value for each panel. From
535  *      this we can determine what is attached to the board - before we have
536  *      actually down loaded any code to it.
537  */
538 #define ECH_PNLSTATUS   2
539 #define ECH_PNL16PORT   0x20
540 #define ECH_PNLIDMASK   0x07
541 #define ECH_PNLXPID     0x40
542 #define ECH_PNLINTRPEND 0x80
543
544 /*
545  *      Define some macros to do things to the board. Even those these boards
546  *      are somewhat related there is often significantly different ways of
547  *      doing some operation on it (like enable, paging, reset, etc). So each
548  *      board class has a set of functions which do the commonly required
549  *      operations. The macros below basically just call these functions,
550  *      generally checking for a NULL function - which means that the board
551  *      needs nothing done to it to achieve this operation!
552  */
553 #define EBRDINIT(brdp)                                          \
554         if (brdp->init != NULL)                                 \
555                 (* brdp->init)(brdp)
556
557 #define EBRDENABLE(brdp)                                        \
558         if (brdp->enable != NULL)                               \
559                 (* brdp->enable)(brdp);
560
561 #define EBRDDISABLE(brdp)                                       \
562         if (brdp->disable != NULL)                              \
563                 (* brdp->disable)(brdp);
564
565 #define EBRDINTR(brdp)                                          \
566         if (brdp->intr != NULL)                                 \
567                 (* brdp->intr)(brdp);
568
569 #define EBRDRESET(brdp)                                         \
570         if (brdp->reset != NULL)                                \
571                 (* brdp->reset)(brdp);
572
573 #define EBRDGETMEMPTR(brdp,offset)                              \
574         (* brdp->getmemptr)(brdp, offset, __LINE__)
575
576 /*
577  *      Define the maximal baud rate, and the default baud base for ports.
578  */
579 #define STL_MAXBAUD     460800
580 #define STL_BAUDBASE    115200
581 #define STL_CLOSEDELAY  (5 * HZ / 10)
582
583 /*****************************************************************************/
584
585 /*
586  *      Define macros to extract a brd or port number from a minor number.
587  */
588 #define MINOR2BRD(min)          (((min) & 0xc0) >> 6)
589 #define MINOR2PORT(min)         ((min) & 0x3f)
590
591 /*****************************************************************************/
592
593 /*
594  *      Prototype all functions in this driver!
595  */
596
597 static int      stli_parsebrd(struct stlconf *confp, char **argp);
598 static int      stli_open(struct tty_struct *tty, struct file *filp);
599 static void     stli_close(struct tty_struct *tty, struct file *filp);
600 static int      stli_write(struct tty_struct *tty, const unsigned char *buf, int count);
601 static int      stli_putchar(struct tty_struct *tty, unsigned char ch);
602 static void     stli_flushchars(struct tty_struct *tty);
603 static int      stli_writeroom(struct tty_struct *tty);
604 static int      stli_charsinbuffer(struct tty_struct *tty);
605 static int      stli_ioctl(struct tty_struct *tty, struct file *file, unsigned int cmd, unsigned long arg);
606 static void     stli_settermios(struct tty_struct *tty, struct ktermios *old);
607 static void     stli_throttle(struct tty_struct *tty);
608 static void     stli_unthrottle(struct tty_struct *tty);
609 static void     stli_stop(struct tty_struct *tty);
610 static void     stli_start(struct tty_struct *tty);
611 static void     stli_flushbuffer(struct tty_struct *tty);
612 static int      stli_breakctl(struct tty_struct *tty, int state);
613 static void     stli_waituntilsent(struct tty_struct *tty, int timeout);
614 static void     stli_sendxchar(struct tty_struct *tty, char ch);
615 static void     stli_hangup(struct tty_struct *tty);
616 static int      stli_portinfo(struct stlibrd *brdp, struct stliport *portp, int portnr, char *pos);
617
618 static int      stli_brdinit(struct stlibrd *brdp);
619 static int      stli_startbrd(struct stlibrd *brdp);
620 static ssize_t  stli_memread(struct file *fp, char __user *buf, size_t count, loff_t *offp);
621 static ssize_t  stli_memwrite(struct file *fp, const char __user *buf, size_t count, loff_t *offp);
622 static int      stli_memioctl(struct inode *ip, struct file *fp, unsigned int cmd, unsigned long arg);
623 static void     stli_brdpoll(struct stlibrd *brdp, cdkhdr_t __iomem *hdrp);
624 static void     stli_poll(unsigned long arg);
625 static int      stli_hostcmd(struct stlibrd *brdp, struct stliport *portp);
626 static int      stli_initopen(struct tty_struct *tty, struct stlibrd *brdp, struct stliport *portp);
627 static int      stli_rawopen(struct stlibrd *brdp, struct stliport *portp, unsigned long arg, int wait);
628 static int      stli_rawclose(struct stlibrd *brdp, struct stliport *portp, unsigned long arg, int wait);
629 static int      stli_setport(struct tty_struct *tty);
630 static int      stli_cmdwait(struct stlibrd *brdp, struct stliport *portp, unsigned long cmd, void *arg, int size, int copyback);
631 static void     stli_sendcmd(struct stlibrd *brdp, struct stliport *portp, unsigned long cmd, void *arg, int size, int copyback);
632 static void     __stli_sendcmd(struct stlibrd *brdp, struct stliport *portp, unsigned long cmd, void *arg, int size, int copyback);
633 static void     stli_dodelaycmd(struct stliport *portp, cdkctrl_t __iomem *cp);
634 static void     stli_mkasyport(struct tty_struct *tty, struct stliport *portp, asyport_t *pp, struct ktermios *tiosp);
635 static void     stli_mkasysigs(asysigs_t *sp, int dtr, int rts);
636 static long     stli_mktiocm(unsigned long sigvalue);
637 static void     stli_read(struct stlibrd *brdp, struct stliport *portp);
638 static int      stli_getserial(struct stliport *portp, struct serial_struct __user *sp);
639 static int      stli_setserial(struct tty_struct *tty, struct serial_struct __user *sp);
640 static int      stli_getbrdstats(combrd_t __user *bp);
641 static int      stli_getportstats(struct tty_struct *tty, struct stliport *portp, comstats_t __user *cp);
642 static int      stli_portcmdstats(struct tty_struct *tty, struct stliport *portp);
643 static int      stli_clrportstats(struct stliport *portp, comstats_t __user *cp);
644 static int      stli_getportstruct(struct stliport __user *arg);
645 static int      stli_getbrdstruct(struct stlibrd __user *arg);
646 static struct stlibrd *stli_allocbrd(void);
647
648 static void     stli_ecpinit(struct stlibrd *brdp);
649 static void     stli_ecpenable(struct stlibrd *brdp);
650 static void     stli_ecpdisable(struct stlibrd *brdp);
651 static void __iomem *stli_ecpgetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
652 static void     stli_ecpreset(struct stlibrd *brdp);
653 static void     stli_ecpintr(struct stlibrd *brdp);
654 static void     stli_ecpeiinit(struct stlibrd *brdp);
655 static void     stli_ecpeienable(struct stlibrd *brdp);
656 static void     stli_ecpeidisable(struct stlibrd *brdp);
657 static void __iomem *stli_ecpeigetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
658 static void     stli_ecpeireset(struct stlibrd *brdp);
659 static void     stli_ecpmcenable(struct stlibrd *brdp);
660 static void     stli_ecpmcdisable(struct stlibrd *brdp);
661 static void __iomem *stli_ecpmcgetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
662 static void     stli_ecpmcreset(struct stlibrd *brdp);
663 static void     stli_ecppciinit(struct stlibrd *brdp);
664 static void __iomem *stli_ecppcigetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
665 static void     stli_ecppcireset(struct stlibrd *brdp);
666
667 static void     stli_onbinit(struct stlibrd *brdp);
668 static void     stli_onbenable(struct stlibrd *brdp);
669 static void     stli_onbdisable(struct stlibrd *brdp);
670 static void __iomem *stli_onbgetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
671 static void     stli_onbreset(struct stlibrd *brdp);
672 static void     stli_onbeinit(struct stlibrd *brdp);
673 static void     stli_onbeenable(struct stlibrd *brdp);
674 static void     stli_onbedisable(struct stlibrd *brdp);
675 static void __iomem *stli_onbegetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
676 static void     stli_onbereset(struct stlibrd *brdp);
677 static void     stli_bbyinit(struct stlibrd *brdp);
678 static void __iomem *stli_bbygetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
679 static void     stli_bbyreset(struct stlibrd *brdp);
680 static void     stli_stalinit(struct stlibrd *brdp);
681 static void __iomem *stli_stalgetmemptr(struct stlibrd *brdp, unsigned long offset, int line);
682 static void     stli_stalreset(struct stlibrd *brdp);
683
684 static struct stliport *stli_getport(unsigned int brdnr, unsigned int panelnr, unsigned int portnr);
685
686 static int      stli_initecp(struct stlibrd *brdp);
687 static int      stli_initonb(struct stlibrd *brdp);
688 #if STLI_EISAPROBE != 0
689 static int      stli_eisamemprobe(struct stlibrd *brdp);
690 #endif
691 static int      stli_initports(struct stlibrd *brdp);
692
693 /*****************************************************************************/
694
695 /*
696  *      Define the driver info for a user level shared memory device. This
697  *      device will work sort of like the /dev/kmem device - except that it
698  *      will give access to the shared memory on the Stallion intelligent
699  *      board. This is also a very useful debugging tool.
700  */
701 static const struct file_operations     stli_fsiomem = {
702         .owner          = THIS_MODULE,
703         .read           = stli_memread,
704         .write          = stli_memwrite,
705         .ioctl          = stli_memioctl,
706 };
707
708 /*****************************************************************************/
709
710 /*
711  *      Define a timer_list entry for our poll routine. The slave board
712  *      is polled every so often to see if anything needs doing. This is
713  *      much cheaper on host cpu than using interrupts. It turns out to
714  *      not increase character latency by much either...
715  */
716 static DEFINE_TIMER(stli_timerlist, stli_poll, 0, 0);
717
718 static int      stli_timeron;
719
720 /*
721  *      Define the calculation for the timeout routine.
722  */
723 #define STLI_TIMEOUT    (jiffies + 1)
724
725 /*****************************************************************************/
726
727 static struct class *istallion_class;
728
729 static void stli_cleanup_ports(struct stlibrd *brdp)
730 {
731         struct stliport *portp;
732         unsigned int j;
733         struct tty_struct *tty;
734
735         for (j = 0; j < STL_MAXPORTS; j++) {
736                 portp = brdp->ports[j];
737                 if (portp != NULL) {
738                         tty = tty_port_tty_get(&portp->port);
739                         if (tty != NULL) {
740                                 tty_hangup(tty);
741                                 tty_kref_put(tty);
742                         }
743                         kfree(portp);
744                 }
745         }
746 }
747
748 /*****************************************************************************/
749
750 /*
751  *      Parse the supplied argument string, into the board conf struct.
752  */
753
754 static int stli_parsebrd(struct stlconf *confp, char **argp)
755 {
756         unsigned int i;
757         char *sp;
758
759         if (argp[0] == NULL || *argp[0] == 0)
760                 return 0;
761
762         for (sp = argp[0], i = 0; ((*sp != 0) && (i < 25)); sp++, i++)
763                 *sp = tolower(*sp);
764
765         for (i = 0; i < ARRAY_SIZE(stli_brdstr); i++) {
766                 if (strcmp(stli_brdstr[i].name, argp[0]) == 0)
767                         break;
768         }
769         if (i == ARRAY_SIZE(stli_brdstr)) {
770                 printk("STALLION: unknown board name, %s?\n", argp[0]);
771                 return 0;
772         }
773
774         confp->brdtype = stli_brdstr[i].type;
775         if (argp[1] != NULL && *argp[1] != 0)
776                 confp->ioaddr1 = simple_strtoul(argp[1], NULL, 0);
777         if (argp[2] !=  NULL && *argp[2] != 0)
778                 confp->memaddr = simple_strtoul(argp[2], NULL, 0);
779         return(1);
780 }
781
782 /*****************************************************************************/
783
784 static int stli_open(struct tty_struct *tty, struct file *filp)
785 {
786         struct stlibrd *brdp;
787         struct stliport *portp;
788         struct tty_port *port;
789         unsigned int minordev, brdnr, portnr;
790         int rc;
791
792         minordev = tty->index;
793         brdnr = MINOR2BRD(minordev);
794         if (brdnr >= stli_nrbrds)
795                 return -ENODEV;
796         brdp = stli_brds[brdnr];
797         if (brdp == NULL)
798                 return -ENODEV;
799         if ((brdp->state & BST_STARTED) == 0)
800                 return -ENODEV;
801         portnr = MINOR2PORT(minordev);
802         if (portnr > brdp->nrports)
803                 return -ENODEV;
804
805         portp = brdp->ports[portnr];
806         if (portp == NULL)
807                 return -ENODEV;
808         if (portp->devnr < 1)
809                 return -ENODEV;
810         port = &portp->port;
811
812 /*
813  *      On the first open of the device setup the port hardware, and
814  *      initialize the per port data structure. Since initializing the port
815  *      requires several commands to the board we will need to wait for any
816  *      other open that is already initializing the port.
817  *
818  *      Review - locking
819  */
820         tty_port_tty_set(port, tty);
821         tty->driver_data = portp;
822         port->count++;
823
824         wait_event_interruptible(portp->raw_wait,
825                         !test_bit(ST_INITIALIZING, &portp->state));
826         if (signal_pending(current))
827                 return -ERESTARTSYS;
828
829         if ((portp->port.flags & ASYNC_INITIALIZED) == 0) {
830                 set_bit(ST_INITIALIZING, &portp->state);
831                 if ((rc = stli_initopen(tty, brdp, portp)) >= 0) {
832                         /* Locking */
833                         port->flags |= ASYNC_INITIALIZED;
834                         clear_bit(TTY_IO_ERROR, &tty->flags);
835                 }
836                 clear_bit(ST_INITIALIZING, &portp->state);
837                 wake_up_interruptible(&portp->raw_wait);
838                 if (rc < 0)
839                         return rc;
840         }
841         return tty_port_block_til_ready(&portp->port, tty, filp);
842 }
843
844 /*****************************************************************************/
845
846 static void stli_close(struct tty_struct *tty, struct file *filp)
847 {
848         struct stlibrd *brdp;
849         struct stliport *portp;
850         struct tty_port *port;
851         unsigned long flags;
852
853         portp = tty->driver_data;
854         if (portp == NULL)
855                 return;
856         port = &portp->port;
857
858         spin_lock_irqsave(&port->lock, flags);
859         if (tty_hung_up_p(filp)) {
860                 spin_unlock_irqrestore(&port->lock, flags);
861                 return;
862         }
863         if (tty->count == 1 && port->count != 1)
864                 port->count = 1;
865         if (port->count-- > 1) {
866                 spin_unlock_irqrestore(&port->lock, flags);
867                 return;
868         }
869
870         port->flags |= ASYNC_CLOSING;
871         tty->closing = 1;
872         spin_unlock_irqrestore(&port->lock, flags);
873
874 /*
875  *      May want to wait for data to drain before closing. The BUSY flag
876  *      keeps track of whether we are still transmitting or not. It is
877  *      updated by messages from the slave - indicating when all chars
878  *      really have drained.
879  */
880         spin_lock_irqsave(&stli_lock, flags);
881         if (tty == stli_txcooktty)
882                 stli_flushchars(tty);
883         spin_unlock_irqrestore(&stli_lock, flags);
884
885         if (portp->closing_wait != ASYNC_CLOSING_WAIT_NONE)
886                 tty_wait_until_sent(tty, portp->closing_wait);
887
888         /* FIXME: port locking here needs attending to */
889         port->flags &= ~ASYNC_INITIALIZED;
890
891         brdp = stli_brds[portp->brdnr];
892         stli_rawclose(brdp, portp, 0, 0);
893         if (tty->termios->c_cflag & HUPCL) {
894                 stli_mkasysigs(&portp->asig, 0, 0);
895                 if (test_bit(ST_CMDING, &portp->state))
896                         set_bit(ST_DOSIGS, &portp->state);
897                 else
898                         stli_sendcmd(brdp, portp, A_SETSIGNALS, &portp->asig,
899                                 sizeof(asysigs_t), 0);
900         }
901         clear_bit(ST_TXBUSY, &portp->state);
902         clear_bit(ST_RXSTOP, &portp->state);
903         set_bit(TTY_IO_ERROR, &tty->flags);
904         tty_ldisc_flush(tty);
905         set_bit(ST_DOFLUSHRX, &portp->state);
906         stli_flushbuffer(tty);
907
908         tty->closing = 0;
909         tty_port_tty_set(&portp->port, NULL);
910
911         if (port->blocked_open) {
912                 if (portp->close_delay)
913                         msleep_interruptible(jiffies_to_msecs(portp->close_delay));
914                 wake_up_interruptible(&port->open_wait);
915         }
916
917         port->flags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CLOSING);
918         wake_up_interruptible(&port->close_wait);
919 }
920
921 /*****************************************************************************/
922
923 /*
924  *      Carry out first open operations on a port. This involves a number of
925  *      commands to be sent to the slave. We need to open the port, set the
926  *      notification events, set the initial port settings, get and set the
927  *      initial signal values. We sleep and wait in between each one. But
928  *      this still all happens pretty quickly.
929  */
930
931 static int stli_initopen(struct tty_struct *tty,
932                                 struct stlibrd *brdp, struct stliport *portp)
933 {
934         asynotify_t nt;
935         asyport_t aport;
936         int rc;
937
938         if ((rc = stli_rawopen(brdp, portp, 0, 1)) < 0)
939                 return rc;
940
941         memset(&nt, 0, sizeof(asynotify_t));
942         nt.data = (DT_TXLOW | DT_TXEMPTY | DT_RXBUSY | DT_RXBREAK);
943         nt.signal = SG_DCD;
944         if ((rc = stli_cmdwait(brdp, portp, A_SETNOTIFY, &nt,
945             sizeof(asynotify_t), 0)) < 0)
946                 return rc;
947
948         stli_mkasyport(tty, portp, &aport, tty->termios);
949         if ((rc = stli_cmdwait(brdp, portp, A_SETPORT, &aport,
950             sizeof(asyport_t), 0)) < 0)
951                 return rc;
952
953         set_bit(ST_GETSIGS, &portp->state);
954         if ((rc = stli_cmdwait(brdp, portp, A_GETSIGNALS, &portp->asig,
955             sizeof(asysigs_t), 1)) < 0)
956                 return rc;
957         if (test_and_clear_bit(ST_GETSIGS, &portp->state))
958                 portp->sigs = stli_mktiocm(portp->asig.sigvalue);
959         stli_mkasysigs(&portp->asig, 1, 1);
960         if ((rc = stli_cmdwait(brdp, portp, A_SETSIGNALS, &portp->asig,
961             sizeof(asysigs_t), 0)) < 0)
962                 return rc;
963
964         return 0;
965 }
966
967 /*****************************************************************************/
968
969 /*
970  *      Send an open message to the slave. This will sleep waiting for the
971  *      acknowledgement, so must have user context. We need to co-ordinate
972  *      with close events here, since we don't want open and close events
973  *      to overlap.
974  */
975
976 static int stli_rawopen(struct stlibrd *brdp, struct stliport *portp, unsigned long arg, int wait)
977 {
978         cdkhdr_t __iomem *hdrp;
979         cdkctrl_t __iomem *cp;
980         unsigned char __iomem *bits;
981         unsigned long flags;
982         int rc;
983
984 /*
985  *      Send a message to the slave to open this port.
986  */
987
988 /*
989  *      Slave is already closing this port. This can happen if a hangup
990  *      occurs on this port. So we must wait until it is complete. The
991  *      order of opens and closes may not be preserved across shared
992  *      memory, so we must wait until it is complete.
993  */
994         wait_event_interruptible(portp->raw_wait,
995                         !test_bit(ST_CLOSING, &portp->state));
996         if (signal_pending(current)) {
997                 return -ERESTARTSYS;
998         }
999
1000 /*
1001  *      Everything is ready now, so write the open message into shared
1002  *      memory. Once the message is in set the service bits to say that
1003  *      this port wants service.
1004  */
1005         spin_lock_irqsave(&brd_lock, flags);
1006         EBRDENABLE(brdp);
1007         cp = &((cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr))->ctrl;
1008         writel(arg, &cp->openarg);
1009         writeb(1, &cp->open);
1010         hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
1011         bits = ((unsigned char __iomem *) hdrp) + brdp->slaveoffset +
1012                 portp->portidx;
1013         writeb(readb(bits) | portp->portbit, bits);
1014         EBRDDISABLE(brdp);
1015
1016         if (wait == 0) {
1017                 spin_unlock_irqrestore(&brd_lock, flags);
1018                 return 0;
1019         }
1020
1021 /*
1022  *      Slave is in action, so now we must wait for the open acknowledgment
1023  *      to come back.
1024  */
1025         rc = 0;
1026         set_bit(ST_OPENING, &portp->state);
1027         spin_unlock_irqrestore(&brd_lock, flags);
1028
1029         wait_event_interruptible(portp->raw_wait,
1030                         !test_bit(ST_OPENING, &portp->state));
1031         if (signal_pending(current))
1032                 rc = -ERESTARTSYS;
1033
1034         if ((rc == 0) && (portp->rc != 0))
1035                 rc = -EIO;
1036         return rc;
1037 }
1038
1039 /*****************************************************************************/
1040
1041 /*
1042  *      Send a close message to the slave. Normally this will sleep waiting
1043  *      for the acknowledgement, but if wait parameter is 0 it will not. If
1044  *      wait is true then must have user context (to sleep).
1045  */
1046
1047 static int stli_rawclose(struct stlibrd *brdp, struct stliport *portp, unsigned long arg, int wait)
1048 {
1049         cdkhdr_t __iomem *hdrp;
1050         cdkctrl_t __iomem *cp;
1051         unsigned char __iomem *bits;
1052         unsigned long flags;
1053         int rc;
1054
1055 /*
1056  *      Slave is already closing this port. This can happen if a hangup
1057  *      occurs on this port.
1058  */
1059         if (wait) {
1060                 wait_event_interruptible(portp->raw_wait,
1061                                 !test_bit(ST_CLOSING, &portp->state));
1062                 if (signal_pending(current)) {
1063                         return -ERESTARTSYS;
1064                 }
1065         }
1066
1067 /*
1068  *      Write the close command into shared memory.
1069  */
1070         spin_lock_irqsave(&brd_lock, flags);
1071         EBRDENABLE(brdp);
1072         cp = &((cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr))->ctrl;
1073         writel(arg, &cp->closearg);
1074         writeb(1, &cp->close);
1075         hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
1076         bits = ((unsigned char __iomem *) hdrp) + brdp->slaveoffset +
1077                 portp->portidx;
1078         writeb(readb(bits) |portp->portbit, bits);
1079         EBRDDISABLE(brdp);
1080
1081         set_bit(ST_CLOSING, &portp->state);
1082         spin_unlock_irqrestore(&brd_lock, flags);
1083
1084         if (wait == 0)
1085                 return 0;
1086
1087 /*
1088  *      Slave is in action, so now we must wait for the open acknowledgment
1089  *      to come back.
1090  */
1091         rc = 0;
1092         wait_event_interruptible(portp->raw_wait,
1093                         !test_bit(ST_CLOSING, &portp->state));
1094         if (signal_pending(current))
1095                 rc = -ERESTARTSYS;
1096
1097         if ((rc == 0) && (portp->rc != 0))
1098                 rc = -EIO;
1099         return rc;
1100 }
1101
1102 /*****************************************************************************/
1103
1104 /*
1105  *      Send a command to the slave and wait for the response. This must
1106  *      have user context (it sleeps). This routine is generic in that it
1107  *      can send any type of command. Its purpose is to wait for that command
1108  *      to complete (as opposed to initiating the command then returning).
1109  */
1110
1111 static int stli_cmdwait(struct stlibrd *brdp, struct stliport *portp, unsigned long cmd, void *arg, int size, int copyback)
1112 {
1113         wait_event_interruptible(portp->raw_wait,
1114                         !test_bit(ST_CMDING, &portp->state));
1115         if (signal_pending(current))
1116                 return -ERESTARTSYS;
1117
1118         stli_sendcmd(brdp, portp, cmd, arg, size, copyback);
1119
1120         wait_event_interruptible(portp->raw_wait,
1121                         !test_bit(ST_CMDING, &portp->state));
1122         if (signal_pending(current))
1123                 return -ERESTARTSYS;
1124
1125         if (portp->rc != 0)
1126                 return -EIO;
1127         return 0;
1128 }
1129
1130 /*****************************************************************************/
1131
1132 /*
1133  *      Send the termios settings for this port to the slave. This sleeps
1134  *      waiting for the command to complete - so must have user context.
1135  */
1136
1137 static int stli_setport(struct tty_struct *tty)
1138 {
1139         struct stliport *portp = tty->driver_data;
1140         struct stlibrd *brdp;
1141         asyport_t aport;
1142
1143         if (portp == NULL)
1144                 return -ENODEV;
1145         if (portp->brdnr >= stli_nrbrds)
1146                 return -ENODEV;
1147         brdp = stli_brds[portp->brdnr];
1148         if (brdp == NULL)
1149                 return -ENODEV;
1150
1151         stli_mkasyport(tty, portp, &aport, tty->termios);
1152         return(stli_cmdwait(brdp, portp, A_SETPORT, &aport, sizeof(asyport_t), 0));
1153 }
1154
1155 /*****************************************************************************/
1156
1157 static int stli_carrier_raised(struct tty_port *port)
1158 {
1159         struct stliport *portp = container_of(port, struct stliport, port);
1160         return (portp->sigs & TIOCM_CD) ? 1 : 0;
1161 }
1162
1163 static void stli_raise_dtr_rts(struct tty_port *port)
1164 {
1165         struct stliport *portp = container_of(port, struct stliport, port);
1166         struct stlibrd *brdp = stli_brds[portp->brdnr];
1167         stli_mkasysigs(&portp->asig, 1, 1);
1168         if (stli_cmdwait(brdp, portp, A_SETSIGNALS, &portp->asig,
1169                 sizeof(asysigs_t), 0) < 0)
1170                         printk(KERN_WARNING "istallion: dtr raise failed.\n");
1171 }
1172
1173
1174 /*****************************************************************************/
1175
1176 /*
1177  *      Write routine. Take the data and put it in the shared memory ring
1178  *      queue. If port is not already sending chars then need to mark the
1179  *      service bits for this port.
1180  */
1181
1182 static int stli_write(struct tty_struct *tty, const unsigned char *buf, int count)
1183 {
1184         cdkasy_t __iomem *ap;
1185         cdkhdr_t __iomem *hdrp;
1186         unsigned char __iomem *bits;
1187         unsigned char __iomem *shbuf;
1188         unsigned char *chbuf;
1189         struct stliport *portp;
1190         struct stlibrd *brdp;
1191         unsigned int len, stlen, head, tail, size;
1192         unsigned long flags;
1193
1194         if (tty == stli_txcooktty)
1195                 stli_flushchars(tty);
1196         portp = tty->driver_data;
1197         if (portp == NULL)
1198                 return 0;
1199         if (portp->brdnr >= stli_nrbrds)
1200                 return 0;
1201         brdp = stli_brds[portp->brdnr];
1202         if (brdp == NULL)
1203                 return 0;
1204         chbuf = (unsigned char *) buf;
1205
1206 /*
1207  *      All data is now local, shove as much as possible into shared memory.
1208  */
1209         spin_lock_irqsave(&brd_lock, flags);
1210         EBRDENABLE(brdp);
1211         ap = (cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr);
1212         head = (unsigned int) readw(&ap->txq.head);
1213         tail = (unsigned int) readw(&ap->txq.tail);
1214         if (tail != ((unsigned int) readw(&ap->txq.tail)))
1215                 tail = (unsigned int) readw(&ap->txq.tail);
1216         size = portp->txsize;
1217         if (head >= tail) {
1218                 len = size - (head - tail) - 1;
1219                 stlen = size - head;
1220         } else {
1221                 len = tail - head - 1;
1222                 stlen = len;
1223         }
1224
1225         len = min(len, (unsigned int)count);
1226         count = 0;
1227         shbuf = (char __iomem *) EBRDGETMEMPTR(brdp, portp->txoffset);
1228
1229         while (len > 0) {
1230                 stlen = min(len, stlen);
1231                 memcpy_toio(shbuf + head, chbuf, stlen);
1232                 chbuf += stlen;
1233                 len -= stlen;
1234                 count += stlen;
1235                 head += stlen;
1236                 if (head >= size) {
1237                         head = 0;
1238                         stlen = tail;
1239                 }
1240         }
1241
1242         ap = (cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr);
1243         writew(head, &ap->txq.head);
1244         if (test_bit(ST_TXBUSY, &portp->state)) {
1245                 if (readl(&ap->changed.data) & DT_TXEMPTY)
1246                         writel(readl(&ap->changed.data) & ~DT_TXEMPTY, &ap->changed.data);
1247         }
1248         hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
1249         bits = ((unsigned char __iomem *) hdrp) + brdp->slaveoffset +
1250                 portp->portidx;
1251         writeb(readb(bits) | portp->portbit, bits);
1252         set_bit(ST_TXBUSY, &portp->state);
1253         EBRDDISABLE(brdp);
1254         spin_unlock_irqrestore(&brd_lock, flags);
1255
1256         return(count);
1257 }
1258
1259 /*****************************************************************************/
1260
1261 /*
1262  *      Output a single character. We put it into a temporary local buffer
1263  *      (for speed) then write out that buffer when the flushchars routine
1264  *      is called. There is a safety catch here so that if some other port
1265  *      writes chars before the current buffer has been, then we write them
1266  *      first them do the new ports.
1267  */
1268
1269 static int stli_putchar(struct tty_struct *tty, unsigned char ch)
1270 {
1271         if (tty != stli_txcooktty) {
1272                 if (stli_txcooktty != NULL)
1273                         stli_flushchars(stli_txcooktty);
1274                 stli_txcooktty = tty;
1275         }
1276
1277         stli_txcookbuf[stli_txcooksize++] = ch;
1278         return 0;
1279 }
1280
1281 /*****************************************************************************/
1282
1283 /*
1284  *      Transfer characters from the local TX cooking buffer to the board.
1285  *      We sort of ignore the tty that gets passed in here. We rely on the
1286  *      info stored with the TX cook buffer to tell us which port to flush
1287  *      the data on. In any case we clean out the TX cook buffer, for re-use
1288  *      by someone else.
1289  */
1290
1291 static void stli_flushchars(struct tty_struct *tty)
1292 {
1293         cdkhdr_t __iomem *hdrp;
1294         unsigned char __iomem *bits;
1295         cdkasy_t __iomem *ap;
1296         struct tty_struct *cooktty;
1297         struct stliport *portp;
1298         struct stlibrd *brdp;
1299         unsigned int len, stlen, head, tail, size, count, cooksize;
1300         unsigned char *buf;
1301         unsigned char __iomem *shbuf;
1302         unsigned long flags;
1303
1304         cooksize = stli_txcooksize;
1305         cooktty = stli_txcooktty;
1306         stli_txcooksize = 0;
1307         stli_txcookrealsize = 0;
1308         stli_txcooktty = NULL;
1309
1310         if (cooktty == NULL)
1311                 return;
1312         if (tty != cooktty)
1313                 tty = cooktty;
1314         if (cooksize == 0)
1315                 return;
1316
1317         portp = tty->driver_data;
1318         if (portp == NULL)
1319                 return;
1320         if (portp->brdnr >= stli_nrbrds)
1321                 return;
1322         brdp = stli_brds[portp->brdnr];
1323         if (brdp == NULL)
1324                 return;
1325
1326         spin_lock_irqsave(&brd_lock, flags);
1327         EBRDENABLE(brdp);
1328
1329         ap = (cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr);
1330         head = (unsigned int) readw(&ap->txq.head);
1331         tail = (unsigned int) readw(&ap->txq.tail);
1332         if (tail != ((unsigned int) readw(&ap->txq.tail)))
1333                 tail = (unsigned int) readw(&ap->txq.tail);
1334         size = portp->txsize;
1335         if (head >= tail) {
1336                 len = size - (head - tail) - 1;
1337                 stlen = size - head;
1338         } else {
1339                 len = tail - head - 1;
1340                 stlen = len;
1341         }
1342
1343         len = min(len, cooksize);
1344         count = 0;
1345         shbuf = EBRDGETMEMPTR(brdp, portp->txoffset);
1346         buf = stli_txcookbuf;
1347
1348         while (len > 0) {
1349                 stlen = min(len, stlen);
1350                 memcpy_toio(shbuf + head, buf, stlen);
1351                 buf += stlen;
1352                 len -= stlen;
1353                 count += stlen;
1354                 head += stlen;
1355                 if (head >= size) {
1356                         head = 0;
1357                         stlen = tail;
1358                 }
1359         }
1360
1361         ap = (cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr);
1362         writew(head, &ap->txq.head);
1363
1364         if (test_bit(ST_TXBUSY, &portp->state)) {
1365                 if (readl(&ap->changed.data) & DT_TXEMPTY)
1366                         writel(readl(&ap->changed.data) & ~DT_TXEMPTY, &ap->changed.data);
1367         }
1368         hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
1369         bits = ((unsigned char __iomem *) hdrp) + brdp->slaveoffset +
1370                 portp->portidx;
1371         writeb(readb(bits) | portp->portbit, bits);
1372         set_bit(ST_TXBUSY, &portp->state);
1373
1374         EBRDDISABLE(brdp);
1375         spin_unlock_irqrestore(&brd_lock, flags);
1376 }
1377
1378 /*****************************************************************************/
1379
1380 static int stli_writeroom(struct tty_struct *tty)
1381 {
1382         cdkasyrq_t __iomem *rp;
1383         struct stliport *portp;
1384         struct stlibrd *brdp;
1385         unsigned int head, tail, len;
1386         unsigned long flags;
1387
1388         if (tty == stli_txcooktty) {
1389                 if (stli_txcookrealsize != 0) {
1390                         len = stli_txcookrealsize - stli_txcooksize;
1391                         return len;
1392                 }
1393         }
1394
1395         portp = tty->driver_data;
1396         if (portp == NULL)
1397                 return 0;
1398         if (portp->brdnr >= stli_nrbrds)
1399                 return 0;
1400         brdp = stli_brds[portp->brdnr];
1401         if (brdp == NULL)
1402                 return 0;
1403
1404         spin_lock_irqsave(&brd_lock, flags);
1405         EBRDENABLE(brdp);
1406         rp = &((cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr))->txq;
1407         head = (unsigned int) readw(&rp->head);
1408         tail = (unsigned int) readw(&rp->tail);
1409         if (tail != ((unsigned int) readw(&rp->tail)))
1410                 tail = (unsigned int) readw(&rp->tail);
1411         len = (head >= tail) ? (portp->txsize - (head - tail)) : (tail - head);
1412         len--;
1413         EBRDDISABLE(brdp);
1414         spin_unlock_irqrestore(&brd_lock, flags);
1415
1416         if (tty == stli_txcooktty) {
1417                 stli_txcookrealsize = len;
1418                 len -= stli_txcooksize;
1419         }
1420         return len;
1421 }
1422
1423 /*****************************************************************************/
1424
1425 /*
1426  *      Return the number of characters in the transmit buffer. Normally we
1427  *      will return the number of chars in the shared memory ring queue.
1428  *      We need to kludge around the case where the shared memory buffer is
1429  *      empty but not all characters have drained yet, for this case just
1430  *      return that there is 1 character in the buffer!
1431  */
1432
1433 static int stli_charsinbuffer(struct tty_struct *tty)
1434 {
1435         cdkasyrq_t __iomem *rp;
1436         struct stliport *portp;
1437         struct stlibrd *brdp;
1438         unsigned int head, tail, len;
1439         unsigned long flags;
1440
1441         if (tty == stli_txcooktty)
1442                 stli_flushchars(tty);
1443         portp = tty->driver_data;
1444         if (portp == NULL)
1445                 return 0;
1446         if (portp->brdnr >= stli_nrbrds)
1447                 return 0;
1448         brdp = stli_brds[portp->brdnr];
1449         if (brdp == NULL)
1450                 return 0;
1451
1452         spin_lock_irqsave(&brd_lock, flags);
1453         EBRDENABLE(brdp);
1454         rp = &((cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr))->txq;
1455         head = (unsigned int) readw(&rp->head);
1456         tail = (unsigned int) readw(&rp->tail);
1457         if (tail != ((unsigned int) readw(&rp->tail)))
1458                 tail = (unsigned int) readw(&rp->tail);
1459         len = (head >= tail) ? (head - tail) : (portp->txsize - (tail - head));
1460         if ((len == 0) && test_bit(ST_TXBUSY, &portp->state))
1461                 len = 1;
1462         EBRDDISABLE(brdp);
1463         spin_unlock_irqrestore(&brd_lock, flags);
1464
1465         return len;
1466 }
1467
1468 /*****************************************************************************/
1469
1470 /*
1471  *      Generate the serial struct info.
1472  */
1473
1474 static int stli_getserial(struct stliport *portp, struct serial_struct __user *sp)
1475 {
1476         struct serial_struct sio;
1477         struct stlibrd *brdp;
1478
1479         memset(&sio, 0, sizeof(struct serial_struct));
1480         sio.type = PORT_UNKNOWN;
1481         sio.line = portp->portnr;
1482         sio.irq = 0;
1483         sio.flags = portp->port.flags;
1484         sio.baud_base = portp->baud_base;
1485         sio.close_delay = portp->close_delay;
1486         sio.closing_wait = portp->closing_wait;
1487         sio.custom_divisor = portp->custom_divisor;
1488         sio.xmit_fifo_size = 0;
1489         sio.hub6 = 0;
1490
1491         brdp = stli_brds[portp->brdnr];
1492         if (brdp != NULL)
1493                 sio.port = brdp->iobase;
1494                 
1495         return copy_to_user(sp, &sio, sizeof(struct serial_struct)) ?
1496                         -EFAULT : 0;
1497 }
1498
1499 /*****************************************************************************/
1500
1501 /*
1502  *      Set port according to the serial struct info.
1503  *      At this point we do not do any auto-configure stuff, so we will
1504  *      just quietly ignore any requests to change irq, etc.
1505  */
1506
1507 static int stli_setserial(struct tty_struct *tty, struct serial_struct __user *sp)
1508 {
1509         struct serial_struct sio;
1510         int rc;
1511         struct stliport *portp = tty->driver_data;
1512
1513         if (copy_from_user(&sio, sp, sizeof(struct serial_struct)))
1514                 return -EFAULT;
1515         if (!capable(CAP_SYS_ADMIN)) {
1516                 if ((sio.baud_base != portp->baud_base) ||
1517                     (sio.close_delay != portp->close_delay) ||
1518                     ((sio.flags & ~ASYNC_USR_MASK) !=
1519                     (portp->port.flags & ~ASYNC_USR_MASK)))
1520                         return -EPERM;
1521         } 
1522
1523         portp->port.flags = (portp->port.flags & ~ASYNC_USR_MASK) |
1524                 (sio.flags & ASYNC_USR_MASK);
1525         portp->baud_base = sio.baud_base;
1526         portp->close_delay = sio.close_delay;
1527         portp->closing_wait = sio.closing_wait;
1528         portp->custom_divisor = sio.custom_divisor;
1529
1530         if ((rc = stli_setport(tty)) < 0)
1531                 return rc;
1532         return 0;
1533 }
1534
1535 /*****************************************************************************/
1536
1537 static int stli_tiocmget(struct tty_struct *tty, struct file *file)
1538 {
1539         struct stliport *portp = tty->driver_data;
1540         struct stlibrd *brdp;
1541         int rc;
1542
1543         if (portp == NULL)
1544                 return -ENODEV;
1545         if (portp->brdnr >= stli_nrbrds)
1546                 return 0;
1547         brdp = stli_brds[portp->brdnr];
1548         if (brdp == NULL)
1549                 return 0;
1550         if (tty->flags & (1 << TTY_IO_ERROR))
1551                 return -EIO;
1552
1553         if ((rc = stli_cmdwait(brdp, portp, A_GETSIGNALS,
1554                                &portp->asig, sizeof(asysigs_t), 1)) < 0)
1555                 return rc;
1556
1557         return stli_mktiocm(portp->asig.sigvalue);
1558 }
1559
1560 static int stli_tiocmset(struct tty_struct *tty, struct file *file,
1561                          unsigned int set, unsigned int clear)
1562 {
1563         struct stliport *portp = tty->driver_data;
1564         struct stlibrd *brdp;
1565         int rts = -1, dtr = -1;
1566
1567         if (portp == NULL)
1568                 return -ENODEV;
1569         if (portp->brdnr >= stli_nrbrds)
1570                 return 0;
1571         brdp = stli_brds[portp->brdnr];
1572         if (brdp == NULL)
1573                 return 0;
1574         if (tty->flags & (1 << TTY_IO_ERROR))
1575                 return -EIO;
1576
1577         if (set & TIOCM_RTS)
1578                 rts = 1;
1579         if (set & TIOCM_DTR)
1580                 dtr = 1;
1581         if (clear & TIOCM_RTS)
1582                 rts = 0;
1583         if (clear & TIOCM_DTR)
1584                 dtr = 0;
1585
1586         stli_mkasysigs(&portp->asig, dtr, rts);
1587
1588         return stli_cmdwait(brdp, portp, A_SETSIGNALS, &portp->asig,
1589                             sizeof(asysigs_t), 0);
1590 }
1591
1592 static int stli_ioctl(struct tty_struct *tty, struct file *file, unsigned int cmd, unsigned long arg)
1593 {
1594         struct stliport *portp;
1595         struct stlibrd *brdp;
1596         int rc;
1597         void __user *argp = (void __user *)arg;
1598
1599         portp = tty->driver_data;
1600         if (portp == NULL)
1601                 return -ENODEV;
1602         if (portp->brdnr >= stli_nrbrds)
1603                 return 0;
1604         brdp = stli_brds[portp->brdnr];
1605         if (brdp == NULL)
1606                 return 0;
1607
1608         if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
1609             (cmd != COM_GETPORTSTATS) && (cmd != COM_CLRPORTSTATS)) {
1610                 if (tty->flags & (1 << TTY_IO_ERROR))
1611                         return -EIO;
1612         }
1613
1614         rc = 0;
1615
1616         switch (cmd) {
1617         case TIOCGSERIAL:
1618                 rc = stli_getserial(portp, argp);
1619                 break;
1620         case TIOCSSERIAL:
1621                 rc = stli_setserial(tty, argp);
1622                 break;
1623         case STL_GETPFLAG:
1624                 rc = put_user(portp->pflag, (unsigned __user *)argp);
1625                 break;
1626         case STL_SETPFLAG:
1627                 if ((rc = get_user(portp->pflag, (unsigned __user *)argp)) == 0)
1628                         stli_setport(tty);
1629                 break;
1630         case COM_GETPORTSTATS:
1631                 rc = stli_getportstats(tty, portp, argp);
1632                 break;
1633         case COM_CLRPORTSTATS:
1634                 rc = stli_clrportstats(portp, argp);
1635                 break;
1636         case TIOCSERCONFIG:
1637         case TIOCSERGWILD:
1638         case TIOCSERSWILD:
1639         case TIOCSERGETLSR:
1640         case TIOCSERGSTRUCT:
1641         case TIOCSERGETMULTI:
1642         case TIOCSERSETMULTI:
1643         default:
1644                 rc = -ENOIOCTLCMD;
1645                 break;
1646         }
1647
1648         return rc;
1649 }
1650
1651 /*****************************************************************************/
1652
1653 /*
1654  *      This routine assumes that we have user context and can sleep.
1655  *      Looks like it is true for the current ttys implementation..!!
1656  */
1657
1658 static void stli_settermios(struct tty_struct *tty, struct ktermios *old)
1659 {
1660         struct stliport *portp;
1661         struct stlibrd *brdp;
1662         struct ktermios *tiosp;
1663         asyport_t aport;
1664
1665         portp = tty->driver_data;
1666         if (portp == NULL)
1667                 return;
1668         if (portp->brdnr >= stli_nrbrds)
1669                 return;
1670         brdp = stli_brds[portp->brdnr];
1671         if (brdp == NULL)
1672                 return;
1673
1674         tiosp = tty->termios;
1675
1676         stli_mkasyport(tty, portp, &aport, tiosp);
1677         stli_cmdwait(brdp, portp, A_SETPORT, &aport, sizeof(asyport_t), 0);
1678         stli_mkasysigs(&portp->asig, ((tiosp->c_cflag & CBAUD) ? 1 : 0), -1);
1679         stli_cmdwait(brdp, portp, A_SETSIGNALS, &portp->asig,
1680                 sizeof(asysigs_t), 0);
1681         if ((old->c_cflag & CRTSCTS) && ((tiosp->c_cflag & CRTSCTS) == 0))
1682                 tty->hw_stopped = 0;
1683         if (((old->c_cflag & CLOCAL) == 0) && (tiosp->c_cflag & CLOCAL))
1684                 wake_up_interruptible(&portp->port.open_wait);
1685 }
1686
1687 /*****************************************************************************/
1688
1689 /*
1690  *      Attempt to flow control who ever is sending us data. We won't really
1691  *      do any flow control action here. We can't directly, and even if we
1692  *      wanted to we would have to send a command to the slave. The slave
1693  *      knows how to flow control, and will do so when its buffers reach its
1694  *      internal high water marks. So what we will do is set a local state
1695  *      bit that will stop us sending any RX data up from the poll routine
1696  *      (which is the place where RX data from the slave is handled).
1697  */
1698
1699 static void stli_throttle(struct tty_struct *tty)
1700 {
1701         struct stliport *portp = tty->driver_data;
1702         if (portp == NULL)
1703                 return;
1704         set_bit(ST_RXSTOP, &portp->state);
1705 }
1706
1707 /*****************************************************************************/
1708
1709 /*
1710  *      Unflow control the device sending us data... That means that all
1711  *      we have to do is clear the RXSTOP state bit. The next poll call
1712  *      will then be able to pass the RX data back up.
1713  */
1714
1715 static void stli_unthrottle(struct tty_struct *tty)
1716 {
1717         struct stliport *portp = tty->driver_data;
1718         if (portp == NULL)
1719                 return;
1720         clear_bit(ST_RXSTOP, &portp->state);
1721 }
1722
1723 /*****************************************************************************/
1724
1725 /*
1726  *      Stop the transmitter.
1727  */
1728
1729 static void stli_stop(struct tty_struct *tty)
1730 {
1731 }
1732
1733 /*****************************************************************************/
1734
1735 /*
1736  *      Start the transmitter again.
1737  */
1738
1739 static void stli_start(struct tty_struct *tty)
1740 {
1741 }
1742
1743 /*****************************************************************************/
1744
1745 /*
1746  *      Hangup this port. This is pretty much like closing the port, only
1747  *      a little more brutal. No waiting for data to drain. Shutdown the
1748  *      port and maybe drop signals. This is rather tricky really. We want
1749  *      to close the port as well.
1750  */
1751
1752 static void stli_hangup(struct tty_struct *tty)
1753 {
1754         struct stliport *portp;
1755         struct stlibrd *brdp;
1756         struct tty_port *port;
1757         unsigned long flags;
1758
1759         portp = tty->driver_data;
1760         if (portp == NULL)
1761                 return;
1762         if (portp->brdnr >= stli_nrbrds)
1763                 return;
1764         brdp = stli_brds[portp->brdnr];
1765         if (brdp == NULL)
1766                 return;
1767         port = &portp->port;
1768
1769         spin_lock_irqsave(&port->lock, flags);
1770         port->flags &= ~ASYNC_INITIALIZED;
1771         spin_unlock_irqrestore(&port->lock, flags);
1772
1773         if (!test_bit(ST_CLOSING, &portp->state))
1774                 stli_rawclose(brdp, portp, 0, 0);
1775
1776         spin_lock_irqsave(&stli_lock, flags);
1777         if (tty->termios->c_cflag & HUPCL) {
1778                 stli_mkasysigs(&portp->asig, 0, 0);
1779                 if (test_bit(ST_CMDING, &portp->state)) {
1780                         set_bit(ST_DOSIGS, &portp->state);
1781                         set_bit(ST_DOFLUSHTX, &portp->state);
1782                         set_bit(ST_DOFLUSHRX, &portp->state);
1783                 } else {
1784                         stli_sendcmd(brdp, portp, A_SETSIGNALSF,
1785                                 &portp->asig, sizeof(asysigs_t), 0);
1786                 }
1787         }
1788
1789         clear_bit(ST_TXBUSY, &portp->state);
1790         clear_bit(ST_RXSTOP, &portp->state);
1791         set_bit(TTY_IO_ERROR, &tty->flags);
1792         spin_unlock_irqrestore(&stli_lock, flags);
1793
1794         tty_port_hangup(port);
1795 }
1796
1797 /*****************************************************************************/
1798
1799 /*
1800  *      Flush characters from the lower buffer. We may not have user context
1801  *      so we cannot sleep waiting for it to complete. Also we need to check
1802  *      if there is chars for this port in the TX cook buffer, and flush them
1803  *      as well.
1804  */
1805
1806 static void stli_flushbuffer(struct tty_struct *tty)
1807 {
1808         struct stliport *portp;
1809         struct stlibrd *brdp;
1810         unsigned long ftype, flags;
1811
1812         portp = tty->driver_data;
1813         if (portp == NULL)
1814                 return;
1815         if (portp->brdnr >= stli_nrbrds)
1816                 return;
1817         brdp = stli_brds[portp->brdnr];
1818         if (brdp == NULL)
1819                 return;
1820
1821         spin_lock_irqsave(&brd_lock, flags);
1822         if (tty == stli_txcooktty) {
1823                 stli_txcooktty = NULL;
1824                 stli_txcooksize = 0;
1825                 stli_txcookrealsize = 0;
1826         }
1827         if (test_bit(ST_CMDING, &portp->state)) {
1828                 set_bit(ST_DOFLUSHTX, &portp->state);
1829         } else {
1830                 ftype = FLUSHTX;
1831                 if (test_bit(ST_DOFLUSHRX, &portp->state)) {
1832                         ftype |= FLUSHRX;
1833                         clear_bit(ST_DOFLUSHRX, &portp->state);
1834                 }
1835                 __stli_sendcmd(brdp, portp, A_FLUSH, &ftype, sizeof(u32), 0);
1836         }
1837         spin_unlock_irqrestore(&brd_lock, flags);
1838         tty_wakeup(tty);
1839 }
1840
1841 /*****************************************************************************/
1842
1843 static int stli_breakctl(struct tty_struct *tty, int state)
1844 {
1845         struct stlibrd  *brdp;
1846         struct stliport *portp;
1847         long            arg;
1848
1849         portp = tty->driver_data;
1850         if (portp == NULL)
1851                 return -EINVAL;
1852         if (portp->brdnr >= stli_nrbrds)
1853                 return -EINVAL;
1854         brdp = stli_brds[portp->brdnr];
1855         if (brdp == NULL)
1856                 return -EINVAL;
1857
1858         arg = (state == -1) ? BREAKON : BREAKOFF;
1859         stli_cmdwait(brdp, portp, A_BREAK, &arg, sizeof(long), 0);
1860         return 0;
1861 }
1862
1863 /*****************************************************************************/
1864
1865 static void stli_waituntilsent(struct tty_struct *tty, int timeout)
1866 {
1867         struct stliport *portp;
1868         unsigned long tend;
1869
1870         portp = tty->driver_data;
1871         if (portp == NULL)
1872                 return;
1873
1874         if (timeout == 0)
1875                 timeout = HZ;
1876         tend = jiffies + timeout;
1877
1878         while (test_bit(ST_TXBUSY, &portp->state)) {
1879                 if (signal_pending(current))
1880                         break;
1881                 msleep_interruptible(20);
1882                 if (time_after_eq(jiffies, tend))
1883                         break;
1884         }
1885 }
1886
1887 /*****************************************************************************/
1888
1889 static void stli_sendxchar(struct tty_struct *tty, char ch)
1890 {
1891         struct stlibrd  *brdp;
1892         struct stliport *portp;
1893         asyctrl_t       actrl;
1894
1895         portp = tty->driver_data;
1896         if (portp == NULL)
1897                 return;
1898         if (portp->brdnr >= stli_nrbrds)
1899                 return;
1900         brdp = stli_brds[portp->brdnr];
1901         if (brdp == NULL)
1902                 return;
1903
1904         memset(&actrl, 0, sizeof(asyctrl_t));
1905         if (ch == STOP_CHAR(tty)) {
1906                 actrl.rxctrl = CT_STOPFLOW;
1907         } else if (ch == START_CHAR(tty)) {
1908                 actrl.rxctrl = CT_STARTFLOW;
1909         } else {
1910                 actrl.txctrl = CT_SENDCHR;
1911                 actrl.tximdch = ch;
1912         }
1913         stli_cmdwait(brdp, portp, A_PORTCTRL, &actrl, sizeof(asyctrl_t), 0);
1914 }
1915
1916 /*****************************************************************************/
1917
1918 #define MAXLINE         80
1919
1920 /*
1921  *      Format info for a specified port. The line is deliberately limited
1922  *      to 80 characters. (If it is too long it will be truncated, if too
1923  *      short then padded with spaces).
1924  */
1925
1926 static int stli_portinfo(struct stlibrd *brdp, struct stliport *portp, int portnr, char *pos)
1927 {
1928         char *sp, *uart;
1929         int rc, cnt;
1930
1931         rc = stli_portcmdstats(NULL, portp);
1932
1933         uart = "UNKNOWN";
1934         if (brdp->state & BST_STARTED) {
1935                 switch (stli_comstats.hwid) {
1936                 case 0: uart = "2681"; break;
1937                 case 1: uart = "SC26198"; break;
1938                 default:uart = "CD1400"; break;
1939                 }
1940         }
1941
1942         sp = pos;
1943         sp += sprintf(sp, "%d: uart:%s ", portnr, uart);
1944
1945         if ((brdp->state & BST_STARTED) && (rc >= 0)) {
1946                 sp += sprintf(sp, "tx:%d rx:%d", (int) stli_comstats.txtotal,
1947                         (int) stli_comstats.rxtotal);
1948
1949                 if (stli_comstats.rxframing)
1950                         sp += sprintf(sp, " fe:%d",
1951                                 (int) stli_comstats.rxframing);
1952                 if (stli_comstats.rxparity)
1953                         sp += sprintf(sp, " pe:%d",
1954                                 (int) stli_comstats.rxparity);
1955                 if (stli_comstats.rxbreaks)
1956                         sp += sprintf(sp, " brk:%d",
1957                                 (int) stli_comstats.rxbreaks);
1958                 if (stli_comstats.rxoverrun)
1959                         sp += sprintf(sp, " oe:%d",
1960                                 (int) stli_comstats.rxoverrun);
1961
1962                 cnt = sprintf(sp, "%s%s%s%s%s ",
1963                         (stli_comstats.signals & TIOCM_RTS) ? "|RTS" : "",
1964                         (stli_comstats.signals & TIOCM_CTS) ? "|CTS" : "",
1965                         (stli_comstats.signals & TIOCM_DTR) ? "|DTR" : "",
1966                         (stli_comstats.signals & TIOCM_CD) ? "|DCD" : "",
1967                         (stli_comstats.signals & TIOCM_DSR) ? "|DSR" : "");
1968                 *sp = ' ';
1969                 sp += cnt;
1970         }
1971
1972         for (cnt = (sp - pos); (cnt < (MAXLINE - 1)); cnt++)
1973                 *sp++ = ' ';
1974         if (cnt >= MAXLINE)
1975                 pos[(MAXLINE - 2)] = '+';
1976         pos[(MAXLINE - 1)] = '\n';
1977
1978         return(MAXLINE);
1979 }
1980
1981 /*****************************************************************************/
1982
1983 /*
1984  *      Port info, read from the /proc file system.
1985  */
1986
1987 static int stli_readproc(char *page, char **start, off_t off, int count, int *eof, void *data)
1988 {
1989         struct stlibrd *brdp;
1990         struct stliport *portp;
1991         unsigned int brdnr, portnr, totalport;
1992         int curoff, maxoff;
1993         char *pos;
1994
1995         pos = page;
1996         totalport = 0;
1997         curoff = 0;
1998
1999         if (off == 0) {
2000                 pos += sprintf(pos, "%s: version %s", stli_drvtitle,
2001                         stli_drvversion);
2002                 while (pos < (page + MAXLINE - 1))
2003                         *pos++ = ' ';
2004                 *pos++ = '\n';
2005         }
2006         curoff =  MAXLINE;
2007
2008 /*
2009  *      We scan through for each board, panel and port. The offset is
2010  *      calculated on the fly, and irrelevant ports are skipped.
2011  */
2012         for (brdnr = 0; (brdnr < stli_nrbrds); brdnr++) {
2013                 brdp = stli_brds[brdnr];
2014                 if (brdp == NULL)
2015                         continue;
2016                 if (brdp->state == 0)
2017                         continue;
2018
2019                 maxoff = curoff + (brdp->nrports * MAXLINE);
2020                 if (off >= maxoff) {
2021                         curoff = maxoff;
2022                         continue;
2023                 }
2024
2025                 totalport = brdnr * STL_MAXPORTS;
2026                 for (portnr = 0; (portnr < brdp->nrports); portnr++,
2027                     totalport++) {
2028                         portp = brdp->ports[portnr];
2029                         if (portp == NULL)
2030                                 continue;
2031                         if (off >= (curoff += MAXLINE))
2032                                 continue;
2033                         if ((pos - page + MAXLINE) > count)
2034                                 goto stli_readdone;
2035                         pos += stli_portinfo(brdp, portp, totalport, pos);
2036                 }
2037         }
2038
2039         *eof = 1;
2040
2041 stli_readdone:
2042         *start = page;
2043         return(pos - page);
2044 }
2045
2046 /*****************************************************************************/
2047
2048 /*
2049  *      Generic send command routine. This will send a message to the slave,
2050  *      of the specified type with the specified argument. Must be very
2051  *      careful of data that will be copied out from shared memory -
2052  *      containing command results. The command completion is all done from
2053  *      a poll routine that does not have user context. Therefore you cannot
2054  *      copy back directly into user space, or to the kernel stack of a
2055  *      process. This routine does not sleep, so can be called from anywhere.
2056  *
2057  *      The caller must hold the brd_lock (see also stli_sendcmd the usual
2058  *      entry point)
2059  */
2060
2061 static void __stli_sendcmd(struct stlibrd *brdp, struct stliport *portp, unsigned long cmd, void *arg, int size, int copyback)
2062 {
2063         cdkhdr_t __iomem *hdrp;
2064         cdkctrl_t __iomem *cp;
2065         unsigned char __iomem *bits;
2066
2067         if (test_bit(ST_CMDING, &portp->state)) {
2068                 printk(KERN_ERR "STALLION: command already busy, cmd=%x!\n",
2069                                 (int) cmd);
2070                 return;
2071         }
2072
2073         EBRDENABLE(brdp);
2074         cp = &((cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr))->ctrl;
2075         if (size > 0) {
2076                 memcpy_toio((void __iomem *) &(cp->args[0]), arg, size);
2077                 if (copyback) {
2078                         portp->argp = arg;
2079                         portp->argsize = size;
2080                 }
2081         }
2082         writel(0, &cp->status);
2083         writel(cmd, &cp->cmd);
2084         hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
2085         bits = ((unsigned char __iomem *) hdrp) + brdp->slaveoffset +
2086                 portp->portidx;
2087         writeb(readb(bits) | portp->portbit, bits);
2088         set_bit(ST_CMDING, &portp->state);
2089         EBRDDISABLE(brdp);
2090 }
2091
2092 static void stli_sendcmd(struct stlibrd *brdp, struct stliport *portp, unsigned long cmd, void *arg, int size, int copyback)
2093 {
2094         unsigned long           flags;
2095
2096         spin_lock_irqsave(&brd_lock, flags);
2097         __stli_sendcmd(brdp, portp, cmd, arg, size, copyback);
2098         spin_unlock_irqrestore(&brd_lock, flags);
2099 }
2100
2101 /*****************************************************************************/
2102
2103 /*
2104  *      Read data from shared memory. This assumes that the shared memory
2105  *      is enabled and that interrupts are off. Basically we just empty out
2106  *      the shared memory buffer into the tty buffer. Must be careful to
2107  *      handle the case where we fill up the tty buffer, but still have
2108  *      more chars to unload.
2109  */
2110
2111 static void stli_read(struct stlibrd *brdp, struct stliport *portp)
2112 {
2113         cdkasyrq_t __iomem *rp;
2114         char __iomem *shbuf;
2115         struct tty_struct       *tty;
2116         unsigned int head, tail, size;
2117         unsigned int len, stlen;
2118
2119         if (test_bit(ST_RXSTOP, &portp->state))
2120                 return;
2121         tty = tty_port_tty_get(&portp->port);
2122         if (tty == NULL)
2123                 return;
2124
2125         rp = &((cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr))->rxq;
2126         head = (unsigned int) readw(&rp->head);
2127         if (head != ((unsigned int) readw(&rp->head)))
2128                 head = (unsigned int) readw(&rp->head);
2129         tail = (unsigned int) readw(&rp->tail);
2130         size = portp->rxsize;
2131         if (head >= tail) {
2132                 len = head - tail;
2133                 stlen = len;
2134         } else {
2135                 len = size - (tail - head);
2136                 stlen = size - tail;
2137         }
2138
2139         len = tty_buffer_request_room(tty, len);
2140
2141         shbuf = (char __iomem *) EBRDGETMEMPTR(brdp, portp->rxoffset);
2142
2143         while (len > 0) {
2144                 unsigned char *cptr;
2145
2146                 stlen = min(len, stlen);
2147                 tty_prepare_flip_string(tty, &cptr, stlen);
2148                 memcpy_fromio(cptr, shbuf + tail, stlen);
2149                 len -= stlen;
2150                 tail += stlen;
2151                 if (tail >= size) {
2152                         tail = 0;
2153                         stlen = head;
2154                 }
2155         }
2156         rp = &((cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr))->rxq;
2157         writew(tail, &rp->tail);
2158
2159         if (head != tail)
2160                 set_bit(ST_RXING, &portp->state);
2161
2162         tty_schedule_flip(tty);
2163         tty_kref_put(tty);
2164 }
2165
2166 /*****************************************************************************/
2167
2168 /*
2169  *      Set up and carry out any delayed commands. There is only a small set
2170  *      of slave commands that can be done "off-level". So it is not too
2171  *      difficult to deal with them here.
2172  */
2173
2174 static void stli_dodelaycmd(struct stliport *portp, cdkctrl_t __iomem *cp)
2175 {
2176         int cmd;
2177
2178         if (test_bit(ST_DOSIGS, &portp->state)) {
2179                 if (test_bit(ST_DOFLUSHTX, &portp->state) &&
2180                     test_bit(ST_DOFLUSHRX, &portp->state))
2181                         cmd = A_SETSIGNALSF;
2182                 else if (test_bit(ST_DOFLUSHTX, &portp->state))
2183                         cmd = A_SETSIGNALSFTX;
2184                 else if (test_bit(ST_DOFLUSHRX, &portp->state))
2185                         cmd = A_SETSIGNALSFRX;
2186                 else
2187                         cmd = A_SETSIGNALS;
2188                 clear_bit(ST_DOFLUSHTX, &portp->state);
2189                 clear_bit(ST_DOFLUSHRX, &portp->state);
2190                 clear_bit(ST_DOSIGS, &portp->state);
2191                 memcpy_toio((void __iomem *) &(cp->args[0]), (void *) &portp->asig,
2192                         sizeof(asysigs_t));
2193                 writel(0, &cp->status);
2194                 writel(cmd, &cp->cmd);
2195                 set_bit(ST_CMDING, &portp->state);
2196         } else if (test_bit(ST_DOFLUSHTX, &portp->state) ||
2197             test_bit(ST_DOFLUSHRX, &portp->state)) {
2198                 cmd = ((test_bit(ST_DOFLUSHTX, &portp->state)) ? FLUSHTX : 0);
2199                 cmd |= ((test_bit(ST_DOFLUSHRX, &portp->state)) ? FLUSHRX : 0);
2200                 clear_bit(ST_DOFLUSHTX, &portp->state);
2201                 clear_bit(ST_DOFLUSHRX, &portp->state);
2202                 memcpy_toio((void __iomem *) &(cp->args[0]), (void *) &cmd, sizeof(int));
2203                 writel(0, &cp->status);
2204                 writel(A_FLUSH, &cp->cmd);
2205                 set_bit(ST_CMDING, &portp->state);
2206         }
2207 }
2208
2209 /*****************************************************************************/
2210
2211 /*
2212  *      Host command service checking. This handles commands or messages
2213  *      coming from the slave to the host. Must have board shared memory
2214  *      enabled and interrupts off when called. Notice that by servicing the
2215  *      read data last we don't need to change the shared memory pointer
2216  *      during processing (which is a slow IO operation).
2217  *      Return value indicates if this port is still awaiting actions from
2218  *      the slave (like open, command, or even TX data being sent). If 0
2219  *      then port is still busy, otherwise no longer busy.
2220  */
2221
2222 static int stli_hostcmd(struct stlibrd *brdp, struct stliport *portp)
2223 {
2224         cdkasy_t __iomem *ap;
2225         cdkctrl_t __iomem *cp;
2226         struct tty_struct *tty;
2227         asynotify_t nt;
2228         unsigned long oldsigs;
2229         int rc, donerx;
2230
2231         ap = (cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr);
2232         cp = &ap->ctrl;
2233
2234 /*
2235  *      Check if we are waiting for an open completion message.
2236  */
2237         if (test_bit(ST_OPENING, &portp->state)) {
2238                 rc = readl(&cp->openarg);
2239                 if (readb(&cp->open) == 0 && rc != 0) {
2240                         if (rc > 0)
2241                                 rc--;
2242                         writel(0, &cp->openarg);
2243                         portp->rc = rc;
2244                         clear_bit(ST_OPENING, &portp->state);
2245                         wake_up_interruptible(&portp->raw_wait);
2246                 }
2247         }
2248
2249 /*
2250  *      Check if we are waiting for a close completion message.
2251  */
2252         if (test_bit(ST_CLOSING, &portp->state)) {
2253                 rc = (int) readl(&cp->closearg);
2254                 if (readb(&cp->close) == 0 && rc != 0) {
2255                         if (rc > 0)
2256                                 rc--;
2257                         writel(0, &cp->closearg);
2258                         portp->rc = rc;
2259                         clear_bit(ST_CLOSING, &portp->state);
2260                         wake_up_interruptible(&portp->raw_wait);
2261                 }
2262         }
2263
2264 /*
2265  *      Check if we are waiting for a command completion message. We may
2266  *      need to copy out the command results associated with this command.
2267  */
2268         if (test_bit(ST_CMDING, &portp->state)) {
2269                 rc = readl(&cp->status);
2270                 if (readl(&cp->cmd) == 0 && rc != 0) {
2271                         if (rc > 0)
2272                                 rc--;
2273                         if (portp->argp != NULL) {
2274                                 memcpy_fromio(portp->argp, (void __iomem *) &(cp->args[0]),
2275                                         portp->argsize);
2276                                 portp->argp = NULL;
2277                         }
2278                         writel(0, &cp->status);
2279                         portp->rc = rc;
2280                         clear_bit(ST_CMDING, &portp->state);
2281                         stli_dodelaycmd(portp, cp);
2282                         wake_up_interruptible(&portp->raw_wait);
2283                 }
2284         }
2285
2286 /*
2287  *      Check for any notification messages ready. This includes lots of
2288  *      different types of events - RX chars ready, RX break received,
2289  *      TX data low or empty in the slave, modem signals changed state.
2290  */
2291         donerx = 0;
2292
2293         if (ap->notify) {
2294                 nt = ap->changed;
2295                 ap->notify = 0;
2296                 tty = tty_port_tty_get(&portp->port);
2297
2298                 if (nt.signal & SG_DCD) {
2299                         oldsigs = portp->sigs;
2300                         portp->sigs = stli_mktiocm(nt.sigvalue);
2301                         clear_bit(ST_GETSIGS, &portp->state);
2302                         if ((portp->sigs & TIOCM_CD) &&
2303                             ((oldsigs & TIOCM_CD) == 0))
2304                                 wake_up_interruptible(&portp->port.open_wait);
2305                         if ((oldsigs & TIOCM_CD) &&
2306                             ((portp->sigs & TIOCM_CD) == 0)) {
2307                                 if (portp->port.flags & ASYNC_CHECK_CD) {
2308                                         if (tty)
2309                                                 tty_hangup(tty);
2310                                 }
2311                         }
2312                 }
2313
2314                 if (nt.data & DT_TXEMPTY)
2315                         clear_bit(ST_TXBUSY, &portp->state);
2316                 if (nt.data & (DT_TXEMPTY | DT_TXLOW)) {
2317                         if (tty != NULL) {
2318                                 tty_wakeup(tty);
2319                                 EBRDENABLE(brdp);
2320                         }
2321                 }
2322
2323                 if ((nt.data & DT_RXBREAK) && (portp->rxmarkmsk & BRKINT)) {
2324                         if (tty != NULL) {
2325                                 tty_insert_flip_char(tty, 0, TTY_BREAK);
2326                                 if (portp->port.flags & ASYNC_SAK) {
2327                                         do_SAK(tty);
2328                                         EBRDENABLE(brdp);
2329                                 }
2330                                 tty_schedule_flip(tty);
2331                         }
2332                 }
2333                 tty_kref_put(tty);
2334
2335                 if (nt.data & DT_RXBUSY) {
2336                         donerx++;
2337                         stli_read(brdp, portp);
2338                 }
2339         }
2340
2341 /*
2342  *      It might seem odd that we are checking for more RX chars here.
2343  *      But, we need to handle the case where the tty buffer was previously
2344  *      filled, but we had more characters to pass up. The slave will not
2345  *      send any more RX notify messages until the RX buffer has been emptied.
2346  *      But it will leave the service bits on (since the buffer is not empty).
2347  *      So from here we can try to process more RX chars.
2348  */
2349         if ((!donerx) && test_bit(ST_RXING, &portp->state)) {
2350                 clear_bit(ST_RXING, &portp->state);
2351                 stli_read(brdp, portp);
2352         }
2353
2354         return((test_bit(ST_OPENING, &portp->state) ||
2355                 test_bit(ST_CLOSING, &portp->state) ||
2356                 test_bit(ST_CMDING, &portp->state) ||
2357                 test_bit(ST_TXBUSY, &portp->state) ||
2358                 test_bit(ST_RXING, &portp->state)) ? 0 : 1);
2359 }
2360
2361 /*****************************************************************************/
2362
2363 /*
2364  *      Service all ports on a particular board. Assumes that the boards
2365  *      shared memory is enabled, and that the page pointer is pointed
2366  *      at the cdk header structure.
2367  */
2368
2369 static void stli_brdpoll(struct stlibrd *brdp, cdkhdr_t __iomem *hdrp)
2370 {
2371         struct stliport *portp;
2372         unsigned char hostbits[(STL_MAXCHANS / 8) + 1];
2373         unsigned char slavebits[(STL_MAXCHANS / 8) + 1];
2374         unsigned char __iomem *slavep;
2375         int bitpos, bitat, bitsize;
2376         int channr, nrdevs, slavebitchange;
2377
2378         bitsize = brdp->bitsize;
2379         nrdevs = brdp->nrdevs;
2380
2381 /*
2382  *      Check if slave wants any service. Basically we try to do as
2383  *      little work as possible here. There are 2 levels of service
2384  *      bits. So if there is nothing to do we bail early. We check
2385  *      8 service bits at a time in the inner loop, so we can bypass
2386  *      the lot if none of them want service.
2387  */
2388         memcpy_fromio(&hostbits[0], (((unsigned char __iomem *) hdrp) + brdp->hostoffset),
2389                 bitsize);
2390
2391         memset(&slavebits[0], 0, bitsize);
2392         slavebitchange = 0;
2393
2394         for (bitpos = 0; (bitpos < bitsize); bitpos++) {
2395                 if (hostbits[bitpos] == 0)
2396                         continue;
2397                 channr = bitpos * 8;
2398                 for (bitat = 0x1; (channr < nrdevs); channr++, bitat <<= 1) {
2399                         if (hostbits[bitpos] & bitat) {
2400                                 portp = brdp->ports[(channr - 1)];
2401                                 if (stli_hostcmd(brdp, portp)) {
2402                                         slavebitchange++;
2403                                         slavebits[bitpos] |= bitat;
2404                                 }
2405                         }
2406                 }
2407         }
2408
2409 /*
2410  *      If any of the ports are no longer busy then update them in the
2411  *      slave request bits. We need to do this after, since a host port
2412  *      service may initiate more slave requests.
2413  */
2414         if (slavebitchange) {
2415                 hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
2416                 slavep = ((unsigned char __iomem *) hdrp) + brdp->slaveoffset;
2417                 for (bitpos = 0; (bitpos < bitsize); bitpos++) {
2418                         if (readb(slavebits + bitpos))
2419                                 writeb(readb(slavep + bitpos) & ~slavebits[bitpos], slavebits + bitpos);
2420                 }
2421         }
2422 }
2423
2424 /*****************************************************************************/
2425
2426 /*
2427  *      Driver poll routine. This routine polls the boards in use and passes
2428  *      messages back up to host when necessary. This is actually very
2429  *      CPU efficient, since we will always have the kernel poll clock, it
2430  *      adds only a few cycles when idle (since board service can be
2431  *      determined very easily), but when loaded generates no interrupts
2432  *      (with their expensive associated context change).
2433  */
2434
2435 static void stli_poll(unsigned long arg)
2436 {
2437         cdkhdr_t __iomem *hdrp;
2438         struct stlibrd *brdp;
2439         unsigned int brdnr;
2440
2441         mod_timer(&stli_timerlist, STLI_TIMEOUT);
2442
2443 /*
2444  *      Check each board and do any servicing required.
2445  */
2446         for (brdnr = 0; (brdnr < stli_nrbrds); brdnr++) {
2447                 brdp = stli_brds[brdnr];
2448                 if (brdp == NULL)
2449                         continue;
2450                 if ((brdp->state & BST_STARTED) == 0)
2451                         continue;
2452
2453                 spin_lock(&brd_lock);
2454                 EBRDENABLE(brdp);
2455                 hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
2456                 if (readb(&hdrp->hostreq))
2457                         stli_brdpoll(brdp, hdrp);
2458                 EBRDDISABLE(brdp);
2459                 spin_unlock(&brd_lock);
2460         }
2461 }
2462
2463 /*****************************************************************************/
2464
2465 /*
2466  *      Translate the termios settings into the port setting structure of
2467  *      the slave.
2468  */
2469
2470 static void stli_mkasyport(struct tty_struct *tty, struct stliport *portp,
2471                                 asyport_t *pp, struct ktermios *tiosp)
2472 {
2473         memset(pp, 0, sizeof(asyport_t));
2474
2475 /*
2476  *      Start of by setting the baud, char size, parity and stop bit info.
2477  */
2478         pp->baudout = tty_get_baud_rate(tty);
2479         if ((tiosp->c_cflag & CBAUD) == B38400) {
2480                 if ((portp->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
2481                         pp->baudout = 57600;
2482                 else if ((portp->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
2483                         pp->baudout = 115200;
2484                 else if ((portp->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
2485                         pp->baudout = 230400;
2486                 else if ((portp->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
2487                         pp->baudout = 460800;
2488                 else if ((portp->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST)
2489                         pp->baudout = (portp->baud_base / portp->custom_divisor);
2490         }
2491         if (pp->baudout > STL_MAXBAUD)
2492                 pp->baudout = STL_MAXBAUD;
2493         pp->baudin = pp->baudout;
2494
2495         switch (tiosp->c_cflag & CSIZE) {
2496         case CS5:
2497                 pp->csize = 5;
2498                 break;
2499         case CS6:
2500                 pp->csize = 6;
2501                 break;
2502         case CS7:
2503                 pp->csize = 7;
2504                 break;
2505         default:
2506                 pp->csize = 8;
2507                 break;
2508         }
2509
2510         if (tiosp->c_cflag & CSTOPB)
2511                 pp->stopbs = PT_STOP2;
2512         else
2513                 pp->stopbs = PT_STOP1;
2514
2515         if (tiosp->c_cflag & PARENB) {
2516                 if (tiosp->c_cflag & PARODD)
2517                         pp->parity = PT_ODDPARITY;
2518                 else
2519                         pp->parity = PT_EVENPARITY;
2520         } else {
2521                 pp->parity = PT_NOPARITY;
2522         }
2523
2524 /*
2525  *      Set up any flow control options enabled.
2526  */
2527         if (tiosp->c_iflag & IXON) {
2528                 pp->flow |= F_IXON;
2529                 if (tiosp->c_iflag & IXANY)
2530                         pp->flow |= F_IXANY;
2531         }
2532         if (tiosp->c_cflag & CRTSCTS)
2533                 pp->flow |= (F_RTSFLOW | F_CTSFLOW);
2534
2535         pp->startin = tiosp->c_cc[VSTART];
2536         pp->stopin = tiosp->c_cc[VSTOP];
2537         pp->startout = tiosp->c_cc[VSTART];
2538         pp->stopout = tiosp->c_cc[VSTOP];
2539
2540 /*
2541  *      Set up the RX char marking mask with those RX error types we must
2542  *      catch. We can get the slave to help us out a little here, it will
2543  *      ignore parity errors and breaks for us, and mark parity errors in
2544  *      the data stream.
2545  */
2546         if (tiosp->c_iflag & IGNPAR)
2547                 pp->iflag |= FI_IGNRXERRS;
2548         if (tiosp->c_iflag & IGNBRK)
2549                 pp->iflag |= FI_IGNBREAK;
2550
2551         portp->rxmarkmsk = 0;
2552         if (tiosp->c_iflag & (INPCK | PARMRK))
2553                 pp->iflag |= FI_1MARKRXERRS;
2554         if (tiosp->c_iflag & BRKINT)
2555                 portp->rxmarkmsk |= BRKINT;
2556
2557 /*
2558  *      Set up clocal processing as required.
2559  */
2560         if (tiosp->c_cflag & CLOCAL)
2561                 portp->port.flags &= ~ASYNC_CHECK_CD;
2562         else
2563                 portp->port.flags |= ASYNC_CHECK_CD;
2564
2565 /*
2566  *      Transfer any persistent flags into the asyport structure.
2567  */
2568         pp->pflag = (portp->pflag & 0xffff);
2569         pp->vmin = (portp->pflag & P_RXIMIN) ? 1 : 0;
2570         pp->vtime = (portp->pflag & P_RXITIME) ? 1 : 0;
2571         pp->cc[1] = (portp->pflag & P_RXTHOLD) ? 1 : 0;
2572 }
2573
2574 /*****************************************************************************/
2575
2576 /*
2577  *      Construct a slave signals structure for setting the DTR and RTS
2578  *      signals as specified.
2579  */
2580
2581 static void stli_mkasysigs(asysigs_t *sp, int dtr, int rts)
2582 {
2583         memset(sp, 0, sizeof(asysigs_t));
2584         if (dtr >= 0) {
2585                 sp->signal |= SG_DTR;
2586                 sp->sigvalue |= ((dtr > 0) ? SG_DTR : 0);
2587         }
2588         if (rts >= 0) {
2589                 sp->signal |= SG_RTS;
2590                 sp->sigvalue |= ((rts > 0) ? SG_RTS : 0);
2591         }
2592 }
2593
2594 /*****************************************************************************/
2595
2596 /*
2597  *      Convert the signals returned from the slave into a local TIOCM type
2598  *      signals value. We keep them locally in TIOCM format.
2599  */
2600
2601 static long stli_mktiocm(unsigned long sigvalue)
2602 {
2603         long    tiocm = 0;
2604         tiocm |= ((sigvalue & SG_DCD) ? TIOCM_CD : 0);
2605         tiocm |= ((sigvalue & SG_CTS) ? TIOCM_CTS : 0);
2606         tiocm |= ((sigvalue & SG_RI) ? TIOCM_RI : 0);
2607         tiocm |= ((sigvalue & SG_DSR) ? TIOCM_DSR : 0);
2608         tiocm |= ((sigvalue & SG_DTR) ? TIOCM_DTR : 0);
2609         tiocm |= ((sigvalue & SG_RTS) ? TIOCM_RTS : 0);
2610         return(tiocm);
2611 }
2612
2613 /*****************************************************************************/
2614
2615 /*
2616  *      All panels and ports actually attached have been worked out. All
2617  *      we need to do here is set up the appropriate per port data structures.
2618  */
2619
2620 static int stli_initports(struct stlibrd *brdp)
2621 {
2622         struct stliport *portp;
2623         unsigned int i, panelnr, panelport;
2624
2625         for (i = 0, panelnr = 0, panelport = 0; (i < brdp->nrports); i++) {
2626                 portp = kzalloc(sizeof(struct stliport), GFP_KERNEL);
2627                 if (!portp) {
2628                         printk("STALLION: failed to allocate port structure\n");
2629                         continue;
2630                 }
2631                 tty_port_init(&portp->port);
2632                 portp->port.ops = &stli_port_ops;
2633                 portp->magic = STLI_PORTMAGIC;
2634                 portp->portnr = i;
2635                 portp->brdnr = brdp->brdnr;
2636                 portp->panelnr = panelnr;
2637                 portp->baud_base = STL_BAUDBASE;
2638                 portp->close_delay = STL_CLOSEDELAY;
2639                 portp->closing_wait = 30 * HZ;
2640                 init_waitqueue_head(&portp->port.open_wait);
2641                 init_waitqueue_head(&portp->port.close_wait);
2642                 init_waitqueue_head(&portp->raw_wait);
2643                 panelport++;
2644                 if (panelport >= brdp->panels[panelnr]) {
2645                         panelport = 0;
2646                         panelnr++;
2647                 }
2648                 brdp->ports[i] = portp;
2649         }
2650
2651         return 0;
2652 }
2653
2654 /*****************************************************************************/
2655
2656 /*
2657  *      All the following routines are board specific hardware operations.
2658  */
2659
2660 static void stli_ecpinit(struct stlibrd *brdp)
2661 {
2662         unsigned long   memconf;
2663
2664         outb(ECP_ATSTOP, (brdp->iobase + ECP_ATCONFR));
2665         udelay(10);
2666         outb(ECP_ATDISABLE, (brdp->iobase + ECP_ATCONFR));
2667         udelay(100);
2668
2669         memconf = (brdp->memaddr & ECP_ATADDRMASK) >> ECP_ATADDRSHFT;
2670         outb(memconf, (brdp->iobase + ECP_ATMEMAR));
2671 }
2672
2673 /*****************************************************************************/
2674
2675 static void stli_ecpenable(struct stlibrd *brdp)
2676 {       
2677         outb(ECP_ATENABLE, (brdp->iobase + ECP_ATCONFR));
2678 }
2679
2680 /*****************************************************************************/
2681
2682 static void stli_ecpdisable(struct stlibrd *brdp)
2683 {       
2684         outb(ECP_ATDISABLE, (brdp->iobase + ECP_ATCONFR));
2685 }
2686
2687 /*****************************************************************************/
2688
2689 static void __iomem *stli_ecpgetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
2690 {       
2691         void __iomem *ptr;
2692         unsigned char val;
2693
2694         if (offset > brdp->memsize) {
2695                 printk(KERN_ERR "STALLION: shared memory pointer=%x out of "
2696                                 "range at line=%d(%d), brd=%d\n",
2697                         (int) offset, line, __LINE__, brdp->brdnr);
2698                 ptr = NULL;
2699                 val = 0;
2700         } else {
2701                 ptr = brdp->membase + (offset % ECP_ATPAGESIZE);
2702                 val = (unsigned char) (offset / ECP_ATPAGESIZE);
2703         }
2704         outb(val, (brdp->iobase + ECP_ATMEMPR));
2705         return(ptr);
2706 }
2707
2708 /*****************************************************************************/
2709
2710 static void stli_ecpreset(struct stlibrd *brdp)
2711 {       
2712         outb(ECP_ATSTOP, (brdp->iobase + ECP_ATCONFR));
2713         udelay(10);
2714         outb(ECP_ATDISABLE, (brdp->iobase + ECP_ATCONFR));
2715         udelay(500);
2716 }
2717
2718 /*****************************************************************************/
2719
2720 static void stli_ecpintr(struct stlibrd *brdp)
2721 {       
2722         outb(0x1, brdp->iobase);
2723 }
2724
2725 /*****************************************************************************/
2726
2727 /*
2728  *      The following set of functions act on ECP EISA boards.
2729  */
2730
2731 static void stli_ecpeiinit(struct stlibrd *brdp)
2732 {
2733         unsigned long   memconf;
2734
2735         outb(0x1, (brdp->iobase + ECP_EIBRDENAB));
2736         outb(ECP_EISTOP, (brdp->iobase + ECP_EICONFR));
2737         udelay(10);
2738         outb(ECP_EIDISABLE, (brdp->iobase + ECP_EICONFR));
2739         udelay(500);
2740
2741         memconf = (brdp->memaddr & ECP_EIADDRMASKL) >> ECP_EIADDRSHFTL;
2742         outb(memconf, (brdp->iobase + ECP_EIMEMARL));
2743         memconf = (brdp->memaddr & ECP_EIADDRMASKH) >> ECP_EIADDRSHFTH;
2744         outb(memconf, (brdp->iobase + ECP_EIMEMARH));
2745 }
2746
2747 /*****************************************************************************/
2748
2749 static void stli_ecpeienable(struct stlibrd *brdp)
2750 {       
2751         outb(ECP_EIENABLE, (brdp->iobase + ECP_EICONFR));
2752 }
2753
2754 /*****************************************************************************/
2755
2756 static void stli_ecpeidisable(struct stlibrd *brdp)
2757 {       
2758         outb(ECP_EIDISABLE, (brdp->iobase + ECP_EICONFR));
2759 }
2760
2761 /*****************************************************************************/
2762
2763 static void __iomem *stli_ecpeigetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
2764 {       
2765         void __iomem *ptr;
2766         unsigned char   val;
2767
2768         if (offset > brdp->memsize) {
2769                 printk(KERN_ERR "STALLION: shared memory pointer=%x out of "
2770                                 "range at line=%d(%d), brd=%d\n",
2771                         (int) offset, line, __LINE__, brdp->brdnr);
2772                 ptr = NULL;
2773                 val = 0;
2774         } else {
2775                 ptr = brdp->membase + (offset % ECP_EIPAGESIZE);
2776                 if (offset < ECP_EIPAGESIZE)
2777                         val = ECP_EIENABLE;
2778                 else
2779                         val = ECP_EIENABLE | 0x40;
2780         }
2781         outb(val, (brdp->iobase + ECP_EICONFR));
2782         return(ptr);
2783 }
2784
2785 /*****************************************************************************/
2786
2787 static void stli_ecpeireset(struct stlibrd *brdp)
2788 {       
2789         outb(ECP_EISTOP, (brdp->iobase + ECP_EICONFR));
2790         udelay(10);
2791         outb(ECP_EIDISABLE, (brdp->iobase + ECP_EICONFR));
2792         udelay(500);
2793 }
2794
2795 /*****************************************************************************/
2796
2797 /*
2798  *      The following set of functions act on ECP MCA boards.
2799  */
2800
2801 static void stli_ecpmcenable(struct stlibrd *brdp)
2802 {       
2803         outb(ECP_MCENABLE, (brdp->iobase + ECP_MCCONFR));
2804 }
2805
2806 /*****************************************************************************/
2807
2808 static void stli_ecpmcdisable(struct stlibrd *brdp)
2809 {       
2810         outb(ECP_MCDISABLE, (brdp->iobase + ECP_MCCONFR));
2811 }
2812
2813 /*****************************************************************************/
2814
2815 static void __iomem *stli_ecpmcgetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
2816 {       
2817         void __iomem *ptr;
2818         unsigned char val;
2819
2820         if (offset > brdp->memsize) {
2821                 printk(KERN_ERR "STALLION: shared memory pointer=%x out of "
2822                                 "range at line=%d(%d), brd=%d\n",
2823                         (int) offset, line, __LINE__, brdp->brdnr);
2824                 ptr = NULL;
2825                 val = 0;
2826         } else {
2827                 ptr = brdp->membase + (offset % ECP_MCPAGESIZE);
2828                 val = ((unsigned char) (offset / ECP_MCPAGESIZE)) | ECP_MCENABLE;
2829         }
2830         outb(val, (brdp->iobase + ECP_MCCONFR));
2831         return(ptr);
2832 }
2833
2834 /*****************************************************************************/
2835
2836 static void stli_ecpmcreset(struct stlibrd *brdp)
2837 {       
2838         outb(ECP_MCSTOP, (brdp->iobase + ECP_MCCONFR));
2839         udelay(10);
2840         outb(ECP_MCDISABLE, (brdp->iobase + ECP_MCCONFR));
2841         udelay(500);
2842 }
2843
2844 /*****************************************************************************/
2845
2846 /*
2847  *      The following set of functions act on ECP PCI boards.
2848  */
2849
2850 static void stli_ecppciinit(struct stlibrd *brdp)
2851 {
2852         outb(ECP_PCISTOP, (brdp->iobase + ECP_PCICONFR));
2853         udelay(10);
2854         outb(0, (brdp->iobase + ECP_PCICONFR));
2855         udelay(500);
2856 }
2857
2858 /*****************************************************************************/
2859
2860 static void __iomem *stli_ecppcigetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
2861 {       
2862         void __iomem *ptr;
2863         unsigned char   val;
2864
2865         if (offset > brdp->memsize) {
2866                 printk(KERN_ERR "STALLION: shared memory pointer=%x out of "
2867                                 "range at line=%d(%d), board=%d\n",
2868                                 (int) offset, line, __LINE__, brdp->brdnr);
2869                 ptr = NULL;
2870                 val = 0;
2871         } else {
2872                 ptr = brdp->membase + (offset % ECP_PCIPAGESIZE);
2873                 val = (offset / ECP_PCIPAGESIZE) << 1;
2874         }
2875         outb(val, (brdp->iobase + ECP_PCICONFR));
2876         return(ptr);
2877 }
2878
2879 /*****************************************************************************/
2880
2881 static void stli_ecppcireset(struct stlibrd *brdp)
2882 {       
2883         outb(ECP_PCISTOP, (brdp->iobase + ECP_PCICONFR));
2884         udelay(10);
2885         outb(0, (brdp->iobase + ECP_PCICONFR));
2886         udelay(500);
2887 }
2888
2889 /*****************************************************************************/
2890
2891 /*
2892  *      The following routines act on ONboards.
2893  */
2894
2895 static void stli_onbinit(struct stlibrd *brdp)
2896 {
2897         unsigned long   memconf;
2898
2899         outb(ONB_ATSTOP, (brdp->iobase + ONB_ATCONFR));
2900         udelay(10);
2901         outb(ONB_ATDISABLE, (brdp->iobase + ONB_ATCONFR));
2902         mdelay(1000);
2903
2904         memconf = (brdp->memaddr & ONB_ATADDRMASK) >> ONB_ATADDRSHFT;
2905         outb(memconf, (brdp->iobase + ONB_ATMEMAR));
2906         outb(0x1, brdp->iobase);
2907         mdelay(1);
2908 }
2909
2910 /*****************************************************************************/
2911
2912 static void stli_onbenable(struct stlibrd *brdp)
2913 {       
2914         outb((brdp->enabval | ONB_ATENABLE), (brdp->iobase + ONB_ATCONFR));
2915 }
2916
2917 /*****************************************************************************/
2918
2919 static void stli_onbdisable(struct stlibrd *brdp)
2920 {       
2921         outb((brdp->enabval | ONB_ATDISABLE), (brdp->iobase + ONB_ATCONFR));
2922 }
2923
2924 /*****************************************************************************/
2925
2926 static void __iomem *stli_onbgetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
2927 {       
2928         void __iomem *ptr;
2929
2930         if (offset > brdp->memsize) {
2931                 printk(KERN_ERR "STALLION: shared memory pointer=%x out of "
2932                                 "range at line=%d(%d), brd=%d\n",
2933                                 (int) offset, line, __LINE__, brdp->brdnr);
2934                 ptr = NULL;
2935         } else {
2936                 ptr = brdp->membase + (offset % ONB_ATPAGESIZE);
2937         }
2938         return(ptr);
2939 }
2940
2941 /*****************************************************************************/
2942
2943 static void stli_onbreset(struct stlibrd *brdp)
2944 {       
2945         outb(ONB_ATSTOP, (brdp->iobase + ONB_ATCONFR));
2946         udelay(10);
2947         outb(ONB_ATDISABLE, (brdp->iobase + ONB_ATCONFR));
2948         mdelay(1000);
2949 }
2950
2951 /*****************************************************************************/
2952
2953 /*
2954  *      The following routines act on ONboard EISA.
2955  */
2956
2957 static void stli_onbeinit(struct stlibrd *brdp)
2958 {
2959         unsigned long   memconf;
2960
2961         outb(0x1, (brdp->iobase + ONB_EIBRDENAB));
2962         outb(ONB_EISTOP, (brdp->iobase + ONB_EICONFR));
2963         udelay(10);
2964         outb(ONB_EIDISABLE, (brdp->iobase + ONB_EICONFR));
2965         mdelay(1000);
2966
2967         memconf = (brdp->memaddr & ONB_EIADDRMASKL) >> ONB_EIADDRSHFTL;
2968         outb(memconf, (brdp->iobase + ONB_EIMEMARL));
2969         memconf = (brdp->memaddr & ONB_EIADDRMASKH) >> ONB_EIADDRSHFTH;
2970         outb(memconf, (brdp->iobase + ONB_EIMEMARH));
2971         outb(0x1, brdp->iobase);
2972         mdelay(1);
2973 }
2974
2975 /*****************************************************************************/
2976
2977 static void stli_onbeenable(struct stlibrd *brdp)
2978 {       
2979         outb(ONB_EIENABLE, (brdp->iobase + ONB_EICONFR));
2980 }
2981
2982 /*****************************************************************************/
2983
2984 static void stli_onbedisable(struct stlibrd *brdp)
2985 {       
2986         outb(ONB_EIDISABLE, (brdp->iobase + ONB_EICONFR));
2987 }
2988
2989 /*****************************************************************************/
2990
2991 static void __iomem *stli_onbegetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
2992 {       
2993         void __iomem *ptr;
2994         unsigned char val;
2995
2996         if (offset > brdp->memsize) {
2997                 printk(KERN_ERR "STALLION: shared memory pointer=%x out of "
2998                                 "range at line=%d(%d), brd=%d\n",
2999                         (int) offset, line, __LINE__, brdp->brdnr);
3000                 ptr = NULL;
3001                 val = 0;
3002         } else {
3003                 ptr = brdp->membase + (offset % ONB_EIPAGESIZE);
3004                 if (offset < ONB_EIPAGESIZE)
3005                         val = ONB_EIENABLE;
3006                 else
3007                         val = ONB_EIENABLE | 0x40;
3008         }
3009         outb(val, (brdp->iobase + ONB_EICONFR));
3010         return(ptr);
3011 }
3012
3013 /*****************************************************************************/
3014
3015 static void stli_onbereset(struct stlibrd *brdp)
3016 {       
3017         outb(ONB_EISTOP, (brdp->iobase + ONB_EICONFR));
3018         udelay(10);
3019         outb(ONB_EIDISABLE, (brdp->iobase + ONB_EICONFR));
3020         mdelay(1000);
3021 }
3022
3023 /*****************************************************************************/
3024
3025 /*
3026  *      The following routines act on Brumby boards.
3027  */
3028
3029 static void stli_bbyinit(struct stlibrd *brdp)
3030 {
3031         outb(BBY_ATSTOP, (brdp->iobase + BBY_ATCONFR));
3032         udelay(10);
3033         outb(0, (brdp->iobase + BBY_ATCONFR));
3034         mdelay(1000);
3035         outb(0x1, brdp->iobase);
3036         mdelay(1);
3037 }
3038
3039 /*****************************************************************************/
3040
3041 static void __iomem *stli_bbygetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
3042 {       
3043         void __iomem *ptr;
3044         unsigned char val;
3045
3046         BUG_ON(offset > brdp->memsize);
3047
3048         ptr = brdp->membase + (offset % BBY_PAGESIZE);
3049         val = (unsigned char) (offset / BBY_PAGESIZE);
3050         outb(val, (brdp->iobase + BBY_ATCONFR));
3051         return(ptr);
3052 }
3053
3054 /*****************************************************************************/
3055
3056 static void stli_bbyreset(struct stlibrd *brdp)
3057 {       
3058         outb(BBY_ATSTOP, (brdp->iobase + BBY_ATCONFR));
3059         udelay(10);
3060         outb(0, (brdp->iobase + BBY_ATCONFR));
3061         mdelay(1000);
3062 }
3063
3064 /*****************************************************************************/
3065
3066 /*
3067  *      The following routines act on original old Stallion boards.
3068  */
3069
3070 static void stli_stalinit(struct stlibrd *brdp)
3071 {
3072         outb(0x1, brdp->iobase);
3073         mdelay(1000);
3074 }
3075
3076 /*****************************************************************************/
3077
3078 static void __iomem *stli_stalgetmemptr(struct stlibrd *brdp, unsigned long offset, int line)
3079 {       
3080         BUG_ON(offset > brdp->memsize);
3081         return brdp->membase + (offset % STAL_PAGESIZE);
3082 }
3083
3084 /*****************************************************************************/
3085
3086 static void stli_stalreset(struct stlibrd *brdp)
3087 {       
3088         u32 __iomem *vecp;
3089
3090         vecp = (u32 __iomem *) (brdp->membase + 0x30);
3091         writel(0xffff0000, vecp);
3092         outb(0, brdp->iobase);
3093         mdelay(1000);
3094 }
3095
3096 /*****************************************************************************/
3097
3098 /*
3099  *      Try to find an ECP board and initialize it. This handles only ECP
3100  *      board types.
3101  */
3102
3103 static int stli_initecp(struct stlibrd *brdp)
3104 {
3105         cdkecpsig_t sig;
3106         cdkecpsig_t __iomem *sigsp;
3107         unsigned int status, nxtid;
3108         char *name;
3109         int retval, panelnr, nrports;
3110
3111         if ((brdp->iobase == 0) || (brdp->memaddr == 0)) {
3112                 retval = -ENODEV;
3113                 goto err;
3114         }
3115
3116         brdp->iosize = ECP_IOSIZE;
3117
3118         if (!request_region(brdp->iobase, brdp->iosize, "istallion")) {
3119                 retval = -EIO;
3120                 goto err;
3121         }
3122
3123 /*
3124  *      Based on the specific board type setup the common vars to access
3125  *      and enable shared memory. Set all board specific information now
3126  *      as well.
3127  */
3128         switch (brdp->brdtype) {
3129         case BRD_ECP:
3130                 brdp->memsize = ECP_MEMSIZE;
3131                 brdp->pagesize = ECP_ATPAGESIZE;
3132                 brdp->init = stli_ecpinit;
3133                 brdp->enable = stli_ecpenable;
3134                 brdp->reenable = stli_ecpenable;
3135                 brdp->disable = stli_ecpdisable;
3136                 brdp->getmemptr = stli_ecpgetmemptr;
3137                 brdp->intr = stli_ecpintr;
3138                 brdp->reset = stli_ecpreset;
3139                 name = "serial(EC8/64)";
3140                 break;
3141
3142         case BRD_ECPE:
3143                 brdp->memsize = ECP_MEMSIZE;
3144                 brdp->pagesize = ECP_EIPAGESIZE;
3145                 brdp->init = stli_ecpeiinit;
3146                 brdp->enable = stli_ecpeienable;
3147                 brdp->reenable = stli_ecpeienable;
3148                 brdp->disable = stli_ecpeidisable;
3149                 brdp->getmemptr = stli_ecpeigetmemptr;
3150                 brdp->intr = stli_ecpintr;
3151                 brdp->reset = stli_ecpeireset;
3152                 name = "serial(EC8/64-EI)";
3153                 break;
3154
3155         case BRD_ECPMC:
3156                 brdp->memsize = ECP_MEMSIZE;
3157                 brdp->pagesize = ECP_MCPAGESIZE;
3158                 brdp->init = NULL;
3159                 brdp->enable = stli_ecpmcenable;
3160                 brdp->reenable = stli_ecpmcenable;
3161                 brdp->disable = stli_ecpmcdisable;
3162                 brdp->getmemptr = stli_ecpmcgetmemptr;
3163                 brdp->intr = stli_ecpintr;
3164                 brdp->reset = stli_ecpmcreset;
3165                 name = "serial(EC8/64-MCA)";
3166                 break;
3167
3168         case BRD_ECPPCI:
3169                 brdp->memsize = ECP_PCIMEMSIZE;
3170                 brdp->pagesize = ECP_PCIPAGESIZE;
3171                 brdp->init = stli_ecppciinit;
3172                 brdp->enable = NULL;
3173                 brdp->reenable = NULL;
3174                 brdp->disable = NULL;
3175                 brdp->getmemptr = stli_ecppcigetmemptr;
3176                 brdp->intr = stli_ecpintr;
3177                 brdp->reset = stli_ecppcireset;
3178                 name = "serial(EC/RA-PCI)";
3179                 break;
3180
3181         default:
3182                 retval = -EINVAL;
3183                 goto err_reg;
3184         }
3185
3186 /*
3187  *      The per-board operations structure is all set up, so now let's go
3188  *      and get the board operational. Firstly initialize board configuration
3189  *      registers. Set the memory mapping info so we can get at the boards
3190  *      shared memory.
3191  */
3192         EBRDINIT(brdp);
3193
3194         brdp->membase = ioremap_nocache(brdp->memaddr, brdp->memsize);
3195         if (brdp->membase == NULL) {
3196                 retval = -ENOMEM;
3197                 goto err_reg;
3198         }
3199
3200 /*
3201  *      Now that all specific code is set up, enable the shared memory and
3202  *      look for the a signature area that will tell us exactly what board
3203  *      this is, and what it is connected to it.
3204  */
3205         EBRDENABLE(brdp);
3206         sigsp = (cdkecpsig_t __iomem *) EBRDGETMEMPTR(brdp, CDK_SIGADDR);
3207         memcpy_fromio(&sig, sigsp, sizeof(cdkecpsig_t));
3208         EBRDDISABLE(brdp);
3209
3210         if (sig.magic != cpu_to_le32(ECP_MAGIC)) {
3211                 retval = -ENODEV;
3212                 goto err_unmap;
3213         }
3214
3215 /*
3216  *      Scan through the signature looking at the panels connected to the
3217  *      board. Calculate the total number of ports as we go.
3218  */
3219         for (panelnr = 0, nxtid = 0; (panelnr < STL_MAXPANELS); panelnr++) {
3220                 status = sig.panelid[nxtid];
3221                 if ((status & ECH_PNLIDMASK) != nxtid)
3222                         break;
3223
3224                 brdp->panelids[panelnr] = status;
3225                 nrports = (status & ECH_PNL16PORT) ? 16 : 8;
3226                 if ((nrports == 16) && ((status & ECH_PNLXPID) == 0))
3227                         nxtid++;
3228                 brdp->panels[panelnr] = nrports;
3229                 brdp->nrports += nrports;
3230                 nxtid++;
3231                 brdp->nrpanels++;
3232         }
3233
3234
3235         brdp->state |= BST_FOUND;
3236         return 0;
3237 err_unmap:
3238         iounmap(brdp->membase);
3239         brdp->membase = NULL;
3240 err_reg:
3241         release_region(brdp->iobase, brdp->iosize);
3242 err:
3243         return retval;
3244 }
3245
3246 /*****************************************************************************/
3247
3248 /*
3249  *      Try to find an ONboard, Brumby or Stallion board and initialize it.
3250  *      This handles only these board types.
3251  */
3252
3253 static int stli_initonb(struct stlibrd *brdp)
3254 {
3255         cdkonbsig_t sig;
3256         cdkonbsig_t __iomem *sigsp;
3257         char *name;
3258         int i, retval;
3259
3260 /*
3261  *      Do a basic sanity check on the IO and memory addresses.
3262  */
3263         if (brdp->iobase == 0 || brdp->memaddr == 0) {
3264                 retval = -ENODEV;
3265                 goto err;
3266         }
3267
3268         brdp->iosize = ONB_IOSIZE;
3269         
3270         if (!request_region(brdp->iobase, brdp->iosize, "istallion")) {
3271                 retval = -EIO;
3272                 goto err;
3273         }
3274
3275 /*
3276  *      Based on the specific board type setup the common vars to access
3277  *      and enable shared memory. Set all board specific information now
3278  *      as well.
3279  */
3280         switch (brdp->brdtype) {
3281         case BRD_ONBOARD:
3282         case BRD_ONBOARD2:
3283                 brdp->memsize = ONB_MEMSIZE;
3284                 brdp->pagesize = ONB_ATPAGESIZE;
3285                 brdp->init = stli_onbinit;
3286                 brdp->enable = stli_onbenable;
3287                 brdp->reenable = stli_onbenable;
3288                 brdp->disable = stli_onbdisable;
3289                 brdp->getmemptr = stli_onbgetmemptr;
3290                 brdp->intr = stli_ecpintr;
3291                 brdp->reset = stli_onbreset;
3292                 if (brdp->memaddr > 0x100000)
3293                         brdp->enabval = ONB_MEMENABHI;
3294                 else
3295                         brdp->enabval = ONB_MEMENABLO;
3296                 name = "serial(ONBoard)";
3297                 break;
3298
3299         case BRD_ONBOARDE:
3300                 brdp->memsize = ONB_EIMEMSIZE;
3301                 brdp->pagesize = ONB_EIPAGESIZE;
3302                 brdp->init = stli_onbeinit;
3303                 brdp->enable = stli_onbeenable;
3304                 brdp->reenable = stli_onbeenable;
3305                 brdp->disable = stli_onbedisable;
3306                 brdp->getmemptr = stli_onbegetmemptr;
3307                 brdp->intr = stli_ecpintr;
3308                 brdp->reset = stli_onbereset;
3309                 name = "serial(ONBoard/E)";
3310                 break;
3311
3312         case BRD_BRUMBY4:
3313                 brdp->memsize = BBY_MEMSIZE;
3314                 brdp->pagesize = BBY_PAGESIZE;
3315                 brdp->init = stli_bbyinit;
3316                 brdp->enable = NULL;
3317                 brdp->reenable = NULL;
3318                 brdp->disable = NULL;
3319                 brdp->getmemptr = stli_bbygetmemptr;
3320                 brdp->intr = stli_ecpintr;
3321                 brdp->reset = stli_bbyreset;
3322                 name = "serial(Brumby)";
3323                 break;
3324
3325         case BRD_STALLION:
3326                 brdp->memsize = STAL_MEMSIZE;
3327                 brdp->pagesize = STAL_PAGESIZE;
3328                 brdp->init = stli_stalinit;
3329                 brdp->enable = NULL;
3330                 brdp->reenable = NULL;
3331                 brdp->disable = NULL;
3332                 brdp->getmemptr = stli_stalgetmemptr;
3333                 brdp->intr = stli_ecpintr;
3334                 brdp->reset = stli_stalreset;
3335                 name = "serial(Stallion)";
3336                 break;
3337
3338         default:
3339                 retval = -EINVAL;
3340                 goto err_reg;
3341         }
3342
3343 /*
3344  *      The per-board operations structure is all set up, so now let's go
3345  *      and get the board operational. Firstly initialize board configuration
3346  *      registers. Set the memory mapping info so we can get at the boards
3347  *      shared memory.
3348  */
3349         EBRDINIT(brdp);
3350
3351         brdp->membase = ioremap_nocache(brdp->memaddr, brdp->memsize);
3352         if (brdp->membase == NULL) {
3353                 retval = -ENOMEM;
3354                 goto err_reg;
3355         }
3356
3357 /*
3358  *      Now that all specific code is set up, enable the shared memory and
3359  *      look for the a signature area that will tell us exactly what board
3360  *      this is, and how many ports.
3361  */
3362         EBRDENABLE(brdp);
3363         sigsp = (cdkonbsig_t __iomem *) EBRDGETMEMPTR(brdp, CDK_SIGADDR);
3364         memcpy_fromio(&sig, sigsp, sizeof(cdkonbsig_t));
3365         EBRDDISABLE(brdp);
3366
3367         if (sig.magic0 != cpu_to_le16(ONB_MAGIC0) ||
3368             sig.magic1 != cpu_to_le16(ONB_MAGIC1) ||
3369             sig.magic2 != cpu_to_le16(ONB_MAGIC2) ||
3370             sig.magic3 != cpu_to_le16(ONB_MAGIC3)) {
3371                 retval = -ENODEV;
3372                 goto err_unmap;
3373         }
3374
3375 /*
3376  *      Scan through the signature alive mask and calculate how many ports
3377  *      there are on this board.
3378  */
3379         brdp->nrpanels = 1;
3380         if (sig.amask1) {
3381                 brdp->nrports = 32;
3382         } else {
3383                 for (i = 0; (i < 16); i++) {
3384                         if (((sig.amask0 << i) & 0x8000) == 0)
3385                                 break;
3386                 }
3387                 brdp->nrports = i;
3388         }
3389         brdp->panels[0] = brdp->nrports;
3390
3391
3392         brdp->state |= BST_FOUND;
3393         return 0;
3394 err_unmap:
3395         iounmap(brdp->membase);
3396         brdp->membase = NULL;
3397 err_reg:
3398         release_region(brdp->iobase, brdp->iosize);
3399 err:
3400         return retval;
3401 }
3402
3403 /*****************************************************************************/
3404
3405 /*
3406  *      Start up a running board. This routine is only called after the
3407  *      code has been down loaded to the board and is operational. It will
3408  *      read in the memory map, and get the show on the road...
3409  */
3410
3411 static int stli_startbrd(struct stlibrd *brdp)
3412 {
3413         cdkhdr_t __iomem *hdrp;
3414         cdkmem_t __iomem *memp;
3415         cdkasy_t __iomem *ap;
3416         unsigned long flags;
3417         unsigned int portnr, nrdevs, i;
3418         struct stliport *portp;
3419         int rc = 0;
3420         u32 memoff;
3421
3422         spin_lock_irqsave(&brd_lock, flags);
3423         EBRDENABLE(brdp);
3424         hdrp = (cdkhdr_t __iomem *) EBRDGETMEMPTR(brdp, CDK_CDKADDR);
3425         nrdevs = hdrp->nrdevs;
3426
3427 #if 0
3428         printk("%s(%d): CDK version %d.%d.%d --> "
3429                 "nrdevs=%d memp=%x hostp=%x slavep=%x\n",
3430                  __FILE__, __LINE__, readb(&hdrp->ver_release), readb(&hdrp->ver_modification),
3431                  readb(&hdrp->ver_fix), nrdevs, (int) readl(&hdrp->memp), readl(&hdrp->hostp),
3432                  readl(&hdrp->slavep));
3433 #endif
3434
3435         if (nrdevs < (brdp->nrports + 1)) {
3436                 printk(KERN_ERR "STALLION: slave failed to allocate memory for "
3437                                 "all devices, devices=%d\n", nrdevs);
3438                 brdp->nrports = nrdevs - 1;
3439         }
3440         brdp->nrdevs = nrdevs;
3441         brdp->hostoffset = hdrp->hostp - CDK_CDKADDR;
3442         brdp->slaveoffset = hdrp->slavep - CDK_CDKADDR;
3443         brdp->bitsize = (nrdevs + 7) / 8;
3444         memoff = readl(&hdrp->memp);
3445         if (memoff > brdp->memsize) {
3446                 printk(KERN_ERR "STALLION: corrupted shared memory region?\n");
3447                 rc = -EIO;
3448                 goto stli_donestartup;
3449         }
3450         memp = (cdkmem_t __iomem *) EBRDGETMEMPTR(brdp, memoff);
3451         if (readw(&memp->dtype) != TYP_ASYNCTRL) {
3452                 printk(KERN_ERR "STALLION: no slave control device found\n");
3453                 goto stli_donestartup;
3454         }
3455         memp++;
3456
3457 /*
3458  *      Cycle through memory allocation of each port. We are guaranteed to
3459  *      have all ports inside the first page of slave window, so no need to
3460  *      change pages while reading memory map.
3461  */
3462         for (i = 1, portnr = 0; (i < nrdevs); i++, portnr++, memp++) {
3463                 if (readw(&memp->dtype) != TYP_ASYNC)
3464                         break;
3465                 portp = brdp->ports[portnr];
3466                 if (portp == NULL)
3467                         break;
3468                 portp->devnr = i;
3469                 portp->addr = readl(&memp->offset);
3470                 portp->reqbit = (unsigned char) (0x1 << (i * 8 / nrdevs));
3471                 portp->portidx = (unsigned char) (i / 8);
3472                 portp->portbit = (unsigned char) (0x1 << (i % 8));
3473         }
3474
3475         writeb(0xff, &hdrp->slavereq);
3476
3477 /*
3478  *      For each port setup a local copy of the RX and TX buffer offsets
3479  *      and sizes. We do this separate from the above, because we need to
3480  *      move the shared memory page...
3481  */
3482         for (i = 1, portnr = 0; (i < nrdevs); i++, portnr++) {
3483                 portp = brdp->ports[portnr];
3484                 if (portp == NULL)
3485                         break;
3486                 if (portp->addr == 0)
3487                         break;
3488                 ap = (cdkasy_t __iomem *) EBRDGETMEMPTR(brdp, portp->addr);
3489                 if (ap != NULL) {
3490                         portp->rxsize = readw(&ap->rxq.size);
3491                         portp->txsize = readw(&ap->txq.size);
3492                         portp->rxoffset = readl(&ap->rxq.offset);
3493                         portp->txoffset = readl(&ap->txq.offset);
3494                 }
3495         }
3496
3497 stli_donestartup:
3498         EBRDDISABLE(brdp);
3499         spin_unlock_irqrestore(&brd_lock, flags);
3500
3501         if (rc == 0)
3502                 brdp->state |= BST_STARTED;
3503
3504         if (! stli_timeron) {
3505                 stli_timeron++;
3506                 mod_timer(&stli_timerlist, STLI_TIMEOUT);
3507         }
3508
3509         return rc;
3510 }
3511
3512 /*****************************************************************************/
3513
3514 /*
3515  *      Probe and initialize the specified board.
3516  */
3517
3518 static int __devinit stli_brdinit(struct stlibrd *brdp)
3519 {
3520         int retval;
3521
3522         switch (brdp->brdtype) {
3523         case BRD_ECP:
3524         case BRD_ECPE:
3525         case BRD_ECPMC:
3526         case BRD_ECPPCI:
3527                 retval = stli_initecp(brdp);
3528                 break;
3529         case BRD_ONBOARD:
3530         case BRD_ONBOARDE:
3531         case BRD_ONBOARD2:
3532         case BRD_BRUMBY4:
3533         case BRD_STALLION:
3534                 retval = stli_initonb(brdp);
3535                 break;
3536         default:
3537                 printk(KERN_ERR "STALLION: board=%d is unknown board "
3538                                 "type=%d\n", brdp->brdnr, brdp->brdtype);
3539                 retval = -ENODEV;
3540         }
3541
3542         if (retval)
3543                 return retval;
3544
3545         stli_initports(brdp);
3546         printk(KERN_INFO "STALLION: %s found, board=%d io=%x mem=%x "
3547                 "nrpanels=%d nrports=%d\n", stli_brdnames[brdp->brdtype],
3548                 brdp->brdnr, brdp->iobase, (int) brdp->memaddr,
3549                 brdp->nrpanels, brdp->nrports);
3550         return 0;
3551 }
3552
3553 #if STLI_EISAPROBE != 0
3554 /*****************************************************************************/
3555
3556 /*
3557  *      Probe around trying to find where the EISA boards shared memory
3558  *      might be. This is a bit if hack, but it is the best we can do.
3559  */
3560
3561 static int stli_eisamemprobe(struct stlibrd *brdp)
3562 {
3563         cdkecpsig_t     ecpsig, __iomem *ecpsigp;
3564         cdkonbsig_t     onbsig, __iomem *onbsigp;
3565         int             i, foundit;
3566
3567 /*
3568  *      First up we reset the board, to get it into a known state. There
3569  *      is only 2 board types here we need to worry about. Don;t use the
3570  *      standard board init routine here, it programs up the shared
3571  *      memory address, and we don't know it yet...
3572  */
3573         if (brdp->brdtype == BRD_ECPE) {
3574                 outb(0x1, (brdp->iobase + ECP_EIBRDENAB));
3575                 outb(ECP_EISTOP, (brdp->iobase + ECP_EICONFR));
3576                 udelay(10);
3577                 outb(ECP_EIDISABLE, (brdp->iobase + ECP_EICONFR));
3578                 udelay(500);
3579                 stli_ecpeienable(brdp);
3580         } else if (brdp->brdtype == BRD_ONBOARDE) {
3581                 outb(0x1, (brdp->iobase + ONB_EIBRDENAB));
3582                 outb(ONB_EISTOP, (brdp->iobase + ONB_EICONFR));
3583                 udelay(10);
3584                 outb(ONB_EIDISABLE, (brdp->iobase + ONB_EICONFR));
3585                 mdelay(100);
3586                 outb(0x1, brdp->iobase);
3587                 mdelay(1);
3588                 stli_onbeenable(brdp);
3589         } else {
3590                 return -ENODEV;
3591         }
3592
3593         foundit = 0;
3594         brdp->memsize = ECP_MEMSIZE;
3595
3596 /*
3597  *      Board shared memory is enabled, so now we have a poke around and
3598  *      see if we can find it.
3599  */
3600         for (i = 0; (i < stli_eisamempsize); i++) {
3601                 brdp->memaddr = stli_eisamemprobeaddrs[i];
3602                 brdp->membase = ioremap_nocache(brdp->memaddr, brdp->memsize);
3603                 if (brdp->membase == NULL)
3604                         continue;
3605
3606                 if (brdp->brdtype == BRD_ECPE) {
3607                         ecpsigp = stli_ecpeigetmemptr(brdp,
3608                                 CDK_SIGADDR, __LINE__);
3609                         memcpy_fromio(&ecpsig, ecpsigp, sizeof(cdkecpsig_t));
3610                         if (ecpsig.magic == cpu_to_le32(ECP_MAGIC))
3611                                 foundit = 1;
3612                 } else {
3613                         onbsigp = (cdkonbsig_t __iomem *) stli_onbegetmemptr(brdp,
3614                                 CDK_SIGADDR, __LINE__);
3615                         memcpy_fromio(&onbsig, onbsigp, sizeof(cdkonbsig_t));
3616                         if ((onbsig.magic0 == cpu_to_le16(ONB_MAGIC0)) &&
3617                             (onbsig.magic1 == cpu_to_le16(ONB_MAGIC1)) &&
3618                             (onbsig.magic2 == cpu_to_le16(ONB_MAGIC2)) &&
3619                             (onbsig.magic3 == cpu_to_le16(ONB_MAGIC3)))
3620                                 foundit = 1;
3621                 }
3622
3623                 iounmap(brdp->membase);
3624                 if (foundit)
3625                         break;
3626         }
3627
3628 /*
3629  *      Regardless of whether we found the shared memory or not we must
3630  *      disable the region. After that return success or failure.
3631  */
3632         if (brdp->brdtype == BRD_ECPE)
3633                 stli_ecpeidisable(brdp);
3634         else
3635                 stli_onbedisable(brdp);
3636
3637         if (! foundit) {
3638                 brdp->memaddr = 0;
3639                 brdp->membase = NULL;
3640                 printk(KERN_ERR "STALLION: failed to probe shared memory "
3641                                 "region for %s in EISA slot=%d\n",
3642                         stli_brdnames[brdp->brdtype], (brdp->iobase >> 12));
3643                 return -ENODEV;
3644         }
3645         return 0;
3646 }
3647 #endif
3648
3649 static int stli_getbrdnr(void)
3650 {
3651         unsigned int i;
3652
3653         for (i = 0; i < STL_MAXBRDS; i++) {
3654                 if (!stli_brds[i]) {
3655                         if (i >= stli_nrbrds)
3656                                 stli_nrbrds = i + 1;
3657                         return i;
3658                 }
3659         }
3660         return -1;
3661 }
3662
3663 #if STLI_EISAPROBE != 0
3664 /*****************************************************************************/
3665
3666 /*
3667  *      Probe around and try to find any EISA boards in system. The biggest
3668  *      problem here is finding out what memory address is associated with
3669  *      an EISA board after it is found. The registers of the ECPE and
3670  *      ONboardE are not readable - so we can't read them from there. We
3671  *      don't have access to the EISA CMOS (or EISA BIOS) so we don't
3672  *      actually have any way to find out the real value. The best we can
3673  *      do is go probing around in the usual places hoping we can find it.
3674  */
3675
3676 static int __init stli_findeisabrds(void)
3677 {
3678         struct stlibrd *brdp;
3679         unsigned int iobase, eid, i;
3680         int brdnr, found = 0;
3681
3682 /*
3683  *      Firstly check if this is an EISA system.  If this is not an EISA system then
3684  *      don't bother going any further!
3685  */
3686         if (EISA_bus)
3687                 return 0;
3688
3689 /*
3690  *      Looks like an EISA system, so go searching for EISA boards.
3691  */
3692         for (iobase = 0x1000; (iobase <= 0xc000); iobase += 0x1000) {
3693                 outb(0xff, (iobase + 0xc80));
3694                 eid = inb(iobase + 0xc80);
3695                 eid |= inb(iobase + 0xc81) << 8;
3696                 if (eid != STL_EISAID)
3697                         continue;
3698
3699 /*
3700  *              We have found a board. Need to check if this board was
3701  *              statically configured already (just in case!).
3702  */
3703                 for (i = 0; (i < STL_MAXBRDS); i++) {
3704                         brdp = stli_brds[i];
3705                         if (brdp == NULL)
3706                                 continue;
3707                         if (brdp->iobase == iobase)
3708                                 break;
3709                 }
3710                 if (i < STL_MAXBRDS)
3711                         continue;
3712
3713 /*
3714  *              We have found a Stallion board and it is not configured already.
3715  *              Allocate a board structure and initialize it.
3716  */
3717                 if ((brdp = stli_allocbrd()) == NULL)
3718                         return found ? : -ENOMEM;
3719                 brdnr = stli_getbrdnr();
3720                 if (brdnr < 0)
3721                         return found ? : -ENOMEM;
3722                 brdp->brdnr = (unsigned int)brdnr;
3723                 eid = inb(iobase + 0xc82);
3724                 if (eid == ECP_EISAID)
3725                         brdp->brdtype = BRD_ECPE;
3726                 else if (eid == ONB_EISAID)
3727                         brdp->brdtype = BRD_ONBOARDE;
3728                 else
3729                         brdp->brdtype = BRD_UNKNOWN;
3730                 brdp->iobase = iobase;
3731                 outb(0x1, (iobase + 0xc84));
3732                 if (stli_eisamemprobe(brdp))
3733                         outb(0, (iobase + 0xc84));
3734                 if (stli_brdinit(brdp) < 0) {
3735                         kfree(brdp);
3736                         continue;
3737                 }
3738
3739                 stli_brds[brdp->brdnr] = brdp;
3740                 found++;
3741
3742                 for (i = 0; i < brdp->nrports; i++)
3743                         tty_register_device(stli_serial,
3744                                         brdp->brdnr * STL_MAXPORTS + i, NULL);
3745         }
3746
3747         return found;
3748 }
3749 #else
3750 static inline int stli_findeisabrds(void) { return 0; }
3751 #endif
3752
3753 /*****************************************************************************/
3754
3755 /*
3756  *      Find the next available board number that is free.
3757  */
3758
3759 /*****************************************************************************/
3760
3761 /*
3762  *      We have a Stallion board. Allocate a board structure and
3763  *      initialize it. Read its IO and MEMORY resources from PCI
3764  *      configuration space.
3765  */
3766
3767 static int __devinit stli_pciprobe(struct pci_dev *pdev,
3768                 const struct pci_device_id *ent)
3769 {
3770         struct stlibrd *brdp;
3771         unsigned int i;
3772         int brdnr, retval = -EIO;
3773
3774         retval = pci_enable_device(pdev);
3775         if (retval)
3776                 goto err;
3777         brdp = stli_allocbrd();
3778         if (brdp == NULL) {
3779                 retval = -ENOMEM;
3780                 goto err;
3781         }
3782         mutex_lock(&stli_brdslock);
3783         brdnr = stli_getbrdnr();
3784         if (brdnr < 0) {
3785                 printk(KERN_INFO "STALLION: too many boards found, "
3786                         "maximum supported %d\n", STL_MAXBRDS);
3787                 mutex_unlock(&stli_brdslock);
3788                 retval = -EIO;
3789                 goto err_fr;
3790         }
3791         brdp->brdnr = (unsigned int)brdnr;
3792         stli_brds[brdp->brdnr] = brdp;
3793         mutex_unlock(&stli_brdslock);
3794         brdp->brdtype = BRD_ECPPCI;
3795 /*
3796  *      We have all resources from the board, so lets setup the actual
3797  *      board structure now.
3798  */
3799         brdp->iobase = pci_resource_start(pdev, 3);
3800         brdp->memaddr = pci_resource_start(pdev, 2);
3801         retval = stli_brdinit(brdp);
3802         if (retval)
3803                 goto err_null;
3804
3805         brdp->state |= BST_PROBED;
3806         pci_set_drvdata(pdev, brdp);
3807
3808         EBRDENABLE(brdp);
3809         brdp->enable = NULL;
3810         brdp->disable = NULL;
3811
3812         for (i = 0; i < brdp->nrports; i++)
3813                 tty_register_device(stli_serial, brdp->brdnr * STL_MAXPORTS + i,
3814                                 &pdev->dev);
3815
3816         return 0;
3817 err_null:
3818         stli_brds[brdp->brdnr] = NULL;
3819 err_fr:
3820         kfree(brdp);
3821 err:
3822         return retval;
3823 }
3824
3825 static void stli_pciremove(struct pci_dev *pdev)
3826 {
3827         struct stlibrd *brdp = pci_get_drvdata(pdev);
3828
3829         stli_cleanup_ports(brdp);
3830
3831         iounmap(brdp->membase);
3832         if (brdp->iosize > 0)
3833                 release_region(brdp->iobase, brdp->iosize);
3834
3835         stli_brds[brdp->brdnr] = NULL;
3836         kfree(brdp);
3837 }
3838
3839 static struct pci_driver stli_pcidriver = {
3840         .name = "istallion",
3841         .id_table = istallion_pci_tbl,
3842         .probe = stli_pciprobe,
3843         .remove = __devexit_p(stli_pciremove)
3844 };
3845 /*****************************************************************************/
3846
3847 /*
3848  *      Allocate a new board structure. Fill out the basic info in it.
3849  */
3850
3851 static struct stlibrd *stli_allocbrd(void)
3852 {
3853         struct stlibrd *brdp;
3854
3855         brdp = kzalloc(sizeof(struct stlibrd), GFP_KERNEL);
3856         if (!brdp) {
3857                 printk(KERN_ERR "STALLION: failed to allocate memory "
3858                                 "(size=%Zd)\n", sizeof(struct stlibrd));
3859                 return NULL;
3860         }
3861         brdp->magic = STLI_BOARDMAGIC;
3862         return brdp;
3863 }
3864
3865 /*****************************************************************************/
3866
3867 /*
3868  *      Scan through all the boards in the configuration and see what we
3869  *      can find.
3870  */
3871
3872 static int __init stli_initbrds(void)
3873 {
3874         struct stlibrd *brdp, *nxtbrdp;
3875         struct stlconf conf;
3876         unsigned int i, j, found = 0;
3877         int retval;
3878
3879         for (stli_nrbrds = 0; stli_nrbrds < ARRAY_SIZE(stli_brdsp);
3880                         stli_nrbrds++) {
3881                 memset(&conf, 0, sizeof(conf));
3882                 if (stli_parsebrd(&conf, stli_brdsp[stli_nrbrds]) == 0)
3883                         continue;
3884                 if ((brdp = stli_allocbrd()) == NULL)
3885                         continue;
3886                 brdp->brdnr = stli_nrbrds;
3887                 brdp->brdtype = conf.brdtype;
3888                 brdp->iobase = conf.ioaddr1;
3889                 brdp->memaddr = conf.memaddr;
3890                 if (stli_brdinit(brdp) < 0) {
3891                         kfree(brdp);
3892                         continue;
3893                 }
3894                 stli_brds[brdp->brdnr] = brdp;
3895                 found++;
3896
3897                 for (i = 0; i < brdp->nrports; i++)
3898                         tty_register_device(stli_serial,
3899                                         brdp->brdnr * STL_MAXPORTS + i, NULL);
3900         }
3901
3902         retval = stli_findeisabrds();
3903         if (retval > 0)
3904                 found += retval;
3905
3906 /*
3907  *      All found boards are initialized. Now for a little optimization, if
3908  *      no boards are sharing the "shared memory" regions then we can just
3909  *      leave them all enabled. This is in fact the usual case.
3910  */
3911         stli_shared = 0;
3912         if (stli_nrbrds > 1) {
3913                 for (i = 0; (i < stli_nrbrds); i++) {
3914                         brdp = stli_brds[i];
3915                         if (brdp == NULL)
3916                                 continue;
3917                         for (j = i + 1; (j < stli_nrbrds); j++) {
3918                                 nxtbrdp = stli_brds[j];
3919                                 if (nxtbrdp == NULL)
3920                                         continue;
3921                                 if ((brdp->membase >= nxtbrdp->membase) &&
3922                                     (brdp->membase <= (nxtbrdp->membase +
3923                                     nxtbrdp->memsize - 1))) {
3924                                         stli_shared++;
3925                                         break;
3926                                 }
3927                         }
3928                 }
3929         }
3930
3931         if (stli_shared == 0) {
3932                 for (i = 0; (i < stli_nrbrds); i++) {
3933                         brdp = stli_brds[i];
3934                         if (brdp == NULL)
3935                                 continue;
3936                         if (brdp->state & BST_FOUND) {
3937                                 EBRDENABLE(brdp);
3938                                 brdp->enable = NULL;
3939                                 brdp->disable = NULL;
3940                         }
3941                 }
3942         }
3943
3944         retval = pci_register_driver(&stli_pcidriver);
3945         if (retval && found == 0) {
3946                 printk(KERN_ERR "Neither isa nor eisa cards found nor pci "
3947                                 "driver can be registered!\n");
3948                 goto err;
3949         }
3950
3951         return 0;
3952 err:
3953         return retval;
3954 }
3955
3956 /*****************************************************************************/
3957
3958 /*
3959  *      Code to handle an "staliomem" read operation. This device is the 
3960  *      contents of the board shared memory. It is used for down loading
3961  *      the slave image (and debugging :-)
3962  */
3963
3964 static ssize_t stli_memread(struct file *fp, char __user *buf, size_t count, loff_t *offp)
3965 {
3966         unsigned long flags;
3967         void __iomem *memptr;
3968         struct stlibrd *brdp;
3969         unsigned int brdnr;
3970         int size, n;
3971         void *p;
3972         loff_t off = *offp;
3973
3974         brdnr = iminor(fp->f_path.dentry->d_inode);
3975         if (brdnr >= stli_nrbrds)
3976                 return -ENODEV;
3977         brdp = stli_brds[brdnr];
3978         if (brdp == NULL)
3979                 return -ENODEV;
3980         if (brdp->state == 0)
3981                 return -ENODEV;
3982         if (off >= brdp->memsize || off + count < off)
3983                 return 0;
3984
3985         size = min(count, (size_t)(brdp->memsize - off));
3986
3987         /*
3988          *      Copy the data a page at a time
3989          */
3990
3991         p = (void *)__get_free_page(GFP_KERNEL);
3992         if(p == NULL)
3993                 return -ENOMEM;
3994
3995         while (size > 0) {
3996                 spin_lock_irqsave(&brd_lock, flags);
3997                 EBRDENABLE(brdp);
3998                 memptr = EBRDGETMEMPTR(brdp, off);
3999                 n = min(size, (int)(brdp->pagesize - (((unsigned long) off) % brdp->pagesize)));
4000                 n = min(n, (int)PAGE_SIZE);
4001                 memcpy_fromio(p, memptr, n);
4002                 EBRDDISABLE(brdp);
4003                 spin_unlock_irqrestore(&brd_lock, flags);
4004                 if (copy_to_user(buf, p, n)) {
4005                         count = -EFAULT;
4006                         goto out;
4007                 }
4008                 off += n;
4009                 buf += n;
4010                 size -= n;
4011         }
4012 out:
4013         *offp = off;
4014         free_page((unsigned long)p);
4015         return count;
4016 }
4017
4018 /*****************************************************************************/
4019
4020 /*
4021  *      Code to handle an "staliomem" write operation. This device is the 
4022  *      contents of the board shared memory. It is used for down loading
4023  *      the slave image (and debugging :-)
4024  *
4025  *      FIXME: copy under lock
4026  */
4027
4028 static ssize_t stli_memwrite(struct file *fp, const char __user *buf, size_t count, loff_t *offp)
4029 {
4030         unsigned long flags;
4031         void __iomem *memptr;
4032         struct stlibrd *brdp;
4033         char __user *chbuf;
4034         unsigned int brdnr;
4035         int size, n;
4036         void *p;
4037         loff_t off = *offp;
4038
4039         brdnr = iminor(fp->f_path.dentry->d_inode);
4040
4041         if (brdnr >= stli_nrbrds)
4042                 return -ENODEV;
4043         brdp = stli_brds[brdnr];
4044         if (brdp == NULL)
4045                 return -ENODEV;
4046         if (brdp->state == 0)
4047                 return -ENODEV;
4048         if (off >= brdp->memsize || off + count < off)
4049                 return 0;
4050
4051         chbuf = (char __user *) buf;
4052         size = min(count, (size_t)(brdp->memsize - off));
4053
4054         /*
4055          *      Copy the data a page at a time
4056          */
4057
4058         p = (void *)__get_free_page(GFP_KERNEL);
4059         if(p == NULL)
4060                 return -ENOMEM;
4061
4062         while (size > 0) {
4063                 n = min(size, (int)(brdp->pagesize - (((unsigned long) off) % brdp->pagesize)));
4064                 n = min(n, (int)PAGE_SIZE);
4065                 if (copy_from_user(p, chbuf, n)) {
4066                         if (count == 0)
4067                                 count = -EFAULT;
4068                         goto out;
4069                 }
4070                 spin_lock_irqsave(&brd_lock, flags);
4071                 EBRDENABLE(brdp);
4072                 memptr = EBRDGETMEMPTR(brdp, off);
4073                 memcpy_toio(memptr, p, n);
4074                 EBRDDISABLE(brdp);
4075                 spin_unlock_irqrestore(&brd_lock, flags);
4076                 off += n;
4077                 chbuf += n;
4078                 size -= n;
4079         }
4080 out:
4081         free_page((unsigned long) p);
4082         *offp = off;
4083         return count;
4084 }
4085
4086 /*****************************************************************************/
4087
4088 /*
4089  *      Return the board stats structure to user app.
4090  */
4091
4092 static int stli_getbrdstats(combrd_t __user *bp)
4093 {
4094         struct stlibrd *brdp;
4095         unsigned int i;
4096
4097         if (copy_from_user(&stli_brdstats, bp, sizeof(combrd_t)))
4098                 return -EFAULT;
4099         if (stli_brdstats.brd >= STL_MAXBRDS)
4100                 return -ENODEV;
4101         brdp = stli_brds[stli_brdstats.brd];
4102         if (brdp == NULL)
4103                 return -ENODEV;
4104
4105         memset(&stli_brdstats, 0, sizeof(combrd_t));
4106         stli_brdstats.brd = brdp->brdnr;
4107         stli_brdstats.type = brdp->brdtype;
4108         stli_brdstats.hwid = 0;
4109         stli_brdstats.state = brdp->state;
4110         stli_brdstats.ioaddr = brdp->iobase;
4111         stli_brdstats.memaddr = brdp->memaddr;
4112         stli_brdstats.nrpanels = brdp->nrpanels;
4113         stli_brdstats.nrports = brdp->nrports;
4114         for (i = 0; (i < brdp->nrpanels); i++) {
4115                 stli_brdstats.panels[i].panel = i;
4116                 stli_brdstats.panels[i].hwid = brdp->panelids[i];
4117                 stli_brdstats.panels[i].nrports = brdp->panels[i];
4118         }
4119
4120         if (copy_to_user(bp, &stli_brdstats, sizeof(combrd_t)))
4121                 return -EFAULT;
4122         return 0;
4123 }
4124
4125 /*****************************************************************************/
4126
4127 /*
4128  *      Resolve the referenced port number into a port struct pointer.
4129  */
4130
4131 static struct stliport *stli_getport(unsigned int brdnr, unsigned int panelnr,
4132                 unsigned int portnr)
4133 {
4134         struct stlibrd *brdp;
4135         unsigned int i;
4136
4137         if (brdnr >= STL_MAXBRDS)
4138                 return NULL;
4139         brdp = stli_brds[brdnr];
4140         if (brdp == NULL)
4141                 return NULL;
4142         for (i = 0; (i < panelnr); i++)
4143                 portnr += brdp->panels[i];
4144         if (portnr >= brdp->nrports)
4145                 return NULL;
4146         return brdp->ports[portnr];
4147 }
4148
4149 /*****************************************************************************/
4150
4151 /*
4152  *      Return the port stats structure to user app. A NULL port struct
4153  *      pointer passed in means that we need to find out from the app
4154  *      what port to get stats for (used through board control device).
4155  */
4156
4157 static int stli_portcmdstats(struct tty_struct *tty, struct stliport *portp)
4158 {
4159         unsigned long   flags;
4160         struct stlibrd  *brdp;
4161         int             rc;
4162
4163         memset(&stli_comstats, 0, sizeof(comstats_t));
4164
4165         if (portp == NULL)
4166                 return -ENODEV;
4167         brdp = stli_brds[portp->brdnr];
4168         if (brdp == NULL)
4169                 return -ENODEV;
4170
4171         if (brdp->state & BST_STARTED) {
4172                 if ((rc = stli_cmdwait(brdp, portp, A_GETSTATS,
4173                     &stli_cdkstats, sizeof(asystats_t), 1)) < 0)
4174                         return rc;
4175         } else {
4176                 memset(&stli_cdkstats, 0, sizeof(asystats_t));
4177         }
4178
4179         stli_comstats.brd = portp->brdnr;
4180         stli_comstats.panel = portp->panelnr;
4181         stli_comstats.port = portp->portnr;
4182         stli_comstats.state = portp->state;
4183         stli_comstats.flags = portp->port.flags;
4184
4185         spin_lock_irqsave(&brd_lock, flags);
4186         if (tty != NULL) {
4187                 if (portp->port.tty == tty) {
4188                         stli_comstats.ttystate = tty->flags;
4189                         stli_comstats.rxbuffered = -1;
4190                         if (tty->termios != NULL) {
4191                                 stli_comstats.cflags = tty->termios->c_cflag;
4192                                 stli_comstats.iflags = tty->termios->c_iflag;
4193                                 stli_comstats.oflags = tty->termios->c_oflag;
4194                                 stli_comstats.lflags = tty->termios->c_lflag;
4195                         }
4196                 }
4197         }
4198         spin_unlock_irqrestore(&brd_lock, flags);
4199
4200         stli_comstats.txtotal = stli_cdkstats.txchars;
4201         stli_comstats.rxtotal = stli_cdkstats.rxchars + stli_cdkstats.ringover;
4202         stli_comstats.txbuffered = stli_cdkstats.txringq;
4203         stli_comstats.rxbuffered += stli_cdkstats.rxringq;
4204         stli_comstats.rxoverrun = stli_cdkstats.overruns;
4205         stli_comstats.rxparity = stli_cdkstats.parity;
4206         stli_comstats.rxframing = stli_cdkstats.framing;
4207         stli_comstats.rxlost = stli_cdkstats.ringover;
4208         stli_comstats.rxbreaks = stli_cdkstats.rxbreaks;
4209         stli_comstats.txbreaks = stli_cdkstats.txbreaks;
4210         stli_comstats.txxon = stli_cdkstats.txstart;
4211         stli_comstats.txxoff = stli_cdkstats.txstop;
4212         stli_comstats.rxxon = stli_cdkstats.rxstart;
4213         stli_comstats.rxxoff = stli_cdkstats.rxstop;
4214         stli_comstats.rxrtsoff = stli_cdkstats.rtscnt / 2;
4215         stli_comstats.rxrtson = stli_cdkstats.rtscnt - stli_comstats.rxrtsoff;
4216         stli_comstats.modem = stli_cdkstats.dcdcnt;
4217         stli_comstats.hwid = stli_cdkstats.hwid;
4218         stli_comstats.signals = stli_mktiocm(stli_cdkstats.signals);
4219
4220         return 0;
4221 }
4222
4223 /*****************************************************************************/
4224
4225 /*
4226  *      Return the port stats structure to user app. A NULL port struct
4227  *      pointer passed in means that we need to find out from the app
4228  *      what port to get stats for (used through board control device).
4229  */
4230
4231 static int stli_getportstats(struct tty_struct *tty, struct stliport *portp,
4232                                                         comstats_t __user *cp)
4233 {
4234         struct stlibrd *brdp;
4235         int rc;
4236
4237         if (!portp) {
4238                 if (copy_from_user(&stli_comstats, cp, sizeof(comstats_t)))
4239                         return -EFAULT;
4240                 portp = stli_getport(stli_comstats.brd, stli_comstats.panel,
4241                         stli_comstats.port);
4242                 if (!portp)
4243                         return -ENODEV;
4244         }
4245
4246         brdp = stli_brds[portp->brdnr];
4247         if (!brdp)
4248                 return -ENODEV;
4249
4250         if ((rc = stli_portcmdstats(tty, portp)) < 0)
4251                 return rc;
4252
4253         return copy_to_user(cp, &stli_comstats, sizeof(comstats_t)) ?
4254                         -EFAULT : 0;
4255 }
4256
4257 /*****************************************************************************/
4258
4259 /*
4260  *      Clear the port stats structure. We also return it zeroed out...
4261  */
4262
4263 static int stli_clrportstats(struct stliport *portp, comstats_t __user *cp)
4264 {
4265         struct stlibrd *brdp;
4266         int rc;
4267
4268         if (!portp) {
4269                 if (copy_from_user(&stli_comstats, cp, sizeof(comstats_t)))
4270                         return -EFAULT;
4271                 portp = stli_getport(stli_comstats.brd, stli_comstats.panel,
4272                         stli_comstats.port);
4273                 if (!portp)
4274                         return -ENODEV;
4275         }
4276
4277         brdp = stli_brds[portp->brdnr];
4278         if (!brdp)
4279                 return -ENODEV;
4280
4281         if (brdp->state & BST_STARTED) {
4282                 if ((rc = stli_cmdwait(brdp, portp, A_CLEARSTATS, NULL, 0, 0)) < 0)
4283                         return rc;
4284         }
4285
4286         memset(&stli_comstats, 0, sizeof(comstats_t));
4287         stli_comstats.brd = portp->brdnr;
4288         stli_comstats.panel = portp->panelnr;
4289         stli_comstats.port = portp->portnr;
4290
4291         if (copy_to_user(cp, &stli_comstats, sizeof(comstats_t)))
4292                 return -EFAULT;
4293         return 0;
4294 }
4295
4296 /*****************************************************************************/
4297
4298 /*
4299  *      Return the entire driver ports structure to a user app.
4300  */
4301
4302 static int stli_getportstruct(struct stliport __user *arg)
4303 {
4304         struct stliport stli_dummyport;
4305         struct stliport *portp;
4306
4307         if (copy_from_user(&stli_dummyport, arg, sizeof(struct stliport)))
4308                 return -EFAULT;
4309         portp = stli_getport(stli_dummyport.brdnr, stli_dummyport.panelnr,
4310                  stli_dummyport.portnr);
4311         if (!portp)
4312                 return -ENODEV;
4313         if (copy_to_user(arg, portp, sizeof(struct stliport)))
4314                 return -EFAULT;
4315         return 0;
4316 }
4317
4318 /*****************************************************************************/
4319
4320 /*
4321  *      Return the entire driver board structure to a user app.
4322  */
4323
4324 static int stli_getbrdstruct(struct stlibrd __user *arg)
4325 {
4326         struct stlibrd stli_dummybrd;
4327         struct stlibrd *brdp;
4328
4329         if (copy_from_user(&stli_dummybrd, arg, sizeof(struct stlibrd)))
4330                 return -EFAULT;
4331         if (stli_dummybrd.brdnr >= STL_MAXBRDS)
4332                 return -ENODEV;
4333         brdp = stli_brds[stli_dummybrd.brdnr];
4334         if (!brdp)
4335                 return -ENODEV;
4336         if (copy_to_user(arg, brdp, sizeof(struct stlibrd)))
4337                 return -EFAULT;
4338         return 0;
4339 }
4340
4341 /*****************************************************************************/
4342
4343 /*
4344  *      The "staliomem" device is also required to do some special operations on
4345  *      the board. We need to be able to send an interrupt to the board,
4346  *      reset it, and start/stop it.
4347  */
4348
4349 static int stli_memioctl(struct inode *ip, struct file *fp, unsigned int cmd, unsigned long arg)
4350 {
4351         struct stlibrd *brdp;
4352         int brdnr, rc, done;
4353         void __user *argp = (void __user *)arg;
4354
4355 /*
4356  *      First up handle the board independent ioctls.
4357  */
4358         done = 0;
4359         rc = 0;
4360
4361         lock_kernel();
4362
4363         switch (cmd) {
4364         case COM_GETPORTSTATS:
4365                 rc = stli_getportstats(NULL, NULL, argp);
4366                 done++;
4367                 break;
4368         case COM_CLRPORTSTATS:
4369                 rc = stli_clrportstats(NULL, argp);
4370                 done++;
4371                 break;
4372         case COM_GETBRDSTATS:
4373                 rc = stli_getbrdstats(argp);
4374                 done++;
4375                 break;
4376         case COM_READPORT:
4377                 rc = stli_getportstruct(argp);
4378                 done++;
4379                 break;
4380         case COM_READBOARD:
4381                 rc = stli_getbrdstruct(argp);
4382                 done++;
4383                 break;
4384         }
4385         unlock_kernel();
4386
4387         if (done)
4388                 return rc;
4389
4390 /*
4391  *      Now handle the board specific ioctls. These all depend on the
4392  *      minor number of the device they were called from.
4393  */
4394         brdnr = iminor(ip);
4395         if (brdnr >= STL_MAXBRDS)
4396                 return -ENODEV;
4397         brdp = stli_brds[brdnr];
4398         if (!brdp)
4399                 return -ENODEV;
4400         if (brdp->state == 0)
4401                 return -ENODEV;
4402
4403         lock_kernel();
4404
4405         switch (cmd) {
4406         case STL_BINTR:
4407                 EBRDINTR(brdp);
4408                 break;
4409         case STL_BSTART:
4410                 rc = stli_startbrd(brdp);
4411                 break;
4412         case STL_BSTOP:
4413                 brdp->state &= ~BST_STARTED;
4414                 break;
4415         case STL_BRESET:
4416                 brdp->state &= ~BST_STARTED;
4417                 EBRDRESET(brdp);
4418                 if (stli_shared == 0) {
4419                         if (brdp->reenable != NULL)
4420                                 (* brdp->reenable)(brdp);
4421                 }
4422                 break;
4423         default:
4424                 rc = -ENOIOCTLCMD;
4425                 break;
4426         }
4427         unlock_kernel();
4428         return rc;
4429 }
4430
4431 static const struct tty_operations stli_ops = {
4432         .open = stli_open,
4433         .close = stli_close,
4434         .write = stli_write,
4435         .put_char = stli_putchar,
4436         .flush_chars = stli_flushchars,
4437         .write_room = stli_writeroom,
4438         .chars_in_buffer = stli_charsinbuffer,
4439         .ioctl = stli_ioctl,
4440         .set_termios = stli_settermios,
4441         .throttle = stli_throttle,
4442         .unthrottle = stli_unthrottle,
4443         .stop = stli_stop,
4444         .start = stli_start,
4445         .hangup = stli_hangup,
4446         .flush_buffer = stli_flushbuffer,
4447         .break_ctl = stli_breakctl,
4448         .wait_until_sent = stli_waituntilsent,
4449         .send_xchar = stli_sendxchar,
4450         .read_proc = stli_readproc,
4451         .tiocmget = stli_tiocmget,
4452         .tiocmset = stli_tiocmset,
4453 };
4454
4455 static const struct tty_port_operations stli_port_ops = {
4456         .carrier_raised = stli_carrier_raised,
4457         .raise_dtr_rts = stli_raise_dtr_rts,
4458 };
4459
4460 /*****************************************************************************/
4461 /*
4462  *      Loadable module initialization stuff.
4463  */
4464
4465 static void istallion_cleanup_isa(void)
4466 {
4467         struct stlibrd  *brdp;
4468         unsigned int j;
4469
4470         for (j = 0; (j < stli_nrbrds); j++) {
4471                 if ((brdp = stli_brds[j]) == NULL || (brdp->state & BST_PROBED))
4472                         continue;
4473
4474                 stli_cleanup_ports(brdp);
4475
4476                 iounmap(brdp->membase);
4477                 if (brdp->iosize > 0)
4478                         release_region(brdp->iobase, brdp->iosize);
4479                 kfree(brdp);
4480                 stli_brds[j] = NULL;
4481         }
4482 }
4483
4484 static int __init istallion_module_init(void)
4485 {
4486         unsigned int i;
4487         int retval;
4488
4489         printk(KERN_INFO "%s: version %s\n", stli_drvtitle, stli_drvversion);
4490
4491         spin_lock_init(&stli_lock);
4492         spin_lock_init(&brd_lock);
4493
4494         stli_txcookbuf = kmalloc(STLI_TXBUFSIZE, GFP_KERNEL);
4495         if (!stli_txcookbuf) {
4496                 printk(KERN_ERR "STALLION: failed to allocate memory "
4497                                 "(size=%d)\n", STLI_TXBUFSIZE);
4498                 retval = -ENOMEM;
4499                 goto err;
4500         }
4501
4502         stli_serial = alloc_tty_driver(STL_MAXBRDS * STL_MAXPORTS);
4503         if (!stli_serial) {
4504                 retval = -ENOMEM;
4505                 goto err_free;
4506         }
4507
4508         stli_serial->owner = THIS_MODULE;
4509         stli_serial->driver_name = stli_drvname;
4510         stli_serial->name = stli_serialname;
4511         stli_serial->major = STL_SERIALMAJOR;
4512         stli_serial->minor_start = 0;
4513         stli_serial->type = TTY_DRIVER_TYPE_SERIAL;
4514         stli_serial->subtype = SERIAL_TYPE_NORMAL;
4515         stli_serial->init_termios = stli_deftermios;
4516         stli_serial->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
4517         tty_set_operations(stli_serial, &stli_ops);
4518
4519         retval = tty_register_driver(stli_serial);
4520         if (retval) {
4521                 printk(KERN_ERR "STALLION: failed to register serial driver\n");
4522                 goto err_ttyput;
4523         }
4524
4525         retval = stli_initbrds();
4526         if (retval)
4527                 goto err_ttyunr;
4528
4529 /*
4530  *      Set up a character driver for the shared memory region. We need this
4531  *      to down load the slave code image. Also it is a useful debugging tool.
4532  */
4533         retval = register_chrdev(STL_SIOMEMMAJOR, "staliomem", &stli_fsiomem);
4534         if (retval) {
4535                 printk(KERN_ERR "STALLION: failed to register serial memory "
4536                                 "device\n");
4537                 goto err_deinit;
4538         }
4539
4540         istallion_class = class_create(THIS_MODULE, "staliomem");
4541         for (i = 0; i < 4; i++)
4542                 device_create(istallion_class, NULL, MKDEV(STL_SIOMEMMAJOR, i),
4543                               NULL, "staliomem%d", i);
4544
4545         return 0;
4546 err_deinit:
4547         pci_unregister_driver(&stli_pcidriver);
4548         istallion_cleanup_isa();
4549 err_ttyunr:
4550         tty_unregister_driver(stli_serial);
4551 err_ttyput:
4552         put_tty_driver(stli_serial);
4553 err_free:
4554         kfree(stli_txcookbuf);
4555 err:
4556         return retval;
4557 }
4558
4559 /*****************************************************************************/
4560
4561 static void __exit istallion_module_exit(void)
4562 {
4563         unsigned int j;
4564
4565         printk(KERN_INFO "Unloading %s: version %s\n", stli_drvtitle,
4566                 stli_drvversion);
4567
4568         if (stli_timeron) {
4569                 stli_timeron = 0;
4570                 del_timer_sync(&stli_timerlist);
4571         }
4572
4573         unregister_chrdev(STL_SIOMEMMAJOR, "staliomem");
4574
4575         for (j = 0; j < 4; j++)
4576                 device_destroy(istallion_class, MKDEV(STL_SIOMEMMAJOR, j));
4577         class_destroy(istallion_class);
4578
4579         pci_unregister_driver(&stli_pcidriver);
4580         istallion_cleanup_isa();
4581
4582         tty_unregister_driver(stli_serial);
4583         put_tty_driver(stli_serial);
4584
4585         kfree(stli_txcookbuf);
4586 }
4587
4588 module_init(istallion_module_init);
4589 module_exit(istallion_module_exit);