Core integer types header file reorganization stage 1/2: Create and/or modify
[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.8 2003/11/09 02:22:35 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         /* autoq */     0,
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 /*      path    name    devsw           minor   type   uid gid perm*/
603         for (x = 0; x < sc->sc_nport; x++) {
604                 /* sync with the manuals that start at 1 */
605                 y = x + 1 + unit * (1 << SI_CARDSHIFT);
606                 make_dev(&si_cdevsw, x, 0, 0, 0600, "ttyA%02d", y);
607                 make_dev(&si_cdevsw, x + 0x00080, 0, 0, 0600, "cuaA%02d", y);
608                 make_dev(&si_cdevsw, x + 0x10000, 0, 0, 0600, "ttyiA%02d", y);
609                 make_dev(&si_cdevsw, x + 0x10080, 0, 0, 0600, "cuaiA%02d", y);
610                 make_dev(&si_cdevsw, x + 0x20000, 0, 0, 0600, "ttylA%02d", y);
611                 make_dev(&si_cdevsw, x + 0x20080, 0, 0, 0600, "cualA%02d", y);
612         }
613         make_dev(&si_cdevsw, 0x40000, 0, 0, 0600, "si_control");
614         return (0);
615 }
616
617 static  int
618 siopen(dev_t dev, int flag, int mode, struct thread *td)
619 {
620         int oldspl, error;
621         int card, port;
622         struct si_softc *sc;
623         struct tty *tp;
624         volatile struct si_channel *ccbp;
625         struct si_port *pp;
626         int mynor = minor(dev);
627
628         /* quickly let in /dev/si_control */
629         if (IS_CONTROLDEV(mynor)) {
630                 if ((error = suser(td)))
631                         return(error);
632                 return(0);
633         }
634
635         card = SI_CARD(mynor);
636         sc = devclass_get_softc(si_devclass, card);
637         if (sc == NULL)
638                 return (ENXIO);
639
640         if (sc->sc_type == SIEMPTY) {
641                 DPRINT((0, DBG_OPEN|DBG_FAIL, "si%d: type %s??\n",
642                         card, sc->sc_typename));
643                 return(ENXIO);
644         }
645
646         port = SI_PORT(mynor);
647         if (port >= sc->sc_nport) {
648                 DPRINT((0, DBG_OPEN|DBG_FAIL, "si%d: nports %d\n",
649                         card, sc->sc_nport));
650                 return(ENXIO);
651         }
652
653 #ifdef  POLL
654         /*
655          * We've now got a device, so start the poller.
656          */
657         if (init_finished == 0) {
658                 timeout(si_poll, (caddr_t)0L, si_pollrate);
659                 init_finished = 1;
660         }
661 #endif
662
663         /* initial/lock device */
664         if (IS_STATE(mynor)) {
665                 return(0);
666         }
667
668         pp = sc->sc_ports + port;
669         tp = pp->sp_tty;                        /* the "real" tty */
670         dev->si_tty = tp;
671         ccbp = pp->sp_ccb;                      /* Find control block */
672         DPRINT((pp, DBG_ENTRY|DBG_OPEN, "siopen(%s,%x,%x,%x)\n",
673                 devtoname(dev), flag, mode, td));
674
675         oldspl = spltty();                      /* Keep others out */
676         error = 0;
677
678 open_top:
679         while (pp->sp_state & SS_DTR_OFF) {
680                 error = tsleep(&pp->sp_dtr_wait, PCATCH, "sidtr", 0);
681                 if (error != 0)
682                         goto out;
683         }
684
685         if (tp->t_state & TS_ISOPEN) {
686                 /*
687                  * The device is open, so everything has been initialised.
688                  * handle conflicts.
689                  */
690                 if (IS_CALLOUT(mynor)) {
691                         if (!pp->sp_active_out) {
692                                 error = EBUSY;
693                                 goto out;
694                         }
695                 } else {
696                         if (pp->sp_active_out) {
697                                 if (flag & O_NONBLOCK) {
698                                         error = EBUSY;
699                                         goto out;
700                                 }
701                                 error = tsleep(&pp->sp_active_out,
702                                                 PCATCH, "sibi", 0);
703                                 if (error != 0)
704                                         goto out;
705                                 goto open_top;
706                         }
707                 }
708                 if (tp->t_state & TS_XCLUDE &&
709                     suser(td)) {
710                         DPRINT((pp, DBG_OPEN|DBG_FAIL,
711                                 "already open and EXCLUSIVE set\n"));
712                         error = EBUSY;
713                         goto out;
714                 }
715         } else {
716                 /*
717                  * The device isn't open, so there are no conflicts.
718                  * Initialize it. Avoid sleep... :-)
719                  */
720                 DPRINT((pp, DBG_OPEN, "first open\n"));
721                 tp->t_oproc = si_start;
722                 tp->t_stop = si_stop;
723                 tp->t_param = siparam;
724                 tp->t_dev = dev;
725                 tp->t_termios = mynor & SI_CALLOUT_MASK
726                                 ? pp->sp_iout : pp->sp_iin;
727
728                 (void) si_modem(pp, SET, TIOCM_DTR|TIOCM_RTS);
729
730                 ++pp->sp_wopeners;      /* in case of sleep in siparam */
731
732                 error = siparam(tp, &tp->t_termios);
733
734                 --pp->sp_wopeners;
735                 if (error != 0)
736                         goto out;
737                 /* XXX: we should goto_top if siparam slept */
738
739                 /* set initial DCD state */
740                 pp->sp_last_hi_ip = ccbp->hi_ip;
741                 if ((pp->sp_last_hi_ip & IP_DCD) || IS_CALLOUT(mynor)) {
742                         (*linesw[tp->t_line].l_modem)(tp, 1);
743                 }
744         }
745
746         /* whoops! we beat the close! */
747         if (pp->sp_state & SS_CLOSING) {
748                 /* try and stop it from proceeding to bash the hardware */
749                 pp->sp_state &= ~SS_CLOSING;
750         }
751
752         /*
753          * Wait for DCD if necessary
754          */
755         if (!(tp->t_state & TS_CARR_ON) &&
756             !IS_CALLOUT(mynor) &&
757             !(tp->t_cflag & CLOCAL) &&
758             !(flag & O_NONBLOCK)) {
759                 ++pp->sp_wopeners;
760                 DPRINT((pp, DBG_OPEN, "sleeping for carrier\n"));
761                 error = tsleep(TSA_CARR_ON(tp), PCATCH, "sidcd", 0);
762                 --pp->sp_wopeners;
763                 if (error != 0)
764                         goto out;
765                 goto open_top;
766         }
767
768         error = (*linesw[tp->t_line].l_open)(dev, tp);
769         si_disc_optim(tp, &tp->t_termios, pp);
770         if (tp->t_state & TS_ISOPEN && IS_CALLOUT(mynor))
771                 pp->sp_active_out = TRUE;
772
773         pp->sp_state |= SS_OPEN;        /* made it! */
774
775 out:
776         splx(oldspl);
777
778         DPRINT((pp, DBG_OPEN, "leaving siopen\n"));
779
780         if (!(tp->t_state & TS_ISOPEN) && pp->sp_wopeners == 0)
781                 sihardclose(pp);
782
783         return(error);
784 }
785
786 static  int
787 siclose(dev_t dev, int flag, int mode, struct thread *td)
788 {
789         struct si_port *pp;
790         struct tty *tp;
791         int oldspl;
792         int error = 0;
793         int mynor = minor(dev);
794
795         if (IS_SPECIAL(mynor))
796                 return(0);
797
798         oldspl = spltty();
799
800         pp = MINOR2PP(mynor);
801         tp = pp->sp_tty;
802
803         DPRINT((pp, DBG_ENTRY|DBG_CLOSE, "siclose(%s,%x,%x,%x) sp_state:%x\n",
804                 devtoname(dev), flag, mode, td, pp->sp_state));
805
806         /* did we sleep and loose a race? */
807         if (pp->sp_state & SS_CLOSING) {
808                 /* error = ESOMETING? */
809                 goto out;
810         }
811
812         /* begin race detection.. */
813         pp->sp_state |= SS_CLOSING;
814
815         si_write_enable(pp, 0);         /* block writes for ttywait() */
816
817         /* THIS MAY SLEEP IN TTYWAIT!!! */
818         (*linesw[tp->t_line].l_close)(tp, flag);
819
820         si_write_enable(pp, 1);
821
822         /* did we sleep and somebody started another open? */
823         if (!(pp->sp_state & SS_CLOSING)) {
824                 /* error = ESOMETING? */
825                 goto out;
826         }
827         /* ok. we are now still on the right track.. nuke the hardware */
828
829         if (pp->sp_state & SS_LSTART) {
830                 untimeout(si_lstart, (caddr_t)pp, pp->lstart_ch);
831                 pp->sp_state &= ~SS_LSTART;
832         }
833
834         si_stop(tp, FREAD | FWRITE);
835
836         sihardclose(pp);
837         ttyclose(tp);
838         pp->sp_state &= ~SS_OPEN;
839
840 out:
841         DPRINT((pp, DBG_CLOSE|DBG_EXIT, "close done, returning\n"));
842         splx(oldspl);
843         return(error);
844 }
845
846 static void
847 sihardclose(struct si_port *pp)
848 {
849         int oldspl;
850         struct tty *tp;
851         volatile struct si_channel *ccbp;
852
853         oldspl = spltty();
854
855         tp = pp->sp_tty;
856         ccbp = pp->sp_ccb;                      /* Find control block */
857         if (tp->t_cflag & HUPCL ||
858             (!pp->sp_active_out &&
859              !(ccbp->hi_ip & IP_DCD) &&
860              !(pp->sp_iin.c_cflag && CLOCAL)) ||
861             !(tp->t_state & TS_ISOPEN)) {
862
863                 (void) si_modem(pp, BIC, TIOCM_DTR|TIOCM_RTS);
864                 (void) si_command(pp, FCLOSE, SI_NOWAIT);
865
866                 if (pp->sp_dtr_wait != 0) {
867                         timeout(sidtrwakeup, pp, pp->sp_dtr_wait);
868                         pp->sp_state |= SS_DTR_OFF;
869                 }
870
871         }
872         pp->sp_active_out = FALSE;
873         wakeup((caddr_t)&pp->sp_active_out);
874         wakeup(TSA_CARR_ON(tp));
875
876         splx(oldspl);
877 }
878
879
880 /*
881  * called at splsoftclock()...
882  */
883 static void
884 sidtrwakeup(void *chan)
885 {
886         struct si_port *pp;
887         int oldspl;
888
889         oldspl = spltty();
890
891         pp = (struct si_port *)chan;
892         pp->sp_state &= ~SS_DTR_OFF;
893         wakeup(&pp->sp_dtr_wait);
894
895         splx(oldspl);
896 }
897
898 static  int
899 siwrite(dev_t dev, struct uio *uio, int flag)
900 {
901         struct si_port *pp;
902         struct tty *tp;
903         int error = 0;
904         int mynor = minor(dev);
905         int oldspl;
906
907         if (IS_SPECIAL(mynor)) {
908                 DPRINT((0, DBG_ENTRY|DBG_FAIL|DBG_WRITE, "siwrite(CONTROLDEV!!)\n"));
909                 return(ENODEV);
910         }
911         pp = MINOR2PP(mynor);
912         tp = pp->sp_tty;
913         DPRINT((pp, DBG_WRITE, "siwrite(%s,%x,%x)\n", devtoname(dev), uio, flag));
914
915         oldspl = spltty();
916         /*
917          * If writes are currently blocked, wait on the "real" tty
918          */
919         while (pp->sp_state & SS_BLOCKWRITE) {
920                 pp->sp_state |= SS_WAITWRITE;
921                 DPRINT((pp, DBG_WRITE, "in siwrite, wait for SS_BLOCKWRITE to clear\n"));
922                 if ((error = ttysleep(tp, (caddr_t)pp, PCATCH,
923                                      "siwrite", tp->t_timeout))) {
924                         if (error == EWOULDBLOCK)
925                                 error = EIO;
926                         goto out;
927                 }
928         }
929
930         error = (*linesw[tp->t_line].l_write)(tp, uio, flag);
931 out:
932         splx(oldspl);
933         return (error);
934 }
935
936
937 static  int
938 siioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct thread *td)
939 {
940         struct si_port *pp;
941         struct tty *tp;
942         int error;
943         int mynor = minor(dev);
944         int oldspl;
945         int blocked = 0;
946 #if defined(COMPAT_43)
947         u_long oldcmd;
948         struct termios term;
949 #endif
950
951         if (IS_SI_IOCTL(cmd))
952                 return(si_Sioctl(dev, cmd, data, flag, td));
953
954         pp = MINOR2PP(mynor);
955         tp = pp->sp_tty;
956
957         DPRINT((pp, DBG_ENTRY|DBG_IOCTL, "siioctl(%s,%lx,%x,%x)\n",
958                 devtoname(dev), cmd, data, flag));
959         if (IS_STATE(mynor)) {
960                 struct termios *ct;
961
962                 switch (mynor & SI_STATE_MASK) {
963                 case SI_INIT_STATE_MASK:
964                         ct = IS_CALLOUT(mynor) ? &pp->sp_iout : &pp->sp_iin;
965                         break;
966                 case SI_LOCK_STATE_MASK:
967                         ct = IS_CALLOUT(mynor) ? &pp->sp_lout : &pp->sp_lin;
968                         break;
969                 default:
970                         return (ENODEV);
971                 }
972                 switch (cmd) {
973                 case TIOCSETA:
974                         error = suser(td);
975                         if (error != 0)
976                                 return (error);
977                         *ct = *(struct termios *)data;
978                         return (0);
979                 case TIOCGETA:
980                         *(struct termios *)data = *ct;
981                         return (0);
982                 case TIOCGETD:
983                         *(int *)data = TTYDISC;
984                         return (0);
985                 case TIOCGWINSZ:
986                         bzero(data, sizeof(struct winsize));
987                         return (0);
988                 default:
989                         return (ENOTTY);
990                 }
991         }
992         /*
993          * Do the old-style ioctl compat routines...
994          */
995 #if defined(COMPAT_43)
996         term = tp->t_termios;
997         oldcmd = cmd;
998         error = ttsetcompat(tp, &cmd, data, &term);
999         if (error != 0)
1000                 return (error);
1001         if (cmd != oldcmd)
1002                 data = (caddr_t)&term;
1003 #endif
1004         /*
1005          * Do the initial / lock state business
1006          */
1007         if (cmd == TIOCSETA || cmd == TIOCSETAW || cmd == TIOCSETAF) {
1008                 int     cc;
1009                 struct termios *dt = (struct termios *)data;
1010                 struct termios *lt = mynor & SI_CALLOUT_MASK
1011                                      ? &pp->sp_lout : &pp->sp_lin;
1012
1013                 dt->c_iflag = (tp->t_iflag & lt->c_iflag) |
1014                         (dt->c_iflag & ~lt->c_iflag);
1015                 dt->c_oflag = (tp->t_oflag & lt->c_oflag) |
1016                         (dt->c_oflag & ~lt->c_oflag);
1017                 dt->c_cflag = (tp->t_cflag & lt->c_cflag) |
1018                         (dt->c_cflag & ~lt->c_cflag);
1019                 dt->c_lflag = (tp->t_lflag & lt->c_lflag) |
1020                         (dt->c_lflag & ~lt->c_lflag);
1021                 for (cc = 0; cc < NCCS; ++cc)
1022                         if (lt->c_cc[cc] != 0)
1023                                 dt->c_cc[cc] = tp->t_cc[cc];
1024                 if (lt->c_ispeed != 0)
1025                         dt->c_ispeed = tp->t_ispeed;
1026                 if (lt->c_ospeed != 0)
1027                         dt->c_ospeed = tp->t_ospeed;
1028         }
1029
1030         /*
1031          * Block user-level writes to give the ttywait()
1032          * a chance to completely drain for commands
1033          * that require the port to be in a quiescent state.
1034          */
1035         switch (cmd) {
1036         case TIOCSETAW:
1037         case TIOCSETAF:
1038         case TIOCDRAIN:
1039 #ifdef COMPAT_43
1040         case TIOCSETP:
1041 #endif
1042                 blocked++;      /* block writes for ttywait() and siparam() */
1043                 si_write_enable(pp, 0);
1044         }
1045
1046         error = (*linesw[tp->t_line].l_ioctl)(tp, cmd, data, flag, td);
1047         if (error != ENOIOCTL)
1048                 goto out;
1049
1050         oldspl = spltty();
1051
1052         error = ttioctl(tp, cmd, data, flag);
1053         si_disc_optim(tp, &tp->t_termios, pp);
1054         if (error != ENOIOCTL) {
1055                 splx(oldspl);
1056                 goto out;
1057         }
1058
1059         error = 0;
1060         switch (cmd) {
1061         case TIOCSBRK:
1062                 si_command(pp, SBREAK, SI_WAIT);
1063                 break;
1064         case TIOCCBRK:
1065                 si_command(pp, EBREAK, SI_WAIT);
1066                 break;
1067         case TIOCSDTR:
1068                 (void) si_modem(pp, SET, TIOCM_DTR|TIOCM_RTS);
1069                 break;
1070         case TIOCCDTR:
1071                 (void) si_modem(pp, SET, 0);
1072                 break;
1073         case TIOCMSET:
1074                 (void) si_modem(pp, SET, *(int *)data);
1075                 break;
1076         case TIOCMBIS:
1077                 (void) si_modem(pp, BIS, *(int *)data);
1078                 break;
1079         case TIOCMBIC:
1080                 (void) si_modem(pp, BIC, *(int *)data);
1081                 break;
1082         case TIOCMGET:
1083                 *(int *)data = si_modem(pp, GET, 0);
1084                 break;
1085         case TIOCMSDTRWAIT:
1086                 /* must be root since the wait applies to following logins */
1087                 error = suser(td);
1088                 if (error == 0)
1089                         pp->sp_dtr_wait = *(int *)data * hz / 100;
1090                 break;
1091         case TIOCMGDTRWAIT:
1092                 *(int *)data = pp->sp_dtr_wait * 100 / hz;
1093                 break;
1094         default:
1095                 error = ENOTTY;
1096         }
1097         splx(oldspl);
1098
1099 out:
1100         DPRINT((pp, DBG_IOCTL|DBG_EXIT, "siioctl ret %d\n", error));
1101         if (blocked)
1102                 si_write_enable(pp, 1);
1103         return(error);
1104 }
1105
1106 /*
1107  * Handle the Specialix ioctls. All MUST be called via the CONTROL device
1108  */
1109 static int
1110 si_Sioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct thread *td)
1111 {
1112         struct si_softc *xsc;
1113         struct si_port *xpp;
1114         volatile struct si_reg *regp;
1115         struct si_tcsi *dp;
1116         struct si_pstat *sps;
1117         int *ip, error = 0;
1118         int oldspl;
1119         int card, port;
1120         int mynor = minor(dev);
1121
1122         DPRINT((0, DBG_ENTRY|DBG_IOCTL, "si_Sioctl(%s,%lx,%x,%x)\n",
1123                 devtoname(dev), cmd, data, flag));
1124
1125 #if 1
1126         DPRINT((0, DBG_IOCTL, "TCSI_PORT=%x\n", TCSI_PORT));
1127         DPRINT((0, DBG_IOCTL, "TCSI_CCB=%x\n", TCSI_CCB));
1128         DPRINT((0, DBG_IOCTL, "TCSI_TTY=%x\n", TCSI_TTY));
1129 #endif
1130
1131         if (!IS_CONTROLDEV(mynor)) {
1132                 DPRINT((0, DBG_IOCTL|DBG_FAIL, "not called from control device!\n"));
1133                 return(ENODEV);
1134         }
1135
1136         oldspl = spltty();      /* better safe than sorry */
1137
1138         ip = (int *)data;
1139
1140 #define SUCHECK if ((error = suser(td))) goto out
1141
1142         switch (cmd) {
1143         case TCSIPORTS:
1144                 *ip = si_Nports;
1145                 goto out;
1146         case TCSIMODULES:
1147                 *ip = si_Nmodules;
1148                 goto out;
1149         case TCSISDBG_ALL:
1150                 SUCHECK;
1151                 si_debug = *ip;
1152                 goto out;
1153         case TCSIGDBG_ALL:
1154                 *ip = si_debug;
1155                 goto out;
1156         default:
1157                 /*
1158                  * Check that a controller for this port exists
1159                  */
1160
1161                 /* may also be a struct si_pstat, a superset of si_tcsi */
1162
1163                 dp = (struct si_tcsi *)data;
1164                 sps = (struct si_pstat *)data;
1165                 card = dp->tc_card;
1166                 xsc = devclass_get_softc(si_devclass, card);    /* check.. */
1167                 if (xsc == NULL || xsc->sc_type == SIEMPTY) {
1168                         error = ENOENT;
1169                         goto out;
1170                 }
1171                 /*
1172                  * And check that a port exists
1173                  */
1174                 port = dp->tc_port;
1175                 if (port < 0 || port >= xsc->sc_nport) {
1176                         error = ENOENT;
1177                         goto out;
1178                 }
1179                 xpp = xsc->sc_ports + port;
1180                 regp = (struct si_reg *)xsc->sc_maddr;
1181         }
1182
1183         switch (cmd) {
1184         case TCSIDEBUG:
1185 #ifdef  SI_DEBUG
1186                 SUCHECK;
1187                 if (xpp->sp_debug)
1188                         xpp->sp_debug = 0;
1189                 else {
1190                         xpp->sp_debug = DBG_ALL;
1191                         DPRINT((xpp, DBG_IOCTL, "debug toggled %s\n",
1192                                 (xpp->sp_debug&DBG_ALL)?"ON":"OFF"));
1193                 }
1194                 break;
1195 #else
1196                 error = ENODEV;
1197                 goto out;
1198 #endif
1199         case TCSISDBG_LEVEL:
1200         case TCSIGDBG_LEVEL:
1201 #ifdef  SI_DEBUG
1202                 if (cmd == TCSIGDBG_LEVEL) {
1203                         dp->tc_dbglvl = xpp->sp_debug;
1204                 } else {
1205                         SUCHECK;
1206                         xpp->sp_debug = dp->tc_dbglvl;
1207                 }
1208                 break;
1209 #else
1210                 error = ENODEV;
1211                 goto out;
1212 #endif
1213         case TCSIGRXIT:
1214                 dp->tc_int = regp->rx_int_count;
1215                 break;
1216         case TCSIRXIT:
1217                 SUCHECK;
1218                 regp->rx_int_count = dp->tc_int;
1219                 break;
1220         case TCSIGIT:
1221                 dp->tc_int = regp->int_count;
1222                 break;
1223         case TCSIIT:
1224                 SUCHECK;
1225                 regp->int_count = dp->tc_int;
1226                 break;
1227         case TCSISTATE:
1228                 dp->tc_int = xpp->sp_ccb->hi_ip;
1229                 break;
1230         /* these next three use a different structure */
1231         case TCSI_PORT:
1232                 SUCHECK;
1233                 si_bcopy(xpp, &sps->tc_siport, sizeof(sps->tc_siport));
1234                 break;
1235         case TCSI_CCB:
1236                 SUCHECK;
1237                 si_vbcopy(xpp->sp_ccb, &sps->tc_ccb, sizeof(sps->tc_ccb));
1238                 break;
1239         case TCSI_TTY:
1240                 SUCHECK;
1241                 si_bcopy(xpp->sp_tty, &sps->tc_tty, sizeof(sps->tc_tty));
1242                 break;
1243         default:
1244                 error = EINVAL;
1245                 goto out;
1246         }
1247 out:
1248         splx(oldspl);
1249         return(error);          /* success */
1250 }
1251
1252 /*
1253  *      siparam()       : Configure line params
1254  *      called at spltty();
1255  *      this may sleep, does not flush, nor wait for drain, nor block writes
1256  *      caller must arrange this if it's important..
1257  */
1258 static int
1259 siparam(struct tty *tp, struct termios *t)
1260 {
1261         struct si_port *pp = TP2PP(tp);
1262         volatile struct si_channel *ccbp;
1263         int oldspl, cflag, iflag, oflag, lflag;
1264         int error = 0;          /* shutup gcc */
1265         int ispeed = 0;         /* shutup gcc */
1266         int ospeed = 0;         /* shutup gcc */
1267         BYTE val;
1268
1269         DPRINT((pp, DBG_ENTRY|DBG_PARAM, "siparam(%x,%x)\n", tp, t));
1270         cflag = t->c_cflag;
1271         iflag = t->c_iflag;
1272         oflag = t->c_oflag;
1273         lflag = t->c_lflag;
1274         DPRINT((pp, DBG_PARAM, "OFLAG 0x%x CFLAG 0x%x IFLAG 0x%x LFLAG 0x%x\n",
1275                 oflag, cflag, iflag, lflag));
1276
1277         /* XXX - if Jet host and SXDC module, use extended baud rates */
1278
1279         /* if not hung up.. */
1280         if (t->c_ospeed != 0) {
1281                 /* translate baud rate to firmware values */
1282                 ospeed = ttspeedtab(t->c_ospeed, bdrates);
1283                 ispeed = t->c_ispeed ?
1284                          ttspeedtab(t->c_ispeed, bdrates) : ospeed;
1285
1286                 /* enforce legit baud rate */
1287                 if (ospeed < 0 || ispeed < 0)
1288                         return (EINVAL);
1289         }
1290
1291         oldspl = spltty();
1292
1293         ccbp = pp->sp_ccb;
1294
1295         /* ========== set hi_break ========== */
1296         val = 0;
1297         if (iflag & IGNBRK)             /* Breaks */
1298                 val |= BR_IGN;
1299         if (iflag & BRKINT)             /* Interrupt on break? */
1300                 val |= BR_INT;
1301         if (iflag & PARMRK)             /* Parity mark? */
1302                 val |= BR_PARMRK;
1303         if (iflag & IGNPAR)             /* Ignore chars with parity errors? */
1304                 val |= BR_PARIGN;
1305         ccbp->hi_break = val;
1306
1307         /* ========== set hi_csr ========== */
1308         /* if not hung up.. */
1309         if (t->c_ospeed != 0) {
1310                 /* Set I/O speeds */
1311                  val = (ispeed << 4) | ospeed;
1312         }
1313         ccbp->hi_csr = val;
1314
1315         /* ========== set hi_mr2 ========== */
1316         val = 0;
1317         if (cflag & CSTOPB)                             /* Stop bits */
1318                 val |= MR2_2_STOP;
1319         else
1320                 val |= MR2_1_STOP;
1321         /*
1322          * Enable H/W RTS/CTS handshaking. The default TA/MTA is
1323          * a DCE, hence the reverse sense of RTS and CTS
1324          */
1325         /* Output Flow - RTS must be raised before data can be sent */
1326         if (cflag & CCTS_OFLOW)
1327                 val |= MR2_RTSCONT;
1328
1329         ccbp->hi_mr2 = val;
1330
1331         /* ========== set hi_mr1 ========== */
1332         val = 0;
1333         if (!(cflag & PARENB))                          /* Parity */
1334                 val |= MR1_NONE;
1335         else
1336                 val |= MR1_WITH;
1337         if (cflag & PARODD)
1338                 val |= MR1_ODD;
1339
1340         if ((cflag & CS8) == CS8) {                     /* 8 data bits? */
1341                 val |= MR1_8_BITS;
1342         } else if ((cflag & CS7) == CS7) {              /* 7 data bits? */
1343                 val |= MR1_7_BITS;
1344         } else if ((cflag & CS6) == CS6) {              /* 6 data bits? */
1345                 val |= MR1_6_BITS;
1346         } else {                                        /* Must be 5 */
1347                 val |= MR1_5_BITS;
1348         }
1349         /*
1350          * Enable H/W RTS/CTS handshaking. The default TA/MTA is
1351          * a DCE, hence the reverse sense of RTS and CTS
1352          */
1353         /* Input Flow - CTS is raised when port is ready to receive data */
1354         if (cflag & CRTS_IFLOW)
1355                 val |= MR1_CTSCONT;
1356
1357         ccbp->hi_mr1 = val;
1358
1359         /* ========== set hi_mask ========== */
1360         val = 0xff;
1361         if ((cflag & CS8) == CS8) {                     /* 8 data bits? */
1362                 val &= 0xFF;
1363         } else if ((cflag & CS7) == CS7) {              /* 7 data bits? */
1364                 val &= 0x7F;
1365         } else if ((cflag & CS6) == CS6) {              /* 6 data bits? */
1366                 val &= 0x3F;
1367         } else {                                        /* Must be 5 */
1368                 val &= 0x1F;
1369         }
1370         if (iflag & ISTRIP)
1371                 val &= 0x7F;
1372
1373         ccbp->hi_mask = val;
1374
1375         /* ========== set hi_prtcl ========== */
1376         val = SP_DCEN;          /* Monitor DCD always, or TIOCMGET misses it */
1377         if (iflag & IXANY)
1378                 val |= SP_TANY;
1379         if (iflag & IXON)
1380                 val |= SP_TXEN;
1381         if (iflag & IXOFF)
1382                 val |= SP_RXEN;
1383         if (iflag & INPCK)
1384                 val |= SP_PAEN;
1385
1386         ccbp->hi_prtcl = val;
1387
1388
1389         /* ========== set hi_{rx|tx}{on|off} ========== */
1390         /* XXX: the card TOTALLY shields us from the flow control... */
1391         ccbp->hi_txon = t->c_cc[VSTART];
1392         ccbp->hi_txoff = t->c_cc[VSTOP];
1393
1394         ccbp->hi_rxon = t->c_cc[VSTART];
1395         ccbp->hi_rxoff = t->c_cc[VSTOP];
1396
1397         /* ========== send settings to the card ========== */
1398         /* potential sleep here */
1399         if (ccbp->hi_stat == IDLE_CLOSE)                /* Not yet open */
1400                 si_command(pp, LOPEN, SI_WAIT);         /* open it */
1401         else
1402                 si_command(pp, CONFIG, SI_WAIT);        /* change params */
1403
1404         /* ========== set DTR etc ========== */
1405         /* Hangup if ospeed == 0 */
1406         if (t->c_ospeed == 0) {
1407                 (void) si_modem(pp, BIC, TIOCM_DTR|TIOCM_RTS);
1408         } else {
1409                 /*
1410                  * If the previous speed was 0, may need to re-enable
1411                  * the modem signals
1412                  */
1413                 (void) si_modem(pp, SET, TIOCM_DTR|TIOCM_RTS);
1414         }
1415
1416         DPRINT((pp, DBG_PARAM, "siparam, complete: MR1 %x MR2 %x HI_MASK %x PRTCL %x HI_BREAK %x\n",
1417                 ccbp->hi_mr1, ccbp->hi_mr2, ccbp->hi_mask, ccbp->hi_prtcl, ccbp->hi_break));
1418
1419         splx(oldspl);
1420         return(error);
1421 }
1422
1423 /*
1424  * Enable or Disable the writes to this channel...
1425  * "state" ->  enabled = 1; disabled = 0;
1426  */
1427 static void
1428 si_write_enable(struct si_port *pp, int state)
1429 {
1430         int oldspl;
1431
1432         oldspl = spltty();
1433
1434         if (state) {
1435                 pp->sp_state &= ~SS_BLOCKWRITE;
1436                 if (pp->sp_state & SS_WAITWRITE) {
1437                         pp->sp_state &= ~SS_WAITWRITE;
1438                         /* thunder away! */
1439                         wakeup((caddr_t)pp);
1440                 }
1441         } else {
1442                 pp->sp_state |= SS_BLOCKWRITE;
1443         }
1444
1445         splx(oldspl);
1446 }
1447
1448 /*
1449  * Set/Get state of modem control lines.
1450  * Due to DCE-like behaviour of the adapter, some signals need translation:
1451  *      TIOCM_DTR       DSR
1452  *      TIOCM_RTS       CTS
1453  */
1454 static int
1455 si_modem(struct si_port *pp, enum si_mctl cmd, int bits)
1456 {
1457         volatile struct si_channel *ccbp;
1458         int x;
1459
1460         DPRINT((pp, DBG_ENTRY|DBG_MODEM, "si_modem(%x,%s,%x)\n", pp, si_mctl2str(cmd), bits));
1461         ccbp = pp->sp_ccb;              /* Find channel address */
1462         switch (cmd) {
1463         case GET:
1464                 x = ccbp->hi_ip;
1465                 bits = TIOCM_LE;
1466                 if (x & IP_DCD)         bits |= TIOCM_CAR;
1467                 if (x & IP_DTR)         bits |= TIOCM_DTR;
1468                 if (x & IP_RTS)         bits |= TIOCM_RTS;
1469                 if (x & IP_RI)          bits |= TIOCM_RI;
1470                 return(bits);
1471         case SET:
1472                 ccbp->hi_op &= ~(OP_DSR|OP_CTS);
1473                 /* fall through */
1474         case BIS:
1475                 x = 0;
1476                 if (bits & TIOCM_DTR)
1477                         x |= OP_DSR;
1478                 if (bits & TIOCM_RTS)
1479                         x |= OP_CTS;
1480                 ccbp->hi_op |= x;
1481                 break;
1482         case BIC:
1483                 if (bits & TIOCM_DTR)
1484                         ccbp->hi_op &= ~OP_DSR;
1485                 if (bits & TIOCM_RTS)
1486                         ccbp->hi_op &= ~OP_CTS;
1487         }
1488         return 0;
1489 }
1490
1491 /*
1492  * Handle change of modem state
1493  */
1494 static void
1495 si_modem_state(struct si_port *pp, struct tty *tp, int hi_ip)
1496 {
1497                                                         /* if a modem dev */
1498         if (hi_ip & IP_DCD) {
1499                 if (!(pp->sp_last_hi_ip & IP_DCD)) {
1500                         DPRINT((pp, DBG_INTR, "modem carr on t_line %d\n",
1501                                 tp->t_line));
1502                         (void)(*linesw[tp->t_line].l_modem)(tp, 1);
1503                 }
1504         } else {
1505                 if (pp->sp_last_hi_ip & IP_DCD) {
1506                         DPRINT((pp, DBG_INTR, "modem carr off\n"));
1507                         if ((*linesw[tp->t_line].l_modem)(tp, 0))
1508                                 (void) si_modem(pp, SET, 0);
1509                 }
1510         }
1511         pp->sp_last_hi_ip = hi_ip;
1512
1513 }
1514
1515 /*
1516  * Poller to catch missed interrupts.
1517  *
1518  * Note that the SYSV Specialix drivers poll at 100 times per second to get
1519  * better response.  We could really use a "periodic" version timeout(). :-)
1520  */
1521 #ifdef POLL
1522 static void
1523 si_poll(void *nothing)
1524 {
1525         struct si_softc *sc;
1526         int i;
1527         volatile struct si_reg *regp;
1528         struct si_port *pp;
1529         int lost, oldspl, port;
1530
1531         DPRINT((0, DBG_POLL, "si_poll()\n"));
1532         oldspl = spltty();
1533         if (in_intr)
1534                 goto out;
1535         lost = 0;
1536         for (i = 0; i < si_numunits; i++) {
1537                 sc = devclass_get_softc(si_devclass, i);
1538                 if (sc == NULL || sc->sc_type == SIEMPTY)
1539                         continue;
1540                 regp = (struct si_reg *)sc->sc_maddr;
1541
1542                 /*
1543                  * See if there has been a pending interrupt for 2 seconds
1544                  * or so. The test (int_scounter >= 200) won't correspond
1545                  * to 2 seconds if int_count gets changed.
1546                  */
1547                 if (regp->int_pending != 0) {
1548                         if (regp->int_scounter >= 200 &&
1549                             regp->initstat == 1) {
1550                                 printf("si%d: lost intr\n", i);
1551                                 lost++;
1552                         }
1553                 } else {
1554                         regp->int_scounter = 0;
1555                 }
1556
1557                 /*
1558                  * gripe about no input flow control..
1559                  */
1560                 pp = sc->sc_ports;
1561                 for (port = 0; port < sc->sc_nport; pp++, port++) {
1562                         if (pp->sp_delta_overflows > 0) {
1563                                 printf("si%d: %d tty level buffer overflows\n",
1564                                         i, pp->sp_delta_overflows);
1565                                 pp->sp_delta_overflows = 0;
1566                         }
1567                 }
1568         }
1569         if (lost || si_realpoll)
1570                 si_intr(NULL);  /* call intr with fake vector */
1571 out:
1572         splx(oldspl);
1573
1574         timeout(si_poll, (caddr_t)0L, si_pollrate);
1575 }
1576 #endif  /* ifdef POLL */
1577
1578 /*
1579  * The interrupt handler polls ALL ports on ALL adapters each time
1580  * it is called.
1581  */
1582
1583 static BYTE si_rxbuf[SI_BUFFERSIZE];    /* input staging area */
1584 static BYTE si_txbuf[SI_BUFFERSIZE];    /* output staging area */
1585
1586 void
1587 si_intr(void *arg)
1588 {
1589         struct si_softc *sc;
1590         struct si_port *pp;
1591         volatile struct si_channel *ccbp;
1592         struct tty *tp;
1593         volatile caddr_t maddr;
1594         BYTE op, ip;
1595         int x, card, port, n, i, isopen;
1596         volatile BYTE *z;
1597         BYTE c;
1598
1599         sc = arg;
1600
1601         DPRINT((0, arg == NULL ? DBG_POLL:DBG_INTR, "si_intr\n"));
1602         if (in_intr)
1603                 return;
1604         in_intr = 1;
1605
1606         /*
1607          * When we get an int we poll all the channels and do ALL pending
1608          * work, not just the first one we find. This allows all cards to
1609          * share the same vector.
1610          *
1611          * XXX - But if we're sharing the vector with something that's NOT
1612          * a SI/XIO/SX card, we may be making more work for ourselves.
1613          */
1614         for (card = 0; card < si_numunits; card++) {
1615                 sc = devclass_get_softc(si_devclass, card);
1616                 if (sc == NULL || sc->sc_type == SIEMPTY)
1617                         continue;
1618
1619                 /*
1620                  * First, clear the interrupt
1621                  */
1622                 switch(sc->sc_type) {
1623                 case SIHOST:
1624                         maddr = sc->sc_maddr;
1625                         ((volatile struct si_reg *)maddr)->int_pending = 0;
1626                                                         /* flag nothing pending */
1627                         *(maddr+SIINTCL) = 0x00;        /* Set IRQ clear */
1628                         *(maddr+SIINTCL_CL) = 0x00;     /* Clear IRQ clear */
1629                         break;
1630                 case SIHOST2:
1631                         maddr = sc->sc_maddr;
1632                         ((volatile struct si_reg *)maddr)->int_pending = 0;
1633                         *(maddr+SIPLIRQCLR) = 0x00;
1634                         *(maddr+SIPLIRQCLR) = 0x10;
1635                         break;
1636                 case SIPCI:
1637                         maddr = sc->sc_maddr;
1638                         ((volatile struct si_reg *)maddr)->int_pending = 0;
1639                         *(maddr+SIPCIINTCL) = 0x0;
1640                         break;
1641                 case SIJETPCI:  /* fall through to JETISA case */
1642                 case SIJETISA:
1643                         maddr = sc->sc_maddr;
1644                         ((volatile struct si_reg *)maddr)->int_pending = 0;
1645                         *(maddr+SIJETINTCL) = 0x0;
1646                         break;
1647                 case SIEISA:
1648                         maddr = sc->sc_maddr;
1649                         ((volatile struct si_reg *)maddr)->int_pending = 0;
1650                         (void)inb(sc->sc_iobase + 3);
1651                         break;
1652                 case SIEMPTY:
1653                 default:
1654                         continue;
1655                 }
1656                 ((volatile struct si_reg *)maddr)->int_scounter = 0;
1657
1658                 /*
1659                  * check each port
1660                  */
1661                 for (pp = sc->sc_ports, port = 0; port < sc->sc_nport;
1662                      pp++, port++) {
1663                         ccbp = pp->sp_ccb;
1664                         tp = pp->sp_tty;
1665
1666                         /*
1667                          * See if a command has completed ?
1668                          */
1669                         if (ccbp->hi_stat != pp->sp_pend) {
1670                                 DPRINT((pp, DBG_INTR,
1671                                         "si_intr hi_stat = 0x%x, pend = %d\n",
1672                                         ccbp->hi_stat, pp->sp_pend));
1673                                 switch(pp->sp_pend) {
1674                                 case LOPEN:
1675                                 case MPEND:
1676                                 case MOPEN:
1677                                 case CONFIG:
1678                                 case SBREAK:
1679                                 case EBREAK:
1680                                         pp->sp_pend = ccbp->hi_stat;
1681                                                 /* sleeping in si_command */
1682                                         wakeup(&pp->sp_state);
1683                                         break;
1684                                 default:
1685                                         pp->sp_pend = ccbp->hi_stat;
1686                                 }
1687                         }
1688
1689                         /*
1690                          * Continue on if it's closed
1691                          */
1692                         if (ccbp->hi_stat == IDLE_CLOSE) {
1693                                 continue;
1694                         }
1695
1696                         /*
1697                          * Do modem state change if not a local device
1698                          */
1699                         si_modem_state(pp, tp, ccbp->hi_ip);
1700
1701                         /*
1702                          * Check to see if we should 'receive' characters.
1703                          */
1704                         if (tp->t_state & TS_CONNECTED &&
1705                             tp->t_state & TS_ISOPEN)
1706                                 isopen = 1;
1707                         else
1708                                 isopen = 0;
1709
1710                         /*
1711                          * Do input break processing
1712                          */
1713                         if (ccbp->hi_state & ST_BREAK) {
1714                                 if (isopen) {
1715                                     (*linesw[tp->t_line].l_rint)(TTY_BI, tp);
1716                                 }
1717                                 ccbp->hi_state &= ~ST_BREAK;   /* A Bit iffy this */
1718                                 DPRINT((pp, DBG_INTR, "si_intr break\n"));
1719                         }
1720
1721                         /*
1722                          * Do RX stuff - if not open then dump any characters.
1723                          * XXX: This is VERY messy and needs to be cleaned up.
1724                          *
1725                          * XXX: can we leave data in the host adapter buffer
1726                          * when the clists are full?  That may be dangerous
1727                          * if the user cannot get an interrupt signal through.
1728                          */
1729
1730         more_rx:        /* XXX Sorry. the nesting was driving me bats! :-( */
1731
1732                         if (!isopen) {
1733                                 ccbp->hi_rxopos = ccbp->hi_rxipos;
1734                                 goto end_rx;
1735                         }
1736
1737                         /*
1738                          * If the tty input buffers are blocked, stop emptying
1739                          * the incoming buffers and let the auto flow control
1740                          * assert..
1741                          */
1742                         if (tp->t_state & TS_TBLOCK) {
1743                                 goto end_rx;
1744                         }
1745
1746                         /*
1747                          * Process read characters if not skipped above
1748                          */
1749                         op = ccbp->hi_rxopos;
1750                         ip = ccbp->hi_rxipos;
1751                         c = ip - op;
1752                         if (c == 0) {
1753                                 goto end_rx;
1754                         }
1755
1756                         n = c & 0xff;
1757                         if (n > 250)
1758                                 n = 250;
1759
1760                         DPRINT((pp, DBG_INTR, "n = %d, op = %d, ip = %d\n",
1761                                                 n, op, ip));
1762
1763                         /*
1764                          * Suck characters out of host card buffer into the
1765                          * "input staging buffer" - so that we dont leave the
1766                          * host card in limbo while we're possibly echoing
1767                          * characters and possibly flushing input inside the
1768                          * ldisc l_rint() routine.
1769                          */
1770                         if (n <= SI_BUFFERSIZE - op) {
1771
1772                                 DPRINT((pp, DBG_INTR, "\tsingle copy\n"));
1773                                 z = ccbp->hi_rxbuf + op;
1774                                 si_vbcopy(z, si_rxbuf, n);
1775
1776                                 op += n;
1777                         } else {
1778                                 x = SI_BUFFERSIZE - op;
1779
1780                                 DPRINT((pp, DBG_INTR, "\tdouble part 1 %d\n", x));
1781                                 z = ccbp->hi_rxbuf + op;
1782                                 si_vbcopy(z, si_rxbuf, x);
1783
1784                                 DPRINT((pp, DBG_INTR, "\tdouble part 2 %d\n",
1785                                         n - x));
1786                                 z = ccbp->hi_rxbuf;
1787                                 si_vbcopy(z, si_rxbuf + x, n - x);
1788
1789                                 op += n;
1790                         }
1791
1792                         /* clear collected characters from buffer */
1793                         ccbp->hi_rxopos = op;
1794
1795                         DPRINT((pp, DBG_INTR, "n = %d, op = %d, ip = %d\n",
1796                                                 n, op, ip));
1797
1798                         /*
1799                          * at this point...
1800                          * n = number of chars placed in si_rxbuf
1801                          */
1802
1803                         /*
1804                          * Avoid the grotesquely inefficient lineswitch
1805                          * routine (ttyinput) in "raw" mode. It usually
1806                          * takes about 450 instructions (that's without
1807                          * canonical processing or echo!). slinput is
1808                          * reasonably fast (usually 40 instructions
1809                          * plus call overhead).
1810                          */
1811                         if (tp->t_state & TS_CAN_BYPASS_L_RINT) {
1812
1813                                 /* block if the driver supports it */
1814                                 if (tp->t_rawq.c_cc + n >= SI_I_HIGH_WATER &&
1815                                     (tp->t_cflag & CRTS_IFLOW ||
1816                                      tp->t_iflag & IXOFF) &&
1817                                     !(tp->t_state & TS_TBLOCK))
1818                                         ttyblock(tp);
1819
1820                                 tk_nin += n;
1821                                 tk_rawcc += n;
1822                                 tp->t_rawcc += n;
1823
1824                                 pp->sp_delta_overflows +=
1825                                     b_to_q((char *)si_rxbuf, n, &tp->t_rawq);
1826
1827                                 ttwakeup(tp);
1828                                 if (tp->t_state & TS_TTSTOP &&
1829                                     (tp->t_iflag & IXANY ||
1830                                      tp->t_cc[VSTART] == tp->t_cc[VSTOP])) {
1831                                         tp->t_state &= ~TS_TTSTOP;
1832                                         tp->t_lflag &= ~FLUSHO;
1833                                         si_start(tp);
1834                                 }
1835                         } else {
1836                                 /*
1837                                  * It'd be nice to not have to go through the
1838                                  * function call overhead for each char here.
1839                                  * It'd be nice to block input it, saving a
1840                                  * loop here and the call/return overhead.
1841                                  */
1842                                 for(x = 0; x < n; x++) {
1843                                         i = si_rxbuf[x];
1844                                         if ((*linesw[tp->t_line].l_rint)(i, tp)
1845                                              == -1) {
1846                                                 pp->sp_delta_overflows++;
1847                                         }
1848                                         /*
1849                                          * doesn't seem to be much point doing
1850                                          * this here.. this driver has no
1851                                          * softtty processing! ??
1852                                          */
1853                                         if (pp->sp_hotchar && i == pp->sp_hotchar) {
1854                                                 setsofttty();
1855                                         }
1856                                 }
1857                         }
1858                         goto more_rx;   /* try for more until RXbuf is empty */
1859
1860         end_rx:         /* XXX: Again, sorry about the gotos.. :-) */
1861
1862                         /*
1863                          * Do TX stuff
1864                          */
1865                         (*linesw[tp->t_line].l_start)(tp);
1866
1867                 } /* end of for (all ports on this controller) */
1868         } /* end of for (all controllers) */
1869
1870         in_intr = 0;
1871         DPRINT((0, arg == NULL ? DBG_POLL:DBG_INTR, "end si_intr\n"));
1872 }
1873
1874 /*
1875  * Nudge the transmitter...
1876  *
1877  * XXX: I inherited some funny code here.  It implies the host card only
1878  * interrupts when the transmit buffer reaches the low-water-mark, and does
1879  * not interrupt when it's actually hits empty.  In some cases, we have
1880  * processes waiting for complete drain, and we need to simulate an interrupt
1881  * about when we think the buffer is going to be empty (and retry if not).
1882  * I really am not certain about this...  I *need* the hardware manuals.
1883  */
1884 static void
1885 si_start(struct tty *tp)
1886 {
1887         struct si_port *pp;
1888         volatile struct si_channel *ccbp;
1889         struct clist *qp;
1890         BYTE ipos;
1891         int nchar;
1892         int oldspl, count, n, amount, buffer_full;
1893
1894         oldspl = spltty();
1895
1896         qp = &tp->t_outq;
1897         pp = TP2PP(tp);
1898
1899         DPRINT((pp, DBG_ENTRY|DBG_START,
1900                 "si_start(%x) t_state %x sp_state %x t_outq.c_cc %d\n",
1901                 tp, tp->t_state, pp->sp_state, qp->c_cc));
1902
1903         if (tp->t_state & (TS_TIMEOUT|TS_TTSTOP))
1904                 goto out;
1905
1906         buffer_full = 0;
1907         ccbp = pp->sp_ccb;
1908
1909         count = (int)ccbp->hi_txipos - (int)ccbp->hi_txopos;
1910         DPRINT((pp, DBG_START, "count %d\n", (BYTE)count));
1911
1912         while ((nchar = qp->c_cc) > 0) {
1913                 if ((BYTE)count >= 255) {
1914                         buffer_full++;
1915                         break;
1916                 }
1917                 amount = min(nchar, (255 - (BYTE)count));
1918                 ipos = (unsigned int)ccbp->hi_txipos;
1919                 n = q_to_b(&tp->t_outq, si_txbuf, amount);
1920                 /* will it fit in one lump? */
1921                 if ((SI_BUFFERSIZE - ipos) >= n) {
1922                         si_bcopyv(si_txbuf, &ccbp->hi_txbuf[ipos], n);
1923                 } else {
1924                         si_bcopyv(si_txbuf, &ccbp->hi_txbuf[ipos],
1925                                 SI_BUFFERSIZE - ipos);
1926                         si_bcopyv(si_txbuf + (SI_BUFFERSIZE - ipos),
1927                                 &ccbp->hi_txbuf[0], n - (SI_BUFFERSIZE - ipos));
1928                 }
1929                 ccbp->hi_txipos += n;
1930                 count = (int)ccbp->hi_txipos - (int)ccbp->hi_txopos;
1931         }
1932
1933         if (count != 0 && nchar == 0) {
1934                 tp->t_state |= TS_BUSY;
1935         } else {
1936                 tp->t_state &= ~TS_BUSY;
1937         }
1938
1939         /* wakeup time? */
1940         ttwwakeup(tp);
1941
1942         DPRINT((pp, DBG_START, "count %d, nchar %d, tp->t_state 0x%x\n",
1943                 (BYTE)count, nchar, tp->t_state));
1944
1945         if (tp->t_state & TS_BUSY)
1946         {
1947                 int time;
1948
1949                 time = ttspeedtab(tp->t_ospeed, chartimes);
1950
1951                 if (time > 0) {
1952                         if (time < nchar)
1953                                 time = nchar / time;
1954                         else
1955                                 time = 2;
1956                 } else {
1957                         DPRINT((pp, DBG_START,
1958                                 "bad char time value! %d\n", time));
1959                         time = hz/10;
1960                 }
1961
1962                 if ((pp->sp_state & (SS_LSTART|SS_INLSTART)) == SS_LSTART) {
1963                         untimeout(si_lstart, (caddr_t)pp, pp->lstart_ch);
1964                 } else {
1965                         pp->sp_state |= SS_LSTART;
1966                 }
1967                 DPRINT((pp, DBG_START, "arming lstart, time=%d\n", time));
1968                 pp->lstart_ch = timeout(si_lstart, (caddr_t)pp, time);
1969         }
1970
1971 out:
1972         splx(oldspl);
1973         DPRINT((pp, DBG_EXIT|DBG_START, "leave si_start()\n"));
1974 }
1975
1976 /*
1977  * Note: called at splsoftclock from the timeout code
1978  * This has to deal with two things...  cause wakeups while waiting for
1979  * tty drains on last process exit, and call l_start at about the right
1980  * time for protocols like ppp.
1981  */
1982 static void
1983 si_lstart(void *arg)
1984 {
1985         struct si_port *pp = arg;
1986         struct tty *tp;
1987         int oldspl;
1988
1989         DPRINT((pp, DBG_ENTRY|DBG_LSTART, "si_lstart(%x) sp_state %x\n",
1990                 pp, pp->sp_state));
1991
1992         oldspl = spltty();
1993
1994         if ((pp->sp_state & SS_OPEN) == 0 || (pp->sp_state & SS_LSTART) == 0) {
1995                 splx(oldspl);
1996                 return;
1997         }
1998         pp->sp_state &= ~SS_LSTART;
1999         pp->sp_state |= SS_INLSTART;
2000
2001         tp = pp->sp_tty;
2002
2003         /* deal with the process exit case */
2004         ttwwakeup(tp);
2005
2006         /* nudge protocols - eg: ppp */
2007         (*linesw[tp->t_line].l_start)(tp);
2008
2009         pp->sp_state &= ~SS_INLSTART;
2010         splx(oldspl);
2011 }
2012
2013 /*
2014  * Stop output on a line. called at spltty();
2015  */
2016 void
2017 si_stop(struct tty *tp, int rw)
2018 {
2019         volatile struct si_channel *ccbp;
2020         struct si_port *pp;
2021
2022         pp = TP2PP(tp);
2023         ccbp = pp->sp_ccb;
2024
2025         DPRINT((TP2PP(tp), DBG_ENTRY|DBG_STOP, "si_stop(%x,%x)\n", tp, rw));
2026
2027         /* XXX: must check (rw & FWRITE | FREAD) etc flushing... */
2028         if (rw & FWRITE) {
2029                 /* what level are we meant to be flushing anyway? */
2030                 if (tp->t_state & TS_BUSY) {
2031                         si_command(TP2PP(tp), WFLUSH, SI_NOWAIT);
2032                         tp->t_state &= ~TS_BUSY;
2033                         ttwwakeup(tp);  /* Bruce???? */
2034                 }
2035         }
2036 #if 1   /* XXX: this doesn't work right yet.. */
2037         /* XXX: this may have been failing because we used to call l_rint()
2038          * while we were looping based on these two counters. Now, we collect
2039          * the data and then loop stuffing it into l_rint(), making this
2040          * useless.  Should we cause this to blow away the staging buffer?
2041          */
2042         if (rw & FREAD) {
2043                 ccbp->hi_rxopos = ccbp->hi_rxipos;
2044         }
2045 #endif
2046 }
2047
2048 /*
2049  * Issue a command to the host card CPU.
2050  */
2051
2052 static void
2053 si_command(struct si_port *pp, int cmd, int waitflag)
2054 {
2055         int oldspl;
2056         volatile struct si_channel *ccbp = pp->sp_ccb;
2057         int x;
2058
2059         DPRINT((pp, DBG_ENTRY|DBG_PARAM, "si_command(%x,%x,%d): hi_stat 0x%x\n",
2060                 pp, cmd, waitflag, ccbp->hi_stat));
2061
2062         oldspl = spltty();              /* Keep others out */
2063
2064         /* wait until it's finished what it was doing.. */
2065         /* XXX: sits in IDLE_BREAK until something disturbs it or break
2066          * is turned off. */
2067         while((x = ccbp->hi_stat) != IDLE_OPEN &&
2068                         x != IDLE_CLOSE &&
2069                         x != IDLE_BREAK &&
2070                         x != cmd) {
2071                 if (in_intr) {                  /* Prevent sleep in intr */
2072                         DPRINT((pp, DBG_PARAM,
2073                                 "cmd intr collision - completing %d\trequested %d\n",
2074                                 x, cmd));
2075                         splx(oldspl);
2076                         return;
2077                 } else if (ttysleep(pp->sp_tty, (caddr_t)&pp->sp_state, PCATCH,
2078                                 "sicmd1", 1)) {
2079                         splx(oldspl);
2080                         return;
2081                 }
2082         }
2083         /* it should now be in IDLE_{OPEN|CLOSE|BREAK}, or "cmd" */
2084
2085         /* if there was a pending command, cause a state-change wakeup */
2086         switch(pp->sp_pend) {
2087         case LOPEN:
2088         case MPEND:
2089         case MOPEN:
2090         case CONFIG:
2091         case SBREAK:
2092         case EBREAK:
2093                 wakeup(&pp->sp_state);
2094                 break;
2095         default:
2096                 break;
2097         }
2098
2099         pp->sp_pend = cmd;              /* New command pending */
2100         ccbp->hi_stat = cmd;            /* Post it */
2101
2102         if (waitflag) {
2103                 if (in_intr) {          /* If in interrupt handler */
2104                         DPRINT((pp, DBG_PARAM,
2105                                 "attempt to sleep in si_intr - cmd req %d\n",
2106                                 cmd));
2107                         splx(oldspl);
2108                         return;
2109                 } else while(ccbp->hi_stat != IDLE_OPEN &&
2110                              ccbp->hi_stat != IDLE_BREAK) {
2111                         if (ttysleep(pp->sp_tty, (caddr_t)&pp->sp_state, PCATCH,
2112                             "sicmd2", 0))
2113                                 break;
2114                 }
2115         }
2116         splx(oldspl);
2117 }
2118
2119 static void
2120 si_disc_optim(struct tty *tp, struct termios *t, struct si_port *pp)
2121 {
2122         /*
2123          * XXX can skip a lot more cases if Smarts.  Maybe
2124          * (IGNCR | ISTRIP | IXON) in c_iflag.  But perhaps we
2125          * shouldn't skip if (TS_CNTTB | TS_LNCH) is set in t_state.
2126          */
2127         if (!(t->c_iflag & (ICRNL | IGNCR | IMAXBEL | INLCR | ISTRIP | IXON)) &&
2128             (!(t->c_iflag & BRKINT) || (t->c_iflag & IGNBRK)) &&
2129             (!(t->c_iflag & PARMRK) ||
2130              (t->c_iflag & (IGNPAR | IGNBRK)) == (IGNPAR | IGNBRK)) &&
2131             !(t->c_lflag & (ECHO | ICANON | IEXTEN | ISIG | PENDIN)) &&
2132             linesw[tp->t_line].l_rint == ttyinput)
2133                 tp->t_state |= TS_CAN_BYPASS_L_RINT;
2134         else
2135                 tp->t_state &= ~TS_CAN_BYPASS_L_RINT;
2136         pp->sp_hotchar = linesw[tp->t_line].l_hotchar;
2137         DPRINT((pp, DBG_OPTIM, "bypass: %s, hotchar: %x\n",
2138                 (tp->t_state & TS_CAN_BYPASS_L_RINT) ? "on" : "off",
2139                 pp->sp_hotchar));
2140 }
2141
2142
2143 #ifdef  SI_DEBUG
2144
2145 void
2146 si_dprintf(struct si_port *pp, int flags, const char *fmt, ...)
2147 {
2148         __va_list ap;
2149
2150         if ((pp == NULL && (si_debug&flags)) ||
2151             (pp != NULL && ((pp->sp_debug&flags) || (si_debug&flags)))) {
2152                 if (pp != NULL)
2153                         printf("%ci%d(%d): ", 's',
2154                                 (int)SI_CARD(minor(pp->sp_tty->t_dev)),
2155                                 (int)SI_PORT(minor(pp->sp_tty->t_dev)));
2156                 __va_start(ap, fmt);
2157                 vprintf(fmt, ap);
2158                 __va_end(ap);
2159         }
2160 }
2161
2162 static char *
2163 si_mctl2str(enum si_mctl cmd)
2164 {
2165         switch (cmd) {
2166         case GET:
2167                 return("GET");
2168         case SET:
2169                 return("SET");
2170         case BIS:
2171                 return("BIS");
2172         case BIC:
2173                 return("BIC");
2174         }
2175         return("BAD");
2176 }
2177
2178 #endif  /* DEBUG */
2179
2180 static char *
2181 si_modulename(int host_type, int uart_type)
2182 {
2183         switch (host_type) {
2184         /* Z280 based cards */
2185         case SIEISA:
2186         case SIHOST2:
2187         case SIHOST:
2188         case SIPCI:
2189                 switch (uart_type) {
2190                 case 0:
2191                         return(" (XIO)");
2192                 case 1:
2193                         return(" (SI)");
2194                 }
2195                 break;
2196         /* T225 based hosts */
2197         case SIJETPCI:
2198         case SIJETISA:
2199                 switch (uart_type) {
2200                 case 0:
2201                         return(" (SI)");
2202                 case 40:
2203                         return(" (XIO)");
2204                 case 72:
2205                         return(" (SXDC)");
2206                 }
2207                 break;
2208         }
2209         return("");
2210 }