Home | History | Annotate | Line # | Download | only in usb
uhmodem.c revision 1.7
      1 /*	$NetBSD: uhmodem.c,v 1.7 2008/05/24 16:40:58 cube Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 2008 Yojiro UO <yuo (at) nui.org>.
      5  * All rights reserved.
      6  *
      7  * Permission to use, copy, modify, and distribute this software for any
      8  * purpose with or without fee is hereby granted, provided that the above
      9  * copyright notice and this permission notice appear in all copies.
     10  *
     11  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
     12  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
     13  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
     14  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
     15  * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER IN
     16  * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
     17  * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
     18  */
     19 /*-
     20  * Copyright (c) 2002, Alexander Kabaev <kan.FreeBSD.org>.
     21  * All rights reserved.
     22  *
     23  * Redistribution and use in source and binary forms, with or without
     24  * modification, are permitted provided that the following conditions
     25  * are met:
     26  * 1. Redistributions of source code must retain the above copyright
     27  *    notice, this list of conditions and the following disclaimer.
     28  * 2. Redistributions in binary form must reproduce the above copyright
     29  *    notice, this list of conditions and the following disclaimer in the
     30  *    documentation and/or other materials provided with the distribution.
     31  *
     32  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     33  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     34  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     35  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     36  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     37  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     38  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     39  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     40  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     41  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     42  * SUCH DAMAGE.
     43  */
     44 /*
     45  * Copyright (c) 2001 The NetBSD Foundation, Inc.
     46  * All rights reserved.
     47  *
     48  * This code is derived from software contributed to The NetBSD Foundation
     49  * by Ichiro FUKUHARA (ichiro (at) ichiro.org).
     50  *
     51  * Redistribution and use in source and binary forms, with or without
     52  * modification, are permitted provided that the following conditions
     53  * are met:
     54  * 1. Redistributions of source code must retain the above copyright
     55  *    notice, this list of conditions and the following disclaimer.
     56  * 2. Redistributions in binary form must reproduce the above copyright
     57  *    notice, this list of conditions and the following disclaimer in the
     58  *    documentation and/or other materials provided with the distribution.
     59  *
     60  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     61  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     62  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     63  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     64  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     65  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     66  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     67  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     68  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     69  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     70  * POSSIBILITY OF SUCH DAMAGE.
     71  */
     72 
     73 #include <sys/cdefs.h>
     74 __KERNEL_RCSID(0, "$NetBSD: uhmodem.c,v 1.7 2008/05/24 16:40:58 cube Exp $");
     75 
     76 #include <sys/param.h>
     77 #include <sys/systm.h>
     78 #include <sys/kernel.h>
     79 #include <sys/malloc.h>
     80 #include <sys/ioccom.h>
     81 #include <sys/fcntl.h>
     82 #include <sys/conf.h>
     83 #include <sys/tty.h>
     84 #include <sys/file.h>
     85 #include <sys/select.h>
     86 #include <sys/proc.h>
     87 #include <sys/device.h>
     88 #include <sys/poll.h>
     89 #include <sys/sysctl.h>
     90 #include <sys/bus.h>
     91 
     92 #include <dev/usb/usb.h>
     93 #include <dev/usb/usbdi.h>
     94 #include <dev/usb/usbdi_util.h>
     95 #include <dev/usb/usbdivar.h>
     96 
     97 #include <dev/usb/usbcdc.h>
     98 #include <dev/usb/usbdevs.h>
     99 #include <dev/usb/usb_quirks.h>
    100 #include <dev/usb/ucomvar.h>
    101 #include <dev/usb/ubsavar.h>
    102 
    103 /* vendor specific bRequest */
    104 #define	UHMODEM_REGWRITE	0x20
    105 #define	UHMODEM_REGREAD		0x21
    106 #define UHMODEM_SETUP		0x22
    107 
    108 #define UHMODEMIBUFSIZE	4096
    109 #define UHMODEMOBUFSIZE	4096
    110 
    111 #ifdef UHMODEM_DEBUG
    112 Static int	uhmodemdebug = 0;
    113 #define DPRINTFN(n, x)  do { \
    114 				if (uhmodemdebug > (n)) \
    115 					logprintf x; \
    116 			} while (0)
    117 #else
    118 #define DPRINTFN(n, x)
    119 #endif
    120 #define DPRINTF(x) DPRINTFN(0, x)
    121 
    122 Static int uhmodem_open(void *, int);
    123 Static  usbd_status e220_modechange_request(usbd_device_handle);
    124 Static	usbd_status uhmodem_endpointhalt(struct ubsa_softc *, int);
    125 Static	usbd_status uhmodem_regwrite(usbd_device_handle, uint8_t *, size_t);
    126 Static	usbd_status uhmodem_regread(usbd_device_handle, uint8_t *, size_t);
    127 Static  usbd_status a2502_init(usbd_device_handle);
    128 #if 0
    129 Static	usbd_status uhmodem_regsetup(usbd_device_handle, uint16_t);
    130 Static  usbd_status e220_init(usbd_device_handle);
    131 #endif
    132 
    133 struct	uhmodem_softc {
    134 	struct ubsa_softc	sc_ubsa;
    135 };
    136 
    137 struct	ucom_methods uhmodem_methods = {
    138 	ubsa_get_status,
    139 	ubsa_set,
    140 	ubsa_param,
    141 	NULL,
    142 	uhmodem_open,
    143 	ubsa_close,
    144 	NULL,
    145 	NULL
    146 };
    147 
    148 struct uhmodem_type {
    149 	struct usb_devno	uhmodem_dev;
    150 	u_int16_t		uhmodem_coms;	/* number of serial interfaces on the device */
    151 	u_int16_t		uhmodem_flags;
    152 #define	E220	0x0001
    153 #define	A2502	0x0002
    154 #define	E620	0x0004		/* XXX */
    155 				/* Whether or not it is a device different from E220 is not clear. */
    156 };
    157 
    158 Static const struct uhmodem_type uhmodem_devs[] = {
    159 	/* HUAWEI E220 / Emobile D0[12]HW */
    160 	{{ USB_VENDOR_HUAWEI, USB_PRODUCT_HUAWEI_E220 }, 2,	E220},
    161 	/* ANYDATA / NTT DoCoMo A2502 */
    162 	{{ USB_VENDOR_ANYDATA, USB_PRODUCT_ANYDATA_A2502 }, 3,	A2502},
    163 	/* HUAWEI E620 */
    164 	{{ USB_VENDOR_HUAWEI, USB_PRODUCT_HUAWEI_MOBILE }, 3,   E620},
    165 };
    166 #define uhmodem_lookup(v, p) ((const struct uhmodem_type *)usb_lookup(uhmodem_devs, v, p))
    167 
    168 int uhmodem_match(device_t, cfdata_t, void *);
    169 void uhmodem_attach(device_t, device_t, void *);
    170 void uhmodem_childdet(device_t, device_t);
    171 int uhmodem_detach(device_t, int);
    172 int uhmodem_activate(device_t, enum devact);
    173 extern struct cfdriver uhmodem_cd;
    174 CFATTACH_DECL2_NEW(uhmodem, sizeof(struct uhmodem_softc), uhmodem_match,
    175     uhmodem_attach, uhmodem_detach, uhmodem_activate, NULL, uhmodem_childdet);
    176 
    177 USB_MATCH(uhmodem)
    178 {
    179 	USB_IFMATCH_START(uhmodem, uaa);
    180 
    181 	if (uhmodem_lookup(uaa->vendor, uaa->product) != NULL)
    182 		/* XXX interface# 0,1 provide modem function, but this driver
    183 		   handles all modem in single device.  */
    184 		if (uaa->ifaceno == 0)
    185 			return (UMATCH_VENDOR_PRODUCT);
    186 	return (UMATCH_NONE);
    187 }
    188 
    189 USB_ATTACH(uhmodem)
    190 {
    191 	USB_IFATTACH_START(uhmodem, sc, uaa);
    192 	usbd_device_handle dev = uaa->device;
    193 	usb_config_descriptor_t *cdesc;
    194 	usb_interface_descriptor_t *id;
    195 	usb_endpoint_descriptor_t *ed;
    196 	char *devinfop;
    197 	usbd_status err;
    198 	struct ucom_attach_args uca;
    199 	int i;
    200 	int j;
    201 	char comname[16];
    202 
    203 	devinfop = usbd_devinfo_alloc(dev, 0);
    204 	USB_ATTACH_SETUP;
    205 	aprint_normal_dev(self, "%s\n", devinfop);
    206 	usbd_devinfo_free(devinfop);
    207 
    208 	sc->sc_ubsa.sc_dev = self;
    209         sc->sc_ubsa.sc_udev = dev;
    210 	sc->sc_ubsa.sc_config_index = UBSA_DEFAULT_CONFIG_INDEX;
    211 	sc->sc_ubsa.sc_numif = 1; /* defaut device has one interface */
    212 
    213 	/* Hauwei E220 need special request to change its mode to modem */
    214 	if ((uaa->ifaceno == 0) && (uaa->class != 255)) {
    215 		err = e220_modechange_request(dev);
    216 		if (err) {
    217 			aprint_error_dev(self, "failed to change mode: %s\n",
    218 				usbd_errstr(err));
    219 			sc->sc_ubsa.sc_dying = 1;
    220 			goto error;
    221 		}
    222 		aprint_error_dev(self,
    223 		    "mass storage only mode, reattach to enable modem\n");
    224 		sc->sc_ubsa.sc_dying = 1;
    225 		goto error;
    226 	}
    227 
    228 	/*
    229 	 * initialize rts, dtr variables to something
    230 	 * different from boolean 0, 1
    231 	 */
    232 	sc->sc_ubsa.sc_dtr = -1;
    233 	sc->sc_ubsa.sc_rts = -1;
    234 
    235 	sc->sc_ubsa.sc_quadumts = 1;
    236 	sc->sc_ubsa.sc_config_index = 0;
    237 	sc->sc_ubsa.sc_numif = uhmodem_lookup(uaa->vendor, uaa->product)->uhmodem_coms;
    238 	sc->sc_ubsa.sc_devflags = uhmodem_lookup(uaa->vendor, uaa->product)->uhmodem_flags;
    239 
    240 	DPRINTF(("uhmodem attach: sc = %p\n", sc));
    241 
    242 	/* Move the device into the configured state. */
    243 	err = usbd_set_config_index(dev, sc->sc_ubsa.sc_config_index, 1);
    244 	if (err) {
    245 		aprint_error_dev(self, "failed to set configuration: %s\n",
    246 		    usbd_errstr(err));
    247 		sc->sc_ubsa.sc_dying = 1;
    248 		goto error;
    249 	}
    250 
    251 	/* get the config descriptor */
    252 	cdesc = usbd_get_config_descriptor(sc->sc_ubsa.sc_udev);
    253 	if (cdesc == NULL) {
    254 		aprint_error_dev(self,
    255 		    "failed to get configuration descriptor\n");
    256 		sc->sc_ubsa.sc_dying = 1;
    257 		goto error;
    258 	}
    259 
    260 	sc->sc_ubsa.sc_intr_number = -1;
    261 	sc->sc_ubsa.sc_intr_pipe = NULL;
    262 
    263 	/* get the interfaces */
    264 	for (i = 0; i < sc->sc_ubsa.sc_numif; i++) {
    265 		err = usbd_device2interface_handle(dev, UBSA_IFACE_INDEX_OFFSET+i,
    266 				 &sc->sc_ubsa.sc_iface[i]);
    267 		if (err) {
    268 			if (i == 0){
    269 				/* can not get main interface */
    270 				sc->sc_ubsa.sc_dying = 1;
    271 				goto error;
    272 			} else
    273 				break;
    274 		}
    275 
    276 		/* Find the endpoints */
    277 		id = usbd_get_interface_descriptor(sc->sc_ubsa.sc_iface[i]);
    278 		sc->sc_ubsa.sc_iface_number[i] = id->bInterfaceNumber;
    279 
    280 		/* initialize endpoints */
    281 		uca.bulkin = uca.bulkout = -1;
    282 
    283 		for (j = 0; j < id->bNumEndpoints; j++) {
    284 			ed = usbd_interface2endpoint_descriptor(
    285 				sc->sc_ubsa.sc_iface[i], j);
    286 			if (ed == NULL) {
    287 				aprint_error_dev(self,
    288 				    "no endpoint descriptor for %d "
    289 				    "(interface: %d)\n", j, i);
    290 				break;
    291 			}
    292 
    293 			if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
    294 			    UE_GET_XFERTYPE(ed->bmAttributes) == UE_INTERRUPT) {
    295 				sc->sc_ubsa.sc_intr_number = ed->bEndpointAddress;
    296 				sc->sc_ubsa.sc_isize = UGETW(ed->wMaxPacketSize);
    297 			} else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
    298 			    UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
    299 				uca.bulkin = ed->bEndpointAddress;
    300 			} else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
    301 			    UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
    302 				uca.bulkout = ed->bEndpointAddress;
    303 			}
    304 		} /* end of Endpoint loop */
    305 
    306 		if (sc->sc_ubsa.sc_intr_number == -1) {
    307 			aprint_error_dev(self, "HUAWEI E220 need to re-attach "
    308 			    "to enable modem function\n");
    309 			if (i == 0) {
    310 				/* could not get intr for main tty */
    311 				sc->sc_ubsa.sc_dying = 1;
    312 				goto error;
    313 			} else
    314 				break;
    315 		}
    316 		if (uca.bulkin == -1) {
    317 			aprint_error_dev(self,
    318 			    "Could not find data bulk in\n");
    319 			sc->sc_ubsa.sc_dying = 1;
    320 			goto error;
    321 		}
    322 
    323 		if (uca.bulkout == -1) {
    324 			aprint_error_dev(self,
    325 			    "Could not find data bulk out\n");
    326 			sc->sc_ubsa.sc_dying = 1;
    327 			goto error;
    328 		}
    329 
    330 		switch (i) {
    331 		case 0:
    332 			snprintf(comname, sizeof(comname), "modem");
    333 			break;
    334 		case 1:
    335 			snprintf(comname, sizeof(comname), "alt#1");
    336 			break;
    337 		case 2:
    338 			snprintf(comname, sizeof(comname), "alt#2");
    339 			break;
    340 		default:
    341 			snprintf(comname, sizeof(comname), "int#%d", i);
    342 			break;
    343 		}
    344 
    345 		uca.portno = i;
    346 		/* bulkin, bulkout set above */
    347 		uca.ibufsize = UHMODEMIBUFSIZE;
    348 		uca.obufsize = UHMODEMOBUFSIZE;
    349 		uca.ibufsizepad = UHMODEMIBUFSIZE;
    350 		uca.opkthdrlen = 0;
    351 		uca.device = dev;
    352 		uca.iface = sc->sc_ubsa.sc_iface[i];
    353 		uca.methods = &uhmodem_methods;
    354 		uca.arg = &sc->sc_ubsa;
    355 		uca.info = comname;
    356 		DPRINTF(("uhmodem: int#=%d, in = 0x%x, out = 0x%x, intr = 0x%x\n",
    357 	    		i, uca.bulkin, uca.bulkout, sc->sc_ubsa.sc_intr_number));
    358 		sc->sc_ubsa.sc_subdevs[i] = config_found_sm_loc(self, "ucombus", NULL,
    359 				 &uca, ucomprint, ucomsubmatch);
    360 
    361 		/* issue endpoint halt to each interface */
    362 		err = uhmodem_endpointhalt(&sc->sc_ubsa, i);
    363 		if (err)
    364 			aprint_error("%s: endpointhalt fail\n", __func__);
    365 		else
    366 			usbd_delay_ms(sc->sc_ubsa.sc_udev, 50);
    367 	} /* end of Interface loop */
    368 
    369 	usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, sc->sc_ubsa.sc_udev,
    370 			   USBDEV(sc->sc_ubsa.sc_dev));
    371 
    372 	USB_ATTACH_SUCCESS_RETURN;
    373 
    374 error:
    375 	USB_ATTACH_ERROR_RETURN;
    376 }
    377 
    378 void
    379 uhmodem_childdet(device_t self, device_t child)
    380 {
    381 	int i;
    382 	struct uhmodem_softc *sc = device_private(self);
    383 
    384 	for (i = 0; i < sc->sc_ubsa.sc_numif; i++) {
    385 		if (sc->sc_ubsa.sc_subdevs[i] == child)
    386 			break;
    387 	}
    388 	KASSERT(i < sc->sc_ubsa.sc_numif);
    389 	sc->sc_ubsa.sc_subdevs[i] = NULL;
    390 }
    391 
    392 USB_DETACH(uhmodem)
    393 {
    394 	USB_DETACH_START(uhmodem, sc);
    395 	int i;
    396 	int rv = 0;
    397 
    398 	DPRINTF(("uhmodem_detach: sc = %p\n", sc));
    399 
    400 	if (sc->sc_ubsa.sc_intr_pipe != NULL) {
    401 		usbd_abort_pipe(sc->sc_ubsa.sc_intr_pipe);
    402 		usbd_close_pipe(sc->sc_ubsa.sc_intr_pipe);
    403 		free(sc->sc_ubsa.sc_intr_buf, M_USBDEV);
    404 		sc->sc_ubsa.sc_intr_pipe = NULL;
    405 	}
    406 
    407 	sc->sc_ubsa.sc_dying = 1;
    408 	for (i = 0; i < sc->sc_ubsa.sc_numif; i++) {
    409 		if (sc->sc_ubsa.sc_subdevs[i] != NULL)
    410 			rv |= config_detach(sc->sc_ubsa.sc_subdevs[i], flags);
    411 	}
    412 
    413 	usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, sc->sc_ubsa.sc_udev,
    414 			   USBDEV(sc->sc_ubsa.sc_dev));
    415 
    416 	return (rv);
    417 }
    418 
    419 int
    420 uhmodem_activate(device_t self, enum devact act)
    421 {
    422 	struct uhmodem_softc *sc = device_private(self);
    423 	int rv = 0;
    424 	int i;
    425 
    426 	switch (act) {
    427 	case DVACT_ACTIVATE:
    428 		return (EOPNOTSUPP);
    429 
    430 	case DVACT_DEACTIVATE:
    431 		for (i = 0; i < sc->sc_ubsa.sc_numif; i++) {
    432 			if (sc->sc_ubsa.sc_subdevs[i] != NULL)
    433 				rv |= config_deactivate(sc->sc_ubsa.sc_subdevs[i]);
    434 		}
    435 		sc->sc_ubsa.sc_dying = 1;
    436 		break;
    437 	}
    438 	return (rv);
    439 }
    440 
    441 Static int
    442 uhmodem_open(void *addr, int portno)
    443 {
    444 	struct ubsa_softc *sc = addr;
    445 	usbd_status err;
    446 
    447 	if (sc->sc_dying)
    448 		return (ENXIO);
    449 
    450 	DPRINTF(("%s: sc = %p\n", __func__, sc));
    451 
    452 	err = uhmodem_endpointhalt(sc, 0);
    453 	if (err)
    454 		aprint_error("%s: endpointhalt fail\n", __func__);
    455 	else
    456 		usbd_delay_ms(sc->sc_udev, 50);
    457 
    458 	if (sc->sc_devflags & A2502) {
    459 		err = a2502_init(sc->sc_udev);
    460 		if (err)
    461 			aprint_error("%s: a2502init fail\n", __func__);
    462 		else
    463 			usbd_delay_ms(sc->sc_udev, 50);
    464 	}
    465 #if 0 /* currently disabled */
    466 	if (sc->sc_devflags & E220) {
    467 		err = e220_init(sc->sc_udev);
    468 		if (err)
    469 			aprint_error("%s: e220init fail\n", __func__);
    470 		else
    471 			usbd_delay_ms(sc->sc_udev, 50);
    472 	}
    473 #endif
    474 	if (sc->sc_intr_number != -1 && sc->sc_intr_pipe == NULL) {
    475 		sc->sc_intr_buf = malloc(sc->sc_isize, M_USBDEV, M_WAITOK);
    476 		/* XXX only iface# = 0 has intr line */
    477 		/* XXX E220 specific? need to check */
    478 		err = usbd_open_pipe_intr(sc->sc_iface[0],
    479 		    sc->sc_intr_number,
    480 		    USBD_SHORT_XFER_OK,
    481 		    &sc->sc_intr_pipe,
    482 		    sc,
    483 		    sc->sc_intr_buf,
    484 		    sc->sc_isize,
    485 		    ubsa_intr,
    486 		    UBSA_INTR_INTERVAL);
    487 		if (err) {
    488 			aprint_error_dev(sc->sc_dev,
    489 			    "cannot open interrupt pipe (addr %d)\n",
    490 			    sc->sc_intr_number);
    491 			return (EIO);
    492 		}
    493 	}
    494 
    495 	return (0);
    496 }
    497 
    498 /*
    499  * Hauwei E220 needs special request to enable modem function.
    500  * -- DEVICE_REMOTE_WAKEUP ruquest to endpoint 2.
    501  */
    502 Static  usbd_status
    503 e220_modechange_request(usbd_device_handle dev)
    504 {
    505 #define E220_MODE_CHANGE_REQUEST 0x2
    506 	usb_device_request_t req;
    507 	usbd_status err;
    508 
    509 	req.bmRequestType = UT_WRITE_DEVICE;
    510 	req.bRequest = UR_SET_FEATURE;
    511 	USETW(req.wValue, UF_DEVICE_REMOTE_WAKEUP);
    512 	USETW(req.wIndex, E220_MODE_CHANGE_REQUEST);
    513 	USETW(req.wLength, 0);
    514 
    515 	DPRINTF(("%s: send e220 mode change request\n", __func__));
    516 	err = usbd_do_request(dev, &req, 0);
    517 	if (err) {
    518 		DPRINTF(("%s: E220 mode change fail\n", __func__));
    519 		return (EIO);
    520 	}
    521 
    522 	return (0);
    523 #undef E220_MODE_CHANGE_REQUEST
    524 }
    525 
    526 Static  usbd_status
    527 uhmodem_endpointhalt(struct ubsa_softc *sc, int iface)
    528 {
    529 	usb_device_request_t req;
    530 	usb_endpoint_descriptor_t *ed;
    531 	usb_interface_descriptor_t *id;
    532 	usbd_status err;
    533 	int i;
    534 
    535 	/* Find the endpoints */
    536 	id = usbd_get_interface_descriptor(sc->sc_iface[iface]);
    537 
    538 	for (i = 0; i < id->bNumEndpoints; i++) {
    539 		ed = usbd_interface2endpoint_descriptor(sc->sc_iface[iface], i);
    540 		if (ed == NULL)
    541 			return (EIO);
    542 
    543 		if (UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
    544 			/* issue ENDPOINT_HALT request */
    545 			req.bmRequestType = UT_WRITE_ENDPOINT;
    546 			req.bRequest = UR_CLEAR_FEATURE;
    547 			USETW(req.wValue, UF_ENDPOINT_HALT);
    548 			USETW(req.wIndex, ed->bEndpointAddress);
    549 			USETW(req.wLength, 0);
    550 			err = usbd_do_request(sc->sc_udev, &req, 0);
    551 			if (err) {
    552 				DPRINTF(("%s: ENDPOINT_HALT to EP:%d fail\n",
    553 					__func__, ed->bEndpointAddress));
    554 				return (EIO);
    555 			}
    556 
    557 		}
    558 	} /* end of Endpoint loop */
    559 
    560 	return (0);
    561 }
    562 
    563 Static usbd_status
    564 uhmodem_regwrite(usbd_device_handle dev, uint8_t *data, size_t len)
    565 {
    566 	usb_device_request_t req;
    567 	usbd_status err;
    568 
    569 	req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
    570 	req.bRequest = UHMODEM_REGWRITE;
    571 	USETW(req.wValue, 0x0000);
    572 	USETW(req.wIndex, 0x0000);
    573 	USETW(req.wLength, len);
    574 	err = usbd_do_request(dev, &req, data);
    575 	if (err)
    576 		return err;
    577 
    578 	return 0;
    579 }
    580 
    581 Static usbd_status
    582 uhmodem_regread(usbd_device_handle dev, uint8_t *data, size_t len)
    583 {
    584 	usb_device_request_t req;
    585 	usbd_status err;
    586 
    587 	req.bmRequestType = UT_READ_CLASS_INTERFACE;
    588 	req.bRequest = UHMODEM_REGREAD;
    589 	USETW(req.wValue, 0x0000);
    590 	USETW(req.wIndex, 0x0000);
    591 	USETW(req.wLength, len);
    592 	err = usbd_do_request(dev, &req, data);
    593 
    594 	if (err)
    595 		return err;
    596 
    597 	return 0;
    598 }
    599 
    600 #if 0
    601 Static usbd_status
    602 uhmodem_regsetup(usbd_device_handle dev, uint16_t cmd)
    603 {
    604 	usb_device_request_t req;
    605 	usbd_status err;
    606 
    607 	req.bmRequestType = UT_READ_CLASS_INTERFACE;
    608 	req.bRequest = UHMODEM_SETUP;
    609 	USETW(req.wValue, cmd);
    610 	USETW(req.wIndex, 0x0000);
    611 	USETW(req.wLength, 0);
    612 	err = usbd_do_request(dev, &req, 0);
    613 
    614 	if (err)
    615 		return err;
    616 
    617 	return 0;
    618 }
    619 #endif
    620 
    621 Static  usbd_status
    622 a2502_init(usbd_device_handle dev)
    623 {
    624 	uint8_t data[8];
    625 	static uint8_t init_cmd[] = {0x00, 0xE1, 0x00, 0x00, 0x00, 0x00, 0x08};
    626 #ifdef UHMODEM_DEBUG
    627 	int i;
    628 #endif
    629 	if (uhmodem_regread(dev, data, 7)) {
    630 		DPRINTF(("%s: read fail\n", __func__));
    631 		return EIO;
    632 	}
    633 #ifdef UHMODEM_DEBUG
    634 	printf("%s: readdata: ", __func__);
    635 	for (i = 0; i < 7; i++)
    636 		printf("0x%x ", data[i]);
    637 #endif
    638 	if (uhmodem_regwrite(dev, init_cmd, sizeof(init_cmd)) ) {
    639 		DPRINTF(("%s: write fail\n", __func__));
    640 		return EIO;
    641 	}
    642 
    643 	if (uhmodem_regread(dev, data, 7)) {
    644 		DPRINTF(("%s: read fail\n", __func__));
    645 		return EIO;
    646 	}
    647 #ifdef UHMODEM_DEBUG
    648 	printf("%s: readdata: ", __func__);
    649 	printf(" => ");
    650 	for (i = 0; i < 7; i++)
    651 		printf("0x%x ", data[i]);
    652 	printf("\n");
    653 #endif
    654 	return 0;
    655 }
    656 
    657 
    658 #if 0
    659 /*
    660  * Windows device driver send these sequens of USB requests.
    661  * However currently I can't understand what the messege is,
    662  * disable this code when I get more information about it.
    663  */
    664 Static  usbd_status
    665 e220_init(usbd_device_handle dev)
    666 {
    667 	uint8_t data[8];
    668 	usb_device_request_t req;
    669 	int i;
    670 
    671 	/* vendor specific unknown request */
    672 	req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
    673 	req.bRequest = 0x02;
    674 	USETW(req.wValue, 0x0001);
    675 	USETW(req.wIndex, 0x0000);
    676 	USETW(req.wLength, 2);
    677 	data[0] = 0x0;
    678 	data[1] = 0x0;
    679 	if (usbd_do_request(dev, &req, data))
    680 		goto error;
    681 
    682 	/* vendor specific unknown sequence */
    683 	if(uhmodem_regsetup(dev, 0x1))
    684 		goto error;
    685 
    686 	if (uhmodem_regread(dev, data, 7))
    687 		goto error;
    688 
    689 	data[1] = 0x8;
    690 	data[2] = 0x7;
    691 	if (uhmodem_regwrite(dev, data, sizeof(data)) )
    692 		goto error;
    693 
    694 	if (uhmodem_regread(dev, data, 7))
    695 		goto error;
    696 		/* XXX should verify the read data ? */
    697 
    698 	if (uhmodem_regsetup(dev, 0x3))
    699 		goto error;
    700 
    701 	return (0);
    702 error:
    703 	DPRINTF(("%s: E220 init request fail\n", __func__));
    704 	return (EIO);
    705 }
    706 #endif
    707 
    708