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