]> CyberLeo.Net >> Repos - FreeBSD/releng/8.0.git/blob - sys/dev/usb/usb_transfer.c
Adjust to reflect 8.0-RELEASE.
[FreeBSD/releng/8.0.git] / sys / dev / usb / usb_transfer.c
1 /* $FreeBSD$ */
2 /*-
3  * Copyright (c) 2008 Hans Petter Selasky. All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */ 
26
27 #include <sys/stdint.h>
28 #include <sys/stddef.h>
29 #include <sys/param.h>
30 #include <sys/queue.h>
31 #include <sys/types.h>
32 #include <sys/systm.h>
33 #include <sys/kernel.h>
34 #include <sys/bus.h>
35 #include <sys/linker_set.h>
36 #include <sys/module.h>
37 #include <sys/lock.h>
38 #include <sys/mutex.h>
39 #include <sys/condvar.h>
40 #include <sys/sysctl.h>
41 #include <sys/sx.h>
42 #include <sys/unistd.h>
43 #include <sys/callout.h>
44 #include <sys/malloc.h>
45 #include <sys/priv.h>
46
47 #include <dev/usb/usb.h>
48 #include <dev/usb/usbdi.h>
49 #include <dev/usb/usbdi_util.h>
50
51 #define USB_DEBUG_VAR usb_debug
52
53 #include <dev/usb/usb_core.h>
54 #include <dev/usb/usb_busdma.h>
55 #include <dev/usb/usb_process.h>
56 #include <dev/usb/usb_transfer.h>
57 #include <dev/usb/usb_device.h>
58 #include <dev/usb/usb_debug.h>
59 #include <dev/usb/usb_util.h>
60
61 #include <dev/usb/usb_controller.h>
62 #include <dev/usb/usb_bus.h>
63
64 struct usb_std_packet_size {
65         struct {
66                 uint16_t min;           /* inclusive */
67                 uint16_t max;           /* inclusive */
68         }       range;
69
70         uint16_t fixed[4];
71 };
72
73 static usb_callback_t usb_request_callback;
74
75 static const struct usb_config usb_control_ep_cfg[USB_DEFAULT_XFER_MAX] = {
76
77         /* This transfer is used for generic control endpoint transfers */
78
79         [0] = {
80                 .type = UE_CONTROL,
81                 .endpoint = 0x00,       /* Control endpoint */
82                 .direction = UE_DIR_ANY,
83                 .bufsize = USB_EP0_BUFSIZE,     /* bytes */
84                 .flags = {.proxy_buffer = 1,},
85                 .callback = &usb_request_callback,
86                 .usb_mode = USB_MODE_DUAL,      /* both modes */
87         },
88
89         /* This transfer is used for generic clear stall only */
90
91         [1] = {
92                 .type = UE_CONTROL,
93                 .endpoint = 0x00,       /* Control pipe */
94                 .direction = UE_DIR_ANY,
95                 .bufsize = sizeof(struct usb_device_request),
96                 .callback = &usb_do_clear_stall_callback,
97                 .timeout = 1000,        /* 1 second */
98                 .interval = 50, /* 50ms */
99                 .usb_mode = USB_MODE_HOST,
100         },
101 };
102
103 /* function prototypes */
104
105 static void     usbd_update_max_frame_size(struct usb_xfer *);
106 static void     usbd_transfer_unsetup_sub(struct usb_xfer_root *, uint8_t);
107 static void     usbd_control_transfer_init(struct usb_xfer *);
108 static int      usbd_setup_ctrl_transfer(struct usb_xfer *);
109 static void     usb_callback_proc(struct usb_proc_msg *);
110 static void     usbd_callback_ss_done_defer(struct usb_xfer *);
111 static void     usbd_callback_wrapper(struct usb_xfer_queue *);
112 static void     usb_dma_delay_done_cb(void *);
113 static void     usbd_transfer_start_cb(void *);
114 static uint8_t  usbd_callback_wrapper_sub(struct usb_xfer *);
115 static void     usbd_get_std_packet_size(struct usb_std_packet_size *ptr, 
116                     uint8_t type, enum usb_dev_speed speed);
117
118 /*------------------------------------------------------------------------*
119  *      usb_request_callback
120  *------------------------------------------------------------------------*/
121 static void
122 usb_request_callback(struct usb_xfer *xfer, usb_error_t error)
123 {
124         if (xfer->flags_int.usb_mode == USB_MODE_DEVICE)
125                 usb_handle_request_callback(xfer, error);
126         else
127                 usbd_do_request_callback(xfer, error);
128 }
129
130 /*------------------------------------------------------------------------*
131  *      usbd_update_max_frame_size
132  *
133  * This function updates the maximum frame size, hence high speed USB
134  * can transfer multiple consecutive packets.
135  *------------------------------------------------------------------------*/
136 static void
137 usbd_update_max_frame_size(struct usb_xfer *xfer)
138 {
139         /* compute maximum frame size */
140
141         if (xfer->max_packet_count == 2) {
142                 xfer->max_frame_size = 2 * xfer->max_packet_size;
143         } else if (xfer->max_packet_count == 3) {
144                 xfer->max_frame_size = 3 * xfer->max_packet_size;
145         } else {
146                 xfer->max_frame_size = xfer->max_packet_size;
147         }
148 }
149
150 /*------------------------------------------------------------------------*
151  *      usbd_get_dma_delay
152  *
153  * The following function is called when we need to
154  * synchronize with DMA hardware.
155  *
156  * Returns:
157  *    0: no DMA delay required
158  * Else: milliseconds of DMA delay
159  *------------------------------------------------------------------------*/
160 usb_timeout_t
161 usbd_get_dma_delay(struct usb_bus *bus)
162 {
163         uint32_t temp = 0;
164
165         if (bus->methods->get_dma_delay) {
166                 (bus->methods->get_dma_delay) (bus, &temp);
167                 /*
168                  * Round up and convert to milliseconds. Note that we use
169                  * 1024 milliseconds per second. to save a division.
170                  */
171                 temp += 0x3FF;
172                 temp /= 0x400;
173         }
174         return (temp);
175 }
176
177 /*------------------------------------------------------------------------*
178  *      usbd_transfer_setup_sub_malloc
179  *
180  * This function will allocate one or more DMA'able memory chunks
181  * according to "size", "align" and "count" arguments. "ppc" is
182  * pointed to a linear array of USB page caches afterwards.
183  *
184  * Returns:
185  *    0: Success
186  * Else: Failure
187  *------------------------------------------------------------------------*/
188 #if USB_HAVE_BUSDMA
189 uint8_t
190 usbd_transfer_setup_sub_malloc(struct usb_setup_params *parm,
191     struct usb_page_cache **ppc, usb_size_t size, usb_size_t align,
192     usb_size_t count)
193 {
194         struct usb_page_cache *pc;
195         struct usb_page *pg;
196         void *buf;
197         usb_size_t n_dma_pc;
198         usb_size_t n_obj;
199         usb_size_t x;
200         usb_size_t y;
201         usb_size_t r;
202         usb_size_t z;
203
204         USB_ASSERT(align > 1, ("Invalid alignment, 0x%08x!\n",
205             align));
206         USB_ASSERT(size > 0, ("Invalid size = 0!\n"));
207
208         if (count == 0) {
209                 return (0);             /* nothing to allocate */
210         }
211         /*
212          * Make sure that the size is aligned properly.
213          */
214         size = -((-size) & (-align));
215
216         /*
217          * Try multi-allocation chunks to reduce the number of DMA
218          * allocations, hence DMA allocations are slow.
219          */
220         if (size >= PAGE_SIZE) {
221                 n_dma_pc = count;
222                 n_obj = 1;
223         } else {
224                 /* compute number of objects per page */
225                 n_obj = (PAGE_SIZE / size);
226                 /*
227                  * Compute number of DMA chunks, rounded up
228                  * to nearest one:
229                  */
230                 n_dma_pc = ((count + n_obj - 1) / n_obj);
231         }
232
233         if (parm->buf == NULL) {
234                 /* for the future */
235                 parm->dma_page_ptr += n_dma_pc;
236                 parm->dma_page_cache_ptr += n_dma_pc;
237                 parm->dma_page_ptr += count;
238                 parm->xfer_page_cache_ptr += count;
239                 return (0);
240         }
241         for (x = 0; x != n_dma_pc; x++) {
242                 /* need to initialize the page cache */
243                 parm->dma_page_cache_ptr[x].tag_parent =
244                     &parm->curr_xfer->xroot->dma_parent_tag;
245         }
246         for (x = 0; x != count; x++) {
247                 /* need to initialize the page cache */
248                 parm->xfer_page_cache_ptr[x].tag_parent =
249                     &parm->curr_xfer->xroot->dma_parent_tag;
250         }
251
252         if (ppc) {
253                 *ppc = parm->xfer_page_cache_ptr;
254         }
255         r = count;                      /* set remainder count */
256         z = n_obj * size;               /* set allocation size */
257         pc = parm->xfer_page_cache_ptr;
258         pg = parm->dma_page_ptr;
259
260         for (x = 0; x != n_dma_pc; x++) {
261
262                 if (r < n_obj) {
263                         /* compute last remainder */
264                         z = r * size;
265                         n_obj = r;
266                 }
267                 if (usb_pc_alloc_mem(parm->dma_page_cache_ptr,
268                     pg, z, align)) {
269                         return (1);     /* failure */
270                 }
271                 /* Set beginning of current buffer */
272                 buf = parm->dma_page_cache_ptr->buffer;
273                 /* Make room for one DMA page cache and one page */
274                 parm->dma_page_cache_ptr++;
275                 pg++;
276
277                 for (y = 0; (y != n_obj); y++, r--, pc++, pg++) {
278
279                         /* Load sub-chunk into DMA */
280                         if (usb_pc_dmamap_create(pc, size)) {
281                                 return (1);     /* failure */
282                         }
283                         pc->buffer = USB_ADD_BYTES(buf, y * size);
284                         pc->page_start = pg;
285
286                         mtx_lock(pc->tag_parent->mtx);
287                         if (usb_pc_load_mem(pc, size, 1 /* synchronous */ )) {
288                                 mtx_unlock(pc->tag_parent->mtx);
289                                 return (1);     /* failure */
290                         }
291                         mtx_unlock(pc->tag_parent->mtx);
292                 }
293         }
294
295         parm->xfer_page_cache_ptr = pc;
296         parm->dma_page_ptr = pg;
297         return (0);
298 }
299 #endif
300
301 /*------------------------------------------------------------------------*
302  *      usbd_transfer_setup_sub - transfer setup subroutine
303  *
304  * This function must be called from the "xfer_setup" callback of the
305  * USB Host or Device controller driver when setting up an USB
306  * transfer. This function will setup correct packet sizes, buffer
307  * sizes, flags and more, that are stored in the "usb_xfer"
308  * structure.
309  *------------------------------------------------------------------------*/
310 void
311 usbd_transfer_setup_sub(struct usb_setup_params *parm)
312 {
313         enum {
314                 REQ_SIZE = 8,
315                 MIN_PKT = 8,
316         };
317         struct usb_xfer *xfer = parm->curr_xfer;
318         const struct usb_config *setup = parm->curr_setup;
319         struct usb_endpoint_descriptor *edesc;
320         struct usb_std_packet_size std_size;
321         usb_frcount_t n_frlengths;
322         usb_frcount_t n_frbuffers;
323         usb_frcount_t x;
324         uint8_t type;
325         uint8_t zmps;
326
327         /*
328          * Sanity check. The following parameters must be initialized before
329          * calling this function.
330          */
331         if ((parm->hc_max_packet_size == 0) ||
332             (parm->hc_max_packet_count == 0) ||
333             (parm->hc_max_frame_size == 0)) {
334                 parm->err = USB_ERR_INVAL;
335                 goto done;
336         }
337         edesc = xfer->endpoint->edesc;
338
339         type = (edesc->bmAttributes & UE_XFERTYPE);
340
341         xfer->flags = setup->flags;
342         xfer->nframes = setup->frames;
343         xfer->timeout = setup->timeout;
344         xfer->callback = setup->callback;
345         xfer->interval = setup->interval;
346         xfer->endpointno = edesc->bEndpointAddress;
347         xfer->max_packet_size = UGETW(edesc->wMaxPacketSize);
348         xfer->max_packet_count = 1;
349         /* make a shadow copy: */
350         xfer->flags_int.usb_mode = parm->udev->flags.usb_mode;
351
352         parm->bufsize = setup->bufsize;
353
354         if (parm->speed == USB_SPEED_HIGH) {
355                 xfer->max_packet_count += (xfer->max_packet_size >> 11) & 3;
356                 xfer->max_packet_size &= 0x7FF;
357         }
358         /* range check "max_packet_count" */
359
360         if (xfer->max_packet_count > parm->hc_max_packet_count) {
361                 xfer->max_packet_count = parm->hc_max_packet_count;
362         }
363         /* filter "wMaxPacketSize" according to HC capabilities */
364
365         if ((xfer->max_packet_size > parm->hc_max_packet_size) ||
366             (xfer->max_packet_size == 0)) {
367                 xfer->max_packet_size = parm->hc_max_packet_size;
368         }
369         /* filter "wMaxPacketSize" according to standard sizes */
370
371         usbd_get_std_packet_size(&std_size, type, parm->speed);
372
373         if (std_size.range.min || std_size.range.max) {
374
375                 if (xfer->max_packet_size < std_size.range.min) {
376                         xfer->max_packet_size = std_size.range.min;
377                 }
378                 if (xfer->max_packet_size > std_size.range.max) {
379                         xfer->max_packet_size = std_size.range.max;
380                 }
381         } else {
382
383                 if (xfer->max_packet_size >= std_size.fixed[3]) {
384                         xfer->max_packet_size = std_size.fixed[3];
385                 } else if (xfer->max_packet_size >= std_size.fixed[2]) {
386                         xfer->max_packet_size = std_size.fixed[2];
387                 } else if (xfer->max_packet_size >= std_size.fixed[1]) {
388                         xfer->max_packet_size = std_size.fixed[1];
389                 } else {
390                         /* only one possibility left */
391                         xfer->max_packet_size = std_size.fixed[0];
392                 }
393         }
394
395         /* compute "max_frame_size" */
396
397         usbd_update_max_frame_size(xfer);
398
399         /* check interrupt interval and transfer pre-delay */
400
401         if (type == UE_ISOCHRONOUS) {
402
403                 uint16_t frame_limit;
404
405                 xfer->interval = 0;     /* not used, must be zero */
406                 xfer->flags_int.isochronous_xfr = 1;    /* set flag */
407
408                 if (xfer->timeout == 0) {
409                         /*
410                          * set a default timeout in
411                          * case something goes wrong!
412                          */
413                         xfer->timeout = 1000 / 4;
414                 }
415                 switch (parm->speed) {
416                 case USB_SPEED_LOW:
417                 case USB_SPEED_FULL:
418                         frame_limit = USB_MAX_FS_ISOC_FRAMES_PER_XFER;
419                         break;
420                 default:
421                         frame_limit = USB_MAX_HS_ISOC_FRAMES_PER_XFER;
422                         break;
423                 }
424
425                 if (xfer->nframes > frame_limit) {
426                         /*
427                          * this is not going to work
428                          * cross hardware
429                          */
430                         parm->err = USB_ERR_INVAL;
431                         goto done;
432                 }
433                 if (xfer->nframes == 0) {
434                         /*
435                          * this is not a valid value
436                          */
437                         parm->err = USB_ERR_ZERO_NFRAMES;
438                         goto done;
439                 }
440         } else {
441
442                 /*
443                  * if a value is specified use that else check the endpoint
444                  * descriptor
445                  */
446                 if (xfer->interval == 0) {
447
448                         if (type == UE_INTERRUPT) {
449
450                                 xfer->interval = edesc->bInterval;
451
452                                 switch (parm->speed) {
453                                 case USB_SPEED_SUPER:
454                                 case USB_SPEED_VARIABLE:
455                                         /* 125us -> 1ms */
456                                         if (xfer->interval < 4)
457                                                 xfer->interval = 1;
458                                         else if (xfer->interval > 16)
459                                                 xfer->interval = (1<<(16-4));
460                                         else
461                                                 xfer->interval = 
462                                                     (1 << (xfer->interval-4));
463                                         break;
464                                 case USB_SPEED_HIGH:
465                                         /* 125us -> 1ms */
466                                         xfer->interval /= 8;
467                                         break;
468                                 default:
469                                         break;
470                                 }
471                                 if (xfer->interval == 0) {
472                                         /*
473                                          * One millisecond is the smallest
474                                          * interval we support:
475                                          */
476                                         xfer->interval = 1;
477                                 }
478                         }
479                 }
480         }
481
482         /*
483          * NOTE: we do not allow "max_packet_size" or "max_frame_size"
484          * to be equal to zero when setting up USB transfers, hence
485          * this leads to alot of extra code in the USB kernel.
486          */
487
488         if ((xfer->max_frame_size == 0) ||
489             (xfer->max_packet_size == 0)) {
490
491                 zmps = 1;
492
493                 if ((parm->bufsize <= MIN_PKT) &&
494                     (type != UE_CONTROL) &&
495                     (type != UE_BULK)) {
496
497                         /* workaround */
498                         xfer->max_packet_size = MIN_PKT;
499                         xfer->max_packet_count = 1;
500                         parm->bufsize = 0;      /* automatic setup length */
501                         usbd_update_max_frame_size(xfer);
502
503                 } else {
504                         parm->err = USB_ERR_ZERO_MAXP;
505                         goto done;
506                 }
507
508         } else {
509                 zmps = 0;
510         }
511
512         /*
513          * check if we should setup a default
514          * length:
515          */
516
517         if (parm->bufsize == 0) {
518
519                 parm->bufsize = xfer->max_frame_size;
520
521                 if (type == UE_ISOCHRONOUS) {
522                         parm->bufsize *= xfer->nframes;
523                 }
524         }
525         /*
526          * check if we are about to setup a proxy
527          * type of buffer:
528          */
529
530         if (xfer->flags.proxy_buffer) {
531
532                 /* round bufsize up */
533
534                 parm->bufsize += (xfer->max_frame_size - 1);
535
536                 if (parm->bufsize < xfer->max_frame_size) {
537                         /* length wrapped around */
538                         parm->err = USB_ERR_INVAL;
539                         goto done;
540                 }
541                 /* subtract remainder */
542
543                 parm->bufsize -= (parm->bufsize % xfer->max_frame_size);
544
545                 /* add length of USB device request structure, if any */
546
547                 if (type == UE_CONTROL) {
548                         parm->bufsize += REQ_SIZE;      /* SETUP message */
549                 }
550         }
551         xfer->max_data_length = parm->bufsize;
552
553         /* Setup "n_frlengths" and "n_frbuffers" */
554
555         if (type == UE_ISOCHRONOUS) {
556                 n_frlengths = xfer->nframes;
557                 n_frbuffers = 1;
558         } else {
559
560                 if (type == UE_CONTROL) {
561                         xfer->flags_int.control_xfr = 1;
562                         if (xfer->nframes == 0) {
563                                 if (parm->bufsize <= REQ_SIZE) {
564                                         /*
565                                          * there will never be any data
566                                          * stage
567                                          */
568                                         xfer->nframes = 1;
569                                 } else {
570                                         xfer->nframes = 2;
571                                 }
572                         }
573                 } else {
574                         if (xfer->nframes == 0) {
575                                 xfer->nframes = 1;
576                         }
577                 }
578
579                 n_frlengths = xfer->nframes;
580                 n_frbuffers = xfer->nframes;
581         }
582
583         /*
584          * check if we have room for the
585          * USB device request structure:
586          */
587
588         if (type == UE_CONTROL) {
589
590                 if (xfer->max_data_length < REQ_SIZE) {
591                         /* length wrapped around or too small bufsize */
592                         parm->err = USB_ERR_INVAL;
593                         goto done;
594                 }
595                 xfer->max_data_length -= REQ_SIZE;
596         }
597         /* setup "frlengths" */
598         xfer->frlengths = parm->xfer_length_ptr;
599         parm->xfer_length_ptr += n_frlengths;
600
601         /* setup "frbuffers" */
602         xfer->frbuffers = parm->xfer_page_cache_ptr;
603         parm->xfer_page_cache_ptr += n_frbuffers;
604
605         /* initialize max frame count */
606         xfer->max_frame_count = xfer->nframes;
607
608         /*
609          * check if we need to setup
610          * a local buffer:
611          */
612
613         if (!xfer->flags.ext_buffer) {
614
615                 /* align data */
616                 parm->size[0] += ((-parm->size[0]) & (USB_HOST_ALIGN - 1));
617
618                 if (parm->buf) {
619
620                         xfer->local_buffer =
621                             USB_ADD_BYTES(parm->buf, parm->size[0]);
622
623                         usbd_xfer_set_frame_offset(xfer, 0, 0);
624
625                         if ((type == UE_CONTROL) && (n_frbuffers > 1)) {
626                                 usbd_xfer_set_frame_offset(xfer, REQ_SIZE, 1);
627                         }
628                 }
629                 parm->size[0] += parm->bufsize;
630
631                 /* align data again */
632                 parm->size[0] += ((-parm->size[0]) & (USB_HOST_ALIGN - 1));
633         }
634         /*
635          * Compute maximum buffer size
636          */
637
638         if (parm->bufsize_max < parm->bufsize) {
639                 parm->bufsize_max = parm->bufsize;
640         }
641 #if USB_HAVE_BUSDMA
642         if (xfer->flags_int.bdma_enable) {
643                 /*
644                  * Setup "dma_page_ptr".
645                  *
646                  * Proof for formula below:
647                  *
648                  * Assume there are three USB frames having length "a", "b" and
649                  * "c". These USB frames will at maximum need "z"
650                  * "usb_page" structures. "z" is given by:
651                  *
652                  * z = ((a / USB_PAGE_SIZE) + 2) + ((b / USB_PAGE_SIZE) + 2) +
653                  * ((c / USB_PAGE_SIZE) + 2);
654                  *
655                  * Constraining "a", "b" and "c" like this:
656                  *
657                  * (a + b + c) <= parm->bufsize
658                  *
659                  * We know that:
660                  *
661                  * z <= ((parm->bufsize / USB_PAGE_SIZE) + (3*2));
662                  *
663                  * Here is the general formula:
664                  */
665                 xfer->dma_page_ptr = parm->dma_page_ptr;
666                 parm->dma_page_ptr += (2 * n_frbuffers);
667                 parm->dma_page_ptr += (parm->bufsize / USB_PAGE_SIZE);
668         }
669 #endif
670         if (zmps) {
671                 /* correct maximum data length */
672                 xfer->max_data_length = 0;
673         }
674         /* subtract USB frame remainder from "hc_max_frame_size" */
675
676         xfer->max_hc_frame_size =
677             (parm->hc_max_frame_size -
678             (parm->hc_max_frame_size % xfer->max_frame_size));
679
680         if (xfer->max_hc_frame_size == 0) {
681                 parm->err = USB_ERR_INVAL;
682                 goto done;
683         }
684
685         /* initialize frame buffers */
686
687         if (parm->buf) {
688                 for (x = 0; x != n_frbuffers; x++) {
689                         xfer->frbuffers[x].tag_parent =
690                             &xfer->xroot->dma_parent_tag;
691 #if USB_HAVE_BUSDMA
692                         if (xfer->flags_int.bdma_enable &&
693                             (parm->bufsize_max > 0)) {
694
695                                 if (usb_pc_dmamap_create(
696                                     xfer->frbuffers + x,
697                                     parm->bufsize_max)) {
698                                         parm->err = USB_ERR_NOMEM;
699                                         goto done;
700                                 }
701                         }
702 #endif
703                 }
704         }
705 done:
706         if (parm->err) {
707                 /*
708                  * Set some dummy values so that we avoid division by zero:
709                  */
710                 xfer->max_hc_frame_size = 1;
711                 xfer->max_frame_size = 1;
712                 xfer->max_packet_size = 1;
713                 xfer->max_data_length = 0;
714                 xfer->nframes = 0;
715                 xfer->max_frame_count = 0;
716         }
717 }
718
719 /*------------------------------------------------------------------------*
720  *      usbd_transfer_setup - setup an array of USB transfers
721  *
722  * NOTE: You must always call "usbd_transfer_unsetup" after calling
723  * "usbd_transfer_setup" if success was returned.
724  *
725  * The idea is that the USB device driver should pre-allocate all its
726  * transfers by one call to this function.
727  *
728  * Return values:
729  *    0: Success
730  * Else: Failure
731  *------------------------------------------------------------------------*/
732 usb_error_t
733 usbd_transfer_setup(struct usb_device *udev,
734     const uint8_t *ifaces, struct usb_xfer **ppxfer,
735     const struct usb_config *setup_start, uint16_t n_setup,
736     void *priv_sc, struct mtx *xfer_mtx)
737 {
738         struct usb_xfer dummy;
739         struct usb_setup_params parm;
740         const struct usb_config *setup_end = setup_start + n_setup;
741         const struct usb_config *setup;
742         struct usb_endpoint *ep;
743         struct usb_xfer_root *info;
744         struct usb_xfer *xfer;
745         void *buf = NULL;
746         uint16_t n;
747         uint16_t refcount;
748
749         parm.err = 0;
750         refcount = 0;
751         info = NULL;
752
753         WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK, NULL,
754             "usbd_transfer_setup can sleep!");
755
756         /* do some checking first */
757
758         if (n_setup == 0) {
759                 DPRINTFN(6, "setup array has zero length!\n");
760                 return (USB_ERR_INVAL);
761         }
762         if (ifaces == 0) {
763                 DPRINTFN(6, "ifaces array is NULL!\n");
764                 return (USB_ERR_INVAL);
765         }
766         if (xfer_mtx == NULL) {
767                 DPRINTFN(6, "using global lock\n");
768                 xfer_mtx = &Giant;
769         }
770         /* sanity checks */
771         for (setup = setup_start, n = 0;
772             setup != setup_end; setup++, n++) {
773                 if (setup->bufsize == (usb_frlength_t)-1) {
774                         parm.err = USB_ERR_BAD_BUFSIZE;
775                         DPRINTF("invalid bufsize\n");
776                 }
777                 if (setup->callback == NULL) {
778                         parm.err = USB_ERR_NO_CALLBACK;
779                         DPRINTF("no callback\n");
780                 }
781                 ppxfer[n] = NULL;
782         }
783
784         if (parm.err) {
785                 goto done;
786         }
787         bzero(&parm, sizeof(parm));
788
789         parm.udev = udev;
790         parm.speed = usbd_get_speed(udev);
791         parm.hc_max_packet_count = 1;
792
793         if (parm.speed >= USB_SPEED_MAX) {
794                 parm.err = USB_ERR_INVAL;
795                 goto done;
796         }
797         /* setup all transfers */
798
799         while (1) {
800
801                 if (buf) {
802                         /*
803                          * Initialize the "usb_xfer_root" structure,
804                          * which is common for all our USB transfers.
805                          */
806                         info = USB_ADD_BYTES(buf, 0);
807
808                         info->memory_base = buf;
809                         info->memory_size = parm.size[0];
810
811 #if USB_HAVE_BUSDMA
812                         info->dma_page_cache_start = USB_ADD_BYTES(buf, parm.size[4]);
813                         info->dma_page_cache_end = USB_ADD_BYTES(buf, parm.size[5]);
814 #endif
815                         info->xfer_page_cache_start = USB_ADD_BYTES(buf, parm.size[5]);
816                         info->xfer_page_cache_end = USB_ADD_BYTES(buf, parm.size[2]);
817
818                         cv_init(&info->cv_drain, "WDRAIN");
819
820                         info->xfer_mtx = xfer_mtx;
821 #if USB_HAVE_BUSDMA
822                         usb_dma_tag_setup(&info->dma_parent_tag,
823                             parm.dma_tag_p, udev->bus->dma_parent_tag[0].tag,
824                             xfer_mtx, &usb_bdma_done_event, 32, parm.dma_tag_max);
825 #endif
826
827                         info->bus = udev->bus;
828                         info->udev = udev;
829
830                         TAILQ_INIT(&info->done_q.head);
831                         info->done_q.command = &usbd_callback_wrapper;
832 #if USB_HAVE_BUSDMA
833                         TAILQ_INIT(&info->dma_q.head);
834                         info->dma_q.command = &usb_bdma_work_loop;
835 #endif
836                         info->done_m[0].hdr.pm_callback = &usb_callback_proc;
837                         info->done_m[0].xroot = info;
838                         info->done_m[1].hdr.pm_callback = &usb_callback_proc;
839                         info->done_m[1].xroot = info;
840
841                         /* 
842                          * In device side mode control endpoint
843                          * requests need to run from a separate
844                          * context, else there is a chance of
845                          * deadlock!
846                          */
847                         if (setup_start == usb_control_ep_cfg)
848                                 info->done_p = 
849                                     &udev->bus->control_xfer_proc;
850                         else if (xfer_mtx == &Giant)
851                                 info->done_p = 
852                                     &udev->bus->giant_callback_proc;
853                         else
854                                 info->done_p = 
855                                     &udev->bus->non_giant_callback_proc;
856                 }
857                 /* reset sizes */
858
859                 parm.size[0] = 0;
860                 parm.buf = buf;
861                 parm.size[0] += sizeof(info[0]);
862
863                 for (setup = setup_start, n = 0;
864                     setup != setup_end; setup++, n++) {
865
866                         /* skip USB transfers without callbacks: */
867                         if (setup->callback == NULL) {
868                                 continue;
869                         }
870                         /* see if there is a matching endpoint */
871                         ep = usbd_get_endpoint(udev,
872                             ifaces[setup->if_index], setup);
873
874                         if ((ep == NULL) || (ep->methods == NULL)) {
875                                 if (setup->flags.no_pipe_ok)
876                                         continue;
877                                 if ((setup->usb_mode != USB_MODE_DUAL) &&
878                                     (setup->usb_mode != udev->flags.usb_mode))
879                                         continue;
880                                 parm.err = USB_ERR_NO_PIPE;
881                                 goto done;
882                         }
883
884                         /* align data properly */
885                         parm.size[0] += ((-parm.size[0]) & (USB_HOST_ALIGN - 1));
886
887                         /* store current setup pointer */
888                         parm.curr_setup = setup;
889
890                         if (buf) {
891                                 /*
892                                  * Common initialization of the
893                                  * "usb_xfer" structure.
894                                  */
895                                 xfer = USB_ADD_BYTES(buf, parm.size[0]);
896                                 xfer->address = udev->address;
897                                 xfer->priv_sc = priv_sc;
898                                 xfer->xroot = info;
899
900                                 usb_callout_init_mtx(&xfer->timeout_handle,
901                                     &udev->bus->bus_mtx, 0);
902                         } else {
903                                 /*
904                                  * Setup a dummy xfer, hence we are
905                                  * writing to the "usb_xfer"
906                                  * structure pointed to by "xfer"
907                                  * before we have allocated any
908                                  * memory:
909                                  */
910                                 xfer = &dummy;
911                                 bzero(&dummy, sizeof(dummy));
912                                 refcount++;
913                         }
914
915                         /* set transfer endpoint pointer */
916                         xfer->endpoint = ep;
917
918                         parm.size[0] += sizeof(xfer[0]);
919                         parm.methods = xfer->endpoint->methods;
920                         parm.curr_xfer = xfer;
921
922                         /*
923                          * Call the Host or Device controller transfer
924                          * setup routine:
925                          */
926                         (udev->bus->methods->xfer_setup) (&parm);
927
928                         /* check for error */
929                         if (parm.err)
930                                 goto done;
931
932                         if (buf) {
933                                 /*
934                                  * Increment the endpoint refcount. This
935                                  * basically prevents setting a new
936                                  * configuration and alternate setting
937                                  * when USB transfers are in use on
938                                  * the given interface. Search the USB
939                                  * code for "endpoint->refcount" if you
940                                  * want more information.
941                                  */
942                                 xfer->endpoint->refcount++;
943
944                                 /*
945                                  * Whenever we set ppxfer[] then we
946                                  * also need to increment the
947                                  * "setup_refcount":
948                                  */
949                                 info->setup_refcount++;
950
951                                 /*
952                                  * Transfer is successfully setup and
953                                  * can be used:
954                                  */
955                                 ppxfer[n] = xfer;
956                         }
957                 }
958
959                 if (buf || parm.err) {
960                         goto done;
961                 }
962                 if (refcount == 0) {
963                         /* no transfers - nothing to do ! */
964                         goto done;
965                 }
966                 /* align data properly */
967                 parm.size[0] += ((-parm.size[0]) & (USB_HOST_ALIGN - 1));
968
969                 /* store offset temporarily */
970                 parm.size[1] = parm.size[0];
971
972                 /*
973                  * The number of DMA tags required depends on
974                  * the number of endpoints. The current estimate
975                  * for maximum number of DMA tags per endpoint
976                  * is two.
977                  */
978                 parm.dma_tag_max += 2 * MIN(n_setup, USB_EP_MAX);
979
980                 /*
981                  * DMA tags for QH, TD, Data and more.
982                  */
983                 parm.dma_tag_max += 8;
984
985                 parm.dma_tag_p += parm.dma_tag_max;
986
987                 parm.size[0] += ((uint8_t *)parm.dma_tag_p) -
988                     ((uint8_t *)0);
989
990                 /* align data properly */
991                 parm.size[0] += ((-parm.size[0]) & (USB_HOST_ALIGN - 1));
992
993                 /* store offset temporarily */
994                 parm.size[3] = parm.size[0];
995
996                 parm.size[0] += ((uint8_t *)parm.dma_page_ptr) -
997                     ((uint8_t *)0);
998
999                 /* align data properly */
1000                 parm.size[0] += ((-parm.size[0]) & (USB_HOST_ALIGN - 1));
1001
1002                 /* store offset temporarily */
1003                 parm.size[4] = parm.size[0];
1004
1005                 parm.size[0] += ((uint8_t *)parm.dma_page_cache_ptr) -
1006                     ((uint8_t *)0);
1007
1008                 /* store end offset temporarily */
1009                 parm.size[5] = parm.size[0];
1010
1011                 parm.size[0] += ((uint8_t *)parm.xfer_page_cache_ptr) -
1012                     ((uint8_t *)0);
1013
1014                 /* store end offset temporarily */
1015
1016                 parm.size[2] = parm.size[0];
1017
1018                 /* align data properly */
1019                 parm.size[0] += ((-parm.size[0]) & (USB_HOST_ALIGN - 1));
1020
1021                 parm.size[6] = parm.size[0];
1022
1023                 parm.size[0] += ((uint8_t *)parm.xfer_length_ptr) -
1024                     ((uint8_t *)0);
1025
1026                 /* align data properly */
1027                 parm.size[0] += ((-parm.size[0]) & (USB_HOST_ALIGN - 1));
1028
1029                 /* allocate zeroed memory */
1030                 buf = malloc(parm.size[0], M_USB, M_WAITOK | M_ZERO);
1031
1032                 if (buf == NULL) {
1033                         parm.err = USB_ERR_NOMEM;
1034                         DPRINTFN(0, "cannot allocate memory block for "
1035                             "configuration (%d bytes)\n",
1036                             parm.size[0]);
1037                         goto done;
1038                 }
1039                 parm.dma_tag_p = USB_ADD_BYTES(buf, parm.size[1]);
1040                 parm.dma_page_ptr = USB_ADD_BYTES(buf, parm.size[3]);
1041                 parm.dma_page_cache_ptr = USB_ADD_BYTES(buf, parm.size[4]);
1042                 parm.xfer_page_cache_ptr = USB_ADD_BYTES(buf, parm.size[5]);
1043                 parm.xfer_length_ptr = USB_ADD_BYTES(buf, parm.size[6]);
1044         }
1045
1046 done:
1047         if (buf) {
1048                 if (info->setup_refcount == 0) {
1049                         /*
1050                          * "usbd_transfer_unsetup_sub" will unlock
1051                          * the bus mutex before returning !
1052                          */
1053                         USB_BUS_LOCK(info->bus);
1054
1055                         /* something went wrong */
1056                         usbd_transfer_unsetup_sub(info, 0);
1057                 }
1058         }
1059         if (parm.err) {
1060                 usbd_transfer_unsetup(ppxfer, n_setup);
1061         }
1062         return (parm.err);
1063 }
1064
1065 /*------------------------------------------------------------------------*
1066  *      usbd_transfer_unsetup_sub - factored out code
1067  *------------------------------------------------------------------------*/
1068 static void
1069 usbd_transfer_unsetup_sub(struct usb_xfer_root *info, uint8_t needs_delay)
1070 {
1071         struct usb_page_cache *pc;
1072
1073         USB_BUS_LOCK_ASSERT(info->bus, MA_OWNED);
1074
1075         /* wait for any outstanding DMA operations */
1076
1077         if (needs_delay) {
1078                 usb_timeout_t temp;
1079                 temp = usbd_get_dma_delay(info->bus);
1080                 usb_pause_mtx(&info->bus->bus_mtx,
1081                     USB_MS_TO_TICKS(temp));
1082         }
1083
1084         /* make sure that our done messages are not queued anywhere */
1085         usb_proc_mwait(info->done_p, &info->done_m[0], &info->done_m[1]);
1086
1087         USB_BUS_UNLOCK(info->bus);
1088
1089 #if USB_HAVE_BUSDMA
1090         /* free DMA'able memory, if any */
1091         pc = info->dma_page_cache_start;
1092         while (pc != info->dma_page_cache_end) {
1093                 usb_pc_free_mem(pc);
1094                 pc++;
1095         }
1096
1097         /* free DMA maps in all "xfer->frbuffers" */
1098         pc = info->xfer_page_cache_start;
1099         while (pc != info->xfer_page_cache_end) {
1100                 usb_pc_dmamap_destroy(pc);
1101                 pc++;
1102         }
1103
1104         /* free all DMA tags */
1105         usb_dma_tag_unsetup(&info->dma_parent_tag);
1106 #endif
1107
1108         cv_destroy(&info->cv_drain);
1109
1110         /*
1111          * free the "memory_base" last, hence the "info" structure is
1112          * contained within the "memory_base"!
1113          */
1114         free(info->memory_base, M_USB);
1115 }
1116
1117 /*------------------------------------------------------------------------*
1118  *      usbd_transfer_unsetup - unsetup/free an array of USB transfers
1119  *
1120  * NOTE: All USB transfers in progress will get called back passing
1121  * the error code "USB_ERR_CANCELLED" before this function
1122  * returns.
1123  *------------------------------------------------------------------------*/
1124 void
1125 usbd_transfer_unsetup(struct usb_xfer **pxfer, uint16_t n_setup)
1126 {
1127         struct usb_xfer *xfer;
1128         struct usb_xfer_root *info;
1129         uint8_t needs_delay = 0;
1130
1131         WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK, NULL,
1132             "usbd_transfer_unsetup can sleep!");
1133
1134         while (n_setup--) {
1135                 xfer = pxfer[n_setup];
1136
1137                 if (xfer == NULL)
1138                         continue;
1139
1140                 info = xfer->xroot;
1141
1142                 USB_XFER_LOCK(xfer);
1143                 USB_BUS_LOCK(info->bus);
1144
1145                 /*
1146                  * HINT: when you start/stop a transfer, it might be a
1147                  * good idea to directly use the "pxfer[]" structure:
1148                  *
1149                  * usbd_transfer_start(sc->pxfer[0]);
1150                  * usbd_transfer_stop(sc->pxfer[0]);
1151                  *
1152                  * That way, if your code has many parts that will not
1153                  * stop running under the same lock, in other words
1154                  * "xfer_mtx", the usbd_transfer_start and
1155                  * usbd_transfer_stop functions will simply return
1156                  * when they detect a NULL pointer argument.
1157                  *
1158                  * To avoid any races we clear the "pxfer[]" pointer
1159                  * while holding the private mutex of the driver:
1160                  */
1161                 pxfer[n_setup] = NULL;
1162
1163                 USB_BUS_UNLOCK(info->bus);
1164                 USB_XFER_UNLOCK(xfer);
1165
1166                 usbd_transfer_drain(xfer);
1167
1168 #if USB_HAVE_BUSDMA
1169                 if (xfer->flags_int.bdma_enable)
1170                         needs_delay = 1;
1171 #endif
1172                 /*
1173                  * NOTE: default endpoint does not have an
1174                  * interface, even if endpoint->iface_index == 0
1175                  */
1176                 xfer->endpoint->refcount--;
1177
1178                 usb_callout_drain(&xfer->timeout_handle);
1179
1180                 USB_BUS_LOCK(info->bus);
1181
1182                 USB_ASSERT(info->setup_refcount != 0, ("Invalid setup "
1183                     "reference count!\n"));
1184
1185                 info->setup_refcount--;
1186
1187                 if (info->setup_refcount == 0) {
1188                         usbd_transfer_unsetup_sub(info,
1189                             needs_delay);
1190                 } else {
1191                         USB_BUS_UNLOCK(info->bus);
1192                 }
1193         }
1194 }
1195
1196 /*------------------------------------------------------------------------*
1197  *      usbd_control_transfer_init - factored out code
1198  *
1199  * In USB Device Mode we have to wait for the SETUP packet which
1200  * containst the "struct usb_device_request" structure, before we can
1201  * transfer any data. In USB Host Mode we already have the SETUP
1202  * packet at the moment the USB transfer is started. This leads us to
1203  * having to setup the USB transfer at two different places in
1204  * time. This function just contains factored out control transfer
1205  * initialisation code, so that we don't duplicate the code.
1206  *------------------------------------------------------------------------*/
1207 static void
1208 usbd_control_transfer_init(struct usb_xfer *xfer)
1209 {
1210         struct usb_device_request req;
1211
1212         /* copy out the USB request header */
1213
1214         usbd_copy_out(xfer->frbuffers, 0, &req, sizeof(req));
1215
1216         /* setup remainder */
1217
1218         xfer->flags_int.control_rem = UGETW(req.wLength);
1219
1220         /* copy direction to endpoint variable */
1221
1222         xfer->endpointno &= ~(UE_DIR_IN | UE_DIR_OUT);
1223         xfer->endpointno |=
1224             (req.bmRequestType & UT_READ) ? UE_DIR_IN : UE_DIR_OUT;
1225 }
1226
1227 /*------------------------------------------------------------------------*
1228  *      usbd_setup_ctrl_transfer
1229  *
1230  * This function handles initialisation of control transfers. Control
1231  * transfers are special in that regard that they can both transmit
1232  * and receive data.
1233  *
1234  * Return values:
1235  *    0: Success
1236  * Else: Failure
1237  *------------------------------------------------------------------------*/
1238 static int
1239 usbd_setup_ctrl_transfer(struct usb_xfer *xfer)
1240 {
1241         usb_frlength_t len;
1242
1243         /* Check for control endpoint stall */
1244         if (xfer->flags.stall_pipe && xfer->flags_int.control_act) {
1245                 /* the control transfer is no longer active */
1246                 xfer->flags_int.control_stall = 1;
1247                 xfer->flags_int.control_act = 0;
1248         } else {
1249                 /* don't stall control transfer by default */
1250                 xfer->flags_int.control_stall = 0;
1251         }
1252
1253         /* Check for invalid number of frames */
1254         if (xfer->nframes > 2) {
1255                 /*
1256                  * If you need to split a control transfer, you
1257                  * have to do one part at a time. Only with
1258                  * non-control transfers you can do multiple
1259                  * parts a time.
1260                  */
1261                 DPRINTFN(0, "Too many frames: %u\n",
1262                     (unsigned int)xfer->nframes);
1263                 goto error;
1264         }
1265
1266         /*
1267          * Check if there is a control
1268          * transfer in progress:
1269          */
1270         if (xfer->flags_int.control_act) {
1271
1272                 if (xfer->flags_int.control_hdr) {
1273
1274                         /* clear send header flag */
1275
1276                         xfer->flags_int.control_hdr = 0;
1277
1278                         /* setup control transfer */
1279                         if (xfer->flags_int.usb_mode == USB_MODE_DEVICE) {
1280                                 usbd_control_transfer_init(xfer);
1281                         }
1282                 }
1283                 /* get data length */
1284
1285                 len = xfer->sumlen;
1286
1287         } else {
1288
1289                 /* the size of the SETUP structure is hardcoded ! */
1290
1291                 if (xfer->frlengths[0] != sizeof(struct usb_device_request)) {
1292                         DPRINTFN(0, "Wrong framelength %u != %zu\n",
1293                             xfer->frlengths[0], sizeof(struct
1294                             usb_device_request));
1295                         goto error;
1296                 }
1297                 /* check USB mode */
1298                 if (xfer->flags_int.usb_mode == USB_MODE_DEVICE) {
1299
1300                         /* check number of frames */
1301                         if (xfer->nframes != 1) {
1302                                 /*
1303                                  * We need to receive the setup
1304                                  * message first so that we know the
1305                                  * data direction!
1306                                  */
1307                                 DPRINTF("Misconfigured transfer\n");
1308                                 goto error;
1309                         }
1310                         /*
1311                          * Set a dummy "control_rem" value.  This
1312                          * variable will be overwritten later by a
1313                          * call to "usbd_control_transfer_init()" !
1314                          */
1315                         xfer->flags_int.control_rem = 0xFFFF;
1316                 } else {
1317
1318                         /* setup "endpoint" and "control_rem" */
1319
1320                         usbd_control_transfer_init(xfer);
1321                 }
1322
1323                 /* set transfer-header flag */
1324
1325                 xfer->flags_int.control_hdr = 1;
1326
1327                 /* get data length */
1328
1329                 len = (xfer->sumlen - sizeof(struct usb_device_request));
1330         }
1331
1332         /* check if there is a length mismatch */
1333
1334         if (len > xfer->flags_int.control_rem) {
1335                 DPRINTFN(0, "Length greater than remaining length!\n");
1336                 goto error;
1337         }
1338         /* check if we are doing a short transfer */
1339
1340         if (xfer->flags.force_short_xfer) {
1341                 xfer->flags_int.control_rem = 0;
1342         } else {
1343                 if ((len != xfer->max_data_length) &&
1344                     (len != xfer->flags_int.control_rem) &&
1345                     (xfer->nframes != 1)) {
1346                         DPRINTFN(0, "Short control transfer without "
1347                             "force_short_xfer set!\n");
1348                         goto error;
1349                 }
1350                 xfer->flags_int.control_rem -= len;
1351         }
1352
1353         /* the status part is executed when "control_act" is 0 */
1354
1355         if ((xfer->flags_int.control_rem > 0) ||
1356             (xfer->flags.manual_status)) {
1357                 /* don't execute the STATUS stage yet */
1358                 xfer->flags_int.control_act = 1;
1359
1360                 /* sanity check */
1361                 if ((!xfer->flags_int.control_hdr) &&
1362                     (xfer->nframes == 1)) {
1363                         /*
1364                          * This is not a valid operation!
1365                          */
1366                         DPRINTFN(0, "Invalid parameter "
1367                             "combination\n");
1368                         goto error;
1369                 }
1370         } else {
1371                 /* time to execute the STATUS stage */
1372                 xfer->flags_int.control_act = 0;
1373         }
1374         return (0);                     /* success */
1375
1376 error:
1377         return (1);                     /* failure */
1378 }
1379
1380 /*------------------------------------------------------------------------*
1381  *      usbd_transfer_submit - start USB hardware for the given transfer
1382  *
1383  * This function should only be called from the USB callback.
1384  *------------------------------------------------------------------------*/
1385 void
1386 usbd_transfer_submit(struct usb_xfer *xfer)
1387 {
1388         struct usb_xfer_root *info;
1389         struct usb_bus *bus;
1390         usb_frcount_t x;
1391
1392         info = xfer->xroot;
1393         bus = info->bus;
1394
1395         DPRINTF("xfer=%p, endpoint=%p, nframes=%d, dir=%s\n",
1396             xfer, xfer->endpoint, xfer->nframes, USB_GET_DATA_ISREAD(xfer) ?
1397             "read" : "write");
1398
1399 #if USB_DEBUG
1400         if (USB_DEBUG_VAR > 0) {
1401                 USB_BUS_LOCK(bus);
1402
1403                 usb_dump_endpoint(xfer->endpoint);
1404
1405                 USB_BUS_UNLOCK(bus);
1406         }
1407 #endif
1408
1409         USB_XFER_LOCK_ASSERT(xfer, MA_OWNED);
1410         USB_BUS_LOCK_ASSERT(bus, MA_NOTOWNED);
1411
1412         /* Only open the USB transfer once! */
1413         if (!xfer->flags_int.open) {
1414                 xfer->flags_int.open = 1;
1415
1416                 DPRINTF("open\n");
1417
1418                 USB_BUS_LOCK(bus);
1419                 (xfer->endpoint->methods->open) (xfer);
1420                 USB_BUS_UNLOCK(bus);
1421         }
1422         /* set "transferring" flag */
1423         xfer->flags_int.transferring = 1;
1424
1425 #if USB_HAVE_POWERD
1426         /* increment power reference */
1427         usbd_transfer_power_ref(xfer, 1);
1428 #endif
1429         /*
1430          * Check if the transfer is waiting on a queue, most
1431          * frequently the "done_q":
1432          */
1433         if (xfer->wait_queue) {
1434                 USB_BUS_LOCK(bus);
1435                 usbd_transfer_dequeue(xfer);
1436                 USB_BUS_UNLOCK(bus);
1437         }
1438         /* clear "did_dma_delay" flag */
1439         xfer->flags_int.did_dma_delay = 0;
1440
1441         /* clear "did_close" flag */
1442         xfer->flags_int.did_close = 0;
1443
1444 #if USB_HAVE_BUSDMA
1445         /* clear "bdma_setup" flag */
1446         xfer->flags_int.bdma_setup = 0;
1447 #endif
1448         /* by default we cannot cancel any USB transfer immediately */
1449         xfer->flags_int.can_cancel_immed = 0;
1450
1451         /* clear lengths and frame counts by default */
1452         xfer->sumlen = 0;
1453         xfer->actlen = 0;
1454         xfer->aframes = 0;
1455
1456         /* clear any previous errors */
1457         xfer->error = 0;
1458
1459         /* Check if the device is still alive */
1460         if (info->udev->state < USB_STATE_POWERED) {
1461                 USB_BUS_LOCK(bus);
1462                 /*
1463                  * Must return cancelled error code else
1464                  * device drivers can hang.
1465                  */
1466                 usbd_transfer_done(xfer, USB_ERR_CANCELLED);
1467                 USB_BUS_UNLOCK(bus);
1468                 return;
1469         }
1470
1471         /* sanity check */
1472         if (xfer->nframes == 0) {
1473                 if (xfer->flags.stall_pipe) {
1474                         /*
1475                          * Special case - want to stall without transferring
1476                          * any data:
1477                          */
1478                         DPRINTF("xfer=%p nframes=0: stall "
1479                             "or clear stall!\n", xfer);
1480                         USB_BUS_LOCK(bus);
1481                         xfer->flags_int.can_cancel_immed = 1;
1482                         /* start the transfer */
1483                         usb_command_wrapper(&xfer->endpoint->endpoint_q, xfer);
1484                         USB_BUS_UNLOCK(bus);
1485                         return;
1486                 }
1487                 USB_BUS_LOCK(bus);
1488                 usbd_transfer_done(xfer, USB_ERR_INVAL);
1489                 USB_BUS_UNLOCK(bus);
1490                 return;
1491         }
1492         /* compute total transfer length */
1493
1494         for (x = 0; x != xfer->nframes; x++) {
1495                 xfer->sumlen += xfer->frlengths[x];
1496                 if (xfer->sumlen < xfer->frlengths[x]) {
1497                         /* length wrapped around */
1498                         USB_BUS_LOCK(bus);
1499                         usbd_transfer_done(xfer, USB_ERR_INVAL);
1500                         USB_BUS_UNLOCK(bus);
1501                         return;
1502                 }
1503         }
1504
1505         /* clear some internal flags */
1506
1507         xfer->flags_int.short_xfer_ok = 0;
1508         xfer->flags_int.short_frames_ok = 0;
1509
1510         /* check if this is a control transfer */
1511
1512         if (xfer->flags_int.control_xfr) {
1513
1514                 if (usbd_setup_ctrl_transfer(xfer)) {
1515                         USB_BUS_LOCK(bus);
1516                         usbd_transfer_done(xfer, USB_ERR_STALLED);
1517                         USB_BUS_UNLOCK(bus);
1518                         return;
1519                 }
1520         }
1521         /*
1522          * Setup filtered version of some transfer flags,
1523          * in case of data read direction
1524          */
1525         if (USB_GET_DATA_ISREAD(xfer)) {
1526
1527                 if (xfer->flags.short_frames_ok) {
1528                         xfer->flags_int.short_xfer_ok = 1;
1529                         xfer->flags_int.short_frames_ok = 1;
1530                 } else if (xfer->flags.short_xfer_ok) {
1531                         xfer->flags_int.short_xfer_ok = 1;
1532
1533                         /* check for control transfer */
1534                         if (xfer->flags_int.control_xfr) {
1535                                 /*
1536                                  * 1) Control transfers do not support
1537                                  * reception of multiple short USB
1538                                  * frames in host mode and device side
1539                                  * mode, with exception of:
1540                                  *
1541                                  * 2) Due to sometimes buggy device
1542                                  * side firmware we need to do a
1543                                  * STATUS stage in case of short
1544                                  * control transfers in USB host mode.
1545                                  * The STATUS stage then becomes the
1546                                  * "alt_next" to the DATA stage.
1547                                  */
1548                                 xfer->flags_int.short_frames_ok = 1;
1549                         }
1550                 }
1551         }
1552         /*
1553          * Check if BUS-DMA support is enabled and try to load virtual
1554          * buffers into DMA, if any:
1555          */
1556 #if USB_HAVE_BUSDMA
1557         if (xfer->flags_int.bdma_enable) {
1558                 /* insert the USB transfer last in the BUS-DMA queue */
1559                 usb_command_wrapper(&xfer->xroot->dma_q, xfer);
1560                 return;
1561         }
1562 #endif
1563         /*
1564          * Enter the USB transfer into the Host Controller or
1565          * Device Controller schedule:
1566          */
1567         usbd_pipe_enter(xfer);
1568 }
1569
1570 /*------------------------------------------------------------------------*
1571  *      usbd_pipe_enter - factored out code
1572  *------------------------------------------------------------------------*/
1573 void
1574 usbd_pipe_enter(struct usb_xfer *xfer)
1575 {
1576         struct usb_endpoint *ep;
1577
1578         USB_XFER_LOCK_ASSERT(xfer, MA_OWNED);
1579
1580         USB_BUS_LOCK(xfer->xroot->bus);
1581
1582         ep = xfer->endpoint;
1583
1584         DPRINTF("enter\n");
1585
1586         /* enter the transfer */
1587         (ep->methods->enter) (xfer);
1588
1589         xfer->flags_int.can_cancel_immed = 1;
1590
1591         /* check for transfer error */
1592         if (xfer->error) {
1593                 /* some error has happened */
1594                 usbd_transfer_done(xfer, 0);
1595                 USB_BUS_UNLOCK(xfer->xroot->bus);
1596                 return;
1597         }
1598
1599         /* start the transfer */
1600         usb_command_wrapper(&ep->endpoint_q, xfer);
1601         USB_BUS_UNLOCK(xfer->xroot->bus);
1602 }
1603
1604 /*------------------------------------------------------------------------*
1605  *      usbd_transfer_start - start an USB transfer
1606  *
1607  * NOTE: Calling this function more than one time will only
1608  *       result in a single transfer start, until the USB transfer
1609  *       completes.
1610  *------------------------------------------------------------------------*/
1611 void
1612 usbd_transfer_start(struct usb_xfer *xfer)
1613 {
1614         if (xfer == NULL) {
1615                 /* transfer is gone */
1616                 return;
1617         }
1618         USB_XFER_LOCK_ASSERT(xfer, MA_OWNED);
1619
1620         /* mark the USB transfer started */
1621
1622         if (!xfer->flags_int.started) {
1623                 xfer->flags_int.started = 1;
1624         }
1625         /* check if the USB transfer callback is already transferring */
1626
1627         if (xfer->flags_int.transferring) {
1628                 return;
1629         }
1630         USB_BUS_LOCK(xfer->xroot->bus);
1631         /* call the USB transfer callback */
1632         usbd_callback_ss_done_defer(xfer);
1633         USB_BUS_UNLOCK(xfer->xroot->bus);
1634 }
1635
1636 /*------------------------------------------------------------------------*
1637  *      usbd_transfer_stop - stop an USB transfer
1638  *
1639  * NOTE: Calling this function more than one time will only
1640  *       result in a single transfer stop.
1641  * NOTE: When this function returns it is not safe to free nor
1642  *       reuse any DMA buffers. See "usbd_transfer_drain()".
1643  *------------------------------------------------------------------------*/
1644 void
1645 usbd_transfer_stop(struct usb_xfer *xfer)
1646 {
1647         struct usb_endpoint *ep;
1648
1649         if (xfer == NULL) {
1650                 /* transfer is gone */
1651                 return;
1652         }
1653         USB_XFER_LOCK_ASSERT(xfer, MA_OWNED);
1654
1655         /* check if the USB transfer was ever opened */
1656
1657         if (!xfer->flags_int.open) {
1658                 /* nothing to do except clearing the "started" flag */
1659                 xfer->flags_int.started = 0;
1660                 return;
1661         }
1662         /* try to stop the current USB transfer */
1663
1664         USB_BUS_LOCK(xfer->xroot->bus);
1665         xfer->error = USB_ERR_CANCELLED;/* override any previous error */
1666         /*
1667          * Clear "open" and "started" when both private and USB lock
1668          * is locked so that we don't get a race updating "flags_int"
1669          */
1670         xfer->flags_int.open = 0;
1671         xfer->flags_int.started = 0;
1672
1673         /*
1674          * Check if we can cancel the USB transfer immediately.
1675          */
1676         if (xfer->flags_int.transferring) {
1677                 if (xfer->flags_int.can_cancel_immed &&
1678                     (!xfer->flags_int.did_close)) {
1679                         DPRINTF("close\n");
1680                         /*
1681                          * The following will lead to an USB_ERR_CANCELLED
1682                          * error code being passed to the USB callback.
1683                          */
1684                         (xfer->endpoint->methods->close) (xfer);
1685                         /* only close once */
1686                         xfer->flags_int.did_close = 1;
1687                 } else {
1688                         /* need to wait for the next done callback */
1689                 }
1690         } else {
1691                 DPRINTF("close\n");
1692
1693                 /* close here and now */
1694                 (xfer->endpoint->methods->close) (xfer);
1695
1696                 /*
1697                  * Any additional DMA delay is done by
1698                  * "usbd_transfer_unsetup()".
1699                  */
1700
1701                 /*
1702                  * Special case. Check if we need to restart a blocked
1703                  * endpoint.
1704                  */
1705                 ep = xfer->endpoint;
1706
1707                 /*
1708                  * If the current USB transfer is completing we need
1709                  * to start the next one:
1710                  */
1711                 if (ep->endpoint_q.curr == xfer) {
1712                         usb_command_wrapper(&ep->endpoint_q, NULL);
1713                 }
1714         }
1715
1716         USB_BUS_UNLOCK(xfer->xroot->bus);
1717 }
1718
1719 /*------------------------------------------------------------------------*
1720  *      usbd_transfer_pending
1721  *
1722  * This function will check if an USB transfer is pending which is a
1723  * little bit complicated!
1724  * Return values:
1725  * 0: Not pending
1726  * 1: Pending: The USB transfer will receive a callback in the future.
1727  *------------------------------------------------------------------------*/
1728 uint8_t
1729 usbd_transfer_pending(struct usb_xfer *xfer)
1730 {
1731         struct usb_xfer_root *info;
1732         struct usb_xfer_queue *pq;
1733
1734         if (xfer == NULL) {
1735                 /* transfer is gone */
1736                 return (0);
1737         }
1738         USB_XFER_LOCK_ASSERT(xfer, MA_OWNED);
1739
1740         if (xfer->flags_int.transferring) {
1741                 /* trivial case */
1742                 return (1);
1743         }
1744         USB_BUS_LOCK(xfer->xroot->bus);
1745         if (xfer->wait_queue) {
1746                 /* we are waiting on a queue somewhere */
1747                 USB_BUS_UNLOCK(xfer->xroot->bus);
1748                 return (1);
1749         }
1750         info = xfer->xroot;
1751         pq = &info->done_q;
1752
1753         if (pq->curr == xfer) {
1754                 /* we are currently scheduled for callback */
1755                 USB_BUS_UNLOCK(xfer->xroot->bus);
1756                 return (1);
1757         }
1758         /* we are not pending */
1759         USB_BUS_UNLOCK(xfer->xroot->bus);
1760         return (0);
1761 }
1762
1763 /*------------------------------------------------------------------------*
1764  *      usbd_transfer_drain
1765  *
1766  * This function will stop the USB transfer and wait for any
1767  * additional BUS-DMA and HW-DMA operations to complete. Buffers that
1768  * are loaded into DMA can safely be freed or reused after that this
1769  * function has returned.
1770  *------------------------------------------------------------------------*/
1771 void
1772 usbd_transfer_drain(struct usb_xfer *xfer)
1773 {
1774         WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK, NULL,
1775             "usbd_transfer_drain can sleep!");
1776
1777         if (xfer == NULL) {
1778                 /* transfer is gone */
1779                 return;
1780         }
1781         if (xfer->xroot->xfer_mtx != &Giant) {
1782                 USB_XFER_LOCK_ASSERT(xfer, MA_NOTOWNED);
1783         }
1784         USB_XFER_LOCK(xfer);
1785
1786         usbd_transfer_stop(xfer);
1787
1788         while (usbd_transfer_pending(xfer) || 
1789             xfer->flags_int.doing_callback) {
1790
1791                 /* 
1792                  * It is allowed that the callback can drop its
1793                  * transfer mutex. In that case checking only
1794                  * "usbd_transfer_pending()" is not enough to tell if
1795                  * the USB transfer is fully drained. We also need to
1796                  * check the internal "doing_callback" flag.
1797                  */
1798                 xfer->flags_int.draining = 1;
1799
1800                 /*
1801                  * Wait until the current outstanding USB
1802                  * transfer is complete !
1803                  */
1804                 cv_wait(&xfer->xroot->cv_drain, xfer->xroot->xfer_mtx);
1805         }
1806         USB_XFER_UNLOCK(xfer);
1807 }
1808
1809 struct usb_page_cache *
1810 usbd_xfer_get_frame(struct usb_xfer *xfer, usb_frcount_t frindex)
1811 {
1812         KASSERT(frindex < xfer->max_frame_count, ("frame index overflow"));
1813
1814         return (&xfer->frbuffers[frindex]);
1815 }
1816
1817 usb_frlength_t
1818 usbd_xfer_frame_len(struct usb_xfer *xfer, usb_frcount_t frindex)
1819 {
1820         KASSERT(frindex < xfer->max_frame_count, ("frame index overflow"));
1821
1822         return (xfer->frlengths[frindex]);
1823 }
1824
1825 /*------------------------------------------------------------------------*
1826  *      usbd_xfer_set_frame_data
1827  *
1828  * This function sets the pointer of the buffer that should
1829  * loaded directly into DMA for the given USB frame. Passing "ptr"
1830  * equal to NULL while the corresponding "frlength" is greater
1831  * than zero gives undefined results!
1832  *------------------------------------------------------------------------*/
1833 void
1834 usbd_xfer_set_frame_data(struct usb_xfer *xfer, usb_frcount_t frindex,
1835     void *ptr, usb_frlength_t len)
1836 {
1837         KASSERT(frindex < xfer->max_frame_count, ("frame index overflow"));
1838
1839         /* set virtual address to load and length */
1840         xfer->frbuffers[frindex].buffer = ptr;
1841         usbd_xfer_set_frame_len(xfer, frindex, len);
1842 }
1843
1844 void
1845 usbd_xfer_frame_data(struct usb_xfer *xfer, usb_frcount_t frindex,
1846     void **ptr, int *len)
1847 {
1848         KASSERT(frindex < xfer->max_frame_count, ("frame index overflow"));
1849
1850         if (ptr != NULL)
1851                 *ptr = xfer->frbuffers[frindex].buffer;
1852         if (len != NULL)
1853                 *len = xfer->frlengths[frindex];
1854 }
1855
1856 void
1857 usbd_xfer_status(struct usb_xfer *xfer, int *actlen, int *sumlen, int *aframes,
1858     int *nframes)
1859 {
1860         if (actlen != NULL)
1861                 *actlen = xfer->actlen;
1862         if (sumlen != NULL)
1863                 *sumlen = xfer->sumlen;
1864         if (aframes != NULL)
1865                 *aframes = xfer->aframes;
1866         if (nframes != NULL)
1867                 *nframes = xfer->nframes;
1868 }
1869
1870 /*------------------------------------------------------------------------*
1871  *      usbd_xfer_set_frame_offset
1872  *
1873  * This function sets the frame data buffer offset relative to the beginning
1874  * of the USB DMA buffer allocated for this USB transfer.
1875  *------------------------------------------------------------------------*/
1876 void
1877 usbd_xfer_set_frame_offset(struct usb_xfer *xfer, usb_frlength_t offset,
1878     usb_frcount_t frindex)
1879 {
1880         KASSERT(!xfer->flags.ext_buffer, ("Cannot offset data frame "
1881             "when the USB buffer is external!\n"));
1882         KASSERT(frindex < xfer->max_frame_count, ("frame index overflow"));
1883
1884         /* set virtual address to load */
1885         xfer->frbuffers[frindex].buffer =
1886             USB_ADD_BYTES(xfer->local_buffer, offset);
1887 }
1888
1889 void
1890 usbd_xfer_set_interval(struct usb_xfer *xfer, int i)
1891 {
1892         xfer->interval = i;
1893 }
1894
1895 void
1896 usbd_xfer_set_timeout(struct usb_xfer *xfer, int t)
1897 {
1898         xfer->timeout = t;
1899 }
1900
1901 void
1902 usbd_xfer_set_frames(struct usb_xfer *xfer, usb_frcount_t n)
1903 {
1904         xfer->nframes = n;
1905 }
1906
1907 usb_frcount_t
1908 usbd_xfer_max_frames(struct usb_xfer *xfer)
1909 {
1910         return (xfer->max_frame_count);
1911 }
1912
1913 usb_frlength_t
1914 usbd_xfer_max_len(struct usb_xfer *xfer)
1915 {
1916         return (xfer->max_data_length);
1917 }
1918
1919 usb_frlength_t
1920 usbd_xfer_max_framelen(struct usb_xfer *xfer)
1921 {
1922         return (xfer->max_frame_size);
1923 }
1924
1925 void
1926 usbd_xfer_set_frame_len(struct usb_xfer *xfer, usb_frcount_t frindex,
1927     usb_frlength_t len)
1928 {
1929         KASSERT(frindex < xfer->max_frame_count, ("frame index overflow"));
1930
1931         xfer->frlengths[frindex] = len;
1932 }
1933
1934 /*------------------------------------------------------------------------*
1935  *      usb_callback_proc - factored out code
1936  *
1937  * This function performs USB callbacks.
1938  *------------------------------------------------------------------------*/
1939 static void
1940 usb_callback_proc(struct usb_proc_msg *_pm)
1941 {
1942         struct usb_done_msg *pm = (void *)_pm;
1943         struct usb_xfer_root *info = pm->xroot;
1944
1945         /* Change locking order */
1946         USB_BUS_UNLOCK(info->bus);
1947
1948         /*
1949          * We exploit the fact that the mutex is the same for all
1950          * callbacks that will be called from this thread:
1951          */
1952         mtx_lock(info->xfer_mtx);
1953         USB_BUS_LOCK(info->bus);
1954
1955         /* Continue where we lost track */
1956         usb_command_wrapper(&info->done_q,
1957             info->done_q.curr);
1958
1959         mtx_unlock(info->xfer_mtx);
1960 }
1961
1962 /*------------------------------------------------------------------------*
1963  *      usbd_callback_ss_done_defer
1964  *
1965  * This function will defer the start, stop and done callback to the
1966  * correct thread.
1967  *------------------------------------------------------------------------*/
1968 static void
1969 usbd_callback_ss_done_defer(struct usb_xfer *xfer)
1970 {
1971         struct usb_xfer_root *info = xfer->xroot;
1972         struct usb_xfer_queue *pq = &info->done_q;
1973
1974         USB_BUS_LOCK_ASSERT(xfer->xroot->bus, MA_OWNED);
1975
1976         if (pq->curr != xfer) {
1977                 usbd_transfer_enqueue(pq, xfer);
1978         }
1979         if (!pq->recurse_1) {
1980
1981                 /*
1982                  * We have to postpone the callback due to the fact we
1983                  * will have a Lock Order Reversal, LOR, if we try to
1984                  * proceed !
1985                  */
1986                 if (usb_proc_msignal(info->done_p,
1987                     &info->done_m[0], &info->done_m[1])) {
1988                         /* ignore */
1989                 }
1990         } else {
1991                 /* clear second recurse flag */
1992                 pq->recurse_2 = 0;
1993         }
1994         return;
1995
1996 }
1997
1998 /*------------------------------------------------------------------------*
1999  *      usbd_callback_wrapper
2000  *
2001  * This is a wrapper for USB callbacks. This wrapper does some
2002  * auto-magic things like figuring out if we can call the callback
2003  * directly from the current context or if we need to wakeup the
2004  * interrupt process.
2005  *------------------------------------------------------------------------*/
2006 static void
2007 usbd_callback_wrapper(struct usb_xfer_queue *pq)
2008 {
2009         struct usb_xfer *xfer = pq->curr;
2010         struct usb_xfer_root *info = xfer->xroot;
2011
2012         USB_BUS_LOCK_ASSERT(info->bus, MA_OWNED);
2013         if (!mtx_owned(info->xfer_mtx)) {
2014                 /*
2015                  * Cases that end up here:
2016                  *
2017                  * 5) HW interrupt done callback or other source.
2018                  */
2019                 DPRINTFN(3, "case 5\n");
2020
2021                 /*
2022                  * We have to postpone the callback due to the fact we
2023                  * will have a Lock Order Reversal, LOR, if we try to
2024                  * proceed !
2025                  */
2026                 if (usb_proc_msignal(info->done_p,
2027                     &info->done_m[0], &info->done_m[1])) {
2028                         /* ignore */
2029                 }
2030                 return;
2031         }
2032         /*
2033          * Cases that end up here:
2034          *
2035          * 1) We are starting a transfer
2036          * 2) We are prematurely calling back a transfer
2037          * 3) We are stopping a transfer
2038          * 4) We are doing an ordinary callback
2039          */
2040         DPRINTFN(3, "case 1-4\n");
2041         /* get next USB transfer in the queue */
2042         info->done_q.curr = NULL;
2043
2044         /* set flag in case of drain */
2045         xfer->flags_int.doing_callback = 1;
2046
2047         USB_BUS_UNLOCK(info->bus);
2048         USB_BUS_LOCK_ASSERT(info->bus, MA_NOTOWNED);
2049
2050         /* set correct USB state for callback */
2051         if (!xfer->flags_int.transferring) {
2052                 xfer->usb_state = USB_ST_SETUP;
2053                 if (!xfer->flags_int.started) {
2054                         /* we got stopped before we even got started */
2055                         USB_BUS_LOCK(info->bus);
2056                         goto done;
2057                 }
2058         } else {
2059
2060                 if (usbd_callback_wrapper_sub(xfer)) {
2061                         /* the callback has been deferred */
2062                         USB_BUS_LOCK(info->bus);
2063                         goto done;
2064                 }
2065 #if USB_HAVE_POWERD
2066                 /* decrement power reference */
2067                 usbd_transfer_power_ref(xfer, -1);
2068 #endif
2069                 xfer->flags_int.transferring = 0;
2070
2071                 if (xfer->error) {
2072                         xfer->usb_state = USB_ST_ERROR;
2073                 } else {
2074                         /* set transferred state */
2075                         xfer->usb_state = USB_ST_TRANSFERRED;
2076 #if USB_HAVE_BUSDMA
2077                         /* sync DMA memory, if any */
2078                         if (xfer->flags_int.bdma_enable &&
2079                             (!xfer->flags_int.bdma_no_post_sync)) {
2080                                 usb_bdma_post_sync(xfer);
2081                         }
2082 #endif
2083                 }
2084         }
2085
2086         /* call processing routine */
2087         (xfer->callback) (xfer, xfer->error);
2088
2089         /* pickup the USB mutex again */
2090         USB_BUS_LOCK(info->bus);
2091
2092         /*
2093          * Check if we got started after that we got cancelled, but
2094          * before we managed to do the callback.
2095          */
2096         if ((!xfer->flags_int.open) &&
2097             (xfer->flags_int.started) &&
2098             (xfer->usb_state == USB_ST_ERROR)) {
2099                 /* clear flag in case of drain */
2100                 xfer->flags_int.doing_callback = 0;
2101                 /* try to loop, but not recursivly */
2102                 usb_command_wrapper(&info->done_q, xfer);
2103                 return;
2104         }
2105
2106 done:
2107         /* clear flag in case of drain */
2108         xfer->flags_int.doing_callback = 0;
2109
2110         /*
2111          * Check if we are draining.
2112          */
2113         if (xfer->flags_int.draining &&
2114             (!xfer->flags_int.transferring)) {
2115                 /* "usbd_transfer_drain()" is waiting for end of transfer */
2116                 xfer->flags_int.draining = 0;
2117                 cv_broadcast(&info->cv_drain);
2118         }
2119
2120         /* do the next callback, if any */
2121         usb_command_wrapper(&info->done_q,
2122             info->done_q.curr);
2123 }
2124
2125 /*------------------------------------------------------------------------*
2126  *      usb_dma_delay_done_cb
2127  *
2128  * This function is called when the DMA delay has been exectuded, and
2129  * will make sure that the callback is called to complete the USB
2130  * transfer. This code path is ususally only used when there is an USB
2131  * error like USB_ERR_CANCELLED.
2132  *------------------------------------------------------------------------*/
2133 static void
2134 usb_dma_delay_done_cb(void *arg)
2135 {
2136         struct usb_xfer *xfer = arg;
2137
2138         USB_BUS_LOCK_ASSERT(xfer->xroot->bus, MA_OWNED);
2139
2140         DPRINTFN(3, "Completed %p\n", xfer);
2141
2142         /* queue callback for execution, again */
2143         usbd_transfer_done(xfer, 0);
2144 }
2145
2146 /*------------------------------------------------------------------------*
2147  *      usbd_transfer_dequeue
2148  *
2149  *  - This function is used to remove an USB transfer from a USB
2150  *  transfer queue.
2151  *
2152  *  - This function can be called multiple times in a row.
2153  *------------------------------------------------------------------------*/
2154 void
2155 usbd_transfer_dequeue(struct usb_xfer *xfer)
2156 {
2157         struct usb_xfer_queue *pq;
2158
2159         pq = xfer->wait_queue;
2160         if (pq) {
2161                 TAILQ_REMOVE(&pq->head, xfer, wait_entry);
2162                 xfer->wait_queue = NULL;
2163         }
2164 }
2165
2166 /*------------------------------------------------------------------------*
2167  *      usbd_transfer_enqueue
2168  *
2169  *  - This function is used to insert an USB transfer into a USB *
2170  *  transfer queue.
2171  *
2172  *  - This function can be called multiple times in a row.
2173  *------------------------------------------------------------------------*/
2174 void
2175 usbd_transfer_enqueue(struct usb_xfer_queue *pq, struct usb_xfer *xfer)
2176 {
2177         /*
2178          * Insert the USB transfer into the queue, if it is not
2179          * already on a USB transfer queue:
2180          */
2181         if (xfer->wait_queue == NULL) {
2182                 xfer->wait_queue = pq;
2183                 TAILQ_INSERT_TAIL(&pq->head, xfer, wait_entry);
2184         }
2185 }
2186
2187 /*------------------------------------------------------------------------*
2188  *      usbd_transfer_done
2189  *
2190  *  - This function is used to remove an USB transfer from the busdma,
2191  *  pipe or interrupt queue.
2192  *
2193  *  - This function is used to queue the USB transfer on the done
2194  *  queue.
2195  *
2196  *  - This function is used to stop any USB transfer timeouts.
2197  *------------------------------------------------------------------------*/
2198 void
2199 usbd_transfer_done(struct usb_xfer *xfer, usb_error_t error)
2200 {
2201         USB_BUS_LOCK_ASSERT(xfer->xroot->bus, MA_OWNED);
2202
2203         DPRINTF("err=%s\n", usbd_errstr(error));
2204
2205         /*
2206          * If we are not transferring then just return.
2207          * This can happen during transfer cancel.
2208          */
2209         if (!xfer->flags_int.transferring) {
2210                 DPRINTF("not transferring\n");
2211                 return;
2212         }
2213         /* only set transfer error if not already set */
2214         if (!xfer->error) {
2215                 xfer->error = error;
2216         }
2217         /* stop any callouts */
2218         usb_callout_stop(&xfer->timeout_handle);
2219
2220         /*
2221          * If we are waiting on a queue, just remove the USB transfer
2222          * from the queue, if any. We should have the required locks
2223          * locked to do the remove when this function is called.
2224          */
2225         usbd_transfer_dequeue(xfer);
2226
2227 #if USB_HAVE_BUSDMA
2228         if (mtx_owned(xfer->xroot->xfer_mtx)) {
2229                 struct usb_xfer_queue *pq;
2230
2231                 /*
2232                  * If the private USB lock is not locked, then we assume
2233                  * that the BUS-DMA load stage has been passed:
2234                  */
2235                 pq = &xfer->xroot->dma_q;
2236
2237                 if (pq->curr == xfer) {
2238                         /* start the next BUS-DMA load, if any */
2239                         usb_command_wrapper(pq, NULL);
2240                 }
2241         }
2242 #endif
2243         /* keep some statistics */
2244         if (xfer->error) {
2245                 xfer->xroot->bus->stats_err.uds_requests
2246                     [xfer->endpoint->edesc->bmAttributes & UE_XFERTYPE]++;
2247         } else {
2248                 xfer->xroot->bus->stats_ok.uds_requests
2249                     [xfer->endpoint->edesc->bmAttributes & UE_XFERTYPE]++;
2250         }
2251
2252         /* call the USB transfer callback */
2253         usbd_callback_ss_done_defer(xfer);
2254 }
2255
2256 /*------------------------------------------------------------------------*
2257  *      usbd_transfer_start_cb
2258  *
2259  * This function is called to start the USB transfer when
2260  * "xfer->interval" is greater than zero, and and the endpoint type is
2261  * BULK or CONTROL.
2262  *------------------------------------------------------------------------*/
2263 static void
2264 usbd_transfer_start_cb(void *arg)
2265 {
2266         struct usb_xfer *xfer = arg;
2267         struct usb_endpoint *ep = xfer->endpoint;
2268
2269         USB_BUS_LOCK_ASSERT(xfer->xroot->bus, MA_OWNED);
2270
2271         DPRINTF("start\n");
2272
2273         /* start the transfer */
2274         (ep->methods->start) (xfer);
2275
2276         xfer->flags_int.can_cancel_immed = 1;
2277
2278         /* check for error */
2279         if (xfer->error) {
2280                 /* some error has happened */
2281                 usbd_transfer_done(xfer, 0);
2282         }
2283 }
2284
2285 /*------------------------------------------------------------------------*
2286  *      usbd_xfer_set_stall
2287  *
2288  * This function is used to set the stall flag outside the
2289  * callback. This function is NULL safe.
2290  *------------------------------------------------------------------------*/
2291 void
2292 usbd_xfer_set_stall(struct usb_xfer *xfer)
2293 {
2294         if (xfer == NULL) {
2295                 /* tearing down */
2296                 return;
2297         }
2298         USB_XFER_LOCK_ASSERT(xfer, MA_OWNED);
2299
2300         /* avoid any races by locking the USB mutex */
2301         USB_BUS_LOCK(xfer->xroot->bus);
2302         xfer->flags.stall_pipe = 1;
2303         USB_BUS_UNLOCK(xfer->xroot->bus);
2304 }
2305
2306 int
2307 usbd_xfer_is_stalled(struct usb_xfer *xfer)
2308 {
2309         return (xfer->endpoint->is_stalled);
2310 }
2311
2312 /*------------------------------------------------------------------------*
2313  *      usbd_transfer_clear_stall
2314  *
2315  * This function is used to clear the stall flag outside the
2316  * callback. This function is NULL safe.
2317  *------------------------------------------------------------------------*/
2318 void
2319 usbd_transfer_clear_stall(struct usb_xfer *xfer)
2320 {
2321         if (xfer == NULL) {
2322                 /* tearing down */
2323                 return;
2324         }
2325         USB_XFER_LOCK_ASSERT(xfer, MA_OWNED);
2326
2327         /* avoid any races by locking the USB mutex */
2328         USB_BUS_LOCK(xfer->xroot->bus);
2329
2330         xfer->flags.stall_pipe = 0;
2331
2332         USB_BUS_UNLOCK(xfer->xroot->bus);
2333 }
2334
2335 /*------------------------------------------------------------------------*
2336  *      usbd_pipe_start
2337  *
2338  * This function is used to add an USB transfer to the pipe transfer list.
2339  *------------------------------------------------------------------------*/
2340 void
2341 usbd_pipe_start(struct usb_xfer_queue *pq)
2342 {
2343         struct usb_endpoint *ep;
2344         struct usb_xfer *xfer;
2345         uint8_t type;
2346
2347         xfer = pq->curr;
2348         ep = xfer->endpoint;
2349
2350         USB_BUS_LOCK_ASSERT(xfer->xroot->bus, MA_OWNED);
2351
2352         /*
2353          * If the endpoint is already stalled we do nothing !
2354          */
2355         if (ep->is_stalled) {
2356                 return;
2357         }
2358         /*
2359          * Check if we are supposed to stall the endpoint:
2360          */
2361         if (xfer->flags.stall_pipe) {
2362                 /* clear stall command */
2363                 xfer->flags.stall_pipe = 0;
2364
2365                 /*
2366                  * Only stall BULK and INTERRUPT endpoints.
2367                  */
2368                 type = (ep->edesc->bmAttributes & UE_XFERTYPE);
2369                 if ((type == UE_BULK) ||
2370                     (type == UE_INTERRUPT)) {
2371                         struct usb_device *udev;
2372                         struct usb_xfer_root *info;
2373                         uint8_t did_stall;
2374
2375                         info = xfer->xroot;
2376                         udev = info->udev;
2377                         did_stall = 1;
2378
2379                         if (udev->flags.usb_mode == USB_MODE_DEVICE) {
2380                                 (udev->bus->methods->set_stall) (
2381                                     udev, NULL, ep, &did_stall);
2382                         } else if (udev->default_xfer[1]) {
2383                                 info = udev->default_xfer[1]->xroot;
2384                                 usb_proc_msignal(
2385                                     &info->bus->non_giant_callback_proc,
2386                                     &udev->cs_msg[0], &udev->cs_msg[1]);
2387                         } else {
2388                                 /* should not happen */
2389                                 DPRINTFN(0, "No stall handler!\n");
2390                         }
2391                         /*
2392                          * Check if we should stall. Some USB hardware
2393                          * handles set- and clear-stall in hardware.
2394                          */
2395                         if (did_stall) {
2396                                 /*
2397                                  * The transfer will be continued when
2398                                  * the clear-stall control endpoint
2399                                  * message is received.
2400                                  */
2401                                 ep->is_stalled = 1;
2402                                 return;
2403                         }
2404                 }
2405         }
2406         /* Set or clear stall complete - special case */
2407         if (xfer->nframes == 0) {
2408                 /* we are complete */
2409                 xfer->aframes = 0;
2410                 usbd_transfer_done(xfer, 0);
2411                 return;
2412         }
2413         /*
2414          * Handled cases:
2415          *
2416          * 1) Start the first transfer queued.
2417          *
2418          * 2) Re-start the current USB transfer.
2419          */
2420         /*
2421          * Check if there should be any
2422          * pre transfer start delay:
2423          */
2424         if (xfer->interval > 0) {
2425                 type = (ep->edesc->bmAttributes & UE_XFERTYPE);
2426                 if ((type == UE_BULK) ||
2427                     (type == UE_CONTROL)) {
2428                         usbd_transfer_timeout_ms(xfer,
2429                             &usbd_transfer_start_cb,
2430                             xfer->interval);
2431                         return;
2432                 }
2433         }
2434         DPRINTF("start\n");
2435
2436         /* start USB transfer */
2437         (ep->methods->start) (xfer);
2438
2439         xfer->flags_int.can_cancel_immed = 1;
2440
2441         /* check for error */
2442         if (xfer->error) {
2443                 /* some error has happened */
2444                 usbd_transfer_done(xfer, 0);
2445         }
2446 }
2447
2448 /*------------------------------------------------------------------------*
2449  *      usbd_transfer_timeout_ms
2450  *
2451  * This function is used to setup a timeout on the given USB
2452  * transfer. If the timeout has been deferred the callback given by
2453  * "cb" will get called after "ms" milliseconds.
2454  *------------------------------------------------------------------------*/
2455 void
2456 usbd_transfer_timeout_ms(struct usb_xfer *xfer,
2457     void (*cb) (void *arg), usb_timeout_t ms)
2458 {
2459         USB_BUS_LOCK_ASSERT(xfer->xroot->bus, MA_OWNED);
2460
2461         /* defer delay */
2462         usb_callout_reset(&xfer->timeout_handle,
2463             USB_MS_TO_TICKS(ms), cb, xfer);
2464 }
2465
2466 /*------------------------------------------------------------------------*
2467  *      usbd_callback_wrapper_sub
2468  *
2469  *  - This function will update variables in an USB transfer after
2470  *  that the USB transfer is complete.
2471  *
2472  *  - This function is used to start the next USB transfer on the
2473  *  ep transfer queue, if any.
2474  *
2475  * NOTE: In some special cases the USB transfer will not be removed from
2476  * the pipe queue, but remain first. To enforce USB transfer removal call
2477  * this function passing the error code "USB_ERR_CANCELLED".
2478  *
2479  * Return values:
2480  * 0: Success.
2481  * Else: The callback has been deferred.
2482  *------------------------------------------------------------------------*/
2483 static uint8_t
2484 usbd_callback_wrapper_sub(struct usb_xfer *xfer)
2485 {
2486         struct usb_endpoint *ep;
2487         usb_frcount_t x;
2488
2489         if ((!xfer->flags_int.open) &&
2490             (!xfer->flags_int.did_close)) {
2491                 DPRINTF("close\n");
2492                 USB_BUS_LOCK(xfer->xroot->bus);
2493                 (xfer->endpoint->methods->close) (xfer);
2494                 USB_BUS_UNLOCK(xfer->xroot->bus);
2495                 /* only close once */
2496                 xfer->flags_int.did_close = 1;
2497                 return (1);             /* wait for new callback */
2498         }
2499         /*
2500          * If we have a non-hardware induced error we
2501          * need to do the DMA delay!
2502          */
2503         if (((xfer->error == USB_ERR_CANCELLED) ||
2504             (xfer->error == USB_ERR_TIMEOUT)) &&
2505             (!xfer->flags_int.did_dma_delay)) {
2506
2507                 usb_timeout_t temp;
2508
2509                 /* only delay once */
2510                 xfer->flags_int.did_dma_delay = 1;
2511
2512                 /* we can not cancel this delay */
2513                 xfer->flags_int.can_cancel_immed = 0;
2514
2515                 temp = usbd_get_dma_delay(xfer->xroot->bus);
2516
2517                 DPRINTFN(3, "DMA delay, %u ms, "
2518                     "on %p\n", temp, xfer);
2519
2520                 if (temp != 0) {
2521                         USB_BUS_LOCK(xfer->xroot->bus);
2522                         usbd_transfer_timeout_ms(xfer,
2523                             &usb_dma_delay_done_cb, temp);
2524                         USB_BUS_UNLOCK(xfer->xroot->bus);
2525                         return (1);     /* wait for new callback */
2526                 }
2527         }
2528         /* check actual number of frames */
2529         if (xfer->aframes > xfer->nframes) {
2530                 if (xfer->error == 0) {
2531                         panic("%s: actual number of frames, %d, is "
2532                             "greater than initial number of frames, %d!\n",
2533                             __FUNCTION__, xfer->aframes, xfer->nframes);
2534                 } else {
2535                         /* just set some valid value */
2536                         xfer->aframes = xfer->nframes;
2537                 }
2538         }
2539         /* compute actual length */
2540         xfer->actlen = 0;
2541
2542         for (x = 0; x != xfer->aframes; x++) {
2543                 xfer->actlen += xfer->frlengths[x];
2544         }
2545
2546         /*
2547          * Frames that were not transferred get zero actual length in
2548          * case the USB device driver does not check the actual number
2549          * of frames transferred, "xfer->aframes":
2550          */
2551         for (; x < xfer->nframes; x++) {
2552                 usbd_xfer_set_frame_len(xfer, x, 0);
2553         }
2554
2555         /* check actual length */
2556         if (xfer->actlen > xfer->sumlen) {
2557                 if (xfer->error == 0) {
2558                         panic("%s: actual length, %d, is greater than "
2559                             "initial length, %d!\n",
2560                             __FUNCTION__, xfer->actlen, xfer->sumlen);
2561                 } else {
2562                         /* just set some valid value */
2563                         xfer->actlen = xfer->sumlen;
2564                 }
2565         }
2566         DPRINTFN(1, "xfer=%p endpoint=%p sts=%d alen=%d, slen=%d, afrm=%d, nfrm=%d\n",
2567             xfer, xfer->endpoint, xfer->error, xfer->actlen, xfer->sumlen,
2568             xfer->aframes, xfer->nframes);
2569
2570         if (xfer->error) {
2571                 /* end of control transfer, if any */
2572                 xfer->flags_int.control_act = 0;
2573
2574                 /* check if we should block the execution queue */
2575                 if ((xfer->error != USB_ERR_CANCELLED) &&
2576                     (xfer->flags.pipe_bof)) {
2577                         DPRINTFN(2, "xfer=%p: Block On Failure "
2578                             "on endpoint=%p\n", xfer, xfer->endpoint);
2579                         goto done;
2580                 }
2581         } else {
2582                 /* check for short transfers */
2583                 if (xfer->actlen < xfer->sumlen) {
2584
2585                         /* end of control transfer, if any */
2586                         xfer->flags_int.control_act = 0;
2587
2588                         if (!xfer->flags_int.short_xfer_ok) {
2589                                 xfer->error = USB_ERR_SHORT_XFER;
2590                                 if (xfer->flags.pipe_bof) {
2591                                         DPRINTFN(2, "xfer=%p: Block On Failure on "
2592                                             "Short Transfer on endpoint %p.\n",
2593                                             xfer, xfer->endpoint);
2594                                         goto done;
2595                                 }
2596                         }
2597                 } else {
2598                         /*
2599                          * Check if we are in the middle of a
2600                          * control transfer:
2601                          */
2602                         if (xfer->flags_int.control_act) {
2603                                 DPRINTFN(5, "xfer=%p: Control transfer "
2604                                     "active on endpoint=%p\n", xfer, xfer->endpoint);
2605                                 goto done;
2606                         }
2607                 }
2608         }
2609
2610         ep = xfer->endpoint;
2611
2612         /*
2613          * If the current USB transfer is completing we need to start the
2614          * next one:
2615          */
2616         USB_BUS_LOCK(xfer->xroot->bus);
2617         if (ep->endpoint_q.curr == xfer) {
2618                 usb_command_wrapper(&ep->endpoint_q, NULL);
2619
2620                 if (ep->endpoint_q.curr || TAILQ_FIRST(&ep->endpoint_q.head)) {
2621                         /* there is another USB transfer waiting */
2622                 } else {
2623                         /* this is the last USB transfer */
2624                         /* clear isochronous sync flag */
2625                         xfer->endpoint->is_synced = 0;
2626                 }
2627         }
2628         USB_BUS_UNLOCK(xfer->xroot->bus);
2629 done:
2630         return (0);
2631 }
2632
2633 /*------------------------------------------------------------------------*
2634  *      usb_command_wrapper
2635  *
2636  * This function is used to execute commands non-recursivly on an USB
2637  * transfer.
2638  *------------------------------------------------------------------------*/
2639 void
2640 usb_command_wrapper(struct usb_xfer_queue *pq, struct usb_xfer *xfer)
2641 {
2642         if (xfer) {
2643                 /*
2644                  * If the transfer is not already processing,
2645                  * queue it!
2646                  */
2647                 if (pq->curr != xfer) {
2648                         usbd_transfer_enqueue(pq, xfer);
2649                         if (pq->curr != NULL) {
2650                                 /* something is already processing */
2651                                 DPRINTFN(6, "busy %p\n", pq->curr);
2652                                 return;
2653                         }
2654                 }
2655         } else {
2656                 /* Get next element in queue */
2657                 pq->curr = NULL;
2658         }
2659
2660         if (!pq->recurse_1) {
2661
2662                 do {
2663
2664                         /* set both recurse flags */
2665                         pq->recurse_1 = 1;
2666                         pq->recurse_2 = 1;
2667
2668                         if (pq->curr == NULL) {
2669                                 xfer = TAILQ_FIRST(&pq->head);
2670                                 if (xfer) {
2671                                         TAILQ_REMOVE(&pq->head, xfer,
2672                                             wait_entry);
2673                                         xfer->wait_queue = NULL;
2674                                         pq->curr = xfer;
2675                                 } else {
2676                                         break;
2677                                 }
2678                         }
2679                         DPRINTFN(6, "cb %p (enter)\n", pq->curr);
2680                         (pq->command) (pq);
2681                         DPRINTFN(6, "cb %p (leave)\n", pq->curr);
2682
2683                 } while (!pq->recurse_2);
2684
2685                 /* clear first recurse flag */
2686                 pq->recurse_1 = 0;
2687
2688         } else {
2689                 /* clear second recurse flag */
2690                 pq->recurse_2 = 0;
2691         }
2692 }
2693
2694 /*------------------------------------------------------------------------*
2695  *      usbd_default_transfer_setup
2696  *
2697  * This function is used to setup the default USB control endpoint
2698  * transfer.
2699  *------------------------------------------------------------------------*/
2700 void
2701 usbd_default_transfer_setup(struct usb_device *udev)
2702 {
2703         struct usb_xfer *xfer;
2704         uint8_t no_resetup;
2705         uint8_t iface_index;
2706
2707         /* check for root HUB */
2708         if (udev->parent_hub == NULL)
2709                 return;
2710 repeat:
2711
2712         xfer = udev->default_xfer[0];
2713         if (xfer) {
2714                 USB_XFER_LOCK(xfer);
2715                 no_resetup =
2716                     ((xfer->address == udev->address) &&
2717                     (udev->default_ep_desc.wMaxPacketSize[0] ==
2718                     udev->ddesc.bMaxPacketSize));
2719                 if (udev->flags.usb_mode == USB_MODE_DEVICE) {
2720                         if (no_resetup) {
2721                                 /*
2722                                  * NOTE: checking "xfer->address" and
2723                                  * starting the USB transfer must be
2724                                  * atomic!
2725                                  */
2726                                 usbd_transfer_start(xfer);
2727                         }
2728                 }
2729                 USB_XFER_UNLOCK(xfer);
2730         } else {
2731                 no_resetup = 0;
2732         }
2733
2734         if (no_resetup) {
2735                 /*
2736                  * All parameters are exactly the same like before.
2737                  * Just return.
2738                  */
2739                 return;
2740         }
2741         /*
2742          * Update wMaxPacketSize for the default control endpoint:
2743          */
2744         udev->default_ep_desc.wMaxPacketSize[0] =
2745             udev->ddesc.bMaxPacketSize;
2746
2747         /*
2748          * Unsetup any existing USB transfer:
2749          */
2750         usbd_transfer_unsetup(udev->default_xfer, USB_DEFAULT_XFER_MAX);
2751
2752         /*
2753          * Try to setup a new USB transfer for the
2754          * default control endpoint:
2755          */
2756         iface_index = 0;
2757         if (usbd_transfer_setup(udev, &iface_index,
2758             udev->default_xfer, usb_control_ep_cfg, USB_DEFAULT_XFER_MAX, NULL,
2759             udev->default_mtx)) {
2760                 DPRINTFN(0, "could not setup default "
2761                     "USB transfer!\n");
2762         } else {
2763                 goto repeat;
2764         }
2765 }
2766
2767 /*------------------------------------------------------------------------*
2768  *      usbd_clear_data_toggle - factored out code
2769  *
2770  * NOTE: the intention of this function is not to reset the hardware
2771  * data toggle.
2772  *------------------------------------------------------------------------*/
2773 void
2774 usbd_clear_data_toggle(struct usb_device *udev, struct usb_endpoint *ep)
2775 {
2776         DPRINTFN(5, "udev=%p endpoint=%p\n", udev, ep);
2777
2778         USB_BUS_LOCK(udev->bus);
2779         ep->toggle_next = 0;
2780         USB_BUS_UNLOCK(udev->bus);
2781 }
2782
2783 /*------------------------------------------------------------------------*
2784  *      usbd_clear_stall_callback - factored out clear stall callback
2785  *
2786  * Input parameters:
2787  *  xfer1: Clear Stall Control Transfer
2788  *  xfer2: Stalled USB Transfer
2789  *
2790  * This function is NULL safe.
2791  *
2792  * Return values:
2793  *   0: In progress
2794  *   Else: Finished
2795  *
2796  * Clear stall config example:
2797  *
2798  * static const struct usb_config my_clearstall =  {
2799  *      .type = UE_CONTROL,
2800  *      .endpoint = 0,
2801  *      .direction = UE_DIR_ANY,
2802  *      .interval = 50, //50 milliseconds
2803  *      .bufsize = sizeof(struct usb_device_request),
2804  *      .timeout = 1000, //1.000 seconds
2805  *      .callback = &my_clear_stall_callback, // **
2806  *      .usb_mode = USB_MODE_HOST,
2807  * };
2808  *
2809  * ** "my_clear_stall_callback" calls "usbd_clear_stall_callback"
2810  * passing the correct parameters.
2811  *------------------------------------------------------------------------*/
2812 uint8_t
2813 usbd_clear_stall_callback(struct usb_xfer *xfer1,
2814     struct usb_xfer *xfer2)
2815 {
2816         struct usb_device_request req;
2817
2818         if (xfer2 == NULL) {
2819                 /* looks like we are tearing down */
2820                 DPRINTF("NULL input parameter\n");
2821                 return (0);
2822         }
2823         USB_XFER_LOCK_ASSERT(xfer1, MA_OWNED);
2824         USB_XFER_LOCK_ASSERT(xfer2, MA_OWNED);
2825
2826         switch (USB_GET_STATE(xfer1)) {
2827         case USB_ST_SETUP:
2828
2829                 /*
2830                  * pre-clear the data toggle to DATA0 ("umass.c" and
2831                  * "ata-usb.c" depends on this)
2832                  */
2833
2834                 usbd_clear_data_toggle(xfer2->xroot->udev, xfer2->endpoint);
2835
2836                 /* setup a clear-stall packet */
2837
2838                 req.bmRequestType = UT_WRITE_ENDPOINT;
2839                 req.bRequest = UR_CLEAR_FEATURE;
2840                 USETW(req.wValue, UF_ENDPOINT_HALT);
2841                 req.wIndex[0] = xfer2->endpoint->edesc->bEndpointAddress;
2842                 req.wIndex[1] = 0;
2843                 USETW(req.wLength, 0);
2844
2845                 /*
2846                  * "usbd_transfer_setup_sub()" will ensure that
2847                  * we have sufficient room in the buffer for
2848                  * the request structure!
2849                  */
2850
2851                 /* copy in the transfer */
2852
2853                 usbd_copy_in(xfer1->frbuffers, 0, &req, sizeof(req));
2854
2855                 /* set length */
2856                 xfer1->frlengths[0] = sizeof(req);
2857                 xfer1->nframes = 1;
2858
2859                 usbd_transfer_submit(xfer1);
2860                 return (0);
2861
2862         case USB_ST_TRANSFERRED:
2863                 break;
2864
2865         default:                        /* Error */
2866                 if (xfer1->error == USB_ERR_CANCELLED) {
2867                         return (0);
2868                 }
2869                 break;
2870         }
2871         return (1);                     /* Clear Stall Finished */
2872 }
2873
2874 /*------------------------------------------------------------------------*
2875  *      usbd_transfer_poll
2876  *
2877  * The following function gets called from the USB keyboard driver and
2878  * UMASS when the system has paniced.
2879  *
2880  * NOTE: It is currently not possible to resume normal operation on
2881  * the USB controller which has been polled, due to clearing of the
2882  * "up_dsleep" and "up_msleep" flags.
2883  *------------------------------------------------------------------------*/
2884 void
2885 usbd_transfer_poll(struct usb_xfer **ppxfer, uint16_t max)
2886 {
2887         struct usb_xfer *xfer;
2888         struct usb_xfer_root *xroot;
2889         struct usb_device *udev;
2890         struct usb_proc_msg *pm;
2891         uint16_t n;
2892         uint16_t drop_bus;
2893         uint16_t drop_xfer;
2894
2895         for (n = 0; n != max; n++) {
2896                 /* Extra checks to avoid panic */
2897                 xfer = ppxfer[n];
2898                 if (xfer == NULL)
2899                         continue;       /* no USB transfer */
2900                 xroot = xfer->xroot;
2901                 if (xroot == NULL)
2902                         continue;       /* no USB root */
2903                 udev = xroot->udev;
2904                 if (udev == NULL)
2905                         continue;       /* no USB device */
2906                 if (udev->bus == NULL)
2907                         continue;       /* no BUS structure */
2908                 if (udev->bus->methods == NULL)
2909                         continue;       /* no BUS methods */
2910                 if (udev->bus->methods->xfer_poll == NULL)
2911                         continue;       /* no poll method */
2912
2913                 /* make sure that the BUS mutex is not locked */
2914                 drop_bus = 0;
2915                 while (mtx_owned(&xroot->udev->bus->bus_mtx)) {
2916                         mtx_unlock(&xroot->udev->bus->bus_mtx);
2917                         drop_bus++;
2918                 }
2919
2920                 /* make sure that the transfer mutex is not locked */
2921                 drop_xfer = 0;
2922                 while (mtx_owned(xroot->xfer_mtx)) {
2923                         mtx_unlock(xroot->xfer_mtx);
2924                         drop_xfer++;
2925                 }
2926
2927                 /* Make sure cv_signal() and cv_broadcast() is not called */
2928                 udev->bus->control_xfer_proc.up_msleep = 0;
2929                 udev->bus->explore_proc.up_msleep = 0;
2930                 udev->bus->giant_callback_proc.up_msleep = 0;
2931                 udev->bus->non_giant_callback_proc.up_msleep = 0;
2932
2933                 /* poll USB hardware */
2934                 (udev->bus->methods->xfer_poll) (udev->bus);
2935
2936                 USB_BUS_LOCK(xroot->bus);
2937
2938                 /* check for clear stall */
2939                 if (udev->default_xfer[1] != NULL) {
2940
2941                         /* poll clear stall start */
2942                         pm = &udev->cs_msg[0].hdr;
2943                         (pm->pm_callback) (pm);
2944                         /* poll clear stall done thread */
2945                         pm = &udev->default_xfer[1]->
2946                             xroot->done_m[0].hdr;
2947                         (pm->pm_callback) (pm);
2948                 }
2949
2950                 /* poll done thread */
2951                 pm = &xroot->done_m[0].hdr;
2952                 (pm->pm_callback) (pm);
2953
2954                 USB_BUS_UNLOCK(xroot->bus);
2955
2956                 /* restore transfer mutex */
2957                 while (drop_xfer--)
2958                         mtx_lock(xroot->xfer_mtx);
2959
2960                 /* restore BUS mutex */
2961                 while (drop_bus--)
2962                         mtx_lock(&xroot->udev->bus->bus_mtx);
2963         }
2964 }
2965
2966 static void
2967 usbd_get_std_packet_size(struct usb_std_packet_size *ptr,
2968     uint8_t type, enum usb_dev_speed speed)
2969 {
2970         static const uint16_t intr_range_max[USB_SPEED_MAX] = {
2971                 [USB_SPEED_LOW] = 8,
2972                 [USB_SPEED_FULL] = 64,
2973                 [USB_SPEED_HIGH] = 1024,
2974                 [USB_SPEED_VARIABLE] = 1024,
2975                 [USB_SPEED_SUPER] = 1024,
2976         };
2977
2978         static const uint16_t isoc_range_max[USB_SPEED_MAX] = {
2979                 [USB_SPEED_LOW] = 0,    /* invalid */
2980                 [USB_SPEED_FULL] = 1023,
2981                 [USB_SPEED_HIGH] = 1024,
2982                 [USB_SPEED_VARIABLE] = 3584,
2983                 [USB_SPEED_SUPER] = 1024,
2984         };
2985
2986         static const uint16_t control_min[USB_SPEED_MAX] = {
2987                 [USB_SPEED_LOW] = 8,
2988                 [USB_SPEED_FULL] = 8,
2989                 [USB_SPEED_HIGH] = 64,
2990                 [USB_SPEED_VARIABLE] = 512,
2991                 [USB_SPEED_SUPER] = 512,
2992         };
2993
2994         static const uint16_t bulk_min[USB_SPEED_MAX] = {
2995                 [USB_SPEED_LOW] = 0,    /* not supported */
2996                 [USB_SPEED_FULL] = 8,
2997                 [USB_SPEED_HIGH] = 512,
2998                 [USB_SPEED_VARIABLE] = 512,
2999                 [USB_SPEED_SUPER] = 1024,
3000         };
3001
3002         uint16_t temp;
3003
3004         memset(ptr, 0, sizeof(*ptr));
3005
3006         switch (type) {
3007         case UE_INTERRUPT:
3008                 ptr->range.max = intr_range_max[speed];
3009                 break;
3010         case UE_ISOCHRONOUS:
3011                 ptr->range.max = isoc_range_max[speed];
3012                 break;
3013         default:
3014                 if (type == UE_BULK)
3015                         temp = bulk_min[speed];
3016                 else /* UE_CONTROL */
3017                         temp = control_min[speed];
3018
3019                 /* default is fixed */
3020                 ptr->fixed[0] = temp;
3021                 ptr->fixed[1] = temp;
3022                 ptr->fixed[2] = temp;
3023                 ptr->fixed[3] = temp;
3024
3025                 if (speed == USB_SPEED_FULL) {
3026                         /* multiple sizes */
3027                         ptr->fixed[1] = 16;
3028                         ptr->fixed[2] = 32;
3029                         ptr->fixed[3] = 64;
3030                 }
3031                 if ((speed == USB_SPEED_VARIABLE) &&
3032                     (type == UE_BULK)) {
3033                         /* multiple sizes */
3034                         ptr->fixed[2] = 1024;
3035                         ptr->fixed[3] = 1536;
3036                 }
3037                 break;
3038         }
3039 }
3040
3041 void    *
3042 usbd_xfer_softc(struct usb_xfer *xfer)
3043 {
3044         return (xfer->priv_sc);
3045 }
3046
3047 void *
3048 usbd_xfer_get_priv(struct usb_xfer *xfer)
3049 {
3050         return (xfer->priv_fifo);
3051 }
3052
3053 void
3054 usbd_xfer_set_priv(struct usb_xfer *xfer, void *ptr)
3055 {
3056         xfer->priv_fifo = ptr;
3057 }
3058
3059 uint8_t
3060 usbd_xfer_state(struct usb_xfer *xfer)
3061 {
3062         return (xfer->usb_state);
3063 }
3064
3065 void
3066 usbd_xfer_set_flag(struct usb_xfer *xfer, int flag)
3067 {
3068         switch (flag) {
3069                 case USB_FORCE_SHORT_XFER:
3070                         xfer->flags.force_short_xfer = 1;
3071                         break;
3072                 case USB_SHORT_XFER_OK:
3073                         xfer->flags.short_xfer_ok = 1;
3074                         break;
3075                 case USB_MULTI_SHORT_OK:
3076                         xfer->flags.short_frames_ok = 1;
3077                         break;
3078                 case USB_MANUAL_STATUS:
3079                         xfer->flags.manual_status = 1;
3080                         break;
3081         }
3082 }
3083
3084 void
3085 usbd_xfer_clr_flag(struct usb_xfer *xfer, int flag)
3086 {
3087         switch (flag) {
3088                 case USB_FORCE_SHORT_XFER:
3089                         xfer->flags.force_short_xfer = 0;
3090                         break;
3091                 case USB_SHORT_XFER_OK:
3092                         xfer->flags.short_xfer_ok = 0;
3093                         break;
3094                 case USB_MULTI_SHORT_OK:
3095                         xfer->flags.short_frames_ok = 0;
3096                         break;
3097                 case USB_MANUAL_STATUS:
3098                         xfer->flags.manual_status = 0;
3099                         break;
3100         }
3101 }
3102
3103 /*
3104  * The following function returns in milliseconds when the isochronous
3105  * transfer was completed by the hardware. The returned value wraps
3106  * around 65536 milliseconds.
3107  */
3108 uint16_t
3109 usbd_xfer_get_timestamp(struct usb_xfer *xfer)
3110 {
3111         return (xfer->isoc_time_complete);
3112 }