Home | History | Annotate | Line # | Download | only in usb
umct.c revision 1.1
      1  1.1  ichiro /*	$NetBSD: umct.c,v 1.1 2001/03/28 18:42:13 ichiro Exp $	*/
      2  1.1  ichiro /*
      3  1.1  ichiro  * Copyright (c) 2001 The NetBSD Foundation, Inc.
      4  1.1  ichiro  * All rights reserved.
      5  1.1  ichiro  *
      6  1.1  ichiro  * This code is derived from software contributed to The NetBSD Foundation
      7  1.1  ichiro  * by Ichiro FUKUHARA (ichiro (at) ichiro.org).
      8  1.1  ichiro  *
      9  1.1  ichiro  * Redistribution and use in source and binary forms, with or without
     10  1.1  ichiro  * modification, are permitted provided that the following conditions
     11  1.1  ichiro  * are met:
     12  1.1  ichiro  * 1. Redistributions of source code must retain the above copyright
     13  1.1  ichiro  *    notice, this list of conditions and the following disclaimer.
     14  1.1  ichiro  * 2. Redistributions in binary form must reproduce the above copyright
     15  1.1  ichiro  *    notice, this list of conditions and the following disclaimer in the
     16  1.1  ichiro  *    documentation and/or other materials provided with the distribution.
     17  1.1  ichiro  * 3. All advertising materials mentioning features or use of this software
     18  1.1  ichiro  *    must display the following acknowledgement:
     19  1.1  ichiro  *        This product includes software developed by the NetBSD
     20  1.1  ichiro  *        Foundation, Inc. and its contributors.
     21  1.1  ichiro  * 4. Neither the name of The NetBSD Foundation nor the names of its
     22  1.1  ichiro  *    contributors may be used to endorse or promote products derived
     23  1.1  ichiro  *    from this software without specific prior written permission.
     24  1.1  ichiro  *
     25  1.1  ichiro  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     26  1.1  ichiro  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     27  1.1  ichiro  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     28  1.1  ichiro  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     29  1.1  ichiro  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     30  1.1  ichiro  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     31  1.1  ichiro  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     32  1.1  ichiro  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     33  1.1  ichiro  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     34  1.1  ichiro  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     35  1.1  ichiro  * POSSIBILITY OF SUCH DAMAGE.
     36  1.1  ichiro  */
     37  1.1  ichiro 
     38  1.1  ichiro /*
     39  1.1  ichiro  * This driver is for the device MCT USB-RS232 Interfact Controller.
     40  1.1  ichiro  * http://www.mct.com.tw/p_u232.html
     41  1.1  ichiro  * http://www.dlink.com/products/usb/dsbs25
     42  1.1  ichiro  *
     43  1.1  ichiro  */
     44  1.1  ichiro 
     45  1.1  ichiro #include <sys/param.h>
     46  1.1  ichiro #include <sys/systm.h>
     47  1.1  ichiro #include <sys/kernel.h>
     48  1.1  ichiro #include <sys/malloc.h>
     49  1.1  ichiro #include <sys/ioctl.h>
     50  1.1  ichiro #include <sys/conf.h>
     51  1.1  ichiro #include <sys/tty.h>
     52  1.1  ichiro #include <sys/file.h>
     53  1.1  ichiro #include <sys/select.h>
     54  1.1  ichiro #include <sys/proc.h>
     55  1.1  ichiro #include <sys/vnode.h>
     56  1.1  ichiro #include <sys/device.h>
     57  1.1  ichiro #include <sys/poll.h>
     58  1.1  ichiro 
     59  1.1  ichiro #include <dev/usb/usb.h>
     60  1.1  ichiro #include <dev/usb/usbcdc.h>
     61  1.1  ichiro 
     62  1.1  ichiro #include <dev/usb/usbdi.h>
     63  1.1  ichiro #include <dev/usb/usbdi_util.h>
     64  1.1  ichiro #include <dev/usb/usbdevs.h>
     65  1.1  ichiro #include <dev/usb/usb_quirks.h>
     66  1.1  ichiro 
     67  1.1  ichiro #include <dev/usb/usbdevs.h>
     68  1.1  ichiro #include <dev/usb/ucomvar.h>
     69  1.1  ichiro 
     70  1.1  ichiro #include <dev/usb/umct.h>
     71  1.1  ichiro 
     72  1.1  ichiro #ifdef UMCT_DEBUG
     73  1.1  ichiro #define DPRINTFN(n, x)  if (umctdebug > (n)) logprintf x
     74  1.1  ichiro int	umctdebug = 0;
     75  1.1  ichiro #else
     76  1.1  ichiro #define DPRINTFN(n, x)
     77  1.1  ichiro #endif
     78  1.1  ichiro #define DPRINTF(x) DPRINTFN(0, x)
     79  1.1  ichiro 
     80  1.1  ichiro #define	UMCT_CONFIG_INDEX	0
     81  1.1  ichiro #define	UMCT_IFACE_INDEX	0
     82  1.1  ichiro 
     83  1.1  ichiro struct	umct_softc {
     84  1.1  ichiro 	USBBASEDEVICE		sc_dev;		/* base device */
     85  1.1  ichiro 	usbd_device_handle	sc_udev;	/* USB device */
     86  1.1  ichiro 	usbd_interface_handle	sc_iface;	/* interface */
     87  1.1  ichiro 	int			sc_iface_number;	/* interface number */
     88  1.1  ichiro 
     89  1.1  ichiro 	int			sc_intr_number;	/* interrupt number */
     90  1.1  ichiro 	usbd_pipe_handle	sc_intr_pipe;	/* interrupt pipe */
     91  1.1  ichiro 	u_char			*sc_intr_buf;	/* interrupt buffer */
     92  1.1  ichiro 	int			sc_isize;
     93  1.1  ichiro 
     94  1.1  ichiro 	usb_cdc_line_state_t	sc_line_state;	/* current line state */
     95  1.1  ichiro 	u_char			sc_dtr;		/* current DTR state */
     96  1.1  ichiro 	u_char			sc_rts;		/* current RTS state */
     97  1.1  ichiro 	u_char			sc_break;	/* set break */
     98  1.1  ichiro 
     99  1.1  ichiro 	u_char			sc_status;
    100  1.1  ichiro 
    101  1.1  ichiro 	device_ptr_t		sc_subdev;	/* ucom device */
    102  1.1  ichiro 
    103  1.1  ichiro 	u_char			sc_dying;	/* disconnecting */
    104  1.1  ichiro 
    105  1.1  ichiro 	u_char			sc_lsr;		/* Local status register */
    106  1.1  ichiro 	u_char			sc_msr;		/* umct status register */
    107  1.1  ichiro };
    108  1.1  ichiro 
    109  1.1  ichiro /*
    110  1.1  ichiro  * These are the maximum number of bytes transferred per frame.
    111  1.1  ichiro  * The output buffer size cannot be increased due to the size encoding.
    112  1.1  ichiro  */
    113  1.1  ichiro #define UMCTIBUFSIZE 256
    114  1.1  ichiro #define UMCTOBUFSIZE 256
    115  1.1  ichiro 
    116  1.1  ichiro Static	void umct_init(struct umct_softc *);
    117  1.1  ichiro Static	void umct_set_baudrate(struct umct_softc *, void *);
    118  1.1  ichiro Static	void umct_set_lcr(struct umct_softc *, void *);
    119  1.1  ichiro Static	void umct_intr(usbd_xfer_handle, usbd_private_handle, usbd_status);
    120  1.1  ichiro 
    121  1.1  ichiro Static	void umct_set(void *, int, int, int);
    122  1.1  ichiro Static	void umct_dtr(struct umct_softc *, int);
    123  1.1  ichiro Static	void umct_rts(struct umct_softc *, int);
    124  1.1  ichiro Static	void umct_break(struct umct_softc *, int);
    125  1.1  ichiro Static	void umct_set_line_state(struct umct_softc *);
    126  1.1  ichiro Static	void umct_get_status(void *, int portno, u_char *lsr, u_char *msr);
    127  1.1  ichiro Static	int  umct_param(void *, int, struct termios *);
    128  1.1  ichiro Static	int  umct_open(void *, int);
    129  1.1  ichiro Static	void umct_close(void *, int);
    130  1.1  ichiro 
    131  1.1  ichiro struct	ucom_methods umct_methods = {
    132  1.1  ichiro 	umct_get_status,
    133  1.1  ichiro 	umct_set,
    134  1.1  ichiro 	umct_param,
    135  1.1  ichiro 	NULL,
    136  1.1  ichiro 	umct_open,
    137  1.1  ichiro 	umct_close,
    138  1.1  ichiro 	NULL,
    139  1.1  ichiro 	NULL,
    140  1.1  ichiro };
    141  1.1  ichiro 
    142  1.1  ichiro static const struct umct_product {
    143  1.1  ichiro 	uint16_t	vendor;
    144  1.1  ichiro 	uint16_t	product;
    145  1.1  ichiro } umct_products [] = {
    146  1.1  ichiro 	/* MCT USB-232 Interface Products */
    147  1.1  ichiro 	{ USB_VENDOR_MCT, USB_PRODUCT_MCT_USB232 },
    148  1.1  ichiro 	/* Sitecom USB-232 Products */
    149  1.1  ichiro 	{ USB_VENDOR_MCT, USB_PRODUCT_MCT_SITECOM_USB232 },
    150  1.1  ichiro 	/* D-Link DU-H3SP USB BAY Hub Products */
    151  1.1  ichiro 	{ USB_VENDOR_MCT, USB_PRODUCT_MCT_DU_H3SP_USB232 },
    152  1.1  ichiro 
    153  1.1  ichiro 	{ 0, 0 }
    154  1.1  ichiro };
    155  1.1  ichiro 
    156  1.1  ichiro USB_DECLARE_DRIVER(umct);
    157  1.1  ichiro 
    158  1.1  ichiro USB_MATCH(umct)
    159  1.1  ichiro {
    160  1.1  ichiro 	USB_MATCH_START(umct, uaa);
    161  1.1  ichiro 	int i;
    162  1.1  ichiro 
    163  1.1  ichiro 	if (uaa->iface != NULL)
    164  1.1  ichiro 		return (UMATCH_NONE);
    165  1.1  ichiro 
    166  1.1  ichiro 	for (i = 0; umct_products[i].vendor != 0; i++) {
    167  1.1  ichiro 		if (umct_products[i].vendor == uaa->vendor &&
    168  1.1  ichiro  		    umct_products[i].product == uaa->product) {
    169  1.1  ichiro 			return (UMATCH_VENDOR_PRODUCT);
    170  1.1  ichiro 		}
    171  1.1  ichiro 	}
    172  1.1  ichiro 	return (UMATCH_NONE);
    173  1.1  ichiro }
    174  1.1  ichiro 
    175  1.1  ichiro USB_ATTACH(umct)
    176  1.1  ichiro {
    177  1.1  ichiro 	USB_ATTACH_START(umct, sc, uaa);
    178  1.1  ichiro 	usbd_device_handle dev = uaa->device;
    179  1.1  ichiro 	usb_config_descriptor_t *cdesc;
    180  1.1  ichiro 	usb_interface_descriptor_t *id;
    181  1.1  ichiro 	usb_endpoint_descriptor_t *ed;
    182  1.1  ichiro 
    183  1.1  ichiro 	char devinfo[1024];
    184  1.1  ichiro 	char *devname = USBDEVNAME(sc->sc_dev);
    185  1.1  ichiro 	usbd_status err;
    186  1.1  ichiro 	int i,found;
    187  1.1  ichiro 	struct ucom_attach_args uca;
    188  1.1  ichiro 
    189  1.1  ichiro         usbd_devinfo(dev, 0, devinfo);
    190  1.1  ichiro         USB_ATTACH_SETUP;
    191  1.1  ichiro         printf("%s: %s\n", devname, devinfo);
    192  1.1  ichiro 
    193  1.1  ichiro         sc->sc_udev = dev;
    194  1.1  ichiro 
    195  1.1  ichiro 	DPRINTF(("\n\numct attach: sc=%p\n", sc));
    196  1.1  ichiro 
    197  1.1  ichiro 	/* initialize endpoints */
    198  1.1  ichiro 	uca.bulkin = uca.bulkout = -1;
    199  1.1  ichiro 	sc->sc_intr_number = -1;
    200  1.1  ichiro 	sc->sc_intr_pipe = NULL;
    201  1.1  ichiro 
    202  1.1  ichiro 	/* Move the device into the configured state. */
    203  1.1  ichiro 	err = usbd_set_config_index(dev, UMCT_CONFIG_INDEX, 1);
    204  1.1  ichiro 	if (err) {
    205  1.1  ichiro 		printf("\n%s: failed to set configuration, err=%s\n",
    206  1.1  ichiro 			devname, usbd_errstr(err));
    207  1.1  ichiro 		sc->sc_dying = 1;
    208  1.1  ichiro 		USB_ATTACH_ERROR_RETURN;
    209  1.1  ichiro 	}
    210  1.1  ichiro 
    211  1.1  ichiro 	/* get the config descriptor */
    212  1.1  ichiro 	cdesc = usbd_get_config_descriptor(sc->sc_udev);
    213  1.1  ichiro 
    214  1.1  ichiro 	if (cdesc == NULL) {
    215  1.1  ichiro 		printf("%s: failed to get configuration descriptor\n",
    216  1.1  ichiro 			USBDEVNAME(sc->sc_dev));
    217  1.1  ichiro 		sc->sc_dying = 1;
    218  1.1  ichiro 		USB_ATTACH_ERROR_RETURN;
    219  1.1  ichiro 	}
    220  1.1  ichiro 
    221  1.1  ichiro 	/* get the interface */
    222  1.1  ichiro 	err = usbd_device2interface_handle(dev, UMCT_IFACE_INDEX,
    223  1.1  ichiro 							&sc->sc_iface);
    224  1.1  ichiro 	if (err) {
    225  1.1  ichiro 		printf("\n%s: failed to get interface, err=%s\n",
    226  1.1  ichiro 			devname, usbd_errstr(err));
    227  1.1  ichiro 		sc->sc_dying = 1;
    228  1.1  ichiro 		USB_ATTACH_ERROR_RETURN;
    229  1.1  ichiro 	}
    230  1.1  ichiro 
    231  1.1  ichiro 	/* Find the bulk{in,out} and interrupt endpoints */
    232  1.1  ichiro 
    233  1.1  ichiro 	id = usbd_get_interface_descriptor(sc->sc_iface);
    234  1.1  ichiro 	sc->sc_iface_number = id->bInterfaceNumber;
    235  1.1  ichiro 	found = 0;
    236  1.1  ichiro 
    237  1.1  ichiro 	for (i = 0; i < id->bNumEndpoints; i++) {
    238  1.1  ichiro 		ed = usbd_interface2endpoint_descriptor(sc->sc_iface, i);
    239  1.1  ichiro 		if (ed == NULL) {
    240  1.1  ichiro 			printf("%s: no endpoint descriptor for %d\n",
    241  1.1  ichiro 				USBDEVNAME(sc->sc_dev), i);
    242  1.1  ichiro 			sc->sc_dying = 1;
    243  1.1  ichiro 			USB_ATTACH_ERROR_RETURN;
    244  1.1  ichiro 		}
    245  1.1  ichiro 
    246  1.1  ichiro 		if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
    247  1.1  ichiro 		    UE_GET_XFERTYPE(ed->bmAttributes) == UE_INTERRUPT &&
    248  1.1  ichiro 		    found == 0) {
    249  1.1  ichiro 			uca.bulkin = ed->bEndpointAddress;
    250  1.1  ichiro 			found = 1;
    251  1.1  ichiro 		} else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
    252  1.1  ichiro 		    UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
    253  1.1  ichiro 			uca.bulkout = ed->bEndpointAddress;
    254  1.1  ichiro 		} else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
    255  1.1  ichiro 		    UE_GET_XFERTYPE(ed->bmAttributes) == UE_INTERRUPT) {
    256  1.1  ichiro 			sc->sc_intr_number = ed->bEndpointAddress;
    257  1.1  ichiro 			sc->sc_isize = UGETW(ed->wMaxPacketSize);
    258  1.1  ichiro 		}
    259  1.1  ichiro 	}
    260  1.1  ichiro 
    261  1.1  ichiro 	if (uca.bulkin == -1) {
    262  1.1  ichiro 		printf("%s: Could not find data bulk in\n",
    263  1.1  ichiro 			USBDEVNAME(sc->sc_dev));
    264  1.1  ichiro 		sc->sc_dying = 1;
    265  1.1  ichiro 		USB_ATTACH_ERROR_RETURN;
    266  1.1  ichiro 	}
    267  1.1  ichiro 
    268  1.1  ichiro 	if (uca.bulkout == -1) {
    269  1.1  ichiro 		printf("%s: Could not find data bulk out\n",
    270  1.1  ichiro 			USBDEVNAME(sc->sc_dev));
    271  1.1  ichiro 		sc->sc_dying = 1;
    272  1.1  ichiro 		USB_ATTACH_ERROR_RETURN;
    273  1.1  ichiro 	}
    274  1.1  ichiro 
    275  1.1  ichiro 	if (sc->sc_intr_number== -1) {
    276  1.1  ichiro 		printf("%s: Could not find interrupt in\n",
    277  1.1  ichiro 			USBDEVNAME(sc->sc_dev));
    278  1.1  ichiro 		sc->sc_dying = 1;
    279  1.1  ichiro 		USB_ATTACH_ERROR_RETURN;
    280  1.1  ichiro 	}
    281  1.1  ichiro 
    282  1.1  ichiro 	sc->sc_dtr = sc->sc_rts = 0;
    283  1.1  ichiro 	uca.portno = UCOM_UNK_PORTNO;
    284  1.1  ichiro 	/* bulkin, bulkout set above */
    285  1.1  ichiro 	uca.ibufsize = UMCTIBUFSIZE;
    286  1.1  ichiro 	uca.obufsize = UMCTOBUFSIZE;
    287  1.1  ichiro 	uca.ibufsizepad = UMCTIBUFSIZE;
    288  1.1  ichiro 	uca.opkthdrlen = 0;
    289  1.1  ichiro 	uca.device = dev;
    290  1.1  ichiro 	uca.iface = sc->sc_iface;
    291  1.1  ichiro 	uca.methods = &umct_methods;
    292  1.1  ichiro 	uca.arg = sc;
    293  1.1  ichiro 	uca.info = NULL;
    294  1.1  ichiro 
    295  1.1  ichiro 	umct_init(sc);
    296  1.1  ichiro 
    297  1.1  ichiro 	usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, sc->sc_udev,
    298  1.1  ichiro 			   USBDEV(sc->sc_dev));
    299  1.1  ichiro 
    300  1.1  ichiro 	DPRINTF(("umct: in=0x%x out=0x%x intr=0x%x\n",
    301  1.1  ichiro 			uca.bulkin, uca.bulkout, sc->sc_intr_number ));
    302  1.1  ichiro 	sc->sc_subdev = config_found_sm(self, &uca, ucomprint, ucomsubmatch);
    303  1.1  ichiro 
    304  1.1  ichiro 	USB_ATTACH_SUCCESS_RETURN;
    305  1.1  ichiro }
    306  1.1  ichiro 
    307  1.1  ichiro USB_DETACH(umct)
    308  1.1  ichiro {
    309  1.1  ichiro 	USB_DETACH_START(umct, sc);
    310  1.1  ichiro 	int rv = 0;
    311  1.1  ichiro 
    312  1.1  ichiro 	DPRINTF(("umct_detach: sc=%p flags=%d\n", sc, flags));
    313  1.1  ichiro 
    314  1.1  ichiro         if (sc->sc_intr_pipe != NULL) {
    315  1.1  ichiro                 usbd_abort_pipe(sc->sc_intr_pipe);
    316  1.1  ichiro                 usbd_close_pipe(sc->sc_intr_pipe);
    317  1.1  ichiro 		free(sc->sc_intr_buf, M_USBDEV);
    318  1.1  ichiro                 sc->sc_intr_pipe = NULL;
    319  1.1  ichiro         }
    320  1.1  ichiro 
    321  1.1  ichiro 	sc->sc_dying = 1;
    322  1.1  ichiro 	if (sc->sc_subdev != NULL) {
    323  1.1  ichiro 		rv = config_detach(sc->sc_subdev, flags);
    324  1.1  ichiro 		sc->sc_subdev = NULL;
    325  1.1  ichiro 	}
    326  1.1  ichiro 
    327  1.1  ichiro 	usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, sc->sc_udev,
    328  1.1  ichiro 			   USBDEV(sc->sc_dev));
    329  1.1  ichiro 
    330  1.1  ichiro 	return (rv);
    331  1.1  ichiro }
    332  1.1  ichiro 
    333  1.1  ichiro int
    334  1.1  ichiro umct_activate(device_ptr_t self, enum devact act)
    335  1.1  ichiro {
    336  1.1  ichiro 	struct umct_softc *sc = (struct umct_softc *)self;
    337  1.1  ichiro 	int rv = 0;
    338  1.1  ichiro 
    339  1.1  ichiro 	switch (act) {
    340  1.1  ichiro 	case DVACT_ACTIVATE:
    341  1.1  ichiro 		return (EOPNOTSUPP);
    342  1.1  ichiro 		break;
    343  1.1  ichiro 
    344  1.1  ichiro 	case DVACT_DEACTIVATE:
    345  1.1  ichiro 		if (sc->sc_subdev != NULL)
    346  1.1  ichiro 			rv = config_deactivate(sc->sc_subdev);
    347  1.1  ichiro 		sc->sc_dying = 1;
    348  1.1  ichiro 		break;
    349  1.1  ichiro 	}
    350  1.1  ichiro 	return (rv);
    351  1.1  ichiro }
    352  1.1  ichiro 
    353  1.1  ichiro void
    354  1.1  ichiro umct_set_line_state(struct umct_softc *sc)
    355  1.1  ichiro {
    356  1.1  ichiro 	usb_device_request_t req;
    357  1.1  ichiro 	int ls = MCR_NONE;
    358  1.1  ichiro 
    359  1.1  ichiro 	ls = (sc->sc_dtr ? MCR_DTR : 0) |
    360  1.1  ichiro 		(sc->sc_rts ? MCR_RTS : 0);
    361  1.1  ichiro 
    362  1.1  ichiro 	DPRINTF(("umct_set_line_state: DTR=%d,RTS=%d,ls=%02x\n",
    363  1.1  ichiro 			sc->sc_dtr, sc->sc_rts, ls));
    364  1.1  ichiro 
    365  1.1  ichiro 	req.bmRequestType = UMCT_SET_REQUEST;
    366  1.1  ichiro 	req.bRequest = REQ_SET_MCR;
    367  1.1  ichiro 	USETW(req.wValue, 0);
    368  1.1  ichiro 	USETW(req.wIndex, sc->sc_iface_number);
    369  1.1  ichiro 	USETW(req.wLength, LENGTH_SET_MCR);
    370  1.1  ichiro 
    371  1.1  ichiro 	(void)usbd_do_request(sc->sc_udev, &req, &ls);
    372  1.1  ichiro }
    373  1.1  ichiro 
    374  1.1  ichiro void
    375  1.1  ichiro umct_set(void *addr, int portno, int reg, int onoff)
    376  1.1  ichiro {
    377  1.1  ichiro 	struct umct_softc *sc = addr;
    378  1.1  ichiro 
    379  1.1  ichiro 	switch (reg) {
    380  1.1  ichiro 	case UCOM_SET_DTR:
    381  1.1  ichiro 		umct_dtr(sc, onoff);
    382  1.1  ichiro 		break;
    383  1.1  ichiro 	case UCOM_SET_RTS:
    384  1.1  ichiro 		umct_rts(sc, onoff);
    385  1.1  ichiro 		break;
    386  1.1  ichiro 	case UCOM_SET_BREAK:
    387  1.1  ichiro 		umct_break(sc, onoff);
    388  1.1  ichiro 		break;
    389  1.1  ichiro 	default:
    390  1.1  ichiro 		break;
    391  1.1  ichiro 	}
    392  1.1  ichiro }
    393  1.1  ichiro 
    394  1.1  ichiro void
    395  1.1  ichiro umct_dtr(struct umct_softc *sc, int onoff)
    396  1.1  ichiro {
    397  1.1  ichiro 
    398  1.1  ichiro 	DPRINTF(("umct_dtr: onoff=%d\n", onoff));
    399  1.1  ichiro 
    400  1.1  ichiro 	if (sc->sc_dtr == onoff)
    401  1.1  ichiro 		return;
    402  1.1  ichiro 	sc->sc_dtr = onoff;
    403  1.1  ichiro 
    404  1.1  ichiro 	umct_set_line_state(sc);
    405  1.1  ichiro }
    406  1.1  ichiro 
    407  1.1  ichiro void
    408  1.1  ichiro umct_rts(struct umct_softc *sc, int onoff)
    409  1.1  ichiro {
    410  1.1  ichiro 	DPRINTF(("umct_rts: onoff=%d\n", onoff));
    411  1.1  ichiro 
    412  1.1  ichiro 	if (sc->sc_rts == onoff)
    413  1.1  ichiro 		return;
    414  1.1  ichiro 	sc->sc_rts = onoff;
    415  1.1  ichiro 
    416  1.1  ichiro 	umct_set_line_state(sc);
    417  1.1  ichiro }
    418  1.1  ichiro 
    419  1.1  ichiro void
    420  1.1  ichiro umct_break(struct umct_softc *sc, int onoff)
    421  1.1  ichiro {
    422  1.1  ichiro 	u_char data;
    423  1.1  ichiro 
    424  1.1  ichiro 	DPRINTF(("umct_break: onoff=%d\n", onoff));
    425  1.1  ichiro 
    426  1.1  ichiro 	data = onoff ? LCR_SET_BREAK : 0;
    427  1.1  ichiro 
    428  1.1  ichiro 	umct_set_lcr(sc, &data);
    429  1.1  ichiro }
    430  1.1  ichiro 
    431  1.1  ichiro void
    432  1.1  ichiro umct_set_lcr(struct umct_softc *sc, void *data)
    433  1.1  ichiro {
    434  1.1  ichiro 	usb_device_request_t req;
    435  1.1  ichiro 
    436  1.1  ichiro 	req.bmRequestType = UMCT_SET_REQUEST;
    437  1.1  ichiro 	req.bRequest = REQ_SET_LCR;
    438  1.1  ichiro 	USETW(req.wValue, 0);
    439  1.1  ichiro 	USETW(req.wIndex, sc->sc_iface_number);
    440  1.1  ichiro 	USETW(req.wLength, LENGTH_SET_LCR);
    441  1.1  ichiro 
    442  1.1  ichiro 	(void)usbd_do_request(sc->sc_udev, &req, data);
    443  1.1  ichiro }
    444  1.1  ichiro 
    445  1.1  ichiro void
    446  1.1  ichiro umct_set_baudrate(struct umct_softc *sc, void *rate)
    447  1.1  ichiro {
    448  1.1  ichiro         usb_device_request_t req;
    449  1.1  ichiro 
    450  1.1  ichiro         req.bmRequestType = UMCT_SET_REQUEST;
    451  1.1  ichiro         req.bRequest = REQ_SET_BAUD_RATE;
    452  1.1  ichiro         USETW(req.wValue, 0);
    453  1.1  ichiro         USETW(req.wIndex, sc->sc_iface_number);
    454  1.1  ichiro         USETW(req.wLength, LENGTH_BAUD_RATE);
    455  1.1  ichiro 
    456  1.1  ichiro         (void)usbd_do_request(sc->sc_udev, &req, rate);
    457  1.1  ichiro }
    458  1.1  ichiro 
    459  1.1  ichiro void
    460  1.1  ichiro umct_init(struct umct_softc *sc)
    461  1.1  ichiro {
    462  1.1  ichiro 	int brate, data;
    463  1.1  ichiro 
    464  1.1  ichiro 	brate = UMCT_BAUD_RATE(9600);
    465  1.1  ichiro 	data |= LCR_DATA_BITS_8 | LCR_PARITY_NONE |
    466  1.1  ichiro 		LCR_STOP_BITS_1;
    467  1.1  ichiro 
    468  1.1  ichiro 	umct_set_baudrate(sc, &brate);
    469  1.1  ichiro 	umct_set_lcr(sc, &data);
    470  1.1  ichiro }
    471  1.1  ichiro 
    472  1.1  ichiro int
    473  1.1  ichiro umct_param(void *addr, int portno, struct termios *t)
    474  1.1  ichiro {
    475  1.1  ichiro 	struct umct_softc *sc = addr;
    476  1.1  ichiro 	int divisor = 0;
    477  1.1  ichiro 	u_char data = NULL;
    478  1.1  ichiro 
    479  1.1  ichiro 	DPRINTF(("umct_param: sc=%p\n", sc));
    480  1.1  ichiro 
    481  1.1  ichiro 	divisor = UMCT_BAUD_RATE(t->c_ospeed);
    482  1.1  ichiro 	DPRINTF(("umct_param: BAUDRATE=%d\n", t->c_ospeed));
    483  1.1  ichiro 
    484  1.1  ichiro 	if (ISSET(t->c_cflag, CSTOPB))
    485  1.1  ichiro 		data |= LCR_STOP_BITS_2;
    486  1.1  ichiro 	else
    487  1.1  ichiro 		data |= LCR_STOP_BITS_1;
    488  1.1  ichiro 	if (ISSET(t->c_cflag, PARENB)) {
    489  1.1  ichiro 		if (ISSET(t->c_cflag, PARODD))
    490  1.1  ichiro 			data |= LCR_PARITY_ODD;
    491  1.1  ichiro 		else
    492  1.1  ichiro 			data |= LCR_PARITY_EVEN;
    493  1.1  ichiro 	} else
    494  1.1  ichiro 		data |= LCR_PARITY_NONE;
    495  1.1  ichiro 	switch (ISSET(t->c_cflag, CSIZE)) {
    496  1.1  ichiro 	case CS5:
    497  1.1  ichiro 		data |= LCR_DATA_BITS_5;
    498  1.1  ichiro 		break;
    499  1.1  ichiro 	case CS6:
    500  1.1  ichiro 		data |= LCR_DATA_BITS_6;
    501  1.1  ichiro 		break;
    502  1.1  ichiro 	case CS7:
    503  1.1  ichiro 		data |= LCR_DATA_BITS_7;
    504  1.1  ichiro 		break;
    505  1.1  ichiro 	case CS8:
    506  1.1  ichiro 		data |= LCR_DATA_BITS_8;
    507  1.1  ichiro 		break;
    508  1.1  ichiro 	}
    509  1.1  ichiro 
    510  1.1  ichiro 	umct_set_baudrate(sc, &divisor);
    511  1.1  ichiro 
    512  1.1  ichiro 	umct_set_lcr(sc, &data);
    513  1.1  ichiro 
    514  1.1  ichiro 	return (0);
    515  1.1  ichiro }
    516  1.1  ichiro 
    517  1.1  ichiro int
    518  1.1  ichiro umct_open(void *addr, int portno)
    519  1.1  ichiro {
    520  1.1  ichiro 	struct umct_softc *sc = addr;
    521  1.1  ichiro 	int err, lcr_data;
    522  1.1  ichiro 
    523  1.1  ichiro 	if (sc->sc_dying)
    524  1.1  ichiro 		return (EIO);
    525  1.1  ichiro 
    526  1.1  ichiro 	DPRINTF(("umct_open: sc=%p\n", sc));
    527  1.1  ichiro 
    528  1.1  ichiro 	/* initialize LCR */
    529  1.1  ichiro         lcr_data |= LCR_DATA_BITS_8 | LCR_PARITY_NONE |
    530  1.1  ichiro                 LCR_STOP_BITS_1;
    531  1.1  ichiro         umct_set_lcr(sc, &lcr_data);
    532  1.1  ichiro 
    533  1.1  ichiro 	if (sc->sc_intr_number != -1 && sc->sc_intr_pipe == NULL) {
    534  1.1  ichiro 		sc->sc_status = 0; /* clear status bit */
    535  1.1  ichiro 		sc->sc_intr_buf = malloc(sc->sc_isize, M_USBDEV, M_WAITOK);
    536  1.1  ichiro 		err = usbd_open_pipe_intr(sc->sc_iface, sc->sc_intr_number,
    537  1.1  ichiro 			USBD_SHORT_XFER_OK, &sc->sc_intr_pipe, sc,
    538  1.1  ichiro 			sc->sc_intr_buf, sc->sc_isize,
    539  1.1  ichiro 			umct_intr, USBD_DEFAULT_INTERVAL);
    540  1.1  ichiro 		if (err) {
    541  1.1  ichiro 			DPRINTF(("%s: cannot open interrupt pipe (addr %d)\n",
    542  1.1  ichiro 				USBDEVNAME(sc->sc_dev), sc->sc_intr_number));
    543  1.1  ichiro 					return (EIO);
    544  1.1  ichiro 		}
    545  1.1  ichiro 	}
    546  1.1  ichiro 
    547  1.1  ichiro 	return (0);
    548  1.1  ichiro }
    549  1.1  ichiro 
    550  1.1  ichiro void
    551  1.1  ichiro umct_close(void *addr, int portno)
    552  1.1  ichiro {
    553  1.1  ichiro 	struct umct_softc *sc = addr;
    554  1.1  ichiro 	int err;
    555  1.1  ichiro 
    556  1.1  ichiro 	if (sc->sc_dying)
    557  1.1  ichiro 		return;
    558  1.1  ichiro 
    559  1.1  ichiro 	DPRINTF(("umct_close: close\n"));
    560  1.1  ichiro 
    561  1.1  ichiro 	if (sc->sc_intr_pipe != NULL) {
    562  1.1  ichiro 		err = usbd_abort_pipe(sc->sc_intr_pipe);
    563  1.1  ichiro 		if (err)
    564  1.1  ichiro 			printf("%s: abort interrupt pipe failed: %s\n",
    565  1.1  ichiro 				USBDEVNAME(sc->sc_dev), usbd_errstr(err));
    566  1.1  ichiro 		err = usbd_close_pipe(sc->sc_intr_pipe);
    567  1.1  ichiro 		if (err)
    568  1.1  ichiro 			printf("%s: close interrupt pipe failed: %s\n",
    569  1.1  ichiro 				USBDEVNAME(sc->sc_dev), usbd_errstr(err));
    570  1.1  ichiro 		free(sc->sc_intr_buf, M_USBDEV);
    571  1.1  ichiro 		sc->sc_intr_pipe = NULL;
    572  1.1  ichiro 	}
    573  1.1  ichiro }
    574  1.1  ichiro 
    575  1.1  ichiro void
    576  1.1  ichiro umct_intr(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
    577  1.1  ichiro {
    578  1.1  ichiro 	struct umct_softc *sc = priv;
    579  1.1  ichiro 	u_char *buf = sc->sc_intr_buf;
    580  1.1  ichiro 	u_char mstatus, lstatus;
    581  1.1  ichiro 
    582  1.1  ichiro 	if (sc->sc_dying)
    583  1.1  ichiro 		return;
    584  1.1  ichiro 
    585  1.1  ichiro 	if (status != USBD_NORMAL_COMPLETION) {
    586  1.1  ichiro 		if (status == USBD_NOT_STARTED || status == USBD_CANCELLED)
    587  1.1  ichiro 			return;
    588  1.1  ichiro 
    589  1.1  ichiro 		DPRINTF(("%s: abnormal status: %s\n", USBDEVNAME(sc->sc_dev),
    590  1.1  ichiro 			usbd_errstr(status)));
    591  1.1  ichiro 		usbd_clear_endpoint_stall_async(sc->sc_intr_pipe);
    592  1.1  ichiro 		return;
    593  1.1  ichiro 	}
    594  1.1  ichiro 
    595  1.1  ichiro 	DPRINTF(("%s: umct status = MSR:%02x, LSR:%02x\n", USBDEVNAME(sc->sc_dev),
    596  1.1  ichiro 		buf[0],buf[1]));
    597  1.1  ichiro 
    598  1.1  ichiro 		sc->sc_lsr = sc->sc_msr = 0;
    599  1.1  ichiro 		mstatus = buf[0];
    600  1.1  ichiro 		lstatus = buf[1];
    601  1.1  ichiro 		if (ISSET(mstatus, MSR_DSR))
    602  1.1  ichiro 			sc->sc_msr |= UMSR_DSR;
    603  1.1  ichiro 		if (ISSET(mstatus, MSR_DCD))
    604  1.1  ichiro 			sc->sc_msr |= UMSR_DCD;
    605  1.1  ichiro 		ucom_status_change((struct ucom_softc *) sc->sc_subdev);
    606  1.1  ichiro 
    607  1.1  ichiro }
    608  1.1  ichiro 
    609  1.1  ichiro void
    610  1.1  ichiro umct_get_status(void *addr, int portno, u_char *lsr, u_char *msr)
    611  1.1  ichiro {
    612  1.1  ichiro 	struct umct_softc *sc = addr;
    613  1.1  ichiro 
    614  1.1  ichiro 	DPRINTF(("umct_get_status:\n"));
    615  1.1  ichiro 
    616  1.1  ichiro 	if (lsr != NULL)
    617  1.1  ichiro 		*lsr = sc->sc_lsr;
    618  1.1  ichiro 	if (msr != NULL)
    619  1.1  ichiro 		*msr = sc->sc_msr;
    620  1.1  ichiro }
    621