Home | History | Annotate | Line # | Download | only in ic
z8530tty.c revision 1.43
      1 /*	$NetBSD: z8530tty.c,v 1.43 1998/02/19 21:26:10 mycroft Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 1993, 1994, 1995, 1996, 1997
      5  *	Charles M. Hannum.  All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  * 3. All advertising materials mentioning features or use of this software
     16  *    must display the following acknowledgement:
     17  *	This product includes software developed by Charles M. Hannum.
     18  * 4. The name of the author may not be used to endorse or promote products
     19  *    derived from this software without specific prior written permission.
     20  *
     21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31  */
     32 
     33 /*
     34  * Copyright (c) 1994 Gordon W. Ross
     35  * Copyright (c) 1992, 1993
     36  *	The Regents of the University of California.  All rights reserved.
     37  *
     38  * This software was developed by the Computer Systems Engineering group
     39  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
     40  * contributed to Berkeley.
     41  *
     42  * All advertising materials mentioning features or use of this software
     43  * must display the following acknowledgement:
     44  *	This product includes software developed by the University of
     45  *	California, Lawrence Berkeley Laboratory.
     46  *
     47  * Redistribution and use in source and binary forms, with or without
     48  * modification, are permitted provided that the following conditions
     49  * are met:
     50  * 1. Redistributions of source code must retain the above copyright
     51  *    notice, this list of conditions and the following disclaimer.
     52  * 2. Redistributions in binary form must reproduce the above copyright
     53  *    notice, this list of conditions and the following disclaimer in the
     54  *    documentation and/or other materials provided with the distribution.
     55  * 3. All advertising materials mentioning features or use of this software
     56  *    must display the following acknowledgement:
     57  *	This product includes software developed by the University of
     58  *	California, Berkeley and its contributors.
     59  * 4. Neither the name of the University nor the names of its contributors
     60  *    may be used to endorse or promote products derived from this software
     61  *    without specific prior written permission.
     62  *
     63  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     64  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     65  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     66  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     67  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     68  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     69  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     70  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     71  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     72  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     73  * SUCH DAMAGE.
     74  *
     75  *	@(#)zs.c	8.1 (Berkeley) 7/19/93
     76  */
     77 
     78 /*
     79  * Zilog Z8530 Dual UART driver (tty interface)
     80  *
     81  * This is the "slave" driver that will be attached to
     82  * the "zsc" driver for plain "tty" async. serial lines.
     83  *
     84  * Credits, history:
     85  *
     86  * The original version of this code was the sparc/dev/zs.c driver
     87  * as distributed with the Berkeley 4.4 Lite release.  Since then,
     88  * Gordon Ross reorganized the code into the current parent/child
     89  * driver scheme, separating the Sun keyboard and mouse support
     90  * into independent child drivers.
     91  *
     92  * RTS/CTS flow-control support was a collaboration of:
     93  *	Gordon Ross <gwr (at) netbsd.org>,
     94  *	Bill Studenmund <wrstuden (at) loki.stanford.edu>
     95  *	Ian Dall <Ian.Dall (at) dsto.defence.gov.au>
     96  */
     97 
     98 #include <sys/param.h>
     99 #include <sys/systm.h>
    100 #include <sys/proc.h>
    101 #include <sys/device.h>
    102 #include <sys/conf.h>
    103 #include <sys/file.h>
    104 #include <sys/ioctl.h>
    105 #include <sys/malloc.h>
    106 #include <sys/tty.h>
    107 #include <sys/time.h>
    108 #include <sys/kernel.h>
    109 #include <sys/syslog.h>
    110 
    111 #include <dev/ic/z8530reg.h>
    112 #include <machine/z8530var.h>
    113 
    114 #include "locators.h"
    115 
    116 /*
    117  * How many input characters we can buffer.
    118  * The port-specific var.h may override this.
    119  * Note: must be a power of two!
    120  */
    121 #ifndef	ZSTTY_RING_SIZE
    122 #define	ZSTTY_RING_SIZE	2048
    123 #endif
    124 
    125 /*
    126  * Make this an option variable one can patch.
    127  * But be warned:  this must be a power of 2!
    128  */
    129 u_int zstty_rbuf_size = ZSTTY_RING_SIZE;
    130 
    131 /* Stop input when 3/4 of the ring is full; restart when only 1/4 is full. */
    132 u_int zstty_rbuf_hiwat = (ZSTTY_RING_SIZE * 1) / 4;
    133 u_int zstty_rbuf_lowat = (ZSTTY_RING_SIZE * 3) / 4;
    134 
    135 struct zstty_softc {
    136 	struct	device zst_dev;		/* required first: base device */
    137 	struct  tty *zst_tty;
    138 	struct	zs_chanstate *zst_cs;
    139 
    140 	u_int zst_overflows,
    141 	      zst_floods,
    142 	      zst_errors;
    143 
    144 	int zst_hwflags,	/* see z8530var.h */
    145 	    zst_swflags;	/* TIOCFLAG_SOFTCAR, ... <ttycom.h> */
    146 
    147 	u_int zst_r_hiwat,
    148 	      zst_r_lowat;
    149 	u_char *volatile zst_rbget,
    150 	       *volatile zst_rbput;
    151 	volatile u_int zst_rbavail;
    152 	u_char *zst_rbuf,
    153 	       *zst_ebuf;
    154 
    155 	/*
    156 	 * The transmit byte count and address are used for pseudo-DMA
    157 	 * output in the hardware interrupt code.  PDMA can be suspended
    158 	 * to get pending changes done; heldtbc is used for this.  It can
    159 	 * also be stopped for ^S; this sets TS_TTSTOP in tp->t_state.
    160 	 */
    161 	u_char *zst_tba;		/* transmit buffer address */
    162 	u_int zst_tbc,			/* transmit byte count */
    163 	      zst_heldtbc;		/* held tbc while xmission stopped */
    164 
    165 	/* Flags to communicate with zstty_softint() */
    166 	volatile u_char zst_rx_flags,	/* receiver blocked */
    167 #define	RX_TTY_BLOCKED		0x01
    168 #define	RX_TTY_OVERFLOWED	0x02
    169 #define	RX_IBUF_BLOCKED		0x04
    170 #define	RX_IBUF_OVERFLOWED	0x08
    171 #define	RX_ANY_BLOCK		0x0f
    172 			zst_tx_busy,	/* working on an output chunk */
    173 			zst_tx_done,	/* done with one output chunk */
    174 			zst_tx_stopped,	/* H/W level stop (lost CTS) */
    175 			zst_st_check,	/* got a status interrupt */
    176 			zst_rx_ready;
    177 };
    178 
    179 /* Macros to clear/set/test flags. */
    180 #define SET(t, f)	(t) |= (f)
    181 #define CLR(t, f)	(t) &= ~(f)
    182 #define ISSET(t, f)	((t) & (f))
    183 
    184 /* Definition of the driver for autoconfig. */
    185 #ifdef	__BROKEN_INDIRECT_CONFIG
    186 static int	zstty_match(struct device *, void *, void *);
    187 #else
    188 static int	zstty_match(struct device *, struct cfdata *, void *);
    189 #endif
    190 static void	zstty_attach(struct device *, struct device *, void *);
    191 
    192 struct cfattach zstty_ca = {
    193 	sizeof(struct zstty_softc), zstty_match, zstty_attach
    194 };
    195 
    196 extern struct cfdriver zstty_cd;
    197 
    198 struct zsops zsops_tty;
    199 
    200 /* Routines called from other code. */
    201 cdev_decl(zs);	/* open, close, read, write, ioctl, stop, ... */
    202 
    203 static void	zsstart __P((struct tty *));
    204 static int	zsparam __P((struct tty *, struct termios *));
    205 static void zs_modem __P((struct zstty_softc *zst, int onoff));
    206 static int	zshwiflow __P((struct tty *, int));
    207 static void zs_hwiflow __P((struct zstty_softc *));
    208 
    209 /*
    210  * zstty_match: how is this zs channel configured?
    211  */
    212 #ifdef	__BROKEN_INDIRECT_CONFIG
    213 int
    214 zstty_match(parent, vcf, aux)
    215 	struct device *parent;
    216 	void   *vcf, *aux;
    217 {
    218 	struct cfdata *cf = vcf;
    219 	struct zsc_attach_args *args = aux;
    220 
    221 	/* Exact match is better than wildcard. */
    222 	if (cf->cf_loc[ZSCCF_CHANNEL] == args->channel)
    223 		return 2;
    224 
    225 	/* This driver accepts wildcard. */
    226 	if (cf->cf_loc[ZSCCF_CHANNEL] == ZSCCF_CHANNEL_DEFAULT)
    227 		return 1;
    228 
    229 	return 0;
    230 }
    231 #else	/* __BROKEN_INDIRECT_CONFIG */
    232 int
    233 zstty_match(parent, cf, aux)
    234 	struct device *parent;
    235 	struct cfdata *cf;
    236 	void   *aux;
    237 {
    238 	struct zsc_attach_args *args = aux;
    239 
    240 	/* Exact match is better than wildcard. */
    241 	if (cf->cf_loc[ZSCCF_CHANNEL] == args->channel)
    242 		return 2;
    243 
    244 	/* This driver accepts wildcard. */
    245 	if (cf->cf_loc[ZSCCF_CHANNEL] == ZSCCF_CHANNEL_DEFAULT)
    246 		return 1;
    247 
    248 	return 0;
    249 }
    250 #endif	/* __BROKEN_INDIRECT_CONFIG */
    251 
    252 void
    253 zstty_attach(parent, self, aux)
    254 	struct device *parent, *self;
    255 	void   *aux;
    256 
    257 {
    258 	struct zsc_softc *zsc = (void *) parent;
    259 	struct zstty_softc *zst = (void *) self;
    260 	struct cfdata *cf = self->dv_cfdata;
    261 	struct zsc_attach_args *args = aux;
    262 	struct zs_chanstate *cs;
    263 	struct tty *tp;
    264 	int channel, s, tty_unit;
    265 	dev_t dev;
    266 
    267 	tty_unit = zst->zst_dev.dv_unit;
    268 	channel = args->channel;
    269 	cs = zsc->zsc_cs[channel];
    270 	cs->cs_private = zst;
    271 	cs->cs_ops = &zsops_tty;
    272 
    273 	zst->zst_cs = cs;
    274 	zst->zst_swflags = cf->cf_flags;	/* softcar, etc. */
    275 	zst->zst_hwflags = args->hwflags;
    276 	dev = makedev(zs_major, tty_unit);
    277 
    278 	if (zst->zst_swflags)
    279 		printf(" flags 0x%x", zst->zst_swflags);
    280 
    281 	if (ISSET(zst->zst_hwflags, ZS_HWFLAG_CONSOLE))
    282 		printf(" (console)");
    283 	else {
    284 #ifdef KGDB
    285 		/*
    286 		 * Allow kgdb to "take over" this port.  Returns true
    287 		 * if this serial port is in-use by kgdb.
    288 		 */
    289 		if (zs_check_kgdb(cs, dev)) {
    290 			printf(" (kgdb)\n");
    291 			/*
    292 			 * This is the kgdb port (exclusive use)
    293 			 * so skip the normal attach code.
    294 			 */
    295 			return;
    296 		}
    297 #endif
    298 	}
    299 	printf("\n");
    300 
    301 	tp = ttymalloc();
    302 	tp->t_oproc = zsstart;
    303 	tp->t_param = zsparam;
    304 	tp->t_hwiflow = zshwiflow;
    305 	tty_attach(tp);
    306 
    307 	zst->zst_tty = tp;
    308 	zst->zst_rbuf = malloc(zstty_rbuf_size << 1, M_DEVBUF, M_WAITOK);
    309 	zst->zst_ebuf = zst->zst_rbuf + (zstty_rbuf_size << 1);
    310 	/* Disable the high water mark. */
    311 	zst->zst_r_hiwat = 0;
    312 	zst->zst_r_lowat = 0;
    313 	zst->zst_rbget = zst->zst_rbput = zst->zst_rbuf;
    314 	zst->zst_rbavail = zstty_rbuf_size;
    315 
    316 	/* XXX - Do we need an MD hook here? */
    317 
    318 	/*
    319 	 * Hardware init
    320 	 */
    321 	if (ISSET(zst->zst_hwflags, ZS_HWFLAG_CONSOLE)) {
    322 		/* Call zsparam similar to open. */
    323 		struct termios t;
    324 
    325 		s = splzs();
    326 
    327 		/* Turn on interrupts. */
    328 		cs->cs_creg[1] = cs->cs_preg[1] = ZSWR1_RIE | ZSWR1_SIE;
    329 		zs_write_reg(cs, 1, cs->cs_creg[1]);
    330 
    331 		/* Fetch the current modem control status, needed later. */
    332 		cs->cs_rr0 = zs_read_csr(cs);
    333 
    334 		splx(s);
    335 
    336 		/* Setup the "new" parameters in t. */
    337 		t.c_ispeed = 0;
    338 		t.c_ospeed = cs->cs_defspeed;
    339 		t.c_cflag = cs->cs_defcflag;
    340 		/* Make sure zsparam will see changes. */
    341 		tp->t_ospeed = 0;
    342 		(void) zsparam(tp, &t);
    343 
    344 		s = splzs();
    345 
    346 		/* Make sure DTR is on now. */
    347 		zs_modem(zst, 1);
    348 
    349 		splx(s);
    350 	} else {
    351 		/* Not the console; may need reset. */
    352 		int reset;
    353 
    354 		reset = (channel == 0) ? ZSWR9_A_RESET : ZSWR9_B_RESET;
    355 
    356 		s = splzs();
    357 
    358 		zs_write_reg(cs, 9, reset);
    359 
    360 		/* Will raise DTR in open. */
    361 		zs_modem(zst, 0);
    362 
    363 		splx(s);
    364 	}
    365 }
    366 
    367 
    368 /*
    369  * Return pointer to our tty.
    370  */
    371 struct tty *
    372 zstty(dev)
    373 	dev_t dev;
    374 {
    375 	struct zstty_softc *zst;
    376 	int unit = minor(dev);
    377 
    378 #ifdef	DIAGNOSTIC
    379 	if (unit >= zstty_cd.cd_ndevs)
    380 		panic("zstty");
    381 #endif
    382 	zst = zstty_cd.cd_devs[unit];
    383 	return (zst->zst_tty);
    384 }
    385 
    386 
    387 /*
    388  * Open a zs serial (tty) port.
    389  */
    390 int
    391 zsopen(dev, flags, mode, p)
    392 	dev_t dev;
    393 	int flags;
    394 	int mode;
    395 	struct proc *p;
    396 {
    397 	struct tty *tp;
    398 	struct zs_chanstate *cs;
    399 	struct zstty_softc *zst;
    400 	int error, s, s2, unit;
    401 
    402 	unit = minor(dev);
    403 	if (unit >= zstty_cd.cd_ndevs)
    404 		return (ENXIO);
    405 	zst = zstty_cd.cd_devs[unit];
    406 	if (zst == NULL)
    407 		return (ENXIO);
    408 	tp = zst->zst_tty;
    409 	cs = zst->zst_cs;
    410 
    411 	/* If KGDB took the line, then tp==NULL */
    412 	if (tp == NULL)
    413 		return (EBUSY);
    414 
    415 	if (ISSET(tp->t_state, TS_ISOPEN) &&
    416 	    ISSET(tp->t_state, TS_XCLUDE) &&
    417 	    p->p_ucred->cr_uid != 0)
    418 		return (EBUSY);
    419 
    420 	s = spltty();
    421 
    422 	/* We need to set this early for the benefit of zssoft(). */
    423 	SET(tp->t_state, TS_WOPEN);
    424 
    425 	/*
    426 	 * Do the following iff this is a first open.
    427 	 */
    428 	if (!ISSET(tp->t_state, TS_ISOPEN)) {
    429 		struct termios t;
    430 
    431 		tp->t_dev = dev;
    432 
    433 		s2 = splzs();
    434 
    435 		/* Turn on interrupts. */
    436 		cs->cs_creg[1] = cs->cs_preg[1] = ZSWR1_RIE | ZSWR1_SIE;
    437 		zs_write_reg(cs, 1, cs->cs_creg[1]);
    438 
    439 		/* Fetch the current modem control status, needed later. */
    440 		cs->cs_rr0 = zs_read_csr(cs);
    441 
    442 		splx(s2);
    443 
    444 		/*
    445 		 * Initialize the termios status to the defaults.  Add in the
    446 		 * sticky bits from TIOCSFLAGS.
    447 		 */
    448 		t.c_ispeed = 0;
    449 		t.c_ospeed = cs->cs_defspeed;
    450 		t.c_cflag = cs->cs_defcflag;
    451 		if (ISSET(zst->zst_swflags, TIOCFLAG_CLOCAL))
    452 			SET(t.c_cflag, CLOCAL);
    453 		if (ISSET(zst->zst_swflags, TIOCFLAG_CRTSCTS))
    454 			SET(t.c_cflag, CRTSCTS);
    455 		if (ISSET(zst->zst_swflags, TIOCFLAG_CDTRCTS))
    456 			SET(t.c_cflag, CDTRCTS);
    457 		if (ISSET(zst->zst_swflags, TIOCFLAG_MDMBUF))
    458 			SET(t.c_cflag, MDMBUF);
    459 		/* Make sure zsparam will see changes. */
    460 		tp->t_ospeed = 0;
    461 		(void) zsparam(tp, &t);
    462 		/*
    463 		 * Note: zsparam has done: cflag, ispeed, ospeed
    464 		 * so we just need to do: iflag, oflag, lflag, cc
    465 		 * For "raw" mode, just leave all zeros.
    466 		 */
    467 		if (!ISSET(zst->zst_hwflags, ZS_HWFLAG_RAW)) {
    468 			tp->t_iflag = TTYDEF_IFLAG;
    469 			tp->t_oflag = TTYDEF_OFLAG;
    470 			tp->t_lflag = TTYDEF_LFLAG;
    471 		} else {
    472 			tp->t_iflag = 0;
    473 			tp->t_oflag = 0;
    474 			tp->t_lflag = 0;
    475 		}
    476 		ttychars(tp);
    477 		ttsetwater(tp);
    478 
    479 		s2 = splzs();
    480 
    481 		/*
    482 		 * Turn on DTR.  We must always do this, even if carrier is not
    483 		 * present, because otherwise we'd have to use TIOCSDTR
    484 		 * immediately after setting CLOCAL, which applications do not
    485 		 * expect.  We always assert DTR while the device is open
    486 		 * unless explicitly requested to deassert it.
    487 		 */
    488 		zs_modem(zst, 1);
    489 
    490 		/* Clear the input ring, and unblock. */
    491 		zst->zst_rbget = zst->zst_rbput = zst->zst_rbuf;
    492 		zst->zst_rbavail = zstty_rbuf_size;
    493 		zs_iflush(cs);
    494 		CLR(zst->zst_rx_flags, RX_ANY_BLOCK);
    495 		zs_hwiflow(zst);
    496 
    497 		splx(s2);
    498 	}
    499 	error = 0;
    500 
    501 	/* If we're doing a blocking open... */
    502 	if (!ISSET(flags, O_NONBLOCK))
    503 		/* ...then wait for carrier. */
    504 		while (!ISSET(tp->t_state, TS_CARR_ON) &&
    505 		    !ISSET(tp->t_cflag, CLOCAL | MDMBUF)) {
    506 			error = ttysleep(tp, &tp->t_rawq, TTIPRI | PCATCH,
    507 			    ttopen, 0);
    508 			if (error) {
    509 				/*
    510 				 * If the open was interrupted and nobody
    511 				 * else has the device open, then hang up.
    512 				 */
    513 				if (!ISSET(tp->t_state, TS_ISOPEN)) {
    514 					s2 = splzs();
    515 
    516 					/* Hang up. */
    517 					zs_modem(zst, 0);
    518 
    519 					CLR(tp->t_state, TS_WOPEN);
    520 					ttwakeup(tp);
    521 
    522 					splx(s2);
    523 				}
    524 				break;
    525 			}
    526 			SET(tp->t_state, TS_WOPEN);
    527 		}
    528 
    529 	splx(s);
    530 	if (error == 0)
    531 		error = (*linesw[tp->t_line].l_open)(dev, tp);
    532 	return (error);
    533 }
    534 
    535 /*
    536  * Close a zs serial port.
    537  */
    538 int
    539 zsclose(dev, flags, mode, p)
    540 	dev_t dev;
    541 	int flags;
    542 	int mode;
    543 	struct proc *p;
    544 {
    545 	struct zstty_softc *zst = zstty_cd.cd_devs[minor(dev)];
    546 	struct zs_chanstate *cs = zst->zst_cs;
    547 	struct tty *tp = zst->zst_tty;
    548 	int s;
    549 
    550 	/* XXX This is for cons.c. */
    551 	if (!ISSET(tp->t_state, TS_ISOPEN))
    552 		return 0;
    553 
    554 	(*linesw[tp->t_line].l_close)(tp, flags);
    555 	ttyclose(tp);
    556 
    557 	s = splzs();
    558 
    559 	/* If we were asserting flow control, then deassert it. */
    560 	SET(zst->zst_rx_flags, RX_IBUF_BLOCKED);
    561 	zs_hwiflow(zst);
    562 
    563 	/* Clear any break condition set with TIOCSBRK. */
    564 	zs_break(cs, 0);
    565 
    566 	/*
    567 	 * Hang up if necessary.  Wait a bit, so the other side has time to
    568 	 * notice even if we immediately open the port again.
    569 	 */
    570 	if (ISSET(tp->t_cflag, HUPCL)) {
    571 		zs_modem(zst, 0);
    572 		(void) tsleep(cs, TTIPRI, ttclos, hz);
    573 	}
    574 
    575 	/* Turn off interrupts if not the console. */
    576 	if (ISSET(zst->zst_hwflags, ZS_HWFLAG_CONSOLE))
    577 		cs->cs_creg[1] = cs->cs_preg[1] = ZSWR1_RIE | ZSWR1_SIE;
    578 	else
    579 		cs->cs_creg[1] = cs->cs_preg[1] = 0;
    580 	zs_write_reg(cs, 1, cs->cs_creg[1]);
    581 
    582 	splx(s);
    583 
    584 	return (0);
    585 }
    586 
    587 /*
    588  * Read/write zs serial port.
    589  */
    590 int
    591 zsread(dev, uio, flags)
    592 	dev_t dev;
    593 	struct uio *uio;
    594 	int flags;
    595 {
    596 	struct zstty_softc *zst = zstty_cd.cd_devs[minor(dev)];
    597 	struct tty *tp = zst->zst_tty;
    598 
    599 	return ((*linesw[tp->t_line].l_read)(tp, uio, flags));
    600 }
    601 
    602 int
    603 zswrite(dev, uio, flags)
    604 	dev_t dev;
    605 	struct uio *uio;
    606 	int flags;
    607 {
    608 	struct zstty_softc *zst = zstty_cd.cd_devs[minor(dev)];
    609 	struct tty *tp = zst->zst_tty;
    610 
    611 	return ((*linesw[tp->t_line].l_write)(tp, uio, flags));
    612 }
    613 
    614 int
    615 zsioctl(dev, cmd, data, flag, p)
    616 	dev_t dev;
    617 	u_long cmd;
    618 	caddr_t data;
    619 	int flag;
    620 	struct proc *p;
    621 {
    622 	struct zstty_softc *zst = zstty_cd.cd_devs[minor(dev)];
    623 	struct zs_chanstate *cs = zst->zst_cs;
    624 	struct tty *tp = zst->zst_tty;
    625 	int error;
    626 	int s;
    627 
    628 	error = (*linesw[tp->t_line].l_ioctl)(tp, cmd, data, flag, p);
    629 	if (error >= 0)
    630 		return (error);
    631 
    632 	error = ttioctl(tp, cmd, data, flag, p);
    633 	if (error >= 0)
    634 		return (error);
    635 
    636 #ifdef	ZS_MD_IOCTL
    637 	error = ZS_MD_IOCTL;
    638 	if (error >= 0)
    639 		return (error);
    640 #endif	/* ZS_MD_IOCTL */
    641 
    642 	s = splzs();
    643 
    644 	switch (cmd) {
    645 	case TIOCSBRK:
    646 		zs_break(cs, 1);
    647 		break;
    648 
    649 	case TIOCCBRK:
    650 		zs_break(cs, 0);
    651 		break;
    652 
    653 	case TIOCGFLAGS:
    654 		*(int *)data = zst->zst_swflags;
    655 		break;
    656 
    657 	case TIOCSFLAGS:
    658 		error = suser(p->p_ucred, &p->p_acflag);
    659 		if (error)
    660 			break;
    661 		zst->zst_swflags = *(int *)data;
    662 		break;
    663 
    664 	case TIOCSDTR:
    665 		zs_modem(zst, 1);
    666 		break;
    667 
    668 	case TIOCCDTR:
    669 		zs_modem(zst, 0);
    670 		break;
    671 
    672 	case TIOCMSET:
    673 	case TIOCMBIS:
    674 	case TIOCMBIC:
    675 	case TIOCMGET:
    676 	default:
    677 		error = ENOTTY;
    678 		break;
    679 	}
    680 
    681 	splx(s);
    682 
    683 	return (error);
    684 }
    685 
    686 /*
    687  * Start or restart transmission.
    688  */
    689 static void
    690 zsstart(tp)
    691 	struct tty *tp;
    692 {
    693 	struct zstty_softc *zst = zstty_cd.cd_devs[minor(tp->t_dev)];
    694 	struct zs_chanstate *cs = zst->zst_cs;
    695 	int s;
    696 
    697 	s = spltty();
    698 	if (ISSET(tp->t_state, TS_BUSY | TS_TIMEOUT | TS_TTSTOP))
    699 		goto out;
    700 	if (zst->zst_tx_stopped)
    701 		goto out;
    702 
    703 	if (tp->t_outq.c_cc <= tp->t_lowat) {
    704 		if (ISSET(tp->t_state, TS_ASLEEP)) {
    705 			CLR(tp->t_state, TS_ASLEEP);
    706 			wakeup((caddr_t)&tp->t_outq);
    707 		}
    708 		selwakeup(&tp->t_wsel);
    709 		if (tp->t_outq.c_cc == 0)
    710 			goto out;
    711 	}
    712 
    713 	/* Grab the first contiguous region of buffer space. */
    714 	{
    715 		u_char *tba;
    716 		int tbc;
    717 
    718 		tba = tp->t_outq.c_cf;
    719 		tbc = ndqb(&tp->t_outq, 0);
    720 
    721 		(void) splzs();
    722 
    723 		zst->zst_tba = tba;
    724 		zst->zst_tbc = tbc;
    725 	}
    726 
    727 	SET(tp->t_state, TS_BUSY);
    728 	zst->zst_tx_busy = 1;
    729 
    730 	/* Enable transmit completion interrupts if necessary. */
    731 	if (!ISSET(cs->cs_preg[1], ZSWR1_TIE)) {
    732 		SET(cs->cs_preg[1], ZSWR1_TIE);
    733 		cs->cs_creg[1] = cs->cs_preg[1];
    734 		zs_write_reg(cs, 1, cs->cs_creg[1]);
    735 	}
    736 
    737 	/* Output the first character of the contiguous buffer. */
    738 	{
    739 		zs_write_data(cs, *zst->zst_tba);
    740 		zst->zst_tbc--;
    741 		zst->zst_tba++;
    742 	}
    743 out:
    744 	splx(s);
    745 	return;
    746 }
    747 
    748 /*
    749  * Stop output, e.g., for ^S or output flush.
    750  */
    751 void
    752 zsstop(tp, flag)
    753 	struct tty *tp;
    754 	int flag;
    755 {
    756 	struct zstty_softc *zst = zstty_cd.cd_devs[minor(tp->t_dev)];
    757 	int s;
    758 
    759 	s = splzs();
    760 	if (ISSET(tp->t_state, TS_BUSY)) {
    761 		/* Stop transmitting at the next chunk. */
    762 		zst->zst_tbc = 0;
    763 		zst->zst_heldtbc = 0;
    764 		if (!ISSET(tp->t_state, TS_TTSTOP))
    765 			SET(tp->t_state, TS_FLUSH);
    766 	}
    767 	splx(s);
    768 }
    769 
    770 /*
    771  * Set ZS tty parameters from termios.
    772  * XXX - Should just copy the whole termios after
    773  * making sure all the changes could be done.
    774  */
    775 static int
    776 zsparam(tp, t)
    777 	struct tty *tp;
    778 	struct termios *t;
    779 {
    780 	struct zstty_softc *zst = zstty_cd.cd_devs[minor(tp->t_dev)];
    781 	struct zs_chanstate *cs = zst->zst_cs;
    782 	int ospeed, cflag;
    783 	u_char tmp3, tmp4, tmp5, tmp15;
    784 	int s, error;
    785 
    786 	ospeed = t->c_ospeed;
    787 	cflag = t->c_cflag;
    788 
    789 	/* Check requested parameters. */
    790 	if (ospeed < 0)
    791 		return (EINVAL);
    792 	if (t->c_ispeed && t->c_ispeed != ospeed)
    793 		return (EINVAL);
    794 
    795 	/*
    796 	 * For the console, always force CLOCAL and !HUPCL, so that the port
    797 	 * is always active.
    798 	 */
    799 	if (ISSET(zst->zst_swflags, TIOCFLAG_SOFTCAR) ||
    800 	    ISSET(zst->zst_hwflags, ZS_HWFLAG_CONSOLE)) {
    801 		SET(cflag, CLOCAL);
    802 		CLR(cflag, HUPCL);
    803 	}
    804 
    805 	/*
    806 	 * Only whack the UART when params change.
    807 	 * Some callers need to clear tp->t_ospeed
    808 	 * to make sure initialization gets done.
    809 	 */
    810 	if (tp->t_ospeed == ospeed &&
    811 	    tp->t_cflag == cflag)
    812 		return (0);
    813 
    814 	/*
    815 	 * Call MD functions to deal with changed
    816 	 * clock modes or H/W flow control modes.
    817 	 * The BRG divisor is set now. (reg 12,13)
    818 	 */
    819 	error = zs_set_speed(cs, ospeed);
    820 	if (error)
    821 		return (error);
    822 	error = zs_set_modes(cs, cflag);
    823 	if (error)
    824 		return (error);
    825 
    826 	/*
    827 	 * Block interrupts so that state will not
    828 	 * be altered until we are done setting it up.
    829 	 *
    830 	 * Initial values in cs_preg are set before
    831 	 * our attach routine is called.  The master
    832 	 * interrupt enable is handled by zsc.c
    833 	 *
    834 	 */
    835 	s = splzs();
    836 
    837 	cs->cs_rr0_mask = cs->cs_rr0_cts | cs->cs_rr0_dcd;
    838 	tmp15 = cs->cs_preg[15];
    839 #if 0
    840 	if (ISSET(cs->cs_rr0_mask, ZSRR0_DCD))
    841 		SET(tmp15, ZSWR15_DCD_IE);
    842 	else
    843 		CLR(tmp15, ZSWR15_DCD_IE);
    844 	if (ISSET(cs->cs_rr0_mask, ZSRR0_CTS))
    845 		SET(tmp15, ZSWR15_CTS_IE);
    846 	else
    847 		CLR(tmp15, ZSWR15_CTS_IE);
    848 #else
    849 	SET(tmp15, ZSWR15_DCD_IE | ZSWR15_CTS_IE);
    850 #endif
    851 	cs->cs_preg[15] = tmp15;
    852 
    853 	/* Recompute character size bits. */
    854 	tmp3 = cs->cs_preg[3];
    855 	tmp5 = cs->cs_preg[5];
    856 	CLR(tmp3, ZSWR3_RXSIZE);
    857 	CLR(tmp5, ZSWR5_TXSIZE);
    858 	switch (ISSET(cflag, CSIZE)) {
    859 	case CS5:
    860 		SET(tmp3, ZSWR3_RX_5);
    861 		SET(tmp5, ZSWR5_TX_5);
    862 		break;
    863 	case CS6:
    864 		SET(tmp3, ZSWR3_RX_6);
    865 		SET(tmp5, ZSWR5_TX_6);
    866 		break;
    867 	case CS7:
    868 		SET(tmp3, ZSWR3_RX_7);
    869 		SET(tmp5, ZSWR5_TX_7);
    870 		break;
    871 	case CS8:
    872 		SET(tmp3, ZSWR3_RX_8);
    873 		SET(tmp5, ZSWR5_TX_8);
    874 		break;
    875 	}
    876 	cs->cs_preg[3] = tmp3;
    877 	cs->cs_preg[5] = tmp5;
    878 
    879 	/*
    880 	 * Recompute the stop bits and parity bits.  Note that
    881 	 * zs_set_speed() may have set clock selection bits etc.
    882 	 * in wr4, so those must preserved.
    883 	 */
    884 	tmp4 = cs->cs_preg[4];
    885 	CLR(tmp4, ZSWR4_SBMASK | ZSWR4_PARMASK);
    886 	if (ISSET(cflag, CSTOPB))
    887 		SET(tmp4, ZSWR4_TWOSB);
    888 	else
    889 		SET(tmp4, ZSWR4_ONESB);
    890 	if (!ISSET(cflag, PARODD))
    891 		SET(tmp4, ZSWR4_EVENP);
    892 	if (ISSET(cflag, PARENB))
    893 		SET(tmp4, ZSWR4_PARENB);
    894 	cs->cs_preg[4] = tmp4;
    895 
    896 	/* And copy to tty. */
    897 	tp->t_ispeed = 0;
    898 	tp->t_ospeed = ospeed;
    899 	tp->t_cflag = cflag;
    900 
    901 	/*
    902 	 * If nothing is being transmitted, set up new current values,
    903 	 * else mark them as pending.
    904 	 */
    905 	if (!cs->cs_heldchange) {
    906 		if (zst->zst_tx_busy) {
    907 			zst->zst_heldtbc = zst->zst_tbc;
    908 			zst->zst_tbc = 0;
    909 			cs->cs_heldchange = 1;
    910 		} else
    911 			zs_loadchannelregs(cs);
    912 	}
    913 
    914 	if (!ISSET(cflag, CHWFLOW)) {
    915 		/* Disable the high water mark. */
    916 		zst->zst_r_hiwat = 0;
    917 		zst->zst_r_lowat = 0;
    918 		if (ISSET(zst->zst_rx_flags, RX_TTY_OVERFLOWED)) {
    919 			CLR(zst->zst_rx_flags, RX_TTY_OVERFLOWED);
    920 			zst->zst_rx_ready = 1;
    921 			cs->cs_softreq = 1;
    922 		}
    923 		if (ISSET(zst->zst_rx_flags, RX_TTY_BLOCKED|RX_IBUF_BLOCKED)) {
    924 			CLR(zst->zst_rx_flags, RX_TTY_BLOCKED|RX_IBUF_BLOCKED);
    925 			zs_hwiflow(zst);
    926 		}
    927 	} else {
    928 		zst->zst_r_hiwat = zstty_rbuf_hiwat;
    929 		zst->zst_r_lowat = zstty_rbuf_lowat;
    930 	}
    931 
    932 	splx(s);
    933 
    934 	/*
    935 	 * Update the tty layer's idea of the carrier bit, in case we changed
    936 	 * CLOCAL or MDMBUF.  We don't hang up here; we only do that by
    937 	 * explicit request.
    938 	 */
    939 	(void) (*linesw[tp->t_line].l_modem)(tp, ISSET(cs->cs_rr0, ZSRR0_DCD));
    940 
    941 	if (!ISSET(cflag, CHWFLOW)) {
    942 		if (zst->zst_tx_stopped) {
    943 			zst->zst_tx_stopped = 0;
    944 			zsstart(tp);
    945 		}
    946 	}
    947 
    948 	return (0);
    949 }
    950 
    951 /*
    952  * Raise or lower modem control (DTR/RTS) signals.  If a character is
    953  * in transmission, the change is deferred.
    954  */
    955 static void
    956 zs_modem(zst, onoff)
    957 	struct zstty_softc *zst;
    958 	int onoff;
    959 {
    960 	struct zs_chanstate *cs = zst->zst_cs;
    961 
    962 	if (cs->cs_wr5_dtr == 0)
    963 		return;
    964 
    965 	if (onoff)
    966 		SET(cs->cs_preg[5], cs->cs_wr5_dtr);
    967 	else
    968 		CLR(cs->cs_preg[5], cs->cs_wr5_dtr);
    969 
    970 	if (!cs->cs_heldchange) {
    971 		if (zst->zst_tx_busy) {
    972 			zst->zst_heldtbc = zst->zst_tbc;
    973 			zst->zst_tbc = 0;
    974 			cs->cs_heldchange = 1;
    975 		} else
    976 			zs_loadchannelregs(cs);
    977 	}
    978 }
    979 
    980 /*
    981  * Try to block or unblock input using hardware flow-control.
    982  * This is called by kern/tty.c if MDMBUF|CRTSCTS is set, and
    983  * if this function returns non-zero, the TS_TBLOCK flag will
    984  * be set or cleared according to the "block" arg passed.
    985  */
    986 int
    987 zshwiflow(tp, block)
    988 	struct tty *tp;
    989 	int block;
    990 {
    991 	struct zstty_softc *zst = zstty_cd.cd_devs[minor(tp->t_dev)];
    992 	struct zs_chanstate *cs = zst->zst_cs;
    993 	int s;
    994 
    995 	if (cs->cs_wr5_rts == 0)
    996 		return (0);
    997 
    998 	s = splzs();
    999 	if (block) {
   1000 		if (!ISSET(zst->zst_rx_flags, RX_TTY_BLOCKED)) {
   1001 			SET(zst->zst_rx_flags, RX_TTY_BLOCKED);
   1002 			zs_hwiflow(zst);
   1003 		}
   1004 	} else {
   1005 		if (ISSET(zst->zst_rx_flags, RX_TTY_OVERFLOWED)) {
   1006 			CLR(zst->zst_rx_flags, RX_TTY_OVERFLOWED);
   1007 			zst->zst_rx_ready = 1;
   1008 			cs->cs_softreq = 1;
   1009 		}
   1010 		if (ISSET(zst->zst_rx_flags, RX_TTY_BLOCKED)) {
   1011 			CLR(zst->zst_rx_flags, RX_TTY_BLOCKED);
   1012 			zs_hwiflow(zst);
   1013 		}
   1014 	}
   1015 	splx(s);
   1016 	return (1);
   1017 }
   1018 
   1019 /*
   1020  * Internal version of zshwiflow
   1021  * called at splzs
   1022  */
   1023 static void
   1024 zs_hwiflow(zst)
   1025 	struct zstty_softc *zst;
   1026 {
   1027 	struct zs_chanstate *cs = zst->zst_cs;
   1028 
   1029 	if (cs->cs_wr5_rts == 0)
   1030 		return;
   1031 
   1032 	if (ISSET(zst->zst_rx_flags, RX_ANY_BLOCK)) {
   1033 		CLR(cs->cs_preg[5], cs->cs_wr5_rts);
   1034 		CLR(cs->cs_creg[5], cs->cs_wr5_rts);
   1035 	} else {
   1036 		SET(cs->cs_preg[5], cs->cs_wr5_rts);
   1037 		SET(cs->cs_creg[5], cs->cs_wr5_rts);
   1038 	}
   1039 	zs_write_reg(cs, 5, cs->cs_creg[5]);
   1040 }
   1041 
   1042 
   1043 /****************************************************************
   1044  * Interface to the lower layer (zscc)
   1045  ****************************************************************/
   1046 
   1047 static void zstty_rxint __P((struct zs_chanstate *));
   1048 static void zstty_txint __P((struct zs_chanstate *));
   1049 static void zstty_stint __P((struct zs_chanstate *));
   1050 
   1051 #define	integrate	static inline
   1052 static void zstty_softint  __P((struct zs_chanstate *));
   1053 integrate void zstty_rxsoft __P((struct zstty_softc *, struct tty *));
   1054 integrate void zstty_txsoft __P((struct zstty_softc *, struct tty *));
   1055 integrate void zstty_stsoft __P((struct zstty_softc *, struct tty *));
   1056 static void zstty_diag __P((void *));
   1057 
   1058 /*
   1059  * receiver ready interrupt.
   1060  * called at splzs
   1061  */
   1062 static void
   1063 zstty_rxint(cs)
   1064 	struct zs_chanstate *cs;
   1065 {
   1066 	struct zstty_softc *zst = cs->cs_private;
   1067 	u_char *put, *end;
   1068 	u_int cc;
   1069 	u_char rr0, rr1, c;
   1070 
   1071 	end = zst->zst_ebuf;
   1072 	put = zst->zst_rbput;
   1073 	cc = zst->zst_rbavail;
   1074 
   1075 	while (cc > 0) {
   1076 		/*
   1077 		 * First read the status, because reading the received char
   1078 		 * destroys the status of this char.
   1079 		 */
   1080 		rr1 = zs_read_reg(cs, 1);
   1081 		c = zs_read_data(cs);
   1082 
   1083 		if (ISSET(rr1, ZSRR1_FE | ZSRR1_DO | ZSRR1_PE)) {
   1084 			/* Clear the receive error. */
   1085 			zs_write_csr(cs, ZSWR0_RESET_ERRORS);
   1086 		}
   1087 
   1088 		put[0] = c;
   1089 		put[1] = rr1;
   1090 		put += 2;
   1091 		if (put >= end)
   1092 			put = zst->zst_rbuf;
   1093 		cc--;
   1094 
   1095 		rr0 = zs_read_csr(cs);
   1096 		if (!ISSET(rr0, ZSRR0_RX_READY))
   1097 			break;
   1098 	}
   1099 
   1100 	/*
   1101 	 * Current string of incoming characters ended because
   1102 	 * no more data was available or we ran out of space.
   1103 	 * Schedule a receive event if any data was received.
   1104 	 * If we're out of space, turn off receive interrupts.
   1105 	 */
   1106 	zst->zst_rbput = put;
   1107 	zst->zst_rbavail = cc;
   1108 	if (!ISSET(zst->zst_rx_flags, RX_TTY_OVERFLOWED)) {
   1109 		zst->zst_rx_ready = 1;
   1110 		cs->cs_softreq = 1;
   1111 	}
   1112 
   1113 	/*
   1114 	 * See if we are in danger of overflowing a buffer. If
   1115 	 * so, use hardware flow control to ease the pressure.
   1116 	 */
   1117 	if (!ISSET(zst->zst_rx_flags, RX_IBUF_BLOCKED) &&
   1118 	    cc < zst->zst_r_hiwat) {
   1119 		SET(zst->zst_rx_flags, RX_IBUF_BLOCKED);
   1120 		zs_hwiflow(zst);
   1121 	}
   1122 
   1123 	/*
   1124 	 * If we're out of space, disable receive interrupts
   1125 	 * until the queue has drained a bit.
   1126 	 */
   1127 	if (!cc) {
   1128 		SET(zst->zst_rx_flags, RX_IBUF_OVERFLOWED);
   1129 		CLR(cs->cs_preg[1], ZSWR1_RIE);
   1130 		cs->cs_creg[1] = cs->cs_preg[1];
   1131 		zs_write_reg(cs, 1, cs->cs_creg[1]);
   1132 	}
   1133 
   1134 #if 0
   1135 	printf("%xH%04d\n", zst->zst_rx_flags, zst->zst_rbavail);
   1136 #endif
   1137 }
   1138 
   1139 /*
   1140  * transmitter ready interrupt.  (splzs)
   1141  */
   1142 static void
   1143 zstty_txint(cs)
   1144 	struct zs_chanstate *cs;
   1145 {
   1146 	struct zstty_softc *zst = cs->cs_private;
   1147 
   1148 	/*
   1149 	 * If we've delayed a parameter change, do it now, and restart
   1150 	 * output.
   1151 	 */
   1152 	if (cs->cs_heldchange) {
   1153 		zs_loadchannelregs(cs);
   1154 		cs->cs_heldchange = 0;
   1155 		zst->zst_tbc = zst->zst_heldtbc;
   1156 		zst->zst_heldtbc = 0;
   1157 	}
   1158 
   1159 	/* Output the next character in the buffer, if any. */
   1160 	if (cs->cs_heldchar != 0) {
   1161 		/* An "out-of-band" character is waiting to be output */
   1162 		zs_write_data(cs, cs->cs_heldchar);
   1163 		cs->cs_heldchar = 0;
   1164 	} else if (zst->zst_tbc > 0) {
   1165 		zs_write_data(cs, *zst->zst_tba);
   1166 		zst->zst_tbc--;
   1167 		zst->zst_tba++;
   1168 	} else {
   1169 		/* Disable transmit completion interrupts if necessary. */
   1170 		if (ISSET(cs->cs_preg[1], ZSWR1_TIE)) {
   1171 			CLR(cs->cs_preg[1], ZSWR1_TIE);
   1172 			cs->cs_creg[1] = cs->cs_preg[1];
   1173 			zs_write_reg(cs, 1, cs->cs_creg[1]);
   1174 		}
   1175 		if (zst->zst_tx_busy) {
   1176 			zst->zst_tx_busy = 0;
   1177 			zst->zst_tx_done = 1;
   1178 			cs->cs_softreq = 1;
   1179 		}
   1180 	}
   1181 }
   1182 
   1183 /*
   1184  * status change interrupt.  (splzs)
   1185  */
   1186 static void
   1187 zstty_stint(cs)
   1188 	struct zs_chanstate *cs;
   1189 {
   1190 	struct zstty_softc *zst = cs->cs_private;
   1191 	u_char rr0, delta;
   1192 
   1193 	rr0 = zs_read_csr(cs);
   1194 	zs_write_csr(cs, ZSWR0_RESET_STATUS);
   1195 
   1196 	/*
   1197 	 * Check here for console break, so that we can abort
   1198 	 * even when interrupts are locking up the machine.
   1199 	 */
   1200 	if (ISSET(rr0, ZSRR0_BREAK) &&
   1201 	    ISSET(zst->zst_hwflags, ZS_HWFLAG_CONSOLE)) {
   1202 		zs_abort(cs);
   1203 		return;
   1204 	}
   1205 
   1206 	delta = rr0 ^ cs->cs_rr0;
   1207 	cs->cs_rr0 = rr0;
   1208 	if (ISSET(delta, cs->cs_rr0_mask)) {
   1209 		SET(cs->cs_rr0_delta, delta);
   1210 
   1211 		/*
   1212 		 * Stop output immediately if we lose the output
   1213 		 * flow control signal or carrier detect.
   1214 		 */
   1215 		if (ISSET(~rr0, cs->cs_rr0_mask)) {
   1216 			zst->zst_tbc = 0;
   1217 			zst->zst_heldtbc = 0;
   1218 		}
   1219 
   1220 		zst->zst_st_check = 1;
   1221 		cs->cs_softreq = 1;
   1222 	}
   1223 }
   1224 
   1225 void
   1226 zstty_diag(arg)
   1227 	void *arg;
   1228 {
   1229 	struct zstty_softc *zst = arg;
   1230 	int overflows, floods;
   1231 	int s;
   1232 
   1233 	s = splzs();
   1234 	overflows = zst->zst_overflows;
   1235 	zst->zst_overflows = 0;
   1236 	floods = zst->zst_floods;
   1237 	zst->zst_floods = 0;
   1238 	zst->zst_errors = 0;
   1239 	splx(s);
   1240 
   1241 	log(LOG_WARNING, "%s: %d silo overflow%s, %d ibuf flood%s\n",
   1242 	    zst->zst_dev.dv_xname,
   1243 	    overflows, overflows == 1 ? "" : "s",
   1244 	    floods, floods == 1 ? "" : "s");
   1245 }
   1246 
   1247 integrate void
   1248 zstty_rxsoft(zst, tp)
   1249 	struct zstty_softc *zst;
   1250 	struct tty *tp;
   1251 {
   1252 	struct zs_chanstate *cs = zst->zst_cs;
   1253 	int (*rint) __P((int c, struct tty *tp)) = linesw[tp->t_line].l_rint;
   1254 	u_char *get, *end;
   1255 	u_int cc, scc;
   1256 	u_char rr1;
   1257 	int code;
   1258 	int s;
   1259 
   1260 	end = zst->zst_ebuf;
   1261 	get = zst->zst_rbget;
   1262 	scc = cc = zstty_rbuf_size - zst->zst_rbavail;
   1263 
   1264 	if (cc == zstty_rbuf_size) {
   1265 		zst->zst_floods++;
   1266 		if (zst->zst_errors++ == 0)
   1267 			timeout(zstty_diag, zst, 60 * hz);
   1268 	}
   1269 
   1270 	while (cc) {
   1271 		code = get[0];
   1272 		rr1 = get[1];
   1273 		if (ISSET(rr1, ZSRR1_DO | ZSRR1_FE | ZSRR1_PE)) {
   1274 			if (ISSET(rr1, ZSRR1_DO)) {
   1275 				zst->zst_overflows++;
   1276 				if (zst->zst_errors++ == 0)
   1277 					timeout(zstty_diag, zst, 60 * hz);
   1278 			}
   1279 			if (ISSET(rr1, ZSRR1_FE))
   1280 				SET(code, TTY_FE);
   1281 			if (ISSET(rr1, ZSRR1_PE))
   1282 				SET(code, TTY_PE);
   1283 		}
   1284 		if ((*rint)(code, tp) == -1) {
   1285 			/*
   1286 			 * The line discipline's buffer is out of space.
   1287 			 */
   1288 			if (!ISSET(zst->zst_rx_flags, RX_TTY_BLOCKED)) {
   1289 				/*
   1290 				 * We're either not using flow control, or the
   1291 				 * line discipline didn't tell us to block for
   1292 				 * some reason.  Either way, we have no way to
   1293 				 * know when there's more space available, so
   1294 				 * just drop the rest of the data.
   1295 				 */
   1296 				get += cc << 1;
   1297 				if (get >= end)
   1298 					get -= zstty_rbuf_size << 1;
   1299 				cc = 0;
   1300 			} else {
   1301 				/*
   1302 				 * Don't schedule any more receive processing
   1303 				 * until the line discipline tells us there's
   1304 				 * space available (through comhwiflow()).
   1305 				 * Leave the rest of the data in the input
   1306 				 * buffer.
   1307 				 */
   1308 				SET(zst->zst_rx_flags, RX_TTY_OVERFLOWED);
   1309 			}
   1310 			break;
   1311 		}
   1312 		get += 2;
   1313 		if (get >= end)
   1314 			get = zst->zst_rbuf;
   1315 		cc--;
   1316 	}
   1317 
   1318 	if (cc != scc) {
   1319 		zst->zst_rbget = get;
   1320 		s = splzs();
   1321 		cc = zst->zst_rbavail += scc - cc;
   1322 		/* Buffers should be ok again, release possible block. */
   1323 		if (cc >= zst->zst_r_lowat) {
   1324 			if (ISSET(zst->zst_rx_flags, RX_IBUF_OVERFLOWED)) {
   1325 				CLR(zst->zst_rx_flags, RX_IBUF_OVERFLOWED);
   1326 				SET(cs->cs_preg[1], ZSWR1_RIE);
   1327 				cs->cs_creg[1] = cs->cs_preg[1];
   1328 				zs_write_reg(cs, 1, cs->cs_creg[1]);
   1329 			}
   1330 			if (ISSET(zst->zst_rx_flags, RX_IBUF_BLOCKED)) {
   1331 				CLR(zst->zst_rx_flags, RX_IBUF_BLOCKED);
   1332 				zs_hwiflow(zst);
   1333 			}
   1334 		}
   1335 		splx(s);
   1336 	}
   1337 
   1338 #if 0
   1339 	printf("%xS%04d\n", zst->zst_rx_flags, zst->zst_rbavail);
   1340 #endif
   1341 }
   1342 
   1343 integrate void
   1344 zstty_txsoft(zst, tp)
   1345 	struct zstty_softc *zst;
   1346 	struct tty *tp;
   1347 {
   1348 
   1349 	CLR(tp->t_state, TS_BUSY);
   1350 	if (ISSET(tp->t_state, TS_FLUSH))
   1351 		CLR(tp->t_state, TS_FLUSH);
   1352 	else
   1353 		ndflush(&tp->t_outq, (int)(zst->zst_tba - tp->t_outq.c_cf));
   1354 	(*linesw[tp->t_line].l_start)(tp);
   1355 }
   1356 
   1357 integrate void
   1358 zstty_stsoft(zst, tp)
   1359 	struct zstty_softc *zst;
   1360 	struct tty *tp;
   1361 {
   1362 	struct zs_chanstate *cs = zst->zst_cs;
   1363 	u_char rr0, delta;
   1364 	int s;
   1365 
   1366 	s = splzs();
   1367 	rr0 = cs->cs_rr0;
   1368 	delta = cs->cs_rr0_delta;
   1369 	cs->cs_rr0_delta = 0;
   1370 	splx(s);
   1371 
   1372 	if (ISSET(delta, cs->cs_rr0_dcd)) {
   1373 		/*
   1374 		 * Inform the tty layer that carrier detect changed.
   1375 		 */
   1376 		(void) (*linesw[tp->t_line].l_modem)(tp, ISSET(rr0, ZSRR0_DCD));
   1377 	}
   1378 
   1379 	if (ISSET(delta, cs->cs_rr0_cts)) {
   1380 		/* Block or unblock output according to flow control. */
   1381 		if (ISSET(rr0, cs->cs_rr0_cts)) {
   1382 			zst->zst_tx_stopped = 0;
   1383 			(*linesw[tp->t_line].l_start)(tp);
   1384 		} else {
   1385 			zst->zst_tx_stopped = 1;
   1386 		}
   1387 	}
   1388 }
   1389 
   1390 /*
   1391  * Software interrupt.  Called at zssoft
   1392  *
   1393  * The main job to be done here is to empty the input ring
   1394  * by passing its contents up to the tty layer.  The ring is
   1395  * always emptied during this operation, therefore the ring
   1396  * must not be larger than the space after "high water" in
   1397  * the tty layer, or the tty layer might drop our input.
   1398  *
   1399  * Note: an "input blockage" condition is assumed to exist if
   1400  * EITHER the TS_TBLOCK flag or zst_rx_blocked flag is set.
   1401  */
   1402 static void
   1403 zstty_softint(cs)
   1404 	struct zs_chanstate *cs;
   1405 {
   1406 	struct zstty_softc *zst = cs->cs_private;
   1407 	struct tty *tp = zst->zst_tty;
   1408 	int s;
   1409 
   1410 	s = spltty();
   1411 
   1412 	if (zst->zst_rx_ready) {
   1413 		zst->zst_rx_ready = 0;
   1414 		zstty_rxsoft(zst, tp);
   1415 	}
   1416 
   1417 	if (zst->zst_st_check) {
   1418 		zst->zst_st_check = 0;
   1419 		zstty_stsoft(zst, tp);
   1420 	}
   1421 
   1422 	if (zst->zst_tx_done) {
   1423 		zst->zst_tx_done = 0;
   1424 		zstty_txsoft(zst, tp);
   1425 	}
   1426 
   1427 	splx(s);
   1428 }
   1429 
   1430 struct zsops zsops_tty = {
   1431 	zstty_rxint,	/* receive char available */
   1432 	zstty_stint,	/* external/status */
   1433 	zstty_txint,	/* xmit buffer empty */
   1434 	zstty_softint,	/* process software interrupt */
   1435 };
   1436