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