Home | History | Annotate | Line # | Download | only in dec
dz.c revision 1.29
      1 /*	$NetBSD: dz.c,v 1.29 2007/10/08 16:52:49 ad Exp $	*/
      2 /*
      3  * Copyright (c) 1992, 1993
      4  *	The Regents of the University of California.  All rights reserved.
      5  *
      6  * This code is derived from software contributed to Berkeley by
      7  * Ralph Campbell and Rick Macklem.
      8  *
      9  * Redistribution and use in source and binary forms, with or without
     10  * modification, are permitted provided that the following conditions
     11  * are met:
     12  * 1. Redistributions of source code must retain the above copyright
     13  *    notice, this list of conditions and the following disclaimer.
     14  * 2. Redistributions in binary form must reproduce the above copyright
     15  *    notice, this list of conditions and the following disclaimer in the
     16  *    documentation and/or other materials provided with the distribution.
     17  * 3. Neither the name of the University nor the names of its contributors
     18  *    may be used to endorse or promote products derived from this software
     19  *    without specific prior written permission.
     20  *
     21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     31  * SUCH DAMAGE.
     32  */
     33 
     34 /*
     35  * Copyright (c) 1996  Ken C. Wellsch.  All rights reserved.
     36  *
     37  * This code is derived from software contributed to Berkeley by
     38  * Ralph Campbell and Rick Macklem.
     39  *
     40  * Redistribution and use in source and binary forms, with or without
     41  * modification, are permitted provided that the following conditions
     42  * are met:
     43  * 1. Redistributions of source code must retain the above copyright
     44  *    notice, this list of conditions and the following disclaimer.
     45  * 2. Redistributions in binary form must reproduce the above copyright
     46  *    notice, this list of conditions and the following disclaimer in the
     47  *    documentation and/or other materials provided with the distribution.
     48  * 3. All advertising materials mentioning features or use of this software
     49  *    must display the following acknowledgement:
     50  *	This product includes software developed by the University of
     51  *	California, Berkeley and its contributors.
     52  * 4. Neither the name of the University nor the names of its contributors
     53  *    may be used to endorse or promote products derived from this software
     54  *    without specific prior written permission.
     55  *
     56  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     57  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     58  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     59  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     60  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     61  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     62  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     63  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     64  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     65  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     66  * SUCH DAMAGE.
     67  */
     68 
     69 #include <sys/cdefs.h>
     70 __KERNEL_RCSID(0, "$NetBSD: dz.c,v 1.29 2007/10/08 16:52:49 ad Exp $");
     71 
     72 #include <sys/param.h>
     73 #include <sys/systm.h>
     74 #include <sys/callout.h>
     75 #include <sys/ioctl.h>
     76 #include <sys/tty.h>
     77 #include <sys/proc.h>
     78 #include <sys/buf.h>
     79 #include <sys/conf.h>
     80 #include <sys/file.h>
     81 #include <sys/uio.h>
     82 #include <sys/kernel.h>
     83 #include <sys/syslog.h>
     84 #include <sys/device.h>
     85 #include <sys/kauth.h>
     86 
     87 #include <machine/bus.h>
     88 
     89 #include <dev/dec/dzreg.h>
     90 #include <dev/dec/dzvar.h>
     91 
     92 #include <dev/cons.h>
     93 
     94 #ifdef __mips__
     95 #define	DZ_DELAY(x)	DELAY(x)
     96 #define control		__attribute ((noinline))
     97 #else	/* presumably vax */
     98 #define	DZ_DELAY(x)	/* nothing */
     99 #define	control		inline
    100 #endif
    101 
    102 static control uint
    103 dz_read1(struct dz_softc *sc, u_int off)
    104 {
    105 	u_int rv;
    106 
    107 	rv = bus_space_read_1(sc->sc_iot, sc->sc_ioh, off);
    108 	DZ_DELAY(1);
    109 	return rv;
    110 }
    111 
    112 static control u_int
    113 dz_read2(struct dz_softc *sc, u_int off)
    114 {
    115 	u_int rv;
    116 
    117 	rv = bus_space_read_2(sc->sc_iot, sc->sc_ioh, off);
    118 	DZ_DELAY(1);
    119 	return rv;
    120 }
    121 
    122 static control void
    123 dz_write1(struct dz_softc *sc, u_int off, u_int val)
    124 {
    125 
    126 	bus_space_write_1(sc->sc_iot, sc->sc_ioh, off, val);
    127 	bus_space_barrier(sc->sc_iot, sc->sc_ioh, sc->sc_dr.dr_firstreg,
    128 	    sc->sc_dr.dr_winsize, BUS_SPACE_BARRIER_WRITE |
    129 	    BUS_SPACE_BARRIER_READ);
    130 	DZ_DELAY(10);
    131 }
    132 
    133 static control void
    134 dz_write2(struct dz_softc *sc, u_int off, u_int val)
    135 {
    136 
    137 	bus_space_write_2(sc->sc_iot, sc->sc_ioh, off, val);
    138 	bus_space_barrier(sc->sc_iot, sc->sc_ioh, sc->sc_dr.dr_firstreg,
    139 	    sc->sc_dr.dr_winsize, BUS_SPACE_BARRIER_WRITE |
    140 	    BUS_SPACE_BARRIER_READ);
    141 	DZ_DELAY(10);
    142 }
    143 
    144 #include "ioconf.h"
    145 
    146 /* Flags used to monitor modem bits, make them understood outside driver */
    147 
    148 #define DML_DTR		TIOCM_DTR
    149 #define DML_DCD		TIOCM_CD
    150 #define DML_RI		TIOCM_RI
    151 #define DML_BRK		0100000		/* no equivalent, we will mask */
    152 
    153 static const struct speedtab dzspeedtab[] =
    154 {
    155   {       0,	0		},
    156   {      50,	DZ_LPR_B50	},
    157   {      75,	DZ_LPR_B75	},
    158   {     110,	DZ_LPR_B110	},
    159   {     134,	DZ_LPR_B134	},
    160   {     150,	DZ_LPR_B150	},
    161   {     300,	DZ_LPR_B300	},
    162   {     600,	DZ_LPR_B600	},
    163   {    1200,	DZ_LPR_B1200	},
    164   {    1800,	DZ_LPR_B1800	},
    165   {    2000,	DZ_LPR_B2000	},
    166   {    2400,	DZ_LPR_B2400	},
    167   {    3600,	DZ_LPR_B3600	},
    168   {    4800,	DZ_LPR_B4800	},
    169   {    7200,	DZ_LPR_B7200	},
    170   {    9600,	DZ_LPR_B9600	},
    171   {   19200,	DZ_LPR_B19200	},
    172   {      -1,	-1		}
    173 };
    174 
    175 static void	dzstart(struct tty *);
    176 static int	dzparam(struct tty *, struct termios *);
    177 static unsigned	dzmctl(struct dz_softc *, int, int, int);
    178 static void	dzscan(void *);
    179 
    180 dev_type_open(dzopen);
    181 dev_type_close(dzclose);
    182 dev_type_read(dzread);
    183 dev_type_write(dzwrite);
    184 dev_type_ioctl(dzioctl);
    185 dev_type_stop(dzstop);
    186 dev_type_tty(dztty);
    187 dev_type_poll(dzpoll);
    188 
    189 const struct cdevsw dz_cdevsw = {
    190 	dzopen, dzclose, dzread, dzwrite, dzioctl,
    191 	dzstop, dztty, dzpoll, nommap, ttykqfilter, D_TTY
    192 };
    193 
    194 /*
    195  * The DZ series doesn't interrupt on carrier transitions,
    196  * so we have to use a timer to watch it.
    197  */
    198 int	dz_timer;	/* true if timer started */
    199 struct callout dzscan_ch;
    200 static struct cnm_state dz_cnm_state;
    201 
    202 void
    203 dzattach(struct dz_softc *sc, struct evcnt *parent_evcnt, int consline)
    204 {
    205 	int n;
    206 
    207 	sc->sc_rxint = sc->sc_brk = 0;
    208 	sc->sc_consline = consline;
    209 
    210 	sc->sc_dr.dr_tcrw = sc->sc_dr.dr_tcr;
    211 	dz_write2(sc, sc->sc_dr.dr_csr, DZ_CSR_MSE | DZ_CSR_RXIE | DZ_CSR_TXIE);
    212 	dz_write1(sc, sc->sc_dr.dr_dtr, 0);
    213 	dz_write1(sc, sc->sc_dr.dr_break, 0);
    214 	DELAY(10000);
    215 
    216 	/* Initialize our softc structure. Should be done in open? */
    217 
    218 	for (n = 0; n < sc->sc_type; n++) {
    219 		sc->sc_dz[n].dz_sc = sc;
    220 		sc->sc_dz[n].dz_line = n;
    221 		sc->sc_dz[n].dz_tty = ttymalloc();
    222 	}
    223 
    224 	evcnt_attach_dynamic(&sc->sc_rintrcnt, EVCNT_TYPE_INTR, parent_evcnt,
    225 	    sc->sc_dev.dv_xname, "rintr");
    226 	evcnt_attach_dynamic(&sc->sc_tintrcnt, EVCNT_TYPE_INTR, parent_evcnt,
    227 	    sc->sc_dev.dv_xname, "tintr");
    228 
    229 	/* Console magic keys */
    230 	cn_init_magic(&dz_cnm_state);
    231 	cn_set_magic("\047\001"); /* default magic is BREAK */
    232 				  /* VAX will change it in MD code */
    233 
    234 	/* Alas no interrupt on modem bit changes, so we manually scan */
    235 	if (dz_timer == 0) {
    236 		dz_timer = 1;
    237 		callout_init(&dzscan_ch, 0);
    238 		callout_reset(&dzscan_ch, hz, dzscan, NULL);
    239 	}
    240 	printf("\n");
    241 }
    242 
    243 /* Receiver Interrupt */
    244 
    245 void
    246 dzrint(void *arg)
    247 {
    248 	struct dz_softc *sc = arg;
    249 	struct tty *tp;
    250 	int cc, mcc, line;
    251 	unsigned c;
    252 	int overrun = 0;
    253 
    254 	sc->sc_rxint++;
    255 
    256 	while ((c = dz_read2(sc, sc->sc_dr.dr_rbuf)) & DZ_RBUF_DATA_VALID) {
    257 		cc = c & 0xFF;
    258 		line = DZ_PORT(c>>8);
    259 		tp = sc->sc_dz[line].dz_tty;
    260 
    261 		/* Must be caught early */
    262 		if (sc->sc_dz[line].dz_catch &&
    263 		    (*sc->sc_dz[line].dz_catch)(sc->sc_dz[line].dz_private, cc))
    264 			continue;
    265 
    266 		if ((c & (DZ_RBUF_FRAMING_ERR | 0xff)) == DZ_RBUF_FRAMING_ERR)
    267 			mcc = CNC_BREAK;
    268 		else
    269 			mcc = cc;
    270 
    271 		cn_check_magic(tp->t_dev, mcc, dz_cnm_state);
    272 
    273 		if (!(tp->t_state & TS_ISOPEN)) {
    274 			wakeup((void *)&tp->t_rawq);
    275 			continue;
    276 		}
    277 
    278 		if ((c & DZ_RBUF_OVERRUN_ERR) && overrun == 0) {
    279 			log(LOG_WARNING, "%s: silo overflow, line %d\n",
    280 			    sc->sc_dev.dv_xname, line);
    281 			overrun = 1;
    282 		}
    283 
    284 		if (c & DZ_RBUF_FRAMING_ERR)
    285 			cc |= TTY_FE;
    286 		if (c & DZ_RBUF_PARITY_ERR)
    287 			cc |= TTY_PE;
    288 
    289 		(*tp->t_linesw->l_rint)(cc, tp);
    290 	}
    291 }
    292 
    293 /* Transmitter Interrupt */
    294 
    295 void
    296 dzxint(void *arg)
    297 {
    298 	struct dz_softc *sc = arg;
    299 	struct tty *tp;
    300 	struct clist *cl;
    301 	int line, ch, csr;
    302 	u_char tcr;
    303 
    304 	/*
    305 	 * Switch to POLLED mode.
    306 	 *   Some simple measurements indicated that even on
    307 	 *  one port, by freeing the scanner in the controller
    308 	 *  by either providing a character or turning off
    309 	 *  the port when output is complete, the transmitter
    310 	 *  was ready to accept more output when polled again.
    311 	 *   With just two ports running the game "worms,"
    312 	 *  almost every interrupt serviced both transmitters!
    313 	 *   Each UART is double buffered, so if the scanner
    314 	 *  is quick enough and timing works out, we can even
    315 	 *  feed the same port twice.
    316 	 *
    317 	 * Ragge 980517:
    318 	 * Do not need to turn off interrupts, already at interrupt level.
    319 	 * Remove the pdma stuff; no great need of it right now.
    320 	 */
    321 
    322 	for (;;) {
    323 		csr = dz_read2(sc, sc->sc_dr.dr_csr);
    324 		if ((csr & DZ_CSR_TX_READY) == 0)
    325 			break;
    326 
    327 		line = DZ_PORT(csr >> 8);
    328 		tp = sc->sc_dz[line].dz_tty;
    329 		cl = &tp->t_outq;
    330 		tp->t_state &= ~TS_BUSY;
    331 
    332 		/* Just send out a char if we have one */
    333 		/* As long as we can fill the chip buffer, we just loop here */
    334 		if (cl->c_cc) {
    335 			tp->t_state |= TS_BUSY;
    336 			ch = getc(cl);
    337 			dz_write1(sc, sc->sc_dr.dr_tbuf, ch);
    338 			continue;
    339 		}
    340 
    341 		/* Nothing to send; clear the scan bit */
    342 		/* Clear xmit scanner bit; dzstart may set it again */
    343 		tcr = dz_read2(sc, sc->sc_dr.dr_tcrw);
    344 		tcr &= 255;
    345 		tcr &= ~(1 << line);
    346 		dz_write1(sc, sc->sc_dr.dr_tcr, tcr);
    347 		if (sc->sc_dz[line].dz_catch)
    348 			continue;
    349 
    350 		if (tp->t_state & TS_FLUSH)
    351 			tp->t_state &= ~TS_FLUSH;
    352 		else
    353 			ndflush (&tp->t_outq, cl->c_cc);
    354 
    355 		(*tp->t_linesw->l_start)(tp);
    356 	}
    357 }
    358 
    359 int
    360 dzopen(dev_t dev, int flag, int mode, struct lwp *l)
    361 {
    362 	struct tty *tp;
    363 	int unit, line;
    364 	struct	dz_softc *sc;
    365 	int error = 0;
    366 	int s;
    367 
    368 	unit = DZ_I2C(minor(dev));
    369 	line = DZ_PORT(minor(dev));
    370 	if (unit >= dz_cd.cd_ndevs ||  dz_cd.cd_devs[unit] == NULL)
    371 		return (ENXIO);
    372 
    373 	sc = dz_cd.cd_devs[unit];
    374 
    375 	if (line >= sc->sc_type)
    376 		return ENXIO;
    377 
    378 	/* if some other device is using the line, it's busy */
    379 	if (sc->sc_dz[line].dz_catch)
    380 		return EBUSY;
    381 
    382 	tp = sc->sc_dz[line].dz_tty;
    383 	if (tp == NULL)
    384 		return (ENODEV);
    385 	tp->t_oproc   = dzstart;
    386 	tp->t_param   = dzparam;
    387 	tp->t_dev = dev;
    388 
    389 	if (kauth_authorize_device_tty(l->l_cred, KAUTH_DEVICE_TTY_OPEN, tp))
    390 		return (EBUSY);
    391 
    392 	if ((tp->t_state & TS_ISOPEN) == 0) {
    393 		ttychars(tp);
    394 		if (tp->t_ispeed == 0) {
    395 			tp->t_iflag = TTYDEF_IFLAG;
    396 			tp->t_oflag = TTYDEF_OFLAG;
    397 			tp->t_cflag = TTYDEF_CFLAG;
    398 			tp->t_lflag = TTYDEF_LFLAG;
    399 			tp->t_ispeed = tp->t_ospeed = TTYDEF_SPEED;
    400 		}
    401 		(void) dzparam(tp, &tp->t_termios);
    402 		ttsetwater(tp);
    403 	}
    404 
    405 	/* Use DMBIS and *not* DMSET or else we clobber incoming bits */
    406 	if (dzmctl(sc, line, DML_DTR, DMBIS) & DML_DCD)
    407 		tp->t_state |= TS_CARR_ON;
    408 	s = spltty();
    409 	while (!(flag & O_NONBLOCK) && !(tp->t_cflag & CLOCAL) &&
    410 	       !(tp->t_state & TS_CARR_ON)) {
    411 		tp->t_wopen++;
    412 		error = ttysleep(tp, (void *)&tp->t_rawq,
    413 				TTIPRI | PCATCH, ttopen, 0);
    414 		tp->t_wopen--;
    415 		if (error)
    416 			break;
    417 	}
    418 	(void) splx(s);
    419 	if (error)
    420 		return (error);
    421 	return ((*tp->t_linesw->l_open)(dev, tp));
    422 }
    423 
    424 /*ARGSUSED*/
    425 int
    426 dzclose(dev_t dev, int flag, int mode, struct lwp *l)
    427 {
    428 	struct	dz_softc *sc;
    429 	struct tty *tp;
    430 	int unit, line;
    431 
    432 
    433 	unit = DZ_I2C(minor(dev));
    434 	line = DZ_PORT(minor(dev));
    435 	sc = dz_cd.cd_devs[unit];
    436 
    437 	tp = sc->sc_dz[line].dz_tty;
    438 
    439 	(*tp->t_linesw->l_close)(tp, flag);
    440 
    441 	/* Make sure a BREAK state is not left enabled. */
    442 	(void) dzmctl(sc, line, DML_BRK, DMBIC);
    443 
    444 	/* Do a hangup if so required. */
    445 	if ((tp->t_cflag & HUPCL) || tp->t_wopen || !(tp->t_state & TS_ISOPEN))
    446 		(void) dzmctl(sc, line, 0, DMSET);
    447 
    448 	return (ttyclose(tp));
    449 }
    450 
    451 int
    452 dzread(dev_t dev, struct uio *uio, int flag)
    453 {
    454 	struct tty *tp;
    455 	struct	dz_softc *sc;
    456 
    457 	sc = dz_cd.cd_devs[DZ_I2C(minor(dev))];
    458 
    459 	tp = sc->sc_dz[DZ_PORT(minor(dev))].dz_tty;
    460 	return ((*tp->t_linesw->l_read)(tp, uio, flag));
    461 }
    462 
    463 int
    464 dzwrite(dev_t dev, struct uio *uio, int flag)
    465 {
    466 	struct tty *tp;
    467 	struct dz_softc *sc;
    468 
    469 	sc = dz_cd.cd_devs[DZ_I2C(minor(dev))];
    470 	tp = sc->sc_dz[DZ_PORT(minor(dev))].dz_tty;
    471 
    472 	return ((*tp->t_linesw->l_write)(tp, uio, flag));
    473 }
    474 
    475 int
    476 dzpoll(dev, events, l)
    477 	dev_t dev;
    478 	int events;
    479 	struct lwp *l;
    480 {
    481 	struct tty *tp;
    482 	struct dz_softc *sc;
    483 
    484 	sc = dz_cd.cd_devs[DZ_I2C(minor(dev))];
    485 	tp = sc->sc_dz[DZ_PORT(minor(dev))].dz_tty;
    486 
    487 	return ((*tp->t_linesw->l_poll)(tp, events, l));
    488 }
    489 
    490 /*ARGSUSED*/
    491 int
    492 dzioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
    493 {
    494 	struct	dz_softc *sc;
    495 	struct tty *tp;
    496 	int unit, line;
    497 	int error;
    498 
    499 	unit = DZ_I2C(minor(dev));
    500 	line = DZ_PORT(minor(dev));
    501 	sc = dz_cd.cd_devs[unit];
    502 	tp = sc->sc_dz[line].dz_tty;
    503 
    504 	error = (*tp->t_linesw->l_ioctl)(tp, cmd, data, flag, l);
    505 	if (error >= 0)
    506 		return (error);
    507 
    508 	error = ttioctl(tp, cmd, data, flag, l);
    509 	if (error >= 0)
    510 		return (error);
    511 
    512 	switch (cmd) {
    513 	case TIOCSBRK:
    514 		(void) dzmctl(sc, line, DML_BRK, DMBIS);
    515 		break;
    516 
    517 	case TIOCCBRK:
    518 		(void) dzmctl(sc, line, DML_BRK, DMBIC);
    519 		break;
    520 
    521 	case TIOCSDTR:
    522 		(void) dzmctl(sc, line, DML_DTR, DMBIS);
    523 		break;
    524 
    525 	case TIOCCDTR:
    526 		(void) dzmctl(sc, line, DML_DTR, DMBIC);
    527 		break;
    528 
    529 	case TIOCMSET:
    530 		(void) dzmctl(sc, line, *(int *)data, DMSET);
    531 		break;
    532 
    533 	case TIOCMBIS:
    534 		(void) dzmctl(sc, line, *(int *)data, DMBIS);
    535 		break;
    536 
    537 	case TIOCMBIC:
    538 		(void) dzmctl(sc, line, *(int *)data, DMBIC);
    539 		break;
    540 
    541 	case TIOCMGET:
    542 		*(int *)data = (dzmctl(sc, line, 0, DMGET) & ~DML_BRK);
    543 		break;
    544 
    545 	default:
    546 		return (EPASSTHROUGH);
    547 	}
    548 	return (0);
    549 }
    550 
    551 struct tty *
    552 dztty(dev_t dev)
    553 {
    554 	struct dz_softc *sc;
    555 	struct tty *tp;
    556 
    557         sc = dz_cd.cd_devs[DZ_I2C(minor(dev))];
    558         tp = sc->sc_dz[DZ_PORT(minor(dev))].dz_tty;
    559 
    560         return (tp);
    561 }
    562 
    563 /*ARGSUSED*/
    564 void
    565 dzstop(struct tty *tp, int flag)
    566 {
    567 
    568 	if ((tp->t_state & (TS_BUSY | TS_TTSTOP)) == TS_BUSY)
    569 		tp->t_state |= TS_FLUSH;
    570 }
    571 
    572 void
    573 dzstart(struct tty *tp)
    574 {
    575 	struct dz_softc *sc;
    576 	struct clist *cl;
    577 	int unit, line, s;
    578 	char state;
    579 
    580 	unit = DZ_I2C(minor(tp->t_dev));
    581 	line = DZ_PORT(minor(tp->t_dev));
    582 	sc = dz_cd.cd_devs[unit];
    583 
    584 	s = spltty();
    585 	if (tp->t_state & (TS_TIMEOUT|TS_BUSY|TS_TTSTOP)) {
    586 		splx(s);
    587 		return;
    588 	}
    589 	cl = &tp->t_outq;
    590 	if (cl->c_cc <= tp->t_lowat) {
    591 		if (tp->t_state & TS_ASLEEP) {
    592 			tp->t_state &= ~TS_ASLEEP;
    593 			wakeup((void *)cl);
    594 		}
    595 		selwakeup(&tp->t_wsel);
    596 	}
    597 	if (cl->c_cc == 0) {
    598 		splx(s);
    599 		return;
    600 	}
    601 
    602 	tp->t_state |= TS_BUSY;
    603 
    604 	state = dz_read2(sc, sc->sc_dr.dr_tcrw) & 255;
    605 	if ((state & (1 << line)) == 0)
    606 		dz_write1(sc, sc->sc_dr.dr_tcr, state | (1 << line));
    607 	dzxint(sc);
    608 	splx(s);
    609 }
    610 
    611 static int
    612 dzparam(struct tty *tp, struct termios *t)
    613 {
    614 	struct	dz_softc *sc;
    615 	int cflag = t->c_cflag;
    616 	int unit, line;
    617 	int ispeed = ttspeedtab(t->c_ispeed, dzspeedtab);
    618 	int ospeed = ttspeedtab(t->c_ospeed, dzspeedtab);
    619 	unsigned lpr;
    620 	int s;
    621 
    622 	unit = DZ_I2C(minor(tp->t_dev));
    623 	line = DZ_PORT(minor(tp->t_dev));
    624 	sc = dz_cd.cd_devs[unit];
    625 
    626 	/* check requested parameters */
    627         if (ospeed < 0 || ispeed < 0 || ispeed != ospeed)
    628                 return (EINVAL);
    629 
    630         tp->t_ispeed = t->c_ispeed;
    631         tp->t_ospeed = t->c_ospeed;
    632         tp->t_cflag = cflag;
    633 
    634 	if (ospeed == 0) {
    635 		(void) dzmctl(sc, line, 0, DMSET);	/* hang up line */
    636 		return (0);
    637 	}
    638 
    639 	s = spltty();
    640 
    641 	/* XXX This is wrong.  Flush output or the chip gets very confused. */
    642 	ttywait(tp);
    643 
    644 	lpr = DZ_LPR_RX_ENABLE | ((ispeed&0xF)<<8) | line;
    645 
    646 	switch (cflag & CSIZE)
    647 	{
    648 	  case CS5:
    649 		lpr |= DZ_LPR_5_BIT_CHAR;
    650 		break;
    651 	  case CS6:
    652 		lpr |= DZ_LPR_6_BIT_CHAR;
    653 		break;
    654 	  case CS7:
    655 		lpr |= DZ_LPR_7_BIT_CHAR;
    656 		break;
    657 	  default:
    658 		lpr |= DZ_LPR_8_BIT_CHAR;
    659 		break;
    660 	}
    661 	if (cflag & PARENB)
    662 		lpr |= DZ_LPR_PARENB;
    663 	if (cflag & PARODD)
    664 		lpr |= DZ_LPR_OPAR;
    665 	if (cflag & CSTOPB)
    666 		lpr |= DZ_LPR_2_STOP;
    667 
    668 	dz_write2(sc, sc->sc_dr.dr_lpr, lpr);
    669 	(void) splx(s);
    670 	DELAY(10000);
    671 
    672 	return (0);
    673 }
    674 
    675 static unsigned
    676 dzmctl(struct dz_softc *sc, int line, int bits, int how)
    677 {
    678 	unsigned status;
    679 	unsigned mbits;
    680 	unsigned bit;
    681 	int s;
    682 
    683 	s = spltty();
    684 	mbits = 0;
    685 	bit = (1 << line);
    686 
    687 	/* external signals as seen from the port */
    688 	status = dz_read1(sc, sc->sc_dr.dr_dcd) | sc->sc_dsr;
    689 	if (status & bit)
    690 		mbits |= DML_DCD;
    691 	status = dz_read1(sc, sc->sc_dr.dr_ring);
    692 	if (status & bit)
    693 		mbits |= DML_RI;
    694 
    695 	/* internal signals/state delivered to port */
    696 	status = dz_read1(sc, sc->sc_dr.dr_dtr);
    697 	if (status & bit)
    698 		mbits |= DML_DTR;
    699 	if (sc->sc_brk & bit)
    700 		mbits |= DML_BRK;
    701 
    702 	switch (how)
    703 	{
    704 	  case DMSET:
    705 		mbits = bits;
    706 		break;
    707 
    708 	  case DMBIS:
    709 		mbits |= bits;
    710 		break;
    711 
    712 	  case DMBIC:
    713 		mbits &= ~bits;
    714 		break;
    715 
    716 	  case DMGET:
    717 		(void) splx(s);
    718 		return (mbits);
    719 	}
    720 
    721 	if (mbits & DML_DTR) {
    722 		dz_write1(sc, sc->sc_dr.dr_dtr, dz_read1(sc, sc->sc_dr.dr_dtr) | bit);
    723 	} else {
    724 		dz_write1(sc, sc->sc_dr.dr_dtr, dz_read1(sc, sc->sc_dr.dr_dtr) & ~bit);
    725 	}
    726 
    727 	if (mbits & DML_BRK) {
    728 		sc->sc_brk |= bit;
    729 		dz_write1(sc, sc->sc_dr.dr_break, sc->sc_brk);
    730 	} else {
    731 		sc->sc_brk &= ~bit;
    732 		dz_write1(sc, sc->sc_dr.dr_break, sc->sc_brk);
    733 	}
    734 
    735 	(void) splx(s);
    736 
    737 	return (mbits);
    738 }
    739 
    740 /*
    741  * This is called by timeout() periodically.
    742  * Check to see if modem status bits have changed.
    743  */
    744 static void
    745 dzscan(void *arg)
    746 {
    747 	struct dz_softc *sc;
    748 	struct tty *tp;
    749 	int n, bit, port;
    750 	unsigned csr, tmp;
    751 	int s;
    752 
    753 	s = spltty();
    754 	for (n = 0; n < dz_cd.cd_ndevs; n++) {
    755 		if ((sc = dz_cd.cd_devs[n]) == NULL)
    756 			continue;
    757 
    758 		for (port = 0; port < sc->sc_type; port++) {
    759 			tp = sc->sc_dz[port].dz_tty;
    760 			bit = (1 << port);
    761 
    762 			if ((dz_read1(sc, sc->sc_dr.dr_dcd) | sc->sc_dsr) & bit) {
    763 				if (!(tp->t_state & TS_CARR_ON))
    764 					(*tp->t_linesw->l_modem) (tp, 1);
    765 			} else if ((tp->t_state & TS_CARR_ON) &&
    766 			    (*tp->t_linesw->l_modem)(tp, 0) == 0) {
    767 			    	tmp = dz_read2(sc, sc->sc_dr.dr_tcrw) & 255;
    768 				dz_write1(sc, sc->sc_dr.dr_tcr, tmp & ~bit);
    769 			}
    770 	    	}
    771 
    772 		/*
    773 		 *  If the RX interrupt rate is this high, switch
    774 		 *  the controller to Silo Alarm - which means don't
    775 	 	 *  interrupt until the RX silo has 16 characters in
    776 	 	 *  it (the silo is 64 characters in all).
    777 		 *  Avoid oscillating SA on and off by not turning
    778 		 *  if off unless the rate is appropriately low.
    779 		 */
    780 		csr = dz_read2(sc, sc->sc_dr.dr_csr);
    781 		tmp = csr;
    782 		if (sc->sc_rxint > 16*10)
    783 			csr |= DZ_CSR_SAE;
    784 		else if (sc->sc_rxint < 10)
    785 	    		csr &= ~DZ_CSR_SAE;
    786 		if (csr != tmp)
    787 			dz_write2(sc, sc->sc_dr.dr_csr, csr);
    788 		sc->sc_rxint = 0;
    789 
    790 		dzxint(sc);
    791 		dzrint(sc);
    792 	}
    793 	(void) splx(s);
    794 	callout_reset(&dzscan_ch, hz, dzscan, NULL);
    795 }
    796 
    797 /*
    798  * Called after an ubareset. The DZ card is reset, but the only thing
    799  * that must be done is to start the receiver and transmitter again.
    800  * No DMA setup to care about.
    801  */
    802 void
    803 dzreset(struct device *dev)
    804 {
    805 	struct dz_softc *sc = (void *)dev;
    806 	struct tty *tp;
    807 	int i;
    808 
    809 	for (i = 0; i < sc->sc_type; i++) {
    810 		tp = sc->sc_dz[i].dz_tty;
    811 
    812 		if (((tp->t_state & TS_ISOPEN) == 0) || (tp->t_wopen == 0))
    813 			continue;
    814 
    815 		dzparam(tp, &tp->t_termios);
    816 		dzmctl(sc, i, DML_DTR, DMSET);
    817 		tp->t_state &= ~TS_BUSY;
    818 		dzstart(tp);	/* Kick off transmitter again */
    819 	}
    820 }
    821