Home | History | Annotate | Line # | Download | only in usb
ubsa.c revision 1.30.16.4
      1  1.30.16.4     skrll /*	$NetBSD: ubsa.c,v 1.30.16.4 2015/03/21 11:33:37 skrll Exp $	*/
      2        1.1  augustss /*-
      3        1.1  augustss  * Copyright (c) 2002, Alexander Kabaev <kan.FreeBSD.org>.
      4        1.1  augustss  * All rights reserved.
      5        1.1  augustss  *
      6        1.1  augustss  * Redistribution and use in source and binary forms, with or without
      7        1.1  augustss  * modification, are permitted provided that the following conditions
      8        1.1  augustss  * are met:
      9        1.1  augustss  * 1. Redistributions of source code must retain the above copyright
     10        1.1  augustss  *    notice, this list of conditions and the following disclaimer.
     11        1.1  augustss  * 2. Redistributions in binary form must reproduce the above copyright
     12        1.1  augustss  *    notice, this list of conditions and the following disclaimer in the
     13        1.1  augustss  *    documentation and/or other materials provided with the distribution.
     14        1.1  augustss  *
     15        1.1  augustss  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     16        1.1  augustss  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     17        1.1  augustss  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     18        1.1  augustss  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     19        1.1  augustss  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     20        1.1  augustss  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     21        1.1  augustss  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     22        1.1  augustss  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     23        1.1  augustss  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     24        1.1  augustss  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     25        1.1  augustss  * SUCH DAMAGE.
     26        1.1  augustss  */
     27        1.1  augustss /*
     28        1.1  augustss  * Copyright (c) 2001 The NetBSD Foundation, Inc.
     29        1.1  augustss  * All rights reserved.
     30        1.1  augustss  *
     31        1.1  augustss  * This code is derived from software contributed to The NetBSD Foundation
     32        1.1  augustss  * by Ichiro FUKUHARA (ichiro (at) ichiro.org).
     33        1.1  augustss  *
     34        1.1  augustss  * Redistribution and use in source and binary forms, with or without
     35        1.1  augustss  * modification, are permitted provided that the following conditions
     36        1.1  augustss  * are met:
     37        1.1  augustss  * 1. Redistributions of source code must retain the above copyright
     38        1.1  augustss  *    notice, this list of conditions and the following disclaimer.
     39        1.1  augustss  * 2. Redistributions in binary form must reproduce the above copyright
     40        1.1  augustss  *    notice, this list of conditions and the following disclaimer in the
     41        1.1  augustss  *    documentation and/or other materials provided with the distribution.
     42        1.1  augustss  *
     43        1.1  augustss  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     44        1.1  augustss  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     45        1.1  augustss  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     46        1.1  augustss  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     47        1.1  augustss  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     48        1.1  augustss  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     49        1.1  augustss  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     50        1.1  augustss  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     51        1.1  augustss  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     52        1.1  augustss  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     53        1.1  augustss  * POSSIBILITY OF SUCH DAMAGE.
     54        1.1  augustss  */
     55        1.1  augustss 
     56        1.1  augustss #include <sys/cdefs.h>
     57  1.30.16.4     skrll __KERNEL_RCSID(0, "$NetBSD: ubsa.c,v 1.30.16.4 2015/03/21 11:33:37 skrll Exp $");
     58        1.1  augustss 
     59        1.1  augustss #include <sys/param.h>
     60        1.1  augustss #include <sys/systm.h>
     61        1.1  augustss #include <sys/kernel.h>
     62  1.30.16.1     skrll #include <sys/kmem.h>
     63        1.1  augustss #include <sys/ioccom.h>
     64        1.1  augustss #include <sys/fcntl.h>
     65        1.1  augustss #include <sys/conf.h>
     66        1.1  augustss #include <sys/tty.h>
     67        1.1  augustss #include <sys/file.h>
     68        1.1  augustss #include <sys/select.h>
     69        1.1  augustss #include <sys/proc.h>
     70        1.4      fvdl #include <sys/device.h>
     71        1.1  augustss #include <sys/poll.h>
     72        1.1  augustss #include <sys/sysctl.h>
     73        1.1  augustss 
     74        1.1  augustss #include <dev/usb/usb.h>
     75        1.1  augustss #include <dev/usb/usbcdc.h>
     76        1.1  augustss 
     77        1.1  augustss #include <dev/usb/usbdi.h>
     78        1.1  augustss #include <dev/usb/usbdi_util.h>
     79        1.1  augustss #include <dev/usb/usbdevs.h>
     80        1.1  augustss #include <dev/usb/usb_quirks.h>
     81        1.1  augustss 
     82        1.1  augustss #include <dev/usb/ucomvar.h>
     83       1.20    ichiro #include <dev/usb/ubsavar.h>
     84        1.1  augustss 
     85        1.1  augustss #ifdef UBSA_DEBUG
     86       1.27     rmind int		ubsadebug = 0;
     87        1.1  augustss 
     88        1.1  augustss #define	DPRINTFN(n, x)	do { \
     89        1.1  augustss 				if (ubsadebug > (n)) \
     90       1.26    dyoung 					printf x; \
     91        1.1  augustss 			} while (0)
     92        1.1  augustss #else
     93        1.1  augustss #define	DPRINTFN(n, x)
     94        1.1  augustss #endif
     95        1.1  augustss #define	DPRINTF(x) DPRINTFN(0, x)
     96        1.1  augustss 
     97        1.1  augustss struct	ucom_methods ubsa_methods = {
     98  1.30.16.2     skrll 	.ucom_get_status = ubsa_get_status,
     99  1.30.16.2     skrll 	.ucom_set = ubsa_set,
    100  1.30.16.2     skrll 	.ucom_param = ubsa_param,
    101  1.30.16.2     skrll 	.ucom_ioctl = NULL,
    102  1.30.16.2     skrll 	.ucom_open = ubsa_open,
    103  1.30.16.2     skrll 	.ucom_close = ubsa_close,
    104  1.30.16.2     skrll 	.ucom_read = NULL,
    105  1.30.16.2     skrll 	.ucom_write = NULL
    106        1.1  augustss };
    107        1.1  augustss 
    108        1.1  augustss Static const struct usb_devno ubsa_devs[] = {
    109        1.1  augustss 	/* BELKIN F5U103 */
    110        1.1  augustss 	{ USB_VENDOR_BELKIN, USB_PRODUCT_BELKIN_F5U103 },
    111        1.1  augustss 	/* BELKIN F5U120 */
    112        1.1  augustss 	{ USB_VENDOR_BELKIN, USB_PRODUCT_BELKIN_F5U120 },
    113        1.1  augustss 	/* GoHubs GO-COM232 */
    114        1.1  augustss 	{ USB_VENDOR_ETEK, USB_PRODUCT_ETEK_1COM },
    115        1.1  augustss 	/* GoHubs GO-COM232 */
    116        1.1  augustss 	{ USB_VENDOR_GOHUBS, USB_PRODUCT_GOHUBS_GOCOM232 },
    117        1.1  augustss 	/* Peracom */
    118        1.1  augustss 	{ USB_VENDOR_PERACOM, USB_PRODUCT_PERACOM_SERIAL1 },
    119       1.17   mlelstv 	/* Option N.V. */
    120       1.17   mlelstv 	{ USB_VENDOR_OPTIONNV, USB_PRODUCT_OPTIONNV_MC3G },
    121       1.17   mlelstv 	{ USB_VENDOR_OPTIONNV, USB_PRODUCT_OPTIONNV_QUADUMTS2 },
    122       1.17   mlelstv 	{ USB_VENDOR_OPTIONNV, USB_PRODUCT_OPTIONNV_QUADUMTS },
    123       1.18      salo 	/* AnyDATA ADU-E100H */
    124       1.18      salo 	{ USB_VENDOR_ANYDATA, USB_PRODUCT_ANYDATA_ADU_E100H },
    125        1.1  augustss };
    126        1.1  augustss #define ubsa_lookup(v, p) usb_lookup(ubsa_devs, v, p)
    127        1.1  augustss 
    128       1.23      cube int ubsa_match(device_t, cfdata_t, void *);
    129       1.21    dyoung void ubsa_attach(device_t, device_t, void *);
    130       1.21    dyoung void ubsa_childdet(device_t, device_t);
    131       1.21    dyoung int ubsa_detach(device_t, int);
    132       1.21    dyoung int ubsa_activate(device_t, enum devact);
    133       1.21    dyoung 
    134       1.21    dyoung extern struct cfdriver ubsa_cd;
    135       1.21    dyoung 
    136       1.23      cube CFATTACH_DECL2_NEW(ubsa, sizeof(struct ubsa_softc),
    137       1.21    dyoung     ubsa_match, ubsa_attach, ubsa_detach, ubsa_activate, NULL, ubsa_childdet);
    138        1.1  augustss 
    139       1.29  jakllsch int
    140       1.26    dyoung ubsa_match(device_t parent, cfdata_t match, void *aux)
    141        1.1  augustss {
    142       1.26    dyoung 	struct usb_attach_arg *uaa = aux;
    143        1.1  augustss 
    144  1.30.16.4     skrll 	return (ubsa_lookup(uaa->uaa_vendor, uaa->uaa_product) != NULL ?
    145        1.1  augustss 		UMATCH_VENDOR_PRODUCT : UMATCH_NONE);
    146        1.1  augustss }
    147        1.1  augustss 
    148       1.29  jakllsch void
    149       1.26    dyoung ubsa_attach(device_t parent, device_t self, void *aux)
    150        1.1  augustss {
    151       1.26    dyoung 	struct ubsa_softc *sc = device_private(self);
    152       1.26    dyoung 	struct usb_attach_arg *uaa = aux;
    153  1.30.16.4     skrll 	struct usbd_device * dev = uaa->uaa_device;
    154        1.1  augustss 	usb_config_descriptor_t *cdesc;
    155        1.1  augustss 	usb_interface_descriptor_t *id;
    156        1.1  augustss 	usb_endpoint_descriptor_t *ed;
    157       1.12  augustss 	char *devinfop;
    158        1.1  augustss 	usbd_status err;
    159        1.1  augustss 	struct ucom_attach_args uca;
    160        1.1  augustss 	int i;
    161        1.1  augustss 
    162       1.23      cube 	sc->sc_dev = self;
    163       1.24    plunky 
    164       1.24    plunky 	aprint_naive("\n");
    165       1.24    plunky 	aprint_normal("\n");
    166       1.24    plunky 
    167       1.12  augustss 	devinfop = usbd_devinfo_alloc(dev, 0);
    168       1.23      cube 	aprint_normal_dev(self, "%s\n", devinfop);
    169       1.12  augustss 	usbd_devinfo_free(devinfop);
    170        1.1  augustss 
    171        1.1  augustss         sc->sc_udev = dev;
    172       1.20    ichiro 	sc->sc_config_index = UBSA_DEFAULT_CONFIG_INDEX;
    173       1.20    ichiro 	sc->sc_numif = 1; /* default device has one interface */
    174        1.1  augustss 
    175        1.1  augustss 	/*
    176        1.1  augustss 	 * initialize rts, dtr variables to something
    177        1.3  augustss 	 * different from boolean 0, 1
    178        1.1  augustss 	 */
    179        1.1  augustss 	sc->sc_dtr = -1;
    180        1.1  augustss 	sc->sc_rts = -1;
    181        1.1  augustss 
    182       1.17   mlelstv 	/*
    183       1.17   mlelstv 	 * Quad UMTS cards use different requests to
    184       1.17   mlelstv 	 * control com settings and only some.
    185       1.17   mlelstv 	 */
    186       1.17   mlelstv 	sc->sc_quadumts = 0;
    187  1.30.16.4     skrll 	if (uaa->uaa_vendor == USB_VENDOR_OPTIONNV) {
    188  1.30.16.4     skrll 		switch (uaa->uaa_product) {
    189       1.17   mlelstv 		case USB_PRODUCT_OPTIONNV_QUADUMTS:
    190       1.17   mlelstv 		case USB_PRODUCT_OPTIONNV_QUADUMTS2:
    191       1.17   mlelstv 			sc->sc_quadumts = 1;
    192       1.17   mlelstv 			break;
    193       1.17   mlelstv 		}
    194       1.17   mlelstv 	}
    195       1.17   mlelstv 
    196        1.1  augustss 	DPRINTF(("ubsa attach: sc = %p\n", sc));
    197        1.1  augustss 
    198        1.1  augustss 	/* Move the device into the configured state. */
    199       1.20    ichiro 	err = usbd_set_config_index(dev, sc->sc_config_index, 1);
    200        1.1  augustss 	if (err) {
    201       1.23      cube 		aprint_error_dev(self,
    202       1.23      cube 		    "failed to set configuration: %s\n",
    203       1.23      cube 		    usbd_errstr(err));
    204        1.1  augustss 		sc->sc_dying = 1;
    205        1.1  augustss 		goto error;
    206        1.1  augustss 	}
    207        1.1  augustss 
    208        1.1  augustss 	/* get the config descriptor */
    209        1.1  augustss 	cdesc = usbd_get_config_descriptor(sc->sc_udev);
    210        1.1  augustss 
    211        1.1  augustss 	if (cdesc == NULL) {
    212       1.23      cube 		aprint_error_dev(self,
    213       1.23      cube 		    "failed to get configuration descriptor\n");
    214        1.1  augustss 		sc->sc_dying = 1;
    215        1.1  augustss 		goto error;
    216        1.1  augustss 	}
    217        1.1  augustss 
    218       1.20    ichiro 	sc->sc_intr_number = -1;
    219       1.20    ichiro 	sc->sc_intr_pipe = NULL;
    220       1.20    ichiro 
    221       1.20    ichiro 	/* get the interfaces */
    222       1.20    ichiro 	err = usbd_device2interface_handle(dev, UBSA_IFACE_INDEX_OFFSET,
    223       1.20    ichiro 			 &sc->sc_iface[0]);
    224        1.1  augustss 	if (err) {
    225       1.20    ichiro 		/* can not get main interface */
    226        1.1  augustss 		sc->sc_dying = 1;
    227        1.1  augustss 		goto error;
    228        1.1  augustss 	}
    229        1.1  augustss 
    230        1.1  augustss 	/* Find the endpoints */
    231       1.20    ichiro 	id = usbd_get_interface_descriptor(sc->sc_iface[0]);
    232       1.20    ichiro 	sc->sc_iface_number[0] = id->bInterfaceNumber;
    233        1.1  augustss 
    234       1.20    ichiro 	/* initialize endpoints */
    235       1.20    ichiro 	uca.bulkin = uca.bulkout = -1;
    236        1.1  augustss 
    237        1.1  augustss 	for (i = 0; i < id->bNumEndpoints; i++) {
    238       1.20    ichiro 		ed = usbd_interface2endpoint_descriptor(sc->sc_iface[0], i);
    239        1.1  augustss 		if (ed == NULL) {
    240       1.23      cube 			aprint_error_dev(self,
    241       1.23      cube 			     "no endpoint descriptor for %d\n", i);
    242       1.20    ichiro 			break;
    243        1.1  augustss 		}
    244        1.1  augustss 
    245        1.1  augustss 		if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
    246        1.1  augustss 		    UE_GET_XFERTYPE(ed->bmAttributes) == UE_INTERRUPT) {
    247        1.1  augustss 			sc->sc_intr_number = ed->bEndpointAddress;
    248        1.1  augustss 			sc->sc_isize = UGETW(ed->wMaxPacketSize);
    249        1.1  augustss 		} else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
    250        1.1  augustss 		    UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
    251        1.1  augustss 			uca.bulkin = ed->bEndpointAddress;
    252        1.1  augustss 			uca.ibufsize = UGETW(ed->wMaxPacketSize);
    253        1.1  augustss 		} else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
    254        1.1  augustss 		    UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
    255        1.1  augustss 			uca.bulkout = ed->bEndpointAddress;
    256        1.1  augustss 			uca.obufsize = UGETW(ed->wMaxPacketSize);
    257        1.1  augustss 		}
    258       1.20    ichiro 	} /* end of Endpoint loop */
    259        1.1  augustss 
    260        1.1  augustss 	if (sc->sc_intr_number == -1) {
    261       1.23      cube 		aprint_error_dev(self, "Could not find interrupt in\n");
    262        1.1  augustss 		sc->sc_dying = 1;
    263        1.1  augustss 		goto error;
    264        1.1  augustss 	}
    265        1.1  augustss 
    266        1.1  augustss 	if (uca.bulkin == -1) {
    267       1.23      cube 		aprint_error_dev(self, "Could not find data bulk in\n");
    268        1.1  augustss 		sc->sc_dying = 1;
    269        1.1  augustss 		goto error;
    270        1.1  augustss 	}
    271        1.1  augustss 
    272        1.1  augustss 	if (uca.bulkout == -1) {
    273       1.23      cube 		aprint_error_dev(self, "Could not find data bulk out\n");
    274        1.1  augustss 		sc->sc_dying = 1;
    275        1.1  augustss 		goto error;
    276        1.1  augustss 	}
    277        1.1  augustss 
    278       1.20    ichiro 	uca.portno = 0;
    279        1.1  augustss 	/* bulkin, bulkout set above */
    280        1.1  augustss 	uca.ibufsizepad = uca.ibufsize;
    281        1.1  augustss 	uca.opkthdrlen = 0;
    282        1.1  augustss 	uca.device = dev;
    283       1.20    ichiro 	uca.iface = sc->sc_iface[0];
    284        1.1  augustss 	uca.methods = &ubsa_methods;
    285        1.1  augustss 	uca.arg = sc;
    286        1.1  augustss 	uca.info = NULL;
    287       1.20    ichiro 	DPRINTF(("ubsa: int#=%d, in = 0x%x, out = 0x%x, intr = 0x%x\n",
    288       1.20    ichiro     		i, uca.bulkin, uca.bulkout, sc->sc_intr_number));
    289       1.20    ichiro 	sc->sc_subdevs[0] = config_found_sm_loc(self, "ucombus", NULL, &uca,
    290       1.20    ichiro 				    ucomprint, ucomsubmatch);
    291        1.1  augustss 
    292        1.1  augustss 	usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, sc->sc_udev,
    293       1.26    dyoung 			   sc->sc_dev);
    294        1.1  augustss 
    295       1.26    dyoung 	return;
    296        1.1  augustss 
    297        1.1  augustss error:
    298       1.26    dyoung 	return;
    299        1.1  augustss }
    300        1.1  augustss 
    301       1.21    dyoung 
    302       1.21    dyoung void
    303       1.21    dyoung ubsa_childdet(device_t self, device_t child)
    304       1.21    dyoung {
    305       1.21    dyoung 	int i;
    306       1.21    dyoung 	struct ubsa_softc *sc = device_private(self);
    307       1.21    dyoung 
    308       1.21    dyoung 	for (i = 0; i < sc->sc_numif; i++) {
    309       1.21    dyoung 		if (sc->sc_subdevs[i] == child)
    310       1.21    dyoung 			break;
    311       1.21    dyoung 	}
    312       1.21    dyoung 	KASSERT(i < sc->sc_numif);
    313       1.21    dyoung 		sc->sc_subdevs[i] = NULL;
    314       1.21    dyoung }
    315       1.21    dyoung 
    316       1.29  jakllsch int
    317       1.26    dyoung ubsa_detach(device_t self, int flags)
    318        1.1  augustss {
    319       1.26    dyoung 	struct ubsa_softc *sc = device_private(self);
    320       1.20    ichiro 	int i;
    321        1.5      fvdl 	int rv = 0;
    322        1.1  augustss 
    323        1.1  augustss 
    324        1.1  augustss 	DPRINTF(("ubsa_detach: sc = %p\n", sc));
    325        1.1  augustss 
    326        1.1  augustss 	if (sc->sc_intr_pipe != NULL) {
    327        1.1  augustss 		usbd_abort_pipe(sc->sc_intr_pipe);
    328        1.1  augustss 		usbd_close_pipe(sc->sc_intr_pipe);
    329  1.30.16.1     skrll 		kmem_free(sc->sc_intr_buf, sc->sc_isize);
    330        1.1  augustss 		sc->sc_intr_pipe = NULL;
    331        1.1  augustss 	}
    332        1.1  augustss 
    333        1.1  augustss 	sc->sc_dying = 1;
    334       1.20    ichiro 	for (i = 0; i < sc->sc_numif; i++) {
    335       1.21    dyoung 		if (sc->sc_subdevs[i] != NULL)
    336       1.20    ichiro 			rv |= config_detach(sc->sc_subdevs[i], flags);
    337        1.1  augustss 	}
    338        1.1  augustss 
    339        1.1  augustss 	usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, sc->sc_udev,
    340       1.26    dyoung 			   sc->sc_dev);
    341        1.1  augustss 
    342        1.1  augustss 	return (rv);
    343        1.1  augustss }
    344        1.1  augustss 
    345        1.2     pooka int
    346       1.26    dyoung ubsa_activate(device_t self, enum devact act)
    347        1.1  augustss {
    348       1.21    dyoung 	struct ubsa_softc *sc = device_private(self);
    349        1.1  augustss 
    350        1.1  augustss 	switch (act) {
    351        1.1  augustss 	case DVACT_DEACTIVATE:
    352        1.1  augustss 		sc->sc_dying = 1;
    353       1.25    dyoung 		return 0;
    354       1.25    dyoung 	default:
    355       1.25    dyoung 		return EOPNOTSUPP;
    356        1.1  augustss 	}
    357        1.1  augustss }
    358