Bring in the entire FreeBSD-5 USB infrastructure. As of this commit my
[dragonfly.git] / sys / bus / usb / usbdi.c
1 /*
2  * $NetBSD: usbdi.c,v 1.103 2002/09/27 15:37:38 provos Exp $
3  * $FreeBSD: src/sys/dev/usb/usbdi.c,v 1.84 2003/11/09 23:56:19 joe Exp $
4  * $DragonFly: src/sys/bus/usb/usbdi.c,v 1.6 2003/12/30 01:01:44 dillon Exp $
5  */
6
7 /*
8  * Copyright (c) 1998 The NetBSD Foundation, Inc.
9  * All rights reserved.
10  *
11  * This code is derived from software contributed to The NetBSD Foundation
12  * by Lennart Augustsson (lennart@augustsson.net) at
13  * Carlstedt Research & Technology.
14  *
15  * Redistribution and use in source and binary forms, with or without
16  * modification, are permitted provided that the following conditions
17  * are met:
18  * 1. Redistributions of source code must retain the above copyright
19  *    notice, this list of conditions and the following disclaimer.
20  * 2. Redistributions in binary form must reproduce the above copyright
21  *    notice, this list of conditions and the following disclaimer in the
22  *    documentation and/or other materials provided with the distribution.
23  * 3. All advertising materials mentioning features or use of this software
24  *    must display the following acknowledgement:
25  *        This product includes software developed by the NetBSD
26  *        Foundation, Inc. and its contributors.
27  * 4. Neither the name of The NetBSD Foundation nor the names of its
28  *    contributors may be used to endorse or promote products derived
29  *    from this software without specific prior written permission.
30  *
31  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
32  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
33  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
34  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
35  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
36  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
37  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
38  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
39  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
40  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41  * POSSIBILITY OF SUCH DAMAGE.
42  */
43
44 #include <sys/param.h>
45 #include <sys/systm.h>
46 #if defined(__NetBSD__) || defined(__OpenBSD__)
47 #include <sys/device.h>
48 #elif defined(__FreeBSD__)
49 #include <sys/module.h>
50 #include <sys/bus.h>
51 #include "usb_if.h"
52 #if defined(DIAGNOSTIC) && defined(__i386__)
53 #include <machine/cpu.h>
54 #endif
55 #endif
56 #include <sys/malloc.h>
57 #include <sys/proc.h>
58
59 #include <machine/bus.h>
60
61 #include "usb.h"
62 #include "usbdi.h"
63 #include "usbdi_util.h"
64 #include "usbdivar.h"
65 #include "usb_mem.h"
66
67 #if defined(__FreeBSD__)
68 #include "usb_if.h"
69 #include <machine/clock.h>
70 #define delay(d)        DELAY(d)
71 #endif
72
73 #ifdef USB_DEBUG
74 #define DPRINTF(x)      if (usbdebug) logprintf x
75 #define DPRINTFN(n,x)   if (usbdebug>(n)) logprintf x
76 extern int usbdebug;
77 #else
78 #define DPRINTF(x)
79 #define DPRINTFN(n,x)
80 #endif
81
82 Static usbd_status usbd_ar_pipe(usbd_pipe_handle pipe);
83 Static void usbd_do_request_async_cb
84         (usbd_xfer_handle, usbd_private_handle, usbd_status);
85 Static void usbd_start_next(usbd_pipe_handle pipe);
86 Static usbd_status usbd_open_pipe_ival
87         (usbd_interface_handle, u_int8_t, u_int8_t, usbd_pipe_handle *, int);
88 Static int usbd_xfer_isread(usbd_xfer_handle xfer);
89
90 Static int usbd_nbuses = 0;
91
92 void
93 usbd_init(void)
94 {
95         usbd_nbuses++;
96 }
97
98 void
99 usbd_finish(void)
100 {
101         --usbd_nbuses;
102 }
103
104 static __inline int
105 usbd_xfer_isread(usbd_xfer_handle xfer)
106 {
107         if (xfer->rqflags & URQ_REQUEST)
108                 return (xfer->request.bmRequestType & UT_READ);
109         else
110                 return (xfer->pipe->endpoint->edesc->bEndpointAddress &
111                         UE_DIR_IN);
112 }
113
114 #ifdef USB_DEBUG
115 void
116 usbd_dump_iface(struct usbd_interface *iface)
117 {
118         printf("usbd_dump_iface: iface=%p\n", iface);
119         if (iface == NULL)
120                 return;
121         printf(" device=%p idesc=%p index=%d altindex=%d priv=%p\n",
122                iface->device, iface->idesc, iface->index, iface->altindex,
123                iface->priv);
124 }
125
126 void
127 usbd_dump_device(struct usbd_device *dev)
128 {
129         printf("usbd_dump_device: dev=%p\n", dev);
130         if (dev == NULL)
131                 return;
132         printf(" bus=%p default_pipe=%p\n", dev->bus, dev->default_pipe);
133         printf(" address=%d config=%d depth=%d speed=%d self_powered=%d "
134                "power=%d langid=%d\n",
135                dev->address, dev->config, dev->depth, dev->speed,
136                dev->self_powered, dev->power, dev->langid);
137 }
138
139 void
140 usbd_dump_endpoint(struct usbd_endpoint *endp)
141 {
142         printf("usbd_dump_endpoint: endp=%p\n", endp);
143         if (endp == NULL)
144                 return;
145         printf(" edesc=%p refcnt=%d\n", endp->edesc, endp->refcnt);
146         if (endp->edesc)
147                 printf(" bEndpointAddress=0x%02x\n",
148                        endp->edesc->bEndpointAddress);
149 }
150
151 void
152 usbd_dump_queue(usbd_pipe_handle pipe)
153 {
154         usbd_xfer_handle xfer;
155
156         printf("usbd_dump_queue: pipe=%p\n", pipe);
157         SIMPLEQ_FOREACH(xfer, &pipe->queue, next) {
158                 printf("  xfer=%p\n", xfer);
159         }
160 }
161
162 void
163 usbd_dump_pipe(usbd_pipe_handle pipe)
164 {
165         printf("usbd_dump_pipe: pipe=%p\n", pipe);
166         if (pipe == NULL)
167                 return;
168         usbd_dump_iface(pipe->iface);
169         usbd_dump_device(pipe->device);
170         usbd_dump_endpoint(pipe->endpoint);
171         printf(" (usbd_dump_pipe:)\n refcnt=%d running=%d aborting=%d\n",
172                pipe->refcnt, pipe->running, pipe->aborting);
173         printf(" intrxfer=%p, repeat=%d, interval=%d\n",
174                pipe->intrxfer, pipe->repeat, pipe->interval);
175 }
176 #endif
177
178 usbd_status
179 usbd_open_pipe(usbd_interface_handle iface, u_int8_t address,
180                u_int8_t flags, usbd_pipe_handle *pipe)
181 {
182         return (usbd_open_pipe_ival(iface, address, flags, pipe,
183                                     USBD_DEFAULT_INTERVAL));
184 }
185
186 usbd_status
187 usbd_open_pipe_ival(usbd_interface_handle iface, u_int8_t address,
188                     u_int8_t flags, usbd_pipe_handle *pipe, int ival)
189 {
190         usbd_pipe_handle p;
191         struct usbd_endpoint *ep;
192         usbd_status err;
193         int i;
194
195         DPRINTFN(3,("usbd_open_pipe: iface=%p address=0x%x flags=0x%x\n",
196                     iface, address, flags));
197
198         for (i = 0; i < iface->idesc->bNumEndpoints; i++) {
199                 ep = &iface->endpoints[i];
200                 if (ep->edesc == NULL)
201                         return (USBD_IOERROR);
202                 if (ep->edesc->bEndpointAddress == address)
203                         goto found;
204         }
205         return (USBD_BAD_ADDRESS);
206  found:
207         if ((flags & USBD_EXCLUSIVE_USE) && ep->refcnt != 0)
208                 return (USBD_IN_USE);
209         err = usbd_setup_pipe(iface->device, iface, ep, ival, &p);
210         if (err)
211                 return (err);
212         LIST_INSERT_HEAD(&iface->pipes, p, next);
213         *pipe = p;
214         return (USBD_NORMAL_COMPLETION);
215 }
216
217 usbd_status
218 usbd_open_pipe_intr(usbd_interface_handle iface, u_int8_t address,
219                     u_int8_t flags, usbd_pipe_handle *pipe,
220                     usbd_private_handle priv, void *buffer, u_int32_t len,
221                     usbd_callback cb, int ival)
222 {
223         usbd_status err;
224         usbd_xfer_handle xfer;
225         usbd_pipe_handle ipipe;
226
227         DPRINTFN(3,("usbd_open_pipe_intr: address=0x%x flags=0x%x len=%d\n",
228                     address, flags, len));
229
230         err = usbd_open_pipe_ival(iface, address, USBD_EXCLUSIVE_USE,
231                                   &ipipe, ival);
232         if (err)
233                 return (err);
234         xfer = usbd_alloc_xfer(iface->device);
235         if (xfer == NULL) {
236                 err = USBD_NOMEM;
237                 goto bad1;
238         }
239         usbd_setup_xfer(xfer, ipipe, priv, buffer, len, flags,
240             USBD_NO_TIMEOUT, cb);
241         ipipe->intrxfer = xfer;
242         ipipe->repeat = 1;
243         err = usbd_transfer(xfer);
244         *pipe = ipipe;
245         if (err != USBD_IN_PROGRESS)
246                 goto bad2;
247         return (USBD_NORMAL_COMPLETION);
248
249  bad2:
250         ipipe->intrxfer = NULL;
251         ipipe->repeat = 0;
252         usbd_free_xfer(xfer);
253  bad1:
254         usbd_close_pipe(ipipe);
255         return (err);
256 }
257
258 usbd_status
259 usbd_close_pipe(usbd_pipe_handle pipe)
260 {
261 #ifdef DIAGNOSTIC
262         if (pipe == NULL) {
263                 printf("usbd_close_pipe: pipe==NULL\n");
264                 return (USBD_NORMAL_COMPLETION);
265         }
266 #endif
267
268         if (--pipe->refcnt != 0)
269                 return (USBD_NORMAL_COMPLETION);
270         if (! SIMPLEQ_EMPTY(&pipe->queue))
271                 return (USBD_PENDING_REQUESTS);
272         LIST_REMOVE(pipe, next);
273         pipe->endpoint->refcnt--;
274         pipe->methods->close(pipe);
275         if (pipe->intrxfer != NULL)
276                 usbd_free_xfer(pipe->intrxfer);
277         free(pipe, M_USB);
278         return (USBD_NORMAL_COMPLETION);
279 }
280
281 usbd_status
282 usbd_transfer(usbd_xfer_handle xfer)
283 {
284         usbd_pipe_handle pipe = xfer->pipe;
285         usb_dma_t *dmap = &xfer->dmabuf;
286         usbd_status err;
287         u_int size;
288         int s;
289
290         DPRINTFN(5,("usbd_transfer: xfer=%p, flags=%d, pipe=%p, running=%d\n",
291                     xfer, xfer->flags, pipe, pipe->running));
292 #ifdef USB_DEBUG
293         if (usbdebug > 5)
294                 usbd_dump_queue(pipe);
295 #endif
296         xfer->done = 0;
297
298         if (pipe->aborting)
299                 return (USBD_CANCELLED);
300
301         size = xfer->length;
302         /* If there is no buffer, allocate one. */
303         if (!(xfer->rqflags & URQ_DEV_DMABUF) && size != 0) {
304                 struct usbd_bus *bus = pipe->device->bus;
305
306 #ifdef DIAGNOSTIC
307                 if (xfer->rqflags & URQ_AUTO_DMABUF)
308                         printf("usbd_transfer: has old buffer!\n");
309 #endif
310                 err = bus->methods->allocm(bus, dmap, size);
311                 if (err)
312                         return (err);
313                 xfer->rqflags |= URQ_AUTO_DMABUF;
314         }
315
316         /* Copy data if going out. */
317         if (!(xfer->flags & USBD_NO_COPY) && size != 0 &&
318             !usbd_xfer_isread(xfer))
319                 memcpy(KERNADDR(dmap, 0), xfer->buffer, size);
320
321         err = pipe->methods->transfer(xfer);
322
323         if (err != USBD_IN_PROGRESS && err) {
324                 /* The transfer has not been queued, so free buffer. */
325                 if (xfer->rqflags & URQ_AUTO_DMABUF) {
326                         struct usbd_bus *bus = pipe->device->bus;
327
328                         bus->methods->freem(bus, &xfer->dmabuf);
329                         xfer->rqflags &= ~URQ_AUTO_DMABUF;
330                 }
331         }
332
333         if (!(xfer->flags & USBD_SYNCHRONOUS))
334                 return (err);
335
336         /* Sync transfer, wait for completion. */
337         if (err != USBD_IN_PROGRESS)
338                 return (err);
339         s = splusb();
340         if (!xfer->done) {
341                 if (pipe->device->bus->use_polling)
342                         panic("usbd_transfer: not done\n");
343                 tsleep(xfer, 0, "usbsyn", 0);
344         }
345         splx(s);
346         return (xfer->status);
347 }
348
349 /* Like usbd_transfer(), but waits for completion. */
350 usbd_status
351 usbd_sync_transfer(usbd_xfer_handle xfer)
352 {
353         xfer->flags |= USBD_SYNCHRONOUS;
354         return (usbd_transfer(xfer));
355 }
356
357 void *
358 usbd_alloc_buffer(usbd_xfer_handle xfer, u_int32_t size)
359 {
360         struct usbd_bus *bus = xfer->device->bus;
361         usbd_status err;
362
363 #ifdef DIAGNOSTIC
364         if (xfer->rqflags & (URQ_DEV_DMABUF | URQ_AUTO_DMABUF))
365                 printf("usbd_alloc_buffer: xfer already has a buffer\n");
366 #endif
367         err = bus->methods->allocm(bus, &xfer->dmabuf, size);
368         if (err)
369                 return (NULL);
370         xfer->rqflags |= URQ_DEV_DMABUF;
371         return (KERNADDR(&xfer->dmabuf, 0));
372 }
373
374 void
375 usbd_free_buffer(usbd_xfer_handle xfer)
376 {
377 #ifdef DIAGNOSTIC
378         if (!(xfer->rqflags & (URQ_DEV_DMABUF | URQ_AUTO_DMABUF))) {
379                 printf("usbd_free_buffer: no buffer\n");
380                 return;
381         }
382 #endif
383         xfer->rqflags &= ~(URQ_DEV_DMABUF | URQ_AUTO_DMABUF);
384         xfer->device->bus->methods->freem(xfer->device->bus, &xfer->dmabuf);
385 }
386
387 void *
388 usbd_get_buffer(usbd_xfer_handle xfer)
389 {
390         if (!(xfer->rqflags & URQ_DEV_DMABUF))
391                 return (0);
392         return (KERNADDR(&xfer->dmabuf, 0));
393 }
394
395 usbd_xfer_handle
396 usbd_alloc_xfer(usbd_device_handle dev)
397 {
398         usbd_xfer_handle xfer;
399
400         xfer = dev->bus->methods->allocx(dev->bus);
401         if (xfer == NULL)
402                 return (NULL);
403         xfer->device = dev;
404         usb_callout_init(xfer->timeout_handle);
405         DPRINTFN(5,("usbd_alloc_xfer() = %p\n", xfer));
406         return (xfer);
407 }
408
409 usbd_status
410 usbd_free_xfer(usbd_xfer_handle xfer)
411 {
412         DPRINTFN(5,("usbd_free_xfer: %p\n", xfer));
413         if (xfer->rqflags & (URQ_DEV_DMABUF | URQ_AUTO_DMABUF))
414                 usbd_free_buffer(xfer);
415 #if defined(__NetBSD__) && defined(DIAGNOSTIC)
416         if (callout_pending(&xfer->timeout_handle)) {
417                 callout_stop(&xfer->timeout_handle);
418                 printf("usbd_free_xfer: timout_handle pending");
419         }
420 #endif
421         xfer->device->bus->methods->freex(xfer->device->bus, xfer);
422         return (USBD_NORMAL_COMPLETION);
423 }
424
425 void
426 usbd_setup_xfer(usbd_xfer_handle xfer, usbd_pipe_handle pipe,
427                 usbd_private_handle priv, void *buffer, u_int32_t length,
428                 u_int16_t flags, u_int32_t timeout,
429                 usbd_callback callback)
430 {
431         xfer->pipe = pipe;
432         xfer->priv = priv;
433         xfer->buffer = buffer;
434         xfer->length = length;
435         xfer->actlen = 0;
436         xfer->flags = flags;
437         xfer->timeout = timeout;
438         xfer->status = USBD_NOT_STARTED;
439         xfer->callback = callback;
440         xfer->rqflags &= ~URQ_REQUEST;
441         xfer->nframes = 0;
442 }
443
444 void
445 usbd_setup_default_xfer(usbd_xfer_handle xfer, usbd_device_handle dev,
446                         usbd_private_handle priv, u_int32_t timeout,
447                         usb_device_request_t *req, void *buffer,
448                         u_int32_t length, u_int16_t flags,
449                         usbd_callback callback)
450 {
451         xfer->pipe = dev->default_pipe;
452         xfer->priv = priv;
453         xfer->buffer = buffer;
454         xfer->length = length;
455         xfer->actlen = 0;
456         xfer->flags = flags;
457         xfer->timeout = timeout;
458         xfer->status = USBD_NOT_STARTED;
459         xfer->callback = callback;
460         xfer->request = *req;
461         xfer->rqflags |= URQ_REQUEST;
462         xfer->nframes = 0;
463 }
464
465 void
466 usbd_setup_isoc_xfer(usbd_xfer_handle xfer, usbd_pipe_handle pipe,
467                      usbd_private_handle priv, u_int16_t *frlengths,
468                      u_int32_t nframes, u_int16_t flags, usbd_callback callback)
469 {
470         xfer->pipe = pipe;
471         xfer->priv = priv;
472         xfer->buffer = 0;
473         xfer->length = 0;
474         xfer->actlen = 0;
475         xfer->flags = flags;
476         xfer->timeout = USBD_NO_TIMEOUT;
477         xfer->status = USBD_NOT_STARTED;
478         xfer->callback = callback;
479         xfer->rqflags &= ~URQ_REQUEST;
480         xfer->frlengths = frlengths;
481         xfer->nframes = nframes;
482 }
483
484 void
485 usbd_get_xfer_status(usbd_xfer_handle xfer, usbd_private_handle *priv,
486                      void **buffer, u_int32_t *count, usbd_status *status)
487 {
488         if (priv != NULL)
489                 *priv = xfer->priv;
490         if (buffer != NULL)
491                 *buffer = xfer->buffer;
492         if (count != NULL)
493                 *count = xfer->actlen;
494         if (status != NULL)
495                 *status = xfer->status;
496 }
497
498 usb_config_descriptor_t *
499 usbd_get_config_descriptor(usbd_device_handle dev)
500 {
501 #ifdef DIAGNOSTIC
502         if (dev == NULL) {
503                 printf("usbd_get_config_descriptor: dev == NULL\n");
504                 return (NULL);
505         }
506 #endif
507         return (dev->cdesc);
508 }
509
510 usb_interface_descriptor_t *
511 usbd_get_interface_descriptor(usbd_interface_handle iface)
512 {
513 #ifdef DIAGNOSTIC
514         if (iface == NULL) {
515                 printf("usbd_get_interface_descriptor: dev == NULL\n");
516                 return (NULL);
517         }
518 #endif
519         return (iface->idesc);
520 }
521
522 usb_device_descriptor_t *
523 usbd_get_device_descriptor(usbd_device_handle dev)
524 {
525         return (&dev->ddesc);
526 }
527
528 usb_endpoint_descriptor_t *
529 usbd_interface2endpoint_descriptor(usbd_interface_handle iface, u_int8_t index)
530 {
531         if (index >= iface->idesc->bNumEndpoints)
532                 return (0);
533         return (iface->endpoints[index].edesc);
534 }
535
536 usbd_status
537 usbd_abort_pipe(usbd_pipe_handle pipe)
538 {
539         usbd_status err;
540         int s;
541
542 #ifdef DIAGNOSTIC
543         if (pipe == NULL) {
544                 printf("usbd_close_pipe: pipe==NULL\n");
545                 return (USBD_NORMAL_COMPLETION);
546         }
547 #endif
548         s = splusb();
549         err = usbd_ar_pipe(pipe);
550         splx(s);
551         return (err);
552 }
553
554 usbd_status
555 usbd_clear_endpoint_stall(usbd_pipe_handle pipe)
556 {
557         usbd_device_handle dev = pipe->device;
558         usb_device_request_t req;
559         usbd_status err;
560
561         DPRINTFN(8, ("usbd_clear_endpoint_stall\n"));
562
563         /*
564          * Clearing en endpoint stall resets the endpoint toggle, so
565          * do the same to the HC toggle.
566          */
567         pipe->methods->cleartoggle(pipe);
568
569         req.bmRequestType = UT_WRITE_ENDPOINT;
570         req.bRequest = UR_CLEAR_FEATURE;
571         USETW(req.wValue, UF_ENDPOINT_HALT);
572         USETW(req.wIndex, pipe->endpoint->edesc->bEndpointAddress);
573         USETW(req.wLength, 0);
574         err = usbd_do_request(dev, &req, 0);
575 #if 0
576 XXX should we do this?
577         if (!err) {
578                 pipe->state = USBD_PIPE_ACTIVE;
579                 /* XXX activate pipe */
580         }
581 #endif
582         return (err);
583 }
584
585 usbd_status
586 usbd_clear_endpoint_stall_async(usbd_pipe_handle pipe)
587 {
588         usbd_device_handle dev = pipe->device;
589         usb_device_request_t req;
590         usbd_status err;
591
592         pipe->methods->cleartoggle(pipe);
593
594         req.bmRequestType = UT_WRITE_ENDPOINT;
595         req.bRequest = UR_CLEAR_FEATURE;
596         USETW(req.wValue, UF_ENDPOINT_HALT);
597         USETW(req.wIndex, pipe->endpoint->edesc->bEndpointAddress);
598         USETW(req.wLength, 0);
599         err = usbd_do_request_async(dev, &req, 0);
600         return (err);
601 }
602
603 void
604 usbd_clear_endpoint_toggle(usbd_pipe_handle pipe)
605 {
606         pipe->methods->cleartoggle(pipe);
607 }
608
609 usbd_status
610 usbd_endpoint_count(usbd_interface_handle iface, u_int8_t *count)
611 {
612 #ifdef DIAGNOSTIC
613         if (iface == NULL || iface->idesc == NULL) {
614                 printf("usbd_endpoint_count: NULL pointer\n");
615                 return (USBD_INVAL);
616         }
617 #endif
618         *count = iface->idesc->bNumEndpoints;
619         return (USBD_NORMAL_COMPLETION);
620 }
621
622 usbd_status
623 usbd_interface_count(usbd_device_handle dev, u_int8_t *count)
624 {
625         if (dev->cdesc == NULL)
626                 return (USBD_NOT_CONFIGURED);
627         *count = dev->cdesc->bNumInterface;
628         return (USBD_NORMAL_COMPLETION);
629 }
630
631 void
632 usbd_interface2device_handle(usbd_interface_handle iface,
633                              usbd_device_handle *dev)
634 {
635         *dev = iface->device;
636 }
637
638 usbd_status
639 usbd_device2interface_handle(usbd_device_handle dev,
640                              u_int8_t ifaceno, usbd_interface_handle *iface)
641 {
642         if (dev->cdesc == NULL)
643                 return (USBD_NOT_CONFIGURED);
644         if (ifaceno >= dev->cdesc->bNumInterface)
645                 return (USBD_INVAL);
646         *iface = &dev->ifaces[ifaceno];
647         return (USBD_NORMAL_COMPLETION);
648 }
649
650 usbd_device_handle
651 usbd_pipe2device_handle(usbd_pipe_handle pipe)
652 {
653         return (pipe->device);
654 }
655
656 /* XXXX use altno */
657 usbd_status
658 usbd_set_interface(usbd_interface_handle iface, int altidx)
659 {
660         usb_device_request_t req;
661         usbd_status err;
662         void *endpoints;
663
664         if (LIST_FIRST(&iface->pipes) != 0)
665                 return (USBD_IN_USE);
666
667         endpoints = iface->endpoints;
668         err = usbd_fill_iface_data(iface->device, iface->index, altidx);
669         if (err)
670                 return (err);
671
672         /* new setting works, we can free old endpoints */
673         if (endpoints != NULL)
674                 free(endpoints, M_USB);
675
676 #ifdef DIAGNOSTIC
677         if (iface->idesc == NULL) {
678                 printf("usbd_set_interface: NULL pointer\n");
679                 return (USBD_INVAL);
680         }
681 #endif
682
683         req.bmRequestType = UT_WRITE_INTERFACE;
684         req.bRequest = UR_SET_INTERFACE;
685         USETW(req.wValue, iface->idesc->bAlternateSetting);
686         USETW(req.wIndex, iface->idesc->bInterfaceNumber);
687         USETW(req.wLength, 0);
688         return (usbd_do_request(iface->device, &req, 0));
689 }
690
691 int
692 usbd_get_no_alts(usb_config_descriptor_t *cdesc, int ifaceno)
693 {
694         char *p = (char *)cdesc;
695         char *end = p + UGETW(cdesc->wTotalLength);
696         usb_interface_descriptor_t *d;
697         int n;
698
699         for (n = 0; p < end; p += d->bLength) {
700                 d = (usb_interface_descriptor_t *)p;
701                 if (p + d->bLength <= end &&
702                     d->bDescriptorType == UDESC_INTERFACE &&
703                     d->bInterfaceNumber == ifaceno)
704                         n++;
705         }
706         return (n);
707 }
708
709 int
710 usbd_get_interface_altindex(usbd_interface_handle iface)
711 {
712         return (iface->altindex);
713 }
714
715 usbd_status
716 usbd_get_interface(usbd_interface_handle iface, u_int8_t *aiface)
717 {
718         usb_device_request_t req;
719
720         req.bmRequestType = UT_READ_INTERFACE;
721         req.bRequest = UR_GET_INTERFACE;
722         USETW(req.wValue, 0);
723         USETW(req.wIndex, iface->idesc->bInterfaceNumber);
724         USETW(req.wLength, 1);
725         return (usbd_do_request(iface->device, &req, aiface));
726 }
727
728 /*** Internal routines ***/
729
730 /* Dequeue all pipe operations, called at splusb(). */
731 Static usbd_status
732 usbd_ar_pipe(usbd_pipe_handle pipe)
733 {
734         usbd_xfer_handle xfer;
735
736         SPLUSBCHECK;
737
738         DPRINTFN(2,("usbd_ar_pipe: pipe=%p\n", pipe));
739 #ifdef USB_DEBUG
740         if (usbdebug > 5)
741                 usbd_dump_queue(pipe);
742 #endif
743         pipe->repeat = 0;
744         pipe->aborting = 1;
745         while ((xfer = SIMPLEQ_FIRST(&pipe->queue)) != NULL) {
746                 DPRINTFN(2,("usbd_ar_pipe: pipe=%p xfer=%p (methods=%p)\n",
747                             pipe, xfer, pipe->methods));
748                 /* Make the HC abort it (and invoke the callback). */
749                 pipe->methods->abort(xfer);
750                 /* XXX only for non-0 usbd_clear_endpoint_stall(pipe); */
751         }
752         pipe->aborting = 0;
753         return (USBD_NORMAL_COMPLETION);
754 }
755
756 /* Called at splusb() */
757 void
758 usb_transfer_complete(usbd_xfer_handle xfer)
759 {
760         usbd_pipe_handle pipe = xfer->pipe;
761         usb_dma_t *dmap = &xfer->dmabuf;
762         int repeat = pipe->repeat;
763         int polling;
764
765         SPLUSBCHECK;
766
767         DPRINTFN(5, ("usb_transfer_complete: pipe=%p xfer=%p status=%d "
768                      "actlen=%d\n", pipe, xfer, xfer->status, xfer->actlen));
769 #ifdef DIAGNOSTIC
770         if (xfer->busy_free != XFER_ONQU) {
771                 printf("usb_transfer_complete: xfer=%p not busy 0x%08x\n",
772                        xfer, xfer->busy_free);
773                 return;
774         }
775 #endif
776
777 #ifdef DIAGNOSTIC
778         if (pipe == NULL) {
779                 printf("usbd_transfer_cb: pipe==0, xfer=%p\n", xfer);
780                 return;
781         }
782 #endif
783         polling = pipe->device->bus->use_polling;
784         /* XXXX */
785         if (polling)
786                 pipe->running = 0;
787
788         if (!(xfer->flags & USBD_NO_COPY) && xfer->actlen != 0 &&
789             usbd_xfer_isread(xfer)) {
790 #ifdef DIAGNOSTIC
791                 if (xfer->actlen > xfer->length) {
792                         printf("usb_transfer_complete: actlen > len %d > %d\n",
793                                xfer->actlen, xfer->length);
794                         xfer->actlen = xfer->length;
795                 }
796 #endif
797                 memcpy(xfer->buffer, KERNADDR(dmap, 0), xfer->actlen);
798         }
799
800         /* if we allocated the buffer in usbd_transfer() we free it here. */
801         if (xfer->rqflags & URQ_AUTO_DMABUF) {
802                 if (!repeat) {
803                         struct usbd_bus *bus = pipe->device->bus;
804                         bus->methods->freem(bus, dmap);
805                         xfer->rqflags &= ~URQ_AUTO_DMABUF;
806                 }
807         }
808
809         if (!repeat) {
810                 /* Remove request from queue. */
811 #ifdef DIAGNOSTIC
812                 if (xfer != SIMPLEQ_FIRST(&pipe->queue))
813                         printf("usb_transfer_complete: bad dequeue %p != %p\n",
814                                xfer, SIMPLEQ_FIRST(&pipe->queue));
815                 xfer->busy_free = XFER_BUSY;
816 #endif
817                 SIMPLEQ_REMOVE_HEAD(&pipe->queue, next);
818         }
819         DPRINTFN(5,("usb_transfer_complete: repeat=%d new head=%p\n",
820                     repeat, SIMPLEQ_FIRST(&pipe->queue)));
821
822         /* Count completed transfers. */
823         ++pipe->device->bus->stats.uds_requests
824                 [pipe->endpoint->edesc->bmAttributes & UE_XFERTYPE];
825
826         xfer->done = 1;
827         if (!xfer->status && xfer->actlen < xfer->length &&
828             !(xfer->flags & USBD_SHORT_XFER_OK)) {
829                 DPRINTFN(-1,("usbd_transfer_cb: short transfer %d<%d\n",
830                              xfer->actlen, xfer->length));
831                 xfer->status = USBD_SHORT_XFER;
832         }
833
834         if (xfer->callback)
835                 xfer->callback(xfer, xfer->priv, xfer->status);
836
837 #ifdef DIAGNOSTIC
838         if (pipe->methods->done != NULL)
839                 pipe->methods->done(xfer);
840         else
841                 printf("usb_transfer_complete: pipe->methods->done == NULL\n");
842 #else
843         pipe->methods->done(xfer);
844 #endif
845
846         if ((xfer->flags & USBD_SYNCHRONOUS) && !polling)
847                 wakeup(xfer);
848
849         if (!repeat) {
850                 /* XXX should we stop the queue on all errors? */
851                 if ((xfer->status == USBD_CANCELLED ||
852                      xfer->status == USBD_TIMEOUT) &&
853                     pipe->iface != NULL)                /* not control pipe */
854                         pipe->running = 0;
855                 else
856                         usbd_start_next(pipe);
857         }
858 }
859
860 usbd_status
861 usb_insert_transfer(usbd_xfer_handle xfer)
862 {
863         usbd_pipe_handle pipe = xfer->pipe;
864         usbd_status err;
865         int s;
866
867         DPRINTFN(5,("usb_insert_transfer: pipe=%p running=%d timeout=%d\n",
868                     pipe, pipe->running, xfer->timeout));
869 #ifdef DIAGNOSTIC
870         if (xfer->busy_free != XFER_BUSY) {
871                 printf("usb_insert_transfer: xfer=%p not busy 0x%08x\n",
872                        xfer, xfer->busy_free);
873                 return (USBD_INVAL);
874         }
875         xfer->busy_free = XFER_ONQU;
876 #endif
877         s = splusb();
878         SIMPLEQ_INSERT_TAIL(&pipe->queue, xfer, next);
879         if (pipe->running)
880                 err = USBD_IN_PROGRESS;
881         else {
882                 pipe->running = 1;
883                 err = USBD_NORMAL_COMPLETION;
884         }
885         splx(s);
886         return (err);
887 }
888
889 /* Called at splusb() */
890 void
891 usbd_start_next(usbd_pipe_handle pipe)
892 {
893         usbd_xfer_handle xfer;
894         usbd_status err;
895
896         SPLUSBCHECK;
897
898 #ifdef DIAGNOSTIC
899         if (pipe == NULL) {
900                 printf("usbd_start_next: pipe == NULL\n");
901                 return;
902         }
903         if (pipe->methods == NULL || pipe->methods->start == NULL) {
904                 printf("usbd_start_next: pipe=%p no start method\n", pipe);
905                 return;
906         }
907 #endif
908
909         /* Get next request in queue. */
910         xfer = SIMPLEQ_FIRST(&pipe->queue);
911         DPRINTFN(5, ("usbd_start_next: pipe=%p, xfer=%p\n", pipe, xfer));
912         if (xfer == NULL) {
913                 pipe->running = 0;
914         } else {
915                 err = pipe->methods->start(xfer);
916                 if (err != USBD_IN_PROGRESS) {
917                         printf("usbd_start_next: error=%d\n", err);
918                         pipe->running = 0;
919                         /* XXX do what? */
920                 }
921         }
922 }
923
924
925 usbd_status
926 usbd_do_request(usbd_device_handle dev, usb_device_request_t *req, void *data)
927 {
928         return (usbd_do_request_flags(dev, req, data, 0, 0,
929                                       USBD_DEFAULT_TIMEOUT));
930 }
931
932 usbd_status
933 usbd_do_request_flags(usbd_device_handle dev, usb_device_request_t *req,
934                       void *data, u_int16_t flags, int *actlen, u_int32_t timo)
935 {
936         return (usbd_do_request_flags_pipe(dev, dev->default_pipe, req,
937                                            data, flags, actlen, timo));
938 }
939
940 usbd_status
941 usbd_do_request_flags_pipe(usbd_device_handle dev, usbd_pipe_handle pipe,
942         usb_device_request_t *req, void *data, u_int16_t flags, int *actlen,
943         u_int32_t timeout)
944 {
945         usbd_xfer_handle xfer;
946         usbd_status err;
947
948 #ifdef DIAGNOSTIC
949 #if defined(__i386__) && defined(__FreeBSD__)
950         KASSERT(curthread->td_intr_nesting_level == 0,
951                 ("usbd_do_request: in interrupt context"));
952 #endif
953         if (dev->bus->intr_context) {
954                 printf("usbd_do_request: not in process context\n");
955                 return (USBD_INVAL);
956         }
957 #endif
958
959         xfer = usbd_alloc_xfer(dev);
960         if (xfer == NULL)
961                 return (USBD_NOMEM);
962         usbd_setup_default_xfer(xfer, dev, 0, timeout, req,
963                                 data, UGETW(req->wLength), flags, 0);
964         xfer->pipe = pipe;
965         err = usbd_sync_transfer(xfer);
966 #if defined(USB_DEBUG) || defined(DIAGNOSTIC)
967         if (xfer->actlen > xfer->length)
968                 DPRINTF(("usbd_do_request: overrun addr=%d type=0x%02x req=0x"
969                          "%02x val=%d index=%d rlen=%d length=%d actlen=%d\n",
970                          dev->address, xfer->request.bmRequestType,
971                          xfer->request.bRequest, UGETW(xfer->request.wValue),
972                          UGETW(xfer->request.wIndex),
973                          UGETW(xfer->request.wLength),
974                          xfer->length, xfer->actlen));
975 #endif
976         if (actlen != NULL)
977                 *actlen = xfer->actlen;
978         if (err == USBD_STALLED) {
979                 /*
980                  * The control endpoint has stalled.  Control endpoints
981                  * should not halt, but some may do so anyway so clear
982                  * any halt condition.
983                  */
984                 usb_device_request_t treq;
985                 usb_status_t status;
986                 u_int16_t s;
987                 usbd_status nerr;
988
989                 treq.bmRequestType = UT_READ_ENDPOINT;
990                 treq.bRequest = UR_GET_STATUS;
991                 USETW(treq.wValue, 0);
992                 USETW(treq.wIndex, 0);
993                 USETW(treq.wLength, sizeof(usb_status_t));
994                 usbd_setup_default_xfer(xfer, dev, 0, USBD_DEFAULT_TIMEOUT,
995                                            &treq, &status,sizeof(usb_status_t),
996                                            0, 0);
997                 nerr = usbd_sync_transfer(xfer);
998                 if (nerr)
999                         goto bad;
1000                 s = UGETW(status.wStatus);
1001                 DPRINTF(("usbd_do_request: status = 0x%04x\n", s));
1002                 if (!(s & UES_HALT))
1003                         goto bad;
1004                 treq.bmRequestType = UT_WRITE_ENDPOINT;
1005                 treq.bRequest = UR_CLEAR_FEATURE;
1006                 USETW(treq.wValue, UF_ENDPOINT_HALT);
1007                 USETW(treq.wIndex, 0);
1008                 USETW(treq.wLength, 0);
1009                 usbd_setup_default_xfer(xfer, dev, 0, USBD_DEFAULT_TIMEOUT,
1010                                            &treq, &status, 0, 0, 0);
1011                 nerr = usbd_sync_transfer(xfer);
1012                 if (nerr)
1013                         goto bad;
1014         }
1015
1016  bad:
1017         usbd_free_xfer(xfer);
1018         return (err);
1019 }
1020
1021 void
1022 usbd_do_request_async_cb(usbd_xfer_handle xfer, usbd_private_handle priv,
1023                          usbd_status status)
1024 {
1025 #if defined(USB_DEBUG) || defined(DIAGNOSTIC)
1026         if (xfer->actlen > xfer->length)
1027                 DPRINTF(("usbd_do_request: overrun addr=%d type=0x%02x req=0x"
1028                          "%02x val=%d index=%d rlen=%d length=%d actlen=%d\n",
1029                          xfer->pipe->device->address,
1030                          xfer->request.bmRequestType,
1031                          xfer->request.bRequest, UGETW(xfer->request.wValue),
1032                          UGETW(xfer->request.wIndex),
1033                          UGETW(xfer->request.wLength),
1034                          xfer->length, xfer->actlen));
1035 #endif
1036         usbd_free_xfer(xfer);
1037 }
1038
1039 /*
1040  * Execute a request without waiting for completion.
1041  * Can be used from interrupt context.
1042  */
1043 usbd_status
1044 usbd_do_request_async(usbd_device_handle dev, usb_device_request_t *req,
1045                       void *data)
1046 {
1047         usbd_xfer_handle xfer;
1048         usbd_status err;
1049
1050         xfer = usbd_alloc_xfer(dev);
1051         if (xfer == NULL)
1052                 return (USBD_NOMEM);
1053         usbd_setup_default_xfer(xfer, dev, 0, USBD_DEFAULT_TIMEOUT, req,
1054             data, UGETW(req->wLength), 0, usbd_do_request_async_cb);
1055         err = usbd_transfer(xfer);
1056         if (err != USBD_IN_PROGRESS) {
1057                 usbd_free_xfer(xfer);
1058                 return (err);
1059         }
1060         return (USBD_NORMAL_COMPLETION);
1061 }
1062
1063 const struct usbd_quirks *
1064 usbd_get_quirks(usbd_device_handle dev)
1065 {
1066 #ifdef DIAGNOSTIC
1067         if (dev == NULL) {
1068                 printf("usbd_get_quirks: dev == NULL\n");
1069                 return 0;
1070         }
1071 #endif
1072         return (dev->quirks);
1073 }
1074
1075 /* XXX do periodic free() of free list */
1076
1077 /*
1078  * Called from keyboard driver when in polling mode.
1079  */
1080 void
1081 usbd_dopoll(usbd_interface_handle iface)
1082 {
1083         iface->device->bus->methods->do_poll(iface->device->bus);
1084 }
1085
1086 void
1087 usbd_set_polling(usbd_device_handle dev, int on)
1088 {
1089         if (on)
1090                 dev->bus->use_polling++;
1091         else
1092                 dev->bus->use_polling--;
1093         /* When polling we need to make sure there is nothing pending to do. */
1094         if (dev->bus->use_polling)
1095                 dev->bus->methods->soft_intr(dev->bus);
1096 }
1097
1098
1099 usb_endpoint_descriptor_t *
1100 usbd_get_endpoint_descriptor(usbd_interface_handle iface, u_int8_t address)
1101 {
1102         struct usbd_endpoint *ep;
1103         int i;
1104
1105         for (i = 0; i < iface->idesc->bNumEndpoints; i++) {
1106                 ep = &iface->endpoints[i];
1107                 if (ep->edesc->bEndpointAddress == address)
1108                         return (iface->endpoints[i].edesc);
1109         }
1110         return (0);
1111 }
1112
1113 /*
1114  * usbd_ratecheck() can limit the number of error messages that occurs.
1115  * When a device is unplugged it may take up to 0.25s for the hub driver
1116  * to notice it.  If the driver continuosly tries to do I/O operations
1117  * this can generate a large number of messages.
1118  */
1119 int
1120 usbd_ratecheck(struct timeval *last)
1121 {
1122 #if 0
1123         static struct timeval errinterval = { 0, 250000 }; /* 0.25 s*/
1124
1125         return (ratecheck(last, &errinterval));
1126 #endif
1127         return (1);
1128 }
1129
1130 /*
1131  * Search for a vendor/product pair in an array.  The item size is
1132  * given as an argument.
1133  */
1134 const struct usb_devno *
1135 usb_match_device(const struct usb_devno *tbl, u_int nentries, u_int sz,
1136                  u_int16_t vendor, u_int16_t product)
1137 {
1138         while (nentries-- > 0) {
1139                 u_int16_t tproduct = tbl->ud_product;
1140                 if (tbl->ud_vendor == vendor &&
1141                     (tproduct == product || tproduct == USB_PRODUCT_ANY))
1142                         return (tbl);
1143                 tbl = (const struct usb_devno *)((const char *)tbl + sz);
1144         }
1145         return (NULL);
1146 }
1147
1148 #if defined(__FreeBSD__)
1149 int
1150 usbd_driver_load(module_t mod, int what, void *arg)
1151 {
1152         /* XXX should implement something like a function that removes all generic devices */
1153
1154         return (0);
1155 }
1156
1157 #endif