Merge from vendor branch OPENSSL:
[dragonfly.git] / sys / dev / serial / si / si.c
1 /*
2  * Device driver for Specialix range (SI/XIO) of serial line multiplexors.
3  *
4  * Copyright (C) 1990, 1992, 1998 Specialix International,
5  * Copyright (C) 1993, Andy Rutter <andy@acronym.co.uk>
6  * Copyright (C) 2000, Peter Wemm <peter@netplex.com.au>
7  *
8  * Originally derived from:     SunOS 4.x version
9  * Ported from BSDI version to FreeBSD by Peter Wemm.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notices, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notices, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. All advertising materials mentioning features or use of this software
20  *    must display the following acknowledgement:
21  *      This product includes software developed by Andy Rutter of
22  *      Advanced Methods and Tools Ltd. based on original information
23  *      from Specialix International.
24  * 4. Neither the name of Advanced Methods and Tools, nor Specialix
25  *    International may be used to endorse or promote products derived from
26  *    this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY ``AS IS'' AND ANY EXPRESS OR IMPLIED
29  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
30  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
31  * NO EVENT SHALL THE AUTHORS BE LIABLE.
32  *
33  * $FreeBSD: src/sys/dev/si/si.c,v 1.101.2.1 2001/02/26 04:23:06 jlemon Exp $
34  * $DragonFly: src/sys/dev/serial/si/si.c,v 1.10 2004/05/19 22:52:49 dillon Exp $
35  */
36
37 #ifndef lint
38 static const char si_copyright1[] =  "@(#) Copyright (C) Specialix International, 1990,1992,1998",
39                   si_copyright2[] =  "@(#) Copyright (C) Andy Rutter 1993",
40                   si_copyright3[] =  "@(#) Copyright (C) Peter Wemm 2000";
41 #endif  /* not lint */
42
43 #include "opt_compat.h"
44 #include "opt_debug_si.h"
45
46 #include <sys/param.h>
47 #include <sys/systm.h>
48 #if defined(COMPAT_43) || defined(COMPAT_SUNOS)
49 #include <sys/ioctl_compat.h>
50 #endif
51 #include <sys/tty.h>
52 #include <sys/proc.h>
53 #include <sys/conf.h>
54 #include <sys/fcntl.h>
55 #include <sys/dkstat.h>
56 #include <sys/kernel.h>
57 #include <sys/malloc.h>
58 #include <sys/sysctl.h>
59 #include <sys/bus.h>
60 #include <machine/bus.h>
61 #include <sys/rman.h>
62 #include <machine/resource.h>
63
64 #include <machine/clock.h>
65
66 #include <vm/vm.h>
67 #include <vm/pmap.h>
68
69 #include <machine/stdarg.h>
70
71 #include "sireg.h"
72 #include "sivar.h"
73 #include "si.h"
74
75 /*
76  * This device driver is designed to interface the Specialix International
77  * SI, XIO and SX range of serial multiplexor cards to FreeBSD on an ISA,
78  * EISA or PCI bus machine.
79  *
80  * The controller is interfaced to the host via dual port RAM
81  * and an interrupt.
82  *
83  * The code for the Host 1 (very old ISA cards) has not been tested.
84  */
85
86 #define POLL            /* turn on poller to scan for lost interrupts */
87 #define REALPOLL        /* on each poll, scan for work regardless */
88 #define POLLHZ  (hz/10) /* 10 times per second */
89 #define SI_I_HIGH_WATER (TTYHOG - 2 * SI_BUFFERSIZE)
90 #define INT_COUNT 25000         /* max of 125 ints per second */
91 #define JET_INT_COUNT 100       /* max of 100 ints per second */
92 #define RXINT_COUNT 1   /* one rxint per 10 milliseconds */
93
94 enum si_mctl { GET, SET, BIS, BIC };
95
96 static void si_command(struct si_port *, int, int);
97 static int si_modem(struct si_port *, enum si_mctl, int);
98 static void si_write_enable(struct si_port *, int);
99 static int si_Sioctl(dev_t, u_long, caddr_t, int, struct thread *);
100 static void si_start(struct tty *);
101 static void si_stop(struct tty *, int);
102 static timeout_t si_lstart;
103 static void si_disc_optim(struct tty *tp, struct termios *t,struct si_port *pp);
104 static void sihardclose(struct si_port *pp);
105 static void sidtrwakeup(void *chan);
106
107 #ifdef SI_DEBUG
108 static char     *si_mctl2str(enum si_mctl cmd);
109 #endif
110
111 static int      siparam(struct tty *, struct termios *);
112
113 static void     si_modem_state(struct si_port *pp, struct tty *tp, int hi_ip);
114 static char *   si_modulename(int host_type, int uart_type);
115
116 static  d_open_t        siopen;
117 static  d_close_t       siclose;
118 static  d_write_t       siwrite;
119 static  d_ioctl_t       siioctl;
120
121 #define CDEV_MAJOR      68
122 static struct cdevsw si_cdevsw = {
123         /* name */      "si",
124         /* maj */       CDEV_MAJOR,
125         /* flags */     D_TTY | D_KQFILTER,
126         /* port */      NULL,
127         /* clone */     NULL,
128
129         /* open */      siopen,
130         /* close */     siclose,
131         /* read */      ttyread,
132         /* write */     siwrite,
133         /* ioctl */     siioctl,
134         /* poll */      ttypoll,
135         /* mmap */      nommap,
136         /* strategy */  nostrategy,
137         /* dump */      nodump,
138         /* psize */     nopsize,
139         /* kqfilter */  ttykqfilter
140 };
141
142 static int si_Nports;
143 static int si_Nmodules;
144 static int si_debug = 0;        /* data, not bss, so it's patchable */
145
146 SYSCTL_INT(_machdep, OID_AUTO, si_debug, CTLFLAG_RW, &si_debug, 0, "");
147
148 static struct tty *si__tty;
149
150 static int si_numunits;
151
152 devclass_t si_devclass;
153
154 #ifndef B2000   /* not standard, but the hardware knows it. */
155 # define B2000 2000
156 #endif
157 static struct speedtab bdrates[] = {
158         { B75,          CLK75, },       /* 0x0 */
159         { B110,         CLK110, },      /* 0x1 */
160         { B150,         CLK150, },      /* 0x3 */
161         { B300,         CLK300, },      /* 0x4 */
162         { B600,         CLK600, },      /* 0x5 */
163         { B1200,        CLK1200, },     /* 0x6 */
164         { B2000,        CLK2000, },     /* 0x7 */
165         { B2400,        CLK2400, },     /* 0x8 */
166         { B4800,        CLK4800, },     /* 0x9 */
167         { B9600,        CLK9600, },     /* 0xb */
168         { B19200,       CLK19200, },    /* 0xc */
169         { B38400,       CLK38400, },    /* 0x2 (out of order!) */
170         { B57600,       CLK57600, },    /* 0xd */
171         { B115200,      CLK110, },      /* 0x1 (dupe!, 110 baud on "si") */
172         { -1,           -1 },
173 };
174
175
176 /* populated with approx character/sec rates - translated at card
177  * initialisation time to chars per tick of the clock */
178 static int done_chartimes = 0;
179 static struct speedtab chartimes[] = {
180         { B75,          8, },
181         { B110,         11, },
182         { B150,         15, },
183         { B300,         30, },
184         { B600,         60, },
185         { B1200,        120, },
186         { B2000,        200, },
187         { B2400,        240, },
188         { B4800,        480, },
189         { B9600,        960, },
190         { B19200,       1920, },
191         { B38400,       3840, },
192         { B57600,       5760, },
193         { B115200,      11520, },
194         { -1,           -1 },
195 };
196 static volatile int in_intr = 0;        /* Inside interrupt handler? */
197
198 #ifdef POLL
199 static int si_pollrate;                 /* in addition to irq */
200 static int si_realpoll = 0;             /* poll HW on timer */
201
202 SYSCTL_INT(_machdep, OID_AUTO, si_pollrate, CTLFLAG_RW, &si_pollrate, 0, "");
203 SYSCTL_INT(_machdep, OID_AUTO, si_realpoll, CTLFLAG_RW, &si_realpoll, 0, "");
204
205 static int init_finished = 0;
206 static void si_poll(void *);
207 #endif
208
209 /*
210  * Array of adapter types and the corresponding RAM size. The order of
211  * entries here MUST match the ordinal of the adapter type.
212  */
213 static char *si_type[] = {
214         "EMPTY",
215         "SIHOST",
216         "SIMCA",                /* FreeBSD does not support Microchannel */
217         "SIHOST2",
218         "SIEISA",
219         "SIPCI",
220         "SXPCI",
221         "SXISA",
222 };
223
224 /*
225  * We have to make an 8 bit version of bcopy, since some cards can't
226  * deal with 32 bit I/O
227  */
228 static void __inline
229 si_bcopy(const void *src, void *dst, size_t len)
230 {
231         while (len--)
232                 *(((u_char *)dst)++) = *(((const u_char *)src)++);
233 }
234 static void __inline
235 si_vbcopy(const volatile void *src, void *dst, size_t len)
236 {
237         while (len--)
238                 *(((u_char *)dst)++) = *(((const volatile u_char *)src)++);
239 }
240 static void __inline
241 si_bcopyv(const void *src, volatile void *dst, size_t len)
242 {
243         while (len--)
244                 *(((volatile u_char *)dst)++) = *(((const u_char *)src)++);
245 }
246
247
248 /*
249  * Attach the device.  Initialize the card.
250  */
251 int
252 siattach(device_t dev)
253 {
254         int unit;
255         struct si_softc *sc;
256         struct si_port *pp;
257         volatile struct si_channel *ccbp;
258         volatile struct si_reg *regp;
259         volatile caddr_t maddr;
260         struct si_module *modp;
261         struct tty *tp;
262         struct speedtab *spt;
263         int nmodule, nport, x, y;
264         int uart_type;
265
266         sc = device_get_softc(dev);
267         unit = device_get_unit(dev);
268
269         sc->sc_typename = si_type[sc->sc_type];
270         if (si_numunits < unit + 1)
271                 si_numunits = unit + 1;
272
273         DPRINT((0, DBG_AUTOBOOT, "si%d: siattach\n", unit));
274
275 #ifdef POLL
276         if (si_pollrate == 0) {
277                 si_pollrate = POLLHZ;           /* in addition to irq */
278 #ifdef REALPOLL
279                 si_realpoll = 1;                /* scan always */
280 #endif
281         }
282 #endif
283
284         DPRINT((0, DBG_AUTOBOOT, "si%d: type: %s paddr: %x maddr: %x\n", unit,
285                 sc->sc_typename, sc->sc_paddr, sc->sc_maddr));
286
287         sc->sc_ports = NULL;                    /* mark as uninitialised */
288
289         maddr = sc->sc_maddr;
290
291         /* Stop the CPU first so it won't stomp around while we load */
292
293         switch (sc->sc_type) {
294                 case SIEISA:
295                         outb(sc->sc_iobase + 2, sc->sc_irq << 4);
296                 break;
297                 case SIPCI:
298                         *(maddr+SIPCIRESET) = 0;
299                 break;
300                 case SIJETPCI: /* fall through to JET ISA */
301                 case SIJETISA:
302                         *(maddr+SIJETCONFIG) = 0;
303                 break;
304                 case SIHOST2:
305                         *(maddr+SIPLRESET) = 0;
306                 break;
307                 case SIHOST:
308                         *(maddr+SIRESET) = 0;
309                 break;
310                 default: /* this should never happen */
311                         printf("si%d: unsupported configuration\n", unit);
312                         return EINVAL;
313                 break;
314         }
315
316         /* OK, now lets download the download code */
317
318         if (SI_ISJET(sc->sc_type)) {
319                 DPRINT((0, DBG_DOWNLOAD, "si%d: jet_download: nbytes %d\n",
320                         unit, si3_t225_dsize));
321                 si_bcopy(si3_t225_download, maddr + si3_t225_downloadaddr,
322                         si3_t225_dsize);
323                 DPRINT((0, DBG_DOWNLOAD,
324                         "si%d: jet_bootstrap: nbytes %d -> %x\n",
325                         unit, si3_t225_bsize, si3_t225_bootloadaddr));
326                 si_bcopy(si3_t225_bootstrap, maddr + si3_t225_bootloadaddr,
327                         si3_t225_bsize);
328         } else {
329                 DPRINT((0, DBG_DOWNLOAD, "si%d: si_download: nbytes %d\n",
330                         unit, si2_z280_dsize));
331                 si_bcopy(si2_z280_download, maddr + si2_z280_downloadaddr,
332                         si2_z280_dsize);
333         }
334
335         /* Now start the CPU */
336
337         switch (sc->sc_type) {
338         case SIEISA:
339                 /* modify the download code to tell it that it's on an EISA */
340                 *(maddr + 0x42) = 1;
341                 outb(sc->sc_iobase + 2, (sc->sc_irq << 4) | 4);
342                 (void)inb(sc->sc_iobase + 3); /* reset interrupt */
343                 break;
344         case SIPCI:
345                 /* modify the download code to tell it that it's on a PCI */
346                 *(maddr+0x42) = 1;
347                 *(maddr+SIPCIRESET) = 1;
348                 *(maddr+SIPCIINTCL) = 0;
349                 break;
350         case SIJETPCI:
351                 *(maddr+SIJETRESET) = 0;
352                 *(maddr+SIJETCONFIG) = SIJETBUSEN|SIJETIRQEN;
353                 break;
354         case SIJETISA:
355                 *(maddr+SIJETRESET) = 0;
356                 switch (sc->sc_irq) {
357                 case 9:
358                         *(maddr+SIJETCONFIG) = SIJETBUSEN|SIJETIRQEN|0x90;
359                         break;
360                 case 10:
361                         *(maddr+SIJETCONFIG) = SIJETBUSEN|SIJETIRQEN|0xa0;
362                         break;
363                 case 11:
364                         *(maddr+SIJETCONFIG) = SIJETBUSEN|SIJETIRQEN|0xb0;
365                         break;
366                 case 12:
367                         *(maddr+SIJETCONFIG) = SIJETBUSEN|SIJETIRQEN|0xc0;
368                         break;
369                 case 15:
370                         *(maddr+SIJETCONFIG) = SIJETBUSEN|SIJETIRQEN|0xf0;
371                         break;
372                 }
373                 break;
374         case SIHOST:
375                 *(maddr+SIRESET_CL) = 0;
376                 *(maddr+SIINTCL_CL) = 0;
377                 break;
378         case SIHOST2:
379                 *(maddr+SIPLRESET) = 0x10;
380                 switch (sc->sc_irq) {
381                 case 11:
382                         *(maddr+SIPLIRQ11) = 0x10;
383                         break;
384                 case 12:
385                         *(maddr+SIPLIRQ12) = 0x10;
386                         break;
387                 case 15:
388                         *(maddr+SIPLIRQ15) = 0x10;
389                         break;
390                 }
391                 *(maddr+SIPLIRQCLR) = 0x10;
392                 break;
393         default: /* this should _REALLY_ never happen */
394                 printf("si%d: Uh, it was supported a second ago...\n", unit);
395                 return EINVAL;
396         }
397
398         DELAY(1000000);                 /* wait around for a second */
399
400         regp = (struct si_reg *)maddr;
401         y = 0;
402                                         /* wait max of 5 sec for init OK */
403         while (regp->initstat == 0 && y++ < 10) {
404                 DELAY(500000);
405         }
406         switch (regp->initstat) {
407         case 0:
408                 printf("si%d: startup timeout - aborting\n", unit);
409                 sc->sc_type = SIEMPTY;
410                 return EINVAL;
411         case 1:
412                 if (SI_ISJET(sc->sc_type)) {
413                         /* set throttle to 100 times per second */
414                         regp->int_count = JET_INT_COUNT;
415                         /* rx_intr_count is a NOP in Jet */
416                 } else {
417                         /* set throttle to 125 times per second */
418                         regp->int_count = INT_COUNT;
419                         /* rx intr max of 25 times per second */
420                         regp->rx_int_count = RXINT_COUNT;
421                 }
422                 regp->int_pending = 0;          /* no intr pending */
423                 regp->int_scounter = 0; /* reset counter */
424                 break;
425         case 0xff:
426                 /*
427                  * No modules found, so give up on this one.
428                  */
429                 printf("si%d: %s - no ports found\n", unit,
430                         si_type[sc->sc_type]);
431                 return 0;
432         default:
433                 printf("si%d: download code version error - initstat %x\n",
434                         unit, regp->initstat);
435                 return EINVAL;
436         }
437
438         /*
439          * First time around the ports just count them in order
440          * to allocate some memory.
441          */
442         nport = 0;
443         modp = (struct si_module *)(maddr + 0x80);
444         for (;;) {
445                 DPRINT((0, DBG_DOWNLOAD, "si%d: ccb addr 0x%x\n", unit, modp));
446                 switch (modp->sm_type) {
447                 case TA4:
448                         DPRINT((0, DBG_DOWNLOAD,
449                                 "si%d: Found old TA4 module, 4 ports\n",
450                                 unit));
451                         x = 4;
452                         break;
453                 case TA8:
454                         DPRINT((0, DBG_DOWNLOAD,
455                                 "si%d: Found old TA8 module, 8 ports\n",
456                                 unit));
457                         x = 8;
458                         break;
459                 case TA4_ASIC:
460                         DPRINT((0, DBG_DOWNLOAD,
461                                 "si%d: Found ASIC TA4 module, 4 ports\n",
462                                 unit));
463                         x = 4;
464                         break;
465                 case TA8_ASIC:
466                         DPRINT((0, DBG_DOWNLOAD,
467                                 "si%d: Found ASIC TA8 module, 8 ports\n",
468                                 unit));
469                         x = 8;
470                         break;
471                 case MTA:
472                         DPRINT((0, DBG_DOWNLOAD,
473                                 "si%d: Found CD1400 module, 8 ports\n",
474                                 unit));
475                         x = 8;
476                         break;
477                 case SXDC:
478                         DPRINT((0, DBG_DOWNLOAD,
479                                 "si%d: Found SXDC module, 8 ports\n",
480                                 unit));
481                         x = 8;
482                         break;
483                 default:
484                         printf("si%d: unknown module type %d\n",
485                                 unit, modp->sm_type);
486                         goto try_next;
487                 }
488
489                 /* this was limited in firmware and is also a driver issue */
490                 if ((nport + x) > SI_MAXPORTPERCARD) {
491                         printf("si%d: extra ports ignored\n", unit);
492                         goto try_next;
493                 }
494
495                 nport += x;
496                 si_Nports += x;
497                 si_Nmodules++;
498
499 try_next:
500                 if (modp->sm_next == 0)
501                         break;
502                 modp = (struct si_module *)
503                         (maddr + (unsigned)(modp->sm_next & 0x7fff));
504         }
505         sc->sc_ports = (struct si_port *)malloc(sizeof(struct si_port) * nport,
506                 M_DEVBUF, M_NOWAIT);
507         if (sc->sc_ports == 0) {
508 mem_fail:
509                 printf("si%d: fail to malloc memory for port structs\n",
510                         unit);
511                 return EINVAL;
512         }
513         bzero(sc->sc_ports, sizeof(struct si_port) * nport);
514         sc->sc_nport = nport;
515
516         /*
517          * allocate tty structures for ports
518          */
519         tp = (struct tty *)malloc(sizeof(*tp) * nport, M_DEVBUF, M_NOWAIT);
520         if (tp == 0)
521                 goto mem_fail;
522         bzero(tp, sizeof(*tp) * nport);
523         si__tty = tp;
524
525         /*
526          * Scan round the ports again, this time initialising.
527          */
528         pp = sc->sc_ports;
529         nmodule = 0;
530         modp = (struct si_module *)(maddr + 0x80);
531         uart_type = 1000;       /* arbitary, > uchar_max */
532         for (;;) {
533                 switch (modp->sm_type) {
534                 case TA4:
535                         nport = 4;
536                         break;
537                 case TA8:
538                         nport = 8;
539                         break;
540                 case TA4_ASIC:
541                         nport = 4;
542                         break;
543                 case TA8_ASIC:
544                         nport = 8;
545                         break;
546                 case MTA:
547                         nport = 8;
548                         break;
549                 case SXDC:
550                         nport = 8;
551                         break;
552                 default:
553                         goto try_next2;
554                 }
555                 nmodule++;
556                 ccbp = (struct si_channel *)((char *)modp + 0x100);
557                 if (uart_type == 1000)
558                         uart_type = ccbp->type;
559                 else if (uart_type != ccbp->type)
560                         printf("si%d: Warning: module %d mismatch! (%d%s != %d%s)\n",
561                             unit, nmodule,
562                             ccbp->type, si_modulename(sc->sc_type, ccbp->type),
563                             uart_type, si_modulename(sc->sc_type, uart_type));
564
565                 for (x = 0; x < nport; x++, pp++, ccbp++) {
566                         pp->sp_ccb = ccbp;      /* save the address */
567                         pp->sp_tty = tp++;
568                         pp->sp_pend = IDLE_CLOSE;
569                         pp->sp_state = 0;       /* internal flag */
570                         pp->sp_dtr_wait = 3 * hz;
571                         pp->sp_iin.c_iflag = TTYDEF_IFLAG;
572                         pp->sp_iin.c_oflag = TTYDEF_OFLAG;
573                         pp->sp_iin.c_cflag = TTYDEF_CFLAG;
574                         pp->sp_iin.c_lflag = TTYDEF_LFLAG;
575                         termioschars(&pp->sp_iin);
576                         pp->sp_iin.c_ispeed = pp->sp_iin.c_ospeed =
577                                 TTYDEF_SPEED;;
578                         pp->sp_iout = pp->sp_iin;
579                 }
580 try_next2:
581                 if (modp->sm_next == 0) {
582                         printf("si%d: card: %s, ports: %d, modules: %d, type: %d%s\n",
583                                 unit,
584                                 sc->sc_typename,
585                                 sc->sc_nport,
586                                 nmodule,
587                                 uart_type,
588                                 si_modulename(sc->sc_type, uart_type));
589                         break;
590                 }
591                 modp = (struct si_module *)
592                         (maddr + (unsigned)(modp->sm_next & 0x7fff));
593         }
594         if (done_chartimes == 0) {
595                 for (spt = chartimes ; spt->sp_speed != -1; spt++) {
596                         if ((spt->sp_code /= hz) == 0)
597                                 spt->sp_code = 1;
598                 }
599                 done_chartimes = 1;
600         }
601
602         cdevsw_add(&si_cdevsw, 0x7f, unit);
603 /*      path    name    devsw           minor   type   uid gid perm*/
604         for (x = 0; x < sc->sc_nport; x++) {
605                 /* sync with the manuals that start at 1 */
606                 y = x + 1 + unit * (1 << SI_CARDSHIFT);
607                 make_dev(&si_cdevsw, x, 0, 0, 0600, "ttyA%02d", y);
608                 make_dev(&si_cdevsw, x + 0x00080, 0, 0, 0600, "cuaA%02d", y);
609                 make_dev(&si_cdevsw, x + 0x10000, 0, 0, 0600, "ttyiA%02d", y);
610                 make_dev(&si_cdevsw, x + 0x10080, 0, 0, 0600, "cuaiA%02d", y);
611                 make_dev(&si_cdevsw, x + 0x20000, 0, 0, 0600, "ttylA%02d", y);
612                 make_dev(&si_cdevsw, x + 0x20080, 0, 0, 0600, "cualA%02d", y);
613         }
614         make_dev(&si_cdevsw, 0x40000, 0, 0, 0600, "si_control");
615         return (0);
616 }
617
618 static  int
619 siopen(dev_t dev, int flag, int mode, struct thread *td)
620 {
621         int oldspl, error;
622         int card, port;
623         struct si_softc *sc;
624         struct tty *tp;
625         volatile struct si_channel *ccbp;
626         struct si_port *pp;
627         int mynor = minor(dev);
628
629         /* quickly let in /dev/si_control */
630         if (IS_CONTROLDEV(mynor)) {
631                 if ((error = suser(td)))
632                         return(error);
633                 return(0);
634         }
635
636         card = SI_CARD(mynor);
637         sc = devclass_get_softc(si_devclass, card);
638         if (sc == NULL)
639                 return (ENXIO);
640
641         if (sc->sc_type == SIEMPTY) {
642                 DPRINT((0, DBG_OPEN|DBG_FAIL, "si%d: type %s??\n",
643                         card, sc->sc_typename));
644                 return(ENXIO);
645         }
646
647         port = SI_PORT(mynor);
648         if (port >= sc->sc_nport) {
649                 DPRINT((0, DBG_OPEN|DBG_FAIL, "si%d: nports %d\n",
650                         card, sc->sc_nport));
651                 return(ENXIO);
652         }
653
654 #ifdef  POLL
655         /*
656          * We've now got a device, so start the poller.
657          */
658         if (init_finished == 0) {
659                 timeout(si_poll, (caddr_t)0L, si_pollrate);
660                 init_finished = 1;
661         }
662 #endif
663
664         /* initial/lock device */
665         if (IS_STATE(mynor)) {
666                 return(0);
667         }
668
669         pp = sc->sc_ports + port;
670         tp = pp->sp_tty;                        /* the "real" tty */
671         dev->si_tty = tp;
672         ccbp = pp->sp_ccb;                      /* Find control block */
673         DPRINT((pp, DBG_ENTRY|DBG_OPEN, "siopen(%s,%x,%x,%x)\n",
674                 devtoname(dev), flag, mode, td));
675
676         oldspl = spltty();                      /* Keep others out */
677         error = 0;
678
679 open_top:
680         while (pp->sp_state & SS_DTR_OFF) {
681                 error = tsleep(&pp->sp_dtr_wait, PCATCH, "sidtr", 0);
682                 if (error != 0)
683                         goto out;
684         }
685
686         if (tp->t_state & TS_ISOPEN) {
687                 /*
688                  * The device is open, so everything has been initialised.
689                  * handle conflicts.
690                  */
691                 if (IS_CALLOUT(mynor)) {
692                         if (!pp->sp_active_out) {
693                                 error = EBUSY;
694                                 goto out;
695                         }
696                 } else {
697                         if (pp->sp_active_out) {
698                                 if (flag & O_NONBLOCK) {
699                                         error = EBUSY;
700                                         goto out;
701                                 }
702                                 error = tsleep(&pp->sp_active_out,
703                                                 PCATCH, "sibi", 0);
704                                 if (error != 0)
705                                         goto out;
706                                 goto open_top;
707                         }
708                 }
709                 if (tp->t_state & TS_XCLUDE &&
710                     suser(td)) {
711                         DPRINT((pp, DBG_OPEN|DBG_FAIL,
712                                 "already open and EXCLUSIVE set\n"));
713                         error = EBUSY;
714                         goto out;
715                 }
716         } else {
717                 /*
718                  * The device isn't open, so there are no conflicts.
719                  * Initialize it. Avoid sleep... :-)
720                  */
721                 DPRINT((pp, DBG_OPEN, "first open\n"));
722                 tp->t_oproc = si_start;
723                 tp->t_stop = si_stop;
724                 tp->t_param = siparam;
725                 tp->t_dev = dev;
726                 tp->t_termios = mynor & SI_CALLOUT_MASK
727                                 ? pp->sp_iout : pp->sp_iin;
728
729                 (void) si_modem(pp, SET, TIOCM_DTR|TIOCM_RTS);
730
731                 ++pp->sp_wopeners;      /* in case of sleep in siparam */
732
733                 error = siparam(tp, &tp->t_termios);
734
735                 --pp->sp_wopeners;
736                 if (error != 0)
737                         goto out;
738                 /* XXX: we should goto_top if siparam slept */
739
740                 /* set initial DCD state */
741                 pp->sp_last_hi_ip = ccbp->hi_ip;
742                 if ((pp->sp_last_hi_ip & IP_DCD) || IS_CALLOUT(mynor)) {
743                         (*linesw[tp->t_line].l_modem)(tp, 1);
744                 }
745         }
746
747         /* whoops! we beat the close! */
748         if (pp->sp_state & SS_CLOSING) {
749                 /* try and stop it from proceeding to bash the hardware */
750                 pp->sp_state &= ~SS_CLOSING;
751         }
752
753         /*
754          * Wait for DCD if necessary
755          */
756         if (!(tp->t_state & TS_CARR_ON) &&
757             !IS_CALLOUT(mynor) &&
758             !(tp->t_cflag & CLOCAL) &&
759             !(flag & O_NONBLOCK)) {
760                 ++pp->sp_wopeners;
761                 DPRINT((pp, DBG_OPEN, "sleeping for carrier\n"));
762                 error = tsleep(TSA_CARR_ON(tp), PCATCH, "sidcd", 0);
763                 --pp->sp_wopeners;
764                 if (error != 0)
765                         goto out;
766                 goto open_top;
767         }
768
769         error = (*linesw[tp->t_line].l_open)(dev, tp);
770         si_disc_optim(tp, &tp->t_termios, pp);
771         if (tp->t_state & TS_ISOPEN && IS_CALLOUT(mynor))
772                 pp->sp_active_out = TRUE;
773
774         pp->sp_state |= SS_OPEN;        /* made it! */
775
776 out:
777         splx(oldspl);
778
779         DPRINT((pp, DBG_OPEN, "leaving siopen\n"));
780
781         if (!(tp->t_state & TS_ISOPEN) && pp->sp_wopeners == 0)
782                 sihardclose(pp);
783
784         return(error);
785 }
786
787 static  int
788 siclose(dev_t dev, int flag, int mode, struct thread *td)
789 {
790         struct si_port *pp;
791         struct tty *tp;
792         int oldspl;
793         int error = 0;
794         int mynor = minor(dev);
795
796         if (IS_SPECIAL(mynor))
797                 return(0);
798
799         oldspl = spltty();
800
801         pp = MINOR2PP(mynor);
802         tp = pp->sp_tty;
803
804         DPRINT((pp, DBG_ENTRY|DBG_CLOSE, "siclose(%s,%x,%x,%x) sp_state:%x\n",
805                 devtoname(dev), flag, mode, td, pp->sp_state));
806
807         /* did we sleep and loose a race? */
808         if (pp->sp_state & SS_CLOSING) {
809                 /* error = ESOMETING? */
810                 goto out;
811         }
812
813         /* begin race detection.. */
814         pp->sp_state |= SS_CLOSING;
815
816         si_write_enable(pp, 0);         /* block writes for ttywait() */
817
818         /* THIS MAY SLEEP IN TTYWAIT!!! */
819         (*linesw[tp->t_line].l_close)(tp, flag);
820
821         si_write_enable(pp, 1);
822
823         /* did we sleep and somebody started another open? */
824         if (!(pp->sp_state & SS_CLOSING)) {
825                 /* error = ESOMETING? */
826                 goto out;
827         }
828         /* ok. we are now still on the right track.. nuke the hardware */
829
830         if (pp->sp_state & SS_LSTART) {
831                 untimeout(si_lstart, (caddr_t)pp, pp->lstart_ch);
832                 pp->sp_state &= ~SS_LSTART;
833         }
834
835         si_stop(tp, FREAD | FWRITE);
836
837         sihardclose(pp);
838         ttyclose(tp);
839         pp->sp_state &= ~SS_OPEN;
840
841 out:
842         DPRINT((pp, DBG_CLOSE|DBG_EXIT, "close done, returning\n"));
843         splx(oldspl);
844         return(error);
845 }
846
847 static void
848 sihardclose(struct si_port *pp)
849 {
850         int oldspl;
851         struct tty *tp;
852         volatile struct si_channel *ccbp;
853
854         oldspl = spltty();
855
856         tp = pp->sp_tty;
857         ccbp = pp->sp_ccb;                      /* Find control block */
858         if (tp->t_cflag & HUPCL ||
859             (!pp->sp_active_out &&
860              !(ccbp->hi_ip & IP_DCD) &&
861              !(pp->sp_iin.c_cflag && CLOCAL)) ||
862             !(tp->t_state & TS_ISOPEN)) {
863
864                 (void) si_modem(pp, BIC, TIOCM_DTR|TIOCM_RTS);
865                 (void) si_command(pp, FCLOSE, SI_NOWAIT);
866
867                 if (pp->sp_dtr_wait != 0) {
868                         timeout(sidtrwakeup, pp, pp->sp_dtr_wait);
869                         pp->sp_state |= SS_DTR_OFF;
870                 }
871
872         }
873         pp->sp_active_out = FALSE;
874         wakeup((caddr_t)&pp->sp_active_out);
875         wakeup(TSA_CARR_ON(tp));
876
877         splx(oldspl);
878 }
879
880
881 /*
882  * called at splsoftclock()...
883  */
884 static void
885 sidtrwakeup(void *chan)
886 {
887         struct si_port *pp;
888         int oldspl;
889
890         oldspl = spltty();
891
892         pp = (struct si_port *)chan;
893         pp->sp_state &= ~SS_DTR_OFF;
894         wakeup(&pp->sp_dtr_wait);
895
896         splx(oldspl);
897 }
898
899 static  int
900 siwrite(dev_t dev, struct uio *uio, int flag)
901 {
902         struct si_port *pp;
903         struct tty *tp;
904         int error = 0;
905         int mynor = minor(dev);
906         int oldspl;
907
908         if (IS_SPECIAL(mynor)) {
909                 DPRINT((0, DBG_ENTRY|DBG_FAIL|DBG_WRITE, "siwrite(CONTROLDEV!!)\n"));
910                 return(ENODEV);
911         }
912         pp = MINOR2PP(mynor);
913         tp = pp->sp_tty;
914         DPRINT((pp, DBG_WRITE, "siwrite(%s,%x,%x)\n", devtoname(dev), uio, flag));
915
916         oldspl = spltty();
917         /*
918          * If writes are currently blocked, wait on the "real" tty
919          */
920         while (pp->sp_state & SS_BLOCKWRITE) {
921                 pp->sp_state |= SS_WAITWRITE;
922                 DPRINT((pp, DBG_WRITE, "in siwrite, wait for SS_BLOCKWRITE to clear\n"));
923                 if ((error = ttysleep(tp, (caddr_t)pp, PCATCH,
924                                      "siwrite", tp->t_timeout))) {
925                         if (error == EWOULDBLOCK)
926                                 error = EIO;
927                         goto out;
928                 }
929         }
930
931         error = (*linesw[tp->t_line].l_write)(tp, uio, flag);
932 out:
933         splx(oldspl);
934         return (error);
935 }
936
937
938 static  int
939 siioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct thread *td)
940 {
941         struct si_port *pp;
942         struct tty *tp;
943         int error;
944         int mynor = minor(dev);
945         int oldspl;
946         int blocked = 0;
947 #if defined(COMPAT_43)
948         u_long oldcmd;
949         struct termios term;
950 #endif
951
952         if (IS_SI_IOCTL(cmd))
953                 return(si_Sioctl(dev, cmd, data, flag, td));
954
955         pp = MINOR2PP(mynor);
956         tp = pp->sp_tty;
957
958         DPRINT((pp, DBG_ENTRY|DBG_IOCTL, "siioctl(%s,%lx,%x,%x)\n",
959                 devtoname(dev), cmd, data, flag));
960         if (IS_STATE(mynor)) {
961                 struct termios *ct;
962
963                 switch (mynor & SI_STATE_MASK) {
964                 case SI_INIT_STATE_MASK:
965                         ct = IS_CALLOUT(mynor) ? &pp->sp_iout : &pp->sp_iin;
966                         break;
967                 case SI_LOCK_STATE_MASK:
968                         ct = IS_CALLOUT(mynor) ? &pp->sp_lout : &pp->sp_lin;
969                         break;
970                 default:
971                         return (ENODEV);
972                 }
973                 switch (cmd) {
974                 case TIOCSETA:
975                         error = suser(td);
976                         if (error != 0)
977                                 return (error);
978                         *ct = *(struct termios *)data;
979                         return (0);
980                 case TIOCGETA:
981                         *(struct termios *)data = *ct;
982                         return (0);
983                 case TIOCGETD:
984                         *(int *)data = TTYDISC;
985                         return (0);
986                 case TIOCGWINSZ:
987                         bzero(data, sizeof(struct winsize));
988                         return (0);
989                 default:
990                         return (ENOTTY);
991                 }
992         }
993         /*
994          * Do the old-style ioctl compat routines...
995          */
996 #if defined(COMPAT_43)
997         term = tp->t_termios;
998         oldcmd = cmd;
999         error = ttsetcompat(tp, &cmd, data, &term);
1000         if (error != 0)
1001                 return (error);
1002         if (cmd != oldcmd)
1003                 data = (caddr_t)&term;
1004 #endif
1005         /*
1006          * Do the initial / lock state business
1007          */
1008         if (cmd == TIOCSETA || cmd == TIOCSETAW || cmd == TIOCSETAF) {
1009                 int     cc;
1010                 struct termios *dt = (struct termios *)data;
1011                 struct termios *lt = mynor & SI_CALLOUT_MASK
1012                                      ? &pp->sp_lout : &pp->sp_lin;
1013
1014                 dt->c_iflag = (tp->t_iflag & lt->c_iflag) |
1015                         (dt->c_iflag & ~lt->c_iflag);
1016                 dt->c_oflag = (tp->t_oflag & lt->c_oflag) |
1017                         (dt->c_oflag & ~lt->c_oflag);
1018                 dt->c_cflag = (tp->t_cflag & lt->c_cflag) |
1019                         (dt->c_cflag & ~lt->c_cflag);
1020                 dt->c_lflag = (tp->t_lflag & lt->c_lflag) |
1021                         (dt->c_lflag & ~lt->c_lflag);
1022                 for (cc = 0; cc < NCCS; ++cc)
1023                         if (lt->c_cc[cc] != 0)
1024                                 dt->c_cc[cc] = tp->t_cc[cc];
1025                 if (lt->c_ispeed != 0)
1026                         dt->c_ispeed = tp->t_ispeed;
1027                 if (lt->c_ospeed != 0)
1028                         dt->c_ospeed = tp->t_ospeed;
1029         }
1030
1031         /*
1032          * Block user-level writes to give the ttywait()
1033          * a chance to completely drain for commands
1034          * that require the port to be in a quiescent state.
1035          */
1036         switch (cmd) {
1037         case TIOCSETAW:
1038         case TIOCSETAF:
1039         case TIOCDRAIN:
1040 #ifdef COMPAT_43
1041         case TIOCSETP:
1042 #endif
1043                 blocked++;      /* block writes for ttywait() and siparam() */
1044                 si_write_enable(pp, 0);
1045         }
1046
1047         error = (*linesw[tp->t_line].l_ioctl)(tp, cmd, data, flag, td);
1048         if (error != ENOIOCTL)
1049                 goto out;
1050
1051         oldspl = spltty();
1052
1053         error = ttioctl(tp, cmd, data, flag);
1054         si_disc_optim(tp, &tp->t_termios, pp);
1055         if (error != ENOIOCTL) {
1056                 splx(oldspl);
1057                 goto out;
1058         }
1059
1060         error = 0;
1061         switch (cmd) {
1062         case TIOCSBRK:
1063                 si_command(pp, SBREAK, SI_WAIT);
1064                 break;
1065         case TIOCCBRK:
1066                 si_command(pp, EBREAK, SI_WAIT);
1067                 break;
1068         case TIOCSDTR:
1069                 (void) si_modem(pp, SET, TIOCM_DTR|TIOCM_RTS);
1070                 break;
1071         case TIOCCDTR:
1072                 (void) si_modem(pp, SET, 0);
1073                 break;
1074         case TIOCMSET:
1075                 (void) si_modem(pp, SET, *(int *)data);
1076                 break;
1077         case TIOCMBIS:
1078                 (void) si_modem(pp, BIS, *(int *)data);
1079                 break;
1080         case TIOCMBIC:
1081                 (void) si_modem(pp, BIC, *(int *)data);
1082                 break;
1083         case TIOCMGET:
1084                 *(int *)data = si_modem(pp, GET, 0);
1085                 break;
1086         case TIOCMSDTRWAIT:
1087                 /* must be root since the wait applies to following logins */
1088                 error = suser(td);
1089                 if (error == 0)
1090                         pp->sp_dtr_wait = *(int *)data * hz / 100;
1091                 break;
1092         case TIOCMGDTRWAIT:
1093                 *(int *)data = pp->sp_dtr_wait * 100 / hz;
1094                 break;
1095         default:
1096                 error = ENOTTY;
1097         }
1098         splx(oldspl);
1099
1100 out:
1101         DPRINT((pp, DBG_IOCTL|DBG_EXIT, "siioctl ret %d\n", error));
1102         if (blocked)
1103                 si_write_enable(pp, 1);
1104         return(error);
1105 }
1106
1107 /*
1108  * Handle the Specialix ioctls. All MUST be called via the CONTROL device
1109  */
1110 static int
1111 si_Sioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct thread *td)
1112 {
1113         struct si_softc *xsc;
1114         struct si_port *xpp;
1115         volatile struct si_reg *regp;
1116         struct si_tcsi *dp;
1117         struct si_pstat *sps;
1118         int *ip, error = 0;
1119         int oldspl;
1120         int card, port;
1121         int mynor = minor(dev);
1122
1123         DPRINT((0, DBG_ENTRY|DBG_IOCTL, "si_Sioctl(%s,%lx,%x,%x)\n",
1124                 devtoname(dev), cmd, data, flag));
1125
1126 #if 1
1127         DPRINT((0, DBG_IOCTL, "TCSI_PORT=%x\n", TCSI_PORT));
1128         DPRINT((0, DBG_IOCTL, "TCSI_CCB=%x\n", TCSI_CCB));
1129         DPRINT((0, DBG_IOCTL, "TCSI_TTY=%x\n", TCSI_TTY));
1130 #endif
1131
1132         if (!IS_CONTROLDEV(mynor)) {
1133                 DPRINT((0, DBG_IOCTL|DBG_FAIL, "not called from control device!\n"));
1134                 return(ENODEV);
1135         }
1136
1137         oldspl = spltty();      /* better safe than sorry */
1138
1139         ip = (int *)data;
1140
1141 #define SUCHECK if ((error = suser(td))) goto out
1142
1143         switch (cmd) {
1144         case TCSIPORTS:
1145                 *ip = si_Nports;
1146                 goto out;
1147         case TCSIMODULES:
1148                 *ip = si_Nmodules;
1149                 goto out;
1150         case TCSISDBG_ALL:
1151                 SUCHECK;
1152                 si_debug = *ip;
1153                 goto out;
1154         case TCSIGDBG_ALL:
1155                 *ip = si_debug;
1156                 goto out;
1157         default:
1158                 /*
1159                  * Check that a controller for this port exists
1160                  */
1161
1162                 /* may also be a struct si_pstat, a superset of si_tcsi */
1163
1164                 dp = (struct si_tcsi *)data;
1165                 sps = (struct si_pstat *)data;
1166                 card = dp->tc_card;
1167                 xsc = devclass_get_softc(si_devclass, card);    /* check.. */
1168                 if (xsc == NULL || xsc->sc_type == SIEMPTY) {
1169                         error = ENOENT;
1170                         goto out;
1171                 }
1172                 /*
1173                  * And check that a port exists
1174                  */
1175                 port = dp->tc_port;
1176                 if (port < 0 || port >= xsc->sc_nport) {
1177                         error = ENOENT;
1178                         goto out;
1179                 }
1180                 xpp = xsc->sc_ports + port;
1181                 regp = (struct si_reg *)xsc->sc_maddr;
1182         }
1183
1184         switch (cmd) {
1185         case TCSIDEBUG:
1186 #ifdef  SI_DEBUG
1187                 SUCHECK;
1188                 if (xpp->sp_debug)
1189                         xpp->sp_debug = 0;
1190                 else {
1191                         xpp->sp_debug = DBG_ALL;
1192                         DPRINT((xpp, DBG_IOCTL, "debug toggled %s\n",
1193                                 (xpp->sp_debug&DBG_ALL)?"ON":"OFF"));
1194                 }
1195                 break;
1196 #else
1197                 error = ENODEV;
1198                 goto out;
1199 #endif
1200         case TCSISDBG_LEVEL:
1201         case TCSIGDBG_LEVEL:
1202 #ifdef  SI_DEBUG
1203                 if (cmd == TCSIGDBG_LEVEL) {
1204                         dp->tc_dbglvl = xpp->sp_debug;
1205                 } else {
1206                         SUCHECK;
1207                         xpp->sp_debug = dp->tc_dbglvl;
1208                 }
1209                 break;
1210 #else
1211                 error = ENODEV;
1212                 goto out;
1213 #endif
1214         case TCSIGRXIT:
1215                 dp->tc_int = regp->rx_int_count;
1216                 break;
1217         case TCSIRXIT:
1218                 SUCHECK;
1219                 regp->rx_int_count = dp->tc_int;
1220                 break;
1221         case TCSIGIT:
1222                 dp->tc_int = regp->int_count;
1223                 break;
1224         case TCSIIT:
1225                 SUCHECK;
1226                 regp->int_count = dp->tc_int;
1227                 break;
1228         case TCSISTATE:
1229                 dp->tc_int = xpp->sp_ccb->hi_ip;
1230                 break;
1231         /* these next three use a different structure */
1232         case TCSI_PORT:
1233                 SUCHECK;
1234                 si_bcopy(xpp, &sps->tc_siport, sizeof(sps->tc_siport));
1235                 break;
1236         case TCSI_CCB:
1237                 SUCHECK;
1238                 si_vbcopy(xpp->sp_ccb, &sps->tc_ccb, sizeof(sps->tc_ccb));
1239                 break;
1240         case TCSI_TTY:
1241                 SUCHECK;
1242                 si_bcopy(xpp->sp_tty, &sps->tc_tty, sizeof(sps->tc_tty));
1243                 break;
1244         default:
1245                 error = EINVAL;
1246                 goto out;
1247         }
1248 out:
1249         splx(oldspl);
1250         return(error);          /* success */
1251 }
1252
1253 /*
1254  *      siparam()       : Configure line params
1255  *      called at spltty();
1256  *      this may sleep, does not flush, nor wait for drain, nor block writes
1257  *      caller must arrange this if it's important..
1258  */
1259 static int
1260 siparam(struct tty *tp, struct termios *t)
1261 {
1262         struct si_port *pp = TP2PP(tp);
1263         volatile struct si_channel *ccbp;
1264         int oldspl, cflag, iflag, oflag, lflag;
1265         int error = 0;          /* shutup gcc */
1266         int ispeed = 0;         /* shutup gcc */
1267         int ospeed = 0;         /* shutup gcc */
1268         BYTE val;
1269
1270         DPRINT((pp, DBG_ENTRY|DBG_PARAM, "siparam(%x,%x)\n", tp, t));
1271         cflag = t->c_cflag;
1272         iflag = t->c_iflag;
1273         oflag = t->c_oflag;
1274         lflag = t->c_lflag;
1275         DPRINT((pp, DBG_PARAM, "OFLAG 0x%x CFLAG 0x%x IFLAG 0x%x LFLAG 0x%x\n",
1276                 oflag, cflag, iflag, lflag));
1277
1278         /* XXX - if Jet host and SXDC module, use extended baud rates */
1279
1280         /* if not hung up.. */
1281         if (t->c_ospeed != 0) {
1282                 /* translate baud rate to firmware values */
1283                 ospeed = ttspeedtab(t->c_ospeed, bdrates);
1284                 ispeed = t->c_ispeed ?
1285                          ttspeedtab(t->c_ispeed, bdrates) : ospeed;
1286
1287                 /* enforce legit baud rate */
1288                 if (ospeed < 0 || ispeed < 0)
1289                         return (EINVAL);
1290         }
1291
1292         oldspl = spltty();
1293
1294         ccbp = pp->sp_ccb;
1295
1296         /* ========== set hi_break ========== */
1297         val = 0;
1298         if (iflag & IGNBRK)             /* Breaks */
1299                 val |= BR_IGN;
1300         if (iflag & BRKINT)             /* Interrupt on break? */
1301                 val |= BR_INT;
1302         if (iflag & PARMRK)             /* Parity mark? */
1303                 val |= BR_PARMRK;
1304         if (iflag & IGNPAR)             /* Ignore chars with parity errors? */
1305                 val |= BR_PARIGN;
1306         ccbp->hi_break = val;
1307
1308         /* ========== set hi_csr ========== */
1309         /* if not hung up.. */
1310         if (t->c_ospeed != 0) {
1311                 /* Set I/O speeds */
1312                  val = (ispeed << 4) | ospeed;
1313         }
1314         ccbp->hi_csr = val;
1315
1316         /* ========== set hi_mr2 ========== */
1317         val = 0;
1318         if (cflag & CSTOPB)                             /* Stop bits */
1319                 val |= MR2_2_STOP;
1320         else
1321                 val |= MR2_1_STOP;
1322         /*
1323          * Enable H/W RTS/CTS handshaking. The default TA/MTA is
1324          * a DCE, hence the reverse sense of RTS and CTS
1325          */
1326         /* Output Flow - RTS must be raised before data can be sent */
1327         if (cflag & CCTS_OFLOW)
1328                 val |= MR2_RTSCONT;
1329
1330         ccbp->hi_mr2 = val;
1331
1332         /* ========== set hi_mr1 ========== */
1333         val = 0;
1334         if (!(cflag & PARENB))                          /* Parity */
1335                 val |= MR1_NONE;
1336         else
1337                 val |= MR1_WITH;
1338         if (cflag & PARODD)
1339                 val |= MR1_ODD;
1340
1341         if ((cflag & CS8) == CS8) {                     /* 8 data bits? */
1342                 val |= MR1_8_BITS;
1343         } else if ((cflag & CS7) == CS7) {              /* 7 data bits? */
1344                 val |= MR1_7_BITS;
1345         } else if ((cflag & CS6) == CS6) {              /* 6 data bits? */
1346                 val |= MR1_6_BITS;
1347         } else {                                        /* Must be 5 */
1348                 val |= MR1_5_BITS;
1349         }
1350         /*
1351          * Enable H/W RTS/CTS handshaking. The default TA/MTA is
1352          * a DCE, hence the reverse sense of RTS and CTS
1353          */
1354         /* Input Flow - CTS is raised when port is ready to receive data */
1355         if (cflag & CRTS_IFLOW)
1356                 val |= MR1_CTSCONT;
1357
1358         ccbp->hi_mr1 = val;
1359
1360         /* ========== set hi_mask ========== */
1361         val = 0xff;
1362         if ((cflag & CS8) == CS8) {                     /* 8 data bits? */
1363                 val &= 0xFF;
1364         } else if ((cflag & CS7) == CS7) {              /* 7 data bits? */
1365                 val &= 0x7F;
1366         } else if ((cflag & CS6) == CS6) {              /* 6 data bits? */
1367                 val &= 0x3F;
1368         } else {                                        /* Must be 5 */
1369                 val &= 0x1F;
1370         }
1371         if (iflag & ISTRIP)
1372                 val &= 0x7F;
1373
1374         ccbp->hi_mask = val;
1375
1376         /* ========== set hi_prtcl ========== */
1377         val = SP_DCEN;          /* Monitor DCD always, or TIOCMGET misses it */
1378         if (iflag & IXANY)
1379                 val |= SP_TANY;
1380         if (iflag & IXON)
1381                 val |= SP_TXEN;
1382         if (iflag & IXOFF)
1383                 val |= SP_RXEN;
1384         if (iflag & INPCK)
1385                 val |= SP_PAEN;
1386
1387         ccbp->hi_prtcl = val;
1388
1389
1390         /* ========== set hi_{rx|tx}{on|off} ========== */
1391         /* XXX: the card TOTALLY shields us from the flow control... */
1392         ccbp->hi_txon = t->c_cc[VSTART];
1393         ccbp->hi_txoff = t->c_cc[VSTOP];
1394
1395         ccbp->hi_rxon = t->c_cc[VSTART];
1396         ccbp->hi_rxoff = t->c_cc[VSTOP];
1397
1398         /* ========== send settings to the card ========== */
1399         /* potential sleep here */
1400         if (ccbp->hi_stat == IDLE_CLOSE)                /* Not yet open */
1401                 si_command(pp, LOPEN, SI_WAIT);         /* open it */
1402         else
1403                 si_command(pp, CONFIG, SI_WAIT);        /* change params */
1404
1405         /* ========== set DTR etc ========== */
1406         /* Hangup if ospeed == 0 */
1407         if (t->c_ospeed == 0) {
1408                 (void) si_modem(pp, BIC, TIOCM_DTR|TIOCM_RTS);
1409         } else {
1410                 /*
1411                  * If the previous speed was 0, may need to re-enable
1412                  * the modem signals
1413                  */
1414                 (void) si_modem(pp, SET, TIOCM_DTR|TIOCM_RTS);
1415         }
1416
1417         DPRINT((pp, DBG_PARAM, "siparam, complete: MR1 %x MR2 %x HI_MASK %x PRTCL %x HI_BREAK %x\n",
1418                 ccbp->hi_mr1, ccbp->hi_mr2, ccbp->hi_mask, ccbp->hi_prtcl, ccbp->hi_break));
1419
1420         splx(oldspl);
1421         return(error);
1422 }
1423
1424 /*
1425  * Enable or Disable the writes to this channel...
1426  * "state" ->  enabled = 1; disabled = 0;
1427  */
1428 static void
1429 si_write_enable(struct si_port *pp, int state)
1430 {
1431         int oldspl;
1432
1433         oldspl = spltty();
1434
1435         if (state) {
1436                 pp->sp_state &= ~SS_BLOCKWRITE;
1437                 if (pp->sp_state & SS_WAITWRITE) {
1438                         pp->sp_state &= ~SS_WAITWRITE;
1439                         /* thunder away! */
1440                         wakeup((caddr_t)pp);
1441                 }
1442         } else {
1443                 pp->sp_state |= SS_BLOCKWRITE;
1444         }
1445
1446         splx(oldspl);
1447 }
1448
1449 /*
1450  * Set/Get state of modem control lines.
1451  * Due to DCE-like behaviour of the adapter, some signals need translation:
1452  *      TIOCM_DTR       DSR
1453  *      TIOCM_RTS       CTS
1454  */
1455 static int
1456 si_modem(struct si_port *pp, enum si_mctl cmd, int bits)
1457 {
1458         volatile struct si_channel *ccbp;
1459         int x;
1460
1461         DPRINT((pp, DBG_ENTRY|DBG_MODEM, "si_modem(%x,%s,%x)\n", pp, si_mctl2str(cmd), bits));
1462         ccbp = pp->sp_ccb;              /* Find channel address */
1463         switch (cmd) {
1464         case GET:
1465                 x = ccbp->hi_ip;
1466                 bits = TIOCM_LE;
1467                 if (x & IP_DCD)         bits |= TIOCM_CAR;
1468                 if (x & IP_DTR)         bits |= TIOCM_DTR;
1469                 if (x & IP_RTS)         bits |= TIOCM_RTS;
1470                 if (x & IP_RI)          bits |= TIOCM_RI;
1471                 return(bits);
1472         case SET:
1473                 ccbp->hi_op &= ~(OP_DSR|OP_CTS);
1474                 /* fall through */
1475         case BIS:
1476                 x = 0;
1477                 if (bits & TIOCM_DTR)
1478                         x |= OP_DSR;
1479                 if (bits & TIOCM_RTS)
1480                         x |= OP_CTS;
1481                 ccbp->hi_op |= x;
1482                 break;
1483         case BIC:
1484                 if (bits & TIOCM_DTR)
1485                         ccbp->hi_op &= ~OP_DSR;
1486                 if (bits & TIOCM_RTS)
1487                         ccbp->hi_op &= ~OP_CTS;
1488         }
1489         return 0;
1490 }
1491
1492 /*
1493  * Handle change of modem state
1494  */
1495 static void
1496 si_modem_state(struct si_port *pp, struct tty *tp, int hi_ip)
1497 {
1498                                                         /* if a modem dev */
1499         if (hi_ip & IP_DCD) {
1500                 if (!(pp->sp_last_hi_ip & IP_DCD)) {
1501                         DPRINT((pp, DBG_INTR, "modem carr on t_line %d\n",
1502                                 tp->t_line));
1503                         (void)(*linesw[tp->t_line].l_modem)(tp, 1);
1504                 }
1505         } else {
1506                 if (pp->sp_last_hi_ip & IP_DCD) {
1507                         DPRINT((pp, DBG_INTR, "modem carr off\n"));
1508                         if ((*linesw[tp->t_line].l_modem)(tp, 0))
1509                                 (void) si_modem(pp, SET, 0);
1510                 }
1511         }
1512         pp->sp_last_hi_ip = hi_ip;
1513
1514 }
1515
1516 /*
1517  * Poller to catch missed interrupts.
1518  *
1519  * Note that the SYSV Specialix drivers poll at 100 times per second to get
1520  * better response.  We could really use a "periodic" version timeout(). :-)
1521  */
1522 #ifdef POLL
1523 static void
1524 si_poll(void *nothing)
1525 {
1526         struct si_softc *sc;
1527         int i;
1528         volatile struct si_reg *regp;
1529         struct si_port *pp;
1530         int lost, oldspl, port;
1531
1532         DPRINT((0, DBG_POLL, "si_poll()\n"));
1533         oldspl = spltty();
1534         if (in_intr)
1535                 goto out;
1536         lost = 0;
1537         for (i = 0; i < si_numunits; i++) {
1538                 sc = devclass_get_softc(si_devclass, i);
1539                 if (sc == NULL || sc->sc_type == SIEMPTY)
1540                         continue;
1541                 regp = (struct si_reg *)sc->sc_maddr;
1542
1543                 /*
1544                  * See if there has been a pending interrupt for 2 seconds
1545                  * or so. The test (int_scounter >= 200) won't correspond
1546                  * to 2 seconds if int_count gets changed.
1547                  */
1548                 if (regp->int_pending != 0) {
1549                         if (regp->int_scounter >= 200 &&
1550                             regp->initstat == 1) {
1551                                 printf("si%d: lost intr\n", i);
1552                                 lost++;
1553                         }
1554                 } else {
1555                         regp->int_scounter = 0;
1556                 }
1557
1558                 /*
1559                  * gripe about no input flow control..
1560                  */
1561                 pp = sc->sc_ports;
1562                 for (port = 0; port < sc->sc_nport; pp++, port++) {
1563                         if (pp->sp_delta_overflows > 0) {
1564                                 printf("si%d: %d tty level buffer overflows\n",
1565                                         i, pp->sp_delta_overflows);
1566                                 pp->sp_delta_overflows = 0;
1567                         }
1568                 }
1569         }
1570         if (lost || si_realpoll)
1571                 si_intr(NULL);  /* call intr with fake vector */
1572 out:
1573         splx(oldspl);
1574
1575         timeout(si_poll, (caddr_t)0L, si_pollrate);
1576 }
1577 #endif  /* ifdef POLL */
1578
1579 /*
1580  * The interrupt handler polls ALL ports on ALL adapters each time
1581  * it is called.
1582  */
1583
1584 static BYTE si_rxbuf[SI_BUFFERSIZE];    /* input staging area */
1585 static BYTE si_txbuf[SI_BUFFERSIZE];    /* output staging area */
1586
1587 void
1588 si_intr(void *arg)
1589 {
1590         struct si_softc *sc;
1591         struct si_port *pp;
1592         volatile struct si_channel *ccbp;
1593         struct tty *tp;
1594         volatile caddr_t maddr;
1595         BYTE op, ip;
1596         int x, card, port, n, i, isopen;
1597         volatile BYTE *z;
1598         BYTE c;
1599
1600         sc = arg;
1601
1602         DPRINT((0, arg == NULL ? DBG_POLL:DBG_INTR, "si_intr\n"));
1603         if (in_intr)
1604                 return;
1605         in_intr = 1;
1606
1607         /*
1608          * When we get an int we poll all the channels and do ALL pending
1609          * work, not just the first one we find. This allows all cards to
1610          * share the same vector.
1611          *
1612          * XXX - But if we're sharing the vector with something that's NOT
1613          * a SI/XIO/SX card, we may be making more work for ourselves.
1614          */
1615         for (card = 0; card < si_numunits; card++) {
1616                 sc = devclass_get_softc(si_devclass, card);
1617                 if (sc == NULL || sc->sc_type == SIEMPTY)
1618                         continue;
1619
1620                 /*
1621                  * First, clear the interrupt
1622                  */
1623                 switch(sc->sc_type) {
1624                 case SIHOST:
1625                         maddr = sc->sc_maddr;
1626                         ((volatile struct si_reg *)maddr)->int_pending = 0;
1627                                                         /* flag nothing pending */
1628                         *(maddr+SIINTCL) = 0x00;        /* Set IRQ clear */
1629                         *(maddr+SIINTCL_CL) = 0x00;     /* Clear IRQ clear */
1630                         break;
1631                 case SIHOST2:
1632                         maddr = sc->sc_maddr;
1633                         ((volatile struct si_reg *)maddr)->int_pending = 0;
1634                         *(maddr+SIPLIRQCLR) = 0x00;
1635                         *(maddr+SIPLIRQCLR) = 0x10;
1636                         break;
1637                 case SIPCI:
1638                         maddr = sc->sc_maddr;
1639                         ((volatile struct si_reg *)maddr)->int_pending = 0;
1640                         *(maddr+SIPCIINTCL) = 0x0;
1641                         break;
1642                 case SIJETPCI:  /* fall through to JETISA case */
1643                 case SIJETISA:
1644                         maddr = sc->sc_maddr;
1645                         ((volatile struct si_reg *)maddr)->int_pending = 0;
1646                         *(maddr+SIJETINTCL) = 0x0;
1647                         break;
1648                 case SIEISA:
1649                         maddr = sc->sc_maddr;
1650                         ((volatile struct si_reg *)maddr)->int_pending = 0;
1651                         (void)inb(sc->sc_iobase + 3);
1652                         break;
1653                 case SIEMPTY:
1654                 default:
1655                         continue;
1656                 }
1657                 ((volatile struct si_reg *)maddr)->int_scounter = 0;
1658
1659                 /*
1660                  * check each port
1661                  */
1662                 for (pp = sc->sc_ports, port = 0; port < sc->sc_nport;
1663                      pp++, port++) {
1664                         ccbp = pp->sp_ccb;
1665                         tp = pp->sp_tty;
1666
1667                         /*
1668                          * See if a command has completed ?
1669                          */
1670                         if (ccbp->hi_stat != pp->sp_pend) {
1671                                 DPRINT((pp, DBG_INTR,
1672                                         "si_intr hi_stat = 0x%x, pend = %d\n",
1673                                         ccbp->hi_stat, pp->sp_pend));
1674                                 switch(pp->sp_pend) {
1675                                 case LOPEN:
1676                                 case MPEND:
1677                                 case MOPEN:
1678                                 case CONFIG:
1679                                 case SBREAK:
1680                                 case EBREAK:
1681                                         pp->sp_pend = ccbp->hi_stat;
1682                                                 /* sleeping in si_command */
1683                                         wakeup(&pp->sp_state);
1684                                         break;
1685                                 default:
1686                                         pp->sp_pend = ccbp->hi_stat;
1687                                 }
1688                         }
1689
1690                         /*
1691                          * Continue on if it's closed
1692                          */
1693                         if (ccbp->hi_stat == IDLE_CLOSE) {
1694                                 continue;
1695                         }
1696
1697                         /*
1698                          * Do modem state change if not a local device
1699                          */
1700                         si_modem_state(pp, tp, ccbp->hi_ip);
1701
1702                         /*
1703                          * Check to see if we should 'receive' characters.
1704                          */
1705                         if (tp->t_state & TS_CONNECTED &&
1706                             tp->t_state & TS_ISOPEN)
1707                                 isopen = 1;
1708                         else
1709                                 isopen = 0;
1710
1711                         /*
1712                          * Do input break processing
1713                          */
1714                         if (ccbp->hi_state & ST_BREAK) {
1715                                 if (isopen) {
1716                                     (*linesw[tp->t_line].l_rint)(TTY_BI, tp);
1717                                 }
1718                                 ccbp->hi_state &= ~ST_BREAK;   /* A Bit iffy this */
1719                                 DPRINT((pp, DBG_INTR, "si_intr break\n"));
1720                         }
1721
1722                         /*
1723                          * Do RX stuff - if not open then dump any characters.
1724                          * XXX: This is VERY messy and needs to be cleaned up.
1725                          *
1726                          * XXX: can we leave data in the host adapter buffer
1727                          * when the clists are full?  That may be dangerous
1728                          * if the user cannot get an interrupt signal through.
1729                          */
1730
1731         more_rx:        /* XXX Sorry. the nesting was driving me bats! :-( */
1732
1733                         if (!isopen) {
1734                                 ccbp->hi_rxopos = ccbp->hi_rxipos;
1735                                 goto end_rx;
1736                         }
1737
1738                         /*
1739                          * If the tty input buffers are blocked, stop emptying
1740                          * the incoming buffers and let the auto flow control
1741                          * assert..
1742                          */
1743                         if (tp->t_state & TS_TBLOCK) {
1744                                 goto end_rx;
1745                         }
1746
1747                         /*
1748                          * Process read characters if not skipped above
1749                          */
1750                         op = ccbp->hi_rxopos;
1751                         ip = ccbp->hi_rxipos;
1752                         c = ip - op;
1753                         if (c == 0) {
1754                                 goto end_rx;
1755                         }
1756
1757                         n = c & 0xff;
1758                         if (n > 250)
1759                                 n = 250;
1760
1761                         DPRINT((pp, DBG_INTR, "n = %d, op = %d, ip = %d\n",
1762                                                 n, op, ip));
1763
1764                         /*
1765                          * Suck characters out of host card buffer into the
1766                          * "input staging buffer" - so that we dont leave the
1767                          * host card in limbo while we're possibly echoing
1768                          * characters and possibly flushing input inside the
1769                          * ldisc l_rint() routine.
1770                          */
1771                         if (n <= SI_BUFFERSIZE - op) {
1772
1773                                 DPRINT((pp, DBG_INTR, "\tsingle copy\n"));
1774                                 z = ccbp->hi_rxbuf + op;
1775                                 si_vbcopy(z, si_rxbuf, n);
1776
1777                                 op += n;
1778                         } else {
1779                                 x = SI_BUFFERSIZE - op;
1780
1781                                 DPRINT((pp, DBG_INTR, "\tdouble part 1 %d\n", x));
1782                                 z = ccbp->hi_rxbuf + op;
1783                                 si_vbcopy(z, si_rxbuf, x);
1784
1785                                 DPRINT((pp, DBG_INTR, "\tdouble part 2 %d\n",
1786                                         n - x));
1787                                 z = ccbp->hi_rxbuf;
1788                                 si_vbcopy(z, si_rxbuf + x, n - x);
1789
1790                                 op += n;
1791                         }
1792
1793                         /* clear collected characters from buffer */
1794                         ccbp->hi_rxopos = op;
1795
1796                         DPRINT((pp, DBG_INTR, "n = %d, op = %d, ip = %d\n",
1797                                                 n, op, ip));
1798
1799                         /*
1800                          * at this point...
1801                          * n = number of chars placed in si_rxbuf
1802                          */
1803
1804                         /*
1805                          * Avoid the grotesquely inefficient lineswitch
1806                          * routine (ttyinput) in "raw" mode. It usually
1807                          * takes about 450 instructions (that's without
1808                          * canonical processing or echo!). slinput is
1809                          * reasonably fast (usually 40 instructions
1810                          * plus call overhead).
1811                          */
1812                         if (tp->t_state & TS_CAN_BYPASS_L_RINT) {
1813
1814                                 /* block if the driver supports it */
1815                                 if (tp->t_rawq.c_cc + n >= SI_I_HIGH_WATER &&
1816                                     (tp->t_cflag & CRTS_IFLOW ||
1817                                      tp->t_iflag & IXOFF) &&
1818                                     !(tp->t_state & TS_TBLOCK))
1819                                         ttyblock(tp);
1820
1821                                 tk_nin += n;
1822                                 tk_rawcc += n;
1823                                 tp->t_rawcc += n;
1824
1825                                 pp->sp_delta_overflows +=
1826                                     b_to_q((char *)si_rxbuf, n, &tp->t_rawq);
1827
1828                                 ttwakeup(tp);
1829                                 if (tp->t_state & TS_TTSTOP &&
1830                                     (tp->t_iflag & IXANY ||
1831                                      tp->t_cc[VSTART] == tp->t_cc[VSTOP])) {
1832                                         tp->t_state &= ~TS_TTSTOP;
1833                                         tp->t_lflag &= ~FLUSHO;
1834                                         si_start(tp);
1835                                 }
1836                         } else {
1837                                 /*
1838                                  * It'd be nice to not have to go through the
1839                                  * function call overhead for each char here.
1840                                  * It'd be nice to block input it, saving a
1841                                  * loop here and the call/return overhead.
1842                                  */
1843                                 for(x = 0; x < n; x++) {
1844                                         i = si_rxbuf[x];
1845                                         if ((*linesw[tp->t_line].l_rint)(i, tp)
1846                                              == -1) {
1847                                                 pp->sp_delta_overflows++;
1848                                         }
1849                                         /*
1850                                          * doesn't seem to be much point doing
1851                                          * this here.. this driver has no
1852                                          * softtty processing! ??
1853                                          */
1854                                         if (pp->sp_hotchar && i == pp->sp_hotchar) {
1855                                                 setsofttty();
1856                                         }
1857                                 }
1858                         }
1859                         goto more_rx;   /* try for more until RXbuf is empty */
1860
1861         end_rx:         /* XXX: Again, sorry about the gotos.. :-) */
1862
1863                         /*
1864                          * Do TX stuff
1865                          */
1866                         (*linesw[tp->t_line].l_start)(tp);
1867
1868                 } /* end of for (all ports on this controller) */
1869         } /* end of for (all controllers) */
1870
1871         in_intr = 0;
1872         DPRINT((0, arg == NULL ? DBG_POLL:DBG_INTR, "end si_intr\n"));
1873 }
1874
1875 /*
1876  * Nudge the transmitter...
1877  *
1878  * XXX: I inherited some funny code here.  It implies the host card only
1879  * interrupts when the transmit buffer reaches the low-water-mark, and does
1880  * not interrupt when it's actually hits empty.  In some cases, we have
1881  * processes waiting for complete drain, and we need to simulate an interrupt
1882  * about when we think the buffer is going to be empty (and retry if not).
1883  * I really am not certain about this...  I *need* the hardware manuals.
1884  */
1885 static void
1886 si_start(struct tty *tp)
1887 {
1888         struct si_port *pp;
1889         volatile struct si_channel *ccbp;
1890         struct clist *qp;
1891         BYTE ipos;
1892         int nchar;
1893         int oldspl, count, n, amount, buffer_full;
1894
1895         oldspl = spltty();
1896
1897         qp = &tp->t_outq;
1898         pp = TP2PP(tp);
1899
1900         DPRINT((pp, DBG_ENTRY|DBG_START,
1901                 "si_start(%x) t_state %x sp_state %x t_outq.c_cc %d\n",
1902                 tp, tp->t_state, pp->sp_state, qp->c_cc));
1903
1904         if (tp->t_state & (TS_TIMEOUT|TS_TTSTOP))
1905                 goto out;
1906
1907         buffer_full = 0;
1908         ccbp = pp->sp_ccb;
1909
1910         count = (int)ccbp->hi_txipos - (int)ccbp->hi_txopos;
1911         DPRINT((pp, DBG_START, "count %d\n", (BYTE)count));
1912
1913         while ((nchar = qp->c_cc) > 0) {
1914                 if ((BYTE)count >= 255) {
1915                         buffer_full++;
1916                         break;
1917                 }
1918                 amount = min(nchar, (255 - (BYTE)count));
1919                 ipos = (unsigned int)ccbp->hi_txipos;
1920                 n = q_to_b(&tp->t_outq, si_txbuf, amount);
1921                 /* will it fit in one lump? */
1922                 if ((SI_BUFFERSIZE - ipos) >= n) {
1923                         si_bcopyv(si_txbuf, &ccbp->hi_txbuf[ipos], n);
1924                 } else {
1925                         si_bcopyv(si_txbuf, &ccbp->hi_txbuf[ipos],
1926                                 SI_BUFFERSIZE - ipos);
1927                         si_bcopyv(si_txbuf + (SI_BUFFERSIZE - ipos),
1928                                 &ccbp->hi_txbuf[0], n - (SI_BUFFERSIZE - ipos));
1929                 }
1930                 ccbp->hi_txipos += n;
1931                 count = (int)ccbp->hi_txipos - (int)ccbp->hi_txopos;
1932         }
1933
1934         if (count != 0 && nchar == 0) {
1935                 tp->t_state |= TS_BUSY;
1936         } else {
1937                 tp->t_state &= ~TS_BUSY;
1938         }
1939
1940         /* wakeup time? */
1941         ttwwakeup(tp);
1942
1943         DPRINT((pp, DBG_START, "count %d, nchar %d, tp->t_state 0x%x\n",
1944                 (BYTE)count, nchar, tp->t_state));
1945
1946         if (tp->t_state & TS_BUSY)
1947         {
1948                 int time;
1949
1950                 time = ttspeedtab(tp->t_ospeed, chartimes);
1951
1952                 if (time > 0) {
1953                         if (time < nchar)
1954                                 time = nchar / time;
1955                         else
1956                                 time = 2;
1957                 } else {
1958                         DPRINT((pp, DBG_START,
1959                                 "bad char time value! %d\n", time));
1960                         time = hz/10;
1961                 }
1962
1963                 if ((pp->sp_state & (SS_LSTART|SS_INLSTART)) == SS_LSTART) {
1964                         untimeout(si_lstart, (caddr_t)pp, pp->lstart_ch);
1965                 } else {
1966                         pp->sp_state |= SS_LSTART;
1967                 }
1968                 DPRINT((pp, DBG_START, "arming lstart, time=%d\n", time));
1969                 pp->lstart_ch = timeout(si_lstart, (caddr_t)pp, time);
1970         }
1971
1972 out:
1973         splx(oldspl);
1974         DPRINT((pp, DBG_EXIT|DBG_START, "leave si_start()\n"));
1975 }
1976
1977 /*
1978  * Note: called at splsoftclock from the timeout code
1979  * This has to deal with two things...  cause wakeups while waiting for
1980  * tty drains on last process exit, and call l_start at about the right
1981  * time for protocols like ppp.
1982  */
1983 static void
1984 si_lstart(void *arg)
1985 {
1986         struct si_port *pp = arg;
1987         struct tty *tp;
1988         int oldspl;
1989
1990         DPRINT((pp, DBG_ENTRY|DBG_LSTART, "si_lstart(%x) sp_state %x\n",
1991                 pp, pp->sp_state));
1992
1993         oldspl = spltty();
1994
1995         if ((pp->sp_state & SS_OPEN) == 0 || (pp->sp_state & SS_LSTART) == 0) {
1996                 splx(oldspl);
1997                 return;
1998         }
1999         pp->sp_state &= ~SS_LSTART;
2000         pp->sp_state |= SS_INLSTART;
2001
2002         tp = pp->sp_tty;
2003
2004         /* deal with the process exit case */
2005         ttwwakeup(tp);
2006
2007         /* nudge protocols - eg: ppp */
2008         (*linesw[tp->t_line].l_start)(tp);
2009
2010         pp->sp_state &= ~SS_INLSTART;
2011         splx(oldspl);
2012 }
2013
2014 /*
2015  * Stop output on a line. called at spltty();
2016  */
2017 void
2018 si_stop(struct tty *tp, int rw)
2019 {
2020         volatile struct si_channel *ccbp;
2021         struct si_port *pp;
2022
2023         pp = TP2PP(tp);
2024         ccbp = pp->sp_ccb;
2025
2026         DPRINT((TP2PP(tp), DBG_ENTRY|DBG_STOP, "si_stop(%x,%x)\n", tp, rw));
2027
2028         /* XXX: must check (rw & FWRITE | FREAD) etc flushing... */
2029         if (rw & FWRITE) {
2030                 /* what level are we meant to be flushing anyway? */
2031                 if (tp->t_state & TS_BUSY) {
2032                         si_command(TP2PP(tp), WFLUSH, SI_NOWAIT);
2033                         tp->t_state &= ~TS_BUSY;
2034                         ttwwakeup(tp);  /* Bruce???? */
2035                 }
2036         }
2037 #if 1   /* XXX: this doesn't work right yet.. */
2038         /* XXX: this may have been failing because we used to call l_rint()
2039          * while we were looping based on these two counters. Now, we collect
2040          * the data and then loop stuffing it into l_rint(), making this
2041          * useless.  Should we cause this to blow away the staging buffer?
2042          */
2043         if (rw & FREAD) {
2044                 ccbp->hi_rxopos = ccbp->hi_rxipos;
2045         }
2046 #endif
2047 }
2048
2049 /*
2050  * Issue a command to the host card CPU.
2051  */
2052
2053 static void
2054 si_command(struct si_port *pp, int cmd, int waitflag)
2055 {
2056         int oldspl;
2057         volatile struct si_channel *ccbp = pp->sp_ccb;
2058         int x;
2059
2060         DPRINT((pp, DBG_ENTRY|DBG_PARAM, "si_command(%x,%x,%d): hi_stat 0x%x\n",
2061                 pp, cmd, waitflag, ccbp->hi_stat));
2062
2063         oldspl = spltty();              /* Keep others out */
2064
2065         /* wait until it's finished what it was doing.. */
2066         /* XXX: sits in IDLE_BREAK until something disturbs it or break
2067          * is turned off. */
2068         while((x = ccbp->hi_stat) != IDLE_OPEN &&
2069                         x != IDLE_CLOSE &&
2070                         x != IDLE_BREAK &&
2071                         x != cmd) {
2072                 if (in_intr) {                  /* Prevent sleep in intr */
2073                         DPRINT((pp, DBG_PARAM,
2074                                 "cmd intr collision - completing %d\trequested %d\n",
2075                                 x, cmd));
2076                         splx(oldspl);
2077                         return;
2078                 } else if (ttysleep(pp->sp_tty, (caddr_t)&pp->sp_state, PCATCH,
2079                                 "sicmd1", 1)) {
2080                         splx(oldspl);
2081                         return;
2082                 }
2083         }
2084         /* it should now be in IDLE_{OPEN|CLOSE|BREAK}, or "cmd" */
2085
2086         /* if there was a pending command, cause a state-change wakeup */
2087         switch(pp->sp_pend) {
2088         case LOPEN:
2089         case MPEND:
2090         case MOPEN:
2091         case CONFIG:
2092         case SBREAK:
2093         case EBREAK:
2094                 wakeup(&pp->sp_state);
2095                 break;
2096         default:
2097                 break;
2098         }
2099
2100         pp->sp_pend = cmd;              /* New command pending */
2101         ccbp->hi_stat = cmd;            /* Post it */
2102
2103         if (waitflag) {
2104                 if (in_intr) {          /* If in interrupt handler */
2105                         DPRINT((pp, DBG_PARAM,
2106                                 "attempt to sleep in si_intr - cmd req %d\n",
2107                                 cmd));
2108                         splx(oldspl);
2109                         return;
2110                 } else while(ccbp->hi_stat != IDLE_OPEN &&
2111                              ccbp->hi_stat != IDLE_BREAK) {
2112                         if (ttysleep(pp->sp_tty, (caddr_t)&pp->sp_state, PCATCH,
2113                             "sicmd2", 0))
2114                                 break;
2115                 }
2116         }
2117         splx(oldspl);
2118 }
2119
2120 static void
2121 si_disc_optim(struct tty *tp, struct termios *t, struct si_port *pp)
2122 {
2123         /*
2124          * XXX can skip a lot more cases if Smarts.  Maybe
2125          * (IGNCR | ISTRIP | IXON) in c_iflag.  But perhaps we
2126          * shouldn't skip if (TS_CNTTB | TS_LNCH) is set in t_state.
2127          */
2128         if (!(t->c_iflag & (ICRNL | IGNCR | IMAXBEL | INLCR | ISTRIP | IXON)) &&
2129             (!(t->c_iflag & BRKINT) || (t->c_iflag & IGNBRK)) &&
2130             (!(t->c_iflag & PARMRK) ||
2131              (t->c_iflag & (IGNPAR | IGNBRK)) == (IGNPAR | IGNBRK)) &&
2132             !(t->c_lflag & (ECHO | ICANON | IEXTEN | ISIG | PENDIN)) &&
2133             linesw[tp->t_line].l_rint == ttyinput)
2134                 tp->t_state |= TS_CAN_BYPASS_L_RINT;
2135         else
2136                 tp->t_state &= ~TS_CAN_BYPASS_L_RINT;
2137         pp->sp_hotchar = linesw[tp->t_line].l_hotchar;
2138         DPRINT((pp, DBG_OPTIM, "bypass: %s, hotchar: %x\n",
2139                 (tp->t_state & TS_CAN_BYPASS_L_RINT) ? "on" : "off",
2140                 pp->sp_hotchar));
2141 }
2142
2143
2144 #ifdef  SI_DEBUG
2145
2146 void
2147 si_dprintf(struct si_port *pp, int flags, const char *fmt, ...)
2148 {
2149         __va_list ap;
2150
2151         if ((pp == NULL && (si_debug&flags)) ||
2152             (pp != NULL && ((pp->sp_debug&flags) || (si_debug&flags)))) {
2153                 if (pp != NULL)
2154                         printf("%ci%d(%d): ", 's',
2155                                 (int)SI_CARD(minor(pp->sp_tty->t_dev)),
2156                                 (int)SI_PORT(minor(pp->sp_tty->t_dev)));
2157                 __va_start(ap, fmt);
2158                 vprintf(fmt, ap);
2159                 __va_end(ap);
2160         }
2161 }
2162
2163 static char *
2164 si_mctl2str(enum si_mctl cmd)
2165 {
2166         switch (cmd) {
2167         case GET:
2168                 return("GET");
2169         case SET:
2170                 return("SET");
2171         case BIS:
2172                 return("BIS");
2173         case BIC:
2174                 return("BIC");
2175         }
2176         return("BAD");
2177 }
2178
2179 #endif  /* DEBUG */
2180
2181 static char *
2182 si_modulename(int host_type, int uart_type)
2183 {
2184         switch (host_type) {
2185         /* Z280 based cards */
2186         case SIEISA:
2187         case SIHOST2:
2188         case SIHOST:
2189         case SIPCI:
2190                 switch (uart_type) {
2191                 case 0:
2192                         return(" (XIO)");
2193                 case 1:
2194                         return(" (SI)");
2195                 }
2196                 break;
2197         /* T225 based hosts */
2198         case SIJETPCI:
2199         case SIJETISA:
2200                 switch (uart_type) {
2201                 case 0:
2202                         return(" (SI)");
2203                 case 40:
2204                         return(" (XIO)");
2205                 case 72:
2206                         return(" (SXDC)");
2207                 }
2208                 break;
2209         }
2210         return("");
2211 }