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