Home | History | Annotate | Line # | Download | only in usb
uplcom.c revision 1.53
      1  1.53  christos /*	$NetBSD: uplcom.c,v 1.53 2007/03/04 06:02:50 christos Exp $	*/
      2   1.1    ichiro /*
      3   1.3    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.12    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.31       wiz  * General information: http://www.prolific.com.tw/fr_pl2303.htm
     40  1.31       wiz  * http://www.hitachi-hitec.com/jyouhou/prolific/2303.pdf
     41   1.1    ichiro  */
     42  1.21     lukem 
     43  1.21     lukem #include <sys/cdefs.h>
     44  1.53  christos __KERNEL_RCSID(0, "$NetBSD: uplcom.c,v 1.53 2007/03/04 06:02:50 christos Exp $");
     45   1.1    ichiro 
     46   1.1    ichiro #include <sys/param.h>
     47   1.1    ichiro #include <sys/systm.h>
     48   1.1    ichiro #include <sys/kernel.h>
     49  1.12    ichiro #include <sys/malloc.h>
     50   1.1    ichiro #include <sys/ioctl.h>
     51   1.1    ichiro #include <sys/conf.h>
     52   1.1    ichiro #include <sys/tty.h>
     53   1.1    ichiro #include <sys/file.h>
     54   1.1    ichiro #include <sys/select.h>
     55   1.1    ichiro #include <sys/proc.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/ucomvar.h>
     68   1.1    ichiro 
     69   1.1    ichiro #ifdef UPLCOM_DEBUG
     70   1.1    ichiro #define DPRINTFN(n, x)  if (uplcomdebug > (n)) logprintf x
     71  1.12    ichiro int	uplcomdebug = 0;
     72   1.1    ichiro #else
     73   1.1    ichiro #define DPRINTFN(n, x)
     74   1.1    ichiro #endif
     75   1.1    ichiro #define DPRINTF(x) DPRINTFN(0, x)
     76   1.1    ichiro 
     77   1.1    ichiro #define	UPLCOM_CONFIG_INDEX	0
     78  1.10    ichiro #define	UPLCOM_IFACE_INDEX	0
     79  1.10    ichiro #define	UPLCOM_SECOND_IFACE_INDEX	1
     80   1.1    ichiro 
     81  1.19    ichiro #define	UPLCOM_SET_REQUEST	0x01
     82  1.43  augustss #define	UPLCOM_SET_CRTSCTS_0	0x41
     83  1.43  augustss #define	UPLCOM_SET_CRTSCTS_HX	0x61
     84  1.12    ichiro #define RSAQ_STATUS_DSR		0x02
     85  1.12    ichiro #define RSAQ_STATUS_DCD		0x01
     86  1.12    ichiro 
     87  1.43  augustss enum  pl2303_type {
     88  1.43  augustss 	UPLCOM_TYPE_0,
     89  1.43  augustss 	UPLCOM_TYPE_HX,
     90  1.43  augustss };
     91  1.43  augustss 
     92   1.1    ichiro struct	uplcom_softc {
     93   1.1    ichiro 	USBBASEDEVICE		sc_dev;		/* base device */
     94   1.1    ichiro 	usbd_device_handle	sc_udev;	/* USB device */
     95  1.14    ichiro 	usbd_interface_handle	sc_iface;	/* interface */
     96   1.1    ichiro 	int			sc_iface_number;	/* interface number */
     97   1.1    ichiro 
     98  1.20    ichiro 	usbd_interface_handle	sc_intr_iface;	/* interrupt interface */
     99  1.12    ichiro 	int			sc_intr_number;	/* interrupt number */
    100  1.12    ichiro 	usbd_pipe_handle	sc_intr_pipe;	/* interrupt pipe */
    101  1.12    ichiro 	u_char			*sc_intr_buf;	/* interrupt buffer */
    102  1.12    ichiro 	int			sc_isize;
    103  1.12    ichiro 
    104   1.1    ichiro 	usb_cdc_line_state_t	sc_line_state;	/* current line state */
    105  1.37    martin 	int			sc_dtr;		/* current DTR state */
    106  1.37    martin 	int			sc_rts;		/* current RTS state */
    107   1.1    ichiro 
    108  1.12    ichiro 	device_ptr_t		sc_subdev;	/* ucom device */
    109   1.1    ichiro 
    110  1.13    ichiro 	u_char			sc_dying;	/* disconnecting */
    111  1.12    ichiro 
    112  1.12    ichiro 	u_char			sc_lsr;		/* Local status register */
    113  1.12    ichiro 	u_char			sc_msr;		/* uplcom status register */
    114  1.43  augustss 
    115  1.43  augustss 	enum pl2303_type	sc_type;	/* PL2303 chip type */
    116   1.1    ichiro };
    117   1.1    ichiro 
    118   1.1    ichiro /*
    119   1.1    ichiro  * These are the maximum number of bytes transferred per frame.
    120   1.1    ichiro  * The output buffer size cannot be increased due to the size encoding.
    121   1.1    ichiro  */
    122   1.6  augustss #define UPLCOMIBUFSIZE 256
    123   1.6  augustss #define UPLCOMOBUFSIZE 256
    124   1.1    ichiro 
    125  1.11    ichiro Static	usbd_status uplcom_reset(struct uplcom_softc *);
    126   1.1    ichiro Static	usbd_status uplcom_set_line_coding(struct uplcom_softc *sc,
    127   1.6  augustss 					   usb_cdc_line_state_t *state);
    128  1.19    ichiro Static	usbd_status uplcom_set_crtscts(struct uplcom_softc *);
    129  1.12    ichiro Static	void uplcom_intr(usbd_xfer_handle, usbd_private_handle, usbd_status);
    130   1.1    ichiro 
    131  1.12    ichiro Static	void uplcom_set(void *, int, int, int);
    132  1.12    ichiro Static	void uplcom_dtr(struct uplcom_softc *, int);
    133  1.12    ichiro Static	void uplcom_rts(struct uplcom_softc *, int);
    134  1.12    ichiro Static	void uplcom_break(struct uplcom_softc *, int);
    135  1.12    ichiro Static	void uplcom_set_line_state(struct uplcom_softc *);
    136  1.12    ichiro Static	void uplcom_get_status(void *, int portno, u_char *lsr, u_char *msr);
    137  1.12    ichiro #if TODO
    138  1.53  christos Static	int  uplcom_ioctl(void *, int, u_long, void *, int, usb_proc_ptr );
    139  1.12    ichiro #endif
    140  1.12    ichiro Static	int  uplcom_param(void *, int, struct termios *);
    141  1.12    ichiro Static	int  uplcom_open(void *, int);
    142  1.12    ichiro Static	void uplcom_close(void *, int);
    143  1.43  augustss Static usbd_status uplcom_vendor_control_write(usbd_device_handle, u_int16_t, u_int16_t);
    144   1.1    ichiro 
    145   1.1    ichiro struct	ucom_methods uplcom_methods = {
    146  1.12    ichiro 	uplcom_get_status,
    147   1.1    ichiro 	uplcom_set,
    148   1.1    ichiro 	uplcom_param,
    149  1.12    ichiro 	NULL, /* uplcom_ioctl, TODO */
    150  1.11    ichiro 	uplcom_open,
    151  1.11    ichiro 	uplcom_close,
    152   1.1    ichiro 	NULL,
    153   1.1    ichiro 	NULL,
    154   1.1    ichiro };
    155   1.1    ichiro 
    156  1.23  augustss static const struct usb_devno uplcom_devs[] = {
    157   1.1    ichiro 	/* I/O DATA USB-RSAQ2 */
    158  1.17     jhawk 	{ USB_VENDOR_PROLIFIC, USB_PRODUCT_PROLIFIC_RSAQ2 },
    159  1.48    martin 	/* I/O DATA USB-RSAQ3 */
    160  1.48    martin 	{ USB_VENDOR_PROLIFIC, USB_PRODUCT_PROLIFIC_RSAQ3 },
    161  1.13    ichiro 	/* I/O DATA USB-RSAQ */
    162  1.10    ichiro 	{ USB_VENDOR_IODATA, USB_PRODUCT_IODATA_USBRSAQ },
    163  1.16    ichiro 	/* PLANEX USB-RS232 URS-03 */
    164  1.16    ichiro 	{ USB_VENDOR_ATEN, USB_PRODUCT_ATEN_UC232A },
    165  1.17     jhawk 	/* IOGEAR/ATEN UC-232A */
    166  1.18     jhawk 	{ USB_VENDOR_PROLIFIC, USB_PRODUCT_PROLIFIC_PL2303 },
    167  1.34  augustss 	/* IOGEAR/ATENTRIPPLITE */
    168  1.34  augustss 	{ USB_VENDOR_TRIPPLITE, USB_PRODUCT_TRIPPLITE_U209 },
    169  1.22  augustss 	/* ELECOM UC-SGT */
    170  1.22  augustss 	{ USB_VENDOR_ELECOM, USB_PRODUCT_ELECOM_UCSGT },
    171  1.46    sekiya 	/* ELECOM UC-SGT0 */
    172  1.46    sekiya 	{ USB_VENDOR_ELECOM, USB_PRODUCT_ELECOM_UCSGT0 },
    173  1.44     pooka 	/* Panasonic 50" Touch Panel */
    174  1.44     pooka 	{ USB_VENDOR_PANASONIC, USB_PRODUCT_PANASONIC_TYTP50P6S },
    175  1.25    ichiro 	/* RATOC REX-USB60 */
    176  1.25    ichiro 	{ USB_VENDOR_RATOC, USB_PRODUCT_RATOC_REXUSB60 },
    177  1.26    ichiro 	/* TDK USB-PHS Adapter UHA6400 */
    178  1.26    ichiro 	{ USB_VENDOR_TDK, USB_PRODUCT_TDK_UHA6400 },
    179  1.27    ichiro 	/* TDK USB-PDC Adapter UPA9664 */
    180  1.27    ichiro 	{ USB_VENDOR_TDK, USB_PRODUCT_TDK_UPA9664 },
    181  1.30  augustss 	/* Sony Ericsson USB Cable */
    182  1.40  augustss 	{ USB_VENDOR_SUSTEEN, USB_PRODUCT_SUSTEEN_DCU10 },
    183  1.32  augustss 	/* SOURCENEXT KeikaiDenwa 8 */
    184  1.32  augustss 	{ USB_VENDOR_SOURCENEXT, USB_PRODUCT_SOURCENEXT_KEIKAI8 },
    185  1.32  augustss 	/* SOURCENEXT KeikaiDenwa 8 with charger */
    186  1.32  augustss 	{ USB_VENDOR_SOURCENEXT, USB_PRODUCT_SOURCENEXT_KEIKAI8_CHG },
    187  1.32  augustss 	/* HAL Corporation Crossam2+USB */
    188  1.32  augustss 	{ USB_VENDOR_HAL, USB_PRODUCT_HAL_IMR001 },
    189  1.38  jdolecek 	/* Sitecom USB to serial cable */
    190  1.40  augustss 	{ USB_VENDOR_SITECOM, USB_PRODUCT_SITECOM_CN104 },
    191  1.41  augustss 	/* Pharos USB GPS - Microsoft version */
    192  1.41  augustss 	{ USB_VENDOR_PROLIFIC, USB_PRODUCT_PROLIFIC_PL2303X },
    193  1.52   msaitoh 	/* Willcom WS002IN (DD) */
    194  1.52   msaitoh 	{ USB_VENDOR_PROLIFIC2, USB_PRODUCT_PROLIFIC2_PL2303X },
    195   1.1    ichiro };
    196  1.23  augustss #define uplcom_lookup(v, p) usb_lookup(uplcom_devs, v, p)
    197  1.32  augustss 
    198  1.48    martin static const struct {
    199  1.48    martin 	uint16_t		vendor;
    200  1.48    martin 	uint16_t		product;
    201  1.48    martin 	enum pl2303_type	chiptype;
    202  1.48    martin } uplcom_devs_ext[] = {
    203  1.48    martin 	/* I/O DATA USB-RSAQ3 */
    204  1.48    martin 	{ USB_VENDOR_PROLIFIC, USB_PRODUCT_PROLIFIC_RSAQ3, UPLCOM_TYPE_HX },
    205  1.52   msaitoh 	{ USB_VENDOR_PROLIFIC2, USB_PRODUCT_PROLIFIC2_PL2303X, UPLCOM_TYPE_HX },
    206  1.48    martin 	{0, 0, 0}
    207  1.48    martin };
    208  1.48    martin 
    209   1.1    ichiro 
    210   1.1    ichiro USB_DECLARE_DRIVER(uplcom);
    211   1.1    ichiro 
    212   1.1    ichiro USB_MATCH(uplcom)
    213   1.1    ichiro {
    214   1.1    ichiro 	USB_MATCH_START(uplcom, uaa);
    215   1.1    ichiro 
    216   1.6  augustss 	if (uaa->iface != NULL)
    217   1.1    ichiro 		return (UMATCH_NONE);
    218   1.1    ichiro 
    219  1.23  augustss 	return (uplcom_lookup(uaa->vendor, uaa->product) != NULL ?
    220  1.23  augustss 		UMATCH_VENDOR_PRODUCT : UMATCH_NONE);
    221   1.1    ichiro }
    222   1.1    ichiro 
    223   1.1    ichiro USB_ATTACH(uplcom)
    224   1.1    ichiro {
    225   1.1    ichiro 	USB_ATTACH_START(uplcom, sc, uaa);
    226   1.1    ichiro 	usbd_device_handle dev = uaa->device;
    227  1.43  augustss 	usb_device_descriptor_t *ddesc;
    228  1.10    ichiro 	usb_config_descriptor_t *cdesc;
    229   1.1    ichiro 	usb_interface_descriptor_t *id;
    230   1.1    ichiro 	usb_endpoint_descriptor_t *ed;
    231  1.42  augustss 	char *devinfop;
    232   1.1    ichiro 	char *devname = USBDEVNAME(sc->sc_dev);
    233   1.1    ichiro 	usbd_status err;
    234   1.1    ichiro 	int i;
    235   1.1    ichiro 	struct ucom_attach_args uca;
    236   1.1    ichiro 
    237  1.42  augustss 	devinfop = usbd_devinfo_alloc(dev, 0);
    238  1.42  augustss 	USB_ATTACH_SETUP;
    239  1.42  augustss 	printf("%s: %s\n", devname, devinfop);
    240  1.42  augustss 	usbd_devinfo_free(devinfop);
    241  1.10    ichiro 
    242  1.10    ichiro         sc->sc_udev = dev;
    243  1.10    ichiro 
    244   1.1    ichiro 	DPRINTF(("\n\nuplcom attach: sc=%p\n", sc));
    245   1.1    ichiro 
    246  1.28  augustss 	/* initialize endpoints */
    247  1.13    ichiro 	uca.bulkin = uca.bulkout = -1;
    248  1.13    ichiro 	sc->sc_intr_number = -1;
    249  1.13    ichiro 	sc->sc_intr_pipe = NULL;
    250  1.13    ichiro 
    251   1.6  augustss 	/* Move the device into the configured state. */
    252   1.1    ichiro 	err = usbd_set_config_index(dev, UPLCOM_CONFIG_INDEX, 1);
    253   1.1    ichiro 	if (err) {
    254   1.1    ichiro 		printf("\n%s: failed to set configuration, err=%s\n",
    255   1.1    ichiro 			devname, usbd_errstr(err));
    256  1.13    ichiro 		sc->sc_dying = 1;
    257   1.1    ichiro 		USB_ATTACH_ERROR_RETURN;
    258   1.1    ichiro 	}
    259   1.1    ichiro 
    260  1.43  augustss 	/* get the device descriptor */
    261  1.43  augustss 	ddesc = usbd_get_device_descriptor(sc->sc_udev);
    262  1.43  augustss 	if (ddesc == NULL) {
    263  1.43  augustss 		printf("%s: failed to get device descriptor\n",
    264  1.43  augustss 		    USBDEVNAME(sc->sc_dev));
    265  1.43  augustss 		sc->sc_dying = 1;
    266  1.43  augustss 		USB_ATTACH_ERROR_RETURN;
    267  1.43  augustss 	}
    268  1.48    martin 
    269  1.48    martin 	/* determine chip type */
    270  1.48    martin 	for (i = 0; uplcom_devs_ext[i].vendor != 0; i++) {
    271  1.48    martin 		if (uplcom_devs_ext[i].vendor == uaa->vendor &&
    272  1.48    martin 		    uplcom_devs_ext[i].product == uaa->product) {
    273  1.48    martin 			sc->sc_type = uplcom_devs_ext[i].chiptype;
    274  1.48    martin 			goto chiptype_determined;
    275  1.48    martin 		}
    276  1.48    martin 	}
    277  1.43  augustss 	/*
    278  1.43  augustss 	 * NOTE: The Linux driver distinguishes between UPLCOM_TYPE_0
    279  1.43  augustss 	 * and UPLCOM_TYPE_1 type chips by testing other fields in the
    280  1.43  augustss 	 * device descriptor.  As far as the uplcom driver is
    281  1.43  augustss 	 * concerned, both types are identical.
    282  1.43  augustss 	 * The bcdDevice field should also distinguish these versions,
    283  1.43  augustss 	 * but who knows.
    284  1.43  augustss 	 */
    285  1.43  augustss 	if (UGETW(ddesc->bcdDevice) == 0x0300)
    286  1.43  augustss 		sc->sc_type = UPLCOM_TYPE_HX;
    287  1.43  augustss 	else
    288  1.43  augustss 		sc->sc_type = UPLCOM_TYPE_0;
    289  1.48    martin chiptype_determined:
    290  1.43  augustss 
    291  1.10    ichiro 	/* get the config descriptor */
    292  1.10    ichiro 	cdesc = usbd_get_config_descriptor(sc->sc_udev);
    293  1.10    ichiro 
    294  1.10    ichiro 	if (cdesc == NULL) {
    295  1.10    ichiro 		printf("%s: failed to get configuration descriptor\n",
    296  1.10    ichiro 			USBDEVNAME(sc->sc_dev));
    297  1.13    ichiro 		sc->sc_dying = 1;
    298  1.10    ichiro 		USB_ATTACH_ERROR_RETURN;
    299  1.10    ichiro 	}
    300  1.10    ichiro 
    301  1.13    ichiro 	/* get the (first/common) interface */
    302  1.28  augustss 	err = usbd_device2interface_handle(dev, UPLCOM_IFACE_INDEX,
    303  1.10    ichiro 							&sc->sc_iface);
    304   1.1    ichiro 	if (err) {
    305   1.1    ichiro 		printf("\n%s: failed to get interface, err=%s\n",
    306   1.1    ichiro 			devname, usbd_errstr(err));
    307  1.13    ichiro 		sc->sc_dying = 1;
    308   1.1    ichiro 		USB_ATTACH_ERROR_RETURN;
    309   1.1    ichiro 	}
    310  1.13    ichiro 
    311  1.13    ichiro 	/* Find the interrupt endpoints */
    312  1.13    ichiro 
    313  1.13    ichiro 	id = usbd_get_interface_descriptor(sc->sc_iface);
    314  1.13    ichiro 	sc->sc_iface_number = id->bInterfaceNumber;
    315  1.13    ichiro 
    316  1.13    ichiro 	for (i = 0; i < id->bNumEndpoints; i++) {
    317  1.13    ichiro 		ed = usbd_interface2endpoint_descriptor(sc->sc_iface, i);
    318  1.13    ichiro 		if (ed == NULL) {
    319  1.13    ichiro 			printf("%s: no endpoint descriptor for %d\n",
    320  1.13    ichiro 				USBDEVNAME(sc->sc_dev), i);
    321  1.13    ichiro 			sc->sc_dying = 1;
    322  1.13    ichiro 			USB_ATTACH_ERROR_RETURN;
    323  1.13    ichiro 		}
    324  1.13    ichiro 
    325  1.13    ichiro 		if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
    326  1.13    ichiro 		    UE_GET_XFERTYPE(ed->bmAttributes) == UE_INTERRUPT) {
    327  1.13    ichiro 			sc->sc_intr_number = ed->bEndpointAddress;
    328  1.13    ichiro 			sc->sc_isize = UGETW(ed->wMaxPacketSize);
    329  1.28  augustss 		}
    330  1.13    ichiro 	}
    331  1.13    ichiro 
    332  1.13    ichiro 	if (sc->sc_intr_number== -1) {
    333  1.13    ichiro 		printf("%s: Could not find interrupt in\n",
    334  1.13    ichiro 			USBDEVNAME(sc->sc_dev));
    335  1.13    ichiro 		sc->sc_dying = 1;
    336  1.13    ichiro 		USB_ATTACH_ERROR_RETURN;
    337  1.13    ichiro 	}
    338  1.13    ichiro 
    339  1.20    ichiro 	/* keep interface for interrupt */
    340  1.20    ichiro 	sc->sc_intr_iface = sc->sc_iface;
    341  1.20    ichiro 
    342  1.10    ichiro 	/*
    343  1.13    ichiro 	 * USB-RSAQ1 has two interface
    344  1.13    ichiro 	 *
    345  1.13    ichiro 	 *  USB-RSAQ1       | USB-RSAQ2
    346  1.13    ichiro  	 * -----------------+-----------------
    347  1.14    ichiro 	 * Interface 0      |Interface 0
    348  1.14    ichiro 	 *  Interrupt(0x81) | Interrupt(0x81)
    349  1.13    ichiro 	 * -----------------+ BulkIN(0x02)
    350  1.14    ichiro 	 * Interface 1	    | BulkOUT(0x83)
    351  1.28  augustss 	 *   BulkIN(0x02)   |
    352  1.13    ichiro 	 *   BulkOUT(0x83)  |
    353  1.10    ichiro 	 */
    354  1.10    ichiro 	if (cdesc->bNumInterface == 2) {
    355  1.28  augustss 		err = usbd_device2interface_handle(dev,
    356  1.13    ichiro 				UPLCOM_SECOND_IFACE_INDEX, &sc->sc_iface);
    357  1.10    ichiro 		if (err) {
    358  1.10    ichiro 			printf("\n%s: failed to get second interface, err=%s\n",
    359  1.10    ichiro 							devname, usbd_errstr(err));
    360  1.13    ichiro 			sc->sc_dying = 1;
    361  1.10    ichiro 			USB_ATTACH_ERROR_RETURN;
    362  1.10    ichiro 		}
    363  1.28  augustss 	}
    364   1.1    ichiro 
    365  1.13    ichiro 	/* Find the bulk{in,out} endpoints */
    366   1.1    ichiro 
    367  1.12    ichiro 	id = usbd_get_interface_descriptor(sc->sc_iface);
    368   1.1    ichiro 	sc->sc_iface_number = id->bInterfaceNumber;
    369   1.1    ichiro 
    370   1.1    ichiro 	for (i = 0; i < id->bNumEndpoints; i++) {
    371  1.12    ichiro 		ed = usbd_interface2endpoint_descriptor(sc->sc_iface, i);
    372   1.1    ichiro 		if (ed == NULL) {
    373   1.1    ichiro 			printf("%s: no endpoint descriptor for %d\n",
    374   1.1    ichiro 				USBDEVNAME(sc->sc_dev), i);
    375  1.13    ichiro 			sc->sc_dying = 1;
    376   1.1    ichiro 			USB_ATTACH_ERROR_RETURN;
    377   1.1    ichiro 		}
    378   1.1    ichiro 
    379   1.1    ichiro 		if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
    380   1.1    ichiro 		    UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
    381   1.1    ichiro 			uca.bulkin = ed->bEndpointAddress;
    382   1.1    ichiro 		} else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
    383   1.1    ichiro 		    UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
    384   1.1    ichiro 			uca.bulkout = ed->bEndpointAddress;
    385   1.1    ichiro 		}
    386   1.1    ichiro 	}
    387   1.1    ichiro 
    388   1.1    ichiro 	if (uca.bulkin == -1) {
    389   1.1    ichiro 		printf("%s: Could not find data bulk in\n",
    390   1.1    ichiro 			USBDEVNAME(sc->sc_dev));
    391  1.13    ichiro 		sc->sc_dying = 1;
    392   1.1    ichiro 		USB_ATTACH_ERROR_RETURN;
    393   1.1    ichiro 	}
    394   1.1    ichiro 
    395   1.1    ichiro 	if (uca.bulkout == -1) {
    396   1.1    ichiro 		printf("%s: Could not find data bulk out\n",
    397   1.1    ichiro 			USBDEVNAME(sc->sc_dev));
    398  1.13    ichiro 		sc->sc_dying = 1;
    399  1.12    ichiro 		USB_ATTACH_ERROR_RETURN;
    400  1.12    ichiro 	}
    401  1.12    ichiro 
    402  1.37    martin 	sc->sc_dtr = sc->sc_rts = -1;
    403   1.1    ichiro 	uca.portno = UCOM_UNK_PORTNO;
    404   1.1    ichiro 	/* bulkin, bulkout set above */
    405   1.1    ichiro 	uca.ibufsize = UPLCOMIBUFSIZE;
    406   1.1    ichiro 	uca.obufsize = UPLCOMOBUFSIZE;
    407   1.1    ichiro 	uca.ibufsizepad = UPLCOMIBUFSIZE;
    408   1.4    ichiro 	uca.opkthdrlen = 0;
    409   1.1    ichiro 	uca.device = dev;
    410  1.12    ichiro 	uca.iface = sc->sc_iface;
    411   1.1    ichiro 	uca.methods = &uplcom_methods;
    412   1.1    ichiro 	uca.arg = sc;
    413   1.8  augustss 	uca.info = NULL;
    414   1.1    ichiro 
    415  1.11    ichiro 	err = uplcom_reset(sc);
    416  1.11    ichiro 
    417   1.1    ichiro 	if (err) {
    418  1.11    ichiro 		printf("%s: reset failed, %s\n", USBDEVNAME(sc->sc_dev),
    419   1.1    ichiro 			usbd_errstr(err));
    420  1.13    ichiro 		sc->sc_dying = 1;
    421   1.1    ichiro 		USB_ATTACH_ERROR_RETURN;
    422   1.1    ichiro 	}
    423   1.1    ichiro 
    424   1.7  augustss 	usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, sc->sc_udev,
    425   1.7  augustss 			   USBDEV(sc->sc_dev));
    426   1.7  augustss 
    427  1.12    ichiro 	DPRINTF(("uplcom: in=0x%x out=0x%x intr=0x%x\n",
    428  1.12    ichiro 			uca.bulkin, uca.bulkout, sc->sc_intr_number ));
    429  1.39  drochner 	sc->sc_subdev = config_found_sm_loc(self, "ucombus", NULL, &uca,
    430  1.39  drochner 					    ucomprint, ucomsubmatch);
    431   1.1    ichiro 
    432   1.1    ichiro 	USB_ATTACH_SUCCESS_RETURN;
    433   1.1    ichiro }
    434   1.1    ichiro 
    435   1.1    ichiro USB_DETACH(uplcom)
    436   1.1    ichiro {
    437   1.1    ichiro 	USB_DETACH_START(uplcom, sc);
    438   1.1    ichiro 	int rv = 0;
    439   1.1    ichiro 
    440   1.1    ichiro 	DPRINTF(("uplcom_detach: sc=%p flags=%d\n", sc, flags));
    441  1.12    ichiro 
    442  1.12    ichiro         if (sc->sc_intr_pipe != NULL) {
    443  1.12    ichiro                 usbd_abort_pipe(sc->sc_intr_pipe);
    444  1.12    ichiro                 usbd_close_pipe(sc->sc_intr_pipe);
    445  1.12    ichiro 		free(sc->sc_intr_buf, M_USBDEV);
    446  1.12    ichiro                 sc->sc_intr_pipe = NULL;
    447  1.12    ichiro         }
    448  1.12    ichiro 
    449   1.1    ichiro 	sc->sc_dying = 1;
    450   1.6  augustss 	if (sc->sc_subdev != NULL) {
    451   1.1    ichiro 		rv = config_detach(sc->sc_subdev, flags);
    452   1.6  augustss 		sc->sc_subdev = NULL;
    453   1.6  augustss 	}
    454   1.7  augustss 
    455   1.7  augustss 	usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, sc->sc_udev,
    456   1.7  augustss 			   USBDEV(sc->sc_dev));
    457   1.1    ichiro 
    458   1.1    ichiro 	return (rv);
    459   1.1    ichiro }
    460   1.1    ichiro 
    461   1.1    ichiro int
    462   1.1    ichiro uplcom_activate(device_ptr_t self, enum devact act)
    463   1.1    ichiro {
    464   1.1    ichiro 	struct uplcom_softc *sc = (struct uplcom_softc *)self;
    465   1.1    ichiro 	int rv = 0;
    466   1.1    ichiro 
    467   1.1    ichiro 	switch (act) {
    468   1.1    ichiro 	case DVACT_ACTIVATE:
    469   1.1    ichiro 		return (EOPNOTSUPP);
    470   1.1    ichiro 
    471   1.1    ichiro 	case DVACT_DEACTIVATE:
    472   1.1    ichiro 		if (sc->sc_subdev != NULL)
    473   1.1    ichiro 			rv = config_deactivate(sc->sc_subdev);
    474   1.1    ichiro 		sc->sc_dying = 1;
    475   1.1    ichiro 		break;
    476   1.1    ichiro 	}
    477   1.1    ichiro 	return (rv);
    478   1.1    ichiro }
    479   1.1    ichiro 
    480   1.1    ichiro usbd_status
    481  1.11    ichiro uplcom_reset(struct uplcom_softc *sc)
    482   1.1    ichiro {
    483   1.1    ichiro         usb_device_request_t req;
    484   1.1    ichiro 	usbd_status err;
    485   1.1    ichiro 
    486  1.19    ichiro         req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
    487  1.19    ichiro         req.bRequest = UPLCOM_SET_REQUEST;
    488  1.19    ichiro         USETW(req.wValue, 0);
    489   1.1    ichiro         USETW(req.wIndex, sc->sc_iface_number);
    490  1.28  augustss         USETW(req.wLength, 0);
    491  1.28  augustss 
    492  1.28  augustss         err = usbd_do_request(sc->sc_udev, &req, 0);
    493   1.1    ichiro 	if (err)
    494   1.1    ichiro 		return (EIO);
    495   1.1    ichiro 
    496   1.1    ichiro 	return (0);
    497   1.1    ichiro }
    498   1.1    ichiro 
    499   1.1    ichiro void
    500   1.1    ichiro uplcom_set_line_state(struct uplcom_softc *sc)
    501   1.1    ichiro {
    502   1.1    ichiro 	usb_device_request_t req;
    503   1.1    ichiro 	int ls;
    504   1.1    ichiro 
    505  1.37    martin 	/* make sure we have initialized state for sc_dtr and sc_rts */
    506  1.37    martin 	if (sc->sc_dtr == -1)
    507  1.37    martin 		sc->sc_dtr = 0;
    508  1.37    martin 	if (sc->sc_rts == -1)
    509  1.37    martin 		sc->sc_rts = 0;
    510  1.37    martin 
    511  1.45    martin 	ls = (sc->sc_dtr ? UCDC_LINE_DTR : 0) |
    512  1.45    martin 		(sc->sc_rts ? UCDC_LINE_RTS : 0);
    513  1.37    martin 
    514   1.1    ichiro 	req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
    515   1.1    ichiro 	req.bRequest = UCDC_SET_CONTROL_LINE_STATE;
    516   1.1    ichiro 	USETW(req.wValue, ls);
    517   1.1    ichiro 	USETW(req.wIndex, sc->sc_iface_number);
    518   1.1    ichiro 	USETW(req.wLength, 0);
    519   1.1    ichiro 
    520   1.1    ichiro 	(void)usbd_do_request(sc->sc_udev, &req, 0);
    521   1.1    ichiro }
    522   1.1    ichiro 
    523   1.1    ichiro void
    524  1.50  christos uplcom_set(void *addr, int portno, int reg, int onoff)
    525   1.1    ichiro {
    526   1.1    ichiro 	struct uplcom_softc *sc = addr;
    527   1.1    ichiro 
    528   1.1    ichiro 	switch (reg) {
    529   1.1    ichiro 	case UCOM_SET_DTR:
    530   1.1    ichiro 		uplcom_dtr(sc, onoff);
    531   1.1    ichiro 		break;
    532   1.1    ichiro 	case UCOM_SET_RTS:
    533   1.1    ichiro 		uplcom_rts(sc, onoff);
    534   1.1    ichiro 		break;
    535   1.1    ichiro 	case UCOM_SET_BREAK:
    536   1.1    ichiro 		uplcom_break(sc, onoff);
    537   1.1    ichiro 		break;
    538   1.1    ichiro 	default:
    539   1.1    ichiro 		break;
    540   1.1    ichiro 	}
    541   1.1    ichiro }
    542   1.1    ichiro 
    543   1.1    ichiro void
    544   1.1    ichiro uplcom_dtr(struct uplcom_softc *sc, int onoff)
    545   1.1    ichiro {
    546   1.1    ichiro 
    547  1.11    ichiro 	DPRINTF(("uplcom_dtr: onoff=%d\n", onoff));
    548   1.1    ichiro 
    549  1.37    martin 	if (sc->sc_dtr != -1 && !sc->sc_dtr == !onoff)
    550   1.1    ichiro 		return;
    551  1.37    martin 
    552  1.37    martin 	sc->sc_dtr = !!onoff;
    553   1.1    ichiro 
    554   1.1    ichiro 	uplcom_set_line_state(sc);
    555   1.1    ichiro }
    556   1.1    ichiro 
    557   1.1    ichiro void
    558   1.1    ichiro uplcom_rts(struct uplcom_softc *sc, int onoff)
    559   1.1    ichiro {
    560   1.1    ichiro 	DPRINTF(("uplcom_rts: onoff=%d\n", onoff));
    561   1.1    ichiro 
    562  1.37    martin 	if (sc->sc_rts != -1 && !sc->sc_rts == !onoff)
    563   1.1    ichiro 		return;
    564  1.37    martin 
    565  1.37    martin 	sc->sc_rts = !!onoff;
    566   1.1    ichiro 
    567   1.1    ichiro 	uplcom_set_line_state(sc);
    568   1.4    ichiro }
    569   1.4    ichiro 
    570   1.4    ichiro void
    571   1.4    ichiro uplcom_break(struct uplcom_softc *sc, int onoff)
    572   1.4    ichiro {
    573   1.4    ichiro 	usb_device_request_t req;
    574   1.4    ichiro 
    575   1.4    ichiro 	DPRINTF(("uplcom_break: onoff=%d\n", onoff));
    576   1.4    ichiro 
    577   1.4    ichiro 	req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
    578   1.4    ichiro 	req.bRequest = UCDC_SEND_BREAK;
    579   1.4    ichiro 	USETW(req.wValue, onoff ? UCDC_BREAK_ON : UCDC_BREAK_OFF);
    580   1.4    ichiro 	USETW(req.wIndex, sc->sc_iface_number);
    581   1.4    ichiro 	USETW(req.wLength, 0);
    582   1.4    ichiro 
    583   1.4    ichiro 	(void)usbd_do_request(sc->sc_udev, &req, 0);
    584   1.1    ichiro }
    585   1.1    ichiro 
    586   1.1    ichiro usbd_status
    587  1.19    ichiro uplcom_set_crtscts(struct uplcom_softc *sc)
    588  1.19    ichiro {
    589  1.19    ichiro 	usb_device_request_t req;
    590  1.19    ichiro 	usbd_status err;
    591  1.19    ichiro 
    592  1.19    ichiro 	DPRINTF(("uplcom_set_crtscts: on\n"));
    593  1.19    ichiro 
    594  1.19    ichiro 	req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
    595  1.19    ichiro 	req.bRequest = UPLCOM_SET_REQUEST;
    596  1.19    ichiro 	USETW(req.wValue, 0);
    597  1.43  augustss 	if (sc->sc_type == UPLCOM_TYPE_HX)
    598  1.43  augustss 		USETW(req.wIndex, UPLCOM_SET_CRTSCTS_HX);
    599  1.43  augustss 	else
    600  1.43  augustss 		USETW(req.wIndex, UPLCOM_SET_CRTSCTS_0);
    601  1.19    ichiro 	USETW(req.wLength, 0);
    602  1.19    ichiro 
    603  1.19    ichiro 	err = usbd_do_request(sc->sc_udev, &req, 0);
    604  1.19    ichiro 	if (err) {
    605  1.19    ichiro 		DPRINTF(("uplcom_set_crtscts: failed, err=%s\n",
    606  1.19    ichiro 			usbd_errstr(err)));
    607  1.19    ichiro 		return (err);
    608  1.19    ichiro 	}
    609  1.19    ichiro 
    610  1.19    ichiro 	return (USBD_NORMAL_COMPLETION);
    611  1.19    ichiro }
    612  1.19    ichiro 
    613  1.19    ichiro usbd_status
    614   1.1    ichiro uplcom_set_line_coding(struct uplcom_softc *sc, usb_cdc_line_state_t *state)
    615   1.1    ichiro {
    616   1.1    ichiro 	usb_device_request_t req;
    617   1.1    ichiro 	usbd_status err;
    618   1.1    ichiro 
    619   1.1    ichiro 	DPRINTF(("uplcom_set_line_coding: rate=%d fmt=%d parity=%d bits=%d\n",
    620   1.1    ichiro 		UGETDW(state->dwDTERate), state->bCharFormat,
    621   1.1    ichiro 		state->bParityType, state->bDataBits));
    622   1.1    ichiro 
    623   1.1    ichiro 	if (memcmp(state, &sc->sc_line_state, UCDC_LINE_STATE_LENGTH) == 0) {
    624   1.1    ichiro 		DPRINTF(("uplcom_set_line_coding: already set\n"));
    625   1.1    ichiro 		return (USBD_NORMAL_COMPLETION);
    626   1.1    ichiro 	}
    627   1.1    ichiro 
    628   1.1    ichiro 	req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
    629   1.1    ichiro 	req.bRequest = UCDC_SET_LINE_CODING;
    630   1.1    ichiro 	USETW(req.wValue, 0);
    631   1.1    ichiro 	USETW(req.wIndex, sc->sc_iface_number);
    632   1.1    ichiro 	USETW(req.wLength, UCDC_LINE_STATE_LENGTH);
    633   1.1    ichiro 
    634   1.1    ichiro 	err = usbd_do_request(sc->sc_udev, &req, state);
    635   1.1    ichiro 	if (err) {
    636   1.1    ichiro 		DPRINTF(("uplcom_set_line_coding: failed, err=%s\n",
    637   1.1    ichiro 			usbd_errstr(err)));
    638   1.1    ichiro 		return (err);
    639   1.1    ichiro 	}
    640   1.1    ichiro 
    641   1.1    ichiro 	sc->sc_line_state = *state;
    642   1.1    ichiro 
    643   1.1    ichiro 	return (USBD_NORMAL_COMPLETION);
    644   1.1    ichiro }
    645   1.1    ichiro 
    646   1.1    ichiro int
    647  1.50  christos uplcom_param(void *addr, int portno, struct termios *t)
    648   1.1    ichiro {
    649   1.1    ichiro 	struct uplcom_softc *sc = addr;
    650   1.1    ichiro 	usbd_status err;
    651   1.1    ichiro 	usb_cdc_line_state_t ls;
    652   1.1    ichiro 
    653   1.1    ichiro 	DPRINTF(("uplcom_param: sc=%p\n", sc));
    654   1.1    ichiro 
    655   1.1    ichiro 	USETDW(ls.dwDTERate, t->c_ospeed);
    656   1.1    ichiro 	if (ISSET(t->c_cflag, CSTOPB))
    657   1.1    ichiro 		ls.bCharFormat = UCDC_STOP_BIT_2;
    658   1.1    ichiro 	else
    659   1.1    ichiro 		ls.bCharFormat = UCDC_STOP_BIT_1;
    660   1.1    ichiro 	if (ISSET(t->c_cflag, PARENB)) {
    661   1.1    ichiro 		if (ISSET(t->c_cflag, PARODD))
    662   1.1    ichiro 			ls.bParityType = UCDC_PARITY_ODD;
    663   1.1    ichiro 		else
    664   1.1    ichiro 			ls.bParityType = UCDC_PARITY_EVEN;
    665   1.1    ichiro 	} else
    666   1.1    ichiro 		ls.bParityType = UCDC_PARITY_NONE;
    667   1.1    ichiro 	switch (ISSET(t->c_cflag, CSIZE)) {
    668   1.1    ichiro 	case CS5:
    669   1.1    ichiro 		ls.bDataBits = 5;
    670   1.1    ichiro 		break;
    671   1.1    ichiro 	case CS6:
    672   1.1    ichiro 		ls.bDataBits = 6;
    673   1.1    ichiro 		break;
    674   1.1    ichiro 	case CS7:
    675   1.1    ichiro 		ls.bDataBits = 7;
    676   1.1    ichiro 		break;
    677   1.1    ichiro 	case CS8:
    678   1.1    ichiro 		ls.bDataBits = 8;
    679   1.1    ichiro 		break;
    680   1.1    ichiro 	}
    681   1.1    ichiro 
    682   1.1    ichiro 	err = uplcom_set_line_coding(sc, &ls);
    683   1.1    ichiro 	if (err) {
    684   1.1    ichiro 		DPRINTF(("uplcom_param: err=%s\n", usbd_errstr(err)));
    685   1.1    ichiro 		return (EIO);
    686   1.1    ichiro 	}
    687  1.19    ichiro 
    688  1.19    ichiro 	if (ISSET(t->c_cflag, CRTSCTS))
    689  1.19    ichiro 		uplcom_set_crtscts(sc);
    690  1.19    ichiro 
    691  1.37    martin 	if (sc->sc_rts == -1 || sc->sc_dtr == -1)
    692  1.37    martin 		uplcom_set_line_state(sc);
    693  1.37    martin 
    694  1.19    ichiro 	if (err) {
    695  1.19    ichiro 		DPRINTF(("uplcom_param: err=%s\n", usbd_errstr(err)));
    696  1.19    ichiro 		return (EIO);
    697  1.19    ichiro 	}
    698  1.19    ichiro 
    699   1.1    ichiro 	return (0);
    700  1.11    ichiro }
    701  1.11    ichiro 
    702  1.43  augustss Static usbd_status
    703  1.43  augustss uplcom_vendor_control_write(usbd_device_handle dev, u_int16_t value, u_int16_t index)
    704  1.43  augustss {
    705  1.43  augustss 	usb_device_request_t req;
    706  1.43  augustss 	usbd_status err;
    707  1.43  augustss 
    708  1.43  augustss 	req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
    709  1.43  augustss 	req.bRequest = UPLCOM_SET_REQUEST;
    710  1.43  augustss 	USETW(req.wValue, value);
    711  1.43  augustss 	USETW(req.wIndex, index);
    712  1.43  augustss 	USETW(req.wLength, 0);
    713  1.43  augustss 
    714  1.43  augustss 	err = usbd_do_request(dev, &req, NULL);
    715  1.43  augustss 
    716  1.43  augustss 	if (err) {
    717  1.43  augustss 		DPRINTF(("uplcom_open: vendor write failed, err=%s (%d)\n",
    718  1.43  augustss 			    usbd_errstr(err), err));
    719  1.43  augustss 	}
    720  1.43  augustss 
    721  1.43  augustss 	return err;
    722  1.43  augustss }
    723  1.43  augustss 
    724  1.11    ichiro int
    725  1.50  christos uplcom_open(void *addr, int portno)
    726  1.11    ichiro {
    727  1.11    ichiro 	struct uplcom_softc *sc = addr;
    728  1.43  augustss 	usbd_status err;
    729  1.28  augustss 
    730  1.11    ichiro 	if (sc->sc_dying)
    731  1.11    ichiro 		return (EIO);
    732  1.11    ichiro 
    733  1.12    ichiro 	DPRINTF(("uplcom_open: sc=%p\n", sc));
    734  1.11    ichiro 
    735  1.43  augustss 	/* Some unknown device frobbing. */
    736  1.43  augustss 	if (sc->sc_type == UPLCOM_TYPE_HX)
    737  1.43  augustss 		uplcom_vendor_control_write(sc->sc_udev, 2, 0x44);
    738  1.43  augustss 	else
    739  1.43  augustss 		uplcom_vendor_control_write(sc->sc_udev, 2, 0x24);
    740  1.43  augustss 
    741  1.12    ichiro 	if (sc->sc_intr_number != -1 && sc->sc_intr_pipe == NULL) {
    742  1.12    ichiro 		sc->sc_intr_buf = malloc(sc->sc_isize, M_USBDEV, M_WAITOK);
    743  1.20    ichiro 		err = usbd_open_pipe_intr(sc->sc_intr_iface, sc->sc_intr_number,
    744  1.12    ichiro 			USBD_SHORT_XFER_OK, &sc->sc_intr_pipe, sc,
    745  1.12    ichiro 			sc->sc_intr_buf, sc->sc_isize,
    746  1.12    ichiro 			uplcom_intr, USBD_DEFAULT_INTERVAL);
    747  1.12    ichiro 		if (err) {
    748  1.12    ichiro 			DPRINTF(("%s: cannot open interrupt pipe (addr %d)\n",
    749  1.12    ichiro 				USBDEVNAME(sc->sc_dev), sc->sc_intr_number));
    750  1.12    ichiro 					return (EIO);
    751  1.12    ichiro 		}
    752  1.12    ichiro 	}
    753  1.11    ichiro 
    754  1.11    ichiro 	return (0);
    755  1.11    ichiro }
    756  1.11    ichiro 
    757  1.11    ichiro void
    758  1.50  christos uplcom_close(void *addr, int portno)
    759  1.11    ichiro {
    760  1.11    ichiro 	struct uplcom_softc *sc = addr;
    761  1.12    ichiro 	int err;
    762  1.12    ichiro 
    763  1.12    ichiro 	if (sc->sc_dying)
    764  1.12    ichiro 		return;
    765  1.12    ichiro 
    766  1.12    ichiro 	DPRINTF(("uplcom_close: close\n"));
    767  1.12    ichiro 
    768  1.12    ichiro 	if (sc->sc_intr_pipe != NULL) {
    769  1.12    ichiro 		err = usbd_abort_pipe(sc->sc_intr_pipe);
    770  1.12    ichiro 		if (err)
    771  1.12    ichiro 			printf("%s: abort interrupt pipe failed: %s\n",
    772  1.12    ichiro 				USBDEVNAME(sc->sc_dev), usbd_errstr(err));
    773  1.12    ichiro 		err = usbd_close_pipe(sc->sc_intr_pipe);
    774  1.12    ichiro 		if (err)
    775  1.12    ichiro 			printf("%s: close interrupt pipe failed: %s\n",
    776  1.12    ichiro 				USBDEVNAME(sc->sc_dev), usbd_errstr(err));
    777  1.12    ichiro 		free(sc->sc_intr_buf, M_USBDEV);
    778  1.12    ichiro 		sc->sc_intr_pipe = NULL;
    779  1.12    ichiro 	}
    780  1.12    ichiro }
    781  1.12    ichiro 
    782  1.12    ichiro void
    783  1.50  christos uplcom_intr(usbd_xfer_handle xfer, usbd_private_handle priv,
    784  1.49  christos     usbd_status status)
    785  1.12    ichiro {
    786  1.12    ichiro 	struct uplcom_softc *sc = priv;
    787  1.12    ichiro 	u_char *buf = sc->sc_intr_buf;
    788  1.12    ichiro 	u_char pstatus;
    789  1.11    ichiro 
    790  1.11    ichiro 	if (sc->sc_dying)
    791  1.11    ichiro 		return;
    792  1.11    ichiro 
    793  1.12    ichiro 	if (status != USBD_NORMAL_COMPLETION) {
    794  1.12    ichiro 		if (status == USBD_NOT_STARTED || status == USBD_CANCELLED)
    795  1.12    ichiro 			return;
    796  1.12    ichiro 
    797  1.12    ichiro 		DPRINTF(("%s: abnormal status: %s\n", USBDEVNAME(sc->sc_dev),
    798  1.12    ichiro 			usbd_errstr(status)));
    799  1.12    ichiro 		usbd_clear_endpoint_stall_async(sc->sc_intr_pipe);
    800  1.12    ichiro 		return;
    801  1.12    ichiro 	}
    802  1.12    ichiro 
    803  1.12    ichiro 	DPRINTF(("%s: uplcom status = %02x\n", USBDEVNAME(sc->sc_dev), buf[8]));
    804  1.12    ichiro 
    805  1.15  augustss 	sc->sc_lsr = sc->sc_msr = 0;
    806  1.15  augustss 	pstatus = buf[8];
    807  1.15  augustss 	if (ISSET(pstatus, RSAQ_STATUS_DSR))
    808  1.15  augustss 		sc->sc_msr |= UMSR_DSR;
    809  1.15  augustss 	if (ISSET(pstatus, RSAQ_STATUS_DCD))
    810  1.15  augustss 		sc->sc_msr |= UMSR_DCD;
    811  1.15  augustss 	ucom_status_change((struct ucom_softc *) sc->sc_subdev);
    812  1.12    ichiro }
    813  1.12    ichiro 
    814  1.12    ichiro void
    815  1.50  christos uplcom_get_status(void *addr, int portno, u_char *lsr, u_char *msr)
    816  1.12    ichiro {
    817  1.12    ichiro 	struct uplcom_softc *sc = addr;
    818  1.12    ichiro 
    819  1.12    ichiro 	DPRINTF(("uplcom_get_status:\n"));
    820  1.12    ichiro 
    821  1.12    ichiro 	if (lsr != NULL)
    822  1.12    ichiro 		*lsr = sc->sc_lsr;
    823  1.12    ichiro 	if (msr != NULL)
    824  1.12    ichiro 		*msr = sc->sc_msr;
    825  1.12    ichiro }
    826  1.12    ichiro 
    827  1.12    ichiro #if TODO
    828  1.12    ichiro int
    829  1.53  christos uplcom_ioctl(void *addr, int portno, u_long cmd, void *data, int flag,
    830  1.24  augustss 	     usb_proc_ptr p)
    831  1.12    ichiro {
    832  1.12    ichiro 	struct uplcom_softc *sc = addr;
    833  1.12    ichiro 	int error = 0;
    834  1.12    ichiro 
    835  1.12    ichiro 	if (sc->sc_dying)
    836  1.12    ichiro 		return (EIO);
    837  1.12    ichiro 
    838  1.12    ichiro 	DPRINTF(("uplcom_ioctl: cmd=0x%08lx\n", cmd));
    839  1.12    ichiro 
    840  1.12    ichiro 	switch (cmd) {
    841  1.12    ichiro 	case TIOCNOTTY:
    842  1.12    ichiro 	case TIOCMGET:
    843  1.12    ichiro 	case TIOCMSET:
    844  1.12    ichiro 	case USB_GET_CM_OVER_DATA:
    845  1.12    ichiro 	case USB_SET_CM_OVER_DATA:
    846  1.12    ichiro 		break;
    847  1.12    ichiro 
    848  1.12    ichiro 	default:
    849  1.12    ichiro 		DPRINTF(("uplcom_ioctl: unknown\n"));
    850  1.12    ichiro 		error = ENOTTY;
    851  1.12    ichiro 		break;
    852  1.11    ichiro 	}
    853  1.11    ichiro 
    854  1.12    ichiro 	return (error);
    855   1.1    ichiro }
    856  1.12    ichiro #endif
    857