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