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