]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/dev/usb/usb_device.c
MFC r260808 and r260814:
[FreeBSD/stable/8.git] / sys / dev / usb / usb_device.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/module.h>
36 #include <sys/lock.h>
37 #include <sys/mutex.h>
38 #include <sys/condvar.h>
39 #include <sys/sysctl.h>
40 #include <sys/sx.h>
41 #include <sys/unistd.h>
42 #include <sys/callout.h>
43 #include <sys/malloc.h>
44 #include <sys/priv.h>
45 #include <sys/conf.h>
46 #include <sys/fcntl.h>
47
48 #include <dev/usb/usb.h>
49 #include <dev/usb/usbdi.h>
50 #include <dev/usb/usbdi_util.h>
51 #include <dev/usb/usb_ioctl.h>
52
53 #if USB_HAVE_UGEN
54 #include <sys/sbuf.h>
55 #endif
56
57 #include "usbdevs.h"
58
59 #define USB_DEBUG_VAR usb_debug
60
61 #include <dev/usb/usb_core.h>
62 #include <dev/usb/usb_debug.h>
63 #include <dev/usb/usb_process.h>
64 #include <dev/usb/usb_device.h>
65 #include <dev/usb/usb_busdma.h>
66 #include <dev/usb/usb_transfer.h>
67 #include <dev/usb/usb_request.h>
68 #include <dev/usb/usb_dynamic.h>
69 #include <dev/usb/usb_hub.h>
70 #include <dev/usb/usb_util.h>
71 #include <dev/usb/usb_msctest.h>
72 #if USB_HAVE_UGEN
73 #include <dev/usb/usb_dev.h>
74 #include <dev/usb/usb_generic.h>
75 #endif
76
77 #include <dev/usb/quirk/usb_quirk.h>
78
79 #include <dev/usb/usb_controller.h>
80 #include <dev/usb/usb_bus.h>
81
82 /* function prototypes  */
83
84 static void     usb_init_endpoint(struct usb_device *, uint8_t,
85                     struct usb_endpoint_descriptor *,
86                     struct usb_endpoint_ss_comp_descriptor *,
87                     struct usb_endpoint *);
88 static void     usb_unconfigure(struct usb_device *, uint8_t);
89 static void     usb_detach_device_sub(struct usb_device *, device_t *,
90                     char **, uint8_t);
91 static uint8_t  usb_probe_and_attach_sub(struct usb_device *,
92                     struct usb_attach_arg *);
93 static void     usb_init_attach_arg(struct usb_device *,
94                     struct usb_attach_arg *);
95 static void     usb_suspend_resume_sub(struct usb_device *, device_t,
96                     uint8_t);
97 static usb_proc_callback_t usbd_clear_stall_proc;
98 static usb_error_t usb_config_parse(struct usb_device *, uint8_t, uint8_t);
99 static void     usbd_set_device_strings(struct usb_device *);
100 #if USB_HAVE_DEVCTL
101 static void     usb_notify_addq(const char *type, struct usb_device *);
102 #endif
103 #if USB_HAVE_UGEN
104 static void     usb_fifo_free_wrap(struct usb_device *, uint8_t, uint8_t);
105 static void     usb_cdev_create(struct usb_device *);
106 static void     usb_cdev_free(struct usb_device *);
107 #endif
108
109 /* This variable is global to allow easy access to it: */
110
111 int     usb_template = 0;
112
113 TUNABLE_INT("hw.usb.usb_template", &usb_template);
114 SYSCTL_INT(_hw_usb, OID_AUTO, template, CTLFLAG_RW | CTLFLAG_TUN,
115     &usb_template, 0, "Selected USB device side template");
116
117 /* English is default language */
118
119 static int usb_lang_id = 0x0009;
120 static int usb_lang_mask = 0x00FF;
121
122 TUNABLE_INT("hw.usb.usb_lang_id", &usb_lang_id);
123 SYSCTL_INT(_hw_usb, OID_AUTO, usb_lang_id, CTLFLAG_RW | CTLFLAG_TUN,
124     &usb_lang_id, 0, "Preferred USB language ID");
125
126 TUNABLE_INT("hw.usb.usb_lang_mask", &usb_lang_mask);
127 SYSCTL_INT(_hw_usb, OID_AUTO, usb_lang_mask, CTLFLAG_RW | CTLFLAG_TUN,
128     &usb_lang_mask, 0, "Preferred USB language mask");
129
130 static const char* statestr[USB_STATE_MAX] = {
131         [USB_STATE_DETACHED]    = "DETACHED",
132         [USB_STATE_ATTACHED]    = "ATTACHED",
133         [USB_STATE_POWERED]     = "POWERED",
134         [USB_STATE_ADDRESSED]   = "ADDRESSED",
135         [USB_STATE_CONFIGURED]  = "CONFIGURED",
136 };
137
138 const char *
139 usb_statestr(enum usb_dev_state state)
140 {
141         return ((state < USB_STATE_MAX) ? statestr[state] : "UNKNOWN");
142 }
143
144 const char *
145 usb_get_manufacturer(struct usb_device *udev)
146 {
147         return (udev->manufacturer ? udev->manufacturer : "Unknown");
148 }
149
150 const char *
151 usb_get_product(struct usb_device *udev)
152 {
153         return (udev->product ? udev->product : "");
154 }
155
156 const char *
157 usb_get_serial(struct usb_device *udev)
158 {
159         return (udev->serial ? udev->serial : "");
160 }
161
162 /*------------------------------------------------------------------------*
163  *      usbd_get_ep_by_addr
164  *
165  * This function searches for an USB ep by endpoint address and
166  * direction.
167  *
168  * Returns:
169  * NULL: Failure
170  * Else: Success
171  *------------------------------------------------------------------------*/
172 struct usb_endpoint *
173 usbd_get_ep_by_addr(struct usb_device *udev, uint8_t ea_val)
174 {
175         struct usb_endpoint *ep = udev->endpoints;
176         struct usb_endpoint *ep_end = udev->endpoints + udev->endpoints_max;
177         enum {
178                 EA_MASK = (UE_DIR_IN | UE_DIR_OUT | UE_ADDR),
179         };
180
181         /*
182          * According to the USB specification not all bits are used
183          * for the endpoint address. Keep defined bits only:
184          */
185         ea_val &= EA_MASK;
186
187         /*
188          * Iterate accross all the USB endpoints searching for a match
189          * based on the endpoint address:
190          */
191         for (; ep != ep_end; ep++) {
192
193                 if (ep->edesc == NULL) {
194                         continue;
195                 }
196                 /* do the mask and check the value */
197                 if ((ep->edesc->bEndpointAddress & EA_MASK) == ea_val) {
198                         goto found;
199                 }
200         }
201
202         /*
203          * The default endpoint is always present and is checked separately:
204          */
205         if ((udev->ctrl_ep.edesc) &&
206             ((udev->ctrl_ep.edesc->bEndpointAddress & EA_MASK) == ea_val)) {
207                 ep = &udev->ctrl_ep;
208                 goto found;
209         }
210         return (NULL);
211
212 found:
213         return (ep);
214 }
215
216 /*------------------------------------------------------------------------*
217  *      usbd_get_endpoint
218  *
219  * This function searches for an USB endpoint based on the information
220  * given by the passed "struct usb_config" pointer.
221  *
222  * Return values:
223  * NULL: No match.
224  * Else: Pointer to "struct usb_endpoint".
225  *------------------------------------------------------------------------*/
226 struct usb_endpoint *
227 usbd_get_endpoint(struct usb_device *udev, uint8_t iface_index,
228     const struct usb_config *setup)
229 {
230         struct usb_endpoint *ep = udev->endpoints;
231         struct usb_endpoint *ep_end = udev->endpoints + udev->endpoints_max;
232         uint8_t index = setup->ep_index;
233         uint8_t ea_mask;
234         uint8_t ea_val;
235         uint8_t type_mask;
236         uint8_t type_val;
237
238         DPRINTFN(10, "udev=%p iface_index=%d address=0x%x "
239             "type=0x%x dir=0x%x index=%d\n",
240             udev, iface_index, setup->endpoint,
241             setup->type, setup->direction, setup->ep_index);
242
243         /* check USB mode */
244
245         if (setup->usb_mode != USB_MODE_DUAL &&
246             udev->flags.usb_mode != setup->usb_mode) {
247                 /* wrong mode - no endpoint */
248                 return (NULL);
249         }
250
251         /* setup expected endpoint direction mask and value */
252
253         if (setup->direction == UE_DIR_RX) {
254                 ea_mask = (UE_DIR_IN | UE_DIR_OUT);
255                 ea_val = (udev->flags.usb_mode == USB_MODE_DEVICE) ?
256                     UE_DIR_OUT : UE_DIR_IN;
257         } else if (setup->direction == UE_DIR_TX) {
258                 ea_mask = (UE_DIR_IN | UE_DIR_OUT);
259                 ea_val = (udev->flags.usb_mode == USB_MODE_DEVICE) ?
260                     UE_DIR_IN : UE_DIR_OUT;
261         } else if (setup->direction == UE_DIR_ANY) {
262                 /* match any endpoint direction */
263                 ea_mask = 0;
264                 ea_val = 0;
265         } else {
266                 /* match the given endpoint direction */
267                 ea_mask = (UE_DIR_IN | UE_DIR_OUT);
268                 ea_val = (setup->direction & (UE_DIR_IN | UE_DIR_OUT));
269         }
270
271         /* setup expected endpoint address */
272
273         if (setup->endpoint == UE_ADDR_ANY) {
274                 /* match any endpoint address */
275         } else {
276                 /* match the given endpoint address */
277                 ea_mask |= UE_ADDR;
278                 ea_val |= (setup->endpoint & UE_ADDR);
279         }
280
281         /* setup expected endpoint type */
282
283         if (setup->type == UE_BULK_INTR) {
284                 /* this will match BULK and INTERRUPT endpoints */
285                 type_mask = 2;
286                 type_val = 2;
287         } else if (setup->type == UE_TYPE_ANY) {
288                 /* match any endpoint type */
289                 type_mask = 0;
290                 type_val = 0;
291         } else {
292                 /* match the given endpoint type */
293                 type_mask = UE_XFERTYPE;
294                 type_val = (setup->type & UE_XFERTYPE);
295         }
296
297         /*
298          * Iterate accross all the USB endpoints searching for a match
299          * based on the endpoint address. Note that we are searching
300          * the endpoints from the beginning of the "udev->endpoints" array.
301          */
302         for (; ep != ep_end; ep++) {
303
304                 if ((ep->edesc == NULL) ||
305                     (ep->iface_index != iface_index)) {
306                         continue;
307                 }
308                 /* do the masks and check the values */
309
310                 if (((ep->edesc->bEndpointAddress & ea_mask) == ea_val) &&
311                     ((ep->edesc->bmAttributes & type_mask) == type_val)) {
312                         if (!index--) {
313                                 goto found;
314                         }
315                 }
316         }
317
318         /*
319          * Match against default endpoint last, so that "any endpoint", "any
320          * address" and "any direction" returns the first endpoint of the
321          * interface. "iface_index" and "direction" is ignored:
322          */
323         if ((udev->ctrl_ep.edesc) &&
324             ((udev->ctrl_ep.edesc->bEndpointAddress & ea_mask) == ea_val) &&
325             ((udev->ctrl_ep.edesc->bmAttributes & type_mask) == type_val) &&
326             (!index)) {
327                 ep = &udev->ctrl_ep;
328                 goto found;
329         }
330         return (NULL);
331
332 found:
333         return (ep);
334 }
335
336 /*------------------------------------------------------------------------*
337  *      usbd_interface_count
338  *
339  * This function stores the number of USB interfaces excluding
340  * alternate settings, which the USB config descriptor reports into
341  * the unsigned 8-bit integer pointed to by "count".
342  *
343  * Returns:
344  *    0: Success
345  * Else: Failure
346  *------------------------------------------------------------------------*/
347 usb_error_t
348 usbd_interface_count(struct usb_device *udev, uint8_t *count)
349 {
350         if (udev->cdesc == NULL) {
351                 *count = 0;
352                 return (USB_ERR_NOT_CONFIGURED);
353         }
354         *count = udev->ifaces_max;
355         return (USB_ERR_NORMAL_COMPLETION);
356 }
357
358
359 /*------------------------------------------------------------------------*
360  *      usb_init_endpoint
361  *
362  * This function will initialise the USB endpoint structure pointed to by
363  * the "endpoint" argument. The structure pointed to by "endpoint" must be
364  * zeroed before calling this function.
365  *------------------------------------------------------------------------*/
366 static void
367 usb_init_endpoint(struct usb_device *udev, uint8_t iface_index,
368     struct usb_endpoint_descriptor *edesc,
369     struct usb_endpoint_ss_comp_descriptor *ecomp,
370     struct usb_endpoint *ep)
371 {
372         struct usb_bus_methods *methods;
373
374         methods = udev->bus->methods;
375
376         (methods->endpoint_init) (udev, edesc, ep);
377
378         /* initialise USB endpoint structure */
379         ep->edesc = edesc;
380         ep->ecomp = ecomp;
381         ep->iface_index = iface_index;
382         TAILQ_INIT(&ep->endpoint_q.head);
383         ep->endpoint_q.command = &usbd_pipe_start;
384
385         /* the pipe is not supported by the hardware */
386         if (ep->methods == NULL)
387                 return;
388
389         /* clear stall, if any */
390         if (methods->clear_stall != NULL) {
391                 USB_BUS_LOCK(udev->bus);
392                 (methods->clear_stall) (udev, ep);
393                 USB_BUS_UNLOCK(udev->bus);
394         }
395 }
396
397 /*-----------------------------------------------------------------------*
398  *      usb_endpoint_foreach
399  *
400  * This function will iterate all the USB endpoints except the control
401  * endpoint. This function is NULL safe.
402  *
403  * Return values:
404  * NULL: End of USB endpoints
405  * Else: Pointer to next USB endpoint
406  *------------------------------------------------------------------------*/
407 struct usb_endpoint *
408 usb_endpoint_foreach(struct usb_device *udev, struct usb_endpoint *ep)
409 {
410         struct usb_endpoint *ep_end;
411
412         /* be NULL safe */
413         if (udev == NULL)
414                 return (NULL);
415
416         ep_end = udev->endpoints + udev->endpoints_max;
417
418         /* get next endpoint */
419         if (ep == NULL)
420                 ep = udev->endpoints;
421         else
422                 ep++;
423
424         /* find next allocated ep */
425         while (ep != ep_end) {
426                 if (ep->edesc != NULL)
427                         return (ep);
428                 ep++;
429         }
430         return (NULL);
431 }
432
433 /*------------------------------------------------------------------------*
434  *      usb_unconfigure
435  *
436  * This function will free all USB interfaces and USB endpoints belonging
437  * to an USB device.
438  *
439  * Flag values, see "USB_UNCFG_FLAG_XXX".
440  *------------------------------------------------------------------------*/
441 static void
442 usb_unconfigure(struct usb_device *udev, uint8_t flag)
443 {
444         uint8_t do_unlock;
445
446         /* Prevent re-enumeration */
447         do_unlock = usbd_enum_lock(udev);
448
449         /* detach all interface drivers */
450         usb_detach_device(udev, USB_IFACE_INDEX_ANY, flag);
451
452 #if USB_HAVE_UGEN
453         /* free all FIFOs except control endpoint FIFOs */
454         usb_fifo_free_wrap(udev, USB_IFACE_INDEX_ANY, flag);
455
456         /*
457          * Free all cdev's, if any.
458          */
459         usb_cdev_free(udev);
460 #endif
461
462 #if USB_HAVE_COMPAT_LINUX
463         /* free Linux compat device, if any */
464         if (udev->linux_endpoint_start) {
465                 usb_linux_free_device(udev);
466                 udev->linux_endpoint_start = NULL;
467         }
468 #endif
469
470         usb_config_parse(udev, USB_IFACE_INDEX_ANY, USB_CFG_FREE);
471
472         /* free "cdesc" after "ifaces" and "endpoints", if any */
473         if (udev->cdesc != NULL) {
474                 if (udev->flags.usb_mode != USB_MODE_DEVICE)
475                         free(udev->cdesc, M_USB);
476                 udev->cdesc = NULL;
477         }
478         /* set unconfigured state */
479         udev->curr_config_no = USB_UNCONFIG_NO;
480         udev->curr_config_index = USB_UNCONFIG_INDEX;
481
482         if (do_unlock)
483                 usbd_enum_unlock(udev);
484 }
485
486 /*------------------------------------------------------------------------*
487  *      usbd_set_config_index
488  *
489  * This function selects configuration by index, independent of the
490  * actual configuration number. This function should not be used by
491  * USB drivers.
492  *
493  * Returns:
494  *    0: Success
495  * Else: Failure
496  *------------------------------------------------------------------------*/
497 usb_error_t
498 usbd_set_config_index(struct usb_device *udev, uint8_t index)
499 {
500         struct usb_status ds;
501         struct usb_config_descriptor *cdp;
502         uint16_t power;
503         uint16_t max_power;
504         uint8_t selfpowered;
505         uint8_t do_unlock;
506         usb_error_t err;
507
508         DPRINTFN(6, "udev=%p index=%d\n", udev, index);
509
510         /* Prevent re-enumeration */
511         do_unlock = usbd_enum_lock(udev);
512
513         usb_unconfigure(udev, 0);
514
515         if (index == USB_UNCONFIG_INDEX) {
516                 /*
517                  * Leave unallocated when unconfiguring the
518                  * device. "usb_unconfigure()" will also reset
519                  * the current config number and index.
520                  */
521                 err = usbd_req_set_config(udev, NULL, USB_UNCONFIG_NO);
522                 if (udev->state == USB_STATE_CONFIGURED)
523                         usb_set_device_state(udev, USB_STATE_ADDRESSED);
524                 goto done;
525         }
526         /* get the full config descriptor */
527         if (udev->flags.usb_mode == USB_MODE_DEVICE) {
528                 /* save some memory */
529                 err = usbd_req_get_descriptor_ptr(udev, &cdp, 
530                     (UDESC_CONFIG << 8) | index);
531         } else {
532                 /* normal request */
533                 err = usbd_req_get_config_desc_full(udev,
534                     NULL, &cdp, M_USB, index);
535         }
536         if (err) {
537                 goto done;
538         }
539         /* set the new config descriptor */
540
541         udev->cdesc = cdp;
542
543         /* Figure out if the device is self or bus powered. */
544         selfpowered = 0;
545         if ((!udev->flags.uq_bus_powered) &&
546             (cdp->bmAttributes & UC_SELF_POWERED) &&
547             (udev->flags.usb_mode == USB_MODE_HOST)) {
548                 /* May be self powered. */
549                 if (cdp->bmAttributes & UC_BUS_POWERED) {
550                         /* Must ask device. */
551                         err = usbd_req_get_device_status(udev, NULL, &ds);
552                         if (err) {
553                                 DPRINTFN(0, "could not read "
554                                     "device status: %s\n",
555                                     usbd_errstr(err));
556                         } else if (UGETW(ds.wStatus) & UDS_SELF_POWERED) {
557                                 selfpowered = 1;
558                         }
559                         DPRINTF("status=0x%04x \n",
560                                 UGETW(ds.wStatus));
561                 } else
562                         selfpowered = 1;
563         }
564         DPRINTF("udev=%p cdesc=%p (addr %d) cno=%d attr=0x%02x, "
565             "selfpowered=%d, power=%d\n",
566             udev, cdp,
567             udev->address, cdp->bConfigurationValue, cdp->bmAttributes,
568             selfpowered, cdp->bMaxPower * 2);
569
570         /* Check if we have enough power. */
571         power = cdp->bMaxPower * 2;
572
573         if (udev->parent_hub) {
574                 max_power = udev->parent_hub->hub->portpower;
575         } else {
576                 max_power = USB_MAX_POWER;
577         }
578
579         if (power > max_power) {
580                 DPRINTFN(0, "power exceeded %d > %d\n", power, max_power);
581                 err = USB_ERR_NO_POWER;
582                 goto done;
583         }
584         /* Only update "self_powered" in USB Host Mode */
585         if (udev->flags.usb_mode == USB_MODE_HOST) {
586                 udev->flags.self_powered = selfpowered;
587         }
588         udev->power = power;
589         udev->curr_config_no = cdp->bConfigurationValue;
590         udev->curr_config_index = index;
591         usb_set_device_state(udev, USB_STATE_CONFIGURED);
592
593         /* Set the actual configuration value. */
594         err = usbd_req_set_config(udev, NULL, cdp->bConfigurationValue);
595         if (err) {
596                 goto done;
597         }
598
599         err = usb_config_parse(udev, USB_IFACE_INDEX_ANY, USB_CFG_ALLOC);
600         if (err) {
601                 goto done;
602         }
603
604         err = usb_config_parse(udev, USB_IFACE_INDEX_ANY, USB_CFG_INIT);
605         if (err) {
606                 goto done;
607         }
608
609 #if USB_HAVE_UGEN
610         /* create device nodes for each endpoint */
611         usb_cdev_create(udev);
612 #endif
613
614 done:
615         DPRINTF("error=%s\n", usbd_errstr(err));
616         if (err) {
617                 usb_unconfigure(udev, 0);
618         }
619         if (do_unlock)
620                 usbd_enum_unlock(udev);
621         return (err);
622 }
623
624 /*------------------------------------------------------------------------*
625  *      usb_config_parse
626  *
627  * This function will allocate and free USB interfaces and USB endpoints,
628  * parse the USB configuration structure and initialise the USB endpoints
629  * and interfaces. If "iface_index" is not equal to
630  * "USB_IFACE_INDEX_ANY" then the "cmd" parameter is the
631  * alternate_setting to be selected for the given interface. Else the
632  * "cmd" parameter is defined by "USB_CFG_XXX". "iface_index" can be
633  * "USB_IFACE_INDEX_ANY" or a valid USB interface index. This function
634  * is typically called when setting the configuration or when setting
635  * an alternate interface.
636  *
637  * Returns:
638  *    0: Success
639  * Else: Failure
640  *------------------------------------------------------------------------*/
641 static usb_error_t
642 usb_config_parse(struct usb_device *udev, uint8_t iface_index, uint8_t cmd)
643 {
644         struct usb_idesc_parse_state ips;
645         struct usb_interface_descriptor *id;
646         struct usb_endpoint_descriptor *ed;
647         struct usb_interface *iface;
648         struct usb_endpoint *ep;
649         usb_error_t err;
650         uint8_t ep_curr;
651         uint8_t ep_max;
652         uint8_t temp;
653         uint8_t do_init;
654         uint8_t alt_index;
655
656         if (iface_index != USB_IFACE_INDEX_ANY) {
657                 /* parameter overload */
658                 alt_index = cmd;
659                 cmd = USB_CFG_INIT;
660         } else {
661                 /* not used */
662                 alt_index = 0;
663         }
664
665         err = 0;
666
667         DPRINTFN(5, "iface_index=%d cmd=%d\n",
668             iface_index, cmd);
669
670         if (cmd == USB_CFG_FREE)
671                 goto cleanup;
672
673         if (cmd == USB_CFG_INIT) {
674                 sx_assert(&udev->enum_sx, SA_LOCKED);
675
676                 /* check for in-use endpoints */
677
678                 ep = udev->endpoints;
679                 ep_max = udev->endpoints_max;
680                 while (ep_max--) {
681                         /* look for matching endpoints */
682                         if ((iface_index == USB_IFACE_INDEX_ANY) ||
683                             (iface_index == ep->iface_index)) {
684                                 if (ep->refcount_alloc != 0) {
685                                         /*
686                                          * This typically indicates a
687                                          * more serious error.
688                                          */
689                                         err = USB_ERR_IN_USE;
690                                 } else {
691                                         /* reset endpoint */
692                                         memset(ep, 0, sizeof(*ep));
693                                         /* make sure we don't zero the endpoint again */
694                                         ep->iface_index = USB_IFACE_INDEX_ANY;
695                                 }
696                         }
697                         ep++;
698                 }
699
700                 if (err)
701                         return (err);
702         }
703
704         memset(&ips, 0, sizeof(ips));
705
706         ep_curr = 0;
707         ep_max = 0;
708
709         while ((id = usb_idesc_foreach(udev->cdesc, &ips))) {
710
711                 /* check for interface overflow */
712                 if (ips.iface_index == USB_IFACE_MAX)
713                         break;                  /* crazy */
714
715                 iface = udev->ifaces + ips.iface_index;
716
717                 /* check for specific interface match */
718
719                 if (cmd == USB_CFG_INIT) {
720                         if ((iface_index != USB_IFACE_INDEX_ANY) && 
721                             (iface_index != ips.iface_index)) {
722                                 /* wrong interface */
723                                 do_init = 0;
724                         } else if (alt_index != ips.iface_index_alt) {
725                                 /* wrong alternate setting */
726                                 do_init = 0;
727                         } else {
728                                 /* initialise interface */
729                                 do_init = 1;
730                         }
731                 } else
732                         do_init = 0;
733
734                 /* check for new interface */
735                 if (ips.iface_index_alt == 0) {
736                         /* update current number of endpoints */
737                         ep_curr = ep_max;
738                 }
739                 /* check for init */
740                 if (do_init) {
741                         /* setup the USB interface structure */
742                         iface->idesc = id;
743                         /* set alternate index */
744                         iface->alt_index = alt_index;
745                         /* set default interface parent */
746                         if (iface_index == USB_IFACE_INDEX_ANY) {
747                                 iface->parent_iface_index =
748                                     USB_IFACE_INDEX_ANY;
749                         }
750                 }
751
752                 DPRINTFN(5, "found idesc nendpt=%d\n", id->bNumEndpoints);
753
754                 ed = (struct usb_endpoint_descriptor *)id;
755
756                 temp = ep_curr;
757
758                 /* iterate all the endpoint descriptors */
759                 while ((ed = usb_edesc_foreach(udev->cdesc, ed))) {
760
761                         if (temp == USB_EP_MAX)
762                                 break;                  /* crazy */
763
764                         ep = udev->endpoints + temp;
765
766                         if (do_init) {
767                                 void *ecomp;
768
769                                 ecomp = usb_ed_comp_foreach(udev->cdesc, (void *)ed);
770                                 if (ecomp != NULL)
771                                         DPRINTFN(5, "Found endpoint companion descriptor\n");
772
773                                 usb_init_endpoint(udev, 
774                                     ips.iface_index, ed, ecomp, ep);
775                         }
776
777                         temp ++;
778
779                         /* find maximum number of endpoints */
780                         if (ep_max < temp)
781                                 ep_max = temp;
782
783                         /* optimalisation */
784                         id = (struct usb_interface_descriptor *)ed;
785                 }
786         }
787
788         /* NOTE: It is valid to have no interfaces and no endpoints! */
789
790         if (cmd == USB_CFG_ALLOC) {
791                 udev->ifaces_max = ips.iface_index;
792                 udev->ifaces = NULL;
793                 if (udev->ifaces_max != 0) {
794                         udev->ifaces = malloc(sizeof(*iface) * udev->ifaces_max,
795                                 M_USB, M_WAITOK | M_ZERO);
796                         if (udev->ifaces == NULL) {
797                                 err = USB_ERR_NOMEM;
798                                 goto done;
799                         }
800                 }
801                 if (ep_max != 0) {
802                         udev->endpoints = malloc(sizeof(*ep) * ep_max,
803                                 M_USB, M_WAITOK | M_ZERO);
804                         if (udev->endpoints == NULL) {
805                                 err = USB_ERR_NOMEM;
806                                 goto done;
807                         }
808                 } else {
809                         udev->endpoints = NULL;
810                 }
811                 USB_BUS_LOCK(udev->bus);
812                 udev->endpoints_max = ep_max;
813                 /* reset any ongoing clear-stall */
814                 udev->ep_curr = NULL;
815                 USB_BUS_UNLOCK(udev->bus);
816         }
817
818 done:
819         if (err) {
820                 if (cmd == USB_CFG_ALLOC) {
821 cleanup:
822                         USB_BUS_LOCK(udev->bus);
823                         udev->endpoints_max = 0;
824                         /* reset any ongoing clear-stall */
825                         udev->ep_curr = NULL;
826                         USB_BUS_UNLOCK(udev->bus);
827
828                         /* cleanup */
829                         if (udev->ifaces != NULL)
830                                 free(udev->ifaces, M_USB);
831                         if (udev->endpoints != NULL)
832                                 free(udev->endpoints, M_USB);
833
834                         udev->ifaces = NULL;
835                         udev->endpoints = NULL;
836                         udev->ifaces_max = 0;
837                 }
838         }
839         return (err);
840 }
841
842 /*------------------------------------------------------------------------*
843  *      usbd_set_alt_interface_index
844  *
845  * This function will select an alternate interface index for the
846  * given interface index. The interface should not be in use when this
847  * function is called. That means there should not be any open USB
848  * transfers. Else an error is returned. If the alternate setting is
849  * already set this function will simply return success. This function
850  * is called in Host mode and Device mode!
851  *
852  * Returns:
853  *    0: Success
854  * Else: Failure
855  *------------------------------------------------------------------------*/
856 usb_error_t
857 usbd_set_alt_interface_index(struct usb_device *udev,
858     uint8_t iface_index, uint8_t alt_index)
859 {
860         struct usb_interface *iface = usbd_get_iface(udev, iface_index);
861         usb_error_t err;
862         uint8_t do_unlock;
863
864         /* Prevent re-enumeration */
865         do_unlock = usbd_enum_lock(udev);
866
867         if (iface == NULL) {
868                 err = USB_ERR_INVAL;
869                 goto done;
870         }
871         if (iface->alt_index == alt_index) {
872                 /* 
873                  * Optimise away duplicate setting of
874                  * alternate setting in USB Host Mode!
875                  */
876                 err = 0;
877                 goto done;
878         }
879 #if USB_HAVE_UGEN
880         /*
881          * Free all generic FIFOs for this interface, except control
882          * endpoint FIFOs:
883          */
884         usb_fifo_free_wrap(udev, iface_index, 0);
885 #endif
886
887         err = usb_config_parse(udev, iface_index, alt_index);
888         if (err) {
889                 goto done;
890         }
891         if (iface->alt_index != alt_index) {
892                 /* the alternate setting does not exist */
893                 err = USB_ERR_INVAL;
894                 goto done;
895         }
896
897         err = usbd_req_set_alt_interface_no(udev, NULL, iface_index,
898             iface->idesc->bAlternateSetting);
899
900 done:
901         if (do_unlock)
902                 usbd_enum_unlock(udev);
903         return (err);
904 }
905
906 /*------------------------------------------------------------------------*
907  *      usbd_set_endpoint_stall
908  *
909  * This function is used to make a BULK or INTERRUPT endpoint send
910  * STALL tokens in USB device mode.
911  *
912  * Returns:
913  *    0: Success
914  * Else: Failure
915  *------------------------------------------------------------------------*/
916 usb_error_t
917 usbd_set_endpoint_stall(struct usb_device *udev, struct usb_endpoint *ep,
918     uint8_t do_stall)
919 {
920         struct usb_xfer *xfer;
921         uint8_t et;
922         uint8_t was_stalled;
923
924         if (ep == NULL) {
925                 /* nothing to do */
926                 DPRINTF("Cannot find endpoint\n");
927                 /*
928                  * Pretend that the clear or set stall request is
929                  * successful else some USB host stacks can do
930                  * strange things, especially when a control endpoint
931                  * stalls.
932                  */
933                 return (0);
934         }
935         et = (ep->edesc->bmAttributes & UE_XFERTYPE);
936
937         if ((et != UE_BULK) &&
938             (et != UE_INTERRUPT)) {
939                 /*
940                  * Should not stall control
941                  * nor isochronous endpoints.
942                  */
943                 DPRINTF("Invalid endpoint\n");
944                 return (0);
945         }
946         USB_BUS_LOCK(udev->bus);
947
948         /* store current stall state */
949         was_stalled = ep->is_stalled;
950
951         /* check for no change */
952         if (was_stalled && do_stall) {
953                 /* if the endpoint is already stalled do nothing */
954                 USB_BUS_UNLOCK(udev->bus);
955                 DPRINTF("No change\n");
956                 return (0);
957         }
958         /* set stalled state */
959         ep->is_stalled = 1;
960
961         if (do_stall || (!was_stalled)) {
962                 if (!was_stalled) {
963                         /* lookup the current USB transfer, if any */
964                         xfer = ep->endpoint_q.curr;
965                 } else {
966                         xfer = NULL;
967                 }
968
969                 /*
970                  * If "xfer" is non-NULL the "set_stall" method will
971                  * complete the USB transfer like in case of a timeout
972                  * setting the error code "USB_ERR_STALLED".
973                  */
974                 (udev->bus->methods->set_stall) (udev, xfer, ep, &do_stall);
975         }
976         if (!do_stall) {
977                 ep->toggle_next = 0;    /* reset data toggle */
978                 ep->is_stalled = 0;     /* clear stalled state */
979
980                 (udev->bus->methods->clear_stall) (udev, ep);
981
982                 /* start up the current or next transfer, if any */
983                 usb_command_wrapper(&ep->endpoint_q, ep->endpoint_q.curr);
984         }
985         USB_BUS_UNLOCK(udev->bus);
986         return (0);
987 }
988
989 /*------------------------------------------------------------------------*
990  *      usb_reset_iface_endpoints - used in USB device side mode
991  *------------------------------------------------------------------------*/
992 usb_error_t
993 usb_reset_iface_endpoints(struct usb_device *udev, uint8_t iface_index)
994 {
995         struct usb_endpoint *ep;
996         struct usb_endpoint *ep_end;
997
998         ep = udev->endpoints;
999         ep_end = udev->endpoints + udev->endpoints_max;
1000
1001         for (; ep != ep_end; ep++) {
1002
1003                 if ((ep->edesc == NULL) ||
1004                     (ep->iface_index != iface_index)) {
1005                         continue;
1006                 }
1007                 /* simulate a clear stall from the peer */
1008                 usbd_set_endpoint_stall(udev, ep, 0);
1009         }
1010         return (0);
1011 }
1012
1013 /*------------------------------------------------------------------------*
1014  *      usb_detach_device_sub
1015  *
1016  * This function will try to detach an USB device. If it fails a panic
1017  * will result.
1018  *
1019  * Flag values, see "USB_UNCFG_FLAG_XXX".
1020  *------------------------------------------------------------------------*/
1021 static void
1022 usb_detach_device_sub(struct usb_device *udev, device_t *ppdev,
1023     char **ppnpinfo, uint8_t flag)
1024 {
1025         device_t dev;
1026         char *pnpinfo;
1027         int err;
1028
1029         dev = *ppdev;
1030         if (dev) {
1031                 /*
1032                  * NOTE: It is important to clear "*ppdev" before deleting
1033                  * the child due to some device methods being called late
1034                  * during the delete process !
1035                  */
1036                 *ppdev = NULL;
1037
1038                 device_printf(dev, "at %s, port %d, addr %d "
1039                     "(disconnected)\n",
1040                     device_get_nameunit(udev->parent_dev),
1041                     udev->port_no, udev->address);
1042
1043                 if (device_is_attached(dev)) {
1044                         if (udev->flags.peer_suspended) {
1045                                 err = DEVICE_RESUME(dev);
1046                                 if (err) {
1047                                         device_printf(dev, "Resume failed\n");
1048                                 }
1049                         }
1050                         if (device_detach(dev)) {
1051                                 goto error;
1052                         }
1053                 }
1054                 if (device_delete_child(udev->parent_dev, dev)) {
1055                         goto error;
1056                 }
1057         }
1058
1059         pnpinfo = *ppnpinfo;
1060         if (pnpinfo != NULL) {
1061                 *ppnpinfo = NULL;
1062                 free(pnpinfo, M_USBDEV);
1063         }
1064         return;
1065
1066 error:
1067         /* Detach is not allowed to fail in the USB world */
1068         panic("usb_detach_device_sub: A USB driver would not detach\n");
1069 }
1070
1071 /*------------------------------------------------------------------------*
1072  *      usb_detach_device
1073  *
1074  * The following function will detach the matching interfaces.
1075  * This function is NULL safe.
1076  *
1077  * Flag values, see "USB_UNCFG_FLAG_XXX".
1078  *------------------------------------------------------------------------*/
1079 void
1080 usb_detach_device(struct usb_device *udev, uint8_t iface_index,
1081     uint8_t flag)
1082 {
1083         struct usb_interface *iface;
1084         uint8_t i;
1085
1086         if (udev == NULL) {
1087                 /* nothing to do */
1088                 return;
1089         }
1090         DPRINTFN(4, "udev=%p\n", udev);
1091
1092         sx_assert(&udev->enum_sx, SA_LOCKED);
1093
1094         /*
1095          * First detach the child to give the child's detach routine a
1096          * chance to detach the sub-devices in the correct order.
1097          * Then delete the child using "device_delete_child()" which
1098          * will detach all sub-devices from the bottom and upwards!
1099          */
1100         if (iface_index != USB_IFACE_INDEX_ANY) {
1101                 i = iface_index;
1102                 iface_index = i + 1;
1103         } else {
1104                 i = 0;
1105                 iface_index = USB_IFACE_MAX;
1106         }
1107
1108         /* do the detach */
1109
1110         for (; i != iface_index; i++) {
1111
1112                 iface = usbd_get_iface(udev, i);
1113                 if (iface == NULL) {
1114                         /* looks like the end of the USB interfaces */
1115                         break;
1116                 }
1117                 usb_detach_device_sub(udev, &iface->subdev,
1118                     &iface->pnpinfo, flag);
1119         }
1120 }
1121
1122 /*------------------------------------------------------------------------*
1123  *      usb_probe_and_attach_sub
1124  *
1125  * Returns:
1126  *    0: Success
1127  * Else: Failure
1128  *------------------------------------------------------------------------*/
1129 static uint8_t
1130 usb_probe_and_attach_sub(struct usb_device *udev,
1131     struct usb_attach_arg *uaa)
1132 {
1133         struct usb_interface *iface;
1134         device_t dev;
1135         int err;
1136
1137         iface = uaa->iface;
1138         if (iface->parent_iface_index != USB_IFACE_INDEX_ANY) {
1139                 /* leave interface alone */
1140                 return (0);
1141         }
1142         dev = iface->subdev;
1143         if (dev) {
1144
1145                 /* clean up after module unload */
1146
1147                 if (device_is_attached(dev)) {
1148                         /* already a device there */
1149                         return (0);
1150                 }
1151                 /* clear "iface->subdev" as early as possible */
1152
1153                 iface->subdev = NULL;
1154
1155                 if (device_delete_child(udev->parent_dev, dev)) {
1156
1157                         /*
1158                          * Panic here, else one can get a double call
1159                          * to device_detach().  USB devices should
1160                          * never fail on detach!
1161                          */
1162                         panic("device_delete_child() failed\n");
1163                 }
1164         }
1165         if (uaa->temp_dev == NULL) {
1166
1167                 /* create a new child */
1168                 uaa->temp_dev = device_add_child(udev->parent_dev, NULL, -1);
1169                 if (uaa->temp_dev == NULL) {
1170                         device_printf(udev->parent_dev,
1171                             "Device creation failed\n");
1172                         return (1);     /* failure */
1173                 }
1174                 device_set_ivars(uaa->temp_dev, uaa);
1175                 device_quiet(uaa->temp_dev);
1176         }
1177         /*
1178          * Set "subdev" before probe and attach so that "devd" gets
1179          * the information it needs.
1180          */
1181         iface->subdev = uaa->temp_dev;
1182
1183         if (device_probe_and_attach(iface->subdev) == 0) {
1184                 /*
1185                  * The USB attach arguments are only available during probe
1186                  * and attach !
1187                  */
1188                 uaa->temp_dev = NULL;
1189                 device_set_ivars(iface->subdev, NULL);
1190
1191                 if (udev->flags.peer_suspended) {
1192                         err = DEVICE_SUSPEND(iface->subdev);
1193                         if (err)
1194                                 device_printf(iface->subdev, "Suspend failed\n");
1195                 }
1196                 return (0);             /* success */
1197         } else {
1198                 /* No USB driver found */
1199                 iface->subdev = NULL;
1200         }
1201         return (1);                     /* failure */
1202 }
1203
1204 /*------------------------------------------------------------------------*
1205  *      usbd_set_parent_iface
1206  *
1207  * Using this function will lock the alternate interface setting on an
1208  * interface. It is typically used for multi interface drivers. In USB
1209  * device side mode it is assumed that the alternate interfaces all
1210  * have the same endpoint descriptors. The default parent index value
1211  * is "USB_IFACE_INDEX_ANY". Then the alternate setting value is not
1212  * locked.
1213  *------------------------------------------------------------------------*/
1214 void
1215 usbd_set_parent_iface(struct usb_device *udev, uint8_t iface_index,
1216     uint8_t parent_index)
1217 {
1218         struct usb_interface *iface;
1219
1220         if (udev == NULL) {
1221                 /* nothing to do */
1222                 return;
1223         }
1224         iface = usbd_get_iface(udev, iface_index);
1225         if (iface != NULL)
1226                 iface->parent_iface_index = parent_index;
1227 }
1228
1229 static void
1230 usb_init_attach_arg(struct usb_device *udev,
1231     struct usb_attach_arg *uaa)
1232 {
1233         memset(uaa, 0, sizeof(*uaa));
1234
1235         uaa->device = udev;
1236         uaa->usb_mode = udev->flags.usb_mode;
1237         uaa->port = udev->port_no;
1238         uaa->dev_state = UAA_DEV_READY;
1239
1240         uaa->info.idVendor = UGETW(udev->ddesc.idVendor);
1241         uaa->info.idProduct = UGETW(udev->ddesc.idProduct);
1242         uaa->info.bcdDevice = UGETW(udev->ddesc.bcdDevice);
1243         uaa->info.bDeviceClass = udev->ddesc.bDeviceClass;
1244         uaa->info.bDeviceSubClass = udev->ddesc.bDeviceSubClass;
1245         uaa->info.bDeviceProtocol = udev->ddesc.bDeviceProtocol;
1246         uaa->info.bConfigIndex = udev->curr_config_index;
1247         uaa->info.bConfigNum = udev->curr_config_no;
1248 }
1249
1250 /*------------------------------------------------------------------------*
1251  *      usb_probe_and_attach
1252  *
1253  * This function is called from "uhub_explore_sub()",
1254  * "usb_handle_set_config()" and "usb_handle_request()".
1255  *
1256  * Returns:
1257  *    0: Success
1258  * Else: A control transfer failed
1259  *------------------------------------------------------------------------*/
1260 usb_error_t
1261 usb_probe_and_attach(struct usb_device *udev, uint8_t iface_index)
1262 {
1263         struct usb_attach_arg uaa;
1264         struct usb_interface *iface;
1265         uint8_t i;
1266         uint8_t j;
1267         uint8_t do_unlock;
1268
1269         if (udev == NULL) {
1270                 DPRINTF("udev == NULL\n");
1271                 return (USB_ERR_INVAL);
1272         }
1273         /* Prevent re-enumeration */
1274         do_unlock = usbd_enum_lock(udev);
1275
1276         if (udev->curr_config_index == USB_UNCONFIG_INDEX) {
1277                 /* do nothing - no configuration has been set */
1278                 goto done;
1279         }
1280         /* setup USB attach arguments */
1281
1282         usb_init_attach_arg(udev, &uaa);
1283
1284         /*
1285          * If the whole USB device is targeted, invoke the USB event
1286          * handler(s):
1287          */
1288         if (iface_index == USB_IFACE_INDEX_ANY) {
1289
1290                 EVENTHANDLER_INVOKE(usb_dev_configured, udev, &uaa);
1291
1292                 if (uaa.dev_state != UAA_DEV_READY) {
1293                         /* leave device unconfigured */
1294                         usb_unconfigure(udev, 0);
1295                         goto done;
1296                 }
1297         }
1298
1299         /* Check if only one interface should be probed: */
1300         if (iface_index != USB_IFACE_INDEX_ANY) {
1301                 i = iface_index;
1302                 j = i + 1;
1303         } else {
1304                 i = 0;
1305                 j = USB_IFACE_MAX;
1306         }
1307
1308         /* Do the probe and attach */
1309         for (; i != j; i++) {
1310
1311                 iface = usbd_get_iface(udev, i);
1312                 if (iface == NULL) {
1313                         /*
1314                          * Looks like the end of the USB
1315                          * interfaces !
1316                          */
1317                         DPRINTFN(2, "end of interfaces "
1318                             "at %u\n", i);
1319                         break;
1320                 }
1321                 if (iface->idesc == NULL) {
1322                         /* no interface descriptor */
1323                         continue;
1324                 }
1325                 uaa.iface = iface;
1326
1327                 uaa.info.bInterfaceClass =
1328                     iface->idesc->bInterfaceClass;
1329                 uaa.info.bInterfaceSubClass =
1330                     iface->idesc->bInterfaceSubClass;
1331                 uaa.info.bInterfaceProtocol =
1332                     iface->idesc->bInterfaceProtocol;
1333                 uaa.info.bIfaceIndex = i;
1334                 uaa.info.bIfaceNum =
1335                     iface->idesc->bInterfaceNumber;
1336                 uaa.driver_info = 0;    /* reset driver_info */
1337
1338                 DPRINTFN(2, "iclass=%u/%u/%u iindex=%u/%u\n",
1339                     uaa.info.bInterfaceClass,
1340                     uaa.info.bInterfaceSubClass,
1341                     uaa.info.bInterfaceProtocol,
1342                     uaa.info.bIfaceIndex,
1343                     uaa.info.bIfaceNum);
1344
1345                 usb_probe_and_attach_sub(udev, &uaa);
1346
1347                 /*
1348                  * Remove the leftover child, if any, to enforce that
1349                  * a new nomatch devd event is generated for the next
1350                  * interface if no driver is found:
1351                  */
1352                 if (uaa.temp_dev == NULL)
1353                         continue;
1354                 if (device_delete_child(udev->parent_dev, uaa.temp_dev))
1355                         DPRINTFN(0, "device delete child failed\n");
1356                 uaa.temp_dev = NULL;
1357         }
1358 done:
1359         if (do_unlock)
1360                 usbd_enum_unlock(udev);
1361         return (0);
1362 }
1363
1364 /*------------------------------------------------------------------------*
1365  *      usb_suspend_resume_sub
1366  *
1367  * This function is called when the suspend or resume methods should
1368  * be executed on an USB device.
1369  *------------------------------------------------------------------------*/
1370 static void
1371 usb_suspend_resume_sub(struct usb_device *udev, device_t dev, uint8_t do_suspend)
1372 {
1373         int err;
1374
1375         if (dev == NULL) {
1376                 return;
1377         }
1378         if (!device_is_attached(dev)) {
1379                 return;
1380         }
1381         if (do_suspend) {
1382                 err = DEVICE_SUSPEND(dev);
1383         } else {
1384                 err = DEVICE_RESUME(dev);
1385         }
1386         if (err) {
1387                 device_printf(dev, "%s failed\n",
1388                     do_suspend ? "Suspend" : "Resume");
1389         }
1390 }
1391
1392 /*------------------------------------------------------------------------*
1393  *      usb_suspend_resume
1394  *
1395  * The following function will suspend or resume the USB device.
1396  *
1397  * Returns:
1398  *    0: Success
1399  * Else: Failure
1400  *------------------------------------------------------------------------*/
1401 usb_error_t
1402 usb_suspend_resume(struct usb_device *udev, uint8_t do_suspend)
1403 {
1404         struct usb_interface *iface;
1405         uint8_t i;
1406
1407         if (udev == NULL) {
1408                 /* nothing to do */
1409                 return (0);
1410         }
1411         DPRINTFN(4, "udev=%p do_suspend=%d\n", udev, do_suspend);
1412
1413         sx_assert(&udev->sr_sx, SA_LOCKED);
1414
1415         USB_BUS_LOCK(udev->bus);
1416         /* filter the suspend events */
1417         if (udev->flags.peer_suspended == do_suspend) {
1418                 USB_BUS_UNLOCK(udev->bus);
1419                 /* nothing to do */
1420                 return (0);
1421         }
1422         udev->flags.peer_suspended = do_suspend;
1423         USB_BUS_UNLOCK(udev->bus);
1424
1425         /* do the suspend or resume */
1426
1427         for (i = 0; i != USB_IFACE_MAX; i++) {
1428
1429                 iface = usbd_get_iface(udev, i);
1430                 if (iface == NULL) {
1431                         /* looks like the end of the USB interfaces */
1432                         break;
1433                 }
1434                 usb_suspend_resume_sub(udev, iface->subdev, do_suspend);
1435         }
1436         return (0);
1437 }
1438
1439 /*------------------------------------------------------------------------*
1440  *      usbd_clear_stall_proc
1441  *
1442  * This function performs generic USB clear stall operations.
1443  *------------------------------------------------------------------------*/
1444 static void
1445 usbd_clear_stall_proc(struct usb_proc_msg *_pm)
1446 {
1447         struct usb_udev_msg *pm = (void *)_pm;
1448         struct usb_device *udev = pm->udev;
1449
1450         /* Change lock */
1451         USB_BUS_UNLOCK(udev->bus);
1452         mtx_lock(&udev->device_mtx);
1453
1454         /* Start clear stall callback */
1455         usbd_transfer_start(udev->ctrl_xfer[1]);
1456
1457         /* Change lock */
1458         mtx_unlock(&udev->device_mtx);
1459         USB_BUS_LOCK(udev->bus);
1460 }
1461
1462 /*------------------------------------------------------------------------*
1463  *      usb_alloc_device
1464  *
1465  * This function allocates a new USB device. This function is called
1466  * when a new device has been put in the powered state, but not yet in
1467  * the addressed state. Get initial descriptor, set the address, get
1468  * full descriptor and get strings.
1469  *
1470  * Return values:
1471  *    0: Failure
1472  * Else: Success
1473  *------------------------------------------------------------------------*/
1474 struct usb_device *
1475 usb_alloc_device(device_t parent_dev, struct usb_bus *bus,
1476     struct usb_device *parent_hub, uint8_t depth, uint8_t port_index,
1477     uint8_t port_no, enum usb_dev_speed speed, enum usb_hc_mode mode)
1478 {
1479         struct usb_attach_arg uaa;
1480         struct usb_device *udev;
1481         struct usb_device *adev;
1482         struct usb_device *hub;
1483         uint8_t *scratch_ptr;
1484         usb_error_t err;
1485         uint8_t device_index;
1486         uint8_t config_index;
1487         uint8_t config_quirk;
1488         uint8_t set_config_failed;
1489         uint8_t do_unlock;
1490
1491         DPRINTF("parent_dev=%p, bus=%p, parent_hub=%p, depth=%u, "
1492             "port_index=%u, port_no=%u, speed=%u, usb_mode=%u\n",
1493             parent_dev, bus, parent_hub, depth, port_index, port_no,
1494             speed, mode);
1495
1496         /*
1497          * Find an unused device index. In USB Host mode this is the
1498          * same as the device address.
1499          *
1500          * Device index zero is not used and device index 1 should
1501          * always be the root hub.
1502          */
1503         for (device_index = USB_ROOT_HUB_ADDR;
1504             (device_index != bus->devices_max) &&
1505             (bus->devices[device_index] != NULL);
1506             device_index++) /* nop */;
1507
1508         if (device_index == bus->devices_max) {
1509                 device_printf(bus->bdev,
1510                     "No free USB device index for new device\n");
1511                 return (NULL);
1512         }
1513
1514         if (depth > 0x10) {
1515                 device_printf(bus->bdev,
1516                     "Invalid device depth\n");
1517                 return (NULL);
1518         }
1519         udev = malloc(sizeof(*udev), M_USB, M_WAITOK | M_ZERO);
1520         if (udev == NULL) {
1521                 return (NULL);
1522         }
1523         /* initialise our SX-lock */
1524         sx_init_flags(&udev->enum_sx, "USB config SX lock", SX_DUPOK);
1525         sx_init_flags(&udev->sr_sx, "USB suspend and resume SX lock", SX_NOWITNESS);
1526
1527         cv_init(&udev->ctrlreq_cv, "WCTRL");
1528         cv_init(&udev->ref_cv, "UGONE");
1529
1530         /* initialise our mutex */
1531         mtx_init(&udev->device_mtx, "USB device mutex", NULL, MTX_DEF);
1532
1533         /* initialise generic clear stall */
1534         udev->cs_msg[0].hdr.pm_callback = &usbd_clear_stall_proc;
1535         udev->cs_msg[0].udev = udev;
1536         udev->cs_msg[1].hdr.pm_callback = &usbd_clear_stall_proc;
1537         udev->cs_msg[1].udev = udev;
1538
1539         /* initialise some USB device fields */
1540         udev->parent_hub = parent_hub;
1541         udev->parent_dev = parent_dev;
1542         udev->port_index = port_index;
1543         udev->port_no = port_no;
1544         udev->depth = depth;
1545         udev->bus = bus;
1546         udev->address = USB_START_ADDR; /* default value */
1547         udev->plugtime = (usb_ticks_t)ticks;
1548         /*
1549          * We need to force the power mode to "on" because there are plenty
1550          * of USB devices out there that do not work very well with
1551          * automatic suspend and resume!
1552          */
1553         udev->power_mode = usbd_filter_power_mode(udev, USB_POWER_MODE_ON);
1554         udev->pwr_save.last_xfer_time = ticks;
1555         /* we are not ready yet */
1556         udev->refcount = 1;
1557
1558         /* set up default endpoint descriptor */
1559         udev->ctrl_ep_desc.bLength = sizeof(udev->ctrl_ep_desc);
1560         udev->ctrl_ep_desc.bDescriptorType = UDESC_ENDPOINT;
1561         udev->ctrl_ep_desc.bEndpointAddress = USB_CONTROL_ENDPOINT;
1562         udev->ctrl_ep_desc.bmAttributes = UE_CONTROL;
1563         udev->ctrl_ep_desc.wMaxPacketSize[0] = USB_MAX_IPACKET;
1564         udev->ctrl_ep_desc.wMaxPacketSize[1] = 0;
1565         udev->ctrl_ep_desc.bInterval = 0;
1566
1567         /* set up default endpoint companion descriptor */
1568         udev->ctrl_ep_comp_desc.bLength = sizeof(udev->ctrl_ep_comp_desc);
1569         udev->ctrl_ep_comp_desc.bDescriptorType = UDESC_ENDPOINT_SS_COMP;
1570
1571         udev->ddesc.bMaxPacketSize = USB_MAX_IPACKET;
1572
1573         udev->speed = speed;
1574         udev->flags.usb_mode = mode;
1575
1576         /* search for our High Speed USB HUB, if any */
1577
1578         adev = udev;
1579         hub = udev->parent_hub;
1580
1581         while (hub) {
1582                 if (hub->speed == USB_SPEED_HIGH) {
1583                         udev->hs_hub_addr = hub->address;
1584                         udev->parent_hs_hub = hub;
1585                         udev->hs_port_no = adev->port_no;
1586                         break;
1587                 }
1588                 adev = hub;
1589                 hub = hub->parent_hub;
1590         }
1591
1592         /* init the default endpoint */
1593         usb_init_endpoint(udev, 0,
1594             &udev->ctrl_ep_desc,
1595             &udev->ctrl_ep_comp_desc,
1596             &udev->ctrl_ep);
1597
1598         /* set device index */
1599         udev->device_index = device_index;
1600
1601 #if USB_HAVE_UGEN
1602         /* Create ugen name */
1603         snprintf(udev->ugen_name, sizeof(udev->ugen_name),
1604             USB_GENERIC_NAME "%u.%u", device_get_unit(bus->bdev),
1605             device_index);
1606         LIST_INIT(&udev->pd_list);
1607
1608         /* Create the control endpoint device */
1609         udev->ctrl_dev = usb_make_dev(udev, NULL, 0, 0,
1610             FREAD|FWRITE, UID_ROOT, GID_OPERATOR, 0600);
1611
1612         /* Create a link from /dev/ugenX.X to the default endpoint */
1613         if (udev->ctrl_dev != NULL)
1614                 make_dev_alias(udev->ctrl_dev->cdev, "%s", udev->ugen_name);
1615 #endif
1616         /* Initialise device */
1617         if (bus->methods->device_init != NULL) {
1618                 err = (bus->methods->device_init) (udev);
1619                 if (err != 0) {
1620                         DPRINTFN(0, "device init %d failed "
1621                             "(%s, ignored)\n", device_index, 
1622                             usbd_errstr(err));
1623                         goto done;
1624                 }
1625         }
1626         /* set powered device state after device init is complete */
1627         usb_set_device_state(udev, USB_STATE_POWERED);
1628
1629         if (udev->flags.usb_mode == USB_MODE_HOST) {
1630
1631                 err = usbd_req_set_address(udev, NULL, device_index);
1632
1633                 /*
1634                  * This is the new USB device address from now on, if
1635                  * the set address request didn't set it already.
1636                  */
1637                 if (udev->address == USB_START_ADDR)
1638                         udev->address = device_index;
1639
1640                 /*
1641                  * We ignore any set-address errors, hence there are
1642                  * buggy USB devices out there that actually receive
1643                  * the SETUP PID, but manage to set the address before
1644                  * the STATUS stage is ACK'ed. If the device responds
1645                  * to the subsequent get-descriptor at the new
1646                  * address, then we know that the set-address command
1647                  * was successful.
1648                  */
1649                 if (err) {
1650                         DPRINTFN(0, "set address %d failed "
1651                             "(%s, ignored)\n", udev->address, 
1652                             usbd_errstr(err));
1653                 }
1654         } else {
1655                 /* We are not self powered */
1656                 udev->flags.self_powered = 0;
1657
1658                 /* Set unconfigured state */
1659                 udev->curr_config_no = USB_UNCONFIG_NO;
1660                 udev->curr_config_index = USB_UNCONFIG_INDEX;
1661
1662                 /* Setup USB descriptors */
1663                 err = (usb_temp_setup_by_index_p) (udev, usb_template);
1664                 if (err) {
1665                         DPRINTFN(0, "setting up USB template failed maybe the USB "
1666                             "template module has not been loaded\n");
1667                         goto done;
1668                 }
1669         }
1670         usb_set_device_state(udev, USB_STATE_ADDRESSED);
1671
1672         /* setup the device descriptor and the initial "wMaxPacketSize" */
1673         err = usbd_setup_device_desc(udev, NULL);
1674
1675         if (err != 0) {
1676                 /* try to enumerate two more times */
1677                 err = usbd_req_re_enumerate(udev, NULL);
1678                 if (err != 0) {
1679                         err = usbd_req_re_enumerate(udev, NULL);
1680                         if (err != 0) {
1681                                 goto done;
1682                         }
1683                 }
1684         }
1685
1686         /*
1687          * Setup temporary USB attach args so that we can figure out some
1688          * basic quirks for this device.
1689          */
1690         usb_init_attach_arg(udev, &uaa);
1691
1692         if (usb_test_quirk(&uaa, UQ_BUS_POWERED)) {
1693                 udev->flags.uq_bus_powered = 1;
1694         }
1695         if (usb_test_quirk(&uaa, UQ_NO_STRINGS)) {
1696                 udev->flags.no_strings = 1;
1697         }
1698         /*
1699          * Workaround for buggy USB devices.
1700          *
1701          * It appears that some string-less USB chips will crash and
1702          * disappear if any attempts are made to read any string
1703          * descriptors.
1704          *
1705          * Try to detect such chips by checking the strings in the USB
1706          * device descriptor. If no strings are present there we
1707          * simply disable all USB strings.
1708          */
1709
1710         /* Protect scratch area */
1711         do_unlock = usbd_enum_lock(udev);
1712
1713         scratch_ptr = udev->scratch.data;
1714
1715         if (udev->ddesc.iManufacturer ||
1716             udev->ddesc.iProduct ||
1717             udev->ddesc.iSerialNumber) {
1718                 /* read out the language ID string */
1719                 err = usbd_req_get_string_desc(udev, NULL,
1720                     (char *)scratch_ptr, 4, 0, USB_LANGUAGE_TABLE);
1721         } else {
1722                 err = USB_ERR_INVAL;
1723         }
1724
1725         if (err || (scratch_ptr[0] < 4)) {
1726                 udev->flags.no_strings = 1;
1727         } else {
1728                 uint16_t langid;
1729                 uint16_t pref;
1730                 uint16_t mask;
1731                 uint8_t x;
1732
1733                 /* load preferred value and mask */
1734                 pref = usb_lang_id;
1735                 mask = usb_lang_mask;
1736
1737                 /* align length correctly */
1738                 scratch_ptr[0] &= ~1U;
1739
1740                 /* fix compiler warning */
1741                 langid = 0;
1742
1743                 /* search for preferred language */
1744                 for (x = 2; (x < scratch_ptr[0]); x += 2) {
1745                         langid = UGETW(scratch_ptr + x);
1746                         if ((langid & mask) == pref)
1747                                 break;
1748                 }
1749                 if (x >= scratch_ptr[0]) {
1750                         /* pick the first language as the default */
1751                         DPRINTFN(1, "Using first language\n");
1752                         langid = UGETW(scratch_ptr + 2);
1753                 }
1754
1755                 DPRINTFN(1, "Language selected: 0x%04x\n", langid);
1756                 udev->langid = langid;
1757         }
1758
1759         if (do_unlock)
1760                 usbd_enum_unlock(udev);
1761
1762         /* assume 100mA bus powered for now. Changed when configured. */
1763         udev->power = USB_MIN_POWER;
1764         /* fetch the vendor and product strings from the device */
1765         usbd_set_device_strings(udev);
1766
1767         if (udev->flags.usb_mode == USB_MODE_DEVICE) {
1768                 /* USB device mode setup is complete */
1769                 err = 0;
1770                 goto config_done;
1771         }
1772
1773         /*
1774          * Most USB devices should attach to config index 0 by
1775          * default
1776          */
1777         if (usb_test_quirk(&uaa, UQ_CFG_INDEX_0)) {
1778                 config_index = 0;
1779                 config_quirk = 1;
1780         } else if (usb_test_quirk(&uaa, UQ_CFG_INDEX_1)) {
1781                 config_index = 1;
1782                 config_quirk = 1;
1783         } else if (usb_test_quirk(&uaa, UQ_CFG_INDEX_2)) {
1784                 config_index = 2;
1785                 config_quirk = 1;
1786         } else if (usb_test_quirk(&uaa, UQ_CFG_INDEX_3)) {
1787                 config_index = 3;
1788                 config_quirk = 1;
1789         } else if (usb_test_quirk(&uaa, UQ_CFG_INDEX_4)) {
1790                 config_index = 4;
1791                 config_quirk = 1;
1792         } else {
1793                 config_index = 0;
1794                 config_quirk = 0;
1795         }
1796
1797         set_config_failed = 0;
1798 repeat_set_config:
1799
1800         DPRINTF("setting config %u\n", config_index);
1801
1802         /* get the USB device configured */
1803         err = usbd_set_config_index(udev, config_index);
1804         if (err) {
1805                 if (udev->ddesc.bNumConfigurations != 0) {
1806                         if (!set_config_failed) {
1807                                 set_config_failed = 1;
1808                                 /* XXX try to re-enumerate the device */
1809                                 err = usbd_req_re_enumerate(udev, NULL);
1810                                 if (err == 0)
1811                                         goto repeat_set_config;
1812                         }
1813                         DPRINTFN(0, "Failure selecting configuration index %u:"
1814                             "%s, port %u, addr %u (ignored)\n",
1815                             config_index, usbd_errstr(err), udev->port_no,
1816                             udev->address);
1817                 }
1818                 /*
1819                  * Some USB devices do not have any configurations. Ignore any
1820                  * set config failures!
1821                  */
1822                 err = 0;
1823                 goto config_done;
1824         }
1825         if (!config_quirk && config_index + 1 < udev->ddesc.bNumConfigurations) {
1826                 if ((udev->cdesc->bNumInterface < 2) &&
1827                     usbd_get_no_descriptors(udev->cdesc, UDESC_ENDPOINT) == 0) {
1828                         DPRINTFN(0, "Found no endpoints, trying next config\n");
1829                         config_index++;
1830                         goto repeat_set_config;
1831                 }
1832                 if (config_index == 0) {
1833                         /*
1834                          * Try to figure out if we have an
1835                          * auto-install disk there:
1836                          */
1837                         if (usb_iface_is_cdrom(udev, 0)) {
1838                                 DPRINTFN(0, "Found possible auto-install "
1839                                     "disk (trying next config)\n");
1840                                 config_index++;
1841                                 goto repeat_set_config;
1842                         }
1843                 }
1844         }
1845         if (set_config_failed == 0 && config_index == 0 &&
1846             usb_test_quirk(&uaa, UQ_MSC_NO_SYNC_CACHE) == 0 &&
1847             usb_test_quirk(&uaa, UQ_MSC_NO_GETMAXLUN) == 0) {
1848
1849                 /*
1850                  * Try to figure out if there are any MSC quirks we
1851                  * should apply automatically:
1852                  */
1853                 err = usb_msc_auto_quirk(udev, 0);
1854
1855                 if (err != 0) {
1856                         set_config_failed = 1;
1857                         goto repeat_set_config;
1858                 }
1859         }
1860
1861 config_done:
1862         DPRINTF("new dev (addr %d), udev=%p, parent_hub=%p\n",
1863             udev->address, udev, udev->parent_hub);
1864
1865         /* register our device - we are ready */
1866         usb_bus_port_set_device(bus, parent_hub ?
1867             parent_hub->hub->ports + port_index : NULL, udev, device_index);
1868
1869 #if USB_HAVE_UGEN
1870         /* Symlink the ugen device name */
1871         udev->ugen_symlink = usb_alloc_symlink(udev->ugen_name);
1872
1873         /* Announce device */
1874         printf("%s: <%s> at %s\n", udev->ugen_name,
1875             usb_get_manufacturer(udev),
1876             device_get_nameunit(udev->bus->bdev));
1877 #endif
1878
1879 #if USB_HAVE_DEVCTL
1880         usb_notify_addq("ATTACH", udev);
1881 #endif
1882 done:
1883         if (err) {
1884                 /*
1885                  * Free USB device and all subdevices, if any.
1886                  */
1887                 usb_free_device(udev, 0);
1888                 udev = NULL;
1889         }
1890         return (udev);
1891 }
1892
1893 #if USB_HAVE_UGEN
1894 struct usb_fs_privdata *
1895 usb_make_dev(struct usb_device *udev, const char *devname, int ep,
1896     int fi, int rwmode, uid_t uid, gid_t gid, int mode)
1897 {
1898         struct usb_fs_privdata* pd;
1899         char buffer[32];
1900
1901         /* Store information to locate ourselves again later */
1902         pd = malloc(sizeof(struct usb_fs_privdata), M_USBDEV,
1903             M_WAITOK | M_ZERO);
1904         pd->bus_index = device_get_unit(udev->bus->bdev);
1905         pd->dev_index = udev->device_index;
1906         pd->ep_addr = ep;
1907         pd->fifo_index = fi;
1908         pd->mode = rwmode;
1909
1910         /* Now, create the device itself */
1911         if (devname == NULL) {
1912                 devname = buffer;
1913                 snprintf(buffer, sizeof(buffer), USB_DEVICE_DIR "/%u.%u.%u",
1914                     pd->bus_index, pd->dev_index, pd->ep_addr);
1915         }
1916
1917         pd->cdev = make_dev(&usb_devsw, 0, uid, gid, mode, "%s", devname);
1918
1919         if (pd->cdev == NULL) {
1920                 DPRINTFN(0, "Failed to create device %s\n", devname);
1921                 free(pd, M_USBDEV);
1922                 return (NULL);
1923         }
1924
1925         /* XXX setting si_drv1 and creating the device is not atomic! */
1926         pd->cdev->si_drv1 = pd;
1927
1928         return (pd);
1929 }
1930
1931 void
1932 usb_destroy_dev(struct usb_fs_privdata *pd)
1933 {
1934         if (pd == NULL)
1935                 return;
1936
1937         destroy_dev(pd->cdev);
1938
1939         free(pd, M_USBDEV);
1940 }
1941
1942 static void
1943 usb_cdev_create(struct usb_device *udev)
1944 {
1945         struct usb_config_descriptor *cd;
1946         struct usb_endpoint_descriptor *ed;
1947         struct usb_descriptor *desc;
1948         struct usb_fs_privdata* pd;
1949         int inmode, outmode, inmask, outmask, mode;
1950         uint8_t ep;
1951
1952         KASSERT(LIST_FIRST(&udev->pd_list) == NULL, ("stale cdev entries"));
1953
1954         DPRINTFN(2, "Creating device nodes\n");
1955
1956         if (usbd_get_mode(udev) == USB_MODE_DEVICE) {
1957                 inmode = FWRITE;
1958                 outmode = FREAD;
1959         } else {                 /* USB_MODE_HOST */
1960                 inmode = FREAD;
1961                 outmode = FWRITE;
1962         }
1963
1964         inmask = 0;
1965         outmask = 0;
1966         desc = NULL;
1967
1968         /*
1969          * Collect all used endpoint numbers instead of just
1970          * generating 16 static endpoints.
1971          */
1972         cd = usbd_get_config_descriptor(udev);
1973         while ((desc = usb_desc_foreach(cd, desc))) {
1974                 /* filter out all endpoint descriptors */
1975                 if ((desc->bDescriptorType == UDESC_ENDPOINT) &&
1976                     (desc->bLength >= sizeof(*ed))) {
1977                         ed = (struct usb_endpoint_descriptor *)desc;
1978
1979                         /* update masks */
1980                         ep = ed->bEndpointAddress;
1981                         if (UE_GET_DIR(ep)  == UE_DIR_OUT)
1982                                 outmask |= 1 << UE_GET_ADDR(ep);
1983                         else
1984                                 inmask |= 1 << UE_GET_ADDR(ep);
1985                 }
1986         }
1987
1988         /* Create all available endpoints except EP0 */
1989         for (ep = 1; ep < 16; ep++) {
1990                 mode = (inmask & (1 << ep)) ? inmode : 0;
1991                 mode |= (outmask & (1 << ep)) ? outmode : 0;
1992                 if (mode == 0)
1993                         continue;       /* no IN or OUT endpoint */
1994
1995                 pd = usb_make_dev(udev, NULL, ep, 0,
1996                     mode, UID_ROOT, GID_OPERATOR, 0600);
1997
1998                 if (pd != NULL)
1999                         LIST_INSERT_HEAD(&udev->pd_list, pd, pd_next);
2000         }
2001 }
2002
2003 static void
2004 usb_cdev_free(struct usb_device *udev)
2005 {
2006         struct usb_fs_privdata* pd;
2007
2008         DPRINTFN(2, "Freeing device nodes\n");
2009
2010         while ((pd = LIST_FIRST(&udev->pd_list)) != NULL) {
2011                 KASSERT(pd->cdev->si_drv1 == pd, ("privdata corrupt"));
2012
2013                 LIST_REMOVE(pd, pd_next);
2014
2015                 usb_destroy_dev(pd);
2016         }
2017 }
2018 #endif
2019
2020 /*------------------------------------------------------------------------*
2021  *      usb_free_device
2022  *
2023  * This function is NULL safe and will free an USB device and its
2024  * children devices, if any.
2025  *
2026  * Flag values: Reserved, set to zero.
2027  *------------------------------------------------------------------------*/
2028 void
2029 usb_free_device(struct usb_device *udev, uint8_t flag)
2030 {
2031         struct usb_bus *bus;
2032
2033         if (udev == NULL)
2034                 return;         /* already freed */
2035
2036         DPRINTFN(4, "udev=%p port=%d\n", udev, udev->port_no);
2037
2038         bus = udev->bus;
2039
2040         /* set DETACHED state to prevent any further references */
2041         usb_set_device_state(udev, USB_STATE_DETACHED);
2042
2043 #if USB_HAVE_DEVCTL
2044         usb_notify_addq("DETACH", udev);
2045 #endif
2046
2047 #if USB_HAVE_UGEN
2048         printf("%s: <%s> at %s (disconnected)\n", udev->ugen_name,
2049             usb_get_manufacturer(udev), device_get_nameunit(bus->bdev));
2050
2051         /* Destroy UGEN symlink, if any */
2052         if (udev->ugen_symlink) {
2053                 usb_free_symlink(udev->ugen_symlink);
2054                 udev->ugen_symlink = NULL;
2055         }
2056
2057         /* wait for all pending references to go away: */
2058         mtx_lock(&usb_ref_lock);
2059         udev->refcount--;
2060         while (udev->refcount != 0) {
2061                 cv_wait(&udev->ref_cv, &usb_ref_lock);
2062         }
2063         mtx_unlock(&usb_ref_lock);
2064
2065         usb_destroy_dev(udev->ctrl_dev);
2066 #endif
2067
2068         if (udev->flags.usb_mode == USB_MODE_DEVICE) {
2069                 /* stop receiving any control transfers (Device Side Mode) */
2070                 usbd_transfer_unsetup(udev->ctrl_xfer, USB_CTRL_XFER_MAX);
2071         }
2072
2073         /* the following will get the device unconfigured in software */
2074         usb_unconfigure(udev, USB_UNCFG_FLAG_FREE_EP0);
2075
2076         /* final device unregister after all character devices are closed */
2077         usb_bus_port_set_device(bus, udev->parent_hub ?
2078             udev->parent_hub->hub->ports + udev->port_index : NULL,
2079             NULL, USB_ROOT_HUB_ADDR);
2080
2081         /* unsetup any leftover default USB transfers */
2082         usbd_transfer_unsetup(udev->ctrl_xfer, USB_CTRL_XFER_MAX);
2083
2084         /* template unsetup, if any */
2085         (usb_temp_unsetup_p) (udev);
2086
2087         /* 
2088          * Make sure that our clear-stall messages are not queued
2089          * anywhere:
2090          */
2091         USB_BUS_LOCK(udev->bus);
2092         usb_proc_mwait(&udev->bus->non_giant_callback_proc,
2093             &udev->cs_msg[0], &udev->cs_msg[1]);
2094         USB_BUS_UNLOCK(udev->bus);
2095
2096         sx_destroy(&udev->enum_sx);
2097         sx_destroy(&udev->sr_sx);
2098
2099         cv_destroy(&udev->ctrlreq_cv);
2100         cv_destroy(&udev->ref_cv);
2101
2102         mtx_destroy(&udev->device_mtx);
2103 #if USB_HAVE_UGEN
2104         KASSERT(LIST_FIRST(&udev->pd_list) == NULL, ("leaked cdev entries"));
2105 #endif
2106
2107         /* Uninitialise device */
2108         if (bus->methods->device_uninit != NULL)
2109                 (bus->methods->device_uninit) (udev);
2110
2111         /* free device */
2112         free(udev->serial, M_USB);
2113         free(udev->manufacturer, M_USB);
2114         free(udev->product, M_USB);
2115         free(udev, M_USB);
2116 }
2117
2118 /*------------------------------------------------------------------------*
2119  *      usbd_get_iface
2120  *
2121  * This function is the safe way to get the USB interface structure
2122  * pointer by interface index.
2123  *
2124  * Return values:
2125  *   NULL: Interface not present.
2126  *   Else: Pointer to USB interface structure.
2127  *------------------------------------------------------------------------*/
2128 struct usb_interface *
2129 usbd_get_iface(struct usb_device *udev, uint8_t iface_index)
2130 {
2131         struct usb_interface *iface = udev->ifaces + iface_index;
2132
2133         if (iface_index >= udev->ifaces_max)
2134                 return (NULL);
2135         return (iface);
2136 }
2137
2138 /*------------------------------------------------------------------------*
2139  *      usbd_find_descriptor
2140  *
2141  * This function will lookup the first descriptor that matches the
2142  * criteria given by the arguments "type" and "subtype". Descriptors
2143  * will only be searched within the interface having the index
2144  * "iface_index".  If the "id" argument points to an USB descriptor,
2145  * it will be skipped before the search is started. This allows
2146  * searching for multiple descriptors using the same criteria. Else
2147  * the search is started after the interface descriptor.
2148  *
2149  * Return values:
2150  *   NULL: End of descriptors
2151  *   Else: A descriptor matching the criteria
2152  *------------------------------------------------------------------------*/
2153 void   *
2154 usbd_find_descriptor(struct usb_device *udev, void *id, uint8_t iface_index,
2155     uint8_t type, uint8_t type_mask,
2156     uint8_t subtype, uint8_t subtype_mask)
2157 {
2158         struct usb_descriptor *desc;
2159         struct usb_config_descriptor *cd;
2160         struct usb_interface *iface;
2161
2162         cd = usbd_get_config_descriptor(udev);
2163         if (cd == NULL) {
2164                 return (NULL);
2165         }
2166         if (id == NULL) {
2167                 iface = usbd_get_iface(udev, iface_index);
2168                 if (iface == NULL) {
2169                         return (NULL);
2170                 }
2171                 id = usbd_get_interface_descriptor(iface);
2172                 if (id == NULL) {
2173                         return (NULL);
2174                 }
2175         }
2176         desc = (void *)id;
2177
2178         while ((desc = usb_desc_foreach(cd, desc))) {
2179
2180                 if (desc->bDescriptorType == UDESC_INTERFACE) {
2181                         break;
2182                 }
2183                 if (((desc->bDescriptorType & type_mask) == type) &&
2184                     ((desc->bDescriptorSubtype & subtype_mask) == subtype)) {
2185                         return (desc);
2186                 }
2187         }
2188         return (NULL);
2189 }
2190
2191 /*------------------------------------------------------------------------*
2192  *      usb_devinfo
2193  *
2194  * This function will dump information from the device descriptor
2195  * belonging to the USB device pointed to by "udev", to the string
2196  * pointed to by "dst_ptr" having a maximum length of "dst_len" bytes
2197  * including the terminating zero.
2198  *------------------------------------------------------------------------*/
2199 void
2200 usb_devinfo(struct usb_device *udev, char *dst_ptr, uint16_t dst_len)
2201 {
2202         struct usb_device_descriptor *udd = &udev->ddesc;
2203         uint16_t bcdDevice;
2204         uint16_t bcdUSB;
2205
2206         bcdUSB = UGETW(udd->bcdUSB);
2207         bcdDevice = UGETW(udd->bcdDevice);
2208
2209         if (udd->bDeviceClass != 0xFF) {
2210                 snprintf(dst_ptr, dst_len, "%s %s, class %d/%d, rev %x.%02x/"
2211                     "%x.%02x, addr %d",
2212                     usb_get_manufacturer(udev),
2213                     usb_get_product(udev),
2214                     udd->bDeviceClass, udd->bDeviceSubClass,
2215                     (bcdUSB >> 8), bcdUSB & 0xFF,
2216                     (bcdDevice >> 8), bcdDevice & 0xFF,
2217                     udev->address);
2218         } else {
2219                 snprintf(dst_ptr, dst_len, "%s %s, rev %x.%02x/"
2220                     "%x.%02x, addr %d",
2221                     usb_get_manufacturer(udev),
2222                     usb_get_product(udev),
2223                     (bcdUSB >> 8), bcdUSB & 0xFF,
2224                     (bcdDevice >> 8), bcdDevice & 0xFF,
2225                     udev->address);
2226         }
2227 }
2228
2229 #ifdef USB_VERBOSE
2230 /*
2231  * Descriptions of of known vendors and devices ("products").
2232  */
2233 struct usb_knowndev {
2234         uint16_t vendor;
2235         uint16_t product;
2236         uint32_t flags;
2237         const char *vendorname;
2238         const char *productname;
2239 };
2240
2241 #define USB_KNOWNDEV_NOPROD     0x01    /* match on vendor only */
2242
2243 #include "usbdevs.h"
2244 #include "usbdevs_data.h"
2245 #endif                                  /* USB_VERBOSE */
2246
2247 static void
2248 usbd_set_device_strings(struct usb_device *udev)
2249 {
2250         struct usb_device_descriptor *udd = &udev->ddesc;
2251 #ifdef USB_VERBOSE
2252         const struct usb_knowndev *kdp;
2253 #endif
2254         char *temp_ptr;
2255         size_t temp_size;
2256         uint16_t vendor_id;
2257         uint16_t product_id;
2258         uint8_t do_unlock;
2259
2260         /* Protect scratch area */
2261         do_unlock = usbd_enum_lock(udev);
2262
2263         temp_ptr = (char *)udev->scratch.data;
2264         temp_size = sizeof(udev->scratch.data);
2265
2266         vendor_id = UGETW(udd->idVendor);
2267         product_id = UGETW(udd->idProduct);
2268
2269         /* get serial number string */
2270         usbd_req_get_string_any(udev, NULL, temp_ptr, temp_size,
2271             udev->ddesc.iSerialNumber);
2272         udev->serial = strdup(temp_ptr, M_USB);
2273
2274         /* get manufacturer string */
2275         usbd_req_get_string_any(udev, NULL, temp_ptr, temp_size,
2276             udev->ddesc.iManufacturer);
2277         usb_trim_spaces(temp_ptr);
2278         if (temp_ptr[0] != '\0')
2279                 udev->manufacturer = strdup(temp_ptr, M_USB);
2280
2281         /* get product string */
2282         usbd_req_get_string_any(udev, NULL, temp_ptr, temp_size,
2283             udev->ddesc.iProduct);
2284         usb_trim_spaces(temp_ptr);
2285         if (temp_ptr[0] != '\0')
2286                 udev->product = strdup(temp_ptr, M_USB);
2287
2288 #ifdef USB_VERBOSE
2289         if (udev->manufacturer == NULL || udev->product == NULL) {
2290                 for (kdp = usb_knowndevs; kdp->vendorname != NULL; kdp++) {
2291                         if (kdp->vendor == vendor_id &&
2292                             (kdp->product == product_id ||
2293                             (kdp->flags & USB_KNOWNDEV_NOPROD) != 0))
2294                                 break;
2295                 }
2296                 if (kdp->vendorname != NULL) {
2297                         /* XXX should use pointer to knowndevs string */
2298                         if (udev->manufacturer == NULL) {
2299                                 udev->manufacturer = strdup(kdp->vendorname,
2300                                     M_USB);
2301                         }
2302                         if (udev->product == NULL &&
2303                             (kdp->flags & USB_KNOWNDEV_NOPROD) == 0) {
2304                                 udev->product = strdup(kdp->productname,
2305                                     M_USB);
2306                         }
2307                 }
2308         }
2309 #endif
2310         /* Provide default strings if none were found */
2311         if (udev->manufacturer == NULL) {
2312                 snprintf(temp_ptr, temp_size, "vendor 0x%04x", vendor_id);
2313                 udev->manufacturer = strdup(temp_ptr, M_USB);
2314         }
2315         if (udev->product == NULL) {
2316                 snprintf(temp_ptr, temp_size, "product 0x%04x", product_id);
2317                 udev->product = strdup(temp_ptr, M_USB);
2318         }
2319
2320         if (do_unlock)
2321                 usbd_enum_unlock(udev);
2322 }
2323
2324 /*
2325  * Returns:
2326  * See: USB_MODE_XXX
2327  */
2328 enum usb_hc_mode
2329 usbd_get_mode(struct usb_device *udev)
2330 {
2331         return (udev->flags.usb_mode);
2332 }
2333
2334 /*
2335  * Returns:
2336  * See: USB_SPEED_XXX
2337  */
2338 enum usb_dev_speed
2339 usbd_get_speed(struct usb_device *udev)
2340 {
2341         return (udev->speed);
2342 }
2343
2344 uint32_t
2345 usbd_get_isoc_fps(struct usb_device *udev)
2346 {
2347         ;                               /* indent fix */
2348         switch (udev->speed) {
2349         case USB_SPEED_LOW:
2350         case USB_SPEED_FULL:
2351                 return (1000);
2352         default:
2353                 return (8000);
2354         }
2355 }
2356
2357 struct usb_device_descriptor *
2358 usbd_get_device_descriptor(struct usb_device *udev)
2359 {
2360         if (udev == NULL)
2361                 return (NULL);          /* be NULL safe */
2362         return (&udev->ddesc);
2363 }
2364
2365 struct usb_config_descriptor *
2366 usbd_get_config_descriptor(struct usb_device *udev)
2367 {
2368         if (udev == NULL)
2369                 return (NULL);          /* be NULL safe */
2370         return (udev->cdesc);
2371 }
2372
2373 /*------------------------------------------------------------------------*
2374  *      usb_test_quirk - test a device for a given quirk
2375  *
2376  * Return values:
2377  * 0: The USB device does not have the given quirk.
2378  * Else: The USB device has the given quirk.
2379  *------------------------------------------------------------------------*/
2380 uint8_t
2381 usb_test_quirk(const struct usb_attach_arg *uaa, uint16_t quirk)
2382 {
2383         uint8_t found;
2384         uint8_t x;
2385
2386         if (quirk == UQ_NONE)
2387                 return (0);
2388
2389         /* search the automatic per device quirks first */
2390
2391         for (x = 0; x != USB_MAX_AUTO_QUIRK; x++) {
2392                 if (uaa->device->autoQuirk[x] == quirk)
2393                         return (1);
2394         }
2395
2396         /* search global quirk table, if any */
2397
2398         found = (usb_test_quirk_p) (&uaa->info, quirk);
2399
2400         return (found);
2401 }
2402
2403 struct usb_interface_descriptor *
2404 usbd_get_interface_descriptor(struct usb_interface *iface)
2405 {
2406         if (iface == NULL)
2407                 return (NULL);          /* be NULL safe */
2408         return (iface->idesc);
2409 }
2410
2411 uint8_t
2412 usbd_get_interface_altindex(struct usb_interface *iface)
2413 {
2414         return (iface->alt_index);
2415 }
2416
2417 uint8_t
2418 usbd_get_bus_index(struct usb_device *udev)
2419 {
2420         return ((uint8_t)device_get_unit(udev->bus->bdev));
2421 }
2422
2423 uint8_t
2424 usbd_get_device_index(struct usb_device *udev)
2425 {
2426         return (udev->device_index);
2427 }
2428
2429 #if USB_HAVE_DEVCTL
2430 /*------------------------------------------------------------------------*
2431  *      usb_notify_addq
2432  *
2433  * This function will generate events for dev.
2434  *------------------------------------------------------------------------*/
2435 #ifndef BURN_BRIDGES
2436 static void
2437 usb_notify_addq_compat(const char *type, struct usb_device *udev)
2438 {
2439         char *data = NULL;
2440         const char *ntype;
2441         struct malloc_type *mt;
2442         const size_t buf_size = 512;
2443
2444         /* Convert notify type */
2445         if (strcmp(type, "ATTACH") == 0)
2446                 ntype = "+";
2447         else if (strcmp(type, "DETACH") == 0)
2448                 ntype = "-";
2449         else
2450                 return;
2451
2452         mtx_lock(&malloc_mtx);
2453         mt = malloc_desc2type("bus");   /* XXX M_BUS */
2454         mtx_unlock(&malloc_mtx);
2455         if (mt == NULL)
2456                 return;
2457
2458         data = malloc(buf_size, mt, M_NOWAIT);
2459         if (data == NULL)
2460                 return;
2461
2462         /* String it all together. */
2463         snprintf(data, buf_size,
2464             "%s"
2465 #if USB_HAVE_UGEN
2466             "%s "
2467 #endif
2468             "at port=%u "
2469             "vendor=0x%04x "
2470             "product=0x%04x "
2471             "devclass=0x%02x "
2472             "devsubclass=0x%02x "
2473             "sernum=\"%s\" "
2474             "release=0x%04x "
2475 #if USB_HAVE_UGEN
2476             "on %s\n"
2477 #endif
2478             "",
2479             ntype,
2480 #if USB_HAVE_UGEN
2481             udev->ugen_name,
2482 #endif
2483             udev->port_no,
2484             UGETW(udev->ddesc.idVendor),
2485             UGETW(udev->ddesc.idProduct),
2486             udev->ddesc.bDeviceClass,
2487             udev->ddesc.bDeviceSubClass,
2488             usb_get_serial(udev),
2489             UGETW(udev->ddesc.bcdDevice)
2490 #if USB_HAVE_UGEN
2491             , udev->parent_hub != NULL ?
2492                 udev->parent_hub->ugen_name :
2493                 device_get_nameunit(device_get_parent(udev->bus->bdev))
2494 #endif
2495             );
2496
2497         devctl_queue_data(data);
2498 }
2499 #endif
2500
2501 static void
2502 usb_notify_addq(const char *type, struct usb_device *udev)
2503 {
2504         struct usb_interface *iface;
2505         struct sbuf *sb;
2506         int i;
2507
2508 #ifndef BURN_BRIDGES
2509         usb_notify_addq_compat(type, udev);
2510 #endif
2511
2512         /* announce the device */
2513         sb = sbuf_new_auto();
2514         sbuf_printf(sb,
2515 #if USB_HAVE_UGEN
2516             "ugen=%s "
2517             "cdev=%s "
2518 #endif
2519             "vendor=0x%04x "
2520             "product=0x%04x "
2521             "devclass=0x%02x "
2522             "devsubclass=0x%02x "
2523             "sernum=\"%s\" "
2524             "release=0x%04x "
2525             "mode=%s "
2526             "port=%u "
2527 #if USB_HAVE_UGEN
2528             "parent=%s"
2529 #endif
2530             "",
2531 #if USB_HAVE_UGEN
2532             udev->ugen_name,
2533             udev->ugen_name,
2534 #endif
2535             UGETW(udev->ddesc.idVendor),
2536             UGETW(udev->ddesc.idProduct),
2537             udev->ddesc.bDeviceClass,
2538             udev->ddesc.bDeviceSubClass,
2539             usb_get_serial(udev),
2540             UGETW(udev->ddesc.bcdDevice),
2541             (udev->flags.usb_mode == USB_MODE_HOST) ? "host" : "device",
2542             udev->port_no
2543 #if USB_HAVE_UGEN
2544             , udev->parent_hub != NULL ?
2545                 udev->parent_hub->ugen_name :
2546                 device_get_nameunit(device_get_parent(udev->bus->bdev))
2547 #endif
2548             );
2549         sbuf_finish(sb);
2550         devctl_notify("USB", "DEVICE", type, sbuf_data(sb));
2551         sbuf_delete(sb);
2552
2553         /* announce each interface */
2554         for (i = 0; i < USB_IFACE_MAX; i++) {
2555                 iface = usbd_get_iface(udev, i);
2556                 if (iface == NULL)
2557                         break;          /* end of interfaces */
2558                 if (iface->idesc == NULL)
2559                         continue;       /* no interface descriptor */
2560
2561                 sb = sbuf_new_auto();
2562                 sbuf_printf(sb,
2563 #if USB_HAVE_UGEN
2564                     "ugen=%s "
2565                     "cdev=%s "
2566 #endif
2567                     "vendor=0x%04x "
2568                     "product=0x%04x "
2569                     "devclass=0x%02x "
2570                     "devsubclass=0x%02x "
2571                     "sernum=\"%s\" "
2572                     "release=0x%04x "
2573                     "mode=%s "
2574                     "interface=%d "
2575                     "endpoints=%d "
2576                     "intclass=0x%02x "
2577                     "intsubclass=0x%02x "
2578                     "intprotocol=0x%02x",
2579 #if USB_HAVE_UGEN
2580                     udev->ugen_name,
2581                     udev->ugen_name,
2582 #endif
2583                     UGETW(udev->ddesc.idVendor),
2584                     UGETW(udev->ddesc.idProduct),
2585                     udev->ddesc.bDeviceClass,
2586                     udev->ddesc.bDeviceSubClass,
2587                     usb_get_serial(udev),
2588                     UGETW(udev->ddesc.bcdDevice),
2589                     (udev->flags.usb_mode == USB_MODE_HOST) ? "host" : "device",
2590                     iface->idesc->bInterfaceNumber,
2591                     iface->idesc->bNumEndpoints,
2592                     iface->idesc->bInterfaceClass,
2593                     iface->idesc->bInterfaceSubClass,
2594                     iface->idesc->bInterfaceProtocol);
2595                 sbuf_finish(sb);
2596                 devctl_notify("USB", "INTERFACE", type, sbuf_data(sb));
2597                 sbuf_delete(sb);
2598         }
2599 }
2600 #endif
2601
2602 #if USB_HAVE_UGEN
2603 /*------------------------------------------------------------------------*
2604  *      usb_fifo_free_wrap
2605  *
2606  * This function will free the FIFOs.
2607  *
2608  * Description of "flag" argument: If the USB_UNCFG_FLAG_FREE_EP0 flag
2609  * is set and "iface_index" is set to "USB_IFACE_INDEX_ANY", we free
2610  * all FIFOs. If the USB_UNCFG_FLAG_FREE_EP0 flag is not set and
2611  * "iface_index" is set to "USB_IFACE_INDEX_ANY", we free all non
2612  * control endpoint FIFOs. If "iface_index" is not set to
2613  * "USB_IFACE_INDEX_ANY" the flag has no effect.
2614  *------------------------------------------------------------------------*/
2615 static void
2616 usb_fifo_free_wrap(struct usb_device *udev,
2617     uint8_t iface_index, uint8_t flag)
2618 {
2619         struct usb_fifo *f;
2620         uint16_t i;
2621
2622         /*
2623          * Free any USB FIFOs on the given interface:
2624          */
2625         for (i = 0; i != USB_FIFO_MAX; i++) {
2626                 f = udev->fifo[i];
2627                 if (f == NULL) {
2628                         continue;
2629                 }
2630                 /* Check if the interface index matches */
2631                 if (iface_index == f->iface_index) {
2632                         if (f->methods != &usb_ugen_methods) {
2633                                 /*
2634                                  * Don't free any non-generic FIFOs in
2635                                  * this case.
2636                                  */
2637                                 continue;
2638                         }
2639                         if ((f->dev_ep_index == 0) &&
2640                             (f->fs_xfer == NULL)) {
2641                                 /* no need to free this FIFO */
2642                                 continue;
2643                         }
2644                 } else if (iface_index == USB_IFACE_INDEX_ANY) {
2645                         if ((f->methods == &usb_ugen_methods) &&
2646                             (f->dev_ep_index == 0) &&
2647                             (!(flag & USB_UNCFG_FLAG_FREE_EP0)) &&
2648                             (f->fs_xfer == NULL)) {
2649                                 /* no need to free this FIFO */
2650                                 continue;
2651                         }
2652                 } else {
2653                         /* no need to free this FIFO */
2654                         continue;
2655                 }
2656                 /* free this FIFO */
2657                 usb_fifo_free(f);
2658         }
2659 }
2660 #endif
2661
2662 /*------------------------------------------------------------------------*
2663  *      usb_peer_can_wakeup
2664  *
2665  * Return values:
2666  * 0: Peer cannot do resume signalling.
2667  * Else: Peer can do resume signalling.
2668  *------------------------------------------------------------------------*/
2669 uint8_t
2670 usb_peer_can_wakeup(struct usb_device *udev)
2671 {
2672         const struct usb_config_descriptor *cdp;
2673
2674         cdp = udev->cdesc;
2675         if ((cdp != NULL) && (udev->flags.usb_mode == USB_MODE_HOST)) {
2676                 return (cdp->bmAttributes & UC_REMOTE_WAKEUP);
2677         }
2678         return (0);                     /* not supported */
2679 }
2680
2681 void
2682 usb_set_device_state(struct usb_device *udev, enum usb_dev_state state)
2683 {
2684
2685         KASSERT(state < USB_STATE_MAX, ("invalid udev state"));
2686
2687         DPRINTF("udev %p state %s -> %s\n", udev,
2688             usb_statestr(udev->state), usb_statestr(state));
2689
2690 #if USB_HAVE_UGEN
2691         mtx_lock(&usb_ref_lock);
2692 #endif
2693         udev->state = state;
2694 #if USB_HAVE_UGEN
2695         mtx_unlock(&usb_ref_lock);
2696 #endif
2697         if (udev->bus->methods->device_state_change != NULL)
2698                 (udev->bus->methods->device_state_change) (udev);
2699 }
2700
2701 enum usb_dev_state
2702 usb_get_device_state(struct usb_device *udev)
2703 {
2704         if (udev == NULL)
2705                 return (USB_STATE_DETACHED);
2706         return (udev->state);
2707 }
2708
2709 uint8_t
2710 usbd_device_attached(struct usb_device *udev)
2711 {
2712         return (udev->state > USB_STATE_DETACHED);
2713 }
2714
2715 /*
2716  * The following function locks enumerating the given USB device. If
2717  * the lock is already grabbed this function returns zero. Else a
2718  * non-zero value is returned.
2719  */
2720 uint8_t
2721 usbd_enum_lock(struct usb_device *udev)
2722 {
2723         if (sx_xlocked(&udev->enum_sx))
2724                 return (0);
2725
2726         sx_xlock(&udev->enum_sx);
2727         sx_xlock(&udev->sr_sx);
2728         /* 
2729          * NEWBUS LOCK NOTE: We should check if any parent SX locks
2730          * are locked before locking Giant. Else the lock can be
2731          * locked multiple times.
2732          */
2733         mtx_lock(&Giant);
2734         return (1);
2735 }
2736
2737 /* The following function unlocks enumerating the given USB device. */
2738
2739 void
2740 usbd_enum_unlock(struct usb_device *udev)
2741 {
2742         mtx_unlock(&Giant);
2743         sx_xunlock(&udev->enum_sx);
2744         sx_xunlock(&udev->sr_sx);
2745 }
2746
2747 /* The following function locks suspend and resume. */
2748
2749 void
2750 usbd_sr_lock(struct usb_device *udev)
2751 {
2752         sx_xlock(&udev->sr_sx);
2753         /* 
2754          * NEWBUS LOCK NOTE: We should check if any parent SX locks
2755          * are locked before locking Giant. Else the lock can be
2756          * locked multiple times.
2757          */
2758         mtx_lock(&Giant);
2759 }
2760
2761 /* The following function unlocks suspend and resume. */
2762
2763 void
2764 usbd_sr_unlock(struct usb_device *udev)
2765 {
2766         mtx_unlock(&Giant);
2767         sx_xunlock(&udev->sr_sx);
2768 }
2769
2770 /*
2771  * The following function checks the enumerating lock for the given
2772  * USB device.
2773  */
2774
2775 uint8_t
2776 usbd_enum_is_locked(struct usb_device *udev)
2777 {
2778         return (sx_xlocked(&udev->enum_sx));
2779 }
2780
2781 /*
2782  * The following function is used to set the per-interface specific
2783  * plug and play information. The string referred to by the pnpinfo
2784  * argument can safely be freed after calling this function. The
2785  * pnpinfo of an interface will be reset at device detach or when
2786  * passing a NULL argument to this function. This function
2787  * returns zero on success, else a USB_ERR_XXX failure code.
2788  */
2789
2790 usb_error_t 
2791 usbd_set_pnpinfo(struct usb_device *udev, uint8_t iface_index, const char *pnpinfo)
2792 {
2793         struct usb_interface *iface;
2794
2795         iface = usbd_get_iface(udev, iface_index);
2796         if (iface == NULL)
2797                 return (USB_ERR_INVAL);
2798
2799         if (iface->pnpinfo != NULL) {
2800                 free(iface->pnpinfo, M_USBDEV);
2801                 iface->pnpinfo = NULL;
2802         }
2803
2804         if (pnpinfo == NULL || pnpinfo[0] == 0)
2805                 return (0);             /* success */
2806
2807         iface->pnpinfo = strdup(pnpinfo, M_USBDEV);
2808         if (iface->pnpinfo == NULL)
2809                 return (USB_ERR_NOMEM);
2810
2811         return (0);                     /* success */
2812 }
2813
2814 usb_error_t
2815 usbd_add_dynamic_quirk(struct usb_device *udev, uint16_t quirk)
2816 {
2817         uint8_t x;
2818
2819         for (x = 0; x != USB_MAX_AUTO_QUIRK; x++) {
2820                 if (udev->autoQuirk[x] == 0 ||
2821                     udev->autoQuirk[x] == quirk) {
2822                         udev->autoQuirk[x] = quirk;
2823                         return (0);     /* success */
2824                 }
2825         }
2826         return (USB_ERR_NOMEM);
2827 }