summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1995-08-09 13:13:47 +0000
committerpeter <peter@FreeBSD.org>1995-08-09 13:13:47 +0000
commit95dd59f2aea9a41c65987a24c1e174fc190e1578 (patch)
tree35cd8e58cd1f7f915d76d0b7b8fb5996c08ba377
parent1e1a18756b2feed803677bc3d80ae25309cc9294 (diff)
downloadFreeBSD-src-95dd59f2aea9a41c65987a24c1e174fc190e1578.zip
FreeBSD-src-95dd59f2aea9a41c65987a24c1e174fc190e1578.tar.gz
Bring in my long-overdue version of the Specialix driver.
This was originally ported to BSDI by Andy Rutter <andy@acronym.co.uk>. At the end of the day, this code has very little in common with Andy's version, or the Specialix SYSV version. Essentially it has been gradually and almost completely rewritten, with LOTS of advice and inspiration from Bruce Evans. There are a couple of missing bits still, but they are minor. The user-mode "sicontrol" program is in sad shape and will come in soon. Transparent printing died a timely death.. Maybe later.. Jeremy Rolls @ Specialix (Development directory) has confirmed this is OK to distribute, and Andy personally sent me his version that I started from. Although this driver stood up to a nasty stress-test in this form, I am not confident that there are no nasty bugs lurking. People are welcome to try it, but dont go out and buy one just yet.. :-) And *DONT* use it on a mission-critical machine... This is ALPHA QUALITY!
-rw-r--r--sys/dev/si/si.c2254
-rw-r--r--sys/dev/si/si.h556
-rw-r--r--sys/dev/si/sireg.h69
-rw-r--r--sys/i386/include/si.h556
-rw-r--r--sys/i386/isa/si.c2254
-rw-r--r--sys/i386/isa/sireg.h69
6 files changed, 5758 insertions, 0 deletions
diff --git a/sys/dev/si/si.c b/sys/dev/si/si.c
new file mode 100644
index 0000000..8af77e5
--- /dev/null
+++ b/sys/dev/si/si.c
@@ -0,0 +1,2254 @@
+/*
+ * Device driver for Specialix range (SLXOS) of serial line multiplexors.
+ *
+ * Copyright (C) 1990, 1992 Specialix International,
+ * Copyright (C) 1993, Andy Rutter <andy@acronym.co.uk>
+ * Copyright (C) 1995, Peter Wemm <peter@haywire.dialix.com>
+ *
+ * Originally derived from: SunOS 4.x version
+ * Ported from BSDI version to FreeBSD by Peter Wemm.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notices, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notices, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ * must display the following acknowledgement:
+ * This product includes software developed by Andy Rutter of
+ * Advanced Methods and Tools Ltd. based on original information
+ * from Specialix International.
+ * 4. Neither the name of Advanced Methods and Tools, nor Specialix
+ * International may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
+ * NO EVENT SHALL THE AUTHORS BE LIABLE.
+ *
+ * $Id$
+ */
+
+#ifndef lint
+static char si_copyright1[] = "@(#) (C) Specialix International, 1990,1992",
+ si_copyright2[] = "@(#) (C) Andy Rutter 1993",
+ si_copyright3[] = "@(#) (C) Peter Wemm 1995";
+#endif /* not lint */
+
+#define SI_DEBUG /* turn driver debugging on */
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/ioctl.h>
+#include <sys/tty.h>
+#include <sys/ttydefaults.h>
+#include <sys/proc.h>
+#include <sys/user.h>
+#include <sys/conf.h>
+#include <sys/file.h>
+#include <sys/uio.h>
+#include <sys/dkstat.h>
+#include <sys/kernel.h>
+#include <sys/syslog.h>
+#include <sys/device.h>
+#include <sys/malloc.h>
+#include <sys/devconf.h>
+
+#include <machine/clock.h>
+
+#include <i386/isa/icu.h>
+#include <i386/isa/isa.h>
+#include <i386/isa/isa_device.h>
+
+#include <i386/isa/sireg.h>
+#include <machine/si.h>
+
+#include "si.h"
+
+/*
+ * This device driver is designed to interface the Specialix International
+ * range of serial multiplexor cards (SLXOS) to BSDI/386 on an ISA bus machine.
+ *
+ * The controller is interfaced to the host via dual port ram
+ * and a (programmable - SIHOST2) interrupt at IRQ 11,12 or 15.
+ */
+
+#define DEF_IXANY SPF_IXANY /* allow IXANY in t_iflag to work */
+#define POLL /* turn on poller to generate buffer empty interrupt */
+#define SI_I_HIGH_WATER (TTYHOG - SLXOS_BUFFERSIZE)
+
+enum si_mctl { GET, SET, BIS, BIC };
+
+static void si_command __P((struct si_port *, int, int));
+static int si_modem __P((struct si_port *, enum si_mctl, int));
+static void si_write_enable __P((struct si_port *, int));
+static int si_drainwait __P((struct si_port *, char *));
+static int si_Sioctl __P((dev_t, int, caddr_t, int, struct proc *));
+static void si_start __P((struct tty *));
+static void si_lstart __P((struct si_port *));
+static void si_disc_optim __P((struct tty *tp, struct termios *t,
+ struct si_port *pp));
+static void sihardclose __P((struct si_port *pp));
+static void sidtrwakeup __P((void *chan));
+
+void sistop __P((struct tty *tp, int rw));
+int siparam __P((struct tty *, struct termios *));
+int siintr __P((int bdnum));
+
+static int si_Nports = 0;
+static int si_Nmodules = 0;
+static int si_debug = 0;
+
+/* where the firmware lives */
+extern int si_dsize;
+extern unsigned char si_download[];
+
+struct si_softc si_softc[NSI]; /* 4 elements */
+
+#ifndef B2000 /* not standard */
+# define B2000 2000
+#endif
+static struct speedtab bdrates[] = {
+ B75, CLK75, /* 0x0 */
+ B110, CLK110, /* 0x1 */
+ B150, CLK150, /* 0x3 */
+ B300, CLK300, /* 0x4 */
+ B600, CLK600, /* 0x5 */
+ B1200, CLK1200, /* 0x6 */
+ B2000, CLK2000, /* 0x7 */
+ B2400, CLK2400, /* 0x8 */
+ B4800, CLK4800, /* 0x9 */
+ B9600, CLK9600, /* 0xb */
+ B19200, CLK19200, /* 0xc */
+ B38400, CLK38400, /* 0x2 (out of order!) */
+ B57600, CLK57600, /* 0xd */
+ B115200, CLK110, /* 0x1 (dupe!, 110 baud on "si") */
+ -1, -1
+};
+
+
+/* populated with approx character/sec rates - translated at card
+ * initialisation time to chars per tick of the clock */
+static int done_chartimes = 0;
+static struct speedtab chartimes[] = {
+ B75, 8,
+ B110, 11,
+ B150, 15,
+ B300, 30,
+ B600, 60,
+ B1200, 120,
+ B2000, 200,
+ B2400, 240,
+ B4800, 480,
+ B9600, 960,
+ B19200, 1920,
+ B38400, 3840,
+ B57600, 5760,
+ B115200, 11520,
+ -1, -1
+};
+static volatile int in_intr = 0; /* Inside interrupt handler? */
+static int buffer_space = 128; /* Amount of free buffer space
+ which must be available before
+ the writer is unblocked */
+static int sidefaultrate = TTYDEF_SPEED;
+
+#ifdef POLL
+#define POLL_INTERVAL (hz/2)
+static int init_finished = 0;
+static void si_poll __P((void *));
+#endif
+
+/*
+ * Array of adapter types and the corresponding RAM size. The order of
+ * entries here MUST match the ordinal of the adapter type.
+ */
+static char *si_type[] = {
+ "EMPTY",
+ "SIHOST",
+ "SI2", /* MCA */
+ "SIHOST2",
+ "SIEISA",
+};
+
+
+static struct kern_devconf si_kdc[NSI] = { {
+ 0, 0, 0, /* filled in by dev_attach */
+ "si", 0, { MDDT_ISA, 0, "tty" },
+ isa_generic_externalize, 0, 0, ISA_EXTERNALLEN,
+ &kdc_isa0, /* parent */
+ 0, /* parent data */
+ DC_UNCONFIGURED, /* state */
+ "Specialix SI/XIO Host adapter",
+ DC_CLS_SERIAL, /* class */
+} };
+
+void
+si_registerdev(id)
+ struct isa_device *id;
+{
+ if (id->id_unit != 0) {
+ si_kdc[id->id_unit] = si_kdc[0]; /* struct copy */
+ }
+ si_kdc[id->id_unit].kdc_unit = id->id_unit;
+ si_kdc[id->id_unit].kdc_isa = id;
+ dev_attach(&si_kdc[id->id_unit]);
+}
+
+/* Look for a valid board at the given mem addr */
+int
+siprobe(id)
+ struct isa_device *id;
+{
+ struct si_softc *sc;
+ int type;
+ u_int i, ramsize;
+ volatile BYTE was, *ux;
+ volatile unsigned char *maddr;
+ unsigned char *paddr;
+
+ si_registerdev(id);
+
+ maddr = id->id_maddr; /* virtual address... */
+ paddr = (caddr_t)vtophys(id->id_maddr); /* physical address... */
+
+ DPRINT((0, DBG_AUTOBOOT, "SLXOS probe at virtual=0x%x physical=0x%x\n",
+ id->id_maddr, paddr));
+
+ /*
+ * this is a lie, but it's easier than trying to handle caching
+ * and ram conflicts in the >1M and <16M region.
+ */
+ if ((caddr_t)paddr < (caddr_t)IOM_BEGIN ||
+ (caddr_t)paddr >= (caddr_t)IOM_END) {
+ printf("si%d: iomem (%x) out of range\n",
+ id->id_unit, paddr);
+ return(0);
+ }
+
+ if (id->id_unit >= NSI) {
+ /* THIS IS IMPOSSIBLE */
+ return(0);
+ }
+
+ if (((u_int)paddr & 0x7fff) != 0) {
+ DPRINT((0, DBG_AUTOBOOT|DBG_FAIL,
+ "si%d: iomem (%x) not on 32k boundary\n",
+ id->id_unit, paddr));
+ return(0);
+ }
+
+
+ for (i=0; i < NSI; i++) {
+ if ((sc = &si_softc[i]) == NULL)
+ continue;
+ if ((caddr_t)sc->sc_paddr == (caddr_t)paddr) {
+ DPRINT((0, DBG_AUTOBOOT|DBG_FAIL,
+ "si%d: iomem (%x) already configured to si%d\n",
+ id->id_unit, sc->sc_paddr, i));
+ return(0);
+ }
+ }
+
+#if NEISA > 0
+ if (id->id_iobase > 0x0fff) { /* EISA card */
+ int irq, port;
+ unsigned long base;
+ int eisa_irqs[] = { 0,IRQ1,IRQ2,IRQ3,IRQ4,IRQ5,IRQ6,IRQ7,
+ IRQ8,IRQ9,IRQ10,IRQ11,IRQ12,IRQ13,IRQ14,IRQ15 };
+
+ port = id->id_iobase;
+ base = (inb(port+1) << 24) | (inb(port) << 16);
+ irq = ((inb(port+2) >> 4) & 0xf);
+
+ id->id_irq = eisa_irqs[irq];
+
+ DPRINT((0, DBG_AUTOBOOT,
+ "SLXOS: si%d: EISA base %x, irq %x, id_irq %x, port %x\n",
+ id->id_unit, base, irq, id->id_irq, port));
+
+ if ((id->id_irq&(IRQ1|IRQ2|IRQ8|IRQ13)) != 0)
+ goto bad_irq;
+
+ id->id_iobase &= 0xf000;
+ id->id_iosize = 0x0fff;
+
+ type = EISA;
+ outb(p+2, (BYTE)irq << 4);
+
+ sc->sc_eisa_iobase = p;
+ sc->sc_eisa_irqbits = irq << 4;
+ ramsize = SIEISA_RAMSIZE;
+ goto got_card;
+ }
+#endif
+
+ /* Is there anything out there? (0x17 is just an arbitrary number) */
+ *maddr = 0x17;
+ if (*maddr != 0x17) {
+ DPRINT((0, DBG_AUTOBOOT|DBG_FAIL,
+ "si%d: 0x17 check fail at phys 0x%x\n",
+ id->id_unit, paddr));
+fail:
+ return(0);
+ }
+ /*
+ * OK, now to see if whatever responded is really an SI card.
+ * Try for a MK II first (SIHOST2)
+ */
+ for (i=SIPLSIG; i<SIPLSIG+8; i++)
+ if ((*(maddr+i) & 7) != (~(BYTE)i & 7))
+ goto try_mk1;
+
+ /* It must be an SIHOST2 */
+ *(maddr + SIPLRESET) = 0;
+ *(maddr + SIPLIRQCLR) = 0;
+ *(maddr + SIPLIRQSET) = 0x10;
+ type = SIHOST2;
+ ramsize = SIHOST2_RAMSIZE;
+ goto got_card;
+
+ /*
+ * Its not a MK II, so try for a MK I (SIHOST)
+ */
+try_mk1:
+ *(maddr+SIRESET) = 0x0; /* reset the card */
+ *(maddr+SIINTCL) = 0x0; /* clear int */
+ *(maddr+SIRAM) = 0x17;
+ if (*(maddr+SIRAM) != (BYTE)0x17)
+ goto fail;
+ *(maddr+0x7ff8) = 0x17;
+ if (*(maddr+0x7ff8) != (BYTE)0x17) {
+ DPRINT((0, DBG_AUTOBOOT|DBG_FAIL,
+ "si%d: 0x17 check fail at phys 0x%x = 0x%x\n",
+ id->id_unit, paddr+0x77f8, *(maddr+0x77f8)));
+ goto fail;
+ }
+
+ /* It must be an SIHOST (maybe?) - there must be a better way XXXX */
+ type = SIHOST;
+ ramsize = SIHOST_RAMSIZE;
+
+got_card:
+ DPRINT((0, DBG_AUTOBOOT, "SLXOS: found type %d card, try memory test\n", type));
+ /* Try the acid test */
+ ux = (BYTE *)(maddr + SIRAM);
+ for (i=0; i<ramsize; i++, ux++)
+ *ux = (BYTE)(i&0xff);
+ ux = (BYTE *)(maddr + SIRAM);
+ for (i=0; i<ramsize; i++, ux++) {
+ if ((was = *ux) != (BYTE)(i&0xff)) {
+ DPRINT((0, DBG_AUTOBOOT|DBG_FAIL,
+ "SLXOS si%d: match fail at phys 0x%x, was %x should be %x\n",
+ id->id_unit, paddr+i, was, i&0xff));
+ goto fail;
+ }
+ }
+
+ /* clear out the RAM */
+ ux = (BYTE *)(maddr + SIRAM);
+ for (i=0; i<ramsize; i++)
+ *ux++ = 0;
+ ux = (BYTE *)(maddr + SIRAM);
+ for (i=0; i<ramsize; i++) {
+ if ((was = *ux++) != 0) {
+ DPRINT((0, DBG_AUTOBOOT|DBG_FAIL,
+ "SLXOS si%d: clear fail at phys 0x%x, was %x\n",
+ id->id_unit, paddr+i, was));
+ goto fail;
+ }
+ }
+
+ /*
+ * Success, we've found a valid board, now fill in
+ * the adapter structure.
+ */
+ switch (type) {
+ case SIHOST2:
+ if ((id->id_irq&(IRQ11|IRQ12|IRQ15)) == 0) {
+bad_irq:
+ DPRINT((0, DBG_AUTOBOOT|DBG_FAIL,
+ "si%d: bad IRQ value - %d\n",
+ id->id_unit, id->id_irq));
+ return(0);
+ }
+ id->id_msize = SIHOST2_MEMSIZE;
+ break;
+ case SIHOST:
+ if ((id->id_irq&(IRQ11|IRQ12|IRQ15)) == 0) {
+ goto bad_irq;
+ }
+ id->id_msize = SIHOST_MEMSIZE;
+ break;
+ case SIEISA:
+ id->id_msize = SIEISA_MEMSIZE;
+ break;
+ case SI2: /* MCA */
+ default:
+ printf("si%d: %s not supported\n", id->id_unit, si_type[type]);
+ return(0);
+ }
+ si_softc[id->id_unit].sc_type = type;
+ si_softc[id->id_unit].sc_typename = si_type[type];
+ return(-1); /* -1 == found */
+}
+
+/*
+ * Attach the device. Initialize the card.
+ */
+int
+siattach(id)
+ struct isa_device *id;
+{
+ int unit = id->id_unit;
+ struct si_softc *sc = &si_softc[unit];
+ struct si_port *pp;
+ volatile struct si_channel *ccbp;
+ volatile struct si_reg *regp;
+ volatile caddr_t maddr;
+ struct si_module *modp;
+ struct tty *tp;
+ struct speedtab *spt;
+ int nmodule, nport, x, y;
+
+ DPRINT((0, DBG_AUTOBOOT, "SLXOS siattach\n"));
+
+ sc->sc_paddr = (caddr_t)vtophys(id->id_maddr);
+ sc->sc_maddr = id->id_maddr;
+ sc->sc_irq = id->id_irq;
+
+ sc->sc_ports = NULL; /* mark as uninitialised */
+
+ maddr = sc->sc_maddr;
+
+ /*
+ * OK, now lets download the firmware and try and boot the CPU..
+ */
+
+ DPRINT((0, DBG_DOWNLOAD, "SLXOS si_download: nbytes %d\n", si_dsize));
+ bcopy(si_download, maddr, si_dsize);
+
+ switch (sc->sc_type) {
+ case SIEISA:
+#if NEISA > 0
+ /* modify the Z280 firmware to tell it that it's on an EISA */
+ *(maddr+0x42) = 1;
+ outb(sc->sc_eisa_iobase+2, sc->sc_eisa_irqbits | 4);
+ (void)inb(sc->sc_eisa_iobase+3); /* reset interrupt */
+ break;
+#endif /* fall-through if not EISA */
+ case SI2:
+ /* must get around to writing the code for
+ * these one day */
+ return 0;
+ case SIHOST:
+ *(maddr+SIRESET_CL) = 0;
+ *(maddr+SIINTCL_CL) = 0;
+ break;
+ case SIHOST2:
+ *(maddr+SIPLRESET) = 0x10;
+ switch (sc->sc_irq) {
+ case IRQ11:
+ *(maddr+SIPLIRQ11) = 0x10;
+ break;
+ case IRQ12:
+ *(maddr+SIPLIRQ12) = 0x10;
+ break;
+ case IRQ15:
+ *(maddr+SIPLIRQ15) = 0x10;
+ break;
+ }
+ *(maddr+SIPLIRQCLR) = 0x10;
+ break;
+ }
+
+ DELAY(1000000); /* wait around for a second */
+
+ regp = (struct si_reg *)maddr;
+ y = 0;
+ /* wait max of 5 sec for init OK */
+ while (regp->initstat == 0 && y++ < 10) {
+ DELAY(500000);
+ }
+ switch (regp->initstat) {
+ case 0:
+ printf("si%d: startup timeout - aborting\n", unit);
+ sc->sc_type = NULL;
+ return 0;
+ case 1:
+ /* set throttle to 100 intr per second */
+ regp->int_count = 25000;
+ /* rx intr max of 25 timer per second */
+ regp->rx_int_count = 4;
+ regp->int_pending = 0; /* no intr pending */
+ regp->int_scounter = 0; /* reset counter */
+ break;
+ case 0xff:
+ /*
+ * No modules found, so give up on this one.
+ */
+ printf("si%d: %s - no ports found\n", unit,
+ si_type[sc->sc_type]);
+ return 0;
+ default:
+ printf("si%d: Z280 version error - initstat %x\n",
+ unit, regp->initstat);
+ return 0;
+ }
+
+ /*
+ * First time around the ports just count them in order
+ * to allocate some memory.
+ */
+ nport = 0;
+ modp = (struct si_module *)(maddr + 0x80);
+ for (;;) {
+ DPRINT((0, DBG_DOWNLOAD, "SLXOS si%d: ccb addr 0x%x\n", unit, modp));
+ switch (modp->sm_type & (~MMASK)) {
+ case M232:
+ case M422:
+ DPRINT((0, DBG_DOWNLOAD,
+ "SLXOS si%d: Found 232/422 module, %d ports\n",
+ unit, (int)(modp->sm_type & MMASK)));
+
+ /* this is a firmware issue */
+ if (si_Nports == SI_MAXPORTPERCARD) {
+ printf("si%d: extra ports ignored\n", unit);
+ continue;
+ }
+
+ x = modp->sm_type & MMASK;
+ nport += x;
+ si_Nports += x;
+ si_Nmodules++;
+ break;
+ default:
+ printf("si%d: unknown module type %d\n",
+ unit, modp->sm_type);
+ break;
+ }
+ if (modp->sm_next == 0)
+ break;
+ modp = (struct si_module *)
+ (maddr + (unsigned)(modp->sm_next & 0x7fff));
+ }
+ sc->sc_ports = (struct si_port *)malloc(sizeof(struct si_port) * nport,
+ M_DEVBUF, M_NOWAIT);
+ if (sc->sc_ports == 0) {
+mem_fail:
+ printf("si%d: fail to malloc memory for port structs\n",
+ unit);
+ return 0;
+ }
+ bzero(sc->sc_ports, sizeof(struct si_port) * nport);
+ sc->sc_nport = nport;
+
+ /*
+ * allocate tty structures for ports
+ */
+ tp = (struct tty *)malloc(sizeof(*tp) * nport, M_DEVBUF, M_NOWAIT);
+ if (tp == 0)
+ goto mem_fail;
+ bzero(tp, sizeof(*tp) * nport);
+
+ /* mark the device state as attached */
+ si_kdc[unit].kdc_state = DC_BUSY;
+
+ /*
+ * Scan round the ports again, this time initialising.
+ */
+ pp = sc->sc_ports;
+ nmodule = 0;
+ modp = (struct si_module *)(maddr + 0x80);
+ for (;;) {
+ switch (modp->sm_type & (~MMASK)) {
+ case M232:
+ case M422:
+ nmodule++;
+ nport = (modp->sm_type & MMASK);
+ ccbp = (struct si_channel *)((char *)modp+0x100);
+ for (x = 0; x < nport; x++, pp++, ccbp++) {
+ pp->sp_ccb = ccbp; /* save the address */
+ pp->sp_tty = tp++;
+ pp->sp_pend = IDLE_CLOSE;
+ pp->sp_flags = DEF_IXANY;
+ pp->sp_state = 0; /* internal flag */
+ pp->sp_dtr_wait = 3 * hz;
+ pp->sp_iin.c_iflag = 0;
+ pp->sp_iin.c_oflag = 0;
+ pp->sp_iin.c_cflag = TTYDEF_CFLAG;
+ pp->sp_iin.c_lflag = 0;
+ termioschars(&pp->sp_iin);
+ pp->sp_iin.c_ispeed = pp->sp_iin.c_ospeed =
+ sidefaultrate;
+ pp->sp_iout = pp->sp_iin;
+ }
+ break;
+ default:
+ break;
+ }
+ if (modp->sm_next == 0) {
+ printf("si%d: %s, ports: %d, modules: %d\n",
+ unit,
+ sc->sc_typename,
+ sc->sc_nport,
+ nmodule);
+ break;
+ }
+ modp = (struct si_module *)
+ (maddr + (unsigned)(modp->sm_next & 0x7fff));
+ }
+ if (done_chartimes == 0) {
+ for (spt = chartimes ; spt->sp_speed != -1; spt++) {
+ if ((spt->sp_code /= hz) == 0)
+ spt->sp_code = 1;
+ }
+ done_chartimes = 1;
+
+/* tell them where we stand.. */
+printf("\
+si%d: -------------------USE AT YOUR OWN RISK!!!!--------------------\n\
+si%d: WARNING!! THIS DRIVER IS NOT COMPLETE NOR SUFFICIENTLY TESTED!!\n\
+si%d: -------------------USE AT YOUR OWN RISK!!!!--------------------\n\
+", unit, unit, unit);
+
+#ifdef __GNUC__
+#warning "WARNING: THIS DRIVER IS NOT COMPLETE! USE AT YOR OWN RISK!!!"
+#endif
+
+ }
+ return (1);
+}
+
+struct isa_driver sidriver =
+ { siprobe, siattach, "si" };
+
+
+int
+siopen(dev, flag, mode, p)
+ dev_t dev;
+ int flag, mode;
+ struct proc *p;
+{
+ int oldspl, error;
+ int card, port;
+ register struct si_softc *sc;
+ register struct tty *tp;
+ volatile struct si_channel *ccbp;
+ struct si_port *pp;
+ int mynor = minor(dev);
+
+ /* quickly let in /dev/si_control */
+ if (IS_CONTROLDEV(mynor)) {
+ if (error = suser(p->p_ucred, &p->p_acflag))
+ return(error);
+ return(0);
+ }
+
+ card = SI_CARD(mynor);
+ if (card >= NSI)
+ return (ENXIO);
+ sc = &si_softc[card];
+
+ if (sc->sc_type == NULL) {
+ DPRINT((0, DBG_OPEN|DBG_FAIL, "SLXOS si%d: type %s??\n",
+ card, sc->sc_typename));
+ return(ENXIO);
+ }
+
+ port = SI_PORT(mynor);
+ if (port >= sc->sc_nport) {
+ DPRINT((0, DBG_OPEN|DBG_FAIL, "SLXOS si%d: nports %d\n",
+ card, sc->sc_nport));
+ return(ENXIO);
+ }
+
+#ifdef POLL
+ /*
+ * We've now got a device, so start the poller.
+ */
+ if (init_finished == 0) {
+ timeout(si_poll, (caddr_t)0L, POLL_INTERVAL);
+ init_finished = 1;
+ }
+#endif
+
+ /* initial/lock device */
+ if (IS_STATE(mynor)) {
+ return(0);
+ }
+
+ pp = sc->sc_ports + port;
+ tp = pp->sp_tty; /* the "real" tty */
+ ccbp = pp->sp_ccb; /* Find control block */
+ DPRINT((pp, DBG_ENTRY|DBG_OPEN, "siopen(%x,%x,%x,%x)\n",
+ dev, flag, mode, p));
+
+ oldspl = spltty(); /* Keep others out */
+ error = 0;
+
+open_top:
+ while (pp->sp_state & SS_DTR_OFF) {
+ error = tsleep(&pp->sp_dtr_wait, TTIPRI|PCATCH, "sidtr", 0);
+ if (error != 0)
+ goto out;
+ }
+
+ if (tp->t_state & TS_ISOPEN) {
+ /*
+ * The device is open, so everything has been initialised.
+ * handle conflicts.
+ */
+ if (IS_CALLOUT(mynor)) {
+ if (!pp->sp_active_out) {
+ error = EBUSY;
+ goto out;
+ }
+ } else {
+ if (pp->sp_active_out) {
+ if (flag & O_NONBLOCK) {
+ error = EBUSY;
+ goto out;
+ }
+ error = tsleep(&pp->sp_active_out,
+ TTIPRI|PCATCH, "sibi", 0);
+ if (error != 0)
+ goto out;
+ goto open_top;
+ }
+ }
+ if (tp->t_state & TS_XCLUDE && p->p_ucred->cr_uid != 0) {
+ DPRINT((pp, DBG_OPEN|DBG_FAIL,
+ "already open and EXCLUSIVE set\n"));
+ error = EBUSY;
+ goto out;
+ }
+ } else {
+ /*
+ * The device isn't open, so there are no conflicts.
+ * Initialize it. Avoid sleep... :-)
+ */
+ DPRINT((pp, DBG_OPEN, "first open\n"));
+ tp->t_oproc = si_start;
+ tp->t_param = siparam;
+ tp->t_dev = dev;
+ tp->t_termios = mynor & SI_CALLOUT_MASK
+ ? pp->sp_iout : pp->sp_iin;
+
+ (void) si_modem(pp, SET, TIOCM_DTR|TIOCM_RTS);
+
+ ++pp->sp_wopeners; /* in case of sleep in siparam */
+
+ error = siparam(tp, &tp->t_termios);
+
+ --pp->sp_wopeners;
+ if (error != 0)
+ goto out;
+ /* XXX: we should goto_top if siparam slept */
+
+ ttsetwater(tp);
+
+ /* set initial DCD state */
+ pp->sp_last_hi_ip = ccbp->hi_ip;
+ if ((pp->sp_last_hi_ip & IP_DCD) || IS_CALLOUT(mynor)) {
+ (*linesw[tp->t_line].l_modem)(tp, 1);
+ }
+ }
+
+ /* whoops! we beat the close! */
+ if (pp->sp_state & SS_CLOSING) {
+ /* try and stop it from proceeding to bash the hardware */
+ pp->sp_state &= ~SS_CLOSING;
+ }
+
+ /*
+ * Wait for DCD if necessary
+ */
+ if (!(tp->t_state & TS_CARR_ON)
+ && !IS_CALLOUT(mynor)
+ && !(tp->t_cflag & CLOCAL)
+ && !(flag & O_NONBLOCK)) {
+ ++pp->sp_wopeners;
+ DPRINT((pp, DBG_OPEN, "sleeping for carrier\n"));
+ error = tsleep(TSA_CARR_ON(tp), TTIPRI|PCATCH, "sidcd", 0);
+ --pp->sp_wopeners;
+ if (error != 0)
+ goto out;
+ goto open_top;
+ }
+
+ error = (*linesw[tp->t_line].l_open)(dev, tp);
+ si_disc_optim(tp, &tp->t_termios, pp);
+ if (tp->t_state & TS_ISOPEN && IS_CALLOUT(mynor))
+ pp->sp_active_out = TRUE;
+
+ pp->sp_state |= SS_OPEN; /* made it! */
+
+out:
+ splx(oldspl);
+
+ DPRINT((pp, DBG_OPEN, "leaving siopen\n"));
+
+ if (!(tp->t_state & TS_ISOPEN) && pp->sp_wopeners == 0)
+ sihardclose(pp);
+
+ return(error);
+}
+
+int
+siclose(dev, flag, mode, p)
+ dev_t dev;
+ int flag, mode;
+ struct proc *p;
+{
+ register struct si_port *pp;
+ register struct tty *tp;
+ int oldspl;
+ int error = 0;
+ int mynor = minor(dev);
+
+ if (IS_SPECIAL(mynor))
+ return(0);
+
+ oldspl = spltty();
+
+ pp = MINOR2PP(mynor);
+ tp = pp->sp_tty;
+
+ DPRINT((pp, DBG_ENTRY|DBG_CLOSE, "siclose(%x,%x,%x,%x) sp_state:%x\n",
+ dev, flag, mode, p, pp->sp_state));
+
+ /* did we sleep and loose a race? */
+ if (pp->sp_state & SS_CLOSING) {
+ /* error = ESOMETING? */
+ goto out;
+ }
+
+ /* begin race detection.. */
+ pp->sp_state |= SS_CLOSING;
+
+ si_write_enable(pp, 0); /* block writes for ttywait() */
+
+ /* THIS MAY SLEEP IN TTYWAIT!!! */
+ (*linesw[tp->t_line].l_close)(tp, flag);
+
+ si_write_enable(pp, 1);
+
+ /* did we sleep and somebody started another open? */
+ if (!(pp->sp_state & SS_CLOSING)) {
+ /* error = ESOMETING? */
+ goto out;
+ }
+ /* ok. we are now still on the right track.. nuke the hardware */
+
+ if (pp->sp_state & SS_LSTART) {
+ untimeout((timeout_func_t)si_lstart, (caddr_t)pp);
+ pp->sp_state &= ~SS_LSTART;
+ }
+
+ sistop(tp, FREAD | FWRITE);
+
+ sihardclose(pp);
+ ttyclose(tp);
+ pp->sp_state &= ~SS_OPEN;
+
+out:
+ DPRINT((pp, DBG_CLOSE|DBG_EXIT, "close done, returning\n"));
+ splx(oldspl);
+ return(error);
+}
+
+static void
+sihardclose(pp)
+ struct si_port *pp;
+{
+ int oldspl;
+ struct tty *tp;
+ volatile struct si_channel *ccbp;
+
+ oldspl = spltty();
+
+ tp = pp->sp_tty;
+ ccbp = pp->sp_ccb; /* Find control block */
+ if (tp->t_cflag & HUPCL
+ || !pp->sp_active_out
+ && !(ccbp->hi_ip & IP_DCD)
+ && !(pp->sp_iin.c_cflag && CLOCAL)
+ || !(tp->t_state & TS_ISOPEN)) {
+
+ (void) si_modem(pp, BIC, TIOCM_DTR|TIOCM_RTS);
+ (void) si_command(pp, FCLOSE, SI_NOWAIT);
+
+ if (pp->sp_dtr_wait != 0) {
+ timeout(sidtrwakeup, pp, pp->sp_dtr_wait);
+ pp->sp_state |= SS_DTR_OFF;
+ }
+
+ }
+ pp->sp_active_out = FALSE;
+ wakeup((caddr_t)&pp->sp_active_out);
+ wakeup(TSA_CARR_ON(tp));
+
+ splx(oldspl);
+}
+
+
+/*
+ * called at splsoftclock()...
+ */
+static void
+sidtrwakeup(chan)
+ void *chan;
+{
+ struct si_port *pp;
+ int oldspl;
+
+ oldspl = spltty();
+
+ pp = (struct si_port *)chan;
+ pp->sp_state &= ~SS_DTR_OFF;
+ wakeup(&pp->sp_dtr_wait);
+
+ splx(oldspl);
+}
+
+/*
+ * User level stuff - read and write
+ */
+int
+siread(dev, uio, flag)
+ register dev_t dev;
+ struct uio *uio;
+ int flag;
+{
+ register struct tty *tp;
+ int mynor = minor(dev);
+
+ if (IS_SPECIAL(mynor)) {
+ DPRINT((0, DBG_ENTRY|DBG_FAIL|DBG_READ, "siread(CONTROLDEV!!)\n"));
+ return(ENODEV);
+ }
+ tp = MINOR2TP(mynor);
+ DPRINT((TP2PP(tp), DBG_ENTRY|DBG_READ,
+ "siread(%x,%x,%x)\n", dev, uio, flag));
+ return ((*linesw[tp->t_line].l_read)(tp, uio, flag));
+}
+
+
+int
+siwrite(dev, uio, flag)
+ dev_t dev;
+ struct uio *uio;
+ int flag;
+{
+ register struct si_port *pp;
+ register struct tty *tp;
+ int error = 0;
+ int mynor = minor(dev);
+ int oldspl;
+
+ if (IS_SPECIAL(mynor)) {
+ DPRINT((0, DBG_ENTRY|DBG_FAIL|DBG_WRITE, "siwrite(CONTROLDEV!!)\n"));
+ return(ENODEV);
+ }
+ pp = MINOR2PP(mynor);
+ tp = pp->sp_tty;
+ DPRINT((pp, DBG_WRITE, "siwrite(%x,%x,%x)\n", dev, uio, flag));
+
+ oldspl = spltty();
+ /*
+ * If writes are currently blocked, wait on the "real" tty
+ */
+ while (pp->sp_state & SS_BLOCKWRITE) {
+ pp->sp_state |= SS_WAITWRITE;
+ DPRINT((pp, DBG_WRITE, "in siwrite, wait for SS_BLOCKWRITE to clear\n"));
+ if (error = ttysleep(tp, (caddr_t)pp, TTOPRI|PCATCH,
+ "siwrite", 0))
+ goto out;
+ }
+
+ error = (*linesw[tp->t_line].l_write)(tp, uio, flag);
+out:
+ splx(oldspl);
+ return (error);
+}
+
+
+struct tty *
+sidevtotty(dev_t dev)
+{
+ struct si_port *pp;
+ int mynor = minor(dev);
+ struct si_softc *sc = &si_softc[SI_CARD(mynor)];
+
+ if (IS_SPECIAL(mynor))
+ return(NULL);
+ if (SI_PORT(mynor) >= sc->sc_nport)
+ return(NULL);
+ pp = MINOR2PP(mynor);
+ return (pp->sp_tty);
+}
+
+int
+siioctl(dev, cmd, data, flag, p)
+ dev_t dev;
+ int cmd;
+ caddr_t data;
+ int flag;
+ struct proc *p;
+{
+ struct si_port *pp;
+ register struct tty *tp;
+ int error;
+ int mynor = minor(dev);
+ int oldspl;
+ int blocked = 0;
+#if defined(COMPAT_43)
+ int oldcmd;
+ struct termios term;
+#endif
+
+ if (IS_SI_IOCTL(cmd))
+ return(si_Sioctl(dev, cmd, data, flag, p));
+
+ pp = MINOR2PP(mynor);
+ tp = pp->sp_tty;
+
+ DPRINT((pp, DBG_ENTRY|DBG_IOCTL, "siioctl(%x,%x,%x,%x)\n",
+ dev, cmd, data, flag));
+ if (IS_STATE(mynor)) {
+ struct termios *ct;
+
+ switch (mynor & SI_STATE_MASK) {
+ case SI_INIT_STATE_MASK:
+ ct = IS_CALLOUT(mynor) ? &pp->sp_iout : &pp->sp_iin;
+ break;
+ case SI_LOCK_STATE_MASK:
+ ct = IS_CALLOUT(mynor) ? &pp->sp_iout : &pp->sp_iin;
+ break;
+ default:
+ return (ENODEV);
+ }
+ switch (cmd) {
+ case TIOCSETA:
+ error = suser(p->p_ucred, &p->p_acflag);
+ if (error != 0)
+ return (error);
+ *ct = *(struct termios *)data;
+ return (0);
+ case TIOCGETA:
+ *(struct termios *)data = *ct;
+ return (0);
+ case TIOCGETD:
+ *(int *)data = TTYDISC;
+ return (0);
+ case TIOCGWINSZ:
+ bzero(data, sizeof(struct winsize));
+ return (0);
+ default:
+ return (ENOTTY);
+ }
+ }
+ /*
+ * Do the old-style ioctl compat routines...
+ */
+#if defined(COMPAT_43)
+ term = tp->t_termios;
+ oldcmd = cmd;
+ error = ttsetcompat(tp, &cmd, data, &term);
+ if (error != 0)
+ return (error);
+ if (cmd != oldcmd)
+ data = (caddr_t)&term;
+#endif
+ /*
+ * Do the initial / lock state business
+ */
+ if (cmd == TIOCSETA || cmd == TIOCSETAW || cmd == TIOCSETAF) {
+ int cc;
+ struct termios *dt = (struct termios *)data;
+ struct termios *lt = mynor & SI_CALLOUT_MASK
+ ? &pp->sp_lout : &pp->sp_lin;
+
+ dt->c_iflag = (tp->t_iflag & lt->c_iflag)
+ | (dt->c_iflag & ~lt->c_iflag);
+ dt->c_oflag = (tp->t_oflag & lt->c_oflag)
+ | (dt->c_oflag & ~lt->c_oflag);
+ dt->c_cflag = (tp->t_cflag & lt->c_cflag)
+ | (dt->c_cflag & ~lt->c_cflag);
+ dt->c_lflag = (tp->t_lflag & lt->c_lflag)
+ | (dt->c_lflag & ~lt->c_lflag);
+ for (cc = 0; cc < NCCS; ++cc)
+ if (lt->c_cc[cc] != 0)
+ dt->c_cc[cc] = tp->t_cc[cc];
+ if (lt->c_ispeed != 0)
+ dt->c_ispeed = tp->t_ispeed;
+ if (lt->c_ospeed != 0)
+ dt->c_ospeed = tp->t_ospeed;
+ }
+
+ /*
+ * Block user-level writes to give the ttywait()
+ * a chance to completely drain for commands
+ * that require the port to be in a quiescent state.
+ */
+ switch (cmd) {
+ case TIOCSETAW: case TIOCSETAF:
+ case TIOCDRAIN: case TIOCSETP:
+ blocked++; /* block writes for ttywait() and siparam() */
+ si_write_enable(pp, 0);
+ }
+
+ error = (*linesw[tp->t_line].l_ioctl)(tp, cmd, data, flag, p);
+ if (error >= 0)
+ goto out;
+
+ oldspl = spltty();
+
+ error = ttioctl(tp, cmd, data, flag);
+ si_disc_optim(tp, &tp->t_termios, pp);
+ if (error >= 0)
+ goto outspl;
+
+ switch (cmd) {
+ case TIOCSBRK:
+ si_command(pp, SBREAK, SI_NOWAIT);
+ break;
+ case TIOCCBRK:
+ si_command(pp, EBREAK, SI_NOWAIT);
+ break;
+ case TIOCSDTR:
+ (void) si_modem(pp, SET, TIOCM_DTR|TIOCM_RTS);
+ break;
+ case TIOCCDTR:
+ (void) si_modem(pp, SET, 0);
+ break;
+ case TIOCMSET:
+ (void) si_modem(pp, SET, *(int *)data);
+ break;
+ case TIOCMBIS:
+ (void) si_modem(pp, BIS, *(int *)data);
+ break;
+ case TIOCMBIC:
+ (void) si_modem(pp, BIC, *(int *)data);
+ break;
+ case TIOCMGET:
+ *(int *)data = si_modem(pp, GET, 0);
+ break;
+ case TIOCMSDTRWAIT:
+ /* must be root since the wait applies to following logins */
+ error = suser(p->p_ucred, &p->p_acflag);
+ if (error != 0) {
+ goto outspl;
+ }
+ pp->sp_dtr_wait = *(int *)data * hz / 100;
+ break;
+ case TIOCMGDTRWAIT:
+ *(int *)data = pp->sp_dtr_wait * 100 / hz;
+ break;
+
+ default:
+ error = ENOTTY;
+ }
+ error = 0;
+outspl:
+ splx(oldspl);
+out:
+ DPRINT((pp, DBG_IOCTL|DBG_EXIT, "siioctl ret %d\n", error));
+ if (blocked)
+ si_write_enable(pp, 1);
+ return(error);
+}
+
+/*
+ * Handle the Specialix ioctls. All MUST be called via the CONTROL device
+ */
+static int
+si_Sioctl(dev_t dev, int cmd, caddr_t data, int flag, struct proc *p)
+{
+ struct si_softc *xsc;
+ register struct si_port *xpp;
+ volatile struct si_reg *regp;
+ struct si_tcsi *dp;
+ BYTE *bp;
+ int i, *ip, error = 0;
+ int oldspl;
+ int card, port;
+ unsigned short *usp;
+ int mynor = minor(dev);
+
+ DPRINT((0, DBG_ENTRY|DBG_IOCTL, "si_Sioctl(%x,%x,%x,%x)\n",
+ dev, cmd, data, flag));
+
+ if (!IS_CONTROLDEV(mynor)) {
+ DPRINT((0, DBG_IOCTL|DBG_FAIL, "not called from control device!\n"));
+ return(ENODEV);
+ }
+
+ oldspl = spltty(); /* better safe than sorry */
+
+ ip = (int *)data;
+
+#define SUCHECK if (error = suser(p->p_ucred, &p->p_acflag)) goto out
+
+ switch (cmd) {
+ case TCSIPORTS:
+ *ip = si_Nports;
+ goto out;
+ case TCSIMODULES:
+ *ip = si_Nmodules;
+ goto out;
+ case TCSISDBG_ALL:
+ SUCHECK;
+ si_debug = *ip;
+ goto out;
+ case TCSIGDBG_ALL:
+ *ip = si_debug;
+ goto out;
+ default:
+ /*
+ * Check that a controller for this port exists
+ */
+ dp = (struct si_tcsi *)data;
+ card = dp->tc_card;
+ xsc = &si_softc[card]; /* check.. */
+ if (card < 0 || card >= NSI || xsc->sc_type == NULL) {
+ error = ENOENT;
+ goto out;
+ }
+ /*
+ * And check that a port exists
+ */
+ port = dp->tc_port;
+ if (port < 0 || port >= xsc->sc_nport) {
+ error = ENOENT;
+ goto out;
+ }
+ xpp = xsc->sc_ports + port;
+ regp = (struct si_reg *)xsc->sc_maddr;
+ }
+
+ switch (cmd) {
+ case TCSIDEBUG:
+#ifdef SI_DEBUG
+ SUCHECK;
+ if (xpp->sp_debug)
+ xpp->sp_debug = 0;
+ else {
+ xpp->sp_debug = DBG_ALL;
+ DPRINT((xpp, DBG_IOCTL, "debug toggled %s\n",
+ (xpp->sp_debug&DBG_ALL)?"ON":"OFF"));
+ }
+ break;
+#else
+ error = ENODEV;
+ goto out;
+#endif
+ case TCSISDBG_LEVEL:
+ case TCSIGDBG_LEVEL:
+#ifdef SI_DEBUG
+ if (cmd == TCSIGDBG_LEVEL) {
+ dp->tc_dbglvl = xpp->sp_debug;
+ } else {
+ SUCHECK;
+ xpp->sp_debug = dp->tc_dbglvl;
+ }
+ break;
+#else
+ error = ENODEV;
+ goto out;
+#endif
+ case TCSIGRXIT:
+ dp->tc_int = regp->rx_int_count;
+ break;
+ case TCSIRXIT:
+ SUCHECK;
+ regp->rx_int_count = dp->tc_int;
+ break;
+ case TCSIGIT:
+ dp->tc_int = regp->int_count;
+ break;
+ case TCSIIT:
+ SUCHECK;
+ regp->int_count = dp->tc_int;
+ break;
+ case TCSIGMIN:
+ dp->tc_int = buffer_space;
+ break;
+ case TCSIMIN:
+ SUCHECK;
+ buffer_space = dp->tc_int;
+ break;
+ case TCSIIXANY:
+ switch (dp->tc_int) {
+ case -1:
+ dp->tc_int = (xpp->sp_flags & SPF_IXANY)?1:0;
+ break;
+ case 1:
+ SUCHECK;
+ xpp->sp_flags |= SPF_IXANY;
+ break;
+ case 0:
+ SUCHECK;
+ xpp->sp_flags &= ~SPF_IXANY;
+ break;
+ default:
+ error = EINVAL;
+ goto out;
+ }
+ break;
+ case TCSIFLOW:
+ i = dp->tc_int;
+ if (i == -1)
+ dp->tc_int = xpp->sp_flags & (SPF_CTSOFLOW|SPF_RTSIFLOW);
+ else {
+ SUCHECK;
+ if (i & ~(SPF_CTSOFLOW|SPF_RTSIFLOW) != 0) {
+ error = EINVAL;
+ goto out;
+ }
+ if (i & SPF_CTSOFLOW)
+ xpp->sp_flags |= SPF_CTSOFLOW;
+ else
+ xpp->sp_flags &= ~SPF_CTSOFLOW;
+ if (i & SPF_RTSIFLOW)
+ xpp->sp_flags |= SPF_RTSIFLOW;
+ else
+ xpp->sp_flags &= ~SPF_RTSIFLOW;
+ }
+ break;
+ case TCSISTATE:
+ dp->tc_int = xpp->sp_ccb->hi_ip;
+ break;
+ case TCSIPPP:
+ switch (dp->tc_int) {
+ case -1:
+ dp->tc_int = (xpp->sp_flags & SPF_PPP)?1:0;
+ break;
+ case 1:
+ SUCHECK;
+ xpp->sp_flags |= SPF_PPP;
+ break;
+ case 0:
+ SUCHECK;
+ xpp->sp_flags &= ~SPF_PPP;
+ break;
+ default:
+ error = EINVAL;
+ goto out;
+ }
+ break;
+ default:
+ error = EINVAL;
+ goto out;
+ }
+out:
+ splx(oldspl);
+ return(error); /* success */
+}
+
+/*
+ * siparam() : Configure line params
+ * called at spltty();
+ * this may sleep, does not flush, nor wait for drain, nor block writes
+ * caller must arrange this if it's important..
+ */
+int
+siparam(tp, t)
+ register struct tty *tp;
+ register struct termios *t;
+{
+ register struct si_port *pp = TP2PP(tp);
+ volatile struct si_channel *ccbp;
+ int oldspl, cflag, iflag, oflag, lflag;
+ int error = 0; /* shutup gcc */
+ int ispeed = 0; /* shutup gcc */
+ int ospeed = 0; /* shutup gcc */
+
+ DPRINT((pp, DBG_ENTRY|DBG_PARAM, "siparam(%x,%x)\n", tp, t));
+ cflag = t->c_cflag;
+ iflag = t->c_iflag;
+ oflag = t->c_oflag;
+ lflag = t->c_lflag;
+ DPRINT((pp, DBG_PARAM, "OFLAG 0x%x CFLAG 0x%x IFLAG 0x%x\n",
+ t->c_oflag, cflag, iflag));
+
+
+ /* if not hung up.. */
+ if (t->c_ospeed != 0) {
+ /* translate baud rate to firmware values */
+ ospeed = ttspeedtab(t->c_ospeed, bdrates);
+ ispeed = t->c_ispeed ?
+ ttspeedtab(t->c_ispeed, bdrates) : ospeed;
+
+ /* enforce legit baud rate */
+ if (ospeed < 0 || ispeed < 0)
+ return (EINVAL);
+ }
+
+
+ oldspl = spltty();
+
+ ccbp = pp->sp_ccb;
+ if (iflag & IGNBRK) /* Breaks */
+ ccbp->hi_break = BR_IGN;
+ else
+ ccbp->hi_break = 0;
+ if (iflag & BRKINT) /* Interrupt on break? */
+ ccbp->hi_break |= BR_INT;
+ if (iflag & PARMRK) /* Parity mark? */
+ ccbp->hi_break |= BR_PARMRK;
+ if (iflag & IGNPAR) /* Ignore chars with parity errors? */
+ ccbp->hi_break |= BR_PARIGN;
+
+ /* if not hung up.. */
+ if (t->c_ospeed != 0) {
+ /* Set I/O speeds */
+ ccbp->hi_csr = (ispeed << 4) | ospeed;
+ }
+
+ if (cflag & CSTOPB) /* Stop bits */
+ ccbp->hi_mr2 = MR2_2_STOP;
+ else
+ ccbp->hi_mr2 = MR2_1_STOP;
+ if (!(cflag & PARENB)) /* Parity */
+ ccbp->hi_mr1 = MR1_NONE;
+ else
+ ccbp->hi_mr1 = MR1_WITH;
+ if (cflag & PARODD)
+ ccbp->hi_mr1 |= MR1_ODD;
+
+ if ((cflag & CS8) == CS8) { /* 8 data bits? */
+ ccbp->hi_mr1 |= MR1_8_BITS;
+ ccbp->hi_mask = 0xFF;
+ } else if ((cflag & CS7) == CS7) { /* 7 data bits? */
+ ccbp->hi_mr1 |= MR1_7_BITS;
+ ccbp->hi_mask = 0x7F;
+ } else if ((cflag & CS6) == CS6) { /* 6 data bits? */
+ ccbp->hi_mr1 |= MR1_6_BITS;
+ ccbp->hi_mask = 0x3F;
+ } else { /* Must be 5 */
+ ccbp->hi_mr1 |= MR1_5_BITS;
+ ccbp->hi_mask = 0x1F;
+ }
+
+ if (iflag & ISTRIP)
+ ccbp->hi_mask &= 0x7F;
+
+ /* Monitor DCD etc. if a modem */
+ if (!(cflag & CLOCAL))
+ ccbp->hi_prtcl = SP_DCEN;
+ else
+ ccbp->hi_prtcl = 0;
+
+ /* XXX: the card handles all the flow control... */
+ ccbp->hi_txon = t->c_cc[VSTART];
+ ccbp->hi_txoff = t->c_cc[VSTOP];
+
+ ccbp->hi_rxon = t->c_cc[VSTART];
+ ccbp->hi_rxoff = t->c_cc[VSTOP];
+
+ if ((iflag & IXANY) && pp->sp_flags&SPF_IXANY)
+ ccbp->hi_prtcl |= SP_TANY;
+ if (iflag & IXON)
+ ccbp->hi_prtcl |= SP_TXEN;
+ if (iflag & IXOFF)
+ ccbp->hi_prtcl |= SP_RXEN;
+ if (iflag & INPCK)
+ ccbp->hi_prtcl |= SP_PAEN;
+
+ /*
+ * Enable H/W RTS/CTS handshaking. The default TA/MTA is
+ * a DCE, hence the reverse sense of RTS and CTS
+ */
+
+ /* Output - RTS must be raised before data can be sent */
+ if (cflag & CCTS_OFLOW || pp->sp_flags&SPF_CTSOFLOW)
+ ccbp->hi_mr2 |= MR2_RTSCONT;
+ /* Input - CTS is raised when port is ready to receive data */
+ if (cflag & CRTS_IFLOW || pp->sp_flags&SPF_RTSIFLOW)
+ ccbp->hi_mr1 |= MR1_CTSCONT;
+
+ /* potential sleep here */
+ if (ccbp->hi_stat == IDLE_CLOSE) /* Not yet open */
+ si_command(pp, LOPEN, SI_WAIT); /* open it */
+ else
+ si_command(pp, CONFIG, SI_WAIT); /* change params */
+
+ /* Hangup if ospeed == 0 */
+ if (t->c_ospeed == 0) {
+ (void) si_modem(pp, BIC, TIOCM_DTR|TIOCM_RTS);
+ } else {
+ /*
+ * If the previous speed was 0, may need to re-enable
+ * the modem signals
+ */
+ (void) si_modem(pp, SET, TIOCM_DTR|TIOCM_RTS);
+ }
+
+ DPRINT((pp, DBG_PARAM, "siparam, config completed ok MR1 %x MR2 %x\n",
+ ccbp->hi_mr1, ccbp->hi_mr2));
+
+ splx(oldspl);
+out:
+ return(error);
+}
+
+/*
+ * Wait for buffered TX characters to drain away.
+ * IT IS THE RESPONSIBILITY OF THE CALLER TO DISABLE/ENABLE WRITES.
+ */
+static int
+si_drainwait(pp, msg)
+ register struct si_port *pp;
+ char *msg;
+{
+ register struct tty *tp = pp->sp_tty;
+ volatile struct si_channel *ccbp = pp->sp_ccb;
+ int error, oldspl, time;
+ BYTE x;
+
+ DPRINT((pp, DBG_ENTRY|DBG_DRAIN, "si_drainwait(%x,%s)\n",
+ pp, msg));
+ error = 0;
+
+ oldspl = spltty();
+
+ /* number of pending characters in output buffer */
+ x = (int)ccbp->hi_txipos - (int)ccbp->hi_txopos;
+
+ while ( (x != 0 && (tp->t_state & TS_BUSY))
+ || (ccbp->hi_stat == IDLE_BREAK)) {
+
+ DPRINT((pp, DBG_DRAIN,
+ " x %d. t_state %x sp_state %x hi_stat %x\n",
+ x, tp->t_state, pp->sp_state, ccbp->hi_stat));
+
+ /* else waiting got chars */
+ /* guess how long */
+ time = ttspeedtab(tp->t_ospeed, chartimes);
+
+ if (time == 0 || time > x)
+ time = 1;
+ else
+ time = x/time + 1;
+
+ error = ttysleep(tp, (caddr_t)pp,
+ TTOPRI|PCATCH, msg, time);
+
+ if (error != EWOULDBLOCK) {
+ DPRINT((pp, DBG_DRAIN|DBG_FAIL,
+ "%s, wait for drain broken by signal %d\n",
+ msg, error));
+ break;
+ }
+ error = 0;
+
+ /* reload count */
+ x = (int)ccbp->hi_txipos - (int)ccbp->hi_txopos;
+ }
+ tp->t_state &= ~TS_BUSY;
+ ttwwakeup(tp);
+ splx(oldspl);
+ return(error);
+}
+
+/*
+ * Enable or Disable the writes to this channel...
+ * "state" -> enabled = 1; disabled = 0;
+ */
+static void
+si_write_enable(pp, state)
+ register struct si_port *pp;
+ int state;
+{
+ int oldspl;
+
+ oldspl = spltty();
+
+ if (state) {
+ pp->sp_state &= ~SS_BLOCKWRITE;
+ if (pp->sp_state & SS_WAITWRITE) {
+ pp->sp_state &= ~SS_WAITWRITE;
+ /* thunder away! */
+ wakeup((caddr_t)pp);
+ }
+ } else {
+ pp->sp_state |= SS_BLOCKWRITE;
+ }
+
+ splx(oldspl);
+}
+
+/*
+ * Set/Get state of modem control lines.
+ * Due to DCE-like behaviour of the adapter, some signals need translation:
+ * TIOCM_DTR DSR
+ * TIOCM_RTS CTS
+ */
+static int
+si_modem(pp, cmd, bits)
+ struct si_port *pp;
+ enum si_mctl cmd;
+ int bits;
+{
+ volatile struct si_channel *ccbp;
+ int x;
+
+ DPRINT((pp, DBG_ENTRY|DBG_MODEM, "si_modem(%x,%s,%x)\n", pp, si_mctl2str(cmd), bits));
+ ccbp = pp->sp_ccb; /* Find channel address */
+ switch (cmd) {
+ case GET:
+ x = ccbp->hi_ip;
+ bits = TIOCM_LE;
+ if (x & IP_DCD) bits |= TIOCM_CAR;
+ if (x & IP_DTR) bits |= TIOCM_DTR;
+ if (x & IP_RTS) bits |= TIOCM_RTS;
+ if (x & IP_RI) bits |= TIOCM_RI;
+ return(bits);
+ case SET:
+ ccbp->hi_op &= ~(OP_DSR|OP_CTS);
+ /* fall through */
+ case BIS:
+ x = 0;
+ if (bits & TIOCM_DTR)
+ x |= OP_DSR;
+ if (bits & TIOCM_RTS)
+ x |= OP_CTS;
+ ccbp->hi_op |= x;
+ break;
+ case BIC:
+ if (bits & TIOCM_DTR)
+ ccbp->hi_op &= ~OP_DSR;
+ if (bits & TIOCM_RTS)
+ ccbp->hi_op &= ~OP_CTS;
+ }
+ return 0;
+}
+
+/*
+ * Handle change of modem state
+ */
+static void
+si_modem_state(pp, tp, hi_ip)
+ register struct si_port *pp;
+ register struct tty *tp;
+ register int hi_ip;
+{
+ /* if a modem dev */
+ if (hi_ip & IP_DCD) {
+ if ( !(pp->sp_last_hi_ip & IP_DCD)) {
+ DPRINT((pp, DBG_INTR, "modem carr on t_line %d\n",
+ tp->t_line));
+ (void)(*linesw[tp->t_line].l_modem)(tp, 1);
+ }
+ } else {
+ if (pp->sp_last_hi_ip & IP_DCD) {
+ DPRINT((pp, DBG_INTR, "modem carr off\n"));
+ if ((*linesw[tp->t_line].l_modem)(tp, 0))
+ (void) si_modem(pp, SET, 0);
+ }
+ }
+ pp->sp_last_hi_ip = hi_ip;
+
+}
+
+/*
+ * Poller to catch missed interrupts.
+ */
+#ifdef POLL
+void
+si_poll(void *nothing)
+{
+ register struct si_softc *sc;
+ register int i;
+ volatile struct si_reg *regp;
+ int lost, oldspl;
+
+ DPRINT((0, DBG_POLL, "si_poll()\n"));
+ if (in_intr)
+ goto out;
+ oldspl = spltty();
+ lost = 0;
+ for (i=0; i<NSI; i++) {
+ sc = &si_softc[i];
+ if (sc->sc_type == NULL)
+ continue;
+ regp = (struct si_reg *)sc->sc_maddr;
+ /*
+ * See if there has been a pending interrupt for 2 seconds
+ * or so. The test <int_scounter >= 200) won't correspond
+ * to 2 seconds if int_count gets changed.
+ */
+ if (regp->int_pending != 0) {
+ if (regp->int_scounter >= 200 &&
+ regp->initstat == 1) {
+ printf("SLXOS si%d: lost intr\n", i);
+ lost++;
+ }
+ } else {
+ regp->int_scounter = 0;
+ }
+
+ }
+ if (lost)
+ siintr(-1); /* call intr with fake vector */
+ splx(oldspl);
+
+out:
+ timeout(si_poll, (caddr_t)0L, POLL_INTERVAL);
+}
+#endif /* ifdef POLL */
+
+/*
+ * The interrupt handler polls ALL ports on ALL adapters each time
+ * it is called.
+ */
+
+static char rxbuf[SLXOS_BUFFERSIZE]; /* input staging area */
+
+int
+siintr(int bdnum)
+{
+ struct si_softc *Isc = NULL;
+ register struct si_softc *sc;
+
+ register struct si_port *pp;
+ volatile struct si_channel *ccbp;
+ register struct tty *tp;
+ volatile caddr_t maddr;
+ BYTE op, ip, cc;
+ int x, card, port, n;
+ volatile BYTE *z;
+ BYTE c;
+ static int in_poll = 0;
+
+ if (bdnum < 0) {
+ Isc = NULL;
+ in_poll = 1;
+ } else {
+ Isc = &si_softc[bdnum];
+ }
+
+ DPRINT((0, (Isc == 0)?DBG_POLL:DBG_INTR, "siintr(0x%x)\n", Isc));
+ if (in_intr != 0) {
+ if (Isc == NULL) /* should never happen */
+ return(0);
+ printf("SLXOS si%d: Warning interrupt handler re-entered\n",
+ Isc==0 ? -1 : Isc->sc_dev.dv_unit);
+ return(0);
+ }
+ in_intr = 1;
+
+ /*
+ * When we get an int we poll all the channels and do ALL pending
+ * work, not just the first one we find. This allows all cards to
+ * share the same vector.
+ */
+ for (card=0; card < NSI; card++) {
+ sc = &si_softc[card];
+ if (sc->sc_type == NULL)
+ continue;
+ switch(sc->sc_type) {
+ case SIHOST :
+ maddr = sc->sc_maddr;
+ ((volatile struct si_reg *)maddr)->int_pending = 0;
+ /* flag nothing pending */
+ *(maddr+SIINTCL) = 0x00; /* Set IRQ clear */
+ *(maddr+SIINTCL_CL) = 0x00; /* Clear IRQ clear */
+ break;
+ case SIHOST2:
+ maddr = sc->sc_maddr;
+ ((volatile struct si_reg *)maddr)->int_pending = 0;
+ *(maddr+SIPLIRQCLR) = 0x00;
+ *(maddr+SIPLIRQCLR) = 0x10;
+ break;
+ case SIEISA:
+#if NEISA > 0
+ maddr = sc->sc_maddr;
+ ((volatile struct si_reg *)maddr)->int_pending = 0;
+ (void)inb(sc->sc_eisa_iobase+3);
+ break;
+#endif /* fall through if not EISA kernel */
+ case SIEMPTY:
+ default:
+ continue;
+ }
+ ((volatile struct si_reg *)maddr)->int_scounter = 0;
+
+ for (pp = sc->sc_ports, port=0;
+ port < sc->sc_nport;
+ pp++, port++) {
+ ccbp = pp->sp_ccb;
+ tp = pp->sp_tty;
+
+ /*
+ * See if a command has completed ?
+ */
+ if (ccbp->hi_stat != pp->sp_pend) {
+ DPRINT((pp, DBG_INTR,
+ "siintr hi_stat = 0x%x, pend = %d\n",
+ ccbp->hi_stat, pp->sp_pend));
+ switch(pp->sp_pend) {
+ case LOPEN:
+ case MPEND:
+ case MOPEN:
+ case CONFIG:
+ pp->sp_pend = ccbp->hi_stat;
+ /* sleeping in si_command */
+ wakeup(&pp->sp_state);
+ break;
+ default:
+ pp->sp_pend = ccbp->hi_stat;
+ }
+ }
+
+ /*
+ * Continue on if it's closed
+ */
+ if (ccbp->hi_stat == IDLE_CLOSE) {
+ continue;
+ }
+
+ /*
+ * Do modem state change if not a local device
+ */
+ si_modem_state(pp, tp, ccbp->hi_ip);
+
+ /*
+ * Do break processing
+ */
+ if (ccbp->hi_state & ST_BREAK) {
+ if (tp->t_state & TS_CONNECTED) {
+ (*linesw[tp->t_line].l_rint)(TTY_BI, tp);
+ }
+ ccbp->hi_state &= ~ST_BREAK; /* A Bit iffy this */
+ DPRINT((pp, DBG_INTR, "si_intr break\n"));
+ }
+
+ /*
+ * Do RX stuff - if not open then
+ * dump any characters.
+ */
+
+ if ((tp->t_state & TS_CONNECTED) == 0) {
+ ccbp->hi_rxopos = ccbp->hi_rxipos;
+ } else {
+ while ((c = ccbp->hi_rxipos - ccbp->hi_rxopos) != 0) {
+
+ op = ccbp->hi_rxopos;
+ ip = ccbp->hi_rxipos;
+ n = c & 0xff;
+
+ DPRINT((pp, DBG_INTR,
+ "n = %d, op = %d, ip = %d\n",
+ n, op, ip));
+ if (n <= SLXOS_BUFFERSIZE - op) {
+
+ DPRINT((pp, DBG_INTR,
+ "\tsingle copy\n"));
+ z = ccbp->hi_rxbuf + op;
+ bcopy((caddr_t)z, rxbuf, n);
+
+ op += n;
+ } else {
+ x = SLXOS_BUFFERSIZE - op;
+
+ DPRINT((pp, DBG_INTR, "\tdouble part 1 %d\n", x));
+ z = ccbp->hi_rxbuf + op;
+ bcopy((caddr_t)z, rxbuf, x);
+
+ DPRINT((pp, DBG_INTR, "\tdouble part 2 %d\n", n-x));
+ z = ccbp->hi_rxbuf;
+ bcopy((caddr_t)z, rxbuf+x, n-x);
+
+ op += n;
+ }
+
+ ccbp->hi_rxopos = op;
+
+ DPRINT((pp, DBG_INTR,
+ "n = %d, op = %d, ip = %d\n",
+ n, op, ip));
+
+ /*
+ * at this point...
+ * n = number of chars placed in rxbuf
+ */
+ /*
+ * Avoid the grotesquely inefficient lineswitch routine
+ * (ttyinput) in "raw" mode. It usually takes about 450
+ * instructions (that's without canonical processing or echo!).
+ * slinput is reasonably fast (usually 40 instructions plus
+ * call overhead).
+ */
+ if (tp->t_state & TS_CAN_BYPASS_L_RINT) {
+
+ /* block if the driver supports it */
+ if (tp->t_rawq.c_cc + n >= SI_I_HIGH_WATER
+ && (tp->t_cflag & CRTS_IFLOW
+ || tp->t_iflag & IXOFF)
+ && !(tp->t_state & TS_TBLOCK))
+ ttyblock(tp);
+
+ tk_nin += n;
+ tk_rawcc += n;
+ tp->t_rawcc += n;
+
+ b_to_q((char *)rxbuf, n, &tp->t_rawq);
+ ttwakeup(tp);
+ if (tp->t_state & TS_TTSTOP
+ && (tp->t_iflag & IXANY
+ || tp->t_cc[VSTART] == tp->t_cc[VSTOP])) {
+ tp->t_state &= ~TS_TTSTOP;
+ tp->t_lflag &= ~FLUSHO;
+ si_start(tp);
+ }
+ } else {
+ for(x = 0; x < n; x++) {
+ (*linesw[tp->t_line].l_rint)(
+ rxbuf[x], tp);
+ }
+ }
+
+ } /* end of RX while */
+ } /* end TS_CONNECTED */
+
+ /*
+ * Do TX stuff
+ */
+ (*linesw[tp->t_line].l_start)(tp);
+
+ } /* end of for (all ports on this controller) */
+ } /* end of for (all controllers) */
+
+ in_poll = in_intr = 0;
+ DPRINT((0, (Isc==0)?DBG_POLL:DBG_INTR, "end of siintr()\n"));
+ return(1); /* say it was expected */
+}
+
+/*
+ * Nudge the transmitter...
+ */
+static void
+si_start(tp)
+ register struct tty *tp;
+{
+ struct si_port *pp;
+ volatile struct si_channel *ccbp;
+ register struct clist *qp;
+ register char *dptr;
+ BYTE ipos;
+ int nchar;
+ int oldspl, count, n, amount, buffer_full;
+ int do_exitproc;
+
+ oldspl = spltty();
+
+ qp = &tp->t_outq;
+ pp = TP2PP(tp);
+
+ DPRINT((pp, DBG_ENTRY|DBG_START,
+ "si_start(%x) t_state %x sp_state %x t_outq.c_cc %d\n",
+ tp, tp->t_state, pp->sp_state, qp->c_cc));
+
+ if (tp->t_state & (TS_TIMEOUT|TS_TTSTOP))
+ goto out;
+
+ do_exitproc = 0;
+ buffer_full = 0;
+ ccbp = pp->sp_ccb;
+
+ /*
+ * Handle the case where ttywait() is called on process exit
+ * this may be BSDI specific, I dont know...
+ */
+ if (tp->t_session != NULL && tp->t_session->s_leader != NULL &&
+ (tp->t_session->s_leader->p_flag & P_WEXIT)) {
+ do_exitproc++;
+ }
+
+ count = (int)ccbp->hi_txipos - (int)ccbp->hi_txopos;
+ DPRINT((pp, DBG_START, "count %d\n", (BYTE)count));
+
+ dptr = (char *)ccbp->hi_txbuf; /* data buffer */
+
+ while ((nchar = qp->c_cc) > 0) {
+ if ((BYTE)count >= 255) {
+ buffer_full++;
+ break;
+ }
+ amount = min(nchar, (255 - (BYTE)count));
+ ipos = (unsigned int)ccbp->hi_txipos;
+ /* will it fit in one lump? */
+ if ((SLXOS_BUFFERSIZE - ipos) >= amount) {
+ n = q_to_b(&tp->t_outq,
+ (char *)&ccbp->hi_txbuf[ipos], amount);
+ } else {
+ n = q_to_b(&tp->t_outq,
+ (char *)&ccbp->hi_txbuf[ipos],
+ SLXOS_BUFFERSIZE-ipos);
+ if (n == SLXOS_BUFFERSIZE-ipos) {
+ n += q_to_b(&tp->t_outq,
+ (char *)&ccbp->hi_txbuf[0],
+ amount - (SLXOS_BUFFERSIZE-ipos));
+ }
+ }
+ ccbp->hi_txipos += n;
+ count = (int)ccbp->hi_txipos - (int)ccbp->hi_txopos;
+ }
+
+ if (count != 0 && nchar == 0) {
+ tp->t_state |= TS_BUSY;
+ } else {
+ tp->t_state &= ~TS_BUSY;
+ }
+
+ /* wakeup time? */
+ ttwwakeup(tp);
+
+ DPRINT((pp, DBG_START, "count %d, nchar %d, tp->t_state 0x%x\n",
+ (BYTE)count, nchar, tp->t_state));
+
+ if ((tp->t_state & TS_BUSY) || do_exitproc)
+ {
+ int time;
+
+ if (do_exitproc != 0) {
+ time = hz / 10;
+ } else {
+ time = ttspeedtab(tp->t_ospeed, chartimes);
+
+ if (time > 0) {
+ if (time < nchar)
+ time = nchar / time;
+ else
+ time = 2;
+ } else {
+ printf("SLXOS si%d: bad char time value!!\n",
+ SI_CARD(tp->t_dev));
+ goto out;
+ }
+ }
+
+ if ((pp->sp_state & (SS_LSTART|SS_INLSTART)) == SS_LSTART) {
+ untimeout((timeout_func_t)si_lstart, (caddr_t)pp);
+ } else {
+ pp->sp_state |= SS_LSTART;
+ }
+ DPRINT((pp, DBG_START, "arming lstart, time=%d\n", time));
+ timeout((timeout_func_t)si_lstart, (caddr_t)pp, time);
+ }
+
+out:
+ splx(oldspl);
+ DPRINT((pp, DBG_EXIT|DBG_START, "leave si_start()\n"));
+}
+
+/*
+ * Note: called at splsoftclock from the timeout code
+ * This has to deal with two things... cause wakeups while waiting for
+ * tty drains on last process exit, and call l_start at about the right
+ * time for protocols like ppp.
+ */
+static void
+si_lstart(pp)
+ register struct si_port *pp;
+{
+ register struct tty *tp;
+ int oldspl;
+
+ DPRINT((pp, DBG_ENTRY|DBG_LSTART, "si_lstart(%x) sp_state %x\n",
+ pp, pp->sp_state));
+
+ oldspl = spltty();
+
+ if ((pp->sp_state & SS_OPEN) == 0 || (pp->sp_state & SS_LSTART) == 0) {
+ splx(oldspl);
+ return;
+ }
+ pp->sp_state &= ~SS_LSTART;
+ pp->sp_state |= SS_INLSTART;
+
+ tp = pp->sp_tty;
+
+ /* deal with the process exit case */
+ ttwwakeup(tp);
+
+ /* nudge protocols */
+ (*linesw[tp->t_line].l_start)(tp);
+
+ pp->sp_state &= ~SS_INLSTART;
+ splx(oldspl);
+}
+
+/*
+ * Stop output on a line. called at spltty();
+ */
+void
+sistop(tp, rw)
+ register struct tty *tp;
+ int rw;
+{
+ volatile struct si_channel *ccbp;
+ struct si_port *pp;
+
+ pp = TP2PP(tp);
+ ccbp = pp->sp_ccb;
+
+ DPRINT((TP2PP(tp), DBG_ENTRY|DBG_STOP, "sistop(%x,%x)\n", tp, rw));
+
+ /* XXX: must check (rw & FWRITE | FREAD) etc flushing... */
+ if (rw & FWRITE) {
+ /* what level are we meant to be flushing anyway? */
+ if (tp->t_state & TS_BUSY) {
+ si_command(TP2PP(tp), WFLUSH, SI_NOWAIT);
+ tp->t_state &= ~TS_BUSY;
+ ttwwakeup(tp); /* Bruce???? */
+ }
+ }
+#if 0 /* this doesn't work right yet.. */
+ if (rw & FREAD) {
+ ccbp->hi_rxopos = ccbp->hi_rxipos;
+ }
+#endif
+}
+
+/*
+ * Issue a command to the Z280 host card CPU.
+ */
+
+static void
+si_command(pp, cmd, waitflag)
+ struct si_port *pp; /* port control block (local) */
+ int cmd;
+ int waitflag;
+{
+ int oldspl;
+ volatile struct si_channel *ccbp = pp->sp_ccb;
+ int x;
+
+ DPRINT((pp, DBG_ENTRY|DBG_PARAM, "si_command(%x,%x,%d): hi_stat 0x%x\n",
+ pp, cmd, waitflag, ccbp->hi_stat));
+
+ oldspl = spltty(); /* Keep others out */
+
+ /* wait until it's finished what it was doing.. */
+ while((x = ccbp->hi_stat) != IDLE_OPEN &&
+ x != IDLE_CLOSE &&
+ x != cmd) {
+ if (in_intr) { /* Prevent sleep in intr */
+ DPRINT((pp, DBG_PARAM,
+ "cmd intr collision - completing %d\trequested %d\n",
+ x, cmd));
+ splx(oldspl);
+ return;
+ } else if (ttysleep(pp->sp_tty, (caddr_t)&pp->sp_state, TTIPRI|PCATCH,
+ "sicmd1", 1)) {
+ splx(oldspl);
+ return;
+ }
+ }
+ /* it should now be in IDLE_OPEN, IDLE_CLOSE, or "cmd" */
+
+ /* if there was a pending command, cause a state-change wakeup */
+ if (pp->sp_pend != IDLE_OPEN) {
+ switch(pp->sp_pend) {
+ case LOPEN:
+ case MPEND:
+ case MOPEN:
+ case CONFIG:
+ wakeup(&pp->sp_state);
+ break;
+ default:
+ break;
+ }
+ }
+
+ pp->sp_pend = cmd; /* New command pending */
+ ccbp->hi_stat = cmd; /* Post it */
+
+ if (waitflag) {
+ if (in_intr) { /* If in interrupt handler */
+ DPRINT((pp, DBG_PARAM,
+ "attempt to sleep in si_intr - cmd req %d\n",
+ cmd));
+ splx(oldspl);
+ return;
+ } else while(ccbp->hi_stat != IDLE_OPEN) {
+ if (ttysleep(pp->sp_tty, (caddr_t)&pp->sp_state, TTIPRI|PCATCH,
+ "sicmd2", 0))
+ break;
+ }
+ }
+ splx(oldspl);
+}
+
+static void
+si_disc_optim(tp, t, pp)
+ struct tty *tp;
+ struct termios *t;
+ struct si_port *pp;
+{
+ /*
+ * XXX can skip a lot more cases if Smarts. Maybe
+ * (IGNCR | ISTRIP | IXON) in c_iflag. But perhaps we
+ * shouldn't skip if (TS_CNTTB | TS_LNCH) is set in t_state.
+ */
+ if (!(t->c_iflag & (ICRNL | IGNCR | IMAXBEL | INLCR | ISTRIP | IXON))
+ && (!(t->c_iflag & BRKINT) || (t->c_iflag & IGNBRK))
+ && (!(t->c_iflag & PARMRK)
+ || (t->c_iflag & (IGNPAR | IGNBRK)) == (IGNPAR | IGNBRK))
+ && !(t->c_lflag & (ECHO | ICANON | IEXTEN | ISIG | PENDIN))
+ && linesw[tp->t_line].l_rint == ttyinput)
+ tp->t_state |= TS_CAN_BYPASS_L_RINT;
+ else
+ tp->t_state &= ~TS_CAN_BYPASS_L_RINT;
+ /*
+ * Prepare to reduce input latency for packet
+ * discplines with a end of packet character.
+ */
+ if (tp->t_line == SLIPDISC)
+ pp->sp_hotchar = 0xc0;
+ else if (tp->t_line == PPPDISC)
+ pp->sp_hotchar = 0x7e;
+ else
+ pp->sp_hotchar = 0;
+}
+
+
+#ifdef SI_DEBUG
+static void
+si_dprintf(pp, flags, str, a1, a2, a3, a4, a5, a6)
+ struct si_port *pp;
+ int flags;
+ char *str;
+ int a1, a2, a3, a4, a5, a6;
+{
+ if ((pp == NULL && (si_debug&flags)) ||
+ (pp != NULL && ((pp->sp_debug&flags) || (si_debug&flags)))) {
+ if (pp != NULL)
+ printf("SLXOS %ci%d(%d): ", 's',
+ SI_CARD(pp->sp_tty->t_dev),
+ SI_PORT(pp->sp_tty->t_dev));
+ printf(str, a1, a2, a3, a4, a5, a6);
+ }
+}
+
+static char *
+si_mctl2str(cmd)
+ enum si_mctl cmd;
+{
+ switch (cmd) {
+ case GET: return("GET");
+ case SET: return("SET");
+ case BIS: return("BIS");
+ case BIC: return("BIC");
+ }
+ return("BAD");
+}
+#endif
diff --git a/sys/dev/si/si.h b/sys/dev/si/si.h
new file mode 100644
index 0000000..a6eb473
--- /dev/null
+++ b/sys/dev/si/si.h
@@ -0,0 +1,556 @@
+/*
+ * Device driver for Specialix range (SLXOS) of serial line multiplexors.
+ * 'C' definitions for Specialix serial multiplex driver.
+ *
+ * Copyright (C) 1990, 1992 Specialix International,
+ * Copyright (C) 1993, Andy Rutter <andy@acronym.co.uk>
+ * Copyright (C) 1995, Peter Wemm <peter@haywire.dialix.com>
+ *
+ * Derived from: SunOS 4.x version
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notices, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notices, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ * must display the following acknowledgement:
+ * This product includes software developed by Andy Rutter of
+ * Advanced Methods and Tools Ltd. based on original information
+ * from Specialix International.
+ * 4. Neither the name of Advanced Methods and Tools, nor Specialix
+ * International may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
+ * NO EVENT SHALL THE AUTHORS BE LIABLE.
+ *
+ * $Id$
+ */
+
+/*
+ * Macro to turn a device number into various parameters, and test for
+ * CONTROL device.
+ * max of 4 controllers with up to 32 ports per controller.
+ * minor device allocation is:
+ * adapter port
+ * 0 0-31
+ * 1 32-63
+ * 2 64-95
+ * 3 96-127
+ */
+#define SI_MAXPORTPERCARD 32
+#define SI_MAXCONTROLLER 4
+
+
+/*
+ * breakup of minor device number:
+ * lowest 5 bits: port number on card 0x1f
+ * next 2 bits: card number 0x60
+ * top bit: callout 0x80
+ * next 8 bits is the major number
+ * next 2 bits select initial/lock states
+ * next 1 bit selects the master control device
+ */
+
+#define SI_PORT_MASK 0x1f
+#define SI_CARD_MASK 0x60
+#define SI_TTY_MASK 0x7f
+#define SI_CALLOUT_MASK 0x80
+#define SI_INIT_STATE_MASK 0x10000
+#define SI_LOCK_STATE_MASK 0x20000
+#define SI_STATE_MASK 0x30000
+#define SI_CONTROLDEV_MASK 0x40000
+#define SI_SPECIAL_MASK 0x70000
+
+#define SI_PORT(m) (m & SI_PORT_MASK)
+#define SI_CARD(m) ((m & SI_CARD_MASK) >> 5)
+#define SI_TTY(m) (m & SI_TTY_MASK)
+
+#define IS_CALLOUT(m) (m & SI_CALLOUT_MASK)
+#define IS_STATE(m) (m & SI_STATE_MASK)
+#define IS_CONTROLDEV(m) (m & SI_CONTROLDEV_MASK)
+#define IS_SPECIAL(m) (m & SI_SPECIAL_MASK)
+
+#define MINOR2SC(m) (&si_softc[SI_CARD(m)])
+#define MINOR2PP(m) (MINOR2SC((m))->sc_ports + SI_PORT((m)))
+#define MINOR2TP(m) (MINOR2PP((m))->sp_tty)
+#define TP2PP(tp) (MINOR2PP(SI_TTY(minor((tp)->t_dev))))
+
+/* Adapter types */
+#define SIEMPTY 0
+#define SIHOST 1
+#define SI2 2
+#define SIHOST2 3
+#define SIEISA 4
+
+/* Buffer parameters */
+#define SLXOS_BUFFERSIZE 256
+#define MIN_TXWATER 20
+#define MAX_TXWATER (SLXOS_BUFFERSIZE-20)
+
+typedef unsigned char BYTE; /* Type cast for unsigned 8 bit */
+typedef unsigned short WORD; /* Type cast for unsigned 16 bit */
+
+
+/*
+ * Hardware `registers', stored in the shared memory.
+ * These are related to the firmware running on the Z280.
+ */
+
+struct si_reg {
+ BYTE initstat;
+ BYTE memsize;
+ WORD int_count;
+ WORD revision;
+ BYTE rx_int_count;
+ BYTE spare;
+ WORD int_pending;
+ WORD int_counter;
+ BYTE int_scounter;
+ BYTE res[0x80 - 13];
+};
+
+/*
+ * Per module control structure, stored in shared memory.
+ */
+struct si_module {
+ WORD sm_next; /* Next module */
+ BYTE sm_type; /* Number of channels */
+ BYTE sm_number; /* Module number on cable */
+ BYTE sm_dsr; /* Private dsr copy */
+ BYTE sm_res[0x80 - 5]; /* Reserve space to 128 bytes */
+};
+
+/*
+ * The 'next' pointer & with 0x7fff + SI base addres give
+ * the address of the next module block if fitted. (else 0)
+ * Note that next points to the TX buffer so 0x60 must be
+ * subtracted to find the true base.
+ *
+ * Type is a bit field as follows: The bottom 5 bits are the
+ * number of channels on this module, the top 3 bits are
+ * as the module type thus:
+ *
+ * 000 2698 RS232 module (4 port or 8 port)
+ * 001 Reserved for 2698 RS422 module
+ * 010 Reserved for 8530 based sync module
+ * 011 Reserved for parallel printer module
+ * 100 Reserved for network module
+ * 101-111 Reserved for expansion.
+ *
+ * The number field is the cable position of the module.
+ */
+#define M232 0x00
+#define M422 0x20 /* not supported */
+#define MSYNC 0x40 /* this is the Telebit Netblazer module */
+#define MCENT 0x60 /* not supported */
+#define MNET 0x80 /* not supported */
+#define MMASK 0x1F
+
+/*
+ * Per channel(port) control structure, stored in shared memory.
+ */
+struct si_channel {
+ /*
+ * Generic stuff
+ */
+ WORD next; /* Next Channel */
+ WORD addr_uart; /* Uart address */
+ WORD module; /* address of module struct */
+ BYTE type; /* Uart type */
+ BYTE fill;
+ /*
+ * Uart type specific stuff
+ */
+ BYTE x_status; /* XON / XOFF status */
+ BYTE c_status; /* cooking status */
+ BYTE hi_rxipos; /* stuff into rx buff */
+ BYTE hi_rxopos; /* stuff out of rx buffer */
+ BYTE hi_txopos; /* Stuff into tx ptr */
+ BYTE hi_txipos; /* ditto out */
+ BYTE hi_stat; /* Command register */
+ BYTE dsr_bit; /* Magic bit for DSR */
+ BYTE txon; /* TX XON char */
+ BYTE txoff; /* ditto XOFF */
+ BYTE rxon; /* RX XON char */
+ BYTE rxoff; /* ditto XOFF */
+ BYTE hi_mr1; /* mode 1 image */
+ BYTE hi_mr2; /* mode 2 image */
+ BYTE hi_csr; /* clock register */
+ BYTE hi_op; /* Op control */
+ BYTE hi_ip; /* Input pins */
+ BYTE hi_state; /* status */
+ BYTE hi_prtcl; /* Protocol */
+ BYTE hi_txon; /* host copy tx xon stuff */
+ BYTE hi_txoff;
+ BYTE hi_rxon;
+ BYTE hi_rxoff;
+ BYTE close_prev; /* Was channel previously closed */
+ BYTE hi_break; /* host copy break process */
+ BYTE break_state; /* local copy ditto */
+ BYTE hi_mask; /* Mask for CS7 etc. */
+ BYTE mask_z280; /* Z280's copy */
+ BYTE res[0x60 - 36];
+ BYTE hi_txbuf[SLXOS_BUFFERSIZE];
+ BYTE hi_rxbuf[SLXOS_BUFFERSIZE];
+ BYTE res1[0xA0];
+};
+
+/*
+ * Register definitions
+ */
+
+/*
+ * Break input control register definitions
+ */
+#define BR_IGN 0x01 /* Ignore any received breaks */
+#define BR_INT 0x02 /* Interrupt on received break */
+#define BR_PARMRK 0x04 /* Enable parmrk parity error processing */
+#define BR_PARIGN 0x08 /* Ignore chars with parity errors */
+
+/*
+ * Protocol register provided by host for XON/XOFF and cooking
+ */
+#define SP_TANY 0x01 /* Tx XON any char */
+#define SP_TXEN 0x02 /* Tx XON/XOFF enabled */
+#define SP_CEN 0x04 /* Cooking enabled */
+#define SP_RXEN 0x08 /* Rx XON/XOFF enabled */
+#define SP_DCEN 0x20 /* DCD / DTR check */
+#define SP_PAEN 0x80 /* Parity checking enabled */
+
+/*
+ * HOST STATUS / COMMAND REGISTER
+ */
+#define IDLE_OPEN 0x00 /* Default mode, TX and RX polled
+ buffer updated etc */
+#define LOPEN 0x02 /* Local open command (no modem ctl */
+#define MOPEN 0x04 /* Open and monitor modem lines (blocks
+ for DCD */
+#define MPEND 0x06 /* Wating for DCD */
+#define CONFIG 0x08 /* Channel config has changed */
+#define CLOSE 0x0A /* Close channel */
+#define SBREAK 0x0C /* Start break */
+#define EBREAK 0x0E /* End break */
+#define IDLE_CLOSE 0x10 /* Closed channel */
+#define IDLE_BREAK 0x12 /* In a break */
+#define FCLOSE 0x14 /* Force a close */
+#define RESUME 0x16 /* Clear a pending xoff */
+#define WFLUSH 0x18 /* Flush output buffer */
+#define RFLUSH 0x1A /* Flush input buffer */
+
+/*
+ * Host status register
+ */
+#define ST_BREAK 0x01 /* Break received (clear with config) */
+
+/*
+ * OUTPUT PORT REGISTER
+ */
+#define OP_CTS 0x01 /* Enable CTS */
+#define OP_DSR 0x02 /* Enable DSR */
+/*
+ * INPUT PORT REGISTER
+ */
+#define IP_DCD 0x04 /* DCD High */
+#define IP_DTR 0x20 /* DTR High */
+#define IP_RTS 0x02 /* RTS High */
+#define IP_RI 0x40 /* RI High */
+
+/*
+ * Mode register and uart specific stuff
+ */
+/*
+ * MODE REGISTER 1
+ */
+#define MR1_5_BITS 0x00
+#define MR1_6_BITS 0x01
+#define MR1_7_BITS 0x02
+#define MR1_8_BITS 0x03
+/*
+ * Parity
+ */
+#define MR1_ODD 0x04
+#define MR1_EVEN 0x00
+/*
+ * Parity mode
+ */
+#define MR1_WITH 0x00
+#define MR1_FORCE 0x08
+#define MR1_NONE 0x10
+#define MR1_SPECIAL 0x18
+/*
+ * Error mode
+ */
+#define MR1_CHAR 0x00
+#define MR1_BLOCK 0x20
+/*
+ * Request to send line automatic control
+ */
+#define MR1_CTSCONT 0x80
+
+/*
+ * MODE REGISTER 2
+ */
+/*
+ * Number of stop bits
+ */
+#define MR2_1_STOP 0x07
+#define MR2_2_STOP 0x0F
+/*
+ * Clear to send automatic testing before character sent
+ */
+#define MR2_RTSCONT 0x10
+/*
+ * Reset RTS automatically after sending character?
+ */
+#define MR2_CTSCONT 0x20
+/*
+ * Channel mode
+ */
+#define MR2_NORMAL 0x00
+#define MR2_AUTO 0x40
+#define MR2_LOCAL 0x80
+#define MR2_REMOTE 0xC0
+
+/*
+ * CLOCK SELECT REGISTER - this and the code assumes ispeed == ospeed
+ */
+/*
+ * Clocking rates are in lower and upper nibbles.. R = upper, T = lower
+ */
+#define CLK75 0x0
+#define CLK110 0x1 /* 110 on XIO!! */
+#define CLK38400 0x2 /* out of sequence */
+#define CLK150 0x3
+#define CLK300 0x4
+#define CLK600 0x5
+#define CLK1200 0x6
+#define CLK2000 0x7
+#define CLK2400 0x8
+#define CLK4800 0x9
+#define CLK7200 0xa /* unchecked */
+#define CLK9600 0xb
+#define CLK19200 0xc
+#define CLK57600 0xd
+/*#define CLK110 0xe ?? */
+/*#define CLK110 0xf ?? */
+
+
+/*
+ * the driver's soft config state
+ * This is visible via ioctl()'s.
+ */
+
+struct si_softc {
+ struct device sc_dev; /* base device */
+
+ int sc_type; /* adapter type */
+ char *sc_typename; /* adapter type string */
+
+ struct si_port *sc_ports; /* port structures for this card */
+
+ caddr_t sc_paddr; /* physical addr of iomem */
+ caddr_t sc_maddr; /* kvaddr of iomem */
+ int sc_nport; /* # ports on this card */
+ int sc_irq; /* copy of attach irq */
+ int sc_eisa_iobase; /* EISA io port address */
+ int sc_eisa_irqbits;
+ struct kern_devconf sc_kdc;
+};
+
+/*
+ * Per-port (channel) soft information structure, stored in the driver.
+ */
+struct si_port {
+ volatile struct si_channel *sp_ccb;
+ struct tty *sp_tty;
+ int sp_pend; /* pending command */
+ int sp_last_hi_ip; /* cached DCD */
+ int sp_state;
+ int sp_active_out; /* callout is open */
+ int sp_flags;
+ int sp_dtr_wait; /* DTR holddown in hz */
+ u_int sp_wopeners; /* # procs waiting DCD */
+ u_char sp_hotchar; /* ldisc specific ASAP char */
+ /* Initial state. */
+ struct termios sp_iin;
+ struct termios sp_iout;
+ /* Lock state. */
+ struct termios sp_lin;
+ struct termios sp_lout;
+#ifdef SI_DEBUG
+ int sp_debug; /* debug mask */
+#endif
+};
+
+/* sp_state */
+#define SS_CLOSED 0x0000
+#define SS_OPEN 0x0001 /* Port is active */
+/* 0x0002 -- */
+/* 0x0004 -- */
+/* 0x0008 -- */
+/* 0x0010 -- */
+/* 0x0020 -- */
+/* 0x0040 -- */
+/* 0x0080 -- */
+#define SS_LSTART 0x0100 /* lstart timeout pending */
+#define SS_INLSTART 0x0200 /* running an lstart induced t_oproc */
+#define SS_CLOSING 0x0400 /* in the middle of a siclose() */
+/* 0x0800 -- */
+#define SS_WAITWRITE 0x1000
+#define SS_BLOCKWRITE 0x2000
+#define SS_DTR_OFF 0x4000 /* DTR held off */
+
+/* sp_flags */
+#define SPF_COOKMODE 0x0003
+#define SPFC_WELL 0
+#define SPFC_MEDIUM 1
+#define SPFC_RAW 2
+#define spfc_clear(pp) (pp)->sp_flags &= ~SPF_COOKMODE
+#define SPF_COOK_WELL(pp) spfc_clear(pp)
+#define SPF_COOK_MEDIUM(pp) {spfc_clear(pp);(pp)->sp_flags|=SPFC_MEDIUM;}
+#define SPF_COOK_RAW(pp) {spfc_clear(pp);(pp)->sp_flags|=SPFC_RAW;}
+#define SPF_SETCOOK(pp, c) {spfc_clear(pp);(pp)->sp_flags|=(c);}
+#define SPF_ISCOOKWELL(pp) (((pp)->sp_flags & SPF_COOKMODE) == SPFC_WELL)
+#define SPF_ISCOOKMEDIUM(pp) (((pp)->sp_flags & SPF_COOKMODE) == SPFC_MEDIUM)
+#define SPF_ISCOOKRAW(pp) (((pp)->sp_flags & SPF_COOKMODE) == SPFC_RAW)
+#define SPF_COOKWELL_ALWAYS 0x0004 /* always use line disc */
+/* 0x0008 */
+#define SPF_IXANY 0x0020 /* IXANY enable/disable flag */
+#define SPF_CTSOFLOW 0x0040 /* use CTS to handle o/p flow */
+#define SPF_RTSIFLOW 0x0080 /* use RTS to handle i/p flow */
+#define SPF_PPP 0x0100 /* special handling for upper
+ * level protocol code */
+
+/*
+ * Command post flags
+ */
+#define SI_NOWAIT 0x00 /* Don't wait for command */
+#define SI_WAIT 0x01 /* Wait for complete */
+
+/*
+ * Extensive debugging stuff - manipulated using siconfig(8)
+ */
+#ifdef KERNEL
+#ifdef SI_DEBUG
+static void si_dprintf();
+static char *si_mctl2str();
+#define DPRINT(x) si_dprintf x
+#else
+#define DPRINT(x) /* void */
+#endif
+#endif
+
+#define DBG_ENTRY 0x00000001
+#define DBG_DRAIN 0x00000002
+#define DBG_OPEN 0x00000004
+#define DBG_CLOSE 0x00000008
+#define DBG_READ 0x00000010
+#define DBG_WRITE 0x00000020
+#define DBG_PARAM 0x00000040
+#define DBG_INTR 0x00000080
+#define DBG_IOCTL 0x00000100
+/* 0x00000200 */
+#define DBG_SELECT 0x00000400
+#define DBG_DIRECT 0x00000800
+#define DBG_START 0x00001000
+#define DBG_EXIT 0x00002000
+#define DBG_FAIL 0x00004000
+#define DBG_STOP 0x00008000
+#define DBG_AUTOBOOT 0x00010000
+#define DBG_MODEM 0x00020000
+#define DBG_DOWNLOAD 0x00040000
+#define DBG_LSTART 0x00080000
+#define DBG_POLL 0x00100000
+#define DBG_ALL 0xffffffff
+
+/*
+ * SI ioctls
+ */
+/*
+ * struct for use by Specialix ioctls - used by siconfig(8)
+ */
+typedef struct {
+ unsigned char
+ sid_port:5, /* 0 - 31 ports per card */
+ sid_card:1, /* 0 - 1 cards */
+ sid_control:1, /* controlling device (all cards) */
+ sid_xprint:1; /* xprint version of line */
+} sidev_t;
+struct si_tcsi {
+ sidev_t tc_dev;
+ union {
+ int x_int;
+ int x_dbglvl;
+ int x_modemflag;
+ } tc_action;
+#define tc_card tc_dev.sid_card
+#define tc_port tc_dev.sid_port
+#define tc_int tc_action.x_int
+#define tc_dbglvl tc_action.x_dbglvl
+#define tc_modemflag tc_action.x_modemflag
+#define tc_string tc_action.x_string
+};
+#define IOCTL_MIN 96
+#define TCSIDEBUG _IOW('S', 96, struct si_tcsi) /* Toggle debug */
+#define TCSIRXIT _IOW('S', 97, struct si_tcsi) /* RX int throttle */
+#define TCSIIT _IOW('S', 98, struct si_tcsi) /* TX int throttle */
+#define TCSIMIN _IOW('S', 99, struct si_tcsi) /* TX min xfer amount */
+ /* 100 defunct */
+ /* 101 defunct */
+ /* 102 defunct */
+ /* 103 defunct */
+#define TCSIIXANY _IOW('S', 103, struct si_tcsi) /* enable ixany */
+ /* 104 defunct */
+#define TCSISTATE _IOWR('S', 105, struct si_tcsi) /* get current state of RTS
+ DCD and DTR pins */
+ /* Set/reset/enquire cook mode, 1 = always use line disc
+ * -1 = enquire current setting */
+#define TCSICOOKMODE _IOWR('S', 106, struct si_tcsi)
+#define TCSIPORTS _IOR('S', 107, int) /* Number of ports found */
+#define TCSISDBG_LEVEL _IOW('S', 108, struct si_tcsi) /* equivalent of TCSIDEBUG which sets a
+ * particular debug level (DBG_??? bit
+ * mask), default is 0xffff */
+#define TCSIGDBG_LEVEL _IOWR('S', 109, struct si_tcsi)
+#define TCSIGRXIT _IOWR('S', 110, struct si_tcsi)
+#define TCSIGIT _IOWR('S', 111, struct si_tcsi)
+#define TCSIGMIN _IOWR('S', 112, struct si_tcsi)
+ /* 113 defunct */
+ /* 114 defunct */
+ /* 115 defunct */
+ /* 116 defunct */
+#define TCSIMODEM _IOWR('S', 117, struct si_tcsi) /* set/clear/query the modem bit */
+
+#define TCSISDBG_ALL _IOW('S', 118, int) /* set global debug level */
+#define TCSIGDBG_ALL _IOR('S', 119, int) /* get global debug level */
+
+#define TCSIFLOW _IOWR('S', 120, struct si_tcsi) /* set/get h/w flow state */
+
+/*
+ * Stuff for downloading and initialising an adapter
+ */
+struct si_loadcode {
+ int sd_offset;
+ int sd_nbytes;
+ char sd_bytes[1024]; /* actually larger than this */
+};
+#define TCSIDOWNLOAD _IOW('S', 121, struct si_loadcode)
+#define TCSIBOOT _IOR('S', 122, struct si_tcsi)
+
+#define TCSIPPP _IOWR('S', 123, struct si_tcsi) /* set/get PPP flag bit */
+#define TCSIMODULES _IOR('S', 124, int) /* Number of modules found */
+
+#define IOCTL_MAX 124
+
+#define IS_SI_IOCTL(cmd) ((u_int)((cmd)&0xff00) == ('S'<<8) && \
+ (u_int)((cmd)&0xff) >= IOCTL_MIN && \
+ (u_int)((cmd)&0xff) <= IOCTL_MAX)
+
+#define CONTROLDEV "/dev/si_control"
+
diff --git a/sys/dev/si/sireg.h b/sys/dev/si/sireg.h
new file mode 100644
index 0000000..6a8dd4f
--- /dev/null
+++ b/sys/dev/si/sireg.h
@@ -0,0 +1,69 @@
+/*
+ * Device driver for Specialix range (SLXOS) of serial line multiplexors.
+ * 'C' definitions for Specialix serial multiplex driver.
+ *
+ * Copyright (C) 1990, 1992 Specialix International,
+ * Copyright (C) 1993, Andy Rutter <andy@acronym.co.uk>
+ * Copyright (C) 1995, Peter Wemm <peter@haywire.dialix.com>
+ *
+ * Derived from: SunOS 4.x version
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notices, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notices, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ * must display the following acknowledgement:
+ * This product includes software developed by Andy Rutter of
+ * Advanced Methods and Tools Ltd. based on original information
+ * from Specialix International.
+ * 4. Neither the name of Advanced Methods and Tools, nor Specialix
+ * International may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
+ * NO EVENT SHALL THE AUTHORS BE LIABLE.
+ *
+ * $Id$
+ */
+
+/*
+ * Hardware parameters which should be changed at your peril!
+ */
+
+/* Base and mask for SI Host 2.x (SIHOST2) */
+#define SIPLSIG 0x7FF8 /* Start of control space */
+#define SIPLCNTL 0x7FF8 /* Ditto */
+#define SIPLRESET SIPLCNTL /* 0 = reset */
+#define SIPLIRQ11 (SIPLCNTL+1) /* 0 = mask irq 11 */
+#define SIPLIRQ12 (SIPLCNTL+2) /* 0 = mask irq 12 */
+#define SIPLIRQ15 (SIPLCNTL+3) /* 0 = mask irq 15 */
+#define SIPLIRQSET (SIPLCNTL+4) /* 0 = interrupt host */
+#define SIPLIRQCLR (SIPLCNTL+5) /* 0 = clear irq */
+
+/* SI Host 1.x */
+#define SIRAM 0x0000 /* Ram Starts here */
+#define SIRESET 0x8000 /* Set reset */
+#define SIRESET_CL 0xc000 /* Clear reset */
+#define SIWAIT 0x9000 /* Set wait */
+#define SIWAIT_CL 0xd000 /* Set wait */
+#define SIINTCL 0xA000 /* Clear host int */
+#define SIINTCL_CL 0xE000 /* Clear host int */
+
+/*
+ * MEMSIZE is the total shared mem region
+ * RAMSIZE is value to use when probing
+ */
+#define SIHOST_MEMSIZE 0x10000
+#define SIHOST_RAMSIZE 0x8000
+#define SIHOST2_MEMSIZE 0x8000
+#define SIHOST2_RAMSIZE 0x7ff7
+#define SIEISA_MEMSIZE 0x10000
+#define SEISAT_RAMSIZE 0x10000
+
diff --git a/sys/i386/include/si.h b/sys/i386/include/si.h
new file mode 100644
index 0000000..a6eb473
--- /dev/null
+++ b/sys/i386/include/si.h
@@ -0,0 +1,556 @@
+/*
+ * Device driver for Specialix range (SLXOS) of serial line multiplexors.
+ * 'C' definitions for Specialix serial multiplex driver.
+ *
+ * Copyright (C) 1990, 1992 Specialix International,
+ * Copyright (C) 1993, Andy Rutter <andy@acronym.co.uk>
+ * Copyright (C) 1995, Peter Wemm <peter@haywire.dialix.com>
+ *
+ * Derived from: SunOS 4.x version
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notices, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notices, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ * must display the following acknowledgement:
+ * This product includes software developed by Andy Rutter of
+ * Advanced Methods and Tools Ltd. based on original information
+ * from Specialix International.
+ * 4. Neither the name of Advanced Methods and Tools, nor Specialix
+ * International may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
+ * NO EVENT SHALL THE AUTHORS BE LIABLE.
+ *
+ * $Id$
+ */
+
+/*
+ * Macro to turn a device number into various parameters, and test for
+ * CONTROL device.
+ * max of 4 controllers with up to 32 ports per controller.
+ * minor device allocation is:
+ * adapter port
+ * 0 0-31
+ * 1 32-63
+ * 2 64-95
+ * 3 96-127
+ */
+#define SI_MAXPORTPERCARD 32
+#define SI_MAXCONTROLLER 4
+
+
+/*
+ * breakup of minor device number:
+ * lowest 5 bits: port number on card 0x1f
+ * next 2 bits: card number 0x60
+ * top bit: callout 0x80
+ * next 8 bits is the major number
+ * next 2 bits select initial/lock states
+ * next 1 bit selects the master control device
+ */
+
+#define SI_PORT_MASK 0x1f
+#define SI_CARD_MASK 0x60
+#define SI_TTY_MASK 0x7f
+#define SI_CALLOUT_MASK 0x80
+#define SI_INIT_STATE_MASK 0x10000
+#define SI_LOCK_STATE_MASK 0x20000
+#define SI_STATE_MASK 0x30000
+#define SI_CONTROLDEV_MASK 0x40000
+#define SI_SPECIAL_MASK 0x70000
+
+#define SI_PORT(m) (m & SI_PORT_MASK)
+#define SI_CARD(m) ((m & SI_CARD_MASK) >> 5)
+#define SI_TTY(m) (m & SI_TTY_MASK)
+
+#define IS_CALLOUT(m) (m & SI_CALLOUT_MASK)
+#define IS_STATE(m) (m & SI_STATE_MASK)
+#define IS_CONTROLDEV(m) (m & SI_CONTROLDEV_MASK)
+#define IS_SPECIAL(m) (m & SI_SPECIAL_MASK)
+
+#define MINOR2SC(m) (&si_softc[SI_CARD(m)])
+#define MINOR2PP(m) (MINOR2SC((m))->sc_ports + SI_PORT((m)))
+#define MINOR2TP(m) (MINOR2PP((m))->sp_tty)
+#define TP2PP(tp) (MINOR2PP(SI_TTY(minor((tp)->t_dev))))
+
+/* Adapter types */
+#define SIEMPTY 0
+#define SIHOST 1
+#define SI2 2
+#define SIHOST2 3
+#define SIEISA 4
+
+/* Buffer parameters */
+#define SLXOS_BUFFERSIZE 256
+#define MIN_TXWATER 20
+#define MAX_TXWATER (SLXOS_BUFFERSIZE-20)
+
+typedef unsigned char BYTE; /* Type cast for unsigned 8 bit */
+typedef unsigned short WORD; /* Type cast for unsigned 16 bit */
+
+
+/*
+ * Hardware `registers', stored in the shared memory.
+ * These are related to the firmware running on the Z280.
+ */
+
+struct si_reg {
+ BYTE initstat;
+ BYTE memsize;
+ WORD int_count;
+ WORD revision;
+ BYTE rx_int_count;
+ BYTE spare;
+ WORD int_pending;
+ WORD int_counter;
+ BYTE int_scounter;
+ BYTE res[0x80 - 13];
+};
+
+/*
+ * Per module control structure, stored in shared memory.
+ */
+struct si_module {
+ WORD sm_next; /* Next module */
+ BYTE sm_type; /* Number of channels */
+ BYTE sm_number; /* Module number on cable */
+ BYTE sm_dsr; /* Private dsr copy */
+ BYTE sm_res[0x80 - 5]; /* Reserve space to 128 bytes */
+};
+
+/*
+ * The 'next' pointer & with 0x7fff + SI base addres give
+ * the address of the next module block if fitted. (else 0)
+ * Note that next points to the TX buffer so 0x60 must be
+ * subtracted to find the true base.
+ *
+ * Type is a bit field as follows: The bottom 5 bits are the
+ * number of channels on this module, the top 3 bits are
+ * as the module type thus:
+ *
+ * 000 2698 RS232 module (4 port or 8 port)
+ * 001 Reserved for 2698 RS422 module
+ * 010 Reserved for 8530 based sync module
+ * 011 Reserved for parallel printer module
+ * 100 Reserved for network module
+ * 101-111 Reserved for expansion.
+ *
+ * The number field is the cable position of the module.
+ */
+#define M232 0x00
+#define M422 0x20 /* not supported */
+#define MSYNC 0x40 /* this is the Telebit Netblazer module */
+#define MCENT 0x60 /* not supported */
+#define MNET 0x80 /* not supported */
+#define MMASK 0x1F
+
+/*
+ * Per channel(port) control structure, stored in shared memory.
+ */
+struct si_channel {
+ /*
+ * Generic stuff
+ */
+ WORD next; /* Next Channel */
+ WORD addr_uart; /* Uart address */
+ WORD module; /* address of module struct */
+ BYTE type; /* Uart type */
+ BYTE fill;
+ /*
+ * Uart type specific stuff
+ */
+ BYTE x_status; /* XON / XOFF status */
+ BYTE c_status; /* cooking status */
+ BYTE hi_rxipos; /* stuff into rx buff */
+ BYTE hi_rxopos; /* stuff out of rx buffer */
+ BYTE hi_txopos; /* Stuff into tx ptr */
+ BYTE hi_txipos; /* ditto out */
+ BYTE hi_stat; /* Command register */
+ BYTE dsr_bit; /* Magic bit for DSR */
+ BYTE txon; /* TX XON char */
+ BYTE txoff; /* ditto XOFF */
+ BYTE rxon; /* RX XON char */
+ BYTE rxoff; /* ditto XOFF */
+ BYTE hi_mr1; /* mode 1 image */
+ BYTE hi_mr2; /* mode 2 image */
+ BYTE hi_csr; /* clock register */
+ BYTE hi_op; /* Op control */
+ BYTE hi_ip; /* Input pins */
+ BYTE hi_state; /* status */
+ BYTE hi_prtcl; /* Protocol */
+ BYTE hi_txon; /* host copy tx xon stuff */
+ BYTE hi_txoff;
+ BYTE hi_rxon;
+ BYTE hi_rxoff;
+ BYTE close_prev; /* Was channel previously closed */
+ BYTE hi_break; /* host copy break process */
+ BYTE break_state; /* local copy ditto */
+ BYTE hi_mask; /* Mask for CS7 etc. */
+ BYTE mask_z280; /* Z280's copy */
+ BYTE res[0x60 - 36];
+ BYTE hi_txbuf[SLXOS_BUFFERSIZE];
+ BYTE hi_rxbuf[SLXOS_BUFFERSIZE];
+ BYTE res1[0xA0];
+};
+
+/*
+ * Register definitions
+ */
+
+/*
+ * Break input control register definitions
+ */
+#define BR_IGN 0x01 /* Ignore any received breaks */
+#define BR_INT 0x02 /* Interrupt on received break */
+#define BR_PARMRK 0x04 /* Enable parmrk parity error processing */
+#define BR_PARIGN 0x08 /* Ignore chars with parity errors */
+
+/*
+ * Protocol register provided by host for XON/XOFF and cooking
+ */
+#define SP_TANY 0x01 /* Tx XON any char */
+#define SP_TXEN 0x02 /* Tx XON/XOFF enabled */
+#define SP_CEN 0x04 /* Cooking enabled */
+#define SP_RXEN 0x08 /* Rx XON/XOFF enabled */
+#define SP_DCEN 0x20 /* DCD / DTR check */
+#define SP_PAEN 0x80 /* Parity checking enabled */
+
+/*
+ * HOST STATUS / COMMAND REGISTER
+ */
+#define IDLE_OPEN 0x00 /* Default mode, TX and RX polled
+ buffer updated etc */
+#define LOPEN 0x02 /* Local open command (no modem ctl */
+#define MOPEN 0x04 /* Open and monitor modem lines (blocks
+ for DCD */
+#define MPEND 0x06 /* Wating for DCD */
+#define CONFIG 0x08 /* Channel config has changed */
+#define CLOSE 0x0A /* Close channel */
+#define SBREAK 0x0C /* Start break */
+#define EBREAK 0x0E /* End break */
+#define IDLE_CLOSE 0x10 /* Closed channel */
+#define IDLE_BREAK 0x12 /* In a break */
+#define FCLOSE 0x14 /* Force a close */
+#define RESUME 0x16 /* Clear a pending xoff */
+#define WFLUSH 0x18 /* Flush output buffer */
+#define RFLUSH 0x1A /* Flush input buffer */
+
+/*
+ * Host status register
+ */
+#define ST_BREAK 0x01 /* Break received (clear with config) */
+
+/*
+ * OUTPUT PORT REGISTER
+ */
+#define OP_CTS 0x01 /* Enable CTS */
+#define OP_DSR 0x02 /* Enable DSR */
+/*
+ * INPUT PORT REGISTER
+ */
+#define IP_DCD 0x04 /* DCD High */
+#define IP_DTR 0x20 /* DTR High */
+#define IP_RTS 0x02 /* RTS High */
+#define IP_RI 0x40 /* RI High */
+
+/*
+ * Mode register and uart specific stuff
+ */
+/*
+ * MODE REGISTER 1
+ */
+#define MR1_5_BITS 0x00
+#define MR1_6_BITS 0x01
+#define MR1_7_BITS 0x02
+#define MR1_8_BITS 0x03
+/*
+ * Parity
+ */
+#define MR1_ODD 0x04
+#define MR1_EVEN 0x00
+/*
+ * Parity mode
+ */
+#define MR1_WITH 0x00
+#define MR1_FORCE 0x08
+#define MR1_NONE 0x10
+#define MR1_SPECIAL 0x18
+/*
+ * Error mode
+ */
+#define MR1_CHAR 0x00
+#define MR1_BLOCK 0x20
+/*
+ * Request to send line automatic control
+ */
+#define MR1_CTSCONT 0x80
+
+/*
+ * MODE REGISTER 2
+ */
+/*
+ * Number of stop bits
+ */
+#define MR2_1_STOP 0x07
+#define MR2_2_STOP 0x0F
+/*
+ * Clear to send automatic testing before character sent
+ */
+#define MR2_RTSCONT 0x10
+/*
+ * Reset RTS automatically after sending character?
+ */
+#define MR2_CTSCONT 0x20
+/*
+ * Channel mode
+ */
+#define MR2_NORMAL 0x00
+#define MR2_AUTO 0x40
+#define MR2_LOCAL 0x80
+#define MR2_REMOTE 0xC0
+
+/*
+ * CLOCK SELECT REGISTER - this and the code assumes ispeed == ospeed
+ */
+/*
+ * Clocking rates are in lower and upper nibbles.. R = upper, T = lower
+ */
+#define CLK75 0x0
+#define CLK110 0x1 /* 110 on XIO!! */
+#define CLK38400 0x2 /* out of sequence */
+#define CLK150 0x3
+#define CLK300 0x4
+#define CLK600 0x5
+#define CLK1200 0x6
+#define CLK2000 0x7
+#define CLK2400 0x8
+#define CLK4800 0x9
+#define CLK7200 0xa /* unchecked */
+#define CLK9600 0xb
+#define CLK19200 0xc
+#define CLK57600 0xd
+/*#define CLK110 0xe ?? */
+/*#define CLK110 0xf ?? */
+
+
+/*
+ * the driver's soft config state
+ * This is visible via ioctl()'s.
+ */
+
+struct si_softc {
+ struct device sc_dev; /* base device */
+
+ int sc_type; /* adapter type */
+ char *sc_typename; /* adapter type string */
+
+ struct si_port *sc_ports; /* port structures for this card */
+
+ caddr_t sc_paddr; /* physical addr of iomem */
+ caddr_t sc_maddr; /* kvaddr of iomem */
+ int sc_nport; /* # ports on this card */
+ int sc_irq; /* copy of attach irq */
+ int sc_eisa_iobase; /* EISA io port address */
+ int sc_eisa_irqbits;
+ struct kern_devconf sc_kdc;
+};
+
+/*
+ * Per-port (channel) soft information structure, stored in the driver.
+ */
+struct si_port {
+ volatile struct si_channel *sp_ccb;
+ struct tty *sp_tty;
+ int sp_pend; /* pending command */
+ int sp_last_hi_ip; /* cached DCD */
+ int sp_state;
+ int sp_active_out; /* callout is open */
+ int sp_flags;
+ int sp_dtr_wait; /* DTR holddown in hz */
+ u_int sp_wopeners; /* # procs waiting DCD */
+ u_char sp_hotchar; /* ldisc specific ASAP char */
+ /* Initial state. */
+ struct termios sp_iin;
+ struct termios sp_iout;
+ /* Lock state. */
+ struct termios sp_lin;
+ struct termios sp_lout;
+#ifdef SI_DEBUG
+ int sp_debug; /* debug mask */
+#endif
+};
+
+/* sp_state */
+#define SS_CLOSED 0x0000
+#define SS_OPEN 0x0001 /* Port is active */
+/* 0x0002 -- */
+/* 0x0004 -- */
+/* 0x0008 -- */
+/* 0x0010 -- */
+/* 0x0020 -- */
+/* 0x0040 -- */
+/* 0x0080 -- */
+#define SS_LSTART 0x0100 /* lstart timeout pending */
+#define SS_INLSTART 0x0200 /* running an lstart induced t_oproc */
+#define SS_CLOSING 0x0400 /* in the middle of a siclose() */
+/* 0x0800 -- */
+#define SS_WAITWRITE 0x1000
+#define SS_BLOCKWRITE 0x2000
+#define SS_DTR_OFF 0x4000 /* DTR held off */
+
+/* sp_flags */
+#define SPF_COOKMODE 0x0003
+#define SPFC_WELL 0
+#define SPFC_MEDIUM 1
+#define SPFC_RAW 2
+#define spfc_clear(pp) (pp)->sp_flags &= ~SPF_COOKMODE
+#define SPF_COOK_WELL(pp) spfc_clear(pp)
+#define SPF_COOK_MEDIUM(pp) {spfc_clear(pp);(pp)->sp_flags|=SPFC_MEDIUM;}
+#define SPF_COOK_RAW(pp) {spfc_clear(pp);(pp)->sp_flags|=SPFC_RAW;}
+#define SPF_SETCOOK(pp, c) {spfc_clear(pp);(pp)->sp_flags|=(c);}
+#define SPF_ISCOOKWELL(pp) (((pp)->sp_flags & SPF_COOKMODE) == SPFC_WELL)
+#define SPF_ISCOOKMEDIUM(pp) (((pp)->sp_flags & SPF_COOKMODE) == SPFC_MEDIUM)
+#define SPF_ISCOOKRAW(pp) (((pp)->sp_flags & SPF_COOKMODE) == SPFC_RAW)
+#define SPF_COOKWELL_ALWAYS 0x0004 /* always use line disc */
+/* 0x0008 */
+#define SPF_IXANY 0x0020 /* IXANY enable/disable flag */
+#define SPF_CTSOFLOW 0x0040 /* use CTS to handle o/p flow */
+#define SPF_RTSIFLOW 0x0080 /* use RTS to handle i/p flow */
+#define SPF_PPP 0x0100 /* special handling for upper
+ * level protocol code */
+
+/*
+ * Command post flags
+ */
+#define SI_NOWAIT 0x00 /* Don't wait for command */
+#define SI_WAIT 0x01 /* Wait for complete */
+
+/*
+ * Extensive debugging stuff - manipulated using siconfig(8)
+ */
+#ifdef KERNEL
+#ifdef SI_DEBUG
+static void si_dprintf();
+static char *si_mctl2str();
+#define DPRINT(x) si_dprintf x
+#else
+#define DPRINT(x) /* void */
+#endif
+#endif
+
+#define DBG_ENTRY 0x00000001
+#define DBG_DRAIN 0x00000002
+#define DBG_OPEN 0x00000004
+#define DBG_CLOSE 0x00000008
+#define DBG_READ 0x00000010
+#define DBG_WRITE 0x00000020
+#define DBG_PARAM 0x00000040
+#define DBG_INTR 0x00000080
+#define DBG_IOCTL 0x00000100
+/* 0x00000200 */
+#define DBG_SELECT 0x00000400
+#define DBG_DIRECT 0x00000800
+#define DBG_START 0x00001000
+#define DBG_EXIT 0x00002000
+#define DBG_FAIL 0x00004000
+#define DBG_STOP 0x00008000
+#define DBG_AUTOBOOT 0x00010000
+#define DBG_MODEM 0x00020000
+#define DBG_DOWNLOAD 0x00040000
+#define DBG_LSTART 0x00080000
+#define DBG_POLL 0x00100000
+#define DBG_ALL 0xffffffff
+
+/*
+ * SI ioctls
+ */
+/*
+ * struct for use by Specialix ioctls - used by siconfig(8)
+ */
+typedef struct {
+ unsigned char
+ sid_port:5, /* 0 - 31 ports per card */
+ sid_card:1, /* 0 - 1 cards */
+ sid_control:1, /* controlling device (all cards) */
+ sid_xprint:1; /* xprint version of line */
+} sidev_t;
+struct si_tcsi {
+ sidev_t tc_dev;
+ union {
+ int x_int;
+ int x_dbglvl;
+ int x_modemflag;
+ } tc_action;
+#define tc_card tc_dev.sid_card
+#define tc_port tc_dev.sid_port
+#define tc_int tc_action.x_int
+#define tc_dbglvl tc_action.x_dbglvl
+#define tc_modemflag tc_action.x_modemflag
+#define tc_string tc_action.x_string
+};
+#define IOCTL_MIN 96
+#define TCSIDEBUG _IOW('S', 96, struct si_tcsi) /* Toggle debug */
+#define TCSIRXIT _IOW('S', 97, struct si_tcsi) /* RX int throttle */
+#define TCSIIT _IOW('S', 98, struct si_tcsi) /* TX int throttle */
+#define TCSIMIN _IOW('S', 99, struct si_tcsi) /* TX min xfer amount */
+ /* 100 defunct */
+ /* 101 defunct */
+ /* 102 defunct */
+ /* 103 defunct */
+#define TCSIIXANY _IOW('S', 103, struct si_tcsi) /* enable ixany */
+ /* 104 defunct */
+#define TCSISTATE _IOWR('S', 105, struct si_tcsi) /* get current state of RTS
+ DCD and DTR pins */
+ /* Set/reset/enquire cook mode, 1 = always use line disc
+ * -1 = enquire current setting */
+#define TCSICOOKMODE _IOWR('S', 106, struct si_tcsi)
+#define TCSIPORTS _IOR('S', 107, int) /* Number of ports found */
+#define TCSISDBG_LEVEL _IOW('S', 108, struct si_tcsi) /* equivalent of TCSIDEBUG which sets a
+ * particular debug level (DBG_??? bit
+ * mask), default is 0xffff */
+#define TCSIGDBG_LEVEL _IOWR('S', 109, struct si_tcsi)
+#define TCSIGRXIT _IOWR('S', 110, struct si_tcsi)
+#define TCSIGIT _IOWR('S', 111, struct si_tcsi)
+#define TCSIGMIN _IOWR('S', 112, struct si_tcsi)
+ /* 113 defunct */
+ /* 114 defunct */
+ /* 115 defunct */
+ /* 116 defunct */
+#define TCSIMODEM _IOWR('S', 117, struct si_tcsi) /* set/clear/query the modem bit */
+
+#define TCSISDBG_ALL _IOW('S', 118, int) /* set global debug level */
+#define TCSIGDBG_ALL _IOR('S', 119, int) /* get global debug level */
+
+#define TCSIFLOW _IOWR('S', 120, struct si_tcsi) /* set/get h/w flow state */
+
+/*
+ * Stuff for downloading and initialising an adapter
+ */
+struct si_loadcode {
+ int sd_offset;
+ int sd_nbytes;
+ char sd_bytes[1024]; /* actually larger than this */
+};
+#define TCSIDOWNLOAD _IOW('S', 121, struct si_loadcode)
+#define TCSIBOOT _IOR('S', 122, struct si_tcsi)
+
+#define TCSIPPP _IOWR('S', 123, struct si_tcsi) /* set/get PPP flag bit */
+#define TCSIMODULES _IOR('S', 124, int) /* Number of modules found */
+
+#define IOCTL_MAX 124
+
+#define IS_SI_IOCTL(cmd) ((u_int)((cmd)&0xff00) == ('S'<<8) && \
+ (u_int)((cmd)&0xff) >= IOCTL_MIN && \
+ (u_int)((cmd)&0xff) <= IOCTL_MAX)
+
+#define CONTROLDEV "/dev/si_control"
+
diff --git a/sys/i386/isa/si.c b/sys/i386/isa/si.c
new file mode 100644
index 0000000..8af77e5
--- /dev/null
+++ b/sys/i386/isa/si.c
@@ -0,0 +1,2254 @@
+/*
+ * Device driver for Specialix range (SLXOS) of serial line multiplexors.
+ *
+ * Copyright (C) 1990, 1992 Specialix International,
+ * Copyright (C) 1993, Andy Rutter <andy@acronym.co.uk>
+ * Copyright (C) 1995, Peter Wemm <peter@haywire.dialix.com>
+ *
+ * Originally derived from: SunOS 4.x version
+ * Ported from BSDI version to FreeBSD by Peter Wemm.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notices, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notices, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ * must display the following acknowledgement:
+ * This product includes software developed by Andy Rutter of
+ * Advanced Methods and Tools Ltd. based on original information
+ * from Specialix International.
+ * 4. Neither the name of Advanced Methods and Tools, nor Specialix
+ * International may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
+ * NO EVENT SHALL THE AUTHORS BE LIABLE.
+ *
+ * $Id$
+ */
+
+#ifndef lint
+static char si_copyright1[] = "@(#) (C) Specialix International, 1990,1992",
+ si_copyright2[] = "@(#) (C) Andy Rutter 1993",
+ si_copyright3[] = "@(#) (C) Peter Wemm 1995";
+#endif /* not lint */
+
+#define SI_DEBUG /* turn driver debugging on */
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/ioctl.h>
+#include <sys/tty.h>
+#include <sys/ttydefaults.h>
+#include <sys/proc.h>
+#include <sys/user.h>
+#include <sys/conf.h>
+#include <sys/file.h>
+#include <sys/uio.h>
+#include <sys/dkstat.h>
+#include <sys/kernel.h>
+#include <sys/syslog.h>
+#include <sys/device.h>
+#include <sys/malloc.h>
+#include <sys/devconf.h>
+
+#include <machine/clock.h>
+
+#include <i386/isa/icu.h>
+#include <i386/isa/isa.h>
+#include <i386/isa/isa_device.h>
+
+#include <i386/isa/sireg.h>
+#include <machine/si.h>
+
+#include "si.h"
+
+/*
+ * This device driver is designed to interface the Specialix International
+ * range of serial multiplexor cards (SLXOS) to BSDI/386 on an ISA bus machine.
+ *
+ * The controller is interfaced to the host via dual port ram
+ * and a (programmable - SIHOST2) interrupt at IRQ 11,12 or 15.
+ */
+
+#define DEF_IXANY SPF_IXANY /* allow IXANY in t_iflag to work */
+#define POLL /* turn on poller to generate buffer empty interrupt */
+#define SI_I_HIGH_WATER (TTYHOG - SLXOS_BUFFERSIZE)
+
+enum si_mctl { GET, SET, BIS, BIC };
+
+static void si_command __P((struct si_port *, int, int));
+static int si_modem __P((struct si_port *, enum si_mctl, int));
+static void si_write_enable __P((struct si_port *, int));
+static int si_drainwait __P((struct si_port *, char *));
+static int si_Sioctl __P((dev_t, int, caddr_t, int, struct proc *));
+static void si_start __P((struct tty *));
+static void si_lstart __P((struct si_port *));
+static void si_disc_optim __P((struct tty *tp, struct termios *t,
+ struct si_port *pp));
+static void sihardclose __P((struct si_port *pp));
+static void sidtrwakeup __P((void *chan));
+
+void sistop __P((struct tty *tp, int rw));
+int siparam __P((struct tty *, struct termios *));
+int siintr __P((int bdnum));
+
+static int si_Nports = 0;
+static int si_Nmodules = 0;
+static int si_debug = 0;
+
+/* where the firmware lives */
+extern int si_dsize;
+extern unsigned char si_download[];
+
+struct si_softc si_softc[NSI]; /* 4 elements */
+
+#ifndef B2000 /* not standard */
+# define B2000 2000
+#endif
+static struct speedtab bdrates[] = {
+ B75, CLK75, /* 0x0 */
+ B110, CLK110, /* 0x1 */
+ B150, CLK150, /* 0x3 */
+ B300, CLK300, /* 0x4 */
+ B600, CLK600, /* 0x5 */
+ B1200, CLK1200, /* 0x6 */
+ B2000, CLK2000, /* 0x7 */
+ B2400, CLK2400, /* 0x8 */
+ B4800, CLK4800, /* 0x9 */
+ B9600, CLK9600, /* 0xb */
+ B19200, CLK19200, /* 0xc */
+ B38400, CLK38400, /* 0x2 (out of order!) */
+ B57600, CLK57600, /* 0xd */
+ B115200, CLK110, /* 0x1 (dupe!, 110 baud on "si") */
+ -1, -1
+};
+
+
+/* populated with approx character/sec rates - translated at card
+ * initialisation time to chars per tick of the clock */
+static int done_chartimes = 0;
+static struct speedtab chartimes[] = {
+ B75, 8,
+ B110, 11,
+ B150, 15,
+ B300, 30,
+ B600, 60,
+ B1200, 120,
+ B2000, 200,
+ B2400, 240,
+ B4800, 480,
+ B9600, 960,
+ B19200, 1920,
+ B38400, 3840,
+ B57600, 5760,
+ B115200, 11520,
+ -1, -1
+};
+static volatile int in_intr = 0; /* Inside interrupt handler? */
+static int buffer_space = 128; /* Amount of free buffer space
+ which must be available before
+ the writer is unblocked */
+static int sidefaultrate = TTYDEF_SPEED;
+
+#ifdef POLL
+#define POLL_INTERVAL (hz/2)
+static int init_finished = 0;
+static void si_poll __P((void *));
+#endif
+
+/*
+ * Array of adapter types and the corresponding RAM size. The order of
+ * entries here MUST match the ordinal of the adapter type.
+ */
+static char *si_type[] = {
+ "EMPTY",
+ "SIHOST",
+ "SI2", /* MCA */
+ "SIHOST2",
+ "SIEISA",
+};
+
+
+static struct kern_devconf si_kdc[NSI] = { {
+ 0, 0, 0, /* filled in by dev_attach */
+ "si", 0, { MDDT_ISA, 0, "tty" },
+ isa_generic_externalize, 0, 0, ISA_EXTERNALLEN,
+ &kdc_isa0, /* parent */
+ 0, /* parent data */
+ DC_UNCONFIGURED, /* state */
+ "Specialix SI/XIO Host adapter",
+ DC_CLS_SERIAL, /* class */
+} };
+
+void
+si_registerdev(id)
+ struct isa_device *id;
+{
+ if (id->id_unit != 0) {
+ si_kdc[id->id_unit] = si_kdc[0]; /* struct copy */
+ }
+ si_kdc[id->id_unit].kdc_unit = id->id_unit;
+ si_kdc[id->id_unit].kdc_isa = id;
+ dev_attach(&si_kdc[id->id_unit]);
+}
+
+/* Look for a valid board at the given mem addr */
+int
+siprobe(id)
+ struct isa_device *id;
+{
+ struct si_softc *sc;
+ int type;
+ u_int i, ramsize;
+ volatile BYTE was, *ux;
+ volatile unsigned char *maddr;
+ unsigned char *paddr;
+
+ si_registerdev(id);
+
+ maddr = id->id_maddr; /* virtual address... */
+ paddr = (caddr_t)vtophys(id->id_maddr); /* physical address... */
+
+ DPRINT((0, DBG_AUTOBOOT, "SLXOS probe at virtual=0x%x physical=0x%x\n",
+ id->id_maddr, paddr));
+
+ /*
+ * this is a lie, but it's easier than trying to handle caching
+ * and ram conflicts in the >1M and <16M region.
+ */
+ if ((caddr_t)paddr < (caddr_t)IOM_BEGIN ||
+ (caddr_t)paddr >= (caddr_t)IOM_END) {
+ printf("si%d: iomem (%x) out of range\n",
+ id->id_unit, paddr);
+ return(0);
+ }
+
+ if (id->id_unit >= NSI) {
+ /* THIS IS IMPOSSIBLE */
+ return(0);
+ }
+
+ if (((u_int)paddr & 0x7fff) != 0) {
+ DPRINT((0, DBG_AUTOBOOT|DBG_FAIL,
+ "si%d: iomem (%x) not on 32k boundary\n",
+ id->id_unit, paddr));
+ return(0);
+ }
+
+
+ for (i=0; i < NSI; i++) {
+ if ((sc = &si_softc[i]) == NULL)
+ continue;
+ if ((caddr_t)sc->sc_paddr == (caddr_t)paddr) {
+ DPRINT((0, DBG_AUTOBOOT|DBG_FAIL,
+ "si%d: iomem (%x) already configured to si%d\n",
+ id->id_unit, sc->sc_paddr, i));
+ return(0);
+ }
+ }
+
+#if NEISA > 0
+ if (id->id_iobase > 0x0fff) { /* EISA card */
+ int irq, port;
+ unsigned long base;
+ int eisa_irqs[] = { 0,IRQ1,IRQ2,IRQ3,IRQ4,IRQ5,IRQ6,IRQ7,
+ IRQ8,IRQ9,IRQ10,IRQ11,IRQ12,IRQ13,IRQ14,IRQ15 };
+
+ port = id->id_iobase;
+ base = (inb(port+1) << 24) | (inb(port) << 16);
+ irq = ((inb(port+2) >> 4) & 0xf);
+
+ id->id_irq = eisa_irqs[irq];
+
+ DPRINT((0, DBG_AUTOBOOT,
+ "SLXOS: si%d: EISA base %x, irq %x, id_irq %x, port %x\n",
+ id->id_unit, base, irq, id->id_irq, port));
+
+ if ((id->id_irq&(IRQ1|IRQ2|IRQ8|IRQ13)) != 0)
+ goto bad_irq;
+
+ id->id_iobase &= 0xf000;
+ id->id_iosize = 0x0fff;
+
+ type = EISA;
+ outb(p+2, (BYTE)irq << 4);
+
+ sc->sc_eisa_iobase = p;
+ sc->sc_eisa_irqbits = irq << 4;
+ ramsize = SIEISA_RAMSIZE;
+ goto got_card;
+ }
+#endif
+
+ /* Is there anything out there? (0x17 is just an arbitrary number) */
+ *maddr = 0x17;
+ if (*maddr != 0x17) {
+ DPRINT((0, DBG_AUTOBOOT|DBG_FAIL,
+ "si%d: 0x17 check fail at phys 0x%x\n",
+ id->id_unit, paddr));
+fail:
+ return(0);
+ }
+ /*
+ * OK, now to see if whatever responded is really an SI card.
+ * Try for a MK II first (SIHOST2)
+ */
+ for (i=SIPLSIG; i<SIPLSIG+8; i++)
+ if ((*(maddr+i) & 7) != (~(BYTE)i & 7))
+ goto try_mk1;
+
+ /* It must be an SIHOST2 */
+ *(maddr + SIPLRESET) = 0;
+ *(maddr + SIPLIRQCLR) = 0;
+ *(maddr + SIPLIRQSET) = 0x10;
+ type = SIHOST2;
+ ramsize = SIHOST2_RAMSIZE;
+ goto got_card;
+
+ /*
+ * Its not a MK II, so try for a MK I (SIHOST)
+ */
+try_mk1:
+ *(maddr+SIRESET) = 0x0; /* reset the card */
+ *(maddr+SIINTCL) = 0x0; /* clear int */
+ *(maddr+SIRAM) = 0x17;
+ if (*(maddr+SIRAM) != (BYTE)0x17)
+ goto fail;
+ *(maddr+0x7ff8) = 0x17;
+ if (*(maddr+0x7ff8) != (BYTE)0x17) {
+ DPRINT((0, DBG_AUTOBOOT|DBG_FAIL,
+ "si%d: 0x17 check fail at phys 0x%x = 0x%x\n",
+ id->id_unit, paddr+0x77f8, *(maddr+0x77f8)));
+ goto fail;
+ }
+
+ /* It must be an SIHOST (maybe?) - there must be a better way XXXX */
+ type = SIHOST;
+ ramsize = SIHOST_RAMSIZE;
+
+got_card:
+ DPRINT((0, DBG_AUTOBOOT, "SLXOS: found type %d card, try memory test\n", type));
+ /* Try the acid test */
+ ux = (BYTE *)(maddr + SIRAM);
+ for (i=0; i<ramsize; i++, ux++)
+ *ux = (BYTE)(i&0xff);
+ ux = (BYTE *)(maddr + SIRAM);
+ for (i=0; i<ramsize; i++, ux++) {
+ if ((was = *ux) != (BYTE)(i&0xff)) {
+ DPRINT((0, DBG_AUTOBOOT|DBG_FAIL,
+ "SLXOS si%d: match fail at phys 0x%x, was %x should be %x\n",
+ id->id_unit, paddr+i, was, i&0xff));
+ goto fail;
+ }
+ }
+
+ /* clear out the RAM */
+ ux = (BYTE *)(maddr + SIRAM);
+ for (i=0; i<ramsize; i++)
+ *ux++ = 0;
+ ux = (BYTE *)(maddr + SIRAM);
+ for (i=0; i<ramsize; i++) {
+ if ((was = *ux++) != 0) {
+ DPRINT((0, DBG_AUTOBOOT|DBG_FAIL,
+ "SLXOS si%d: clear fail at phys 0x%x, was %x\n",
+ id->id_unit, paddr+i, was));
+ goto fail;
+ }
+ }
+
+ /*
+ * Success, we've found a valid board, now fill in
+ * the adapter structure.
+ */
+ switch (type) {
+ case SIHOST2:
+ if ((id->id_irq&(IRQ11|IRQ12|IRQ15)) == 0) {
+bad_irq:
+ DPRINT((0, DBG_AUTOBOOT|DBG_FAIL,
+ "si%d: bad IRQ value - %d\n",
+ id->id_unit, id->id_irq));
+ return(0);
+ }
+ id->id_msize = SIHOST2_MEMSIZE;
+ break;
+ case SIHOST:
+ if ((id->id_irq&(IRQ11|IRQ12|IRQ15)) == 0) {
+ goto bad_irq;
+ }
+ id->id_msize = SIHOST_MEMSIZE;
+ break;
+ case SIEISA:
+ id->id_msize = SIEISA_MEMSIZE;
+ break;
+ case SI2: /* MCA */
+ default:
+ printf("si%d: %s not supported\n", id->id_unit, si_type[type]);
+ return(0);
+ }
+ si_softc[id->id_unit].sc_type = type;
+ si_softc[id->id_unit].sc_typename = si_type[type];
+ return(-1); /* -1 == found */
+}
+
+/*
+ * Attach the device. Initialize the card.
+ */
+int
+siattach(id)
+ struct isa_device *id;
+{
+ int unit = id->id_unit;
+ struct si_softc *sc = &si_softc[unit];
+ struct si_port *pp;
+ volatile struct si_channel *ccbp;
+ volatile struct si_reg *regp;
+ volatile caddr_t maddr;
+ struct si_module *modp;
+ struct tty *tp;
+ struct speedtab *spt;
+ int nmodule, nport, x, y;
+
+ DPRINT((0, DBG_AUTOBOOT, "SLXOS siattach\n"));
+
+ sc->sc_paddr = (caddr_t)vtophys(id->id_maddr);
+ sc->sc_maddr = id->id_maddr;
+ sc->sc_irq = id->id_irq;
+
+ sc->sc_ports = NULL; /* mark as uninitialised */
+
+ maddr = sc->sc_maddr;
+
+ /*
+ * OK, now lets download the firmware and try and boot the CPU..
+ */
+
+ DPRINT((0, DBG_DOWNLOAD, "SLXOS si_download: nbytes %d\n", si_dsize));
+ bcopy(si_download, maddr, si_dsize);
+
+ switch (sc->sc_type) {
+ case SIEISA:
+#if NEISA > 0
+ /* modify the Z280 firmware to tell it that it's on an EISA */
+ *(maddr+0x42) = 1;
+ outb(sc->sc_eisa_iobase+2, sc->sc_eisa_irqbits | 4);
+ (void)inb(sc->sc_eisa_iobase+3); /* reset interrupt */
+ break;
+#endif /* fall-through if not EISA */
+ case SI2:
+ /* must get around to writing the code for
+ * these one day */
+ return 0;
+ case SIHOST:
+ *(maddr+SIRESET_CL) = 0;
+ *(maddr+SIINTCL_CL) = 0;
+ break;
+ case SIHOST2:
+ *(maddr+SIPLRESET) = 0x10;
+ switch (sc->sc_irq) {
+ case IRQ11:
+ *(maddr+SIPLIRQ11) = 0x10;
+ break;
+ case IRQ12:
+ *(maddr+SIPLIRQ12) = 0x10;
+ break;
+ case IRQ15:
+ *(maddr+SIPLIRQ15) = 0x10;
+ break;
+ }
+ *(maddr+SIPLIRQCLR) = 0x10;
+ break;
+ }
+
+ DELAY(1000000); /* wait around for a second */
+
+ regp = (struct si_reg *)maddr;
+ y = 0;
+ /* wait max of 5 sec for init OK */
+ while (regp->initstat == 0 && y++ < 10) {
+ DELAY(500000);
+ }
+ switch (regp->initstat) {
+ case 0:
+ printf("si%d: startup timeout - aborting\n", unit);
+ sc->sc_type = NULL;
+ return 0;
+ case 1:
+ /* set throttle to 100 intr per second */
+ regp->int_count = 25000;
+ /* rx intr max of 25 timer per second */
+ regp->rx_int_count = 4;
+ regp->int_pending = 0; /* no intr pending */
+ regp->int_scounter = 0; /* reset counter */
+ break;
+ case 0xff:
+ /*
+ * No modules found, so give up on this one.
+ */
+ printf("si%d: %s - no ports found\n", unit,
+ si_type[sc->sc_type]);
+ return 0;
+ default:
+ printf("si%d: Z280 version error - initstat %x\n",
+ unit, regp->initstat);
+ return 0;
+ }
+
+ /*
+ * First time around the ports just count them in order
+ * to allocate some memory.
+ */
+ nport = 0;
+ modp = (struct si_module *)(maddr + 0x80);
+ for (;;) {
+ DPRINT((0, DBG_DOWNLOAD, "SLXOS si%d: ccb addr 0x%x\n", unit, modp));
+ switch (modp->sm_type & (~MMASK)) {
+ case M232:
+ case M422:
+ DPRINT((0, DBG_DOWNLOAD,
+ "SLXOS si%d: Found 232/422 module, %d ports\n",
+ unit, (int)(modp->sm_type & MMASK)));
+
+ /* this is a firmware issue */
+ if (si_Nports == SI_MAXPORTPERCARD) {
+ printf("si%d: extra ports ignored\n", unit);
+ continue;
+ }
+
+ x = modp->sm_type & MMASK;
+ nport += x;
+ si_Nports += x;
+ si_Nmodules++;
+ break;
+ default:
+ printf("si%d: unknown module type %d\n",
+ unit, modp->sm_type);
+ break;
+ }
+ if (modp->sm_next == 0)
+ break;
+ modp = (struct si_module *)
+ (maddr + (unsigned)(modp->sm_next & 0x7fff));
+ }
+ sc->sc_ports = (struct si_port *)malloc(sizeof(struct si_port) * nport,
+ M_DEVBUF, M_NOWAIT);
+ if (sc->sc_ports == 0) {
+mem_fail:
+ printf("si%d: fail to malloc memory for port structs\n",
+ unit);
+ return 0;
+ }
+ bzero(sc->sc_ports, sizeof(struct si_port) * nport);
+ sc->sc_nport = nport;
+
+ /*
+ * allocate tty structures for ports
+ */
+ tp = (struct tty *)malloc(sizeof(*tp) * nport, M_DEVBUF, M_NOWAIT);
+ if (tp == 0)
+ goto mem_fail;
+ bzero(tp, sizeof(*tp) * nport);
+
+ /* mark the device state as attached */
+ si_kdc[unit].kdc_state = DC_BUSY;
+
+ /*
+ * Scan round the ports again, this time initialising.
+ */
+ pp = sc->sc_ports;
+ nmodule = 0;
+ modp = (struct si_module *)(maddr + 0x80);
+ for (;;) {
+ switch (modp->sm_type & (~MMASK)) {
+ case M232:
+ case M422:
+ nmodule++;
+ nport = (modp->sm_type & MMASK);
+ ccbp = (struct si_channel *)((char *)modp+0x100);
+ for (x = 0; x < nport; x++, pp++, ccbp++) {
+ pp->sp_ccb = ccbp; /* save the address */
+ pp->sp_tty = tp++;
+ pp->sp_pend = IDLE_CLOSE;
+ pp->sp_flags = DEF_IXANY;
+ pp->sp_state = 0; /* internal flag */
+ pp->sp_dtr_wait = 3 * hz;
+ pp->sp_iin.c_iflag = 0;
+ pp->sp_iin.c_oflag = 0;
+ pp->sp_iin.c_cflag = TTYDEF_CFLAG;
+ pp->sp_iin.c_lflag = 0;
+ termioschars(&pp->sp_iin);
+ pp->sp_iin.c_ispeed = pp->sp_iin.c_ospeed =
+ sidefaultrate;
+ pp->sp_iout = pp->sp_iin;
+ }
+ break;
+ default:
+ break;
+ }
+ if (modp->sm_next == 0) {
+ printf("si%d: %s, ports: %d, modules: %d\n",
+ unit,
+ sc->sc_typename,
+ sc->sc_nport,
+ nmodule);
+ break;
+ }
+ modp = (struct si_module *)
+ (maddr + (unsigned)(modp->sm_next & 0x7fff));
+ }
+ if (done_chartimes == 0) {
+ for (spt = chartimes ; spt->sp_speed != -1; spt++) {
+ if ((spt->sp_code /= hz) == 0)
+ spt->sp_code = 1;
+ }
+ done_chartimes = 1;
+
+/* tell them where we stand.. */
+printf("\
+si%d: -------------------USE AT YOUR OWN RISK!!!!--------------------\n\
+si%d: WARNING!! THIS DRIVER IS NOT COMPLETE NOR SUFFICIENTLY TESTED!!\n\
+si%d: -------------------USE AT YOUR OWN RISK!!!!--------------------\n\
+", unit, unit, unit);
+
+#ifdef __GNUC__
+#warning "WARNING: THIS DRIVER IS NOT COMPLETE! USE AT YOR OWN RISK!!!"
+#endif
+
+ }
+ return (1);
+}
+
+struct isa_driver sidriver =
+ { siprobe, siattach, "si" };
+
+
+int
+siopen(dev, flag, mode, p)
+ dev_t dev;
+ int flag, mode;
+ struct proc *p;
+{
+ int oldspl, error;
+ int card, port;
+ register struct si_softc *sc;
+ register struct tty *tp;
+ volatile struct si_channel *ccbp;
+ struct si_port *pp;
+ int mynor = minor(dev);
+
+ /* quickly let in /dev/si_control */
+ if (IS_CONTROLDEV(mynor)) {
+ if (error = suser(p->p_ucred, &p->p_acflag))
+ return(error);
+ return(0);
+ }
+
+ card = SI_CARD(mynor);
+ if (card >= NSI)
+ return (ENXIO);
+ sc = &si_softc[card];
+
+ if (sc->sc_type == NULL) {
+ DPRINT((0, DBG_OPEN|DBG_FAIL, "SLXOS si%d: type %s??\n",
+ card, sc->sc_typename));
+ return(ENXIO);
+ }
+
+ port = SI_PORT(mynor);
+ if (port >= sc->sc_nport) {
+ DPRINT((0, DBG_OPEN|DBG_FAIL, "SLXOS si%d: nports %d\n",
+ card, sc->sc_nport));
+ return(ENXIO);
+ }
+
+#ifdef POLL
+ /*
+ * We've now got a device, so start the poller.
+ */
+ if (init_finished == 0) {
+ timeout(si_poll, (caddr_t)0L, POLL_INTERVAL);
+ init_finished = 1;
+ }
+#endif
+
+ /* initial/lock device */
+ if (IS_STATE(mynor)) {
+ return(0);
+ }
+
+ pp = sc->sc_ports + port;
+ tp = pp->sp_tty; /* the "real" tty */
+ ccbp = pp->sp_ccb; /* Find control block */
+ DPRINT((pp, DBG_ENTRY|DBG_OPEN, "siopen(%x,%x,%x,%x)\n",
+ dev, flag, mode, p));
+
+ oldspl = spltty(); /* Keep others out */
+ error = 0;
+
+open_top:
+ while (pp->sp_state & SS_DTR_OFF) {
+ error = tsleep(&pp->sp_dtr_wait, TTIPRI|PCATCH, "sidtr", 0);
+ if (error != 0)
+ goto out;
+ }
+
+ if (tp->t_state & TS_ISOPEN) {
+ /*
+ * The device is open, so everything has been initialised.
+ * handle conflicts.
+ */
+ if (IS_CALLOUT(mynor)) {
+ if (!pp->sp_active_out) {
+ error = EBUSY;
+ goto out;
+ }
+ } else {
+ if (pp->sp_active_out) {
+ if (flag & O_NONBLOCK) {
+ error = EBUSY;
+ goto out;
+ }
+ error = tsleep(&pp->sp_active_out,
+ TTIPRI|PCATCH, "sibi", 0);
+ if (error != 0)
+ goto out;
+ goto open_top;
+ }
+ }
+ if (tp->t_state & TS_XCLUDE && p->p_ucred->cr_uid != 0) {
+ DPRINT((pp, DBG_OPEN|DBG_FAIL,
+ "already open and EXCLUSIVE set\n"));
+ error = EBUSY;
+ goto out;
+ }
+ } else {
+ /*
+ * The device isn't open, so there are no conflicts.
+ * Initialize it. Avoid sleep... :-)
+ */
+ DPRINT((pp, DBG_OPEN, "first open\n"));
+ tp->t_oproc = si_start;
+ tp->t_param = siparam;
+ tp->t_dev = dev;
+ tp->t_termios = mynor & SI_CALLOUT_MASK
+ ? pp->sp_iout : pp->sp_iin;
+
+ (void) si_modem(pp, SET, TIOCM_DTR|TIOCM_RTS);
+
+ ++pp->sp_wopeners; /* in case of sleep in siparam */
+
+ error = siparam(tp, &tp->t_termios);
+
+ --pp->sp_wopeners;
+ if (error != 0)
+ goto out;
+ /* XXX: we should goto_top if siparam slept */
+
+ ttsetwater(tp);
+
+ /* set initial DCD state */
+ pp->sp_last_hi_ip = ccbp->hi_ip;
+ if ((pp->sp_last_hi_ip & IP_DCD) || IS_CALLOUT(mynor)) {
+ (*linesw[tp->t_line].l_modem)(tp, 1);
+ }
+ }
+
+ /* whoops! we beat the close! */
+ if (pp->sp_state & SS_CLOSING) {
+ /* try and stop it from proceeding to bash the hardware */
+ pp->sp_state &= ~SS_CLOSING;
+ }
+
+ /*
+ * Wait for DCD if necessary
+ */
+ if (!(tp->t_state & TS_CARR_ON)
+ && !IS_CALLOUT(mynor)
+ && !(tp->t_cflag & CLOCAL)
+ && !(flag & O_NONBLOCK)) {
+ ++pp->sp_wopeners;
+ DPRINT((pp, DBG_OPEN, "sleeping for carrier\n"));
+ error = tsleep(TSA_CARR_ON(tp), TTIPRI|PCATCH, "sidcd", 0);
+ --pp->sp_wopeners;
+ if (error != 0)
+ goto out;
+ goto open_top;
+ }
+
+ error = (*linesw[tp->t_line].l_open)(dev, tp);
+ si_disc_optim(tp, &tp->t_termios, pp);
+ if (tp->t_state & TS_ISOPEN && IS_CALLOUT(mynor))
+ pp->sp_active_out = TRUE;
+
+ pp->sp_state |= SS_OPEN; /* made it! */
+
+out:
+ splx(oldspl);
+
+ DPRINT((pp, DBG_OPEN, "leaving siopen\n"));
+
+ if (!(tp->t_state & TS_ISOPEN) && pp->sp_wopeners == 0)
+ sihardclose(pp);
+
+ return(error);
+}
+
+int
+siclose(dev, flag, mode, p)
+ dev_t dev;
+ int flag, mode;
+ struct proc *p;
+{
+ register struct si_port *pp;
+ register struct tty *tp;
+ int oldspl;
+ int error = 0;
+ int mynor = minor(dev);
+
+ if (IS_SPECIAL(mynor))
+ return(0);
+
+ oldspl = spltty();
+
+ pp = MINOR2PP(mynor);
+ tp = pp->sp_tty;
+
+ DPRINT((pp, DBG_ENTRY|DBG_CLOSE, "siclose(%x,%x,%x,%x) sp_state:%x\n",
+ dev, flag, mode, p, pp->sp_state));
+
+ /* did we sleep and loose a race? */
+ if (pp->sp_state & SS_CLOSING) {
+ /* error = ESOMETING? */
+ goto out;
+ }
+
+ /* begin race detection.. */
+ pp->sp_state |= SS_CLOSING;
+
+ si_write_enable(pp, 0); /* block writes for ttywait() */
+
+ /* THIS MAY SLEEP IN TTYWAIT!!! */
+ (*linesw[tp->t_line].l_close)(tp, flag);
+
+ si_write_enable(pp, 1);
+
+ /* did we sleep and somebody started another open? */
+ if (!(pp->sp_state & SS_CLOSING)) {
+ /* error = ESOMETING? */
+ goto out;
+ }
+ /* ok. we are now still on the right track.. nuke the hardware */
+
+ if (pp->sp_state & SS_LSTART) {
+ untimeout((timeout_func_t)si_lstart, (caddr_t)pp);
+ pp->sp_state &= ~SS_LSTART;
+ }
+
+ sistop(tp, FREAD | FWRITE);
+
+ sihardclose(pp);
+ ttyclose(tp);
+ pp->sp_state &= ~SS_OPEN;
+
+out:
+ DPRINT((pp, DBG_CLOSE|DBG_EXIT, "close done, returning\n"));
+ splx(oldspl);
+ return(error);
+}
+
+static void
+sihardclose(pp)
+ struct si_port *pp;
+{
+ int oldspl;
+ struct tty *tp;
+ volatile struct si_channel *ccbp;
+
+ oldspl = spltty();
+
+ tp = pp->sp_tty;
+ ccbp = pp->sp_ccb; /* Find control block */
+ if (tp->t_cflag & HUPCL
+ || !pp->sp_active_out
+ && !(ccbp->hi_ip & IP_DCD)
+ && !(pp->sp_iin.c_cflag && CLOCAL)
+ || !(tp->t_state & TS_ISOPEN)) {
+
+ (void) si_modem(pp, BIC, TIOCM_DTR|TIOCM_RTS);
+ (void) si_command(pp, FCLOSE, SI_NOWAIT);
+
+ if (pp->sp_dtr_wait != 0) {
+ timeout(sidtrwakeup, pp, pp->sp_dtr_wait);
+ pp->sp_state |= SS_DTR_OFF;
+ }
+
+ }
+ pp->sp_active_out = FALSE;
+ wakeup((caddr_t)&pp->sp_active_out);
+ wakeup(TSA_CARR_ON(tp));
+
+ splx(oldspl);
+}
+
+
+/*
+ * called at splsoftclock()...
+ */
+static void
+sidtrwakeup(chan)
+ void *chan;
+{
+ struct si_port *pp;
+ int oldspl;
+
+ oldspl = spltty();
+
+ pp = (struct si_port *)chan;
+ pp->sp_state &= ~SS_DTR_OFF;
+ wakeup(&pp->sp_dtr_wait);
+
+ splx(oldspl);
+}
+
+/*
+ * User level stuff - read and write
+ */
+int
+siread(dev, uio, flag)
+ register dev_t dev;
+ struct uio *uio;
+ int flag;
+{
+ register struct tty *tp;
+ int mynor = minor(dev);
+
+ if (IS_SPECIAL(mynor)) {
+ DPRINT((0, DBG_ENTRY|DBG_FAIL|DBG_READ, "siread(CONTROLDEV!!)\n"));
+ return(ENODEV);
+ }
+ tp = MINOR2TP(mynor);
+ DPRINT((TP2PP(tp), DBG_ENTRY|DBG_READ,
+ "siread(%x,%x,%x)\n", dev, uio, flag));
+ return ((*linesw[tp->t_line].l_read)(tp, uio, flag));
+}
+
+
+int
+siwrite(dev, uio, flag)
+ dev_t dev;
+ struct uio *uio;
+ int flag;
+{
+ register struct si_port *pp;
+ register struct tty *tp;
+ int error = 0;
+ int mynor = minor(dev);
+ int oldspl;
+
+ if (IS_SPECIAL(mynor)) {
+ DPRINT((0, DBG_ENTRY|DBG_FAIL|DBG_WRITE, "siwrite(CONTROLDEV!!)\n"));
+ return(ENODEV);
+ }
+ pp = MINOR2PP(mynor);
+ tp = pp->sp_tty;
+ DPRINT((pp, DBG_WRITE, "siwrite(%x,%x,%x)\n", dev, uio, flag));
+
+ oldspl = spltty();
+ /*
+ * If writes are currently blocked, wait on the "real" tty
+ */
+ while (pp->sp_state & SS_BLOCKWRITE) {
+ pp->sp_state |= SS_WAITWRITE;
+ DPRINT((pp, DBG_WRITE, "in siwrite, wait for SS_BLOCKWRITE to clear\n"));
+ if (error = ttysleep(tp, (caddr_t)pp, TTOPRI|PCATCH,
+ "siwrite", 0))
+ goto out;
+ }
+
+ error = (*linesw[tp->t_line].l_write)(tp, uio, flag);
+out:
+ splx(oldspl);
+ return (error);
+}
+
+
+struct tty *
+sidevtotty(dev_t dev)
+{
+ struct si_port *pp;
+ int mynor = minor(dev);
+ struct si_softc *sc = &si_softc[SI_CARD(mynor)];
+
+ if (IS_SPECIAL(mynor))
+ return(NULL);
+ if (SI_PORT(mynor) >= sc->sc_nport)
+ return(NULL);
+ pp = MINOR2PP(mynor);
+ return (pp->sp_tty);
+}
+
+int
+siioctl(dev, cmd, data, flag, p)
+ dev_t dev;
+ int cmd;
+ caddr_t data;
+ int flag;
+ struct proc *p;
+{
+ struct si_port *pp;
+ register struct tty *tp;
+ int error;
+ int mynor = minor(dev);
+ int oldspl;
+ int blocked = 0;
+#if defined(COMPAT_43)
+ int oldcmd;
+ struct termios term;
+#endif
+
+ if (IS_SI_IOCTL(cmd))
+ return(si_Sioctl(dev, cmd, data, flag, p));
+
+ pp = MINOR2PP(mynor);
+ tp = pp->sp_tty;
+
+ DPRINT((pp, DBG_ENTRY|DBG_IOCTL, "siioctl(%x,%x,%x,%x)\n",
+ dev, cmd, data, flag));
+ if (IS_STATE(mynor)) {
+ struct termios *ct;
+
+ switch (mynor & SI_STATE_MASK) {
+ case SI_INIT_STATE_MASK:
+ ct = IS_CALLOUT(mynor) ? &pp->sp_iout : &pp->sp_iin;
+ break;
+ case SI_LOCK_STATE_MASK:
+ ct = IS_CALLOUT(mynor) ? &pp->sp_iout : &pp->sp_iin;
+ break;
+ default:
+ return (ENODEV);
+ }
+ switch (cmd) {
+ case TIOCSETA:
+ error = suser(p->p_ucred, &p->p_acflag);
+ if (error != 0)
+ return (error);
+ *ct = *(struct termios *)data;
+ return (0);
+ case TIOCGETA:
+ *(struct termios *)data = *ct;
+ return (0);
+ case TIOCGETD:
+ *(int *)data = TTYDISC;
+ return (0);
+ case TIOCGWINSZ:
+ bzero(data, sizeof(struct winsize));
+ return (0);
+ default:
+ return (ENOTTY);
+ }
+ }
+ /*
+ * Do the old-style ioctl compat routines...
+ */
+#if defined(COMPAT_43)
+ term = tp->t_termios;
+ oldcmd = cmd;
+ error = ttsetcompat(tp, &cmd, data, &term);
+ if (error != 0)
+ return (error);
+ if (cmd != oldcmd)
+ data = (caddr_t)&term;
+#endif
+ /*
+ * Do the initial / lock state business
+ */
+ if (cmd == TIOCSETA || cmd == TIOCSETAW || cmd == TIOCSETAF) {
+ int cc;
+ struct termios *dt = (struct termios *)data;
+ struct termios *lt = mynor & SI_CALLOUT_MASK
+ ? &pp->sp_lout : &pp->sp_lin;
+
+ dt->c_iflag = (tp->t_iflag & lt->c_iflag)
+ | (dt->c_iflag & ~lt->c_iflag);
+ dt->c_oflag = (tp->t_oflag & lt->c_oflag)
+ | (dt->c_oflag & ~lt->c_oflag);
+ dt->c_cflag = (tp->t_cflag & lt->c_cflag)
+ | (dt->c_cflag & ~lt->c_cflag);
+ dt->c_lflag = (tp->t_lflag & lt->c_lflag)
+ | (dt->c_lflag & ~lt->c_lflag);
+ for (cc = 0; cc < NCCS; ++cc)
+ if (lt->c_cc[cc] != 0)
+ dt->c_cc[cc] = tp->t_cc[cc];
+ if (lt->c_ispeed != 0)
+ dt->c_ispeed = tp->t_ispeed;
+ if (lt->c_ospeed != 0)
+ dt->c_ospeed = tp->t_ospeed;
+ }
+
+ /*
+ * Block user-level writes to give the ttywait()
+ * a chance to completely drain for commands
+ * that require the port to be in a quiescent state.
+ */
+ switch (cmd) {
+ case TIOCSETAW: case TIOCSETAF:
+ case TIOCDRAIN: case TIOCSETP:
+ blocked++; /* block writes for ttywait() and siparam() */
+ si_write_enable(pp, 0);
+ }
+
+ error = (*linesw[tp->t_line].l_ioctl)(tp, cmd, data, flag, p);
+ if (error >= 0)
+ goto out;
+
+ oldspl = spltty();
+
+ error = ttioctl(tp, cmd, data, flag);
+ si_disc_optim(tp, &tp->t_termios, pp);
+ if (error >= 0)
+ goto outspl;
+
+ switch (cmd) {
+ case TIOCSBRK:
+ si_command(pp, SBREAK, SI_NOWAIT);
+ break;
+ case TIOCCBRK:
+ si_command(pp, EBREAK, SI_NOWAIT);
+ break;
+ case TIOCSDTR:
+ (void) si_modem(pp, SET, TIOCM_DTR|TIOCM_RTS);
+ break;
+ case TIOCCDTR:
+ (void) si_modem(pp, SET, 0);
+ break;
+ case TIOCMSET:
+ (void) si_modem(pp, SET, *(int *)data);
+ break;
+ case TIOCMBIS:
+ (void) si_modem(pp, BIS, *(int *)data);
+ break;
+ case TIOCMBIC:
+ (void) si_modem(pp, BIC, *(int *)data);
+ break;
+ case TIOCMGET:
+ *(int *)data = si_modem(pp, GET, 0);
+ break;
+ case TIOCMSDTRWAIT:
+ /* must be root since the wait applies to following logins */
+ error = suser(p->p_ucred, &p->p_acflag);
+ if (error != 0) {
+ goto outspl;
+ }
+ pp->sp_dtr_wait = *(int *)data * hz / 100;
+ break;
+ case TIOCMGDTRWAIT:
+ *(int *)data = pp->sp_dtr_wait * 100 / hz;
+ break;
+
+ default:
+ error = ENOTTY;
+ }
+ error = 0;
+outspl:
+ splx(oldspl);
+out:
+ DPRINT((pp, DBG_IOCTL|DBG_EXIT, "siioctl ret %d\n", error));
+ if (blocked)
+ si_write_enable(pp, 1);
+ return(error);
+}
+
+/*
+ * Handle the Specialix ioctls. All MUST be called via the CONTROL device
+ */
+static int
+si_Sioctl(dev_t dev, int cmd, caddr_t data, int flag, struct proc *p)
+{
+ struct si_softc *xsc;
+ register struct si_port *xpp;
+ volatile struct si_reg *regp;
+ struct si_tcsi *dp;
+ BYTE *bp;
+ int i, *ip, error = 0;
+ int oldspl;
+ int card, port;
+ unsigned short *usp;
+ int mynor = minor(dev);
+
+ DPRINT((0, DBG_ENTRY|DBG_IOCTL, "si_Sioctl(%x,%x,%x,%x)\n",
+ dev, cmd, data, flag));
+
+ if (!IS_CONTROLDEV(mynor)) {
+ DPRINT((0, DBG_IOCTL|DBG_FAIL, "not called from control device!\n"));
+ return(ENODEV);
+ }
+
+ oldspl = spltty(); /* better safe than sorry */
+
+ ip = (int *)data;
+
+#define SUCHECK if (error = suser(p->p_ucred, &p->p_acflag)) goto out
+
+ switch (cmd) {
+ case TCSIPORTS:
+ *ip = si_Nports;
+ goto out;
+ case TCSIMODULES:
+ *ip = si_Nmodules;
+ goto out;
+ case TCSISDBG_ALL:
+ SUCHECK;
+ si_debug = *ip;
+ goto out;
+ case TCSIGDBG_ALL:
+ *ip = si_debug;
+ goto out;
+ default:
+ /*
+ * Check that a controller for this port exists
+ */
+ dp = (struct si_tcsi *)data;
+ card = dp->tc_card;
+ xsc = &si_softc[card]; /* check.. */
+ if (card < 0 || card >= NSI || xsc->sc_type == NULL) {
+ error = ENOENT;
+ goto out;
+ }
+ /*
+ * And check that a port exists
+ */
+ port = dp->tc_port;
+ if (port < 0 || port >= xsc->sc_nport) {
+ error = ENOENT;
+ goto out;
+ }
+ xpp = xsc->sc_ports + port;
+ regp = (struct si_reg *)xsc->sc_maddr;
+ }
+
+ switch (cmd) {
+ case TCSIDEBUG:
+#ifdef SI_DEBUG
+ SUCHECK;
+ if (xpp->sp_debug)
+ xpp->sp_debug = 0;
+ else {
+ xpp->sp_debug = DBG_ALL;
+ DPRINT((xpp, DBG_IOCTL, "debug toggled %s\n",
+ (xpp->sp_debug&DBG_ALL)?"ON":"OFF"));
+ }
+ break;
+#else
+ error = ENODEV;
+ goto out;
+#endif
+ case TCSISDBG_LEVEL:
+ case TCSIGDBG_LEVEL:
+#ifdef SI_DEBUG
+ if (cmd == TCSIGDBG_LEVEL) {
+ dp->tc_dbglvl = xpp->sp_debug;
+ } else {
+ SUCHECK;
+ xpp->sp_debug = dp->tc_dbglvl;
+ }
+ break;
+#else
+ error = ENODEV;
+ goto out;
+#endif
+ case TCSIGRXIT:
+ dp->tc_int = regp->rx_int_count;
+ break;
+ case TCSIRXIT:
+ SUCHECK;
+ regp->rx_int_count = dp->tc_int;
+ break;
+ case TCSIGIT:
+ dp->tc_int = regp->int_count;
+ break;
+ case TCSIIT:
+ SUCHECK;
+ regp->int_count = dp->tc_int;
+ break;
+ case TCSIGMIN:
+ dp->tc_int = buffer_space;
+ break;
+ case TCSIMIN:
+ SUCHECK;
+ buffer_space = dp->tc_int;
+ break;
+ case TCSIIXANY:
+ switch (dp->tc_int) {
+ case -1:
+ dp->tc_int = (xpp->sp_flags & SPF_IXANY)?1:0;
+ break;
+ case 1:
+ SUCHECK;
+ xpp->sp_flags |= SPF_IXANY;
+ break;
+ case 0:
+ SUCHECK;
+ xpp->sp_flags &= ~SPF_IXANY;
+ break;
+ default:
+ error = EINVAL;
+ goto out;
+ }
+ break;
+ case TCSIFLOW:
+ i = dp->tc_int;
+ if (i == -1)
+ dp->tc_int = xpp->sp_flags & (SPF_CTSOFLOW|SPF_RTSIFLOW);
+ else {
+ SUCHECK;
+ if (i & ~(SPF_CTSOFLOW|SPF_RTSIFLOW) != 0) {
+ error = EINVAL;
+ goto out;
+ }
+ if (i & SPF_CTSOFLOW)
+ xpp->sp_flags |= SPF_CTSOFLOW;
+ else
+ xpp->sp_flags &= ~SPF_CTSOFLOW;
+ if (i & SPF_RTSIFLOW)
+ xpp->sp_flags |= SPF_RTSIFLOW;
+ else
+ xpp->sp_flags &= ~SPF_RTSIFLOW;
+ }
+ break;
+ case TCSISTATE:
+ dp->tc_int = xpp->sp_ccb->hi_ip;
+ break;
+ case TCSIPPP:
+ switch (dp->tc_int) {
+ case -1:
+ dp->tc_int = (xpp->sp_flags & SPF_PPP)?1:0;
+ break;
+ case 1:
+ SUCHECK;
+ xpp->sp_flags |= SPF_PPP;
+ break;
+ case 0:
+ SUCHECK;
+ xpp->sp_flags &= ~SPF_PPP;
+ break;
+ default:
+ error = EINVAL;
+ goto out;
+ }
+ break;
+ default:
+ error = EINVAL;
+ goto out;
+ }
+out:
+ splx(oldspl);
+ return(error); /* success */
+}
+
+/*
+ * siparam() : Configure line params
+ * called at spltty();
+ * this may sleep, does not flush, nor wait for drain, nor block writes
+ * caller must arrange this if it's important..
+ */
+int
+siparam(tp, t)
+ register struct tty *tp;
+ register struct termios *t;
+{
+ register struct si_port *pp = TP2PP(tp);
+ volatile struct si_channel *ccbp;
+ int oldspl, cflag, iflag, oflag, lflag;
+ int error = 0; /* shutup gcc */
+ int ispeed = 0; /* shutup gcc */
+ int ospeed = 0; /* shutup gcc */
+
+ DPRINT((pp, DBG_ENTRY|DBG_PARAM, "siparam(%x,%x)\n", tp, t));
+ cflag = t->c_cflag;
+ iflag = t->c_iflag;
+ oflag = t->c_oflag;
+ lflag = t->c_lflag;
+ DPRINT((pp, DBG_PARAM, "OFLAG 0x%x CFLAG 0x%x IFLAG 0x%x\n",
+ t->c_oflag, cflag, iflag));
+
+
+ /* if not hung up.. */
+ if (t->c_ospeed != 0) {
+ /* translate baud rate to firmware values */
+ ospeed = ttspeedtab(t->c_ospeed, bdrates);
+ ispeed = t->c_ispeed ?
+ ttspeedtab(t->c_ispeed, bdrates) : ospeed;
+
+ /* enforce legit baud rate */
+ if (ospeed < 0 || ispeed < 0)
+ return (EINVAL);
+ }
+
+
+ oldspl = spltty();
+
+ ccbp = pp->sp_ccb;
+ if (iflag & IGNBRK) /* Breaks */
+ ccbp->hi_break = BR_IGN;
+ else
+ ccbp->hi_break = 0;
+ if (iflag & BRKINT) /* Interrupt on break? */
+ ccbp->hi_break |= BR_INT;
+ if (iflag & PARMRK) /* Parity mark? */
+ ccbp->hi_break |= BR_PARMRK;
+ if (iflag & IGNPAR) /* Ignore chars with parity errors? */
+ ccbp->hi_break |= BR_PARIGN;
+
+ /* if not hung up.. */
+ if (t->c_ospeed != 0) {
+ /* Set I/O speeds */
+ ccbp->hi_csr = (ispeed << 4) | ospeed;
+ }
+
+ if (cflag & CSTOPB) /* Stop bits */
+ ccbp->hi_mr2 = MR2_2_STOP;
+ else
+ ccbp->hi_mr2 = MR2_1_STOP;
+ if (!(cflag & PARENB)) /* Parity */
+ ccbp->hi_mr1 = MR1_NONE;
+ else
+ ccbp->hi_mr1 = MR1_WITH;
+ if (cflag & PARODD)
+ ccbp->hi_mr1 |= MR1_ODD;
+
+ if ((cflag & CS8) == CS8) { /* 8 data bits? */
+ ccbp->hi_mr1 |= MR1_8_BITS;
+ ccbp->hi_mask = 0xFF;
+ } else if ((cflag & CS7) == CS7) { /* 7 data bits? */
+ ccbp->hi_mr1 |= MR1_7_BITS;
+ ccbp->hi_mask = 0x7F;
+ } else if ((cflag & CS6) == CS6) { /* 6 data bits? */
+ ccbp->hi_mr1 |= MR1_6_BITS;
+ ccbp->hi_mask = 0x3F;
+ } else { /* Must be 5 */
+ ccbp->hi_mr1 |= MR1_5_BITS;
+ ccbp->hi_mask = 0x1F;
+ }
+
+ if (iflag & ISTRIP)
+ ccbp->hi_mask &= 0x7F;
+
+ /* Monitor DCD etc. if a modem */
+ if (!(cflag & CLOCAL))
+ ccbp->hi_prtcl = SP_DCEN;
+ else
+ ccbp->hi_prtcl = 0;
+
+ /* XXX: the card handles all the flow control... */
+ ccbp->hi_txon = t->c_cc[VSTART];
+ ccbp->hi_txoff = t->c_cc[VSTOP];
+
+ ccbp->hi_rxon = t->c_cc[VSTART];
+ ccbp->hi_rxoff = t->c_cc[VSTOP];
+
+ if ((iflag & IXANY) && pp->sp_flags&SPF_IXANY)
+ ccbp->hi_prtcl |= SP_TANY;
+ if (iflag & IXON)
+ ccbp->hi_prtcl |= SP_TXEN;
+ if (iflag & IXOFF)
+ ccbp->hi_prtcl |= SP_RXEN;
+ if (iflag & INPCK)
+ ccbp->hi_prtcl |= SP_PAEN;
+
+ /*
+ * Enable H/W RTS/CTS handshaking. The default TA/MTA is
+ * a DCE, hence the reverse sense of RTS and CTS
+ */
+
+ /* Output - RTS must be raised before data can be sent */
+ if (cflag & CCTS_OFLOW || pp->sp_flags&SPF_CTSOFLOW)
+ ccbp->hi_mr2 |= MR2_RTSCONT;
+ /* Input - CTS is raised when port is ready to receive data */
+ if (cflag & CRTS_IFLOW || pp->sp_flags&SPF_RTSIFLOW)
+ ccbp->hi_mr1 |= MR1_CTSCONT;
+
+ /* potential sleep here */
+ if (ccbp->hi_stat == IDLE_CLOSE) /* Not yet open */
+ si_command(pp, LOPEN, SI_WAIT); /* open it */
+ else
+ si_command(pp, CONFIG, SI_WAIT); /* change params */
+
+ /* Hangup if ospeed == 0 */
+ if (t->c_ospeed == 0) {
+ (void) si_modem(pp, BIC, TIOCM_DTR|TIOCM_RTS);
+ } else {
+ /*
+ * If the previous speed was 0, may need to re-enable
+ * the modem signals
+ */
+ (void) si_modem(pp, SET, TIOCM_DTR|TIOCM_RTS);
+ }
+
+ DPRINT((pp, DBG_PARAM, "siparam, config completed ok MR1 %x MR2 %x\n",
+ ccbp->hi_mr1, ccbp->hi_mr2));
+
+ splx(oldspl);
+out:
+ return(error);
+}
+
+/*
+ * Wait for buffered TX characters to drain away.
+ * IT IS THE RESPONSIBILITY OF THE CALLER TO DISABLE/ENABLE WRITES.
+ */
+static int
+si_drainwait(pp, msg)
+ register struct si_port *pp;
+ char *msg;
+{
+ register struct tty *tp = pp->sp_tty;
+ volatile struct si_channel *ccbp = pp->sp_ccb;
+ int error, oldspl, time;
+ BYTE x;
+
+ DPRINT((pp, DBG_ENTRY|DBG_DRAIN, "si_drainwait(%x,%s)\n",
+ pp, msg));
+ error = 0;
+
+ oldspl = spltty();
+
+ /* number of pending characters in output buffer */
+ x = (int)ccbp->hi_txipos - (int)ccbp->hi_txopos;
+
+ while ( (x != 0 && (tp->t_state & TS_BUSY))
+ || (ccbp->hi_stat == IDLE_BREAK)) {
+
+ DPRINT((pp, DBG_DRAIN,
+ " x %d. t_state %x sp_state %x hi_stat %x\n",
+ x, tp->t_state, pp->sp_state, ccbp->hi_stat));
+
+ /* else waiting got chars */
+ /* guess how long */
+ time = ttspeedtab(tp->t_ospeed, chartimes);
+
+ if (time == 0 || time > x)
+ time = 1;
+ else
+ time = x/time + 1;
+
+ error = ttysleep(tp, (caddr_t)pp,
+ TTOPRI|PCATCH, msg, time);
+
+ if (error != EWOULDBLOCK) {
+ DPRINT((pp, DBG_DRAIN|DBG_FAIL,
+ "%s, wait for drain broken by signal %d\n",
+ msg, error));
+ break;
+ }
+ error = 0;
+
+ /* reload count */
+ x = (int)ccbp->hi_txipos - (int)ccbp->hi_txopos;
+ }
+ tp->t_state &= ~TS_BUSY;
+ ttwwakeup(tp);
+ splx(oldspl);
+ return(error);
+}
+
+/*
+ * Enable or Disable the writes to this channel...
+ * "state" -> enabled = 1; disabled = 0;
+ */
+static void
+si_write_enable(pp, state)
+ register struct si_port *pp;
+ int state;
+{
+ int oldspl;
+
+ oldspl = spltty();
+
+ if (state) {
+ pp->sp_state &= ~SS_BLOCKWRITE;
+ if (pp->sp_state & SS_WAITWRITE) {
+ pp->sp_state &= ~SS_WAITWRITE;
+ /* thunder away! */
+ wakeup((caddr_t)pp);
+ }
+ } else {
+ pp->sp_state |= SS_BLOCKWRITE;
+ }
+
+ splx(oldspl);
+}
+
+/*
+ * Set/Get state of modem control lines.
+ * Due to DCE-like behaviour of the adapter, some signals need translation:
+ * TIOCM_DTR DSR
+ * TIOCM_RTS CTS
+ */
+static int
+si_modem(pp, cmd, bits)
+ struct si_port *pp;
+ enum si_mctl cmd;
+ int bits;
+{
+ volatile struct si_channel *ccbp;
+ int x;
+
+ DPRINT((pp, DBG_ENTRY|DBG_MODEM, "si_modem(%x,%s,%x)\n", pp, si_mctl2str(cmd), bits));
+ ccbp = pp->sp_ccb; /* Find channel address */
+ switch (cmd) {
+ case GET:
+ x = ccbp->hi_ip;
+ bits = TIOCM_LE;
+ if (x & IP_DCD) bits |= TIOCM_CAR;
+ if (x & IP_DTR) bits |= TIOCM_DTR;
+ if (x & IP_RTS) bits |= TIOCM_RTS;
+ if (x & IP_RI) bits |= TIOCM_RI;
+ return(bits);
+ case SET:
+ ccbp->hi_op &= ~(OP_DSR|OP_CTS);
+ /* fall through */
+ case BIS:
+ x = 0;
+ if (bits & TIOCM_DTR)
+ x |= OP_DSR;
+ if (bits & TIOCM_RTS)
+ x |= OP_CTS;
+ ccbp->hi_op |= x;
+ break;
+ case BIC:
+ if (bits & TIOCM_DTR)
+ ccbp->hi_op &= ~OP_DSR;
+ if (bits & TIOCM_RTS)
+ ccbp->hi_op &= ~OP_CTS;
+ }
+ return 0;
+}
+
+/*
+ * Handle change of modem state
+ */
+static void
+si_modem_state(pp, tp, hi_ip)
+ register struct si_port *pp;
+ register struct tty *tp;
+ register int hi_ip;
+{
+ /* if a modem dev */
+ if (hi_ip & IP_DCD) {
+ if ( !(pp->sp_last_hi_ip & IP_DCD)) {
+ DPRINT((pp, DBG_INTR, "modem carr on t_line %d\n",
+ tp->t_line));
+ (void)(*linesw[tp->t_line].l_modem)(tp, 1);
+ }
+ } else {
+ if (pp->sp_last_hi_ip & IP_DCD) {
+ DPRINT((pp, DBG_INTR, "modem carr off\n"));
+ if ((*linesw[tp->t_line].l_modem)(tp, 0))
+ (void) si_modem(pp, SET, 0);
+ }
+ }
+ pp->sp_last_hi_ip = hi_ip;
+
+}
+
+/*
+ * Poller to catch missed interrupts.
+ */
+#ifdef POLL
+void
+si_poll(void *nothing)
+{
+ register struct si_softc *sc;
+ register int i;
+ volatile struct si_reg *regp;
+ int lost, oldspl;
+
+ DPRINT((0, DBG_POLL, "si_poll()\n"));
+ if (in_intr)
+ goto out;
+ oldspl = spltty();
+ lost = 0;
+ for (i=0; i<NSI; i++) {
+ sc = &si_softc[i];
+ if (sc->sc_type == NULL)
+ continue;
+ regp = (struct si_reg *)sc->sc_maddr;
+ /*
+ * See if there has been a pending interrupt for 2 seconds
+ * or so. The test <int_scounter >= 200) won't correspond
+ * to 2 seconds if int_count gets changed.
+ */
+ if (regp->int_pending != 0) {
+ if (regp->int_scounter >= 200 &&
+ regp->initstat == 1) {
+ printf("SLXOS si%d: lost intr\n", i);
+ lost++;
+ }
+ } else {
+ regp->int_scounter = 0;
+ }
+
+ }
+ if (lost)
+ siintr(-1); /* call intr with fake vector */
+ splx(oldspl);
+
+out:
+ timeout(si_poll, (caddr_t)0L, POLL_INTERVAL);
+}
+#endif /* ifdef POLL */
+
+/*
+ * The interrupt handler polls ALL ports on ALL adapters each time
+ * it is called.
+ */
+
+static char rxbuf[SLXOS_BUFFERSIZE]; /* input staging area */
+
+int
+siintr(int bdnum)
+{
+ struct si_softc *Isc = NULL;
+ register struct si_softc *sc;
+
+ register struct si_port *pp;
+ volatile struct si_channel *ccbp;
+ register struct tty *tp;
+ volatile caddr_t maddr;
+ BYTE op, ip, cc;
+ int x, card, port, n;
+ volatile BYTE *z;
+ BYTE c;
+ static int in_poll = 0;
+
+ if (bdnum < 0) {
+ Isc = NULL;
+ in_poll = 1;
+ } else {
+ Isc = &si_softc[bdnum];
+ }
+
+ DPRINT((0, (Isc == 0)?DBG_POLL:DBG_INTR, "siintr(0x%x)\n", Isc));
+ if (in_intr != 0) {
+ if (Isc == NULL) /* should never happen */
+ return(0);
+ printf("SLXOS si%d: Warning interrupt handler re-entered\n",
+ Isc==0 ? -1 : Isc->sc_dev.dv_unit);
+ return(0);
+ }
+ in_intr = 1;
+
+ /*
+ * When we get an int we poll all the channels and do ALL pending
+ * work, not just the first one we find. This allows all cards to
+ * share the same vector.
+ */
+ for (card=0; card < NSI; card++) {
+ sc = &si_softc[card];
+ if (sc->sc_type == NULL)
+ continue;
+ switch(sc->sc_type) {
+ case SIHOST :
+ maddr = sc->sc_maddr;
+ ((volatile struct si_reg *)maddr)->int_pending = 0;
+ /* flag nothing pending */
+ *(maddr+SIINTCL) = 0x00; /* Set IRQ clear */
+ *(maddr+SIINTCL_CL) = 0x00; /* Clear IRQ clear */
+ break;
+ case SIHOST2:
+ maddr = sc->sc_maddr;
+ ((volatile struct si_reg *)maddr)->int_pending = 0;
+ *(maddr+SIPLIRQCLR) = 0x00;
+ *(maddr+SIPLIRQCLR) = 0x10;
+ break;
+ case SIEISA:
+#if NEISA > 0
+ maddr = sc->sc_maddr;
+ ((volatile struct si_reg *)maddr)->int_pending = 0;
+ (void)inb(sc->sc_eisa_iobase+3);
+ break;
+#endif /* fall through if not EISA kernel */
+ case SIEMPTY:
+ default:
+ continue;
+ }
+ ((volatile struct si_reg *)maddr)->int_scounter = 0;
+
+ for (pp = sc->sc_ports, port=0;
+ port < sc->sc_nport;
+ pp++, port++) {
+ ccbp = pp->sp_ccb;
+ tp = pp->sp_tty;
+
+ /*
+ * See if a command has completed ?
+ */
+ if (ccbp->hi_stat != pp->sp_pend) {
+ DPRINT((pp, DBG_INTR,
+ "siintr hi_stat = 0x%x, pend = %d\n",
+ ccbp->hi_stat, pp->sp_pend));
+ switch(pp->sp_pend) {
+ case LOPEN:
+ case MPEND:
+ case MOPEN:
+ case CONFIG:
+ pp->sp_pend = ccbp->hi_stat;
+ /* sleeping in si_command */
+ wakeup(&pp->sp_state);
+ break;
+ default:
+ pp->sp_pend = ccbp->hi_stat;
+ }
+ }
+
+ /*
+ * Continue on if it's closed
+ */
+ if (ccbp->hi_stat == IDLE_CLOSE) {
+ continue;
+ }
+
+ /*
+ * Do modem state change if not a local device
+ */
+ si_modem_state(pp, tp, ccbp->hi_ip);
+
+ /*
+ * Do break processing
+ */
+ if (ccbp->hi_state & ST_BREAK) {
+ if (tp->t_state & TS_CONNECTED) {
+ (*linesw[tp->t_line].l_rint)(TTY_BI, tp);
+ }
+ ccbp->hi_state &= ~ST_BREAK; /* A Bit iffy this */
+ DPRINT((pp, DBG_INTR, "si_intr break\n"));
+ }
+
+ /*
+ * Do RX stuff - if not open then
+ * dump any characters.
+ */
+
+ if ((tp->t_state & TS_CONNECTED) == 0) {
+ ccbp->hi_rxopos = ccbp->hi_rxipos;
+ } else {
+ while ((c = ccbp->hi_rxipos - ccbp->hi_rxopos) != 0) {
+
+ op = ccbp->hi_rxopos;
+ ip = ccbp->hi_rxipos;
+ n = c & 0xff;
+
+ DPRINT((pp, DBG_INTR,
+ "n = %d, op = %d, ip = %d\n",
+ n, op, ip));
+ if (n <= SLXOS_BUFFERSIZE - op) {
+
+ DPRINT((pp, DBG_INTR,
+ "\tsingle copy\n"));
+ z = ccbp->hi_rxbuf + op;
+ bcopy((caddr_t)z, rxbuf, n);
+
+ op += n;
+ } else {
+ x = SLXOS_BUFFERSIZE - op;
+
+ DPRINT((pp, DBG_INTR, "\tdouble part 1 %d\n", x));
+ z = ccbp->hi_rxbuf + op;
+ bcopy((caddr_t)z, rxbuf, x);
+
+ DPRINT((pp, DBG_INTR, "\tdouble part 2 %d\n", n-x));
+ z = ccbp->hi_rxbuf;
+ bcopy((caddr_t)z, rxbuf+x, n-x);
+
+ op += n;
+ }
+
+ ccbp->hi_rxopos = op;
+
+ DPRINT((pp, DBG_INTR,
+ "n = %d, op = %d, ip = %d\n",
+ n, op, ip));
+
+ /*
+ * at this point...
+ * n = number of chars placed in rxbuf
+ */
+ /*
+ * Avoid the grotesquely inefficient lineswitch routine
+ * (ttyinput) in "raw" mode. It usually takes about 450
+ * instructions (that's without canonical processing or echo!).
+ * slinput is reasonably fast (usually 40 instructions plus
+ * call overhead).
+ */
+ if (tp->t_state & TS_CAN_BYPASS_L_RINT) {
+
+ /* block if the driver supports it */
+ if (tp->t_rawq.c_cc + n >= SI_I_HIGH_WATER
+ && (tp->t_cflag & CRTS_IFLOW
+ || tp->t_iflag & IXOFF)
+ && !(tp->t_state & TS_TBLOCK))
+ ttyblock(tp);
+
+ tk_nin += n;
+ tk_rawcc += n;
+ tp->t_rawcc += n;
+
+ b_to_q((char *)rxbuf, n, &tp->t_rawq);
+ ttwakeup(tp);
+ if (tp->t_state & TS_TTSTOP
+ && (tp->t_iflag & IXANY
+ || tp->t_cc[VSTART] == tp->t_cc[VSTOP])) {
+ tp->t_state &= ~TS_TTSTOP;
+ tp->t_lflag &= ~FLUSHO;
+ si_start(tp);
+ }
+ } else {
+ for(x = 0; x < n; x++) {
+ (*linesw[tp->t_line].l_rint)(
+ rxbuf[x], tp);
+ }
+ }
+
+ } /* end of RX while */
+ } /* end TS_CONNECTED */
+
+ /*
+ * Do TX stuff
+ */
+ (*linesw[tp->t_line].l_start)(tp);
+
+ } /* end of for (all ports on this controller) */
+ } /* end of for (all controllers) */
+
+ in_poll = in_intr = 0;
+ DPRINT((0, (Isc==0)?DBG_POLL:DBG_INTR, "end of siintr()\n"));
+ return(1); /* say it was expected */
+}
+
+/*
+ * Nudge the transmitter...
+ */
+static void
+si_start(tp)
+ register struct tty *tp;
+{
+ struct si_port *pp;
+ volatile struct si_channel *ccbp;
+ register struct clist *qp;
+ register char *dptr;
+ BYTE ipos;
+ int nchar;
+ int oldspl, count, n, amount, buffer_full;
+ int do_exitproc;
+
+ oldspl = spltty();
+
+ qp = &tp->t_outq;
+ pp = TP2PP(tp);
+
+ DPRINT((pp, DBG_ENTRY|DBG_START,
+ "si_start(%x) t_state %x sp_state %x t_outq.c_cc %d\n",
+ tp, tp->t_state, pp->sp_state, qp->c_cc));
+
+ if (tp->t_state & (TS_TIMEOUT|TS_TTSTOP))
+ goto out;
+
+ do_exitproc = 0;
+ buffer_full = 0;
+ ccbp = pp->sp_ccb;
+
+ /*
+ * Handle the case where ttywait() is called on process exit
+ * this may be BSDI specific, I dont know...
+ */
+ if (tp->t_session != NULL && tp->t_session->s_leader != NULL &&
+ (tp->t_session->s_leader->p_flag & P_WEXIT)) {
+ do_exitproc++;
+ }
+
+ count = (int)ccbp->hi_txipos - (int)ccbp->hi_txopos;
+ DPRINT((pp, DBG_START, "count %d\n", (BYTE)count));
+
+ dptr = (char *)ccbp->hi_txbuf; /* data buffer */
+
+ while ((nchar = qp->c_cc) > 0) {
+ if ((BYTE)count >= 255) {
+ buffer_full++;
+ break;
+ }
+ amount = min(nchar, (255 - (BYTE)count));
+ ipos = (unsigned int)ccbp->hi_txipos;
+ /* will it fit in one lump? */
+ if ((SLXOS_BUFFERSIZE - ipos) >= amount) {
+ n = q_to_b(&tp->t_outq,
+ (char *)&ccbp->hi_txbuf[ipos], amount);
+ } else {
+ n = q_to_b(&tp->t_outq,
+ (char *)&ccbp->hi_txbuf[ipos],
+ SLXOS_BUFFERSIZE-ipos);
+ if (n == SLXOS_BUFFERSIZE-ipos) {
+ n += q_to_b(&tp->t_outq,
+ (char *)&ccbp->hi_txbuf[0],
+ amount - (SLXOS_BUFFERSIZE-ipos));
+ }
+ }
+ ccbp->hi_txipos += n;
+ count = (int)ccbp->hi_txipos - (int)ccbp->hi_txopos;
+ }
+
+ if (count != 0 && nchar == 0) {
+ tp->t_state |= TS_BUSY;
+ } else {
+ tp->t_state &= ~TS_BUSY;
+ }
+
+ /* wakeup time? */
+ ttwwakeup(tp);
+
+ DPRINT((pp, DBG_START, "count %d, nchar %d, tp->t_state 0x%x\n",
+ (BYTE)count, nchar, tp->t_state));
+
+ if ((tp->t_state & TS_BUSY) || do_exitproc)
+ {
+ int time;
+
+ if (do_exitproc != 0) {
+ time = hz / 10;
+ } else {
+ time = ttspeedtab(tp->t_ospeed, chartimes);
+
+ if (time > 0) {
+ if (time < nchar)
+ time = nchar / time;
+ else
+ time = 2;
+ } else {
+ printf("SLXOS si%d: bad char time value!!\n",
+ SI_CARD(tp->t_dev));
+ goto out;
+ }
+ }
+
+ if ((pp->sp_state & (SS_LSTART|SS_INLSTART)) == SS_LSTART) {
+ untimeout((timeout_func_t)si_lstart, (caddr_t)pp);
+ } else {
+ pp->sp_state |= SS_LSTART;
+ }
+ DPRINT((pp, DBG_START, "arming lstart, time=%d\n", time));
+ timeout((timeout_func_t)si_lstart, (caddr_t)pp, time);
+ }
+
+out:
+ splx(oldspl);
+ DPRINT((pp, DBG_EXIT|DBG_START, "leave si_start()\n"));
+}
+
+/*
+ * Note: called at splsoftclock from the timeout code
+ * This has to deal with two things... cause wakeups while waiting for
+ * tty drains on last process exit, and call l_start at about the right
+ * time for protocols like ppp.
+ */
+static void
+si_lstart(pp)
+ register struct si_port *pp;
+{
+ register struct tty *tp;
+ int oldspl;
+
+ DPRINT((pp, DBG_ENTRY|DBG_LSTART, "si_lstart(%x) sp_state %x\n",
+ pp, pp->sp_state));
+
+ oldspl = spltty();
+
+ if ((pp->sp_state & SS_OPEN) == 0 || (pp->sp_state & SS_LSTART) == 0) {
+ splx(oldspl);
+ return;
+ }
+ pp->sp_state &= ~SS_LSTART;
+ pp->sp_state |= SS_INLSTART;
+
+ tp = pp->sp_tty;
+
+ /* deal with the process exit case */
+ ttwwakeup(tp);
+
+ /* nudge protocols */
+ (*linesw[tp->t_line].l_start)(tp);
+
+ pp->sp_state &= ~SS_INLSTART;
+ splx(oldspl);
+}
+
+/*
+ * Stop output on a line. called at spltty();
+ */
+void
+sistop(tp, rw)
+ register struct tty *tp;
+ int rw;
+{
+ volatile struct si_channel *ccbp;
+ struct si_port *pp;
+
+ pp = TP2PP(tp);
+ ccbp = pp->sp_ccb;
+
+ DPRINT((TP2PP(tp), DBG_ENTRY|DBG_STOP, "sistop(%x,%x)\n", tp, rw));
+
+ /* XXX: must check (rw & FWRITE | FREAD) etc flushing... */
+ if (rw & FWRITE) {
+ /* what level are we meant to be flushing anyway? */
+ if (tp->t_state & TS_BUSY) {
+ si_command(TP2PP(tp), WFLUSH, SI_NOWAIT);
+ tp->t_state &= ~TS_BUSY;
+ ttwwakeup(tp); /* Bruce???? */
+ }
+ }
+#if 0 /* this doesn't work right yet.. */
+ if (rw & FREAD) {
+ ccbp->hi_rxopos = ccbp->hi_rxipos;
+ }
+#endif
+}
+
+/*
+ * Issue a command to the Z280 host card CPU.
+ */
+
+static void
+si_command(pp, cmd, waitflag)
+ struct si_port *pp; /* port control block (local) */
+ int cmd;
+ int waitflag;
+{
+ int oldspl;
+ volatile struct si_channel *ccbp = pp->sp_ccb;
+ int x;
+
+ DPRINT((pp, DBG_ENTRY|DBG_PARAM, "si_command(%x,%x,%d): hi_stat 0x%x\n",
+ pp, cmd, waitflag, ccbp->hi_stat));
+
+ oldspl = spltty(); /* Keep others out */
+
+ /* wait until it's finished what it was doing.. */
+ while((x = ccbp->hi_stat) != IDLE_OPEN &&
+ x != IDLE_CLOSE &&
+ x != cmd) {
+ if (in_intr) { /* Prevent sleep in intr */
+ DPRINT((pp, DBG_PARAM,
+ "cmd intr collision - completing %d\trequested %d\n",
+ x, cmd));
+ splx(oldspl);
+ return;
+ } else if (ttysleep(pp->sp_tty, (caddr_t)&pp->sp_state, TTIPRI|PCATCH,
+ "sicmd1", 1)) {
+ splx(oldspl);
+ return;
+ }
+ }
+ /* it should now be in IDLE_OPEN, IDLE_CLOSE, or "cmd" */
+
+ /* if there was a pending command, cause a state-change wakeup */
+ if (pp->sp_pend != IDLE_OPEN) {
+ switch(pp->sp_pend) {
+ case LOPEN:
+ case MPEND:
+ case MOPEN:
+ case CONFIG:
+ wakeup(&pp->sp_state);
+ break;
+ default:
+ break;
+ }
+ }
+
+ pp->sp_pend = cmd; /* New command pending */
+ ccbp->hi_stat = cmd; /* Post it */
+
+ if (waitflag) {
+ if (in_intr) { /* If in interrupt handler */
+ DPRINT((pp, DBG_PARAM,
+ "attempt to sleep in si_intr - cmd req %d\n",
+ cmd));
+ splx(oldspl);
+ return;
+ } else while(ccbp->hi_stat != IDLE_OPEN) {
+ if (ttysleep(pp->sp_tty, (caddr_t)&pp->sp_state, TTIPRI|PCATCH,
+ "sicmd2", 0))
+ break;
+ }
+ }
+ splx(oldspl);
+}
+
+static void
+si_disc_optim(tp, t, pp)
+ struct tty *tp;
+ struct termios *t;
+ struct si_port *pp;
+{
+ /*
+ * XXX can skip a lot more cases if Smarts. Maybe
+ * (IGNCR | ISTRIP | IXON) in c_iflag. But perhaps we
+ * shouldn't skip if (TS_CNTTB | TS_LNCH) is set in t_state.
+ */
+ if (!(t->c_iflag & (ICRNL | IGNCR | IMAXBEL | INLCR | ISTRIP | IXON))
+ && (!(t->c_iflag & BRKINT) || (t->c_iflag & IGNBRK))
+ && (!(t->c_iflag & PARMRK)
+ || (t->c_iflag & (IGNPAR | IGNBRK)) == (IGNPAR | IGNBRK))
+ && !(t->c_lflag & (ECHO | ICANON | IEXTEN | ISIG | PENDIN))
+ && linesw[tp->t_line].l_rint == ttyinput)
+ tp->t_state |= TS_CAN_BYPASS_L_RINT;
+ else
+ tp->t_state &= ~TS_CAN_BYPASS_L_RINT;
+ /*
+ * Prepare to reduce input latency for packet
+ * discplines with a end of packet character.
+ */
+ if (tp->t_line == SLIPDISC)
+ pp->sp_hotchar = 0xc0;
+ else if (tp->t_line == PPPDISC)
+ pp->sp_hotchar = 0x7e;
+ else
+ pp->sp_hotchar = 0;
+}
+
+
+#ifdef SI_DEBUG
+static void
+si_dprintf(pp, flags, str, a1, a2, a3, a4, a5, a6)
+ struct si_port *pp;
+ int flags;
+ char *str;
+ int a1, a2, a3, a4, a5, a6;
+{
+ if ((pp == NULL && (si_debug&flags)) ||
+ (pp != NULL && ((pp->sp_debug&flags) || (si_debug&flags)))) {
+ if (pp != NULL)
+ printf("SLXOS %ci%d(%d): ", 's',
+ SI_CARD(pp->sp_tty->t_dev),
+ SI_PORT(pp->sp_tty->t_dev));
+ printf(str, a1, a2, a3, a4, a5, a6);
+ }
+}
+
+static char *
+si_mctl2str(cmd)
+ enum si_mctl cmd;
+{
+ switch (cmd) {
+ case GET: return("GET");
+ case SET: return("SET");
+ case BIS: return("BIS");
+ case BIC: return("BIC");
+ }
+ return("BAD");
+}
+#endif
diff --git a/sys/i386/isa/sireg.h b/sys/i386/isa/sireg.h
new file mode 100644
index 0000000..6a8dd4f
--- /dev/null
+++ b/sys/i386/isa/sireg.h
@@ -0,0 +1,69 @@
+/*
+ * Device driver for Specialix range (SLXOS) of serial line multiplexors.
+ * 'C' definitions for Specialix serial multiplex driver.
+ *
+ * Copyright (C) 1990, 1992 Specialix International,
+ * Copyright (C) 1993, Andy Rutter <andy@acronym.co.uk>
+ * Copyright (C) 1995, Peter Wemm <peter@haywire.dialix.com>
+ *
+ * Derived from: SunOS 4.x version
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notices, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notices, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ * must display the following acknowledgement:
+ * This product includes software developed by Andy Rutter of
+ * Advanced Methods and Tools Ltd. based on original information
+ * from Specialix International.
+ * 4. Neither the name of Advanced Methods and Tools, nor Specialix
+ * International may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
+ * NO EVENT SHALL THE AUTHORS BE LIABLE.
+ *
+ * $Id$
+ */
+
+/*
+ * Hardware parameters which should be changed at your peril!
+ */
+
+/* Base and mask for SI Host 2.x (SIHOST2) */
+#define SIPLSIG 0x7FF8 /* Start of control space */
+#define SIPLCNTL 0x7FF8 /* Ditto */
+#define SIPLRESET SIPLCNTL /* 0 = reset */
+#define SIPLIRQ11 (SIPLCNTL+1) /* 0 = mask irq 11 */
+#define SIPLIRQ12 (SIPLCNTL+2) /* 0 = mask irq 12 */
+#define SIPLIRQ15 (SIPLCNTL+3) /* 0 = mask irq 15 */
+#define SIPLIRQSET (SIPLCNTL+4) /* 0 = interrupt host */
+#define SIPLIRQCLR (SIPLCNTL+5) /* 0 = clear irq */
+
+/* SI Host 1.x */
+#define SIRAM 0x0000 /* Ram Starts here */
+#define SIRESET 0x8000 /* Set reset */
+#define SIRESET_CL 0xc000 /* Clear reset */
+#define SIWAIT 0x9000 /* Set wait */
+#define SIWAIT_CL 0xd000 /* Set wait */
+#define SIINTCL 0xA000 /* Clear host int */
+#define SIINTCL_CL 0xE000 /* Clear host int */
+
+/*
+ * MEMSIZE is the total shared mem region
+ * RAMSIZE is value to use when probing
+ */
+#define SIHOST_MEMSIZE 0x10000
+#define SIHOST_RAMSIZE 0x8000
+#define SIHOST2_MEMSIZE 0x8000
+#define SIHOST2_RAMSIZE 0x7ff7
+#define SIEISA_MEMSIZE 0x10000
+#define SEISAT_RAMSIZE 0x10000
+
OpenPOWER on IntegriCloud