Home | History | Annotate | Line # | Download | only in qbus
dl.c revision 1.26.6.6
      1  1.26.6.6     skrll /*	$NetBSD: dl.c,v 1.26.6.6 2005/11/10 14:07:40 skrll Exp $	*/
      2       1.2   thorpej 
      3       1.2   thorpej /*-
      4       1.2   thorpej  * Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
      5       1.2   thorpej  * All rights reserved.
      6       1.2   thorpej  *
      7       1.2   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8       1.2   thorpej  * by Jason R. Thorpe.
      9       1.2   thorpej  *
     10       1.2   thorpej  * Redistribution and use in source and binary forms, with or without
     11       1.2   thorpej  * modification, are permitted provided that the following conditions
     12       1.2   thorpej  * are met:
     13       1.2   thorpej  * 1. Redistributions of source code must retain the above copyright
     14       1.2   thorpej  *    notice, this list of conditions and the following disclaimer.
     15       1.2   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.2   thorpej  *    notice, this list of conditions and the following disclaimer in the
     17       1.2   thorpej  *    documentation and/or other materials provided with the distribution.
     18       1.2   thorpej  * 3. All advertising materials mentioning features or use of this software
     19       1.2   thorpej  *    must display the following acknowledgement:
     20       1.2   thorpej  *	This product includes software developed by the NetBSD
     21       1.2   thorpej  *	Foundation, Inc. and its contributors.
     22       1.2   thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23       1.2   thorpej  *    contributors may be used to endorse or promote products derived
     24       1.2   thorpej  *    from this software without specific prior written permission.
     25       1.2   thorpej  *
     26       1.2   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27       1.2   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28       1.2   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29       1.2   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30       1.2   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31       1.2   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32       1.2   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33       1.2   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34       1.2   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35       1.2   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36       1.2   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     37       1.2   thorpej  */
     38       1.2   thorpej 
     39       1.1     ragge /*
     40       1.1     ragge  * Copyright (c) 1997  Ben Harris.  All rights reserved.
     41       1.1     ragge  * Copyright (c) 1982, 1986, 1990, 1992, 1993
     42       1.1     ragge  *	The Regents of the University of California.  All rights reserved.
     43       1.1     ragge  *
     44       1.1     ragge  * This code is derived from software contributed to Berkeley by
     45       1.1     ragge  * Ralph Campbell and Rick Macklem.
     46       1.1     ragge  *
     47       1.1     ragge  * Redistribution and use in source and binary forms, with or without
     48       1.1     ragge  * modification, are permitted provided that the following conditions
     49       1.1     ragge  * are met:
     50       1.1     ragge  * 1. Redistributions of source code must retain the above copyright
     51       1.1     ragge  *    notice, this list of conditions and the following disclaimer.
     52       1.1     ragge  * 2. Redistributions in binary form must reproduce the above copyright
     53       1.1     ragge  *    notice, this list of conditions and the following disclaimer in the
     54       1.1     ragge  *    documentation and/or other materials provided with the distribution.
     55  1.26.6.1     skrll  * 3. Neither the name of the University nor the names of its contributors
     56  1.26.6.1     skrll  *    may be used to endorse or promote products derived from this software
     57  1.26.6.1     skrll  *    without specific prior written permission.
     58  1.26.6.1     skrll  *
     59  1.26.6.1     skrll  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     60  1.26.6.1     skrll  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     61  1.26.6.1     skrll  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     62  1.26.6.1     skrll  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     63  1.26.6.1     skrll  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     64  1.26.6.1     skrll  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     65  1.26.6.1     skrll  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     66  1.26.6.1     skrll  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     67  1.26.6.1     skrll  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     68  1.26.6.1     skrll  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     69  1.26.6.1     skrll  * SUCH DAMAGE.
     70  1.26.6.1     skrll  */
     71  1.26.6.1     skrll 
     72  1.26.6.1     skrll /*
     73  1.26.6.1     skrll  * Copyright (c) 1996  Ken C. Wellsch.  All rights reserved.
     74  1.26.6.1     skrll  *
     75  1.26.6.1     skrll  * This code is derived from software contributed to Berkeley by
     76  1.26.6.1     skrll  * Ralph Campbell and Rick Macklem.
     77  1.26.6.1     skrll  *
     78  1.26.6.1     skrll  * Redistribution and use in source and binary forms, with or without
     79  1.26.6.1     skrll  * modification, are permitted provided that the following conditions
     80  1.26.6.1     skrll  * are met:
     81  1.26.6.1     skrll  * 1. Redistributions of source code must retain the above copyright
     82  1.26.6.1     skrll  *    notice, this list of conditions and the following disclaimer.
     83  1.26.6.1     skrll  * 2. Redistributions in binary form must reproduce the above copyright
     84  1.26.6.1     skrll  *    notice, this list of conditions and the following disclaimer in the
     85  1.26.6.1     skrll  *    documentation and/or other materials provided with the distribution.
     86       1.1     ragge  * 3. All advertising materials mentioning features or use of this software
     87       1.1     ragge  *    must display the following acknowledgement:
     88       1.1     ragge  *	This product includes software developed by the University of
     89       1.1     ragge  *	California, Berkeley and its contributors.
     90       1.1     ragge  * 4. Neither the name of the University nor the names of its contributors
     91       1.1     ragge  *    may be used to endorse or promote products derived from this software
     92       1.1     ragge  *    without specific prior written permission.
     93       1.1     ragge  *
     94       1.1     ragge  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     95       1.1     ragge  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     96       1.1     ragge  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     97       1.1     ragge  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     98       1.1     ragge  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     99       1.1     ragge  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    100       1.1     ragge  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    101       1.1     ragge  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    102       1.1     ragge  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    103       1.1     ragge  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    104       1.1     ragge  * SUCH DAMAGE.
    105       1.1     ragge  */
    106       1.1     ragge 
    107       1.1     ragge /*
    108       1.1     ragge  * dl.c -- Device driver for the DL11 and DLV11 serial cards.
    109       1.1     ragge  *
    110       1.1     ragge  * OS-interface code derived from the dz and dca (hp300) drivers.
    111       1.1     ragge  */
    112      1.19     lukem 
    113      1.19     lukem #include <sys/cdefs.h>
    114  1.26.6.6     skrll __KERNEL_RCSID(0, "$NetBSD: dl.c,v 1.26.6.6 2005/11/10 14:07:40 skrll Exp $");
    115       1.1     ragge 
    116       1.1     ragge #include <sys/param.h>
    117       1.1     ragge #include <sys/systm.h>
    118       1.1     ragge #include <sys/ioctl.h>
    119       1.1     ragge #include <sys/tty.h>
    120       1.1     ragge #include <sys/proc.h>
    121       1.1     ragge #include <sys/buf.h>
    122       1.1     ragge #include <sys/conf.h>
    123       1.1     ragge #include <sys/file.h>
    124       1.1     ragge #include <sys/uio.h>
    125       1.1     ragge #include <sys/kernel.h>
    126       1.1     ragge #include <sys/syslog.h>
    127       1.1     ragge #include <sys/device.h>
    128       1.1     ragge 
    129       1.7     ragge #include <machine/bus.h>
    130       1.1     ragge 
    131      1.10     ragge #include <dev/qbus/ubavar.h>
    132       1.1     ragge 
    133      1.10     ragge #include <dev/qbus/dlreg.h>
    134       1.1     ragge 
    135       1.7     ragge #include "ioconf.h"
    136       1.1     ragge 
    137       1.1     ragge struct dl_softc {
    138       1.1     ragge 	struct device	sc_dev;
    139      1.13      matt 	struct evcnt	sc_rintrcnt;
    140      1.13      matt 	struct evcnt	sc_tintrcnt;
    141       1.7     ragge 	bus_space_tag_t	sc_iot;
    142       1.7     ragge 	bus_space_handle_t sc_ioh;
    143       1.7     ragge 	struct tty	*sc_tty;
    144       1.1     ragge };
    145       1.1     ragge 
    146      1.13      matt static	int	dl_match (struct device *, struct cfdata *, void *);
    147      1.13      matt static	void	dl_attach (struct device *, struct device *, void *);
    148      1.13      matt static	void	dlrint (void *);
    149      1.13      matt static	void	dlxint (void *);
    150      1.13      matt static	void	dlstart (struct tty *);
    151      1.13      matt static	int	dlparam (struct tty *, struct termios *);
    152      1.13      matt static	void	dlbrk (struct dl_softc *, int);
    153       1.1     ragge 
    154      1.24   thorpej CFATTACH_DECL(dl, sizeof(struct dl_softc),
    155      1.25   thorpej     dl_match, dl_attach, NULL, NULL);
    156      1.21   gehenna 
    157      1.21   gehenna dev_type_open(dlopen);
    158      1.21   gehenna dev_type_close(dlclose);
    159      1.21   gehenna dev_type_read(dlread);
    160      1.21   gehenna dev_type_write(dlwrite);
    161      1.21   gehenna dev_type_ioctl(dlioctl);
    162      1.21   gehenna dev_type_stop(dlstop);
    163      1.21   gehenna dev_type_tty(dltty);
    164      1.21   gehenna dev_type_poll(dlpoll);
    165      1.21   gehenna 
    166      1.21   gehenna const struct cdevsw dl_cdevsw = {
    167      1.21   gehenna 	dlopen, dlclose, dlread, dlwrite, dlioctl,
    168      1.26  jdolecek 	dlstop, dltty, dlpoll, nommap, ttykqfilter, D_TTY
    169       1.1     ragge };
    170       1.3   thorpej 
    171       1.7     ragge #define	DL_READ_WORD(reg) \
    172       1.7     ragge 	bus_space_read_2(sc->sc_iot, sc->sc_ioh, reg)
    173       1.7     ragge #define	DL_WRITE_WORD(reg, val) \
    174       1.7     ragge 	bus_space_write_2(sc->sc_iot, sc->sc_ioh, reg, val)
    175       1.7     ragge #define	DL_WRITE_BYTE(reg, val) \
    176       1.7     ragge 	bus_space_write_1(sc->sc_iot, sc->sc_ioh, reg, val)
    177       1.1     ragge 
    178       1.1     ragge /* Autoconfig handles: setup the controller to interrupt, */
    179       1.1     ragge /* then complete the housecleaning for full operation */
    180       1.1     ragge 
    181       1.1     ragge static int
    182      1.14      matt dl_match (struct device *parent, struct cfdata *cf, void *aux)
    183       1.1     ragge {
    184       1.1     ragge 	struct uba_attach_args *ua = aux;
    185       1.1     ragge 
    186       1.1     ragge #ifdef DL_DEBUG
    187       1.7     ragge 	printf("Probing for dl at %lo ... ", (long)ua->ua_iaddr);
    188       1.1     ragge #endif
    189       1.1     ragge 
    190       1.7     ragge 	bus_space_write_2(ua->ua_iot, ua->ua_ioh, DL_UBA_XCSR, DL_XCSR_TXIE);
    191       1.7     ragge 	if (bus_space_read_2(ua->ua_iot, ua->ua_ioh, DL_UBA_XCSR) !=
    192       1.7     ragge 	    (DL_XCSR_TXIE | DL_XCSR_TX_READY)) {
    193       1.1     ragge #ifdef DL_DEBUG
    194  1.26.6.5     skrll 		printf("failed (step 1; XCSR = %.4b)\n",
    195  1.26.6.5     skrll 		    bus_space_read_2(ua->ua_iot, ua->ua_ioh, DL_UBA_XCSR),
    196       1.7     ragge 		    DL_XCSR_BITS);
    197       1.1     ragge #endif
    198       1.1     ragge 		return 0;
    199       1.1     ragge 	}
    200  1.26.6.5     skrll 
    201       1.1     ragge 	/*
    202       1.1     ragge 	 * We have to force an interrupt so the uba driver can work
    203       1.1     ragge 	 * out where we are.  Unfortunately, the only way to make a
    204       1.1     ragge 	 * DL11 interrupt is to get it to send or receive a
    205       1.1     ragge 	 * character.  We'll send a NUL and hope it doesn't hurt
    206       1.1     ragge 	 * anything.
    207       1.1     ragge 	 */
    208       1.1     ragge 
    209       1.7     ragge 	bus_space_write_1(ua->ua_iot, ua->ua_ioh, DL_UBA_XBUFL, '\0');
    210       1.1     ragge #if 0 /* This test seems to fail 2/3 of the time :-( */
    211       1.1     ragge 	if (dladdr->dl_xcsr != (DL_XCSR_TXIE)) {
    212       1.1     ragge #ifdef DL_DEBUG
    213  1.26.6.5     skrll 		printf("failed (step 2; XCSR = %.4b)\n", dladdr->dl_xcsr,
    214  1.26.6.5     skrll 		    DL_XCSR_BITS);
    215       1.1     ragge #endif
    216       1.1     ragge 		return 0;
    217       1.1     ragge 	}
    218       1.1     ragge #endif
    219       1.1     ragge 	DELAY(100000); /* delay 1/10 s for character to transmit */
    220       1.7     ragge 	if (bus_space_read_2(ua->ua_iot, ua->ua_ioh, DL_UBA_XCSR) !=
    221       1.7     ragge 	    (DL_XCSR_TXIE | DL_XCSR_TX_READY)) {
    222       1.1     ragge #ifdef DL_DEBUG
    223  1.26.6.5     skrll 		printf("failed (step 3; XCSR = %.4b)\n",
    224       1.7     ragge 		    bus_space_read_2(ua->ua_iot, ua->ua_ioh, DL_UBA_XCSR),
    225       1.7     ragge 		    DL_XCSR_BITS);
    226       1.1     ragge #endif
    227       1.1     ragge 		return 0;
    228       1.1     ragge 	}
    229       1.1     ragge 
    230       1.1     ragge 
    231  1.26.6.5     skrll 	/* What else do I need to do? */
    232       1.1     ragge 
    233       1.1     ragge 	return 1;
    234       1.1     ragge 
    235       1.1     ragge }
    236       1.1     ragge 
    237       1.1     ragge static void
    238      1.14      matt dl_attach (struct device *parent, struct device *self, void *aux)
    239       1.1     ragge {
    240       1.1     ragge 	struct dl_softc *sc = (void *)self;
    241      1.12  augustss 	struct uba_attach_args *ua = aux;
    242       1.1     ragge 
    243       1.7     ragge 	sc->sc_iot = ua->ua_iot;
    244       1.7     ragge 	sc->sc_ioh = ua->ua_ioh;
    245  1.26.6.5     skrll 
    246       1.1     ragge 	/* Tidy up the device */
    247       1.1     ragge 
    248       1.7     ragge 	DL_WRITE_WORD(DL_UBA_RCSR, DL_RCSR_RXIE);
    249       1.7     ragge 	DL_WRITE_WORD(DL_UBA_XCSR, DL_XCSR_TXIE);
    250       1.1     ragge 
    251       1.1     ragge 	/* Initialize our softc structure. Should be done in open? */
    252  1.26.6.5     skrll 
    253       1.1     ragge 	sc->sc_tty = ttymalloc();
    254       1.1     ragge 	tty_attach(sc->sc_tty);
    255       1.1     ragge 
    256      1.11      matt 	/* Now register the TX & RX interrupt handlers */
    257      1.13      matt 	uba_intr_establish(ua->ua_icookie, ua->ua_cvec,
    258      1.13      matt 		dlxint, sc, &sc->sc_tintrcnt);
    259      1.13      matt 	uba_intr_establish(ua->ua_icookie, ua->ua_cvec - 4,
    260      1.13      matt 		dlrint, sc, &sc->sc_rintrcnt);
    261      1.14      matt 	evcnt_attach_dynamic(&sc->sc_rintrcnt, EVCNT_TYPE_INTR, ua->ua_evcnt,
    262      1.14      matt 		sc->sc_dev.dv_xname, "rintr");
    263      1.14      matt 	evcnt_attach_dynamic(&sc->sc_tintrcnt, EVCNT_TYPE_INTR, ua->ua_evcnt,
    264      1.14      matt 		sc->sc_dev.dv_xname, "tintr");
    265       1.1     ragge 
    266       1.1     ragge 	printf("\n");
    267       1.1     ragge }
    268       1.1     ragge 
    269       1.1     ragge /* Receiver Interrupt Handler */
    270       1.1     ragge 
    271       1.1     ragge static void
    272      1.14      matt dlrint(void *arg)
    273       1.1     ragge {
    274      1.14      matt 	struct dl_softc *sc = arg;
    275       1.1     ragge 
    276       1.7     ragge 	if (DL_READ_WORD(DL_UBA_RCSR) & DL_RCSR_RX_DONE) {
    277      1.14      matt 		struct tty *tp = sc->sc_tty;
    278      1.14      matt 		unsigned c;
    279      1.14      matt 		int cc;
    280      1.14      matt 
    281  1.26.6.5     skrll 		c = DL_READ_WORD(DL_UBA_RBUF);
    282       1.1     ragge 		cc = c & 0xFF;
    283       1.1     ragge 
    284       1.1     ragge 		if (!(tp->t_state & TS_ISOPEN)) {
    285       1.1     ragge 			wakeup((caddr_t)&tp->t_rawq);
    286       1.1     ragge 			return;
    287       1.1     ragge 		}
    288       1.1     ragge 
    289      1.14      matt 		if (c & DL_RBUF_OVERRUN_ERR) {
    290       1.1     ragge 			/*
    291       1.1     ragge 			 * XXX: This should really be logged somwhere
    292       1.1     ragge 			 * else where we can afford the time.
    293       1.1     ragge 			 */
    294       1.1     ragge 			log(LOG_WARNING, "%s: rx overrun\n",
    295       1.1     ragge 			    sc->sc_dev.dv_xname);
    296      1.14      matt 		}
    297       1.1     ragge 		if (c & DL_RBUF_FRAMING_ERR)
    298       1.1     ragge 			cc |= TTY_FE;
    299       1.1     ragge 		if (c & DL_RBUF_PARITY_ERR)
    300       1.1     ragge 			cc |= TTY_PE;
    301       1.1     ragge 
    302      1.15       eeh 		(*tp->t_linesw->l_rint)(cc, tp);
    303      1.14      matt #if defined(DIAGNOSTIC)
    304      1.14      matt 	} else {
    305       1.1     ragge 		log(LOG_WARNING, "%s: stray rx interrupt\n",
    306       1.1     ragge 		    sc->sc_dev.dv_xname);
    307      1.14      matt #endif
    308      1.14      matt 	}
    309       1.1     ragge }
    310       1.1     ragge 
    311       1.1     ragge /* Transmitter Interrupt Handler */
    312       1.1     ragge 
    313       1.1     ragge static void
    314      1.14      matt dlxint(void *arg)
    315       1.1     ragge {
    316      1.11      matt 	struct dl_softc *sc = arg;
    317      1.14      matt 	struct tty *tp = sc->sc_tty;
    318      1.14      matt 
    319       1.1     ragge 	tp->t_state &= ~(TS_BUSY | TS_FLUSH);
    320      1.16     enami 	(*tp->t_linesw->l_start)(tp);
    321  1.26.6.5     skrll 
    322       1.1     ragge 	return;
    323       1.1     ragge }
    324       1.1     ragge 
    325       1.1     ragge int
    326  1.26.6.4     skrll dlopen(dev_t dev, int flag, int mode, struct lwp *l)
    327       1.1     ragge {
    328  1.26.6.4     skrll 	struct proc *p = l->l_proc;
    329      1.12  augustss 	struct tty *tp;
    330      1.14      matt 	struct dl_softc *sc;
    331      1.12  augustss 	int unit;
    332       1.1     ragge 
    333       1.7     ragge 	unit = minor(dev);
    334       1.1     ragge 
    335       1.1     ragge 	if (unit >= dl_cd.cd_ndevs || dl_cd.cd_devs[unit] == NULL)
    336       1.1     ragge 		return ENXIO;
    337       1.1     ragge 	sc = dl_cd.cd_devs[unit];
    338       1.1     ragge 
    339       1.1     ragge 	tp = sc->sc_tty;
    340       1.1     ragge 	if (tp == NULL)
    341       1.1     ragge 		return ENODEV;
    342       1.1     ragge 	tp->t_oproc = dlstart;
    343       1.1     ragge 	tp->t_param = dlparam;
    344       1.1     ragge 	tp->t_dev = dev;
    345       1.1     ragge 
    346       1.1     ragge 	if (!(tp->t_state & TS_ISOPEN)) {
    347       1.1     ragge 		ttychars(tp);
    348       1.1     ragge 		tp->t_iflag = TTYDEF_IFLAG;
    349       1.1     ragge 		tp->t_oflag = TTYDEF_OFLAG;
    350       1.1     ragge 		/* No modem control, so set CLOCAL. */
    351       1.1     ragge 		tp->t_cflag = TTYDEF_CFLAG | CLOCAL;
    352       1.1     ragge 		tp->t_lflag = TTYDEF_LFLAG;
    353       1.1     ragge 		tp->t_ispeed = tp->t_ospeed = TTYDEF_SPEED;
    354  1.26.6.5     skrll 
    355       1.1     ragge 		dlparam(tp, &tp->t_termios);
    356       1.1     ragge 		ttsetwater(tp);
    357  1.26.6.5     skrll 
    358  1.26.6.6     skrll 	} else if ((tp->t_state & TS_XCLUDE) &&
    359  1.26.6.6     skrll 		   suser(p->p_ucred, &p->p_acflag) != 0)
    360       1.1     ragge 		return EBUSY;
    361       1.1     ragge 
    362      1.15       eeh 	return ((*tp->t_linesw->l_open)(dev, tp));
    363       1.1     ragge }
    364       1.1     ragge 
    365       1.1     ragge /*ARGSUSED*/
    366       1.1     ragge int
    367  1.26.6.4     skrll dlclose(dev_t dev, int flag, int mode, struct lwp *l)
    368       1.1     ragge {
    369      1.14      matt 	struct dl_softc *sc = dl_cd.cd_devs[minor(dev)];
    370      1.14      matt 	struct tty *tp = sc->sc_tty;
    371       1.1     ragge 
    372      1.15       eeh 	(*tp->t_linesw->l_close)(tp, flag);
    373       1.1     ragge 
    374       1.1     ragge 	/* Make sure a BREAK state is not left enabled. */
    375       1.1     ragge 	dlbrk(sc, 0);
    376       1.1     ragge 
    377       1.1     ragge 	return (ttyclose(tp));
    378       1.1     ragge }
    379       1.1     ragge 
    380       1.1     ragge int
    381      1.14      matt dlread(dev_t dev, struct uio *uio, int flag)
    382       1.1     ragge {
    383      1.14      matt 	struct dl_softc *sc = dl_cd.cd_devs[minor(dev)];
    384      1.14      matt 	struct tty *tp = sc->sc_tty;
    385       1.1     ragge 
    386      1.15       eeh 	return ((*tp->t_linesw->l_read)(tp, uio, flag));
    387       1.1     ragge }
    388       1.1     ragge 
    389       1.1     ragge int
    390      1.14      matt dlwrite(dev_t dev, struct uio *uio, int flag)
    391       1.1     ragge {
    392      1.14      matt 	struct dl_softc *sc = dl_cd.cd_devs[minor(dev)];
    393      1.14      matt 	struct tty *tp = sc->sc_tty;
    394       1.1     ragge 
    395      1.15       eeh 	return ((*tp->t_linesw->l_write)(tp, uio, flag));
    396      1.17       scw }
    397      1.17       scw 
    398      1.17       scw int
    399  1.26.6.4     skrll dlpoll(dev_t dev, int events, struct lwp *l)
    400      1.17       scw {
    401      1.17       scw 	struct dl_softc *sc = dl_cd.cd_devs[minor(dev)];
    402      1.17       scw 	struct tty *tp = sc->sc_tty;
    403  1.26.6.5     skrll 
    404  1.26.6.4     skrll 	return ((*tp->t_linesw->l_poll)(tp, events, l));
    405       1.1     ragge }
    406       1.1     ragge 
    407       1.1     ragge int
    408  1.26.6.4     skrll dlioctl(dev_t dev, unsigned long cmd, caddr_t data, int flag, struct lwp *l)
    409       1.1     ragge {
    410      1.14      matt 	struct dl_softc *sc = dl_cd.cd_devs[minor(dev)];
    411  1.26.6.5     skrll 	struct tty *tp = sc->sc_tty;
    412  1.26.6.5     skrll 	int error;
    413       1.1     ragge 
    414       1.1     ragge 
    415  1.26.6.5     skrll 	error = (*tp->t_linesw->l_ioctl)(tp, cmd, data, flag, l);
    416  1.26.6.5     skrll 	if (error != EPASSTHROUGH)
    417  1.26.6.5     skrll 		return (error);
    418      1.20    atatat 
    419  1.26.6.5     skrll 	error = ttioctl(tp, cmd, data, flag, l);
    420  1.26.6.5     skrll 	if (error != EPASSTHROUGH)
    421  1.26.6.5     skrll 		return (error);
    422       1.1     ragge 
    423       1.1     ragge 	switch (cmd) {
    424       1.1     ragge 
    425  1.26.6.5     skrll 	case TIOCSBRK:
    426  1.26.6.5     skrll 		dlbrk(sc, 1);
    427  1.26.6.5     skrll 		break;
    428  1.26.6.5     skrll 
    429  1.26.6.5     skrll 	case TIOCCBRK:
    430  1.26.6.5     skrll 		dlbrk(sc, 0);
    431  1.26.6.5     skrll 		break;
    432  1.26.6.5     skrll 
    433  1.26.6.5     skrll 	case TIOCMGET:
    434       1.1     ragge 		/* No modem control, assume they're all low. */
    435  1.26.6.5     skrll 		*(int *)data = 0;
    436  1.26.6.5     skrll 		break;
    437       1.1     ragge 
    438  1.26.6.5     skrll 	default:
    439  1.26.6.5     skrll 		return (EPASSTHROUGH);
    440  1.26.6.5     skrll 	}
    441  1.26.6.5     skrll 	return (0);
    442       1.1     ragge }
    443       1.1     ragge 
    444       1.1     ragge struct tty *
    445      1.14      matt dltty(dev_t dev)
    446       1.1     ragge {
    447      1.14      matt 	struct dl_softc *sc = dl_cd.cd_devs[minor(dev)];
    448      1.14      matt 
    449       1.1     ragge 	return sc->sc_tty;
    450       1.1     ragge }
    451       1.1     ragge 
    452       1.1     ragge void
    453      1.14      matt dlstop(struct tty *tp, int flag)
    454       1.1     ragge {
    455      1.14      matt 	int s = spltty();
    456       1.1     ragge 
    457      1.14      matt 	if ((tp->t_state & (TS_BUSY|TS_TTSTOP)) == TS_BUSY)
    458      1.14      matt 		tp->t_state |= TS_FLUSH;
    459  1.26.6.5     skrll 	splx(s);
    460       1.1     ragge }
    461       1.1     ragge 
    462       1.1     ragge static void
    463      1.14      matt dlstart(struct tty *tp)
    464       1.1     ragge {
    465      1.14      matt 	struct dl_softc *sc = dl_cd.cd_devs[minor(tp->t_dev)];
    466      1.14      matt 	int s = spltty();
    467       1.1     ragge 
    468  1.26.6.5     skrll 	if (tp->t_state & (TS_TIMEOUT|TS_BUSY|TS_TTSTOP))
    469  1.26.6.5     skrll 		goto out;
    470  1.26.6.5     skrll 	if (tp->t_outq.c_cc <= tp->t_lowat) {
    471  1.26.6.5     skrll 		if (tp->t_state & TS_ASLEEP) {
    472  1.26.6.5     skrll 			tp->t_state &= ~TS_ASLEEP;
    473  1.26.6.5     skrll 			wakeup((caddr_t)&tp->t_outq);
    474  1.26.6.5     skrll 		}
    475  1.26.6.5     skrll 		selwakeup(&tp->t_wsel);
    476  1.26.6.5     skrll 	}
    477  1.26.6.5     skrll 	if (tp->t_outq.c_cc == 0)
    478  1.26.6.5     skrll 		goto out;
    479       1.1     ragge 
    480       1.1     ragge 
    481       1.7     ragge 	if (DL_READ_WORD(DL_UBA_XCSR) & DL_XCSR_TX_READY) {
    482       1.1     ragge 		tp->t_state |= TS_BUSY;
    483       1.7     ragge 		DL_WRITE_BYTE(DL_UBA_XBUFL, getc(&tp->t_outq));
    484       1.1     ragge 	}
    485       1.1     ragge out:
    486       1.1     ragge 	splx(s);
    487       1.1     ragge 	return;
    488       1.1     ragge }
    489       1.1     ragge 
    490       1.1     ragge /*ARGSUSED*/
    491       1.1     ragge static int
    492      1.14      matt dlparam(struct tty *tp, struct termios *t)
    493       1.1     ragge {
    494       1.1     ragge 	/*
    495       1.1     ragge 	 * All this kind of stuff (speed, character format, whatever)
    496       1.1     ragge 	 * is set by jumpers on the card.  Changing it is thus rather
    497       1.1     ragge 	 * tricky for a mere device driver.
    498       1.1     ragge 	 */
    499       1.1     ragge 	return 0;
    500       1.1     ragge }
    501       1.1     ragge 
    502       1.1     ragge static void
    503      1.14      matt dlbrk(struct dl_softc *sc, int state)
    504       1.1     ragge {
    505       1.7     ragge 	int s = spltty();
    506       1.7     ragge 
    507       1.7     ragge 	if (state) {
    508       1.7     ragge 		DL_WRITE_WORD(DL_UBA_XCSR, DL_READ_WORD(DL_UBA_XCSR) |
    509       1.7     ragge 		    DL_XCSR_TX_BREAK);
    510       1.7     ragge 	} else {
    511       1.7     ragge 		DL_WRITE_WORD(DL_UBA_XCSR, DL_READ_WORD(DL_UBA_XCSR) &
    512       1.7     ragge 		    ~DL_XCSR_TX_BREAK);
    513       1.7     ragge 	}
    514       1.1     ragge 	splx(s);
    515       1.1     ragge }
    516