xref: /freebsd/sys/dev/usb/serial/uvisor.c (revision 4310d6deb27da04d3fe079a0584edd557a764e21)
1 /*	$NetBSD: uvisor.c,v 1.9 2001/01/23 14:04:14 augustss Exp $	*/
2 /*      $FreeBSD$ */
3 
4 /* Also already merged from NetBSD:
5  *	$NetBSD: uvisor.c,v 1.12 2001/11/13 06:24:57 lukem Exp $
6  *	$NetBSD: uvisor.c,v 1.13 2002/02/11 15:11:49 augustss Exp $
7  *	$NetBSD: uvisor.c,v 1.14 2002/02/27 23:00:03 augustss Exp $
8  *	$NetBSD: uvisor.c,v 1.15 2002/06/16 15:01:31 augustss Exp $
9  *	$NetBSD: uvisor.c,v 1.16 2002/07/11 21:14:36 augustss Exp $
10  *	$NetBSD: uvisor.c,v 1.17 2002/08/13 11:38:15 augustss Exp $
11  *	$NetBSD: uvisor.c,v 1.18 2003/02/05 00:50:14 augustss Exp $
12  *	$NetBSD: uvisor.c,v 1.19 2003/02/07 18:12:37 augustss Exp $
13  *	$NetBSD: uvisor.c,v 1.20 2003/04/11 01:30:10 simonb Exp $
14  */
15 
16 /*-
17  * Copyright (c) 2000 The NetBSD Foundation, Inc.
18  * All rights reserved.
19  *
20  * This code is derived from software contributed to The NetBSD Foundation
21  * by Lennart Augustsson (lennart@augustsson.net) at
22  * Carlstedt Research & Technology.
23  *
24  * Redistribution and use in source and binary forms, with or without
25  * modification, are permitted provided that the following conditions
26  * are met:
27  * 1. Redistributions of source code must retain the above copyright
28  *    notice, this list of conditions and the following disclaimer.
29  * 2. Redistributions in binary form must reproduce the above copyright
30  *    notice, this list of conditions and the following disclaimer in the
31  *    documentation and/or other materials provided with the distribution.
32  *
33  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
34  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
35  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
36  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
37  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
38  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
39  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
40  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
41  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
42  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
43  * POSSIBILITY OF SUCH DAMAGE.
44  */
45 
46 /*
47  * Handspring Visor (Palmpilot compatible PDA) driver
48  */
49 
50 #include <sys/stdint.h>
51 #include <sys/stddef.h>
52 #include <sys/param.h>
53 #include <sys/queue.h>
54 #include <sys/types.h>
55 #include <sys/systm.h>
56 #include <sys/kernel.h>
57 #include <sys/bus.h>
58 #include <sys/module.h>
59 #include <sys/lock.h>
60 #include <sys/mutex.h>
61 #include <sys/condvar.h>
62 #include <sys/sysctl.h>
63 #include <sys/sx.h>
64 #include <sys/unistd.h>
65 #include <sys/callout.h>
66 #include <sys/malloc.h>
67 #include <sys/priv.h>
68 
69 #include <dev/usb/usb.h>
70 #include <dev/usb/usbdi.h>
71 #include <dev/usb/usbdi_util.h>
72 #include "usbdevs.h"
73 
74 #define	USB_DEBUG_VAR uvisor_debug
75 #include <dev/usb/usb_debug.h>
76 #include <dev/usb/usb_process.h>
77 
78 #include <dev/usb/serial/usb_serial.h>
79 
80 #ifdef USB_DEBUG
81 static int uvisor_debug = 0;
82 
83 static SYSCTL_NODE(_hw_usb, OID_AUTO, uvisor, CTLFLAG_RW, 0, "USB uvisor");
84 SYSCTL_INT(_hw_usb_uvisor, OID_AUTO, debug, CTLFLAG_RW,
85     &uvisor_debug, 0, "Debug level");
86 #endif
87 
88 #define	UVISOR_CONFIG_INDEX	0
89 #define	UVISOR_IFACE_INDEX	0
90 
91 /*
92  * The following buffer sizes are hardcoded due to the way the Palm
93  * firmware works. It looks like the device is not short terminating
94  * the data transferred.
95  */
96 #define	UVISORIBUFSIZE	       0	/* Use wMaxPacketSize */
97 #define	UVISOROBUFSIZE	       32	/* bytes */
98 #define	UVISOROFRAMES	       32	/* units */
99 
100 /* From the Linux driver */
101 /*
102  * UVISOR_REQUEST_BYTES_AVAILABLE asks the visor for the number of bytes that
103  * are available to be transfered to the host for the specified endpoint.
104  * Currently this is not used, and always returns 0x0001
105  */
106 #define	UVISOR_REQUEST_BYTES_AVAILABLE		0x01
107 
108 /*
109  * UVISOR_CLOSE_NOTIFICATION is set to the device to notify it that the host
110  * is now closing the pipe. An empty packet is sent in response.
111  */
112 #define	UVISOR_CLOSE_NOTIFICATION		0x02
113 
114 /*
115  * UVISOR_GET_CONNECTION_INFORMATION is sent by the host during enumeration to
116  * get the endpoints used by the connection.
117  */
118 #define	UVISOR_GET_CONNECTION_INFORMATION	0x03
119 
120 /*
121  * UVISOR_GET_CONNECTION_INFORMATION returns data in the following format
122  */
123 #define	UVISOR_MAX_CONN 8
124 struct uvisor_connection_info {
125 	uWord	num_ports;
126 	struct {
127 		uByte	port_function_id;
128 		uByte	port;
129 	} __packed connections[UVISOR_MAX_CONN];
130 } __packed;
131 
132 #define	UVISOR_CONNECTION_INFO_SIZE 18
133 
134 /* struct uvisor_connection_info.connection[x].port defines: */
135 #define	UVISOR_ENDPOINT_1		0x01
136 #define	UVISOR_ENDPOINT_2		0x02
137 
138 /* struct uvisor_connection_info.connection[x].port_function_id defines: */
139 #define	UVISOR_FUNCTION_GENERIC		0x00
140 #define	UVISOR_FUNCTION_DEBUGGER	0x01
141 #define	UVISOR_FUNCTION_HOTSYNC		0x02
142 #define	UVISOR_FUNCTION_CONSOLE		0x03
143 #define	UVISOR_FUNCTION_REMOTE_FILE_SYS	0x04
144 
145 /*
146  * Unknown PalmOS stuff.
147  */
148 #define	UVISOR_GET_PALM_INFORMATION		0x04
149 #define	UVISOR_GET_PALM_INFORMATION_LEN		0x44
150 
151 struct uvisor_palm_connection_info {
152 	uByte	num_ports;
153 	uByte	endpoint_numbers_different;
154 	uWord	reserved1;
155 	struct {
156 		uDWord	port_function_id;
157 		uByte	port;
158 		uByte	end_point_info;
159 		uWord	reserved;
160 	} __packed connections[UVISOR_MAX_CONN];
161 } __packed;
162 
163 enum {
164 	UVISOR_BULK_DT_WR,
165 	UVISOR_BULK_DT_RD,
166 	UVISOR_N_TRANSFER,
167 };
168 
169 struct uvisor_softc {
170 	struct ucom_super_softc sc_super_ucom;
171 	struct ucom_softc sc_ucom;
172 
173 	struct usb_xfer *sc_xfer[UVISOR_N_TRANSFER];
174 	struct usb_device *sc_udev;
175 	struct mtx sc_mtx;
176 
177 	uint16_t sc_flag;
178 #define	UVISOR_FLAG_PALM4       0x0001
179 #define	UVISOR_FLAG_VISOR       0x0002
180 #define	UVISOR_FLAG_PALM35      0x0004
181 #define	UVISOR_FLAG_SEND_NOTIFY 0x0008
182 
183 	uint8_t	sc_iface_no;
184 	uint8_t	sc_iface_index;
185 };
186 
187 /* prototypes */
188 
189 static device_probe_t uvisor_probe;
190 static device_attach_t uvisor_attach;
191 static device_detach_t uvisor_detach;
192 
193 static usb_callback_t uvisor_write_callback;
194 static usb_callback_t uvisor_read_callback;
195 
196 static usb_error_t uvisor_init(struct uvisor_softc *, struct usb_device *,
197 		    struct usb_config *);
198 static void	uvisor_cfg_open(struct ucom_softc *);
199 static void	uvisor_cfg_close(struct ucom_softc *);
200 static void	uvisor_start_read(struct ucom_softc *);
201 static void	uvisor_stop_read(struct ucom_softc *);
202 static void	uvisor_start_write(struct ucom_softc *);
203 static void	uvisor_stop_write(struct ucom_softc *);
204 
205 static const struct usb_config uvisor_config[UVISOR_N_TRANSFER] = {
206 
207 	[UVISOR_BULK_DT_WR] = {
208 		.type = UE_BULK,
209 		.endpoint = UE_ADDR_ANY,
210 		.direction = UE_DIR_OUT,
211 		.bufsize = UVISOROBUFSIZE * UVISOROFRAMES,
212 		.frames = UVISOROFRAMES,
213 		.flags = {.pipe_bof = 1,.force_short_xfer = 1,},
214 		.callback = &uvisor_write_callback,
215 	},
216 
217 	[UVISOR_BULK_DT_RD] = {
218 		.type = UE_BULK,
219 		.endpoint = UE_ADDR_ANY,
220 		.direction = UE_DIR_IN,
221 		.bufsize = UVISORIBUFSIZE,
222 		.flags = {.pipe_bof = 1,.short_xfer_ok = 1,},
223 		.callback = &uvisor_read_callback,
224 	},
225 };
226 
227 static const struct ucom_callback uvisor_callback = {
228 	.ucom_cfg_open = &uvisor_cfg_open,
229 	.ucom_cfg_close = &uvisor_cfg_close,
230 	.ucom_start_read = &uvisor_start_read,
231 	.ucom_stop_read = &uvisor_stop_read,
232 	.ucom_start_write = &uvisor_start_write,
233 	.ucom_stop_write = &uvisor_stop_write,
234 };
235 
236 static device_method_t uvisor_methods[] = {
237 	DEVMETHOD(device_probe, uvisor_probe),
238 	DEVMETHOD(device_attach, uvisor_attach),
239 	DEVMETHOD(device_detach, uvisor_detach),
240 	{0, 0}
241 };
242 
243 static devclass_t uvisor_devclass;
244 
245 static driver_t uvisor_driver = {
246 	.name = "uvisor",
247 	.methods = uvisor_methods,
248 	.size = sizeof(struct uvisor_softc),
249 };
250 
251 DRIVER_MODULE(uvisor, uhub, uvisor_driver, uvisor_devclass, NULL, 0);
252 MODULE_DEPEND(uvisor, ucom, 1, 1, 1);
253 MODULE_DEPEND(uvisor, usb, 1, 1, 1);
254 MODULE_VERSION(uvisor, 1);
255 
256 static const STRUCT_USB_HOST_ID uvisor_devs[] = {
257 #define	UVISOR_DEV(v,p,i) { USB_VPI(USB_VENDOR_##v, USB_PRODUCT_##v##_##p, i) }
258 	UVISOR_DEV(ACEECA, MEZ1000, UVISOR_FLAG_PALM4),
259 	UVISOR_DEV(ALPHASMART, DANA_SYNC, UVISOR_FLAG_PALM4),
260 	UVISOR_DEV(GARMIN, IQUE_3600, UVISOR_FLAG_PALM4),
261 	UVISOR_DEV(FOSSIL, WRISTPDA, UVISOR_FLAG_PALM4),
262 	UVISOR_DEV(HANDSPRING, VISOR, UVISOR_FLAG_VISOR),
263 	UVISOR_DEV(HANDSPRING, TREO, UVISOR_FLAG_PALM4),
264 	UVISOR_DEV(HANDSPRING, TREO600, UVISOR_FLAG_PALM4),
265 	UVISOR_DEV(PALM, M500, UVISOR_FLAG_PALM4),
266 	UVISOR_DEV(PALM, M505, UVISOR_FLAG_PALM4),
267 	UVISOR_DEV(PALM, M515, UVISOR_FLAG_PALM4),
268 	UVISOR_DEV(PALM, I705, UVISOR_FLAG_PALM4),
269 	UVISOR_DEV(PALM, M125, UVISOR_FLAG_PALM4),
270 	UVISOR_DEV(PALM, M130, UVISOR_FLAG_PALM4),
271 	UVISOR_DEV(PALM, TUNGSTEN_Z, UVISOR_FLAG_PALM4),
272 	UVISOR_DEV(PALM, TUNGSTEN_T, UVISOR_FLAG_PALM4),
273 	UVISOR_DEV(PALM, ZIRE, UVISOR_FLAG_PALM4),
274 	UVISOR_DEV(PALM, ZIRE31, UVISOR_FLAG_PALM4),
275 	UVISOR_DEV(SAMSUNG, I500, UVISOR_FLAG_PALM4),
276 	UVISOR_DEV(SONY, CLIE_40, 0),
277 	UVISOR_DEV(SONY, CLIE_41, 0),
278 	UVISOR_DEV(SONY, CLIE_S360, UVISOR_FLAG_PALM4),
279 	UVISOR_DEV(SONY, CLIE_NX60, UVISOR_FLAG_PALM4),
280 	UVISOR_DEV(SONY, CLIE_35, UVISOR_FLAG_PALM35),
281 /*  UVISOR_DEV(SONY, CLIE_25, UVISOR_FLAG_PALM4 ), */
282 	UVISOR_DEV(SONY, CLIE_TJ37, UVISOR_FLAG_PALM4),
283 /*  UVISOR_DEV(SONY, CLIE_TH55, UVISOR_FLAG_PALM4 ), See PR 80935 */
284 	UVISOR_DEV(TAPWAVE, ZODIAC, UVISOR_FLAG_PALM4),
285 #undef UVISOR_DEV
286 };
287 
288 static int
289 uvisor_probe(device_t dev)
290 {
291 	struct usb_attach_arg *uaa = device_get_ivars(dev);
292 
293 	if (uaa->usb_mode != USB_MODE_HOST) {
294 		return (ENXIO);
295 	}
296 	if (uaa->info.bConfigIndex != UVISOR_CONFIG_INDEX) {
297 		return (ENXIO);
298 	}
299 	if (uaa->info.bIfaceIndex != UVISOR_IFACE_INDEX) {
300 		return (ENXIO);
301 	}
302 	return (usbd_lookup_id_by_uaa(uvisor_devs, sizeof(uvisor_devs), uaa));
303 }
304 
305 static int
306 uvisor_attach(device_t dev)
307 {
308 	struct usb_attach_arg *uaa = device_get_ivars(dev);
309 	struct uvisor_softc *sc = device_get_softc(dev);
310 	struct usb_config uvisor_config_copy[UVISOR_N_TRANSFER];
311 	int error;
312 
313 	DPRINTF("sc=%p\n", sc);
314 	memcpy(uvisor_config_copy, uvisor_config,
315 	    sizeof(uvisor_config_copy));
316 
317 	device_set_usb_desc(dev);
318 
319 	mtx_init(&sc->sc_mtx, "uvisor", NULL, MTX_DEF);
320 
321 	sc->sc_udev = uaa->device;
322 
323 	/* configure the device */
324 
325 	sc->sc_flag = USB_GET_DRIVER_INFO(uaa);
326 	sc->sc_iface_no = uaa->info.bIfaceNum;
327 	sc->sc_iface_index = UVISOR_IFACE_INDEX;
328 
329 	error = uvisor_init(sc, uaa->device, uvisor_config_copy);
330 
331 	if (error) {
332 		DPRINTF("init failed, error=%s\n",
333 		    usbd_errstr(error));
334 		goto detach;
335 	}
336 	error = usbd_transfer_setup(uaa->device, &sc->sc_iface_index,
337 	    sc->sc_xfer, uvisor_config_copy, UVISOR_N_TRANSFER,
338 	    sc, &sc->sc_mtx);
339 	if (error) {
340 		DPRINTF("could not allocate all pipes\n");
341 		goto detach;
342 	}
343 
344 	error = ucom_attach(&sc->sc_super_ucom, &sc->sc_ucom, 1, sc,
345 	    &uvisor_callback, &sc->sc_mtx);
346 	if (error) {
347 		DPRINTF("ucom_attach failed\n");
348 		goto detach;
349 	}
350 	ucom_set_pnpinfo_usb(&sc->sc_super_ucom, dev);
351 
352 	return (0);
353 
354 detach:
355 	uvisor_detach(dev);
356 	return (ENXIO);
357 }
358 
359 static int
360 uvisor_detach(device_t dev)
361 {
362 	struct uvisor_softc *sc = device_get_softc(dev);
363 
364 	DPRINTF("sc=%p\n", sc);
365 
366 	ucom_detach(&sc->sc_super_ucom, &sc->sc_ucom);
367 	usbd_transfer_unsetup(sc->sc_xfer, UVISOR_N_TRANSFER);
368 	mtx_destroy(&sc->sc_mtx);
369 
370 	return (0);
371 }
372 
373 static usb_error_t
374 uvisor_init(struct uvisor_softc *sc, struct usb_device *udev, struct usb_config *config)
375 {
376 	usb_error_t err = 0;
377 	struct usb_device_request req;
378 	struct uvisor_connection_info coninfo;
379 	struct uvisor_palm_connection_info pconinfo;
380 	uint16_t actlen;
381 	uint8_t buffer[256];
382 
383 	if (sc->sc_flag & UVISOR_FLAG_VISOR) {
384 		DPRINTF("getting connection info\n");
385 		req.bmRequestType = UT_READ_VENDOR_ENDPOINT;
386 		req.bRequest = UVISOR_GET_CONNECTION_INFORMATION;
387 		USETW(req.wValue, 0);
388 		USETW(req.wIndex, 0);
389 		USETW(req.wLength, UVISOR_CONNECTION_INFO_SIZE);
390 		err = usbd_do_request_flags(udev, NULL,
391 		    &req, &coninfo, USB_SHORT_XFER_OK,
392 		    &actlen, USB_DEFAULT_TIMEOUT);
393 
394 		if (err) {
395 			goto done;
396 		}
397 	}
398 #ifdef USB_DEBUG
399 	if (sc->sc_flag & UVISOR_FLAG_VISOR) {
400 		uint16_t i, np;
401 		const char *desc;
402 
403 		np = UGETW(coninfo.num_ports);
404 		if (np > UVISOR_MAX_CONN) {
405 			np = UVISOR_MAX_CONN;
406 		}
407 		DPRINTF("Number of ports: %d\n", np);
408 
409 		for (i = 0; i < np; ++i) {
410 			switch (coninfo.connections[i].port_function_id) {
411 			case UVISOR_FUNCTION_GENERIC:
412 				desc = "Generic";
413 				break;
414 			case UVISOR_FUNCTION_DEBUGGER:
415 				desc = "Debugger";
416 				break;
417 			case UVISOR_FUNCTION_HOTSYNC:
418 				desc = "HotSync";
419 				break;
420 			case UVISOR_FUNCTION_REMOTE_FILE_SYS:
421 				desc = "Remote File System";
422 				break;
423 			default:
424 				desc = "unknown";
425 				break;
426 			}
427 			DPRINTF("Port %d is for %s\n",
428 			    coninfo.connections[i].port, desc);
429 		}
430 	}
431 #endif
432 
433 	if (sc->sc_flag & UVISOR_FLAG_PALM4) {
434 		uint8_t port;
435 
436 		/* Palm OS 4.0 Hack */
437 		req.bmRequestType = UT_READ_VENDOR_ENDPOINT;
438 		req.bRequest = UVISOR_GET_PALM_INFORMATION;
439 		USETW(req.wValue, 0);
440 		USETW(req.wIndex, 0);
441 		USETW(req.wLength, UVISOR_GET_PALM_INFORMATION_LEN);
442 
443 		err = usbd_do_request_flags
444 		    (udev, NULL, &req, &pconinfo, USB_SHORT_XFER_OK,
445 		    &actlen, USB_DEFAULT_TIMEOUT);
446 
447 		if (err) {
448 			goto done;
449 		}
450 		if (actlen < 12) {
451 			DPRINTF("too little data\n");
452 			err = USB_ERR_INVAL;
453 			goto done;
454 		}
455 		if (pconinfo.endpoint_numbers_different) {
456 			port = pconinfo.connections[0].end_point_info;
457 			config[0].endpoint = (port & 0xF);	/* output */
458 			config[1].endpoint = (port >> 4);	/* input */
459 		} else {
460 			port = pconinfo.connections[0].port;
461 			config[0].endpoint = (port & 0xF);	/* output */
462 			config[1].endpoint = (port & 0xF);	/* input */
463 		}
464 #if 0
465 		req.bmRequestType = UT_READ_VENDOR_ENDPOINT;
466 		req.bRequest = UVISOR_GET_PALM_INFORMATION;
467 		USETW(req.wValue, 0);
468 		USETW(req.wIndex, 0);
469 		USETW(req.wLength, UVISOR_GET_PALM_INFORMATION_LEN);
470 		err = usbd_do_request(udev, &req, buffer);
471 		if (err) {
472 			goto done;
473 		}
474 #endif
475 	}
476 	if (sc->sc_flag & UVISOR_FLAG_PALM35) {
477 		/* get the config number */
478 		DPRINTF("getting config info\n");
479 		req.bmRequestType = UT_READ;
480 		req.bRequest = UR_GET_CONFIG;
481 		USETW(req.wValue, 0);
482 		USETW(req.wIndex, 0);
483 		USETW(req.wLength, 1);
484 
485 		err = usbd_do_request(udev, NULL, &req, buffer);
486 		if (err) {
487 			goto done;
488 		}
489 		/* get the interface number */
490 		DPRINTF("get the interface number\n");
491 		req.bmRequestType = UT_READ_DEVICE;
492 		req.bRequest = UR_GET_INTERFACE;
493 		USETW(req.wValue, 0);
494 		USETW(req.wIndex, 0);
495 		USETW(req.wLength, 1);
496 		err = usbd_do_request(udev, NULL, &req, buffer);
497 		if (err) {
498 			goto done;
499 		}
500 	}
501 #if 0
502 	uWord wAvail;
503 
504 	DPRINTF("getting available bytes\n");
505 	req.bmRequestType = UT_READ_VENDOR_ENDPOINT;
506 	req.bRequest = UVISOR_REQUEST_BYTES_AVAILABLE;
507 	USETW(req.wValue, 0);
508 	USETW(req.wIndex, 5);
509 	USETW(req.wLength, sizeof(wAvail));
510 	err = usbd_do_request(udev, NULL, &req, &wAvail);
511 	if (err) {
512 		goto done;
513 	}
514 	DPRINTF("avail=%d\n", UGETW(wAvail));
515 #endif
516 
517 	DPRINTF("done\n");
518 done:
519 	return (err);
520 }
521 
522 static void
523 uvisor_cfg_open(struct ucom_softc *ucom)
524 {
525 	return;
526 }
527 
528 static void
529 uvisor_cfg_close(struct ucom_softc *ucom)
530 {
531 	struct uvisor_softc *sc = ucom->sc_parent;
532 	uint8_t buffer[UVISOR_CONNECTION_INFO_SIZE];
533 	struct usb_device_request req;
534 	usb_error_t err;
535 
536 	req.bmRequestType = UT_READ_VENDOR_ENDPOINT;	/* XXX read? */
537 	req.bRequest = UVISOR_CLOSE_NOTIFICATION;
538 	USETW(req.wValue, 0);
539 	USETW(req.wIndex, 0);
540 	USETW(req.wLength, UVISOR_CONNECTION_INFO_SIZE);
541 
542 	err = ucom_cfg_do_request(sc->sc_udev, &sc->sc_ucom,
543 	    &req, buffer, 0, 1000);
544 	if (err) {
545 		DPRINTFN(0, "close notification failed, error=%s\n",
546 		    usbd_errstr(err));
547 	}
548 }
549 
550 static void
551 uvisor_start_read(struct ucom_softc *ucom)
552 {
553 	struct uvisor_softc *sc = ucom->sc_parent;
554 
555 	usbd_transfer_start(sc->sc_xfer[UVISOR_BULK_DT_RD]);
556 }
557 
558 static void
559 uvisor_stop_read(struct ucom_softc *ucom)
560 {
561 	struct uvisor_softc *sc = ucom->sc_parent;
562 
563 	usbd_transfer_stop(sc->sc_xfer[UVISOR_BULK_DT_RD]);
564 }
565 
566 static void
567 uvisor_start_write(struct ucom_softc *ucom)
568 {
569 	struct uvisor_softc *sc = ucom->sc_parent;
570 
571 	usbd_transfer_start(sc->sc_xfer[UVISOR_BULK_DT_WR]);
572 }
573 
574 static void
575 uvisor_stop_write(struct ucom_softc *ucom)
576 {
577 	struct uvisor_softc *sc = ucom->sc_parent;
578 
579 	usbd_transfer_stop(sc->sc_xfer[UVISOR_BULK_DT_WR]);
580 }
581 
582 static void
583 uvisor_write_callback(struct usb_xfer *xfer, usb_error_t error)
584 {
585 	struct uvisor_softc *sc = usbd_xfer_softc(xfer);
586 	struct usb_page_cache *pc;
587 	uint32_t actlen;
588 	uint8_t x;
589 
590 	switch (USB_GET_STATE(xfer)) {
591 	case USB_ST_SETUP:
592 	case USB_ST_TRANSFERRED:
593 tr_setup:
594 		for (x = 0; x != UVISOROFRAMES; x++) {
595 
596 			usbd_xfer_set_frame_offset(xfer,
597 			    x * UVISOROBUFSIZE, x);
598 
599 			pc = usbd_xfer_get_frame(xfer, x);
600 			if (ucom_get_data(&sc->sc_ucom, pc, 0,
601 			    UVISOROBUFSIZE, &actlen)) {
602 				usbd_xfer_set_frame_len(xfer, x, actlen);
603 			} else {
604 				break;
605 			}
606 		}
607 		/* check for data */
608 		if (x != 0) {
609 			usbd_xfer_set_frames(xfer, x);
610 			usbd_transfer_submit(xfer);
611 		}
612 		break;
613 
614 	default:			/* Error */
615 		if (error != USB_ERR_CANCELLED) {
616 			/* try to clear stall first */
617 			usbd_xfer_set_stall(xfer);
618 			goto tr_setup;
619 		}
620 		break;
621 	}
622 }
623 
624 static void
625 uvisor_read_callback(struct usb_xfer *xfer, usb_error_t error)
626 {
627 	struct uvisor_softc *sc = usbd_xfer_softc(xfer);
628 	struct usb_page_cache *pc;
629 	int actlen;
630 
631 	usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
632 
633 	switch (USB_GET_STATE(xfer)) {
634 	case USB_ST_TRANSFERRED:
635 		pc = usbd_xfer_get_frame(xfer, 0);
636 		ucom_put_data(&sc->sc_ucom, pc, 0, actlen);
637 
638 	case USB_ST_SETUP:
639 tr_setup:
640 		usbd_xfer_set_frame_len(xfer, 0, usbd_xfer_max_len(xfer));
641 		usbd_transfer_submit(xfer);
642 		return;
643 
644 	default:			/* Error */
645 		if (error != USB_ERR_CANCELLED) {
646 			/* try to clear stall first */
647 			usbd_xfer_set_stall(xfer);
648 			goto tr_setup;
649 		}
650 		return;
651 	}
652 }
653