Home | History | Annotate | Line # | Download | only in usb
ucom.c revision 1.120.4.1
      1  1.120.4.1  christos /*	$NetBSD: ucom.c,v 1.120.4.1 2019/06/10 22:07:34 christos Exp $	*/
      2        1.1  augustss 
      3        1.1  augustss /*
      4       1.22  augustss  * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
      5        1.1  augustss  * All rights reserved.
      6        1.1  augustss  *
      7        1.1  augustss  * This code is derived from software contributed to The NetBSD Foundation
      8       1.23  augustss  * by Lennart Augustsson (lennart (at) augustsson.net) at
      9        1.1  augustss  * Carlstedt Research & Technology.
     10        1.1  augustss  *
     11        1.1  augustss  * Redistribution and use in source and binary forms, with or without
     12        1.1  augustss  * modification, are permitted provided that the following conditions
     13        1.1  augustss  * are met:
     14        1.1  augustss  * 1. Redistributions of source code must retain the above copyright
     15        1.1  augustss  *    notice, this list of conditions and the following disclaimer.
     16        1.1  augustss  * 2. Redistributions in binary form must reproduce the above copyright
     17        1.1  augustss  *    notice, this list of conditions and the following disclaimer in the
     18        1.1  augustss  *    documentation and/or other materials provided with the distribution.
     19        1.1  augustss  *
     20        1.1  augustss  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21        1.1  augustss  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22        1.1  augustss  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23        1.1  augustss  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24        1.1  augustss  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25        1.1  augustss  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26        1.1  augustss  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27        1.1  augustss  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28        1.1  augustss  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29        1.1  augustss  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30        1.1  augustss  * POSSIBILITY OF SUCH DAMAGE.
     31        1.1  augustss  */
     32       1.22  augustss /*
     33       1.22  augustss  * This code is very heavily based on the 16550 driver, com.c.
     34       1.22  augustss  */
     35       1.40     lukem 
     36       1.40     lukem #include <sys/cdefs.h>
     37  1.120.4.1  christos __KERNEL_RCSID(0, "$NetBSD: ucom.c,v 1.120.4.1 2019/06/10 22:07:34 christos Exp $");
     38      1.115     skrll 
     39      1.115     skrll #ifdef _KERNEL_OPT
     40      1.115     skrll #include "opt_usb.h"
     41      1.115     skrll #endif
     42        1.1  augustss 
     43        1.1  augustss #include <sys/param.h>
     44        1.1  augustss #include <sys/systm.h>
     45        1.1  augustss #include <sys/kernel.h>
     46        1.1  augustss #include <sys/ioctl.h>
     47        1.3  augustss #include <sys/conf.h>
     48        1.1  augustss #include <sys/tty.h>
     49        1.1  augustss #include <sys/file.h>
     50        1.1  augustss #include <sys/select.h>
     51        1.1  augustss #include <sys/proc.h>
     52        1.1  augustss #include <sys/vnode.h>
     53       1.12  augustss #include <sys/device.h>
     54        1.1  augustss #include <sys/poll.h>
     55       1.82    martin #include <sys/queue.h>
     56       1.63      elad #include <sys/kauth.h>
     57      1.111     skrll #include <sys/sysctl.h>
     58      1.106       gdt #include <sys/timepps.h>
     59      1.109  riastrad #include <sys/rndsource.h>
     60        1.1  augustss 
     61        1.1  augustss #include <dev/usb/usb.h>
     62        1.1  augustss 
     63        1.1  augustss #include <dev/usb/usbdi.h>
     64        1.1  augustss #include <dev/usb/usbdi_util.h>
     65        1.1  augustss #include <dev/usb/usbdevs.h>
     66        1.1  augustss #include <dev/usb/usb_quirks.h>
     67      1.111     skrll #include <dev/usb/usbhist.h>
     68        1.1  augustss 
     69       1.12  augustss #include <dev/usb/ucomvar.h>
     70       1.12  augustss 
     71       1.13  augustss #include "ucom.h"
     72       1.53  drochner #include "locators.h"
     73  1.120.4.1  christos #include "ioconf.h"
     74       1.53  drochner 
     75       1.13  augustss #if NUCOM > 0
     76       1.13  augustss 
     77      1.111     skrll #ifdef USB_DEBUG
     78      1.111     skrll #ifndef UCOM_DEBUG
     79      1.111     skrll #define ucomdebug 0
     80      1.111     skrll #else
     81       1.12  augustss int ucomdebug = 0;
     82      1.111     skrll 
     83      1.111     skrll SYSCTL_SETUP(sysctl_hw_ucom_setup, "sysctl hw.ucom setup")
     84      1.111     skrll {
     85      1.117     skrll 	int err;
     86      1.117     skrll 	const struct sysctlnode *rnode;
     87      1.117     skrll 	const struct sysctlnode *cnode;
     88      1.117     skrll 
     89      1.117     skrll 	err = sysctl_createv(clog, 0, NULL, &rnode,
     90      1.117     skrll 	    CTLFLAG_PERMANENT, CTLTYPE_NODE, "ucom",
     91      1.117     skrll 	    SYSCTL_DESCR("ucom global controls"),
     92      1.117     skrll 	    NULL, 0, NULL, 0, CTL_HW, CTL_CREATE, CTL_EOL);
     93      1.117     skrll 
     94      1.117     skrll 	if (err)
     95      1.117     skrll 		goto fail;
     96      1.117     skrll 
     97      1.117     skrll 	/* control debugging printfs */
     98      1.117     skrll 	err = sysctl_createv(clog, 0, &rnode, &cnode,
     99      1.117     skrll 	    CTLFLAG_PERMANENT|CTLFLAG_READWRITE, CTLTYPE_INT,
    100      1.117     skrll 	    "debug", SYSCTL_DESCR("Enable debugging output"),
    101      1.117     skrll 	    NULL, 0, &ucomdebug, sizeof(ucomdebug), CTL_CREATE, CTL_EOL);
    102      1.117     skrll 	if (err)
    103      1.117     skrll 		goto fail;
    104      1.111     skrll 
    105      1.117     skrll 	return;
    106      1.111     skrll fail:
    107      1.117     skrll 	aprint_error("%s: sysctl_createv failed (err = %d)\n", __func__, err);
    108      1.111     skrll }
    109      1.111     skrll 
    110      1.111     skrll #endif /* UCOM_DEBUG */
    111      1.111     skrll #endif /* USB_DEBUG */
    112      1.111     skrll 
    113      1.111     skrll #define DPRINTF(FMT,A,B,C,D)    USBHIST_LOGN(ucomdebug,1,FMT,A,B,C,D)
    114      1.111     skrll #define DPRINTFN(N,FMT,A,B,C,D) USBHIST_LOGN(ucomdebug,N,FMT,A,B,C,D)
    115      1.111     skrll #define UCOMHIST_FUNC()         USBHIST_FUNC()
    116      1.111     skrll #define UCOMHIST_CALLED(name)   USBHIST_CALLED(ucomdebug)
    117       1.12  augustss 
    118      1.108  christos #define	UCOMCALLUNIT_MASK	TTCALLUNIT_MASK
    119      1.108  christos #define	UCOMUNIT_MASK		TTUNIT_MASK
    120      1.108  christos #define	UCOMDIALOUT_MASK	TTDIALOUT_MASK
    121      1.108  christos 
    122      1.108  christos #define	UCOMCALLUNIT(x)		TTCALLUNIT(x)
    123      1.108  christos #define	UCOMUNIT(x)		TTUNIT(x)
    124      1.108  christos #define	UCOMDIALOUT(x)		TTDIALOUT(x)
    125       1.12  augustss 
    126       1.82    martin /*
    127       1.82    martin  * XXX: We can submit multiple input/output buffers to the usb stack
    128       1.82    martin  * to improve throughput, but the usb stack is too lame to deal with this
    129       1.82    martin  * in a number of places.
    130       1.82    martin  */
    131       1.82    martin #define	UCOM_IN_BUFFS	1
    132       1.82    martin #define	UCOM_OUT_BUFFS	1
    133       1.82    martin 
    134       1.82    martin struct ucom_buffer {
    135       1.82    martin 	SIMPLEQ_ENTRY(ucom_buffer) ub_link;
    136      1.111     skrll 	struct usbd_xfer *ub_xfer;
    137       1.82    martin 	u_char *ub_data;
    138       1.82    martin 	u_int ub_len;
    139       1.82    martin 	u_int ub_index;
    140       1.82    martin };
    141       1.82    martin 
    142        1.1  augustss struct ucom_softc {
    143       1.85    dyoung 	device_t		sc_dev;		/* base device */
    144       1.12  augustss 
    145      1.111     skrll 	struct usbd_device *	sc_udev;	/* USB device */
    146      1.111     skrll 	struct usbd_interface *	sc_iface;	/* data interface */
    147       1.12  augustss 
    148       1.12  augustss 	int			sc_bulkin_no;	/* bulk in endpoint address */
    149      1.115     skrll 	struct usbd_pipe *	sc_bulkin_pipe;/* bulk in pipe */
    150       1.19  augustss 	u_int			sc_ibufsize;	/* read buffer size */
    151       1.22  augustss 	u_int			sc_ibufsizepad;	/* read buffer size padded */
    152       1.82    martin 	struct ucom_buffer	sc_ibuff[UCOM_IN_BUFFS];
    153       1.82    martin 	SIMPLEQ_HEAD(, ucom_buffer) sc_ibuff_empty;
    154       1.82    martin 	SIMPLEQ_HEAD(, ucom_buffer) sc_ibuff_full;
    155       1.12  augustss 
    156       1.12  augustss 	int			sc_bulkout_no;	/* bulk out endpoint address */
    157      1.111     skrll 	struct usbd_pipe *	sc_bulkout_pipe;/* bulk out pipe */
    158       1.19  augustss 	u_int			sc_obufsize;	/* write buffer size */
    159       1.82    martin 	u_int			sc_opkthdrlen;	/* header length of */
    160       1.82    martin 	struct ucom_buffer	sc_obuff[UCOM_OUT_BUFFS];
    161       1.82    martin 	SIMPLEQ_HEAD(, ucom_buffer) sc_obuff_free;
    162       1.82    martin 	SIMPLEQ_HEAD(, ucom_buffer) sc_obuff_full;
    163       1.82    martin 
    164       1.82    martin 	void			*sc_si;
    165       1.12  augustss 
    166       1.90  jakllsch 	const struct ucom_methods *sc_methods;
    167       1.12  augustss 	void                    *sc_parent;
    168       1.12  augustss 	int			sc_portno;
    169       1.12  augustss 
    170       1.12  augustss 	struct tty		*sc_tty;	/* our tty */
    171       1.12  augustss 	u_char			sc_lsr;
    172       1.12  augustss 	u_char			sc_msr;
    173       1.12  augustss 	u_char			sc_mcr;
    174       1.82    martin 	volatile u_char		sc_rx_stopped;
    175       1.82    martin 	u_char			sc_rx_unblock;
    176       1.12  augustss 	u_char			sc_tx_stopped;
    177       1.12  augustss 	int			sc_swflags;
    178       1.12  augustss 
    179      1.115     skrll 	enum ucom_state {
    180      1.115     skrll 	    UCOM_DEAD,
    181      1.115     skrll 	    UCOM_ATTACHED,
    182      1.115     skrll 	    UCOM_OPENING,
    183      1.115     skrll 	    UCOM_CLOSING,
    184      1.115     skrll 	    UCOM_OPEN
    185      1.115     skrll 	}			sc_state;
    186       1.17  augustss 	int			sc_refcnt;
    187      1.115     skrll 	bool			sc_dying;	/* disconnecting */
    188       1.31  explorer 
    189      1.106       gdt 	struct pps_state	sc_pps_state;	/* pps state */
    190      1.106       gdt 
    191      1.111     skrll 	krndsource_t		sc_rndsource;	/* random source */
    192      1.111     skrll 
    193      1.111     skrll 	kmutex_t		sc_lock;
    194      1.115     skrll 	kcondvar_t		sc_statecv;
    195      1.111     skrll 	kcondvar_t		sc_detachcv;
    196        1.1  augustss };
    197        1.1  augustss 
    198       1.44   gehenna dev_type_open(ucomopen);
    199       1.44   gehenna dev_type_close(ucomclose);
    200       1.44   gehenna dev_type_read(ucomread);
    201       1.44   gehenna dev_type_write(ucomwrite);
    202       1.44   gehenna dev_type_ioctl(ucomioctl);
    203       1.44   gehenna dev_type_stop(ucomstop);
    204       1.44   gehenna dev_type_tty(ucomtty);
    205       1.44   gehenna dev_type_poll(ucompoll);
    206       1.44   gehenna 
    207       1.44   gehenna const struct cdevsw ucom_cdevsw = {
    208      1.103  dholland 	.d_open = ucomopen,
    209      1.103  dholland 	.d_close = ucomclose,
    210      1.103  dholland 	.d_read = ucomread,
    211      1.103  dholland 	.d_write = ucomwrite,
    212      1.103  dholland 	.d_ioctl = ucomioctl,
    213      1.103  dholland 	.d_stop = ucomstop,
    214      1.103  dholland 	.d_tty = ucomtty,
    215      1.103  dholland 	.d_poll = ucompoll,
    216      1.103  dholland 	.d_mmap = nommap,
    217      1.103  dholland 	.d_kqfilter = ttykqfilter,
    218      1.105  dholland 	.d_discard = nodiscard,
    219      1.111     skrll 	.d_flag = D_TTY | D_MPSAFE
    220       1.44   gehenna };
    221       1.12  augustss 
    222       1.82    martin static void	ucom_cleanup(struct ucom_softc *);
    223       1.82    martin static int	ucomparam(struct tty *, struct termios *);
    224       1.82    martin static int	ucomhwiflow(struct tty *, int);
    225       1.82    martin static void	ucomstart(struct tty *);
    226       1.82    martin static void	ucom_shutdown(struct ucom_softc *);
    227       1.82    martin static int	ucom_do_ioctl(struct ucom_softc *, u_long, void *,
    228       1.60  christos 			      int, struct lwp *);
    229       1.82    martin static void	ucom_dtr(struct ucom_softc *, int);
    230       1.82    martin static void	ucom_rts(struct ucom_softc *, int);
    231       1.82    martin static void	ucom_break(struct ucom_softc *, int);
    232       1.82    martin static void	tiocm_to_ucom(struct ucom_softc *, u_long, int);
    233       1.82    martin static int	ucom_to_tiocm(struct ucom_softc *);
    234       1.82    martin 
    235      1.111     skrll static void	ucomreadcb(struct usbd_xfer *, void *, usbd_status);
    236       1.82    martin static void	ucom_submit_write(struct ucom_softc *, struct ucom_buffer *);
    237       1.82    martin static void	ucom_write_status(struct ucom_softc *, struct ucom_buffer *,
    238      1.115     skrll 		    usbd_status);
    239       1.82    martin 
    240      1.111     skrll static void	ucomwritecb(struct usbd_xfer *, void *, usbd_status);
    241       1.82    martin static void	ucom_read_complete(struct ucom_softc *);
    242      1.115     skrll static int	ucomsubmitread(struct ucom_softc *, struct ucom_buffer *);
    243       1.82    martin static void	ucom_softintr(void *);
    244        1.1  augustss 
    245       1.85    dyoung int ucom_match(device_t, cfdata_t, void *);
    246       1.85    dyoung void ucom_attach(device_t, device_t, void *);
    247       1.85    dyoung int ucom_detach(device_t, int);
    248  1.120.4.1  christos 
    249       1.85    dyoung CFATTACH_DECL_NEW(ucom, sizeof(struct ucom_softc), ucom_match, ucom_attach,
    250  1.120.4.1  christos     ucom_detach, NULL);
    251        1.1  augustss 
    252       1.85    dyoung int
    253       1.85    dyoung ucom_match(device_t parent, cfdata_t match, void *aux)
    254        1.1  augustss {
    255      1.111     skrll 	return 1;
    256        1.1  augustss }
    257        1.1  augustss 
    258       1.85    dyoung void
    259       1.85    dyoung ucom_attach(device_t parent, device_t self, void *aux)
    260        1.1  augustss {
    261       1.77      cube 	struct ucom_softc *sc = device_private(self);
    262      1.111     skrll 	struct ucom_attach_args *ucaa = aux;
    263       1.12  augustss 
    264      1.111     skrll 	UCOMHIST_FUNC(); UCOMHIST_CALLED();
    265      1.111     skrll 
    266      1.111     skrll 	if (ucaa->ucaa_info != NULL)
    267      1.111     skrll 		aprint_normal(": %s", ucaa->ucaa_info);
    268       1.83     pooka 	aprint_normal("\n");
    269       1.12  augustss 
    270      1.111     skrll 	prop_dictionary_set_int32(device_properties(self), "port",
    271      1.111     skrll 	    ucaa->ucaa_portno);
    272      1.110     joerg 
    273       1.77      cube 	sc->sc_dev = self;
    274      1.111     skrll 	sc->sc_udev = ucaa->ucaa_device;
    275      1.111     skrll 	sc->sc_iface = ucaa->ucaa_iface;
    276      1.111     skrll 	sc->sc_bulkout_no = ucaa->ucaa_bulkout;
    277      1.111     skrll 	sc->sc_bulkin_no = ucaa->ucaa_bulkin;
    278      1.111     skrll 	sc->sc_ibufsize = ucaa->ucaa_ibufsize;
    279      1.111     skrll 	sc->sc_ibufsizepad = ucaa->ucaa_ibufsizepad;
    280      1.111     skrll 	sc->sc_obufsize = ucaa->ucaa_obufsize;
    281      1.111     skrll 	sc->sc_opkthdrlen = ucaa->ucaa_opkthdrlen;
    282      1.111     skrll 	sc->sc_methods = ucaa->ucaa_methods;
    283      1.111     skrll 	sc->sc_parent = ucaa->ucaa_arg;
    284      1.111     skrll 	sc->sc_portno = ucaa->ucaa_portno;
    285       1.12  augustss 
    286       1.82    martin 	sc->sc_lsr = 0;
    287       1.82    martin 	sc->sc_msr = 0;
    288       1.82    martin 	sc->sc_mcr = 0;
    289       1.82    martin 	sc->sc_tx_stopped = 0;
    290       1.82    martin 	sc->sc_swflags = 0;
    291       1.82    martin 	sc->sc_refcnt = 0;
    292      1.115     skrll 	sc->sc_dying = false;
    293      1.115     skrll 	sc->sc_state = UCOM_DEAD;
    294       1.82    martin 
    295      1.111     skrll 	sc->sc_si = softint_establish(SOFTINT_USB, ucom_softintr, sc);
    296      1.111     skrll 	mutex_init(&sc->sc_lock, MUTEX_DEFAULT, IPL_SOFTUSB);
    297      1.115     skrll 	cv_init(&sc->sc_statecv, "ucomstate");
    298      1.111     skrll 	cv_init(&sc->sc_detachcv, "ucomdtch");
    299      1.111     skrll 
    300      1.111     skrll 	SIMPLEQ_INIT(&sc->sc_ibuff_empty);
    301      1.111     skrll 	SIMPLEQ_INIT(&sc->sc_ibuff_full);
    302      1.111     skrll 	SIMPLEQ_INIT(&sc->sc_obuff_free);
    303      1.111     skrll 	SIMPLEQ_INIT(&sc->sc_obuff_full);
    304      1.111     skrll 
    305      1.111     skrll 	memset(sc->sc_ibuff, 0, sizeof(sc->sc_ibuff));
    306      1.111     skrll 	memset(sc->sc_obuff, 0, sizeof(sc->sc_obuff));
    307      1.111     skrll 
    308      1.119  pgoyette 	DPRINTF("open pipes in=%jd out=%jd",
    309      1.119  pgoyette 	    sc->sc_bulkin_no, sc->sc_bulkout_no, 0, 0);
    310      1.111     skrll 
    311      1.111     skrll 	struct ucom_buffer *ub;
    312      1.111     skrll 	usbd_status err;
    313      1.111     skrll 	int error;
    314      1.111     skrll 
    315      1.111     skrll 	/* Open the bulk pipes */
    316      1.111     skrll 	err = usbd_open_pipe(sc->sc_iface, sc->sc_bulkin_no,
    317      1.111     skrll 	    USBD_EXCLUSIVE_USE, &sc->sc_bulkin_pipe);
    318      1.111     skrll 	if (err) {
    319      1.119  pgoyette 		DPRINTF("open bulk in error (addr %jd), err=%jd",
    320      1.111     skrll 		    sc->sc_bulkin_no, err, 0, 0);
    321      1.111     skrll 		error = EIO;
    322      1.111     skrll 		goto fail_0;
    323      1.111     skrll 	}
    324      1.115     skrll 	/* Allocate input buffers */
    325      1.115     skrll 	for (ub = &sc->sc_ibuff[0]; ub != &sc->sc_ibuff[UCOM_IN_BUFFS];
    326      1.115     skrll 	    ub++) {
    327      1.115     skrll 		error = usbd_create_xfer(sc->sc_bulkin_pipe,
    328      1.120     skrll 		    sc->sc_ibufsizepad, 0, 0,
    329      1.115     skrll 		    &ub->ub_xfer);
    330      1.115     skrll 		if (error)
    331      1.115     skrll 			goto fail_1;
    332      1.115     skrll 		ub->ub_data = usbd_get_buffer(ub->ub_xfer);
    333      1.115     skrll 	}
    334      1.115     skrll 
    335      1.111     skrll 	err = usbd_open_pipe(sc->sc_iface, sc->sc_bulkout_no,
    336      1.111     skrll 	    USBD_EXCLUSIVE_USE, &sc->sc_bulkout_pipe);
    337      1.111     skrll 	if (err) {
    338      1.119  pgoyette 		DPRINTF("open bulk out error (addr %jd), err=%jd",
    339      1.111     skrll 		    sc->sc_bulkout_no, err, 0, 0);
    340      1.111     skrll 		error = EIO;
    341      1.111     skrll 		goto fail_1;
    342      1.111     skrll 	}
    343      1.111     skrll 	for (ub = &sc->sc_obuff[0]; ub != &sc->sc_obuff[UCOM_OUT_BUFFS];
    344      1.111     skrll 	    ub++) {
    345      1.115     skrll 		error = usbd_create_xfer(sc->sc_bulkout_pipe,
    346      1.115     skrll 		    sc->sc_obufsize, 0, 0, &ub->ub_xfer);
    347      1.111     skrll 		if (error)
    348      1.111     skrll 			goto fail_2;
    349      1.111     skrll 		ub->ub_data = usbd_get_buffer(ub->ub_xfer);
    350      1.111     skrll 		SIMPLEQ_INSERT_TAIL(&sc->sc_obuff_free, ub, ub_link);
    351      1.111     skrll 	}
    352       1.82    martin 
    353      1.115     skrll 	struct tty *tp = tty_alloc();
    354       1.12  augustss 	tp->t_oproc = ucomstart;
    355       1.12  augustss 	tp->t_param = ucomparam;
    356       1.82    martin 	tp->t_hwiflow = ucomhwiflow;
    357       1.12  augustss 	sc->sc_tty = tp;
    358       1.12  augustss 
    359      1.119  pgoyette 	DPRINTF("tty_attach %#jx", (uintptr_t)tp, 0, 0, 0);
    360       1.12  augustss 	tty_attach(tp);
    361       1.12  augustss 
    362       1.85    dyoung 	rnd_attach_source(&sc->sc_rndsource, device_xname(sc->sc_dev),
    363      1.107       tls 			  RND_TYPE_TTY, RND_FLAG_DEFAULT);
    364       1.31  explorer 
    365       1.74       smb 	if (!pmf_device_register(self, NULL, NULL))
    366       1.74       smb 		aprint_error_dev(self, "couldn't establish power handler\n");
    367      1.115     skrll 
    368      1.115     skrll 	sc->sc_state = UCOM_ATTACHED;
    369      1.115     skrll 
    370       1.85    dyoung 	return;
    371      1.111     skrll 
    372      1.111     skrll fail_2:
    373      1.115     skrll 	for (ub = &sc->sc_obuff[0]; ub != &sc->sc_obuff[UCOM_OUT_BUFFS];
    374      1.111     skrll 	    ub++) {
    375      1.111     skrll 		if (ub->ub_xfer)
    376      1.111     skrll 			usbd_destroy_xfer(ub->ub_xfer);
    377      1.111     skrll 	}
    378      1.115     skrll 
    379      1.115     skrll 	usbd_close_pipe(sc->sc_bulkout_pipe);
    380      1.115     skrll 
    381      1.115     skrll fail_1:
    382      1.115     skrll 	for (ub = &sc->sc_ibuff[0]; ub != &sc->sc_ibuff[UCOM_IN_BUFFS];
    383      1.111     skrll 	    ub++) {
    384      1.111     skrll 		if (ub->ub_xfer)
    385      1.111     skrll 			usbd_destroy_xfer(ub->ub_xfer);
    386      1.111     skrll 	}
    387      1.111     skrll 	usbd_close_pipe(sc->sc_bulkin_pipe);
    388      1.111     skrll 
    389      1.111     skrll fail_0:
    390      1.111     skrll 	aprint_error_dev(self, "attach failed, error=%d\n", error);
    391      1.111     skrll 
    392      1.111     skrll 	return;
    393       1.12  augustss }
    394       1.12  augustss 
    395       1.85    dyoung int
    396       1.85    dyoung ucom_detach(device_t self, int flags)
    397       1.12  augustss {
    398       1.77      cube 	struct ucom_softc *sc = device_private(self);
    399       1.36  augustss 	struct tty *tp = sc->sc_tty;
    400       1.12  augustss 	int maj, mn;
    401      1.111     skrll 	int i;
    402      1.111     skrll 
    403      1.111     skrll 	UCOMHIST_FUNC(); UCOMHIST_CALLED();
    404       1.12  augustss 
    405      1.119  pgoyette 	DPRINTF("sc=%#jx flags=%jd tp=%#jx", (uintptr_t)sc, flags,
    406      1.119  pgoyette 	    (uintptr_t)tp, 0);
    407      1.119  pgoyette 	DPRINTF("... pipe=%jd,%jd", sc->sc_bulkin_no, sc->sc_bulkout_no, 0, 0);
    408       1.12  augustss 
    409      1.111     skrll 	mutex_enter(&sc->sc_lock);
    410      1.115     skrll 	sc->sc_dying = true;
    411      1.111     skrll 	mutex_exit(&sc->sc_lock);
    412      1.111     skrll 
    413       1.74       smb 	pmf_device_deregister(self);
    414       1.12  augustss 
    415  1.120.4.1  christos 	if (sc->sc_bulkin_pipe != NULL) {
    416       1.33  augustss 		usbd_abort_pipe(sc->sc_bulkin_pipe);
    417  1.120.4.1  christos 		sc->sc_bulkin_pipe = NULL;
    418  1.120.4.1  christos 	}
    419  1.120.4.1  christos 	if (sc->sc_bulkout_pipe != NULL) {
    420       1.33  augustss 		usbd_abort_pipe(sc->sc_bulkout_pipe);
    421  1.120.4.1  christos 		sc->sc_bulkout_pipe = NULL;
    422  1.120.4.1  christos 	}
    423       1.12  augustss 
    424      1.111     skrll 	mutex_enter(&sc->sc_lock);
    425      1.115     skrll 
    426      1.115     skrll 	/* wait for open/close to finish */
    427      1.115     skrll 	while (sc->sc_state == UCOM_OPENING || sc->sc_state == UCOM_CLOSING) {
    428      1.115     skrll 		int error = cv_wait_sig(&sc->sc_statecv, &sc->sc_lock);
    429      1.115     skrll 
    430      1.115     skrll 		if (error) {
    431      1.115     skrll 			mutex_exit(&sc->sc_lock);
    432      1.115     skrll 			return error;
    433      1.115     skrll 		}
    434      1.115     skrll 	}
    435      1.115     skrll 
    436      1.115     skrll 	sc->sc_refcnt--;
    437      1.111     skrll 	while (sc->sc_refcnt > 0) {
    438       1.35  augustss 		/* Wake up anyone waiting */
    439       1.36  augustss 		if (tp != NULL) {
    440       1.71        ad 			mutex_spin_enter(&tty_lock);
    441       1.36  augustss 			CLR(tp->t_state, TS_CARR_ON);
    442       1.36  augustss 			CLR(tp->t_cflag, CLOCAL | MDMBUF);
    443       1.36  augustss 			ttyflush(tp, FREAD|FWRITE);
    444       1.71        ad 			mutex_spin_exit(&tty_lock);
    445       1.36  augustss 		}
    446       1.17  augustss 		/* Wait for processes to go away. */
    447  1.120.4.1  christos 		if (cv_timedwait(&sc->sc_detachcv, &sc->sc_lock, hz * 60))
    448  1.120.4.1  christos 			aprint_error_dev(self, ": didn't detach\n");
    449       1.17  augustss 	}
    450       1.82    martin 
    451       1.82    martin 	softint_disestablish(sc->sc_si);
    452      1.111     skrll 	mutex_exit(&sc->sc_lock);
    453       1.12  augustss 
    454       1.12  augustss 	/* locate the major number */
    455       1.44   gehenna 	maj = cdevsw_lookup_major(&ucom_cdevsw);
    456       1.12  augustss 
    457       1.12  augustss 	/* Nuke the vnodes for any open instances. */
    458       1.62   thorpej 	mn = device_unit(self);
    459      1.119  pgoyette 	DPRINTF("maj=%jd mn=%jd", maj, mn, 0, 0);
    460       1.12  augustss 	vdevgone(maj, mn, mn, VCHR);
    461       1.22  augustss 	vdevgone(maj, mn | UCOMDIALOUT_MASK, mn | UCOMDIALOUT_MASK, VCHR);
    462       1.22  augustss 	vdevgone(maj, mn | UCOMCALLUNIT_MASK, mn | UCOMCALLUNIT_MASK, VCHR);
    463       1.12  augustss 
    464       1.12  augustss 	/* Detach and free the tty. */
    465       1.36  augustss 	if (tp != NULL) {
    466       1.36  augustss 		tty_detach(tp);
    467       1.87     rmind 		tty_free(tp);
    468       1.33  augustss 		sc->sc_tty = NULL;
    469       1.33  augustss 	}
    470       1.12  augustss 
    471       1.82    martin 	for (i = 0; i < UCOM_IN_BUFFS; i++) {
    472       1.82    martin 		if (sc->sc_ibuff[i].ub_xfer != NULL)
    473      1.111     skrll 			usbd_destroy_xfer(sc->sc_ibuff[i].ub_xfer);
    474       1.82    martin 	}
    475       1.82    martin 
    476       1.82    martin 	for (i = 0; i < UCOM_OUT_BUFFS; i++) {
    477       1.82    martin 		if (sc->sc_obuff[i].ub_xfer != NULL)
    478      1.111     skrll 			usbd_destroy_xfer(sc->sc_obuff[i].ub_xfer);
    479      1.111     skrll 	}
    480      1.111     skrll 
    481      1.111     skrll 	if (sc->sc_bulkin_pipe != NULL) {
    482      1.111     skrll 		usbd_close_pipe(sc->sc_bulkin_pipe);
    483      1.111     skrll 		sc->sc_bulkin_pipe = NULL;
    484      1.111     skrll 	}
    485      1.111     skrll 
    486      1.111     skrll 	if (sc->sc_bulkout_pipe != NULL) {
    487      1.111     skrll 		usbd_close_pipe(sc->sc_bulkout_pipe);
    488      1.111     skrll 		sc->sc_bulkout_pipe = NULL;
    489       1.82    martin 	}
    490       1.82    martin 
    491       1.31  explorer 	/* Detach the random source */
    492       1.31  explorer 	rnd_detach_source(&sc->sc_rndsource);
    493       1.31  explorer 
    494      1.111     skrll 	mutex_destroy(&sc->sc_lock);
    495      1.115     skrll 	cv_destroy(&sc->sc_statecv);
    496      1.111     skrll 	cv_destroy(&sc->sc_detachcv);
    497      1.111     skrll 
    498      1.111     skrll 	return 0;
    499       1.12  augustss }
    500       1.12  augustss 
    501       1.12  augustss void
    502       1.24  augustss ucom_shutdown(struct ucom_softc *sc)
    503       1.12  augustss {
    504       1.12  augustss 	struct tty *tp = sc->sc_tty;
    505       1.12  augustss 
    506      1.111     skrll 	UCOMHIST_FUNC(); UCOMHIST_CALLED();
    507      1.111     skrll 
    508       1.12  augustss 	/*
    509       1.12  augustss 	 * Hang up if necessary.  Wait a bit, so the other side has time to
    510       1.12  augustss 	 * notice even if we immediately open the port again.
    511       1.12  augustss 	 */
    512       1.12  augustss 	if (ISSET(tp->t_cflag, HUPCL)) {
    513       1.12  augustss 		ucom_dtr(sc, 0);
    514      1.111     skrll 		/* XXX will only timeout */
    515      1.116     skrll 		(void) kpause(ttclos, false, hz, NULL);
    516       1.12  augustss 	}
    517       1.12  augustss }
    518       1.12  augustss 
    519       1.12  augustss int
    520       1.69  christos ucomopen(dev_t dev, int flag, int mode, struct lwp *l)
    521       1.12  augustss {
    522      1.115     skrll 	const int unit = UCOMUNIT(dev);
    523      1.115     skrll 	struct ucom_softc * const sc = device_lookup_private(&ucom_cd, unit);
    524      1.115     skrll 	int error = 0;
    525       1.43  augustss 
    526      1.111     skrll 	UCOMHIST_FUNC(); UCOMHIST_CALLED();
    527      1.111     skrll 
    528       1.12  augustss 	if (sc == NULL)
    529      1.111     skrll 		return ENXIO;
    530       1.12  augustss 
    531      1.111     skrll 	mutex_enter(&sc->sc_lock);
    532      1.111     skrll 	if (sc->sc_dying) {
    533      1.115     skrll 		DPRINTF("... dying", 0, 0, 0, 0);
    534      1.111     skrll 		mutex_exit(&sc->sc_lock);
    535      1.111     skrll 		return EIO;
    536      1.111     skrll 	}
    537       1.12  augustss 
    538      1.111     skrll 	if (!device_is_active(sc->sc_dev)) {
    539      1.111     skrll 		mutex_exit(&sc->sc_lock);
    540      1.111     skrll 		return ENXIO;
    541      1.111     skrll 	}
    542       1.12  augustss 
    543      1.115     skrll 	struct tty *tp = sc->sc_tty;
    544       1.12  augustss 
    545      1.119  pgoyette 	DPRINTF("unit=%jd, tp=%#jx", unit, (uintptr_t)tp, 0, 0);
    546       1.12  augustss 
    547      1.111     skrll 	if (kauth_authorize_device_tty(l->l_cred, KAUTH_DEVICE_TTY_OPEN, tp)) {
    548      1.111     skrll 		mutex_exit(&sc->sc_lock);
    549      1.111     skrll 		return EBUSY;
    550      1.111     skrll 	}
    551       1.12  augustss 
    552       1.12  augustss 	/*
    553      1.113   mlelstv 	 * Wait while the device is initialized by the
    554      1.113   mlelstv 	 * first opener or cleaned up by the last closer.
    555       1.12  augustss 	 */
    556      1.115     skrll 	while (sc->sc_state == UCOM_OPENING || sc->sc_state == UCOM_CLOSING) {
    557      1.115     skrll 		error = cv_wait_sig(&sc->sc_statecv, &sc->sc_lock);
    558      1.115     skrll 
    559      1.115     skrll 		if (sc->sc_dying)
    560      1.115     skrll 			error = EIO;
    561       1.17  augustss 
    562      1.111     skrll 		if (error) {
    563      1.111     skrll 			mutex_exit(&sc->sc_lock);
    564      1.111     skrll 			return error;
    565      1.111     skrll 		}
    566       1.17  augustss 	}
    567      1.115     skrll 	enum ucom_state state = sc->sc_state;
    568      1.111     skrll 
    569      1.115     skrll 	KASSERTMSG(state == UCOM_OPEN || state == UCOM_ATTACHED,
    570      1.115     skrll 	    "state is %d", state);
    571       1.43  augustss 
    572      1.115     skrll 	bool cleanup = false;
    573      1.115     skrll 	/* If this is the first open then perform the initialisation */
    574       1.12  augustss 	if (!ISSET(tp->t_state, TS_ISOPEN) && tp->t_wopen == 0) {
    575      1.115     skrll 		KASSERT(state == UCOM_ATTACHED);
    576       1.12  augustss 		tp->t_dev = dev;
    577      1.115     skrll 		cleanup = true;
    578      1.115     skrll 		sc->sc_state = UCOM_OPENING;
    579       1.12  augustss 
    580      1.115     skrll 		mutex_exit(&sc->sc_lock);
    581       1.22  augustss 		if (sc->sc_methods->ucom_open != NULL) {
    582       1.22  augustss 			error = sc->sc_methods->ucom_open(sc->sc_parent,
    583      1.115     skrll 			    sc->sc_portno);
    584       1.22  augustss 			if (error) {
    585      1.115     skrll 				goto fail_2;
    586       1.22  augustss 			}
    587       1.22  augustss 		}
    588       1.22  augustss 
    589       1.12  augustss 		ucom_status_change(sc);
    590       1.12  augustss 
    591      1.106       gdt 		/* Clear PPS capture state on first open. */
    592      1.106       gdt 		mutex_spin_enter(&timecounter_lock);
    593      1.106       gdt 		memset(&sc->sc_pps_state, 0, sizeof(sc->sc_pps_state));
    594      1.106       gdt 		sc->sc_pps_state.ppscap = PPS_CAPTUREASSERT | PPS_CAPTURECLEAR;
    595      1.106       gdt 		pps_init(&sc->sc_pps_state);
    596      1.106       gdt 		mutex_spin_exit(&timecounter_lock);
    597      1.106       gdt 
    598       1.12  augustss 		/*
    599       1.12  augustss 		 * Initialize the termios status to the defaults.  Add in the
    600       1.12  augustss 		 * sticky bits from TIOCSFLAGS.
    601       1.12  augustss 		 */
    602      1.115     skrll 		struct termios t;
    603      1.115     skrll 
    604       1.12  augustss 		t.c_ispeed = 0;
    605       1.12  augustss 		t.c_ospeed = TTYDEF_SPEED;
    606       1.12  augustss 		t.c_cflag = TTYDEF_CFLAG;
    607       1.12  augustss 		if (ISSET(sc->sc_swflags, TIOCFLAG_CLOCAL))
    608       1.12  augustss 			SET(t.c_cflag, CLOCAL);
    609       1.12  augustss 		if (ISSET(sc->sc_swflags, TIOCFLAG_CRTSCTS))
    610       1.12  augustss 			SET(t.c_cflag, CRTSCTS);
    611       1.12  augustss 		if (ISSET(sc->sc_swflags, TIOCFLAG_MDMBUF))
    612       1.12  augustss 			SET(t.c_cflag, MDMBUF);
    613       1.12  augustss 		/* Make sure ucomparam() will do something. */
    614       1.12  augustss 		tp->t_ospeed = 0;
    615       1.12  augustss 		(void) ucomparam(tp, &t);
    616       1.12  augustss 		tp->t_iflag = TTYDEF_IFLAG;
    617       1.12  augustss 		tp->t_oflag = TTYDEF_OFLAG;
    618       1.12  augustss 		tp->t_lflag = TTYDEF_LFLAG;
    619       1.12  augustss 		ttychars(tp);
    620       1.12  augustss 		ttsetwater(tp);
    621       1.12  augustss 
    622       1.12  augustss 		/*
    623       1.12  augustss 		 * Turn on DTR.  We must always do this, even if carrier is not
    624       1.12  augustss 		 * present, because otherwise we'd have to use TIOCSDTR
    625       1.12  augustss 		 * immediately after setting CLOCAL, which applications do not
    626       1.12  augustss 		 * expect.  We always assert DTR while the device is open
    627       1.64      gson 		 * unless explicitly requested to deassert it.  Ditto RTS.
    628       1.12  augustss 		 */
    629       1.12  augustss 		ucom_dtr(sc, 1);
    630      1.102  jakllsch 		ucom_rts(sc, 1);
    631       1.12  augustss 
    632      1.115     skrll 		mutex_enter(&sc->sc_lock);
    633      1.115     skrll 		if (sc->sc_dying) {
    634      1.115     skrll 			DPRINTF("... dying", 0, 0, 0, 0);
    635      1.115     skrll 			error = EIO;
    636      1.115     skrll 			goto fail_1;
    637      1.115     skrll 		}
    638      1.115     skrll 
    639       1.82    martin 		sc->sc_rx_unblock = 0;
    640       1.82    martin 		sc->sc_rx_stopped = 0;
    641       1.82    martin 		sc->sc_tx_stopped = 0;
    642       1.82    martin 
    643      1.115     skrll 		for (size_t i = 0; i < UCOM_IN_BUFFS; i++) {
    644      1.115     skrll 			struct ucom_buffer *ub = &sc->sc_ibuff[i];
    645      1.115     skrll 			error = ucomsubmitread(sc, ub);
    646      1.115     skrll 			if (error) {
    647      1.115     skrll 		    		mutex_exit(&sc->sc_lock);
    648       1.82    martin 				goto fail_2;
    649       1.82    martin 			}
    650       1.28    toshii 		}
    651       1.12  augustss 	}
    652      1.115     skrll 	sc->sc_state = UCOM_OPEN;
    653      1.115     skrll 	cv_signal(&sc->sc_statecv);
    654      1.111     skrll 	mutex_exit(&sc->sc_lock);
    655       1.12  augustss 
    656      1.119  pgoyette 	DPRINTF("unit=%jd, tp=%#jx dialout %jd nonblock %jd", unit,
    657      1.119  pgoyette 	    (uintptr_t)tp, !!UCOMDIALOUT(dev), !!ISSET(flag, O_NONBLOCK));
    658       1.12  augustss 	error = ttyopen(tp, UCOMDIALOUT(dev), ISSET(flag, O_NONBLOCK));
    659       1.12  augustss 	if (error)
    660       1.12  augustss 		goto bad;
    661       1.12  augustss 
    662       1.32       eeh 	error = (*tp->t_linesw->l_open)(dev, tp);
    663       1.12  augustss 	if (error)
    664       1.12  augustss 		goto bad;
    665       1.12  augustss 
    666      1.111     skrll 	return 0;
    667       1.26    toshii 
    668      1.115     skrll bad:
    669      1.115     skrll 	cleanup = !ISSET(tp->t_state, TS_ISOPEN) && tp->t_wopen == 0;
    670      1.115     skrll 
    671       1.26    toshii fail_2:
    672      1.115     skrll 	if (cleanup) {
    673       1.12  augustss 		/*
    674      1.115     skrll 		 * We failed to open the device, and nobody else had
    675      1.115     skrll 		 * it opened.  Clean up the state as appropriate.
    676       1.12  augustss 		 */
    677       1.12  augustss 		ucom_cleanup(sc);
    678       1.12  augustss 	}
    679      1.115     skrll 
    680      1.115     skrll 	mutex_enter(&sc->sc_lock);
    681      1.115     skrll 
    682      1.115     skrll fail_1:
    683      1.115     skrll 	sc->sc_state = state;
    684      1.115     skrll 	cv_signal(&sc->sc_statecv);
    685      1.115     skrll 	mutex_exit(&sc->sc_lock);
    686       1.12  augustss 
    687      1.111     skrll 	return error;
    688       1.12  augustss }
    689       1.12  augustss 
    690       1.12  augustss int
    691       1.69  christos ucomclose(dev_t dev, int flag, int mode, struct lwp *l)
    692       1.12  augustss {
    693      1.115     skrll 	const int unit = UCOMUNIT(dev);
    694      1.115     skrll 	struct ucom_softc *sc = device_lookup_private(&ucom_cd, unit);
    695      1.115     skrll 	int error = 0;
    696       1.12  augustss 
    697      1.111     skrll 	UCOMHIST_FUNC(); UCOMHIST_CALLED();
    698      1.111     skrll 
    699      1.119  pgoyette 	DPRINTF("unit=%jd", UCOMUNIT(dev), 0, 0, 0);
    700      1.101  jakllsch 
    701      1.101  jakllsch 	if (sc == NULL)
    702      1.101  jakllsch 		return 0;
    703      1.101  jakllsch 
    704      1.111     skrll 	mutex_enter(&sc->sc_lock);
    705      1.115     skrll 	if (sc->sc_dying) {
    706      1.115     skrll 		DPRINTF("... dying", 0, 0, 0, 0);
    707      1.115     skrll 		mutex_exit(&sc->sc_lock);
    708      1.115     skrll 		return ENXIO;
    709      1.115     skrll 	}
    710      1.115     skrll 
    711      1.115     skrll 	/*
    712      1.115     skrll 	 * Wait until any opens/closes have finished
    713      1.115     skrll 	 */
    714      1.115     skrll 	while (sc->sc_state == UCOM_OPENING || sc->sc_state == UCOM_CLOSING) {
    715      1.115     skrll 		error = cv_wait_sig(&sc->sc_statecv, &sc->sc_lock);
    716      1.115     skrll 
    717      1.115     skrll 		if (sc->sc_dying)
    718      1.115     skrll 			error = EIO;
    719      1.115     skrll 
    720      1.115     skrll 		if (error) {
    721      1.115     skrll 			mutex_exit(&sc->sc_lock);
    722      1.115     skrll 			return error;
    723      1.115     skrll 		}
    724      1.115     skrll 	}
    725      1.101  jakllsch 
    726      1.115     skrll 	struct tty *tp = sc->sc_tty;
    727      1.113   mlelstv 
    728      1.111     skrll 	if (!ISSET(tp->t_state, TS_ISOPEN)) {
    729      1.115     skrll 		KASSERT(sc->sc_state == UCOM_ATTACHED);
    730      1.115     skrll 		mutex_exit(&sc->sc_lock);
    731      1.115     skrll 		return 0;
    732      1.111     skrll 	}
    733       1.12  augustss 
    734      1.115     skrll 	KASSERT(sc->sc_state == UCOM_OPEN);
    735      1.115     skrll 	sc->sc_state = UCOM_CLOSING;
    736      1.115     skrll 	mutex_exit(&sc->sc_lock);
    737       1.17  augustss 
    738       1.32       eeh 	(*tp->t_linesw->l_close)(tp, flag);
    739       1.12  augustss 	ttyclose(tp);
    740       1.12  augustss 
    741      1.115     skrll 	/* state when we're done - default to open */
    742      1.115     skrll 	enum ucom_state state = UCOM_OPEN;
    743       1.12  augustss 	if (!ISSET(tp->t_state, TS_ISOPEN) && tp->t_wopen == 0) {
    744       1.12  augustss 		/*
    745       1.12  augustss 		 * Although we got a last close, the device may still be in
    746       1.12  augustss 		 * use; e.g. if this was the dialout node, and there are still
    747       1.12  augustss 		 * processes waiting for carrier on the non-dialout node.
    748       1.12  augustss 		 */
    749       1.12  augustss 		ucom_cleanup(sc);
    750      1.115     skrll 		if (sc->sc_methods->ucom_close != NULL)
    751      1.115     skrll 			sc->sc_methods->ucom_close(sc->sc_parent,
    752      1.115     skrll 			    sc->sc_portno);
    753      1.115     skrll 		state = UCOM_ATTACHED;
    754       1.12  augustss 	}
    755       1.12  augustss 
    756      1.115     skrll 	mutex_enter(&sc->sc_lock);
    757      1.115     skrll 	sc->sc_state = state;
    758      1.115     skrll 	cv_signal(&sc->sc_statecv);
    759      1.111     skrll 	mutex_exit(&sc->sc_lock);
    760      1.111     skrll 
    761      1.115     skrll 	return error;
    762       1.12  augustss }
    763       1.43  augustss 
    764       1.12  augustss int
    765       1.24  augustss ucomread(dev_t dev, struct uio *uio, int flag)
    766       1.12  augustss {
    767      1.115     skrll 	const int unit = UCOMUNIT(dev);
    768      1.115     skrll 	struct ucom_softc * const sc = device_lookup_private(&ucom_cd, unit);
    769       1.17  augustss 	int error;
    770       1.12  augustss 
    771      1.111     skrll 	UCOMHIST_FUNC(); UCOMHIST_CALLED();
    772      1.111     skrll 
    773      1.111     skrll 	if (sc == NULL)
    774      1.111     skrll 		return EIO;
    775      1.111     skrll 
    776      1.111     skrll 	mutex_enter(&sc->sc_lock);
    777      1.111     skrll 	if (sc->sc_dying) {
    778      1.115     skrll 		DPRINTF("... dying", 0, 0, 0, 0);
    779      1.111     skrll 		mutex_exit(&sc->sc_lock);
    780      1.111     skrll 		return EIO;
    781      1.111     skrll 	}
    782       1.43  augustss 
    783      1.115     skrll 	struct tty *tp = sc->sc_tty;
    784      1.101  jakllsch 
    785       1.17  augustss 	sc->sc_refcnt++;
    786      1.111     skrll 	mutex_exit(&sc->sc_lock);
    787      1.115     skrll 
    788       1.32       eeh 	error = ((*tp->t_linesw->l_read)(tp, uio, flag));
    789      1.115     skrll 
    790      1.111     skrll 	mutex_enter(&sc->sc_lock);
    791       1.17  augustss 	if (--sc->sc_refcnt < 0)
    792      1.115     skrll 		cv_broadcast(&sc->sc_detachcv);
    793      1.119  pgoyette 	DPRINTF("unit=%jd refcnt %jd", UCOMUNIT(dev), sc->sc_refcnt, 0, 0);
    794      1.111     skrll 	mutex_exit(&sc->sc_lock);
    795      1.111     skrll 
    796      1.111     skrll 	return error;
    797       1.12  augustss }
    798       1.43  augustss 
    799       1.12  augustss int
    800       1.24  augustss ucomwrite(dev_t dev, struct uio *uio, int flag)
    801       1.12  augustss {
    802      1.115     skrll 	const int unit = UCOMUNIT(dev);
    803      1.115     skrll 	struct ucom_softc * const sc = device_lookup_private(&ucom_cd, unit);
    804       1.17  augustss 	int error;
    805       1.12  augustss 
    806      1.115     skrll 	UCOMHIST_FUNC(); UCOMHIST_CALLED();
    807      1.115     skrll 
    808      1.111     skrll 	if (sc == NULL)
    809      1.111     skrll 		return EIO;
    810      1.111     skrll 
    811      1.111     skrll 	mutex_enter(&sc->sc_lock);
    812      1.111     skrll 	if (sc->sc_dying) {
    813      1.115     skrll 		DPRINTF("... dying", 0, 0, 0, 0);
    814      1.111     skrll 		mutex_exit(&sc->sc_lock);
    815      1.111     skrll 		return EIO;
    816      1.111     skrll 	}
    817       1.43  augustss 
    818      1.115     skrll 	struct tty *tp = sc->sc_tty;
    819      1.101  jakllsch 
    820       1.17  augustss 	sc->sc_refcnt++;
    821      1.111     skrll 	mutex_exit(&sc->sc_lock);
    822      1.115     skrll 
    823       1.32       eeh 	error = ((*tp->t_linesw->l_write)(tp, uio, flag));
    824      1.115     skrll 
    825      1.111     skrll 	mutex_enter(&sc->sc_lock);
    826       1.38       scw 	if (--sc->sc_refcnt < 0)
    827      1.115     skrll 		cv_broadcast(&sc->sc_detachcv);
    828      1.119  pgoyette 	DPRINTF("unit=%jd refcnt %jd", UCOMUNIT(dev), sc->sc_refcnt, 0, 0);
    829      1.111     skrll 	mutex_exit(&sc->sc_lock);
    830      1.111     skrll 
    831      1.111     skrll 	return error;
    832       1.38       scw }
    833       1.38       scw 
    834       1.38       scw int
    835       1.60  christos ucompoll(dev_t dev, int events, struct lwp *l)
    836       1.38       scw {
    837      1.115     skrll 	const int unit = UCOMUNIT(dev);
    838      1.115     skrll 	struct ucom_softc * const sc = device_lookup_private(&ucom_cd, unit);
    839      1.115     skrll 
    840      1.115     skrll 	UCOMHIST_FUNC(); UCOMHIST_CALLED();
    841       1.38       scw 
    842      1.111     skrll 	if (sc == NULL)
    843      1.111     skrll 		return POLLHUP;
    844       1.43  augustss 
    845      1.111     skrll 	mutex_enter(&sc->sc_lock);
    846      1.111     skrll 	if (sc->sc_dying) {
    847      1.115     skrll 		DPRINTF("... dying", 0, 0, 0, 0);
    848      1.111     skrll 		mutex_exit(&sc->sc_lock);
    849      1.111     skrll 		return POLLHUP;
    850      1.111     skrll 	}
    851      1.115     skrll 	struct tty *tp = sc->sc_tty;
    852       1.94  jakllsch 
    853       1.38       scw 	sc->sc_refcnt++;
    854      1.111     skrll 	mutex_exit(&sc->sc_lock);
    855      1.115     skrll 
    856      1.115     skrll 	int revents = ((*tp->t_linesw->l_poll)(tp, events, l));
    857      1.115     skrll 
    858      1.111     skrll 	mutex_enter(&sc->sc_lock);
    859       1.17  augustss 	if (--sc->sc_refcnt < 0)
    860      1.115     skrll 		cv_broadcast(&sc->sc_detachcv);
    861      1.119  pgoyette 	DPRINTF("unit=%jd refcnt %jd", UCOMUNIT(dev), sc->sc_refcnt, 0, 0);
    862      1.111     skrll 	mutex_exit(&sc->sc_lock);
    863      1.111     skrll 
    864      1.111     skrll 	return revents;
    865       1.12  augustss }
    866       1.12  augustss 
    867       1.12  augustss struct tty *
    868       1.24  augustss ucomtty(dev_t dev)
    869       1.12  augustss {
    870      1.115     skrll 	const int unit = UCOMUNIT(dev);
    871      1.115     skrll 	struct ucom_softc * const sc = device_lookup_private(&ucom_cd, unit);
    872       1.12  augustss 
    873      1.111     skrll 	return sc != NULL ? sc->sc_tty : NULL;
    874       1.12  augustss }
    875       1.12  augustss 
    876       1.12  augustss int
    877       1.70  christos ucomioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
    878       1.12  augustss {
    879      1.115     skrll 	const int unit = UCOMUNIT(dev);
    880      1.115     skrll 	struct ucom_softc * const sc = device_lookup_private(&ucom_cd, unit);
    881       1.17  augustss 	int error;
    882       1.17  augustss 
    883      1.115     skrll 	UCOMHIST_FUNC(); UCOMHIST_CALLED();
    884      1.115     skrll 
    885      1.111     skrll 	if (sc == NULL)
    886      1.111     skrll 		return EIO;
    887      1.111     skrll 
    888      1.111     skrll 	mutex_enter(&sc->sc_lock);
    889      1.111     skrll 	if (sc->sc_dying) {
    890      1.115     skrll 		DPRINTF("... dying", 0, 0, 0, 0);
    891      1.111     skrll 		mutex_exit(&sc->sc_lock);
    892      1.111     skrll 		return EIO;
    893      1.111     skrll 	}
    894      1.101  jakllsch 
    895       1.17  augustss 	sc->sc_refcnt++;
    896      1.114     skrll 	mutex_exit(&sc->sc_lock);
    897      1.115     skrll 
    898       1.60  christos 	error = ucom_do_ioctl(sc, cmd, data, flag, l);
    899      1.115     skrll 
    900      1.114     skrll 	mutex_enter(&sc->sc_lock);
    901       1.17  augustss 	if (--sc->sc_refcnt < 0)
    902      1.115     skrll 		cv_broadcast(&sc->sc_detachcv);
    903      1.119  pgoyette 	DPRINTF("unit=%jd refcnt %jd", UCOMUNIT(dev), sc->sc_refcnt, 0, 0);
    904      1.111     skrll 	mutex_exit(&sc->sc_lock);
    905      1.115     skrll 
    906      1.111     skrll 	return error;
    907       1.17  augustss }
    908       1.17  augustss 
    909       1.82    martin static int
    910      1.115     skrll ucom_do_ioctl(struct ucom_softc *sc, u_long cmd, void *data, int flag,
    911      1.115     skrll     struct lwp *l)
    912       1.17  augustss {
    913       1.12  augustss 	struct tty *tp = sc->sc_tty;
    914       1.12  augustss 	int error;
    915       1.12  augustss 
    916      1.111     skrll 	UCOMHIST_FUNC(); UCOMHIST_CALLED();
    917      1.111     skrll 
    918      1.119  pgoyette 	DPRINTF("cmd=0x%08jx", cmd, 0, 0, 0);
    919       1.12  augustss 
    920       1.60  christos 	error = (*tp->t_linesw->l_ioctl)(tp, cmd, data, flag, l);
    921       1.42    atatat 	if (error != EPASSTHROUGH)
    922      1.111     skrll 		return error;
    923       1.12  augustss 
    924       1.60  christos 	error = ttioctl(tp, cmd, data, flag, l);
    925       1.42    atatat 	if (error != EPASSTHROUGH)
    926      1.111     skrll 		return error;
    927       1.12  augustss 
    928       1.12  augustss 	if (sc->sc_methods->ucom_ioctl != NULL) {
    929       1.12  augustss 		error = sc->sc_methods->ucom_ioctl(sc->sc_parent,
    930      1.115     skrll 		    sc->sc_portno, cmd, data, flag, l->l_proc);
    931       1.42    atatat 		if (error != EPASSTHROUGH)
    932      1.111     skrll 			return error;
    933       1.12  augustss 	}
    934       1.12  augustss 
    935       1.12  augustss 	error = 0;
    936       1.12  augustss 
    937      1.119  pgoyette 	DPRINTF("our cmd=0x%08jx", cmd, 0, 0, 0);
    938       1.12  augustss 
    939       1.12  augustss 	switch (cmd) {
    940       1.12  augustss 	case TIOCSBRK:
    941       1.12  augustss 		ucom_break(sc, 1);
    942       1.12  augustss 		break;
    943       1.12  augustss 
    944       1.12  augustss 	case TIOCCBRK:
    945       1.12  augustss 		ucom_break(sc, 0);
    946       1.12  augustss 		break;
    947       1.12  augustss 
    948       1.12  augustss 	case TIOCSDTR:
    949       1.12  augustss 		ucom_dtr(sc, 1);
    950       1.12  augustss 		break;
    951       1.12  augustss 
    952       1.12  augustss 	case TIOCCDTR:
    953       1.12  augustss 		ucom_dtr(sc, 0);
    954       1.12  augustss 		break;
    955       1.12  augustss 
    956       1.12  augustss 	case TIOCGFLAGS:
    957      1.114     skrll 		mutex_enter(&sc->sc_lock);
    958       1.12  augustss 		*(int *)data = sc->sc_swflags;
    959      1.114     skrll 		mutex_exit(&sc->sc_lock);
    960       1.12  augustss 		break;
    961       1.12  augustss 
    962       1.12  augustss 	case TIOCSFLAGS:
    963       1.67      elad 		error = kauth_authorize_device_tty(l->l_cred,
    964       1.67      elad 		    KAUTH_DEVICE_TTY_PRIVSET, tp);
    965       1.12  augustss 		if (error)
    966       1.12  augustss 			break;
    967      1.114     skrll 		mutex_enter(&sc->sc_lock);
    968       1.12  augustss 		sc->sc_swflags = *(int *)data;
    969      1.114     skrll 		mutex_exit(&sc->sc_lock);
    970       1.12  augustss 		break;
    971       1.12  augustss 
    972       1.12  augustss 	case TIOCMSET:
    973       1.12  augustss 	case TIOCMBIS:
    974       1.12  augustss 	case TIOCMBIC:
    975       1.12  augustss 		tiocm_to_ucom(sc, cmd, *(int *)data);
    976       1.12  augustss 		break;
    977       1.12  augustss 
    978       1.12  augustss 	case TIOCMGET:
    979       1.12  augustss 		*(int *)data = ucom_to_tiocm(sc);
    980       1.12  augustss 		break;
    981       1.12  augustss 
    982      1.106       gdt 	case PPS_IOC_CREATE:
    983      1.106       gdt 	case PPS_IOC_DESTROY:
    984      1.106       gdt 	case PPS_IOC_GETPARAMS:
    985      1.106       gdt 	case PPS_IOC_SETPARAMS:
    986      1.106       gdt 	case PPS_IOC_GETCAP:
    987      1.106       gdt 	case PPS_IOC_FETCH:
    988      1.106       gdt #ifdef PPS_SYNC
    989      1.106       gdt 	case PPS_IOC_KCBIND:
    990      1.106       gdt #endif
    991      1.106       gdt 		mutex_spin_enter(&timecounter_lock);
    992      1.106       gdt 		error = pps_ioctl(cmd, data, &sc->sc_pps_state);
    993      1.106       gdt 		mutex_spin_exit(&timecounter_lock);
    994      1.106       gdt 		break;
    995      1.106       gdt 
    996       1.12  augustss 	default:
    997       1.42    atatat 		error = EPASSTHROUGH;
    998       1.12  augustss 		break;
    999       1.12  augustss 	}
   1000       1.12  augustss 
   1001      1.111     skrll 	return error;
   1002       1.12  augustss }
   1003       1.12  augustss 
   1004       1.82    martin static void
   1005       1.29    toshii tiocm_to_ucom(struct ucom_softc *sc, u_long how, int ttybits)
   1006       1.12  augustss {
   1007       1.12  augustss 	u_char combits;
   1008        1.3  augustss 
   1009       1.12  augustss 	combits = 0;
   1010       1.12  augustss 	if (ISSET(ttybits, TIOCM_DTR))
   1011       1.12  augustss 		SET(combits, UMCR_DTR);
   1012       1.12  augustss 	if (ISSET(ttybits, TIOCM_RTS))
   1013       1.12  augustss 		SET(combits, UMCR_RTS);
   1014       1.43  augustss 
   1015      1.114     skrll 	mutex_enter(&sc->sc_lock);
   1016       1.12  augustss 	switch (how) {
   1017       1.12  augustss 	case TIOCMBIC:
   1018       1.12  augustss 		CLR(sc->sc_mcr, combits);
   1019       1.12  augustss 		break;
   1020       1.12  augustss 
   1021       1.12  augustss 	case TIOCMBIS:
   1022       1.12  augustss 		SET(sc->sc_mcr, combits);
   1023       1.12  augustss 		break;
   1024       1.12  augustss 
   1025       1.12  augustss 	case TIOCMSET:
   1026       1.12  augustss 		CLR(sc->sc_mcr, UMCR_DTR | UMCR_RTS);
   1027       1.12  augustss 		SET(sc->sc_mcr, combits);
   1028       1.12  augustss 		break;
   1029       1.12  augustss 	}
   1030      1.115     skrll 	u_char mcr = sc->sc_mcr;
   1031      1.114     skrll 	mutex_exit(&sc->sc_lock);
   1032       1.12  augustss 
   1033       1.27    toshii 	if (how == TIOCMSET || ISSET(combits, UMCR_DTR))
   1034      1.115     skrll 		ucom_dtr(sc, (mcr & UMCR_DTR) != 0);
   1035       1.27    toshii 	if (how == TIOCMSET || ISSET(combits, UMCR_RTS))
   1036      1.115     skrll 		ucom_rts(sc, (mcr & UMCR_RTS) != 0);
   1037       1.12  augustss }
   1038       1.12  augustss 
   1039       1.82    martin static int
   1040       1.24  augustss ucom_to_tiocm(struct ucom_softc *sc)
   1041       1.12  augustss {
   1042       1.12  augustss 	u_char combits;
   1043       1.12  augustss 	int ttybits = 0;
   1044       1.12  augustss 
   1045      1.114     skrll 	mutex_enter(&sc->sc_lock);
   1046       1.12  augustss 	combits = sc->sc_mcr;
   1047       1.12  augustss 	if (ISSET(combits, UMCR_DTR))
   1048       1.12  augustss 		SET(ttybits, TIOCM_DTR);
   1049       1.12  augustss 	if (ISSET(combits, UMCR_RTS))
   1050       1.12  augustss 		SET(ttybits, TIOCM_RTS);
   1051       1.12  augustss 
   1052       1.12  augustss 	combits = sc->sc_msr;
   1053       1.12  augustss 	if (ISSET(combits, UMSR_DCD))
   1054       1.12  augustss 		SET(ttybits, TIOCM_CD);
   1055       1.12  augustss 	if (ISSET(combits, UMSR_CTS))
   1056       1.12  augustss 		SET(ttybits, TIOCM_CTS);
   1057       1.12  augustss 	if (ISSET(combits, UMSR_DSR))
   1058       1.12  augustss 		SET(ttybits, TIOCM_DSR);
   1059       1.12  augustss 	if (ISSET(combits, UMSR_RI | UMSR_TERI))
   1060       1.12  augustss 		SET(ttybits, TIOCM_RI);
   1061       1.12  augustss 
   1062       1.12  augustss #if 0
   1063       1.12  augustss XXX;
   1064       1.12  augustss 	if (sc->sc_ier != 0)
   1065       1.12  augustss 		SET(ttybits, TIOCM_LE);
   1066       1.12  augustss #endif
   1067      1.114     skrll 	mutex_exit(&sc->sc_lock);
   1068       1.12  augustss 
   1069      1.111     skrll 	return ttybits;
   1070       1.12  augustss }
   1071       1.12  augustss 
   1072       1.82    martin static void
   1073       1.77      cube ucom_break(struct ucom_softc *sc, int onoff)
   1074       1.12  augustss {
   1075      1.111     skrll 	UCOMHIST_FUNC(); UCOMHIST_CALLED();
   1076      1.111     skrll 
   1077      1.119  pgoyette 	DPRINTF("onoff=%jd", onoff, 0, 0, 0);
   1078       1.12  augustss 
   1079       1.14  augustss 	if (sc->sc_methods->ucom_set != NULL)
   1080       1.14  augustss 		sc->sc_methods->ucom_set(sc->sc_parent, sc->sc_portno,
   1081       1.14  augustss 		    UCOM_SET_BREAK, onoff);
   1082       1.12  augustss }
   1083       1.12  augustss 
   1084       1.82    martin static void
   1085       1.24  augustss ucom_dtr(struct ucom_softc *sc, int onoff)
   1086       1.12  augustss {
   1087      1.111     skrll 	UCOMHIST_FUNC(); UCOMHIST_CALLED();
   1088      1.111     skrll 
   1089      1.119  pgoyette 	DPRINTF("onoff=%jd", onoff, 0, 0, 0);
   1090       1.12  augustss 
   1091       1.14  augustss 	if (sc->sc_methods->ucom_set != NULL)
   1092       1.43  augustss 		sc->sc_methods->ucom_set(sc->sc_parent, sc->sc_portno,
   1093       1.14  augustss 		    UCOM_SET_DTR, onoff);
   1094       1.12  augustss }
   1095       1.12  augustss 
   1096       1.82    martin static void
   1097       1.24  augustss ucom_rts(struct ucom_softc *sc, int onoff)
   1098       1.12  augustss {
   1099      1.111     skrll 	UCOMHIST_FUNC(); UCOMHIST_CALLED();
   1100      1.111     skrll 
   1101      1.119  pgoyette 	DPRINTF("onoff=%jd", onoff, 0, 0, 0);
   1102       1.12  augustss 
   1103       1.14  augustss 	if (sc->sc_methods->ucom_set != NULL)
   1104       1.43  augustss 		sc->sc_methods->ucom_set(sc->sc_parent, sc->sc_portno,
   1105       1.14  augustss 		    UCOM_SET_RTS, onoff);
   1106       1.12  augustss }
   1107       1.12  augustss 
   1108       1.22  augustss void
   1109       1.24  augustss ucom_status_change(struct ucom_softc *sc)
   1110       1.12  augustss {
   1111       1.27    toshii 	struct tty *tp = sc->sc_tty;
   1112       1.27    toshii 
   1113       1.14  augustss 	if (sc->sc_methods->ucom_get_status != NULL) {
   1114      1.117     skrll 		u_char msr, lsr;
   1115      1.115     skrll 
   1116       1.14  augustss 		sc->sc_methods->ucom_get_status(sc->sc_parent, sc->sc_portno,
   1117      1.115     skrll 		    &lsr, &msr);
   1118      1.115     skrll 		mutex_enter(&sc->sc_lock);
   1119      1.115     skrll 		u_char old_msr = sc->sc_msr;
   1120      1.115     skrll 
   1121      1.115     skrll 		sc->sc_lsr = lsr;
   1122      1.115     skrll 		sc->sc_msr = msr;
   1123      1.115     skrll 		mutex_exit(&sc->sc_lock);
   1124      1.115     skrll 
   1125      1.115     skrll 		if (ISSET((msr ^ old_msr), UMSR_DCD)) {
   1126      1.106       gdt 			mutex_spin_enter(&timecounter_lock);
   1127      1.106       gdt 			pps_capture(&sc->sc_pps_state);
   1128      1.106       gdt 			pps_event(&sc->sc_pps_state,
   1129      1.106       gdt 			    (sc->sc_msr & UMSR_DCD) ?
   1130      1.106       gdt 			    PPS_CAPTUREASSERT :
   1131      1.106       gdt 			    PPS_CAPTURECLEAR);
   1132      1.106       gdt 			mutex_spin_exit(&timecounter_lock);
   1133      1.106       gdt 
   1134      1.115     skrll 			(*tp->t_linesw->l_modem)(tp, ISSET(msr, UMSR_DCD));
   1135      1.106       gdt 		}
   1136       1.14  augustss 	} else {
   1137      1.115     skrll 		mutex_enter(&sc->sc_lock);
   1138       1.14  augustss 		sc->sc_lsr = 0;
   1139       1.54  augustss 		/* Assume DCD is present, if we have no chance to check it. */
   1140       1.54  augustss 		sc->sc_msr = UMSR_DCD;
   1141      1.115     skrll 		mutex_exit(&sc->sc_lock);
   1142       1.14  augustss 	}
   1143       1.12  augustss }
   1144       1.12  augustss 
   1145       1.82    martin static int
   1146       1.24  augustss ucomparam(struct tty *tp, struct termios *t)
   1147       1.12  augustss {
   1148      1.115     skrll 	const int unit = UCOMUNIT(tp->t_dev);
   1149      1.115     skrll 	struct ucom_softc * const sc = device_lookup_private(&ucom_cd, unit);
   1150      1.115     skrll 	int error = 0;
   1151       1.12  augustss 
   1152      1.111     skrll 	UCOMHIST_FUNC(); UCOMHIST_CALLED();
   1153      1.111     skrll 
   1154      1.115     skrll 	if (sc == NULL)
   1155      1.111     skrll 		return EIO;
   1156       1.12  augustss 
   1157      1.115     skrll 	mutex_enter(&sc->sc_lock);
   1158      1.115     skrll 	if (sc->sc_dying) {
   1159      1.115     skrll 		DPRINTF("... dying", 0, 0, 0, 0);
   1160      1.115     skrll 		mutex_exit(&sc->sc_lock);
   1161      1.115     skrll 		return EIO;
   1162      1.115     skrll 	}
   1163      1.115     skrll 
   1164      1.115     skrll 	sc->sc_refcnt++;
   1165      1.115     skrll 	mutex_exit(&sc->sc_lock);
   1166      1.115     skrll 
   1167       1.12  augustss 	/* Check requested parameters. */
   1168      1.115     skrll 	if (t->c_ispeed && t->c_ispeed != t->c_ospeed) {
   1169      1.115     skrll 		error = EINVAL;
   1170      1.115     skrll 		goto out;
   1171      1.115     skrll 	}
   1172       1.12  augustss 
   1173       1.12  augustss 	/*
   1174       1.12  augustss 	 * For the console, always force CLOCAL and !HUPCL, so that the port
   1175       1.12  augustss 	 * is always active.
   1176       1.12  augustss 	 */
   1177       1.12  augustss 	if (ISSET(sc->sc_swflags, TIOCFLAG_SOFTCAR)) {
   1178       1.12  augustss 		SET(t->c_cflag, CLOCAL);
   1179       1.12  augustss 		CLR(t->c_cflag, HUPCL);
   1180       1.12  augustss 	}
   1181       1.12  augustss 
   1182       1.12  augustss 	/*
   1183       1.12  augustss 	 * If there were no changes, don't do anything.  This avoids dropping
   1184       1.12  augustss 	 * input and improves performance when all we did was frob things like
   1185       1.12  augustss 	 * VMIN and VTIME.
   1186       1.12  augustss 	 */
   1187       1.12  augustss 	if (tp->t_ospeed == t->c_ospeed &&
   1188      1.115     skrll 	    tp->t_cflag == t->c_cflag) {
   1189      1.115     skrll 		goto out;
   1190      1.115     skrll 	}
   1191       1.12  augustss 
   1192       1.30  augustss 	/* XXX lcr = ISSET(sc->sc_lcr, LCR_SBREAK) | cflag2lcr(t->c_cflag); */
   1193       1.12  augustss 
   1194       1.12  augustss 	/* And copy to tty. */
   1195       1.12  augustss 	tp->t_ispeed = 0;
   1196       1.12  augustss 	tp->t_ospeed = t->c_ospeed;
   1197       1.12  augustss 	tp->t_cflag = t->c_cflag;
   1198       1.12  augustss 
   1199       1.14  augustss 	if (sc->sc_methods->ucom_param != NULL) {
   1200       1.14  augustss 		error = sc->sc_methods->ucom_param(sc->sc_parent, sc->sc_portno,
   1201      1.115     skrll 		    t);
   1202       1.14  augustss 		if (error)
   1203      1.115     skrll 			goto out;
   1204       1.14  augustss 	}
   1205       1.12  augustss 
   1206       1.30  augustss 	/* XXX worry about CHWFLOW */
   1207       1.12  augustss 
   1208       1.12  augustss 	/*
   1209       1.12  augustss 	 * Update the tty layer's idea of the carrier bit, in case we changed
   1210       1.12  augustss 	 * CLOCAL or MDMBUF.  We don't hang up here; we only do that by
   1211       1.12  augustss 	 * explicit request.
   1212       1.12  augustss 	 */
   1213      1.111     skrll 	DPRINTF("l_modem", 0, 0, 0, 0);
   1214       1.54  augustss 	(void) (*tp->t_linesw->l_modem)(tp, ISSET(sc->sc_msr, UMSR_DCD));
   1215       1.12  augustss 
   1216       1.12  augustss #if 0
   1217       1.12  augustss XXX what if the hardware is not open
   1218       1.12  augustss 	if (!ISSET(t->c_cflag, CHWFLOW)) {
   1219       1.12  augustss 		if (sc->sc_tx_stopped) {
   1220       1.12  augustss 			sc->sc_tx_stopped = 0;
   1221       1.12  augustss 			ucomstart(tp);
   1222       1.12  augustss 		}
   1223       1.12  augustss 	}
   1224       1.12  augustss #endif
   1225      1.115     skrll out:
   1226      1.115     skrll 	mutex_enter(&sc->sc_lock);
   1227      1.115     skrll 	if (--sc->sc_refcnt < 0)
   1228      1.115     skrll 		cv_broadcast(&sc->sc_detachcv);
   1229      1.119  pgoyette 	DPRINTF("unit=%jd refcnt %jd", UCOMUNIT(tp->t_dev), sc->sc_refcnt,
   1230      1.119  pgoyette 	    0, 0);
   1231      1.115     skrll 
   1232      1.115     skrll 	mutex_exit(&sc->sc_lock);
   1233       1.12  augustss 
   1234  1.120.4.1  christos 	return error;
   1235       1.12  augustss }
   1236       1.12  augustss 
   1237       1.82    martin static int
   1238       1.82    martin ucomhwiflow(struct tty *tp, int block)
   1239       1.12  augustss {
   1240      1.115     skrll 	const int unit = UCOMUNIT(tp->t_dev);
   1241      1.115     skrll 	struct ucom_softc * const sc = device_lookup_private(&ucom_cd, unit);
   1242       1.82    martin 	int old;
   1243       1.12  augustss 
   1244      1.115     skrll 	UCOMHIST_FUNC(); UCOMHIST_CALLED();
   1245      1.115     skrll 
   1246      1.101  jakllsch 	if (sc == NULL)
   1247      1.111     skrll 		return 0;
   1248      1.101  jakllsch 
   1249  1.120.4.1  christos 	KASSERT(&sc->sc_lock);
   1250  1.120.4.1  christos 	KASSERT(mutex_owned(&tty_lock));
   1251  1.120.4.1  christos 
   1252       1.82    martin 	old = sc->sc_rx_stopped;
   1253       1.82    martin 	sc->sc_rx_stopped = (u_char)block;
   1254       1.12  augustss 
   1255       1.82    martin 	if (old && !block) {
   1256       1.82    martin 		sc->sc_rx_unblock = 1;
   1257  1.120.4.1  christos 		kpreempt_disable();
   1258       1.82    martin 		softint_schedule(sc->sc_si);
   1259  1.120.4.1  christos 		kpreempt_enable();
   1260       1.12  augustss 	}
   1261       1.82    martin 
   1262      1.111     skrll 	return 1;
   1263        1.1  augustss }
   1264        1.3  augustss 
   1265       1.82    martin static void
   1266       1.24  augustss ucomstart(struct tty *tp)
   1267       1.12  augustss {
   1268      1.115     skrll 	const int unit = UCOMUNIT(tp->t_dev);
   1269      1.115     skrll 	struct ucom_softc * const sc = device_lookup_private(&ucom_cd, unit);
   1270       1.82    martin 	struct ucom_buffer *ub;
   1271       1.12  augustss 	u_char *data;
   1272       1.12  augustss 	int cnt;
   1273       1.12  augustss 
   1274      1.115     skrll 	UCOMHIST_FUNC(); UCOMHIST_CALLED();
   1275      1.115     skrll 
   1276      1.111     skrll 	if (sc == NULL)
   1277      1.111     skrll 		return;
   1278      1.111     skrll 
   1279      1.111     skrll 	KASSERT(&sc->sc_lock);
   1280      1.111     skrll 	KASSERT(mutex_owned(&tty_lock));
   1281      1.111     skrll 	if (sc->sc_dying) {
   1282      1.115     skrll 		DPRINTF("... dying", 0, 0, 0, 0);
   1283       1.12  augustss 		return;
   1284      1.111     skrll 	}
   1285       1.12  augustss 
   1286       1.84  christos 	if (ISSET(tp->t_state, TS_BUSY | TS_TIMEOUT | TS_TTSTOP))
   1287       1.12  augustss 		goto out;
   1288       1.12  augustss 	if (sc->sc_tx_stopped)
   1289       1.12  augustss 		goto out;
   1290       1.12  augustss 
   1291       1.82    martin 	if (!ttypull(tp))
   1292       1.73        ad 		goto out;
   1293       1.12  augustss 
   1294       1.12  augustss 	/* Grab the first contiguous region of buffer space. */
   1295       1.12  augustss 	data = tp->t_outq.c_cf;
   1296       1.12  augustss 	cnt = ndqb(&tp->t_outq, 0);
   1297       1.12  augustss 
   1298       1.84  christos 	if (cnt == 0)
   1299       1.12  augustss 		goto out;
   1300       1.12  augustss 
   1301       1.82    martin 	ub = SIMPLEQ_FIRST(&sc->sc_obuff_free);
   1302      1.100   mlelstv 	if (ub == NULL) {
   1303      1.100   mlelstv 		SET(tp->t_state, TS_BUSY);
   1304      1.100   mlelstv 		goto out;
   1305      1.100   mlelstv 	}
   1306      1.111     skrll 
   1307       1.82    martin 	SIMPLEQ_REMOVE_HEAD(&sc->sc_obuff_free, ub_link);
   1308       1.12  augustss 
   1309       1.82    martin 	if (SIMPLEQ_FIRST(&sc->sc_obuff_free) == NULL)
   1310       1.82    martin 		SET(tp->t_state, TS_BUSY);
   1311       1.82    martin 
   1312       1.82    martin 	if (cnt > sc->sc_obufsize)
   1313       1.19  augustss 		cnt = sc->sc_obufsize;
   1314       1.82    martin 
   1315       1.22  augustss 	if (sc->sc_methods->ucom_write != NULL)
   1316       1.22  augustss 		sc->sc_methods->ucom_write(sc->sc_parent, sc->sc_portno,
   1317      1.115     skrll 		    ub->ub_data, data, &cnt);
   1318       1.22  augustss 	else
   1319       1.82    martin 		memcpy(ub->ub_data, data, cnt);
   1320       1.82    martin 
   1321       1.82    martin 	ub->ub_len = cnt;
   1322       1.82    martin 	ub->ub_index = 0;
   1323       1.12  augustss 
   1324       1.82    martin 	SIMPLEQ_INSERT_TAIL(&sc->sc_obuff_full, ub, ub_link);
   1325       1.82    martin 
   1326  1.120.4.1  christos 	kpreempt_disable();
   1327       1.82    martin 	softint_schedule(sc->sc_si);
   1328  1.120.4.1  christos 	kpreempt_enable();
   1329        1.3  augustss 
   1330       1.82    martin  out:
   1331      1.115     skrll 	DPRINTF("... done", 0, 0, 0, 0);
   1332      1.111     skrll 	return;
   1333       1.12  augustss }
   1334       1.12  augustss 
   1335       1.21    itojun void
   1336       1.69  christos ucomstop(struct tty *tp, int flag)
   1337       1.12  augustss {
   1338       1.19  augustss #if 0
   1339      1.115     skrll 	const int unit = UCOMUNIT(tp->t_dev);
   1340      1.115     skrll 	struct ucom_softc * const sc = device_lookup_private(&ucom_cd, unit);
   1341       1.12  augustss 
   1342      1.111     skrll 	mutex_enter(&sc->sc_lock);
   1343      1.111     skrll 	mutex_spin_enter(&tty_lock);
   1344       1.12  augustss 	if (ISSET(tp->t_state, TS_BUSY)) {
   1345      1.111     skrll 		/* obuff_full -> obuff_free? */
   1346       1.19  augustss 		/* sc->sc_tx_stopped = 1; */
   1347       1.12  augustss 		if (!ISSET(tp->t_state, TS_TTSTOP))
   1348       1.12  augustss 			SET(tp->t_state, TS_FLUSH);
   1349       1.12  augustss 	}
   1350      1.111     skrll 	mutex_spin_exit(&tty_lock);
   1351      1.111     skrll 	mutex_exit(&sc->sc_lock);
   1352       1.19  augustss #endif
   1353       1.12  augustss }
   1354       1.12  augustss 
   1355       1.82    martin static void
   1356       1.82    martin ucom_write_status(struct ucom_softc *sc, struct ucom_buffer *ub,
   1357       1.82    martin     usbd_status err)
   1358       1.82    martin {
   1359       1.82    martin 	struct tty *tp = sc->sc_tty;
   1360       1.82    martin 	uint32_t cc = ub->ub_len;
   1361       1.82    martin 
   1362      1.111     skrll 	KASSERT(mutex_owned(&sc->sc_lock));
   1363      1.111     skrll 
   1364       1.82    martin 	switch (err) {
   1365       1.82    martin 	case USBD_IN_PROGRESS:
   1366       1.82    martin 		ub->ub_index = ub->ub_len;
   1367       1.82    martin 		break;
   1368       1.82    martin 	case USBD_STALLED:
   1369       1.82    martin 		ub->ub_index = 0;
   1370  1.120.4.1  christos 		kpreempt_disable();
   1371       1.82    martin 		softint_schedule(sc->sc_si);
   1372  1.120.4.1  christos 		kpreempt_enable();
   1373       1.82    martin 		break;
   1374       1.82    martin 	case USBD_NORMAL_COMPLETION:
   1375       1.82    martin 		usbd_get_xfer_status(ub->ub_xfer, NULL, NULL, &cc, NULL);
   1376       1.82    martin 		rnd_add_uint32(&sc->sc_rndsource, cc);
   1377       1.82    martin 		/*FALLTHROUGH*/
   1378       1.82    martin 	default:
   1379       1.82    martin 		SIMPLEQ_REMOVE_HEAD(&sc->sc_obuff_full, ub_link);
   1380       1.82    martin 		SIMPLEQ_INSERT_TAIL(&sc->sc_obuff_free, ub, ub_link);
   1381       1.82    martin 		cc -= sc->sc_opkthdrlen;
   1382       1.82    martin 
   1383      1.100   mlelstv 		mutex_spin_enter(&tty_lock);
   1384       1.82    martin 		CLR(tp->t_state, TS_BUSY);
   1385       1.82    martin 		if (ISSET(tp->t_state, TS_FLUSH))
   1386       1.82    martin 			CLR(tp->t_state, TS_FLUSH);
   1387       1.82    martin 		else
   1388       1.82    martin 			ndflush(&tp->t_outq, cc);
   1389      1.100   mlelstv 		mutex_spin_exit(&tty_lock);
   1390       1.82    martin 
   1391       1.82    martin 		if (err != USBD_CANCELLED && err != USBD_IOERROR &&
   1392       1.82    martin 		    !sc->sc_dying) {
   1393       1.82    martin 			if ((ub = SIMPLEQ_FIRST(&sc->sc_obuff_full)) != NULL)
   1394       1.82    martin 				ucom_submit_write(sc, ub);
   1395       1.82    martin 
   1396      1.111     skrll 			mutex_spin_enter(&tty_lock);
   1397       1.82    martin 			(*tp->t_linesw->l_start)(tp);
   1398      1.111     skrll 			mutex_spin_exit(&tty_lock);
   1399       1.82    martin 		}
   1400       1.82    martin 		break;
   1401       1.82    martin 	}
   1402       1.82    martin }
   1403       1.82    martin 
   1404       1.82    martin static void
   1405       1.82    martin ucom_submit_write(struct ucom_softc *sc, struct ucom_buffer *ub)
   1406       1.82    martin {
   1407       1.82    martin 
   1408      1.111     skrll 	KASSERT(mutex_owned(&sc->sc_lock));
   1409      1.111     skrll 
   1410      1.111     skrll 	usbd_setup_xfer(ub->ub_xfer, sc, ub->ub_data, ub->ub_len,
   1411      1.111     skrll 	    0, USBD_NO_TIMEOUT, ucomwritecb);
   1412       1.82    martin 
   1413       1.82    martin 	ucom_write_status(sc, ub, usbd_transfer(ub->ub_xfer));
   1414       1.82    martin }
   1415       1.82    martin 
   1416       1.82    martin static void
   1417      1.111     skrll ucomwritecb(struct usbd_xfer *xfer, void *p, usbd_status status)
   1418       1.12  augustss {
   1419       1.12  augustss 	struct ucom_softc *sc = (struct ucom_softc *)p;
   1420       1.82    martin 
   1421      1.111     skrll 	mutex_enter(&sc->sc_lock);
   1422       1.82    martin 	ucom_write_status(sc, SIMPLEQ_FIRST(&sc->sc_obuff_full), status);
   1423      1.111     skrll 	mutex_exit(&sc->sc_lock);
   1424       1.82    martin 
   1425       1.82    martin }
   1426       1.82    martin 
   1427       1.82    martin static void
   1428       1.82    martin ucom_softintr(void *arg)
   1429       1.82    martin {
   1430      1.115     skrll 	UCOMHIST_FUNC(); UCOMHIST_CALLED();
   1431      1.115     skrll 
   1432       1.82    martin 	struct ucom_softc *sc = arg;
   1433       1.12  augustss 
   1434      1.111     skrll 	mutex_enter(&sc->sc_lock);
   1435      1.115     skrll 	if (sc->sc_dying) {
   1436      1.115     skrll 		DPRINTF("... dying", 0, 0, 0, 0);
   1437      1.115     skrll 		mutex_exit(&sc->sc_lock);
   1438      1.115     skrll 		return;
   1439      1.115     skrll 	}
   1440      1.115     skrll 
   1441      1.115     skrll 	struct tty *tp = sc->sc_tty;
   1442      1.111     skrll 	mutex_enter(&tty_lock);
   1443      1.111     skrll 	if (!ISSET(tp->t_state, TS_ISOPEN)) {
   1444      1.111     skrll 		mutex_exit(&tty_lock);
   1445      1.111     skrll 		mutex_exit(&sc->sc_lock);
   1446       1.82    martin 		return;
   1447      1.111     skrll 	}
   1448      1.111     skrll 	mutex_exit(&tty_lock);
   1449       1.12  augustss 
   1450      1.115     skrll 	struct ucom_buffer *ub = SIMPLEQ_FIRST(&sc->sc_obuff_full);
   1451       1.82    martin 
   1452       1.82    martin 	if (ub != NULL && ub->ub_index == 0)
   1453       1.82    martin 		ucom_submit_write(sc, ub);
   1454       1.12  augustss 
   1455       1.82    martin 	if (sc->sc_rx_unblock)
   1456       1.82    martin 		ucom_read_complete(sc);
   1457       1.12  augustss 
   1458      1.111     skrll 	mutex_exit(&sc->sc_lock);
   1459       1.82    martin }
   1460       1.82    martin 
   1461       1.82    martin static void
   1462       1.82    martin ucom_read_complete(struct ucom_softc *sc)
   1463       1.82    martin {
   1464       1.82    martin 	int (*rint)(int, struct tty *);
   1465       1.82    martin 	struct ucom_buffer *ub;
   1466       1.82    martin 	struct tty *tp;
   1467      1.111     skrll 
   1468      1.111     skrll 	KASSERT(mutex_owned(&sc->sc_lock));
   1469       1.82    martin 
   1470       1.82    martin 	tp = sc->sc_tty;
   1471       1.82    martin 	rint = tp->t_linesw->l_rint;
   1472       1.82    martin 	ub = SIMPLEQ_FIRST(&sc->sc_ibuff_full);
   1473       1.39  augustss 
   1474       1.82    martin 	while (ub != NULL && !sc->sc_rx_stopped) {
   1475       1.82    martin 
   1476      1.111     skrll 		/* XXX ttyinput takes tty_lock */
   1477       1.82    martin 		while (ub->ub_index < ub->ub_len && !sc->sc_rx_stopped) {
   1478       1.82    martin 			/* Give characters to tty layer. */
   1479       1.82    martin 			if ((*rint)(ub->ub_data[ub->ub_index], tp) == -1) {
   1480       1.82    martin 				/* Overflow: drop remainder */
   1481       1.82    martin 				ub->ub_index = ub->ub_len;
   1482       1.82    martin 			} else
   1483       1.82    martin 				ub->ub_index++;
   1484       1.82    martin 		}
   1485       1.82    martin 
   1486       1.82    martin 		if (ub->ub_index == ub->ub_len) {
   1487       1.82    martin 			SIMPLEQ_REMOVE_HEAD(&sc->sc_ibuff_full, ub_link);
   1488       1.82    martin 
   1489      1.115     skrll 			sc->sc_refcnt--;
   1490      1.115     skrll 			/* increments sc_refcnt */
   1491       1.82    martin 			ucomsubmitread(sc, ub);
   1492       1.82    martin 
   1493       1.82    martin 			ub = SIMPLEQ_FIRST(&sc->sc_ibuff_full);
   1494       1.82    martin 		}
   1495       1.82    martin 	}
   1496       1.82    martin 
   1497       1.82    martin 	sc->sc_rx_unblock = (ub != NULL);
   1498       1.12  augustss }
   1499       1.12  augustss 
   1500      1.115     skrll static int
   1501       1.82    martin ucomsubmitread(struct ucom_softc *sc, struct ucom_buffer *ub)
   1502       1.12  augustss {
   1503       1.12  augustss 	usbd_status err;
   1504       1.12  augustss 
   1505      1.115     skrll 	KASSERT(mutex_owned(&sc->sc_lock));
   1506      1.115     skrll 
   1507      1.111     skrll 	usbd_setup_xfer(ub->ub_xfer, sc, ub->ub_data, sc->sc_ibufsize,
   1508      1.111     skrll 	    USBD_SHORT_XFER_OK, USBD_NO_TIMEOUT, ucomreadcb);
   1509       1.82    martin 
   1510       1.82    martin 	if ((err = usbd_transfer(ub->ub_xfer)) != USBD_IN_PROGRESS) {
   1511       1.82    martin 		/* XXX: Recover from this, please! */
   1512      1.115     skrll 		printf("%s: err=%s\n", __func__, usbd_errstr(err));
   1513      1.115     skrll 		return EIO;
   1514       1.12  augustss 	}
   1515       1.82    martin 
   1516      1.115     skrll 	sc->sc_refcnt++;
   1517      1.115     skrll 
   1518       1.82    martin 	SIMPLEQ_INSERT_TAIL(&sc->sc_ibuff_empty, ub, ub_link);
   1519       1.82    martin 
   1520      1.115     skrll 	return 0;
   1521       1.12  augustss }
   1522       1.43  augustss 
   1523       1.82    martin static void
   1524      1.111     skrll ucomreadcb(struct usbd_xfer *xfer, void *p, usbd_status status)
   1525       1.12  augustss {
   1526       1.12  augustss 	struct ucom_softc *sc = (struct ucom_softc *)p;
   1527       1.82    martin 	struct ucom_buffer *ub;
   1528      1.111     skrll 	uint32_t cc;
   1529       1.12  augustss 	u_char *cp;
   1530       1.12  augustss 
   1531      1.111     skrll 	UCOMHIST_FUNC(); UCOMHIST_CALLED();
   1532      1.111     skrll 
   1533      1.115     skrll 	mutex_enter(&sc->sc_lock);
   1534      1.115     skrll 
   1535      1.115     skrll 	struct tty *tp = sc->sc_tty;
   1536      1.112     skrll 
   1537      1.115     skrll 	if (status == USBD_CANCELLED || status == USBD_IOERROR ||
   1538       1.34  augustss 	    sc->sc_dying) {
   1539      1.115     skrll 
   1540      1.119  pgoyette 		DPRINTF("... done (status %jd dying %jd)", status, sc->sc_dying,
   1541      1.115     skrll 		    0, 0);
   1542      1.115     skrll 
   1543      1.115     skrll 		if (status == USBD_IOERROR || sc->sc_dying) {
   1544      1.115     skrll 			/* Send something to wake upper layer */
   1545      1.115     skrll 			(tp->t_linesw->l_rint)('\n', tp);
   1546      1.115     skrll 			mutex_spin_enter(&tty_lock);	/* XXX */
   1547      1.115     skrll 			ttwakeup(tp);
   1548      1.115     skrll 			mutex_spin_exit(&tty_lock);	/* XXX */
   1549      1.115     skrll 		}
   1550      1.115     skrll 
   1551      1.115     skrll 		if (--sc->sc_refcnt < 0)
   1552      1.115     skrll 			cv_broadcast(&sc->sc_detachcv);
   1553      1.119  pgoyette 		DPRINTF("unit=%jd refcnt %jd", UCOMUNIT(tp->t_dev),
   1554      1.119  pgoyette 		    sc->sc_refcnt, 0, 0);
   1555      1.111     skrll 		mutex_exit(&sc->sc_lock);
   1556      1.115     skrll 
   1557       1.12  augustss 		return;
   1558       1.34  augustss 	}
   1559       1.12  augustss 
   1560      1.112     skrll 	ub = SIMPLEQ_FIRST(&sc->sc_ibuff_empty);
   1561      1.112     skrll 	SIMPLEQ_REMOVE_HEAD(&sc->sc_ibuff_empty, ub_link);
   1562      1.112     skrll 
   1563      1.115     skrll 	if (status != USBD_NORMAL_COMPLETION) {
   1564      1.115     skrll 		if (status == USBD_STALLED) {
   1565      1.115     skrll 			usbd_clear_endpoint_stall_async(sc->sc_bulkin_pipe);
   1566      1.115     skrll 		} else {
   1567      1.115     skrll 			printf("ucomreadcb: wonky status=%s\n",
   1568      1.115     skrll 			    usbd_errstr(status));
   1569      1.115     skrll 		}
   1570      1.115     skrll 
   1571      1.119  pgoyette 		DPRINTF("... done (status %jd)", status, 0, 0, 0);
   1572      1.115     skrll 		sc->sc_refcnt--;
   1573      1.115     skrll 		/* re-adds ub to sc_ibuff_empty and increments sc_refcnt */
   1574       1.82    martin 		ucomsubmitread(sc, ub);
   1575      1.111     skrll 		mutex_exit(&sc->sc_lock);
   1576       1.82    martin 		return;
   1577       1.82    martin 	}
   1578       1.82    martin 
   1579       1.48   thorpej 	usbd_get_xfer_status(xfer, NULL, (void *)&cp, &cc, NULL);
   1580       1.82    martin 
   1581       1.95  jakllsch #ifdef UCOM_DEBUG
   1582       1.95  jakllsch 	/* This is triggered by uslsa(4) occasionally. */
   1583       1.95  jakllsch 	if ((ucomdebug > 0) && (cc == 0)) {
   1584       1.95  jakllsch 		device_printf(sc->sc_dev, "ucomreadcb: zero length xfer!\n");
   1585       1.82    martin 	}
   1586       1.95  jakllsch #endif
   1587       1.82    martin 	KDASSERT(cp == ub->ub_data);
   1588       1.82    martin 
   1589       1.31  explorer 	rnd_add_uint32(&sc->sc_rndsource, cc);
   1590       1.82    martin 
   1591      1.115     skrll 	if (sc->sc_state != UCOM_OPEN) {
   1592      1.115     skrll 		/* Go around again - we're not quite ready */
   1593      1.115     skrll 		sc->sc_refcnt--;
   1594      1.115     skrll 		/* re-adds ub to sc_ibuff_empty and increments sc_refcnt */
   1595       1.82    martin 		ucomsubmitread(sc, ub);
   1596      1.111     skrll 		mutex_exit(&sc->sc_lock);
   1597      1.115     skrll 		DPRINTF("... done (not open)", 0, 0, 0, 0);
   1598       1.82    martin 		return;
   1599       1.82    martin 	}
   1600       1.82    martin 
   1601      1.118     skrll 	mutex_exit(&sc->sc_lock);
   1602       1.82    martin 	if (sc->sc_methods->ucom_read != NULL) {
   1603       1.22  augustss 		sc->sc_methods->ucom_read(sc->sc_parent, sc->sc_portno,
   1604       1.82    martin 		    &cp, &cc);
   1605       1.82    martin 		ub->ub_index = (u_int)(cp - ub->ub_data);
   1606       1.82    martin 	} else
   1607       1.82    martin 		ub->ub_index = 0;
   1608       1.82    martin 
   1609       1.82    martin 	ub->ub_len = cc;
   1610       1.22  augustss 
   1611      1.118     skrll 	mutex_enter(&sc->sc_lock);
   1612      1.118     skrll 	if (sc->sc_dying) {
   1613      1.118     skrll 		if (--sc->sc_refcnt < 0)
   1614      1.118     skrll 			cv_broadcast(&sc->sc_detachcv);
   1615      1.118     skrll 		mutex_exit(&sc->sc_lock);
   1616      1.118     skrll 		DPRINTF("... dying", 0, 0, 0, 0);
   1617      1.118     skrll 		return;
   1618      1.118     skrll 	}
   1619      1.118     skrll 
   1620       1.82    martin 	SIMPLEQ_INSERT_TAIL(&sc->sc_ibuff_full, ub, ub_link);
   1621       1.12  augustss 
   1622       1.82    martin 	ucom_read_complete(sc);
   1623      1.111     skrll 	mutex_exit(&sc->sc_lock);
   1624      1.115     skrll 
   1625      1.115     skrll 	DPRINTF("... done", 0, 0, 0, 0);
   1626       1.12  augustss }
   1627       1.12  augustss 
   1628       1.82    martin static void
   1629       1.24  augustss ucom_cleanup(struct ucom_softc *sc)
   1630       1.12  augustss {
   1631       1.82    martin 
   1632      1.111     skrll 	UCOMHIST_FUNC(); UCOMHIST_CALLED();
   1633      1.111     skrll 
   1634      1.111     skrll 	DPRINTF("aborting pipes", 0, 0, 0, 0);
   1635      1.111     skrll 
   1636      1.115     skrll 	mutex_enter(&sc->sc_lock);
   1637      1.115     skrll 
   1638      1.115     skrll 	/* If we're dying then the detach routine will abort our pipes, etc */
   1639      1.115     skrll 	if (sc->sc_dying) {
   1640      1.115     skrll 		DPRINTF("... dying", 0, 0, 0, 0);
   1641      1.115     skrll 
   1642      1.115     skrll 		mutex_exit(&sc->sc_lock);
   1643      1.115     skrll 		return;
   1644      1.115     skrll 	}
   1645       1.12  augustss 
   1646      1.116     skrll 	mutex_exit(&sc->sc_lock);
   1647      1.116     skrll 
   1648       1.12  augustss 	ucom_shutdown(sc);
   1649      1.115     skrll 
   1650       1.33  augustss 	if (sc->sc_bulkin_pipe != NULL) {
   1651      1.112     skrll 		usbd_abort_pipe(sc->sc_bulkin_pipe);
   1652       1.33  augustss 	}
   1653       1.33  augustss 	if (sc->sc_bulkout_pipe != NULL) {
   1654      1.112     skrll 		usbd_abort_pipe(sc->sc_bulkout_pipe);
   1655       1.33  augustss 	}
   1656       1.12  augustss }
   1657       1.13  augustss 
   1658       1.13  augustss #endif /* NUCOM > 0 */
   1659       1.12  augustss 
   1660       1.20  augustss int
   1661       1.24  augustss ucomprint(void *aux, const char *pnp)
   1662       1.12  augustss {
   1663      1.111     skrll 	struct ucom_attach_args *ucaa = aux;
   1664       1.12  augustss 
   1665       1.12  augustss 	if (pnp)
   1666       1.49   thorpej 		aprint_normal("ucom at %s", pnp);
   1667      1.111     skrll 	if (ucaa->ucaa_portno != UCOM_UNK_PORTNO)
   1668      1.111     skrll 		aprint_normal(" portno %d", ucaa->ucaa_portno);
   1669      1.111     skrll 	return UNCONF;
   1670       1.12  augustss }
   1671       1.12  augustss 
   1672       1.20  augustss int
   1673       1.77      cube ucomsubmatch(device_t parent, cfdata_t cf,
   1674       1.69  christos 	     const int *ldesc, void *aux)
   1675       1.12  augustss {
   1676      1.111     skrll 	struct ucom_attach_args *ucaa = aux;
   1677       1.12  augustss 
   1678      1.111     skrll 	if (ucaa->ucaa_portno != UCOM_UNK_PORTNO &&
   1679       1.53  drochner 	    cf->cf_loc[UCOMBUSCF_PORTNO] != UCOMBUSCF_PORTNO_DEFAULT &&
   1680      1.111     skrll 	    cf->cf_loc[UCOMBUSCF_PORTNO] != ucaa->ucaa_portno)
   1681      1.111     skrll 		return 0;
   1682      1.111     skrll 	return config_match(parent, cf, aux);
   1683       1.12  augustss }
   1684