Home | History | Annotate | Line # | Download | only in usb
ucycom.c revision 1.56
      1  1.56  riastrad /*	$NetBSD: ucycom.c,v 1.56 2022/10/26 23:50:28 riastradh Exp $	*/
      2   1.1     skrll 
      3   1.1     skrll /*
      4   1.1     skrll  * Copyright (c) 2005 The NetBSD Foundation, Inc.
      5   1.1     skrll  * All rights reserved.
      6   1.1     skrll  *
      7   1.1     skrll  * This code is derived from software contributed to The NetBSD Foundation
      8  1.26     skrll  * by Nick Hudson
      9   1.1     skrll  *
     10   1.1     skrll  * Redistribution and use in source and binary forms, with or without
     11   1.1     skrll  * modification, are permitted provided that the following conditions
     12   1.1     skrll  * are met:
     13   1.1     skrll  * 1. Redistributions of source code must retain the above copyright
     14   1.1     skrll  *    notice, this list of conditions and the following disclaimer.
     15   1.1     skrll  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1     skrll  *    notice, this list of conditions and the following disclaimer in the
     17   1.1     skrll  *    documentation and/or other materials provided with the distribution.
     18   1.1     skrll  *
     19   1.1     skrll  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20   1.1     skrll  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21   1.1     skrll  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22   1.1     skrll  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23   1.1     skrll  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24   1.1     skrll  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25   1.1     skrll  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26   1.1     skrll  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27   1.1     skrll  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28   1.1     skrll  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29   1.1     skrll  * POSSIBILITY OF SUCH DAMAGE.
     30   1.1     skrll  */
     31   1.1     skrll /*
     32   1.1     skrll  * This code is based on the ucom driver.
     33   1.1     skrll  */
     34   1.1     skrll 
     35   1.1     skrll /*
     36   1.1     skrll  * Device driver for Cypress CY7C637xx and CY7C640/1xx series USB to
     37   1.1     skrll  * RS232 bridges.
     38   1.1     skrll  */
     39   1.1     skrll 
     40   1.1     skrll #include <sys/cdefs.h>
     41  1.56  riastrad __KERNEL_RCSID(0, "$NetBSD: ucycom.c,v 1.56 2022/10/26 23:50:28 riastradh Exp $");
     42  1.45     skrll 
     43  1.45     skrll #ifdef _KERNEL_OPT
     44  1.45     skrll #include "opt_usb.h"
     45  1.45     skrll #endif
     46   1.1     skrll 
     47   1.1     skrll #include <sys/param.h>
     48   1.1     skrll #include <sys/systm.h>
     49   1.1     skrll #include <sys/conf.h>
     50   1.1     skrll #include <sys/kernel.h>
     51  1.43     skrll #include <sys/kmem.h>
     52   1.3     skrll #include <sys/device.h>
     53   1.1     skrll #include <sys/sysctl.h>
     54   1.1     skrll #include <sys/tty.h>
     55   1.1     skrll #include <sys/file.h>
     56   1.1     skrll #include <sys/vnode.h>
     57  1.10      elad #include <sys/kauth.h>
     58  1.32  uebayasi #include <sys/lwp.h>
     59   1.1     skrll 
     60   1.1     skrll #include <dev/usb/usb.h>
     61   1.1     skrll #include <dev/usb/usbhid.h>
     62   1.1     skrll 
     63   1.1     skrll #include <dev/usb/usbdi.h>
     64   1.1     skrll #include <dev/usb/usbdi_util.h>
     65   1.1     skrll #include <dev/usb/usbdevs.h>
     66   1.1     skrll #include <dev/usb/uhidev.h>
     67  1.46    bouyer #include <dev/hid/hid.h>
     68   1.1     skrll 
     69   1.1     skrll #include "ioconf.h"
     70   1.1     skrll 
     71   1.1     skrll #ifdef UCYCOM_DEBUG
     72  1.31    dyoung #define DPRINTF(x)	if (ucycomdebug) printf x
     73  1.31    dyoung #define DPRINTFN(n, x)	if (ucycomdebug > (n)) printf x
     74  1.29     skrll int	ucycomdebug = 20;
     75   1.1     skrll #else
     76   1.1     skrll #define DPRINTF(x)
     77   1.1     skrll #define DPRINTFN(n,x)
     78   1.1     skrll #endif
     79   1.1     skrll 
     80   1.1     skrll 
     81  1.41  christos #define	UCYCOMCALLUNIT_MASK	TTCALLUNIT_MASK
     82  1.41  christos #define	UCYCOMUNIT_MASK		TTUNIT_MASK
     83  1.41  christos #define	UCYCOMDIALOUT_MASK	TTDIALOUT_MASK
     84  1.41  christos 
     85  1.41  christos #define	UCYCOMCALLUNIT(x)	TTCALLUNIT(x)
     86  1.41  christos #define	UCYCOMUNIT(x)		TTUNIT(x)
     87  1.41  christos #define	UCYCOMDIALOUT(x)	TTDIALOUT(x)
     88   1.1     skrll 
     89   1.1     skrll /* Configuration Byte */
     90   1.1     skrll #define UCYCOM_RESET		0x80
     91   1.1     skrll #define UCYCOM_PARITY_TYPE_MASK	0x20
     92   1.1     skrll #define  UCYCOM_PARITY_ODD	 0x20
     93   1.1     skrll #define  UCYCOM_PARITY_EVEN	 0x00
     94   1.1     skrll #define UCYCOM_PARITY_MASK	0x10
     95   1.1     skrll #define  UCYCOM_PARITY_ON	 0x10
     96   1.1     skrll #define  UCYCOM_PARITY_OFF	 0x00
     97   1.1     skrll #define UCYCOM_STOP_MASK	0x08
     98   1.1     skrll #define  UCYCOM_STOP_BITS_2	 0x08
     99   1.1     skrll #define  UCYCOM_STOP_BITS_1	 0x00
    100   1.1     skrll #define UCYCOM_DATA_MASK	0x03
    101   1.1     skrll #define  UCYCOM_DATA_BITS_8	 0x03
    102   1.1     skrll #define  UCYCOM_DATA_BITS_7	 0x02
    103   1.1     skrll #define  UCYCOM_DATA_BITS_6	 0x01
    104   1.1     skrll #define  UCYCOM_DATA_BITS_5	 0x00
    105   1.1     skrll 
    106   1.1     skrll /* Modem (Input) status byte */
    107   1.1     skrll #define UCYCOM_RI	0x80
    108   1.1     skrll #define UCYCOM_DCD	0x40
    109   1.1     skrll #define UCYCOM_DSR	0x20
    110   1.1     skrll #define UCYCOM_CTS	0x10
    111   1.1     skrll #define UCYCOM_ERROR	0x08
    112   1.1     skrll #define UCYCOM_LMASK	0x07
    113   1.1     skrll 
    114   1.1     skrll /* Modem (Output) control byte */
    115   1.1     skrll #define UCYCOM_DTR	0x20
    116   1.1     skrll #define UCYCOM_RTS	0x10
    117   1.1     skrll #define UCYCOM_ORESET	0x08
    118   1.1     skrll 
    119   1.1     skrll struct ucycom_softc {
    120  1.55  riastrad 	device_t		sc_dev;
    121  1.55  riastrad 	struct uhidev		*sc_hdev;
    122  1.54  riastrad 	struct usbd_device	*sc_udev;
    123   1.1     skrll 
    124  1.54  riastrad 	struct usb_task		sc_task;
    125   1.1     skrll 	struct tty		*sc_tty;
    126   1.1     skrll 
    127  1.49      maxv 	enum {
    128  1.49      maxv 		UCYCOM_INIT_NONE,
    129  1.49      maxv 		UCYCOM_INIT_INITED
    130  1.49      maxv 	} sc_init_state;
    131  1.49      maxv 
    132  1.35     skrll 	kmutex_t sc_lock;	/* protects refcnt, others */
    133  1.35     skrll 
    134   1.1     skrll 	/* uhidev parameters */
    135   1.1     skrll 	size_t			sc_flen; /* feature report length */
    136   1.1     skrll 	size_t			sc_olen; /* output report length */
    137   1.1     skrll 
    138   1.1     skrll 	uint8_t			*sc_obuf;
    139  1.29     skrll 	int			sc_wlen;
    140   1.1     skrll 
    141   1.1     skrll 	/* settings */
    142   1.1     skrll 	uint32_t		sc_baud;
    143   1.1     skrll 	uint8_t			sc_cfg;	/* Data format */
    144   1.1     skrll 	uint8_t			sc_mcr;	/* Modem control */
    145   1.1     skrll 	uint8_t			sc_msr;	/* Modem status */
    146   1.1     skrll 	int			sc_swflags;
    147   1.1     skrll 
    148   1.1     skrll 	/* flags */
    149   1.1     skrll 	char			sc_dying;
    150   1.1     skrll };
    151   1.1     skrll 
    152  1.48      maxv static dev_type_open(ucycomopen);
    153  1.48      maxv static dev_type_close(ucycomclose);
    154  1.48      maxv static dev_type_read(ucycomread);
    155  1.48      maxv static dev_type_write(ucycomwrite);
    156  1.48      maxv static dev_type_ioctl(ucycomioctl);
    157  1.48      maxv static dev_type_stop(ucycomstop);
    158  1.48      maxv static dev_type_tty(ucycomtty);
    159  1.48      maxv static dev_type_poll(ucycompoll);
    160   1.1     skrll 
    161   1.1     skrll const struct cdevsw ucycom_cdevsw = {
    162  1.38  dholland 	.d_open = ucycomopen,
    163  1.38  dholland 	.d_close = ucycomclose,
    164  1.38  dholland 	.d_read = ucycomread,
    165  1.38  dholland 	.d_write = ucycomwrite,
    166  1.38  dholland 	.d_ioctl = ucycomioctl,
    167  1.38  dholland 	.d_stop = ucycomstop,
    168  1.38  dholland 	.d_tty = ucycomtty,
    169  1.38  dholland 	.d_poll = ucycompoll,
    170  1.38  dholland 	.d_mmap = nommap,
    171  1.38  dholland 	.d_kqfilter = ttykqfilter,
    172  1.39  dholland 	.d_discard = nodiscard,
    173  1.38  dholland 	.d_flag = D_TTY
    174   1.1     skrll };
    175   1.1     skrll 
    176   1.1     skrll Static int ucycomparam(struct tty *, struct termios *);
    177   1.1     skrll Static void ucycomstart(struct tty *);
    178  1.54  riastrad Static void ucycomstarttask(void *);
    179  1.43     skrll Static void ucycomwritecb(struct usbd_xfer *, void *, usbd_status);
    180  1.55  riastrad Static void ucycom_intr(void *, void *, u_int);
    181   1.1     skrll Static int ucycom_configure(struct ucycom_softc *, uint32_t, uint8_t);
    182   1.1     skrll Static void tiocm_to_ucycom(struct ucycom_softc *, u_long, int);
    183   1.1     skrll Static int ucycom_to_tiocm(struct ucycom_softc *);
    184   1.1     skrll Static void ucycom_set_status(struct ucycom_softc *);
    185   1.1     skrll Static void ucycom_dtr(struct ucycom_softc *, int);
    186   1.1     skrll #if 0
    187   1.1     skrll Static void ucycom_rts(struct ucycom_softc *, int);
    188   1.1     skrll #endif
    189  1.43     skrll Static void ucycom_cleanup(struct ucycom_softc *);
    190   1.1     skrll 
    191   1.1     skrll #ifdef UCYCOM_DEBUG
    192   1.1     skrll Static void ucycom_get_cfg(struct ucycom_softc *);
    193   1.1     skrll #endif
    194   1.1     skrll 
    195   1.1     skrll Static const struct usb_devno ucycom_devs[] = {
    196   1.1     skrll 	{ USB_VENDOR_CYPRESS, USB_PRODUCT_CYPRESS_USBRS232 },
    197   1.1     skrll 	{ USB_VENDOR_DELORME, USB_PRODUCT_DELORME_EARTHMATE },
    198   1.1     skrll };
    199   1.1     skrll #define ucycom_lookup(v, p) usb_lookup(ucycom_devs, v, p)
    200   1.1     skrll 
    201  1.48      maxv static int	ucycom_match(device_t, cfdata_t, void *);
    202  1.48      maxv static void	ucycom_attach(device_t, device_t, void *);
    203  1.48      maxv static int	ucycom_detach(device_t, int);
    204  1.48      maxv static int	ucycom_activate(device_t, enum devact);
    205  1.47       mrg 
    206  1.44   msaitoh CFATTACH_DECL_NEW(ucycom, sizeof(struct ucycom_softc), ucycom_match,
    207  1.44   msaitoh     ucycom_attach, ucycom_detach, ucycom_activate);
    208   1.1     skrll 
    209  1.48      maxv static int
    210  1.23      cube ucycom_match(device_t parent, cfdata_t match, void *aux)
    211   1.1     skrll {
    212   1.1     skrll 	struct uhidev_attach_arg *uha = aux;
    213   1.1     skrll 
    214  1.44   msaitoh 	return ucycom_lookup(uha->uiaa->uiaa_vendor, uha->uiaa->uiaa_product)
    215  1.44   msaitoh 	    != NULL ? UMATCH_VENDOR_PRODUCT : UMATCH_NONE;
    216   1.1     skrll }
    217   1.1     skrll 
    218  1.48      maxv static void
    219  1.23      cube ucycom_attach(device_t parent, device_t self, void *aux)
    220   1.1     skrll {
    221  1.23      cube 	struct ucycom_softc *sc = device_private(self);
    222   1.1     skrll 	struct uhidev_attach_arg *uha = aux;
    223   1.1     skrll 	int size, repid;
    224   1.1     skrll 	void *desc;
    225   1.1     skrll 
    226  1.55  riastrad 	sc->sc_dev = self;
    227  1.55  riastrad 	sc->sc_hdev = uha->parent;
    228  1.54  riastrad 	sc->sc_udev = uha->uiaa->uiaa_device;
    229  1.49      maxv 	sc->sc_init_state = UCYCOM_INIT_NONE;
    230   1.1     skrll 
    231   1.1     skrll 	uhidev_get_report_desc(uha->parent, &desc, &size);
    232   1.1     skrll 	repid = uha->reportid;
    233   1.1     skrll 	sc->sc_olen = hid_report_size(desc, size, hid_output, repid);
    234   1.1     skrll 	sc->sc_flen = hid_report_size(desc, size, hid_feature, repid);
    235   1.1     skrll 
    236  1.49      maxv 	if (sc->sc_olen != 8 && sc->sc_olen != 32)
    237  1.49      maxv 		return;
    238  1.49      maxv 	if (sc->sc_flen != 5)
    239  1.49      maxv 		return;
    240  1.49      maxv 
    241   1.1     skrll 	sc->sc_msr = sc->sc_mcr = 0;
    242   1.1     skrll 
    243  1.54  riastrad 	/* not MP-safe */
    244  1.54  riastrad 	usb_init_task(&sc->sc_task, ucycomstarttask, sc, 0);
    245  1.54  riastrad 
    246   1.1     skrll 	/* set up tty */
    247  1.33     rmind 	sc->sc_tty = tty_alloc();
    248   1.1     skrll 	sc->sc_tty->t_sc = sc;
    249   1.1     skrll 	sc->sc_tty->t_oproc = ucycomstart;
    250   1.1     skrll 	sc->sc_tty->t_param = ucycomparam;
    251   1.1     skrll 
    252   1.1     skrll 	tty_attach(sc->sc_tty);
    253   1.1     skrll 
    254   1.4     skrll 	/* Nothing interesting to report */
    255  1.23      cube 	aprint_normal("\n");
    256  1.49      maxv 
    257  1.49      maxv 	sc->sc_init_state = UCYCOM_INIT_INITED;
    258   1.1     skrll }
    259   1.1     skrll 
    260   1.1     skrll 
    261  1.48      maxv static int
    262  1.23      cube ucycom_detach(device_t self, int flags)
    263   1.1     skrll {
    264  1.23      cube 	struct ucycom_softc *sc = device_private(self);
    265   1.1     skrll 	struct tty *tp = sc->sc_tty;
    266   1.1     skrll 	int maj, mn;
    267   1.1     skrll 	int s;
    268   1.1     skrll 
    269   1.1     skrll 	DPRINTF(("ucycom_detach: sc=%p flags=%d tp=%p\n", sc, flags, tp));
    270   1.1     skrll 
    271   1.1     skrll 	sc->sc_dying = 1;
    272   1.1     skrll 
    273   1.1     skrll 	s = splusb();
    274   1.1     skrll 	if (tp != NULL) {
    275  1.56  riastrad 		ttylock(tp);
    276   1.1     skrll 		CLR(tp->t_state, TS_CARR_ON);
    277   1.1     skrll 		CLR(tp->t_cflag, CLOCAL | MDMBUF);
    278   1.1     skrll 		ttyflush(tp, FREAD|FWRITE);
    279  1.56  riastrad 		ttyunlock(tp);
    280   1.1     skrll 	}
    281   1.1     skrll 	/* Wait for processes to go away. */
    282  1.55  riastrad 	usb_detach_waitold(sc->sc_dev);
    283   1.1     skrll 	splx(s);
    284   1.1     skrll 
    285   1.1     skrll 	/* locate the major number */
    286   1.1     skrll 	maj = cdevsw_lookup_major(&ucycom_cdevsw);
    287   1.1     skrll 
    288   1.1     skrll 	/* Nuke the vnodes for any open instances. */
    289   1.9   thorpej 	mn = device_unit(self);
    290   1.1     skrll 
    291   1.1     skrll 	DPRINTFN(2, ("ucycom_detach: maj=%d mn=%d\n", maj, mn));
    292   1.1     skrll 	vdevgone(maj, mn, mn, VCHR);
    293   1.1     skrll 	vdevgone(maj, mn | UCYCOMDIALOUT_MASK, mn | UCYCOMDIALOUT_MASK, VCHR);
    294   1.1     skrll 	vdevgone(maj, mn | UCYCOMCALLUNIT_MASK, mn | UCYCOMCALLUNIT_MASK, VCHR);
    295   1.1     skrll 
    296  1.54  riastrad 	usb_rem_task_wait(sc->sc_udev, &sc->sc_task, USB_TASKQ_DRIVER, NULL);
    297  1.54  riastrad 
    298   1.1     skrll 	/* Detach and free the tty. */
    299   1.1     skrll 	if (tp != NULL) {
    300   1.1     skrll 		DPRINTF(("ucycom_detach: tty_detach %p\n", tp));
    301   1.1     skrll 		tty_detach(tp);
    302  1.33     rmind 		tty_free(tp);
    303   1.1     skrll 		sc->sc_tty = NULL;
    304   1.1     skrll 	}
    305   1.1     skrll 
    306   1.1     skrll 	return 0;
    307   1.1     skrll }
    308   1.1     skrll 
    309  1.48      maxv static int
    310  1.31    dyoung ucycom_activate(device_t self, enum devact act)
    311   1.1     skrll {
    312  1.23      cube 	struct ucycom_softc *sc = device_private(self);
    313   1.1     skrll 
    314   1.1     skrll 	DPRINTFN(5,("ucycom_activate: %d\n", act));
    315   1.1     skrll 
    316   1.1     skrll 	switch (act) {
    317   1.1     skrll 	case DVACT_DEACTIVATE:
    318   1.1     skrll 		sc->sc_dying = 1;
    319  1.30    dyoung 		return 0;
    320  1.30    dyoung 	default:
    321  1.30    dyoung 		return EOPNOTSUPP;
    322   1.1     skrll 	}
    323   1.1     skrll }
    324   1.1     skrll 
    325   1.1     skrll #if 0
    326   1.1     skrll void
    327   1.1     skrll ucycom_shutdown(struct ucycom_softc *sc)
    328   1.1     skrll {
    329   1.1     skrll 	struct tty *tp = sc->sc_tty;
    330   1.1     skrll 
    331   1.1     skrll 	DPRINTF(("ucycom_shutdown\n"));
    332   1.1     skrll 	/*
    333   1.1     skrll 	 * Hang up if necessary.  Wait a bit, so the other side has time to
    334   1.1     skrll 	 * notice even if we immediately open the port again.
    335   1.1     skrll 	 */
    336   1.1     skrll 	if (ISSET(tp->t_cflag, HUPCL)) {
    337   1.1     skrll 		ucycom_dtr(sc, 0);
    338   1.1     skrll 		(void)tsleep(sc, TTIPRI, ttclos, hz);
    339   1.1     skrll 	}
    340   1.1     skrll }
    341   1.1     skrll #endif
    342   1.1     skrll 
    343  1.48      maxv static int
    344  1.16  christos ucycomopen(dev_t dev, int flag, int mode, struct lwp *l)
    345   1.1     skrll {
    346  1.23      cube 	struct ucycom_softc *sc =
    347  1.23      cube 	    device_lookup_private(&ucycom_cd, UCYCOMUNIT(dev));
    348   1.1     skrll 	struct tty *tp;
    349   1.1     skrll 	int s, err;
    350   1.1     skrll 
    351  1.25  drochner 	DPRINTF(("ucycomopen: unit=%d\n", UCYCOMUNIT(dev)));
    352   1.1     skrll 	DPRINTF(("ucycomopen: sc=%p\n", sc));
    353  1.26     skrll 
    354   1.1     skrll 	if (sc == NULL)
    355  1.43     skrll 		return ENXIO;
    356   1.1     skrll 	if (sc->sc_dying)
    357  1.43     skrll 		return EIO;
    358  1.49      maxv 	if (sc->sc_init_state != UCYCOM_INIT_INITED)
    359  1.49      maxv 		return ENXIO;
    360  1.55  riastrad 	if (!device_is_active(sc->sc_dev))
    361  1.43     skrll 		return ENXIO;
    362   1.1     skrll 
    363   1.1     skrll 	tp = sc->sc_tty;
    364   1.1     skrll 
    365   1.1     skrll 	DPRINTF(("ucycomopen: tp=%p\n", tp));
    366   1.1     skrll 
    367  1.12      elad 	if (kauth_authorize_device_tty(l->l_cred, KAUTH_DEVICE_TTY_OPEN, tp))
    368  1.43     skrll 		return EBUSY;
    369   1.1     skrll 
    370   1.1     skrll 	s = spltty();
    371   1.1     skrll 
    372   1.1     skrll 	if (!ISSET(tp->t_state, TS_ISOPEN) && tp->t_wopen == 0) {
    373   1.1     skrll 		struct termios t;
    374   1.1     skrll 
    375   1.1     skrll 		tp->t_dev = dev;
    376   1.1     skrll 
    377  1.55  riastrad 		err = uhidev_open(sc->sc_hdev, &ucycom_intr, sc);
    378   1.1     skrll 		if (err) {
    379   1.1     skrll 			/* Any cleanup? */
    380   1.1     skrll 			splx(s);
    381  1.43     skrll 			return err;
    382   1.1     skrll 		}
    383   1.1     skrll 
    384   1.1     skrll 		/*
    385   1.1     skrll 		 * Initialize the termios status to the defaults.  Add in the
    386   1.1     skrll 		 * sticky bits from TIOCSFLAGS.
    387   1.1     skrll 		 */
    388   1.1     skrll 		t.c_ispeed = 0;
    389   1.1     skrll 		t.c_ospeed = TTYDEF_SPEED;
    390   1.1     skrll 		t.c_cflag = TTYDEF_CFLAG;
    391   1.1     skrll 		if (ISSET(sc->sc_swflags, TIOCFLAG_CLOCAL))
    392   1.1     skrll 			SET(t.c_cflag, CLOCAL);
    393   1.1     skrll 		if (ISSET(sc->sc_swflags, TIOCFLAG_CRTSCTS))
    394   1.1     skrll 			SET(t.c_cflag, CRTSCTS);
    395   1.1     skrll 		if (ISSET(sc->sc_swflags, TIOCFLAG_MDMBUF))
    396   1.1     skrll 			SET(t.c_cflag, MDMBUF);
    397  1.27     skrll 
    398   1.1     skrll 		tp->t_ospeed = 0;
    399   1.1     skrll 		(void) ucycomparam(tp, &t);
    400   1.1     skrll 		tp->t_iflag = TTYDEF_IFLAG;
    401   1.1     skrll 		tp->t_oflag = TTYDEF_OFLAG;
    402   1.1     skrll 		tp->t_lflag = TTYDEF_LFLAG;
    403   1.1     skrll 		ttychars(tp);
    404   1.1     skrll 		ttsetwater(tp);
    405   1.1     skrll 
    406   1.1     skrll 		/* Allocate an output report buffer */
    407  1.43     skrll 		sc->sc_obuf = kmem_alloc(sc->sc_olen, KM_SLEEP);
    408  1.27     skrll 
    409   1.1     skrll 		DPRINTF(("ucycomopen: sc->sc_obuf=%p\n", sc->sc_obuf));
    410   1.1     skrll 
    411   1.1     skrll #if 0
    412  1.26     skrll 		/* XXX Don't do this as for some reason trying to do an
    413  1.26     skrll 		 * XXX interrupt out transfer at this point means everything
    414  1.26     skrll 		 * XXX gets stuck!?!
    415   1.1     skrll 		 */
    416   1.1     skrll 		/*
    417   1.1     skrll 		 * Turn on DTR.  We must always do this, even if carrier is not
    418   1.1     skrll 		 * present, because otherwise we'd have to use TIOCSDTR
    419   1.1     skrll 		 * immediately after setting CLOCAL, which applications do not
    420   1.1     skrll 		 * expect.  We always assert DTR while the device is open
    421   1.1     skrll 		 * unless explicitly requested to deassert it.
    422   1.1     skrll 		 */
    423   1.1     skrll 		ucycom_dtr(sc, 1);
    424   1.1     skrll #endif
    425   1.1     skrll 
    426   1.1     skrll #if 0
    427   1.1     skrll 		/* XXX CLR(sc->sc_rx_flags, RX_ANY_BLOCK);*/
    428   1.1     skrll 		ucycom_hwiflow(sc);
    429   1.1     skrll #endif
    430   1.1     skrll 
    431   1.1     skrll 	}
    432   1.1     skrll 	splx(s);
    433   1.1     skrll 
    434   1.1     skrll 	err = ttyopen(tp, UCYCOMDIALOUT(dev), ISSET(flag, O_NONBLOCK));
    435   1.1     skrll 	if (err)
    436   1.1     skrll 		goto bad;
    437   1.1     skrll 
    438   1.1     skrll 	err = (*tp->t_linesw->l_open)(dev, tp);
    439   1.1     skrll 	if (err)
    440   1.1     skrll 		goto bad;
    441   1.1     skrll 
    442  1.43     skrll 	return 0;
    443   1.1     skrll 
    444   1.1     skrll bad:
    445   1.1     skrll 	if (!ISSET(tp->t_state, TS_ISOPEN) && tp->t_wopen == 0) {
    446   1.1     skrll 		/*
    447   1.1     skrll 		 * We failed to open the device, and nobody else had it opened.
    448   1.1     skrll 		 * Clean up the state as appropriate.
    449   1.1     skrll 		 */
    450   1.1     skrll 		ucycom_cleanup(sc);
    451   1.1     skrll 	}
    452   1.1     skrll 
    453  1.43     skrll 	return err;
    454   1.1     skrll 
    455   1.1     skrll }
    456   1.1     skrll 
    457   1.1     skrll 
    458  1.48      maxv static int
    459  1.16  christos ucycomclose(dev_t dev, int flag, int mode, struct lwp *l)
    460   1.1     skrll {
    461  1.23      cube 	struct ucycom_softc *sc =
    462  1.23      cube 	    device_lookup_private(&ucycom_cd, UCYCOMUNIT(dev));
    463   1.1     skrll 	struct tty *tp = sc->sc_tty;
    464   1.1     skrll 
    465  1.25  drochner 	DPRINTF(("ucycomclose: unit=%d\n", UCYCOMUNIT(dev)));
    466   1.1     skrll 	if (!ISSET(tp->t_state, TS_ISOPEN))
    467  1.43     skrll 		return 0;
    468   1.1     skrll 
    469   1.1     skrll 	(*tp->t_linesw->l_close)(tp, flag);
    470   1.1     skrll 	ttyclose(tp);
    471   1.1     skrll 
    472   1.1     skrll 	if (!ISSET(tp->t_state, TS_ISOPEN) && tp->t_wopen == 0) {
    473   1.1     skrll 		/*
    474   1.1     skrll 		 * Although we got a last close, the device may still be in
    475   1.1     skrll 		 * use; e.g. if this was the dialout node, and there are still
    476   1.1     skrll 		 * processes waiting for carrier on the non-dialout node.
    477   1.1     skrll 		 */
    478   1.1     skrll 		ucycom_cleanup(sc);
    479   1.1     skrll 	}
    480   1.1     skrll 
    481  1.43     skrll 	return 0;
    482   1.1     skrll }
    483   1.1     skrll 
    484   1.1     skrll Static void
    485   1.1     skrll ucycomstart(struct tty *tp)
    486   1.1     skrll {
    487  1.23      cube 	struct ucycom_softc *sc =
    488  1.23      cube 	    device_lookup_private(&ucycom_cd, UCYCOMUNIT(tp->t_dev));
    489  1.36    martin 	usbd_status err __unused;
    490   1.1     skrll 	u_char *data;
    491  1.29     skrll 	int cnt, len, s;
    492   1.1     skrll 
    493  1.56  riastrad 	KASSERT(ttylocked(tp));
    494  1.54  riastrad 
    495   1.1     skrll 	if (sc->sc_dying)
    496   1.1     skrll 		return;
    497   1.1     skrll 
    498   1.1     skrll 	s = spltty();
    499   1.1     skrll 	if (ISSET(tp->t_state, TS_BUSY | TS_TIMEOUT | TS_TTSTOP)) {
    500  1.50  christos 		DPRINTFN(4,("ucycomstart: no go, state=%#x\n", tp->t_state));
    501   1.1     skrll 		goto out;
    502   1.1     skrll 	}
    503   1.1     skrll 
    504   1.1     skrll #if 0
    505   1.1     skrll 	/* HW FLOW CTL */
    506   1.1     skrll 	if (sc->sc_tx_stopped)
    507   1.1     skrll 		goto out;
    508   1.1     skrll #endif
    509   1.1     skrll 
    510  1.19        ad 	if (ttypull(tp) == 0)
    511  1.19        ad 		goto out;
    512   1.1     skrll 
    513   1.1     skrll 	/* Grab the first contiguous region of buffer space. */
    514   1.1     skrll 	data = tp->t_outq.c_cf;
    515   1.1     skrll 	cnt = ndqb(&tp->t_outq, 0);
    516   1.1     skrll 
    517   1.1     skrll 	if (cnt == 0) {
    518   1.1     skrll 		DPRINTF(("ucycomstart: cnt == 0\n"));
    519   1.1     skrll 		goto out;
    520   1.1     skrll 	}
    521   1.1     skrll 
    522   1.1     skrll 	SET(tp->t_state, TS_BUSY);
    523  1.27     skrll 
    524   1.1     skrll 	/*
    525   1.1     skrll 	 * The 8 byte output report uses byte 0 for control and byte
    526   1.1     skrll 	 * count.
    527   1.1     skrll 	 *
    528   1.1     skrll 	 * The 32 byte output report uses byte 0 for control. Byte 1
    529   1.1     skrll 	 * is used for byte count.
    530   1.1     skrll 	 */
    531  1.27     skrll 	memset(sc->sc_obuf, 0, sc->sc_olen);
    532   1.1     skrll 	len = cnt;
    533   1.1     skrll 	switch (sc->sc_olen) {
    534   1.1     skrll 	case 8:
    535   1.1     skrll 		if (cnt > sc->sc_olen - 1) {
    536   1.1     skrll 			DPRINTF(("ucycomstart(8): big buffer %d chars\n", len));
    537   1.1     skrll 			len = sc->sc_olen - 1;
    538   1.1     skrll 		}
    539  1.27     skrll 
    540   1.1     skrll 		memcpy(sc->sc_obuf + 1, data, len);
    541   1.1     skrll 		sc->sc_obuf[0] = len | sc->sc_mcr;
    542   1.1     skrll 
    543  1.44   msaitoh 		DPRINTF(("ucycomstart(8): sc->sc_obuf[0] = %d | %d = %d\n",
    544  1.44   msaitoh 		    len, sc->sc_mcr, sc->sc_obuf[0]));
    545   1.2     skrll #ifdef UCYCOM_DEBUG
    546   1.1     skrll 		if (ucycomdebug > 10) {
    547  1.43     skrll 			uint32_t i;
    548  1.43     skrll 			uint8_t *d = data;
    549   1.1     skrll 
    550   1.1     skrll 			DPRINTF(("ucycomstart(8): data ="));
    551   1.1     skrll 			for (i = 0; i < len; i++)
    552   1.1     skrll 				DPRINTF((" %02x", d[i]));
    553   1.1     skrll 			DPRINTF(("\n"));
    554   1.1     skrll 		}
    555   1.2     skrll #endif
    556   1.1     skrll 		break;
    557  1.27     skrll 
    558   1.1     skrll 	case 32:
    559   1.1     skrll 		if (cnt > sc->sc_olen - 2) {
    560  1.26     skrll 			DPRINTF(("ucycomstart(32): big buffer %d chars\n",
    561  1.26     skrll 			    len));
    562   1.1     skrll 			len = sc->sc_olen - 2;
    563   1.1     skrll 		}
    564  1.27     skrll 
    565   1.1     skrll 		memcpy(sc->sc_obuf + 2, data, len);
    566   1.1     skrll 		sc->sc_obuf[0] = sc->sc_mcr;
    567   1.1     skrll 		sc->sc_obuf[1] = len;
    568  1.26     skrll 		DPRINTF(("ucycomstart(32): sc->sc_obuf[0] = %d\n"
    569  1.26     skrll 		    "sc->sc_obuf[1] = %d\n", sc->sc_obuf[0], sc->sc_obuf[1]));
    570   1.2     skrll #ifdef UCYCOM_DEBUG
    571   1.1     skrll 		if (ucycomdebug > 10) {
    572  1.43     skrll 			uint32_t i;
    573  1.43     skrll 			uint8_t *d = data;
    574   1.1     skrll 
    575   1.1     skrll 			DPRINTF(("ucycomstart(32): data ="));
    576   1.1     skrll 			for (i = 0; i < len; i++)
    577   1.1     skrll 				DPRINTF((" %02x", d[i]));
    578   1.1     skrll 			DPRINTF(("\n"));
    579   1.1     skrll 		}
    580   1.2     skrll #endif
    581   1.1     skrll 		break;
    582  1.27     skrll 
    583   1.1     skrll 	default:
    584  1.28     skrll 		DPRINTFN(2,("ucycomstart: unknown output report size (%zd)\n",
    585   1.1     skrll 		    sc->sc_olen));
    586   1.1     skrll 		goto out;
    587   1.1     skrll 	}
    588   1.1     skrll 	splx(s);
    589  1.29     skrll 	sc->sc_wlen = len;
    590   1.1     skrll 
    591   1.1     skrll #ifdef UCYCOM_DEBUG
    592   1.1     skrll 	if (ucycomdebug > 5) {
    593   1.1     skrll 		int i;
    594   1.1     skrll 
    595   1.1     skrll 		if (len != 0) {
    596  1.26     skrll 			DPRINTF(("ucycomstart: sc->sc_obuf[0..%zd) =",
    597  1.26     skrll 			    sc->sc_olen));
    598   1.1     skrll 			for (i = 0; i < sc->sc_olen; i++)
    599   1.1     skrll 				DPRINTF((" %02x", sc->sc_obuf[i]));
    600   1.1     skrll 			DPRINTF(("\n"));
    601   1.1     skrll 		}
    602   1.1     skrll 	}
    603   1.1     skrll #endif
    604  1.29     skrll 	DPRINTFN(4,("ucycomstart: %d chars\n", len));
    605  1.54  riastrad 	usb_add_task(sc->sc_udev, &sc->sc_task, USB_TASKQ_DRIVER);
    606  1.54  riastrad 	return;
    607  1.54  riastrad 
    608  1.54  riastrad out:
    609  1.54  riastrad 	splx(s);
    610  1.54  riastrad }
    611  1.54  riastrad 
    612  1.54  riastrad Static void
    613  1.54  riastrad ucycomstarttask(void *cookie)
    614  1.54  riastrad {
    615  1.54  riastrad 	struct ucycom_softc *sc = cookie;
    616  1.54  riastrad 	usbd_status err;
    617  1.54  riastrad 
    618  1.29     skrll 	/* What can we do on error? */
    619  1.55  riastrad 	err = uhidev_write_async(sc->sc_hdev, sc->sc_obuf, sc->sc_olen, 0,
    620  1.53  riastrad 	    USBD_NO_TIMEOUT, ucycomwritecb, sc);
    621   1.1     skrll 
    622   1.1     skrll #ifdef UCYCOM_DEBUG
    623  1.29     skrll 	if (err != USBD_IN_PROGRESS)
    624  1.29     skrll 		DPRINTF(("ucycomstart: err=%s\n", usbd_errstr(err)));
    625  1.54  riastrad #else
    626  1.54  riastrad 	__USE(err);
    627   1.1     skrll #endif
    628  1.29     skrll }
    629  1.29     skrll 
    630  1.29     skrll Static void
    631  1.43     skrll ucycomwritecb(struct usbd_xfer *xfer, void *p, usbd_status status)
    632  1.29     skrll {
    633  1.29     skrll 	struct ucycom_softc *sc = (struct ucycom_softc *)p;
    634  1.29     skrll 	struct tty *tp = sc->sc_tty;
    635  1.29     skrll 	usbd_status stat;
    636  1.29     skrll 	int len, s;
    637  1.29     skrll 
    638  1.29     skrll 	if (status == USBD_CANCELLED || sc->sc_dying)
    639  1.29     skrll 		goto error;
    640  1.29     skrll 
    641  1.29     skrll 	if (status) {
    642  1.29     skrll 		DPRINTF(("ucycomwritecb: status=%d\n", status));
    643  1.29     skrll 		/* XXX we should restart after some delay. */
    644  1.29     skrll 		goto error;
    645  1.29     skrll 	}
    646   1.1     skrll 
    647  1.29     skrll 	usbd_get_xfer_status(xfer, NULL, NULL, &len, &stat);
    648  1.29     skrll 
    649  1.29     skrll 	if (status != USBD_NORMAL_COMPLETION) {
    650  1.29     skrll 		DPRINTFN(4,("ucycomwritecb: status = %d\n", status));
    651  1.29     skrll 		goto error;
    652  1.29     skrll 	}
    653  1.29     skrll 
    654  1.29     skrll 	DPRINTFN(4,("ucycomwritecb: did %d/%d chars\n", sc->sc_wlen, len));
    655  1.29     skrll 
    656  1.29     skrll 	s = spltty();
    657   1.1     skrll 	CLR(tp->t_state, TS_BUSY);
    658   1.1     skrll 	if (ISSET(tp->t_state, TS_FLUSH))
    659   1.1     skrll 		CLR(tp->t_state, TS_FLUSH);
    660   1.1     skrll 	else
    661  1.29     skrll 		ndflush(&tp->t_outq, sc->sc_wlen);
    662   1.1     skrll 	(*tp->t_linesw->l_start)(tp);
    663  1.29     skrll 	splx(s);
    664  1.29     skrll 	return;
    665   1.1     skrll 
    666  1.29     skrll error:
    667  1.29     skrll 	s = spltty();
    668  1.29     skrll 	CLR(tp->t_state, TS_BUSY);
    669   1.1     skrll 	splx(s);
    670   1.1     skrll }
    671   1.1     skrll 
    672   1.1     skrll Static int
    673   1.1     skrll ucycomparam(struct tty *tp, struct termios *t)
    674   1.1     skrll {
    675   1.1     skrll 	struct ucycom_softc *sc = tp->t_sc;
    676   1.1     skrll 	uint32_t baud;
    677   1.1     skrll 	uint8_t cfg;
    678   1.1     skrll 	int err;
    679   1.1     skrll 
    680   1.1     skrll 	if (t->c_ospeed < 0) {
    681   1.1     skrll 		DPRINTF(("ucycomparam: c_ospeed < 0\n"));
    682  1.43     skrll 		return EINVAL;
    683   1.1     skrll 	}
    684   1.1     skrll 
    685   1.1     skrll 	/* Check requested parameters. */
    686   1.1     skrll 	if (t->c_ispeed && t->c_ispeed != t->c_ospeed)
    687  1.43     skrll 		return EINVAL;
    688   1.1     skrll 
    689   1.1     skrll 	/*
    690   1.1     skrll 	 * For the console, always force CLOCAL and !HUPCL, so that the port
    691   1.1     skrll 	 * is always active.
    692   1.1     skrll 	 */
    693   1.1     skrll 	if (ISSET(sc->sc_swflags, TIOCFLAG_SOFTCAR)) {
    694   1.1     skrll 		SET(t->c_cflag, CLOCAL);
    695   1.1     skrll 		CLR(t->c_cflag, HUPCL);
    696   1.1     skrll 	}
    697   1.1     skrll 
    698   1.1     skrll 	/*
    699   1.1     skrll 	 * If there were no changes, don't do anything.  This avoids dropping
    700   1.1     skrll 	 * input and improves performance when all we did was frob things like
    701   1.1     skrll 	 * VMIN and VTIME.
    702   1.1     skrll 	 */
    703   1.1     skrll 	if (tp->t_ospeed == t->c_ospeed &&
    704   1.1     skrll 	    tp->t_cflag == t->c_cflag)
    705  1.43     skrll 		return 0;
    706   1.1     skrll 
    707   1.1     skrll 	/* XXX lcr = ISSET(sc->sc_lcr, LCR_SBREAK) | cflag2lcr(t->c_cflag); */
    708   1.1     skrll 
    709   1.1     skrll 	/* And copy to tty. */
    710   1.1     skrll 	tp->t_ispeed = 0;
    711   1.1     skrll 	tp->t_ospeed = t->c_ospeed;
    712   1.1     skrll 	tp->t_cflag = t->c_cflag;
    713   1.1     skrll 
    714   1.1     skrll 	baud = t->c_ispeed;
    715   1.1     skrll 	DPRINTF(("ucycomparam: baud=%d\n", baud));
    716   1.1     skrll 
    717   1.1     skrll 	if (t->c_cflag & CIGNORE) {
    718   1.1     skrll 		cfg = sc->sc_cfg;
    719   1.1     skrll 	} else {
    720   1.1     skrll 		cfg = 0;
    721   1.1     skrll 		switch (t->c_cflag & CSIZE) {
    722   1.1     skrll 		case CS8:
    723   1.1     skrll 			cfg |= UCYCOM_DATA_BITS_8;
    724   1.1     skrll 			break;
    725   1.1     skrll 		case CS7:
    726   1.1     skrll 			cfg |= UCYCOM_DATA_BITS_7;
    727   1.1     skrll 			break;
    728   1.1     skrll 		case CS6:
    729   1.1     skrll 			cfg |= UCYCOM_DATA_BITS_6;
    730   1.1     skrll 			break;
    731   1.1     skrll 		case CS5:
    732   1.1     skrll 			cfg |= UCYCOM_DATA_BITS_5;
    733   1.1     skrll 			break;
    734   1.1     skrll 		default:
    735  1.43     skrll 			return EINVAL;
    736   1.1     skrll 		}
    737   1.1     skrll 		cfg |= ISSET(t->c_cflag, CSTOPB) ?
    738   1.1     skrll 		    UCYCOM_STOP_BITS_2 : UCYCOM_STOP_BITS_1;
    739   1.1     skrll 		cfg |= ISSET(t->c_cflag, PARENB) ?
    740   1.1     skrll 		    UCYCOM_PARITY_ON : UCYCOM_PARITY_OFF;
    741   1.1     skrll 		cfg |= ISSET(t->c_cflag, PARODD) ?
    742   1.1     skrll 		    UCYCOM_PARITY_ODD : UCYCOM_PARITY_EVEN;
    743   1.1     skrll 	}
    744   1.1     skrll 
    745   1.1     skrll 	/*
    746   1.1     skrll 	 * Update the tty layer's idea of the carrier bit, in case we changed
    747   1.1     skrll 	 * CLOCAL or MDMBUF.  We don't hang up here; we only do that by
    748   1.1     skrll 	 * explicit request.
    749   1.1     skrll 	 */
    750   1.1     skrll 	DPRINTF(("ucycomparam: l_modem\n"));
    751   1.1     skrll 	(void) (*tp->t_linesw->l_modem)(tp, 1 /* XXX carrier */ );
    752   1.1     skrll 
    753   1.1     skrll 	err = ucycom_configure(sc, baud, cfg);
    754  1.43     skrll 	return err;
    755   1.1     skrll }
    756   1.1     skrll 
    757  1.48      maxv static void
    758  1.16  christos ucycomstop(struct tty *tp, int flag)
    759   1.1     skrll {
    760   1.1     skrll 	DPRINTF(("ucycomstop: flag=%d\n", flag));
    761   1.1     skrll }
    762   1.1     skrll 
    763  1.48      maxv static int
    764   1.1     skrll ucycomread(dev_t dev, struct uio *uio, int flag)
    765   1.1     skrll {
    766  1.23      cube 	struct ucycom_softc *sc =
    767  1.23      cube 	    device_lookup_private(&ucycom_cd, UCYCOMUNIT(dev));
    768   1.1     skrll 	struct tty *tp = sc->sc_tty;
    769   1.1     skrll 	int err;
    770   1.1     skrll 
    771  1.26     skrll 	DPRINTF(("ucycomread: sc=%p, tp=%p, uio=%p, flag=%d\n", sc, tp, uio,
    772  1.26     skrll 	    flag));
    773   1.1     skrll 	if (sc->sc_dying)
    774  1.43     skrll 		return EIO;
    775   1.1     skrll 
    776   1.1     skrll 	err = ((*tp->t_linesw->l_read)(tp, uio, flag));
    777  1.43     skrll 	return err;
    778   1.1     skrll }
    779   1.1     skrll 
    780   1.1     skrll 
    781  1.48      maxv static int
    782   1.1     skrll ucycomwrite(dev_t dev, struct uio *uio, int flag)
    783   1.1     skrll {
    784  1.23      cube 	struct ucycom_softc *sc =
    785  1.23      cube 	    device_lookup_private(&ucycom_cd, UCYCOMUNIT(dev));
    786   1.1     skrll 	struct tty *tp = sc->sc_tty;
    787   1.1     skrll 	int err;
    788   1.1     skrll 
    789  1.26     skrll 	DPRINTF(("ucycomwrite: sc=%p, tp=%p, uio=%p, flag=%d\n", sc, tp, uio,
    790  1.26     skrll 	    flag));
    791   1.1     skrll 	if (sc->sc_dying)
    792  1.43     skrll 		return EIO;
    793   1.1     skrll 
    794   1.1     skrll 	err = ((*tp->t_linesw->l_write)(tp, uio, flag));
    795  1.43     skrll 	return err;
    796   1.1     skrll }
    797   1.1     skrll 
    798  1.48      maxv static struct tty *
    799   1.1     skrll ucycomtty(dev_t dev)
    800   1.1     skrll {
    801  1.23      cube 	struct ucycom_softc *sc =
    802  1.23      cube 	    device_lookup_private(&ucycom_cd, UCYCOMUNIT(dev));
    803   1.1     skrll 	struct tty *tp = sc->sc_tty;
    804   1.1     skrll 
    805   1.1     skrll 	DPRINTF(("ucycomtty: sc=%p, tp=%p\n", sc, tp));
    806   1.1     skrll 
    807  1.43     skrll 	return tp;
    808   1.1     skrll }
    809   1.1     skrll 
    810  1.48      maxv static int
    811  1.17  christos ucycomioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
    812   1.1     skrll {
    813  1.23      cube 	struct ucycom_softc *sc =
    814  1.23      cube 	    device_lookup_private(&ucycom_cd, UCYCOMUNIT(dev));
    815   1.1     skrll 	struct tty *tp = sc->sc_tty;
    816   1.1     skrll 	int err;
    817   1.1     skrll 	int s;
    818   1.1     skrll 
    819   1.1     skrll 	if (sc->sc_dying)
    820  1.43     skrll 		return EIO;
    821   1.1     skrll 
    822   1.1     skrll 	DPRINTF(("ucycomioctl: sc=%p, tp=%p, data=%p\n", sc, tp, data));
    823   1.1     skrll 
    824   1.6  christos 	err = (*tp->t_linesw->l_ioctl)(tp, cmd, data, flag, l);
    825   1.1     skrll 	if (err != EPASSTHROUGH)
    826  1.43     skrll 		return err;
    827   1.1     skrll 
    828   1.6  christos 	err = ttioctl(tp, cmd, data, flag, l);
    829   1.1     skrll 	if (err != EPASSTHROUGH)
    830  1.43     skrll 		return err;
    831   1.1     skrll 
    832   1.1     skrll 	err = 0;
    833   1.1     skrll 
    834  1.51  christos 	DPRINTF(("ucycomioctl: our cmd=0x%08lx\n", cmd));
    835   1.1     skrll 	s = spltty();
    836   1.1     skrll 
    837   1.1     skrll 	switch (cmd) {
    838   1.1     skrll /*	case TIOCSBRK:
    839   1.1     skrll 		ucycom_break(sc, 1);
    840   1.1     skrll 		break;
    841   1.1     skrll 
    842   1.1     skrll 	case TIOCCBRK:
    843   1.1     skrll 		ucycom_break(sc, 0);
    844   1.1     skrll 		break;
    845   1.1     skrll */
    846   1.1     skrll 	case TIOCSDTR:
    847   1.1     skrll 		ucycom_dtr(sc, 1);
    848   1.1     skrll 		break;
    849   1.1     skrll 
    850   1.1     skrll 	case TIOCCDTR:
    851   1.1     skrll 		ucycom_dtr(sc, 0);
    852   1.1     skrll 		break;
    853   1.1     skrll 
    854   1.1     skrll 	case TIOCGFLAGS:
    855   1.1     skrll 		*(int *)data = sc->sc_swflags;
    856   1.1     skrll 		break;
    857   1.1     skrll 
    858   1.1     skrll 	case TIOCSFLAGS:
    859  1.13      elad 		err = kauth_authorize_device_tty(l->l_cred,
    860  1.13      elad 		    KAUTH_DEVICE_TTY_PRIVSET, tp);
    861   1.1     skrll 		if (err)
    862   1.1     skrll 			break;
    863   1.1     skrll 		sc->sc_swflags = *(int *)data;
    864   1.1     skrll 		break;
    865   1.1     skrll 
    866   1.1     skrll 	case TIOCMSET:
    867   1.1     skrll 	case TIOCMBIS:
    868   1.1     skrll 	case TIOCMBIC:
    869   1.1     skrll 		tiocm_to_ucycom(sc, cmd, *(int *)data);
    870   1.1     skrll 		break;
    871   1.1     skrll 
    872   1.1     skrll 	case TIOCMGET:
    873   1.1     skrll 		*(int *)data = ucycom_to_tiocm(sc);
    874   1.1     skrll 		break;
    875   1.1     skrll 
    876   1.1     skrll 	default:
    877   1.1     skrll 		err = EPASSTHROUGH;
    878   1.1     skrll 		break;
    879   1.1     skrll 	}
    880   1.1     skrll 
    881   1.1     skrll 	splx(s);
    882   1.1     skrll 
    883  1.43     skrll 	return err;
    884   1.1     skrll }
    885   1.1     skrll 
    886  1.48      maxv static int
    887   1.6  christos ucycompoll(dev_t dev, int events, struct lwp *l)
    888   1.1     skrll {
    889  1.23      cube 	struct ucycom_softc *sc =
    890  1.23      cube 	    device_lookup_private(&ucycom_cd, UCYCOMUNIT(dev));
    891   1.1     skrll 	struct tty *tp = sc->sc_tty;
    892   1.1     skrll 	int err;
    893  1.27     skrll 
    894  1.26     skrll 	DPRINTF(("ucycompoll: sc=%p, tp=%p, events=%d, lwp=%p\n", sc, tp,
    895  1.26     skrll 	    events, l));
    896   1.1     skrll 
    897   1.1     skrll 	if (sc->sc_dying)
    898  1.43     skrll 		return EIO;
    899   1.1     skrll 
    900   1.6  christos 	err = ((*tp->t_linesw->l_poll)(tp, events, l));
    901  1.43     skrll 	return err;
    902   1.1     skrll }
    903   1.1     skrll 
    904   1.1     skrll Static int
    905   1.1     skrll ucycom_configure(struct ucycom_softc *sc, uint32_t baud, uint8_t cfg)
    906   1.1     skrll {
    907   1.1     skrll 	uint8_t report[5];
    908   1.1     skrll 	int err;
    909   1.1     skrll 
    910   1.1     skrll 	switch (baud) {
    911   1.1     skrll 	case 600:
    912   1.1     skrll 	case 1200:
    913   1.1     skrll 	case 2400:
    914   1.1     skrll 	case 4800:
    915   1.1     skrll 	case 9600:
    916   1.1     skrll 	case 19200:
    917   1.1     skrll 	case 38400:
    918   1.1     skrll 	case 57600:
    919   1.1     skrll #if 0
    920   1.1     skrll 	/*
    921   1.1     skrll 	 * Stock chips only support standard baud rates in the 600 - 57600
    922   1.1     skrll 	 * range, but higher rates can be achieved using custom firmware.
    923   1.1     skrll 	 */
    924   1.1     skrll 	case 115200:
    925   1.1     skrll 	case 153600:
    926   1.1     skrll 	case 192000:
    927   1.1     skrll #endif
    928   1.1     skrll 		break;
    929   1.1     skrll 	default:
    930  1.43     skrll 		return EINVAL;
    931   1.1     skrll 	}
    932   1.1     skrll 
    933   1.1     skrll 	DPRINTF(("ucycom_configure: setting %d baud, %d-%c-%d (%d)\n", baud,
    934   1.1     skrll 	    5 + (cfg & UCYCOM_DATA_MASK),
    935   1.1     skrll 	    (cfg & UCYCOM_PARITY_MASK) ?
    936   1.1     skrll 		((cfg & UCYCOM_PARITY_TYPE_MASK) ? 'O' : 'E') : 'N',
    937   1.1     skrll 	    (cfg & UCYCOM_STOP_MASK) ? 2 : 1, cfg));
    938   1.1     skrll 
    939   1.1     skrll 	report[0] = baud & 0xff;
    940   1.1     skrll 	report[1] = (baud >> 8) & 0xff;
    941   1.1     skrll 	report[2] = (baud >> 16) & 0xff;
    942   1.1     skrll 	report[3] = (baud >> 24) & 0xff;
    943   1.1     skrll 	report[4] = cfg;
    944  1.55  riastrad 	err = uhidev_set_report(sc->sc_hdev, UHID_FEATURE_REPORT,
    945   1.1     skrll 	    report, sc->sc_flen);
    946   1.1     skrll 	if (err != 0) {
    947   1.1     skrll 		DPRINTF(("%s\n", usbd_errstr(err)));
    948   1.1     skrll 		return EIO;
    949   1.1     skrll 	}
    950   1.1     skrll 	sc->sc_baud = baud;
    951   1.1     skrll 	sc->sc_cfg = cfg;
    952   1.1     skrll 
    953  1.29     skrll #ifdef UCYCOM_DEBUG
    954  1.29     skrll 	ucycom_get_cfg(sc);
    955  1.29     skrll #endif
    956  1.29     skrll 
    957   1.1     skrll 	return 0;
    958   1.1     skrll }
    959   1.1     skrll 
    960   1.1     skrll Static void
    961  1.55  riastrad ucycom_intr(void *cookie, void *ibuf, u_int len)
    962   1.1     skrll {
    963  1.55  riastrad 	struct ucycom_softc *sc = cookie;
    964   1.1     skrll 	struct tty *tp = sc->sc_tty;
    965   1.1     skrll 	int (*rint)(int , struct tty *) = tp->t_linesw->l_rint;
    966   1.1     skrll 	uint8_t *cp = ibuf;
    967   1.1     skrll 	int s, n, st, chg;
    968  1.27     skrll 
    969   1.1     skrll 	/* We understand 8 byte and 32 byte input records */
    970   1.1     skrll 	switch (len) {
    971   1.1     skrll 	case 8:
    972   1.1     skrll 		n = cp[0] & UCYCOM_LMASK;
    973   1.1     skrll 		st = cp[0] & ~UCYCOM_LMASK;
    974   1.1     skrll 		cp++;
    975   1.1     skrll 		break;
    976   1.1     skrll 
    977   1.1     skrll 	case 32:
    978   1.1     skrll 		st = cp[0];
    979   1.1     skrll 		n = cp[1];
    980   1.1     skrll 		cp += 2;
    981   1.1     skrll 		break;
    982   1.1     skrll 
    983   1.1     skrll 	default:
    984   1.1     skrll 		DPRINTFN(3,("ucycom_intr: Unknown input report length\n"));
    985   1.1     skrll 		return;
    986   1.1     skrll 	}
    987   1.1     skrll 
    988   1.1     skrll #ifdef UCYCOM_DEBUG
    989   1.1     skrll 	if (ucycomdebug > 5) {
    990  1.43     skrll 		uint32_t i;
    991   1.1     skrll 
    992   1.1     skrll 		if (n != 0) {
    993   1.1     skrll 			DPRINTF(("ucycom_intr: ibuf[0..%d) =", n));
    994   1.1     skrll 			for (i = 0; i < n; i++)
    995   1.1     skrll 				DPRINTF((" %02x", cp[i]));
    996   1.1     skrll 			DPRINTF(("\n"));
    997   1.1     skrll 		}
    998   1.1     skrll 	}
    999   1.1     skrll #endif
   1000   1.1     skrll 
   1001   1.1     skrll 	/* Give characters to tty layer. */
   1002  1.29     skrll 	s = spltty();
   1003   1.1     skrll 	while (n-- > 0) {
   1004  1.51  christos 		DPRINTFN(7,("ucycom_intr: char=0x%02x\n", *cp));
   1005   1.1     skrll 		if ((*rint)(*cp++, tp) == -1) {
   1006   1.1     skrll 			/* XXX what should we do? */
   1007  1.55  riastrad 			aprint_error_dev(sc->sc_dev, "lost a character\n");
   1008   1.1     skrll 			break;
   1009   1.1     skrll 		}
   1010   1.1     skrll 	}
   1011   1.1     skrll 	splx(s);
   1012   1.1     skrll 	chg = st ^ sc->sc_msr;
   1013   1.1     skrll 	sc->sc_msr = st;
   1014   1.1     skrll 	if (ISSET(chg, UCYCOM_DCD))
   1015   1.1     skrll 		(*tp->t_linesw->l_modem)(tp,
   1016   1.1     skrll 		    ISSET(sc->sc_msr, UCYCOM_DCD));
   1017   1.1     skrll 
   1018   1.1     skrll }
   1019   1.1     skrll 
   1020   1.1     skrll Static void
   1021   1.1     skrll tiocm_to_ucycom(struct ucycom_softc *sc, u_long how, int ttybits)
   1022   1.1     skrll {
   1023   1.1     skrll 	u_char combits;
   1024   1.1     skrll 	u_char before = sc->sc_mcr;
   1025   1.1     skrll 
   1026   1.1     skrll 	combits = 0;
   1027   1.1     skrll 	if (ISSET(ttybits, TIOCM_DTR))
   1028   1.1     skrll 		SET(combits, UCYCOM_DTR);
   1029   1.1     skrll 	if (ISSET(ttybits, TIOCM_RTS))
   1030   1.1     skrll 		SET(combits, UCYCOM_RTS);
   1031   1.1     skrll 
   1032   1.1     skrll 	switch (how) {
   1033   1.1     skrll 	case TIOCMBIC:
   1034   1.1     skrll 		CLR(sc->sc_mcr, combits);
   1035   1.1     skrll 		break;
   1036   1.1     skrll 
   1037   1.1     skrll 	case TIOCMBIS:
   1038   1.1     skrll 		SET(sc->sc_mcr, combits);
   1039   1.1     skrll 		break;
   1040   1.1     skrll 
   1041   1.1     skrll 	case TIOCMSET:
   1042   1.1     skrll 		CLR(sc->sc_mcr, UCYCOM_DTR | UCYCOM_RTS);
   1043   1.1     skrll 		SET(sc->sc_mcr, combits);
   1044   1.1     skrll 		break;
   1045   1.1     skrll 	}
   1046   1.1     skrll 	if (before ^ sc->sc_mcr) {
   1047   1.1     skrll 		DPRINTF(("tiocm_to_ucycom: something has changed\n"));
   1048   1.1     skrll 		ucycom_set_status(sc);
   1049   1.1     skrll 	}
   1050   1.1     skrll }
   1051   1.1     skrll 
   1052   1.1     skrll Static int
   1053   1.1     skrll ucycom_to_tiocm(struct ucycom_softc *sc)
   1054   1.1     skrll {
   1055   1.1     skrll 	u_char combits;
   1056   1.1     skrll 	int ttybits = 0;
   1057   1.1     skrll 
   1058   1.1     skrll 	combits = sc->sc_mcr;
   1059   1.1     skrll 	if (ISSET(combits, UCYCOM_DTR))
   1060   1.1     skrll 		SET(ttybits, TIOCM_DTR);
   1061   1.1     skrll 	if (ISSET(combits, UCYCOM_RTS))
   1062   1.1     skrll 		SET(ttybits, TIOCM_RTS);
   1063   1.1     skrll 
   1064   1.1     skrll 	combits = sc->sc_msr;
   1065   1.1     skrll 	if (ISSET(combits, UCYCOM_DCD))
   1066   1.1     skrll 		SET(ttybits, TIOCM_CD);
   1067   1.1     skrll 	if (ISSET(combits, UCYCOM_CTS))
   1068   1.1     skrll 		SET(ttybits, TIOCM_CTS);
   1069   1.1     skrll 	if (ISSET(combits, UCYCOM_DSR))
   1070   1.1     skrll 		SET(ttybits, TIOCM_DSR);
   1071   1.1     skrll 	if (ISSET(combits, UCYCOM_RI))
   1072   1.1     skrll 		SET(ttybits, TIOCM_RI);
   1073   1.1     skrll 
   1074  1.43     skrll 	return ttybits;
   1075   1.1     skrll }
   1076   1.1     skrll 
   1077   1.1     skrll Static void
   1078   1.1     skrll ucycom_dtr(struct ucycom_softc *sc, int set)
   1079   1.1     skrll {
   1080   1.1     skrll 	uint8_t old;
   1081  1.27     skrll 
   1082   1.1     skrll 	old = sc->sc_mcr;
   1083   1.1     skrll 	if (set)
   1084   1.1     skrll 		SET(sc->sc_mcr, UCYCOM_DTR);
   1085   1.1     skrll 	else
   1086   1.1     skrll 		CLR(sc->sc_mcr, UCYCOM_DTR);
   1087  1.27     skrll 
   1088   1.1     skrll 	if (old ^ sc->sc_mcr)
   1089   1.1     skrll 		ucycom_set_status(sc);
   1090   1.1     skrll }
   1091   1.1     skrll 
   1092   1.1     skrll #if 0
   1093   1.1     skrll Static void
   1094   1.1     skrll ucycom_rts(struct ucycom_softc *sc, int set)
   1095   1.1     skrll {
   1096   1.1     skrll 	uint8_t old;
   1097  1.27     skrll 
   1098   1.1     skrll 	old = sc->sc_msr;
   1099   1.1     skrll 	if (set)
   1100   1.1     skrll 		SET(sc->sc_mcr, UCYCOM_RTS);
   1101   1.1     skrll 	else
   1102   1.1     skrll 		CLR(sc->sc_mcr, UCYCOM_RTS);
   1103  1.27     skrll 
   1104   1.1     skrll 	if (old ^ sc->sc_mcr)
   1105   1.1     skrll 		ucycom_set_status(sc);
   1106   1.1     skrll }
   1107   1.1     skrll #endif
   1108   1.1     skrll 
   1109   1.1     skrll Static void
   1110   1.1     skrll ucycom_set_status(struct ucycom_softc *sc)
   1111   1.1     skrll {
   1112   1.1     skrll 	int err;
   1113   1.1     skrll 
   1114   1.1     skrll 	if (sc->sc_olen != 8 && sc->sc_olen != 32) {
   1115  1.26     skrll 		DPRINTFN(2,("ucycom_set_status: unknown output report "
   1116  1.26     skrll 		    "size (%zd)\n", sc->sc_olen));
   1117   1.1     skrll 		return;
   1118   1.1     skrll 	}
   1119  1.27     skrll 
   1120   1.1     skrll 	DPRINTF(("ucycom_set_status: %d\n", sc->sc_mcr));
   1121   1.1     skrll 
   1122   1.1     skrll 	memset(sc->sc_obuf, 0, sc->sc_olen);
   1123   1.1     skrll 	sc->sc_obuf[0] = sc->sc_mcr;
   1124   1.1     skrll 
   1125  1.55  riastrad 	err = uhidev_write(sc->sc_hdev, sc->sc_obuf, sc->sc_olen);
   1126  1.14  christos 	if (err) {
   1127   1.1     skrll 		DPRINTF(("ucycom_set_status: err=%d\n", err));
   1128  1.14  christos 	}
   1129   1.1     skrll }
   1130   1.1     skrll 
   1131   1.1     skrll #ifdef UCYCOM_DEBUG
   1132   1.1     skrll Static void
   1133   1.1     skrll ucycom_get_cfg(struct ucycom_softc *sc)
   1134   1.1     skrll {
   1135   1.1     skrll 	int err, cfg, baud;
   1136   1.1     skrll 	uint8_t report[5];
   1137  1.27     skrll 
   1138  1.55  riastrad 	err = uhidev_get_report(sc->sc_hdev, UHID_FEATURE_REPORT,
   1139   1.1     skrll 	    report, sc->sc_flen);
   1140  1.37     skrll 	if (err) {
   1141  1.37     skrll 		DPRINTF(("%s: failed\n", __func__));
   1142  1.37     skrll 		return;
   1143  1.37     skrll 	}
   1144   1.1     skrll 	cfg = report[4];
   1145  1.26     skrll 	baud = (report[3] << 24) + (report[2] << 16) + (report[1] << 8) +
   1146  1.26     skrll 	    report[0];
   1147  1.29     skrll 	DPRINTF(("ucycom_get_cfg: device reports %d baud, %d-%c-%d (%d)\n",
   1148  1.26     skrll 	    baud, 5 + (cfg & UCYCOM_DATA_MASK),
   1149   1.1     skrll 	    (cfg & UCYCOM_PARITY_MASK) ?
   1150   1.1     skrll 		((cfg & UCYCOM_PARITY_TYPE_MASK) ? 'O' : 'E') : 'N',
   1151   1.1     skrll 	    (cfg & UCYCOM_STOP_MASK) ? 2 : 1, cfg));
   1152   1.1     skrll }
   1153   1.1     skrll #endif
   1154   1.1     skrll 
   1155   1.1     skrll Static void
   1156   1.1     skrll ucycom_cleanup(struct ucycom_softc *sc)
   1157   1.1     skrll {
   1158  1.42       mrg 	uint8_t	*obuf;
   1159  1.42       mrg 
   1160   1.1     skrll 	DPRINTF(("ucycom_cleanup: closing uhidev\n"));
   1161   1.1     skrll 
   1162  1.42       mrg 	obuf = sc->sc_obuf;
   1163  1.42       mrg 	sc->sc_obuf = NULL;
   1164  1.55  riastrad 	uhidev_close(sc->sc_hdev);
   1165  1.42       mrg 
   1166  1.42       mrg 	if (obuf != NULL)
   1167  1.43     skrll 		kmem_free(obuf, sc->sc_olen);
   1168   1.1     skrll }
   1169