Home | History | Annotate | Line # | Download | only in usb
ugensa.c revision 1.38
      1 /*	$NetBSD: ugensa.c,v 1.38 2019/05/05 03:17:54 mrg Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 2004, 2005 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Roland C. Dowdeswell <elric (at) netbsd.org>.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  *
     19  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  * POSSIBILITY OF SUCH DAMAGE.
     30  */
     31 
     32 #include <sys/cdefs.h>
     33 __KERNEL_RCSID(0, "$NetBSD: ugensa.c,v 1.38 2019/05/05 03:17:54 mrg Exp $");
     34 
     35 #ifdef _KERNEL_OPT
     36 #include "opt_usb.h"
     37 #endif
     38 
     39 #include <sys/param.h>
     40 #include <sys/systm.h>
     41 #include <sys/kernel.h>
     42 #include <sys/device.h>
     43 #include <sys/conf.h>
     44 #include <sys/tty.h>
     45 
     46 #include <dev/usb/usb.h>
     47 
     48 #include <dev/usb/usbdi.h>
     49 #include <dev/usb/usbdi_util.h>
     50 #include <dev/usb/usbdevs.h>
     51 
     52 #include <dev/usb/ucomvar.h>
     53 
     54 #ifdef UGENSA_DEBUG
     55 #define DPRINTF(x)	if (ugensadebug) printf x
     56 #define DPRINTFN(n,x)	if (ugensadebug>(n)) printf x
     57 int ugensadebug = 0;
     58 #else
     59 #define DPRINTF(x)
     60 #define DPRINTFN(n,x)
     61 #endif
     62 
     63 struct ugensa_softc {
     64 	device_t		sc_dev;		/* base device */
     65 	struct usbd_device *	sc_udev;	/* device */
     66 	struct usbd_interface *	sc_iface;	/* interface */
     67 
     68 	device_t		sc_subdev;
     69 	int			sc_numcon;
     70 
     71 	u_char			sc_dying;
     72 };
     73 
     74 struct ucom_methods ugensa_methods = {
     75 	.ucom_get_status = NULL,
     76 };
     77 
     78 #define UGENSA_CONFIG_INDEX	0
     79 #define UGENSA_IFACE_INDEX	0
     80 #define UGENSA_BUFSIZE		1024
     81 
     82 struct ugensa_type {
     83 	struct usb_devno	ugensa_dev;
     84 	uint16_t		ugensa_flags;
     85 #define UNTESTED		0x0001
     86 };
     87 
     88 static const struct ugensa_type ugensa_devs[] = {
     89 	{{ USB_VENDOR_AIRPRIME, USB_PRODUCT_AIRPRIME_PC5220 }, 0 },
     90 	{{ USB_VENDOR_DELL, USB_PRODUCT_DELL_HSDPA }, 0 },
     91 	{{ USB_VENDOR_NOVATEL, USB_PRODUCT_NOVATEL_FLEXPACKGPS }, 0 },
     92 	{{ USB_VENDOR_QUALCOMM_K, USB_PRODUCT_QUALCOMM_K_CDMA_MSM_K }, 0 },
     93 	{{ USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_USB305 }, 0 },
     94 	{{ USB_VENDOR_ZTE, USB_PRODUCT_ZTE_AC8700 }, 0 },
     95 
     96 	/*
     97 	 * The following devices are untested, but they are purported to
     98 	 * to work in similar device drivers on other OSes:
     99 	 */
    100 
    101 	{{ USB_VENDOR_ANYDATA, USB_PRODUCT_ANYDATA_ADU_500A }, UNTESTED },
    102 	{{ USB_VENDOR_NOVATEL2, USB_PRODUCT_NOVATEL2_EXPRESSCARD }, UNTESTED },
    103 	{{ USB_VENDOR_LG, USB_PRODUCT_LG_MSM_HSDPA }, UNTESTED },
    104 	{{ USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_AIRCARD875 }, UNTESTED },
    105 	{{ USB_VENDOR_SIERRA, USB_PRODUCT_SIERRA_EM5625 }, UNTESTED },
    106 };
    107 #define ugensa_lookup(v, p) \
    108 	((const struct ugensa_type *)usb_lookup(ugensa_devs, v, p))
    109 
    110 int ugensa_match(device_t, cfdata_t, void *);
    111 void ugensa_attach(device_t, device_t, void *);
    112 void ugensa_childdet(device_t, device_t);
    113 int ugensa_detach(device_t, int);
    114 int ugensa_activate(device_t, enum devact);
    115 
    116 CFATTACH_DECL2_NEW(ugensa, sizeof(struct ugensa_softc), ugensa_match,
    117     ugensa_attach, ugensa_detach, ugensa_activate, NULL, ugensa_childdet);
    118 
    119 int
    120 ugensa_match(device_t parent, cfdata_t match, void *aux)
    121 {
    122 	struct usb_attach_arg *uaa = aux;
    123 
    124 	DPRINTFN(20,("ugensa: vendor=0x%x, product=0x%x\n",
    125 		     uaa->uaa_vendor, uaa->uaa_product));
    126 
    127 	return ugensa_lookup(uaa->uaa_vendor, uaa->uaa_product) != NULL ?
    128 		UMATCH_VENDOR_PRODUCT : UMATCH_NONE;
    129 }
    130 
    131 void
    132 ugensa_attach(device_t parent, device_t self, void *aux)
    133 {
    134 	struct ugensa_softc *sc = device_private(self);
    135 	struct usb_attach_arg *uaa = aux;
    136 	struct usbd_device *dev = uaa->uaa_device;
    137 	struct usbd_interface *iface;
    138 	usb_interface_descriptor_t *id;
    139 	usb_endpoint_descriptor_t *ed;
    140 	char *devinfop;
    141 	const char *devname = device_xname(self);
    142 	usbd_status err;
    143 	struct ucom_attach_args ucaa;
    144 	int i;
    145 
    146 	DPRINTFN(10,("\nugensa_attach: sc=%p\n", sc));
    147 
    148 	sc->sc_dev = self;
    149 
    150 	aprint_naive("\n");
    151 	aprint_normal("\n");
    152 
    153 	devinfop = usbd_devinfo_alloc(dev, 0);
    154 	aprint_normal_dev(self, "%s\n", devinfop);
    155 	usbd_devinfo_free(devinfop);
    156 
    157 	/* Move the device into the configured state. */
    158 	err = usbd_set_config_index(dev, UGENSA_CONFIG_INDEX, 1);
    159 	if (err) {
    160 		aprint_error("\n%s: failed to set configuration, err=%s\n",
    161 		       devname, usbd_errstr(err));
    162 		goto bad;
    163 	}
    164 
    165 	err = usbd_device2interface_handle(dev, UGENSA_IFACE_INDEX, &iface);
    166 	if (err) {
    167 		aprint_error("\n%s: failed to get interface, err=%s\n",
    168 		       devname, usbd_errstr(err));
    169 		goto bad;
    170 	}
    171 
    172 	if (ugensa_lookup(uaa->uaa_vendor, uaa->uaa_product)->ugensa_flags & UNTESTED)
    173 		aprint_normal_dev(self, "WARNING: This device is marked as "
    174 		    "untested. Please submit a report via send-pr(1).\n");
    175 
    176 	id = usbd_get_interface_descriptor(iface);
    177 
    178 	sc->sc_udev = dev;
    179 	sc->sc_iface = iface;
    180 
    181 	ucaa.ucaa_info = "Generic Serial Device";
    182 	ucaa.ucaa_ibufsize = UGENSA_BUFSIZE;
    183 	ucaa.ucaa_obufsize = UGENSA_BUFSIZE;
    184 	ucaa.ucaa_ibufsizepad = UGENSA_BUFSIZE;
    185 	ucaa.ucaa_portno = UCOM_UNK_PORTNO;
    186 	ucaa.ucaa_opkthdrlen = 0;
    187 	ucaa.ucaa_device = dev;
    188 	ucaa.ucaa_iface = iface;
    189 	ucaa.ucaa_methods = &ugensa_methods;
    190 	ucaa.ucaa_arg = sc;
    191 
    192 	usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, sc->sc_udev, sc->sc_dev);
    193 
    194 	ucaa.ucaa_bulkin = ucaa.ucaa_bulkout = -1;
    195 	for (i = 0; i < id->bNumEndpoints; i++) {
    196 		int addr, dir, attr;
    197 
    198 		ed = usbd_interface2endpoint_descriptor(iface, i);
    199 		if (ed == NULL) {
    200 			aprint_error_dev(self,
    201 			    "could not read endpoint descriptor: %s\n",
    202 			    usbd_errstr(err));
    203 			goto bad;
    204 		}
    205 
    206 		addr = ed->bEndpointAddress;
    207 		dir = UE_GET_DIR(ed->bEndpointAddress);
    208 		attr = ed->bmAttributes & UE_XFERTYPE;
    209 		if (attr == UE_BULK) {
    210 			if (ucaa.ucaa_bulkin == -1 && dir == UE_DIR_IN) {
    211 				DPRINTF(("%s: Bulk in %d\n", devname, i));
    212 				ucaa.ucaa_bulkin = addr;
    213 				continue;
    214 			}
    215 			if (ucaa.ucaa_bulkout == -1 && dir == UE_DIR_OUT) {
    216 				DPRINTF(("%s: Bulk out %d\n", devname, i));
    217 				ucaa.ucaa_bulkout = addr;
    218 				continue;
    219 			}
    220 		}
    221 		aprint_error_dev(self, "unexpected endpoint\n");
    222 	}
    223 	if (ucaa.ucaa_bulkin == -1) {
    224 		aprint_error_dev(self, "Could not find data bulk in\n");
    225 		goto bad;
    226 	}
    227 	if (ucaa.ucaa_bulkout == -1) {
    228 		aprint_error_dev(self, "Could not find data bulk out\n");
    229 		goto bad;
    230 	}
    231 
    232 	DPRINTF(("ugensa: in=0x%x out=0x%x\n", ucaa.ucaa_bulkin,
    233 	    ucaa.ucaa_bulkout));
    234 	sc->sc_subdev = config_found_sm_loc(self, "ucombus", NULL, &ucaa,
    235 					    ucomprint, ucomsubmatch);
    236 
    237 	if (!pmf_device_register(self, NULL, NULL))
    238 		aprint_error_dev(self, "couldn't establish power handler\n");
    239 	return;
    240 
    241 bad:
    242 	DPRINTF(("ugensa_attach: ATTACH ERROR\n"));
    243 	sc->sc_dying = 1;
    244 	return;
    245 }
    246 
    247 void
    248 ugensa_childdet(device_t self, device_t child)
    249 {
    250 	struct ugensa_softc *sc = device_private(self);
    251 
    252 	KASSERT(sc->sc_subdev == child);
    253 	sc->sc_subdev = NULL;
    254 }
    255 
    256 int
    257 ugensa_activate(device_t self, enum devact act)
    258 {
    259 	struct ugensa_softc *sc = device_private(self);
    260 
    261 	DPRINTF(("ugensa_activate: sc=%p\n", sc));
    262 
    263 	switch (act) {
    264 	case DVACT_DEACTIVATE:
    265 		sc->sc_dying = 1;
    266 		return 0;
    267 	default:
    268 		return EOPNOTSUPP;
    269 	}
    270 }
    271 
    272 int
    273 ugensa_detach(device_t self, int flags)
    274 {
    275 	struct ugensa_softc *sc = device_private(self);
    276 	int rv = 0;
    277 
    278 	DPRINTF(("ugensa_detach: sc=%p flags=%d\n", sc, flags));
    279 
    280 	sc->sc_dying = 1;
    281 	pmf_device_deregister(self);
    282 
    283 	if (sc->sc_subdev != NULL)
    284 		rv = config_detach(sc->sc_subdev, flags);
    285 
    286 	usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, sc->sc_udev, sc->sc_dev);
    287 
    288 	return rv;
    289 }
    290