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