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